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

34726 строки
873 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. });
  45. return createEntityMaker(info, views, defaultSizes);
  46. }
  47. const speciesData = {
  48. animal: {
  49. name: "Animal"
  50. },
  51. dog: {
  52. name: "Dog",
  53. parents: [
  54. "canine"
  55. ]
  56. },
  57. canine: {
  58. name: "Canine",
  59. parents: [
  60. "mammal"
  61. ]
  62. },
  63. crux: {
  64. name: "Crux",
  65. parents: [
  66. "mammal"
  67. ]
  68. },
  69. mammal: {
  70. name: "Mammal",
  71. parents: [
  72. "animal"
  73. ]
  74. },
  75. "rough-collie": {
  76. name: "Rough Collie",
  77. parents: [
  78. "dog"
  79. ]
  80. },
  81. dragon: {
  82. name: "Dragon",
  83. parents: [
  84. "reptile"
  85. ]
  86. },
  87. reptile: {
  88. name: "Reptile",
  89. parents: [
  90. "animal"
  91. ]
  92. },
  93. woodpecker: {
  94. name: "Woodpecker",
  95. parents: [
  96. "avian"
  97. ]
  98. },
  99. avian: {
  100. name: "Avian",
  101. parents: [
  102. "animal"
  103. ]
  104. },
  105. kitsune: {
  106. name: "Kitsune",
  107. parents: [
  108. "fox"
  109. ]
  110. },
  111. fox: {
  112. name: "Fox",
  113. parents: [
  114. "mammal"
  115. ]
  116. },
  117. pokemon: {
  118. name: "Pokemon"
  119. },
  120. tiger: {
  121. name: "Tiger",
  122. parents: [
  123. "cat"
  124. ]
  125. },
  126. cat: {
  127. name: "Cat",
  128. parents: [
  129. "mammal"
  130. ]
  131. },
  132. "blue-jay": {
  133. name: "Blue Jay",
  134. parents: [
  135. "avian"
  136. ]
  137. },
  138. wolf: {
  139. name: "Wolf",
  140. parents: [
  141. "mammal"
  142. ]
  143. },
  144. coyote: {
  145. name: "Coyote",
  146. parents: [
  147. "mammal"
  148. ]
  149. },
  150. raccoon: {
  151. name: "Raccoon",
  152. parents: [
  153. "mammal"
  154. ]
  155. },
  156. weasel: {
  157. name: "Weasel",
  158. parents: [
  159. "mammal"
  160. ]
  161. },
  162. "red-panda": {
  163. name: "Red Panda",
  164. parents: [
  165. "mammal"
  166. ]
  167. },
  168. dolphin: {
  169. name: "Dolphin",
  170. parents: [
  171. "mammal"
  172. ]
  173. },
  174. "african-wild-dog": {
  175. name: "African Wild Dog",
  176. parents: [
  177. "canine"
  178. ]
  179. },
  180. "hyena": {
  181. name: "Hyena",
  182. parents: [
  183. "canine"
  184. ]
  185. },
  186. "carbuncle": {
  187. name: "Carbuncle",
  188. parents: [
  189. "animal"
  190. ]
  191. },
  192. bat: {
  193. name: "Bat",
  194. parents: [
  195. "mammal"
  196. ]
  197. },
  198. "leaf-nosed-bat": {
  199. name: "Leaf-Nosed Bat",
  200. parents: [
  201. "bat"
  202. ]
  203. },
  204. "fish": {
  205. name: "Fish",
  206. parents: [
  207. "animal"
  208. ]
  209. },
  210. "ram": {
  211. name: "Ram",
  212. parents: [
  213. "mammal"
  214. ]
  215. },
  216. "demon": {
  217. name: "Demon"
  218. },
  219. "cougar": {
  220. name: "Cougar",
  221. parents: [
  222. "cat"
  223. ]
  224. },
  225. "goat": {
  226. name: "Goat",
  227. parents: [
  228. "mammal"
  229. ]
  230. },
  231. "lion": {
  232. name: "Lion",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "harpy-eager": {
  238. name: "Harpy Eagle",
  239. parents: [
  240. "avian"
  241. ]
  242. },
  243. "deer": {
  244. name: "Deer",
  245. parents: [
  246. "mammal"
  247. ]
  248. },
  249. "phoenix": {
  250. name: "Phoenix",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "aeromorph": {
  256. name: "Aeromorph",
  257. parents: [
  258. "machine"
  259. ]
  260. },
  261. "machine": {
  262. name: "Machine",
  263. },
  264. "android": {
  265. name: "Android",
  266. parents: [
  267. "machine"
  268. ]
  269. },
  270. "jackal": {
  271. name: "Jackal",
  272. parents: [
  273. "canine"
  274. ]
  275. },
  276. "corvid": {
  277. name: "Corvid",
  278. parents: [
  279. "avian"
  280. ]
  281. },
  282. "pharaoh-hound": {
  283. name: "Pharaoh Hound",
  284. parents: [
  285. "dog"
  286. ]
  287. },
  288. "skunk": {
  289. name: "Skunk",
  290. parents: [
  291. "mammal"
  292. ]
  293. },
  294. "shark": {
  295. name: "Shark",
  296. parents: [
  297. "fish"
  298. ]
  299. },
  300. "black-panther": {
  301. name: "Black Panther",
  302. parents: [
  303. "cat"
  304. ]
  305. },
  306. "umbra": {
  307. name: "Umbra",
  308. parents: [
  309. "animal"
  310. ]
  311. },
  312. "raven": {
  313. name: "Raven",
  314. parents: [
  315. "corvid"
  316. ]
  317. },
  318. "snow-leopard": {
  319. name: "Snow Leopard",
  320. parents: [
  321. "cat"
  322. ]
  323. },
  324. "barbary-lion": {
  325. name: "Barbary Lion",
  326. parents: [
  327. "lion"
  328. ]
  329. },
  330. "dra'gal": {
  331. name: "Dra'Gal",
  332. parents: [
  333. "mammal"
  334. ]
  335. },
  336. "german-shepherd": {
  337. name: "German Shepherd",
  338. parents: [
  339. "dog"
  340. ]
  341. },
  342. "bayleef": {
  343. name: "Bayleef",
  344. parents: [
  345. "pokemon"
  346. ]
  347. },
  348. "mouse": {
  349. name: "Mouse",
  350. parents: [
  351. "rodent"
  352. ]
  353. },
  354. "rat": {
  355. name: "Rat",
  356. parents: [
  357. "mammal"
  358. ]
  359. },
  360. "hoshiko-beast": {
  361. name: "Hoshiko Beast",
  362. parents: ["animal"]
  363. },
  364. "snow-jugani": {
  365. name: "Snow Jugani",
  366. parents: ["cat"]
  367. },
  368. "patamon": {
  369. name: "Patamon",
  370. parents: ["digimon"]
  371. },
  372. "digimon": {
  373. name: "Digimon",
  374. },
  375. "jugani": {
  376. name: "Jugani",
  377. parents: ["cat"]
  378. },
  379. "luxray": {
  380. name: "Luxray",
  381. parents: ["pokemon"]
  382. },
  383. "mech": {
  384. name: "Mech",
  385. parents: ["machine"]
  386. },
  387. "zoid": {
  388. name: "Zoid",
  389. parents: ["mech"]
  390. },
  391. "monster": {
  392. name: "Monster",
  393. parents: ["animal"]
  394. },
  395. "foo-dog": {
  396. name: "Foo Dog",
  397. parents: ["mammal"]
  398. },
  399. "elephant": {
  400. name: "Elephant",
  401. parents: ["mammal"]
  402. },
  403. "eagle": {
  404. name: "Eagle",
  405. parents: ["avian"]
  406. },
  407. "cow": {
  408. name: "Cow",
  409. parents: ["mammal"]
  410. },
  411. "crocodile": {
  412. name: "Crocodile",
  413. parents: ["reptile"]
  414. },
  415. "borzoi": {
  416. name: "Borzoi",
  417. parents: ["dog"]
  418. },
  419. "snake": {
  420. name: "Snake",
  421. parents: ["reptile"]
  422. },
  423. "horned-bush-viper": {
  424. name: "Horned Bush Viper",
  425. parents: ["snake"]
  426. },
  427. "cobra": {
  428. name: "Cobra",
  429. parents: ["snake"]
  430. },
  431. "harpy-eagle": {
  432. name: "Harpy Eagle",
  433. parents: ["eagle"]
  434. },
  435. "raptor": {
  436. name: "Raptor",
  437. parents: ["dinosaur"]
  438. },
  439. "dinosaur": {
  440. name: "Dinosaur",
  441. parents: ["reptile"]
  442. },
  443. "veilhound": {
  444. name: "Veilhound",
  445. parents: ["hellhound", "demon"]
  446. },
  447. "hellhound": {
  448. name: "Hellhound",
  449. parents: ["canine"]
  450. },
  451. "insect": {
  452. name: "Insect",
  453. parents: ["animal"]
  454. },
  455. "beetle": {
  456. name: "Beetle",
  457. parents: ["insect"]
  458. },
  459. "moth": {
  460. name: "Moth",
  461. parents: ["insect"]
  462. },
  463. "eastern-dragon": {
  464. name: "Eastern Dragon",
  465. parents: ["dragon"]
  466. },
  467. "jaguar": {
  468. name: "Jaguar",
  469. parents: ["cat"]
  470. },
  471. "horse": {
  472. name: "Horse",
  473. parents: ["mammal"]
  474. },
  475. "sergal": {
  476. name: "Sergal",
  477. parents: ["mammal"]
  478. },
  479. "gryphon": {
  480. name: "Gryphon",
  481. parents: ["lion", "eagle"]
  482. },
  483. "robot": {
  484. name: "Robot",
  485. parents: ["machine"]
  486. },
  487. "medihound": {
  488. name: "Medihound",
  489. parents: ["robot", "dog"]
  490. },
  491. "sylveon": {
  492. name: "Sylveon",
  493. parents: ["pokemon"]
  494. },
  495. "catgirl": {
  496. name: "Catgirl",
  497. parents: ["mammal"]
  498. },
  499. "cowgirl": {
  500. name: "Cowgirl",
  501. parents: ["mammal"]
  502. },
  503. "pony": {
  504. name: "Pony",
  505. parents: ["horse"]
  506. },
  507. "rabbit": {
  508. name: "Rabbit",
  509. parents: ["mammal"]
  510. },
  511. "fennec-fox": {
  512. name: "Fennec Fox",
  513. parents: ["fox"]
  514. },
  515. "azodian": {
  516. name: "Azodian",
  517. parents: ["mouse"]
  518. },
  519. "shiba-inu": {
  520. name: "Shiba Inu",
  521. parents: ["dog"]
  522. },
  523. "changeling": {
  524. name: "Changeling",
  525. parents: ["insect"]
  526. },
  527. "cheetah": {
  528. name: "Cheetah",
  529. parents: ["cat"]
  530. },
  531. "golden-jackal": {
  532. name: "Golden Jackal",
  533. parents: ["jackal"]
  534. },
  535. "manectric": {
  536. name: "Manectric",
  537. parents: ["pokemon"]
  538. },
  539. "rat": {
  540. name: "Rat",
  541. parents: ["rodent"]
  542. },
  543. "rodent": {
  544. name: "Rodent",
  545. parents: ["mammal"]
  546. },
  547. "octocoon": {
  548. name: "Octocoon",
  549. parents: ["raccoon", "octopus"]
  550. },
  551. "octopus": {
  552. name: "Octopus",
  553. parents: ["fish"]
  554. },
  555. "werewolf": {
  556. name: "Werewolf",
  557. parents: ["wolf"]
  558. },
  559. "meerkat": {
  560. name: "Meerkat",
  561. parents: ["mammal"]
  562. },
  563. "human": {
  564. name: "Human",
  565. parents: ["mammal"]
  566. },
  567. "geth": {
  568. name: "Geth",
  569. parents: ["android"]
  570. },
  571. "husky": {
  572. name: "Husky",
  573. parents: ["dog"]
  574. },
  575. "long-eared-bat": {
  576. name: "Long Eared Bat",
  577. parents: ["bat"]
  578. },
  579. "lizard": {
  580. name: "Lizard",
  581. parents: ["reptile"]
  582. },
  583. "salamander": {
  584. name: "Salamander",
  585. parents: ["lizard"]
  586. },
  587. "chameleon": {
  588. name: "Chameleon",
  589. parents: ["lizard"]
  590. },
  591. "gecko": {
  592. name: "Gecko",
  593. parents: ["lizard"]
  594. },
  595. "kobold": {
  596. name: "Kobold",
  597. parents: ["reptile"]
  598. },
  599. "charizard": {
  600. name: "Charizard",
  601. parents: ["pokemon"]
  602. },
  603. "lugia": {
  604. name: "Lugia",
  605. parents: ["pokemon"]
  606. },
  607. "cerberus": {
  608. name: "Cerberus",
  609. parents: ["dog"]
  610. },
  611. "tyrantrum": {
  612. name: "Tyrantrum",
  613. parents: ["pokemon"]
  614. },
  615. "lemur": {
  616. name: "Lemur",
  617. parents: ["mammal"]
  618. },
  619. "kelpie": {
  620. name: "Kelpie",
  621. parents: ["horse", "monster"]
  622. },
  623. "labrador": {
  624. name: "Labrador",
  625. parents: ["dog"]
  626. },
  627. "sylveon": {
  628. name: "Sylveon",
  629. parents: ["eeveelution"]
  630. },
  631. "eeveelution": {
  632. name: "Eeveelution",
  633. parents: ["pokemon"]
  634. },
  635. "polar-bear": {
  636. name: "Polar Bear",
  637. parents: ["bear"]
  638. },
  639. "bear": {
  640. name: "Bear",
  641. parents: ["mammal"]
  642. },
  643. "absol": {
  644. name: "Absol",
  645. parents: ["pokemon"]
  646. },
  647. "wolver": {
  648. name: "Wolver",
  649. parents: ["mammal"]
  650. },
  651. "rottweiler": {
  652. name: "Rottweiler",
  653. parents: ["dog"]
  654. },
  655. "zebra": {
  656. name: "Zebra",
  657. parents: ["horse"]
  658. },
  659. "yoshi": {
  660. name: "Yoshi",
  661. parents: ["lizard"]
  662. },
  663. "lynx": {
  664. name: "Lynx",
  665. parents: ["cat"]
  666. },
  667. "unknown": {
  668. name: "Unknown",
  669. parents: []
  670. },
  671. "thylacine": {
  672. name: "Thylacine",
  673. parents: ["mammal"]
  674. },
  675. "gabumon": {
  676. name: "Gabumon",
  677. parents: ["digimon"]
  678. },
  679. "border-collie": {
  680. name: "Border Collie",
  681. parents: ["dog"]
  682. },
  683. "imp": {
  684. name: "Imp",
  685. parents: ["demon"]
  686. },
  687. "kangaroo": {
  688. name: "Kangaroo",
  689. parents: ["mammal"]
  690. },
  691. "renamon": {
  692. name: "Renamon",
  693. parents: ["digimon"]
  694. },
  695. "candy-orca-dragon": {
  696. name: "Candy Orca Dragon",
  697. parents: ["fish", "dragon", "candy"]
  698. },
  699. "sabertooth-tiger": {
  700. name: "Sabertooth Tiger",
  701. parents: ["cat"]
  702. },
  703. "espurr": {
  704. name: "Espurr",
  705. parents: ["pokemon"]
  706. },
  707. "otter": {
  708. name: "Otter",
  709. parents: ["mammal"]
  710. },
  711. "elemental": {
  712. name: "Elemental",
  713. parents: ["mammal"]
  714. },
  715. "mew": {
  716. name: "Mew",
  717. parents: ["pokemon"]
  718. },
  719. "goodra": {
  720. name: "Goodra",
  721. parents: ["pokemon"]
  722. },
  723. "fairy": {
  724. name: "Fairy",
  725. parents: ["magical"]
  726. },
  727. "typhlosion": {
  728. name: "Typhlosion",
  729. parents: ["pokemon"]
  730. },
  731. "magical": {
  732. name: "Magical",
  733. parents: []
  734. },
  735. "xenomorph": {
  736. name: "Xenomorph",
  737. parents: ["monster", "alien"]
  738. },
  739. "charr": {
  740. name: "Charr",
  741. parents: ["cat"]
  742. },
  743. "siberian-husky": {
  744. name: "Siberian Husky",
  745. parents: ["husky"]
  746. },
  747. "alligator": {
  748. name: "Alligator",
  749. parents: ["reptile"]
  750. },
  751. "bernese-mountain-dog": {
  752. name: "Bernese Mountain Dog",
  753. parents: ["dog"]
  754. },
  755. "reshiram": {
  756. name: "Reshiram",
  757. parents: ["pokemon"]
  758. },
  759. "grizzly-bear": {
  760. name: "Grizzly Bear",
  761. parents: ["bear"]
  762. },
  763. "water-monitor": {
  764. name: "Water Monitor",
  765. parents: ["lizard"]
  766. },
  767. "banchofossa": {
  768. name: "Banchofossa",
  769. parents: ["mammal"]
  770. },
  771. "kirin": {
  772. name: "Kirin",
  773. parents: ["monster"]
  774. },
  775. "quilava": {
  776. name: "Quilava",
  777. parents: ["pokemon"]
  778. },
  779. "seviper": {
  780. name: "Seviper",
  781. parents: ["pokemon"]
  782. },
  783. "flying-fox": {
  784. name: "Flying Fox",
  785. parents: ["bat"]
  786. },
  787. "keynain": {
  788. name: "Keynain",
  789. parents: ["avian"]
  790. },
  791. "lucario": {
  792. name: "Lucario",
  793. parents: ["pokemon"]
  794. },
  795. "siamese-cat": {
  796. name: "Siamese Cat",
  797. parents: ["cat"]
  798. },
  799. "spider": {
  800. name: "Spider",
  801. parents: ["insect"]
  802. },
  803. "samurott": {
  804. name: "Samurott",
  805. parents: ["pokemon"]
  806. },
  807. "megalodon": {
  808. name: "Megalodon",
  809. parents: ["shark"]
  810. },
  811. "unicorn": {
  812. name: "Unicorn",
  813. parents: ["horse"]
  814. },
  815. "greninja": {
  816. name: "Greninja",
  817. parents: ["pokemon"]
  818. },
  819. "water-dragon": {
  820. name: "Water Dragon",
  821. parents: ["dragon"]
  822. },
  823. "cross-fox": {
  824. name: "Cross Fox",
  825. parents: ["fox"]
  826. },
  827. "synth": {
  828. name: "Synth",
  829. parents: ["machine"]
  830. },
  831. "construct": {
  832. name: "Construct",
  833. parents: []
  834. },
  835. "mexican-wolf": {
  836. name: "Mexican Wolf",
  837. parents: ["wolf"]
  838. },
  839. "leopard": {
  840. name: "Leopard",
  841. parents: ["cat"]
  842. },
  843. "pig": {
  844. name: "Pig",
  845. parents: ["mammal"]
  846. },
  847. "ampharos": {
  848. name: "Ampharos",
  849. parents: ["pokemon"]
  850. },
  851. "orca": {
  852. name: "Orca",
  853. parents: ["fish"]
  854. },
  855. "lycanroc": {
  856. name: "Lycanroc",
  857. parents: ["pokemon"]
  858. },
  859. "surkanu": {
  860. name: "Surkanu",
  861. parents: ["monster"]
  862. },
  863. "seal": {
  864. name: "Seal",
  865. parents: ["mammal"]
  866. },
  867. "keldeo": {
  868. name: "Keldeo",
  869. parents: ["pokemon"]
  870. },
  871. "great-dane": {
  872. name: "Great Dane",
  873. parents: ["dog"]
  874. },
  875. "black-backed-jackal": {
  876. name: "Black Backed Jackal",
  877. parents: ["jackal"]
  878. },
  879. "sheep": {
  880. name: "Sheep",
  881. parents: ["mammal"]
  882. },
  883. "leopard-seal": {
  884. name: "Leopard Seal",
  885. parents: ["seal"]
  886. },
  887. "zoroark": {
  888. name: "Zoroark",
  889. parents: ["pokemon"]
  890. },
  891. "maned-wolf": {
  892. name: "Maned Wolf",
  893. parents: ["canine"]
  894. },
  895. "dracha": {
  896. name: "Dracha",
  897. parents: ["dragon"]
  898. },
  899. "wolxi": {
  900. name: "Wolxi",
  901. parents: ["mammal", "alien"]
  902. },
  903. "dratini": {
  904. name: "Dratini",
  905. parents: ["pokemon", "dragon"]
  906. },
  907. "skaven": {
  908. name: "Skaven",
  909. parents: ["rat"]
  910. },
  911. "mongoose": {
  912. name: "Mongoose",
  913. parents: ["mammal"]
  914. },
  915. "lopunny": {
  916. name: "Lopunny",
  917. parents: ["pokemon", "rabbit"]
  918. },
  919. "feraligatr": {
  920. name: "Feraligatr",
  921. parents: ["pokemon", "alligator"]
  922. },
  923. "houndoom": {
  924. name: "Houndoom",
  925. parents: ["pokemon", "dog"]
  926. },
  927. "protogen": {
  928. name: "Protogen",
  929. parents: ["machine"]
  930. },
  931. "saint-bernard": {
  932. name: "Saint Bernard",
  933. parents: ["dog"]
  934. },
  935. "crow": {
  936. name: "Crow",
  937. parents: ["corvid"]
  938. },
  939. "delphox": {
  940. name: "Delphox",
  941. parents: ["pokemon", "fox"]
  942. },
  943. "moose": {
  944. name: "Moose",
  945. parents: ["mammal"]
  946. },
  947. "joraxian": {
  948. name: "Joraxian",
  949. parents: ["monster", "canine", "demon"]
  950. },
  951. "nimbat": {
  952. name: "Nimbat",
  953. parents: ["mammal"]
  954. },
  955. "aardwolf": {
  956. name: "Aardwolf",
  957. parents: ["canine"]
  958. },
  959. "fluudrani": {
  960. name: "Fluudrani",
  961. parents: ["animal"]
  962. },
  963. "arcanine": {
  964. name: "Arcanine",
  965. parents: ["pokemon", "dog"]
  966. },
  967. "inteleon": {
  968. name: "Inteleon",
  969. parents: ["pokemon", "fish"]
  970. },
  971. "ninetales": {
  972. name: "Ninetales",
  973. parents: ["pokemon", "kitsune"]
  974. },
  975. "tigrex": {
  976. name: "Tigrex",
  977. parents: ["tiger"]
  978. },
  979. "zorua": {
  980. name: "Zorua",
  981. parents: ["pokemon", "fox"]
  982. },
  983. "vulpix": {
  984. name: "Vulpix",
  985. parents: ["pokemon", "fox"]
  986. },
  987. "barghest": {
  988. name: "Barghest",
  989. parents: ["monster"]
  990. },
  991. "gray-wolf": {
  992. name: "Gray Wolf",
  993. parents: ["wolf"]
  994. },
  995. "ruppells-fox": {
  996. name: "Rüppell's Fox",
  997. parents: ["fox"]
  998. },
  999. "bull-terrier": {
  1000. name: "Bull Terrier",
  1001. parents: ["dog"]
  1002. },
  1003. "european-honey-buzzard": {
  1004. name: "European Honey Buzzard",
  1005. parents: ["avian"]
  1006. },
  1007. "t-rex": {
  1008. name: "T Rex",
  1009. parents: ["dinosaur"]
  1010. },
  1011. "mactarian": {
  1012. name: "Mactarian",
  1013. parents: ["shark", "monster"]
  1014. },
  1015. "mewtwo-y": {
  1016. name: "Mewtwo Y",
  1017. parents: ["mewtwo"]
  1018. },
  1019. "mewtwo": {
  1020. name: "Mewtwo",
  1021. parents: ["pokemon"]
  1022. },
  1023. "mew": {
  1024. name: "Mew",
  1025. parents: ["pokemon"]
  1026. },
  1027. "eevee": {
  1028. name: "Eevee",
  1029. parents: ["eeveelution"]
  1030. },
  1031. "mienshao": {
  1032. name: "Mienshao",
  1033. parents: ["pokemon"]
  1034. },
  1035. "sugar-glider": {
  1036. name: "Sugar Glider",
  1037. parents: ["opossum"]
  1038. },
  1039. "spectral-bat": {
  1040. name: "Spectral Bat",
  1041. parents: ["bat"]
  1042. },
  1043. "scolipede": {
  1044. name: "Scolipede",
  1045. parents: ["pokemon", "insect"]
  1046. },
  1047. "jackalope": {
  1048. name: "Jackalope",
  1049. parents: ["rabbit", "antelope"]
  1050. },
  1051. "caracal": {
  1052. name: "Caracal",
  1053. parents: ["cat"]
  1054. },
  1055. "stoat": {
  1056. name: "Stoat",
  1057. parents: ["mammal"]
  1058. },
  1059. "african-golden-cat": {
  1060. name: "African Golden Cat",
  1061. parents: ["cat"]
  1062. },
  1063. "gigantosaurus": {
  1064. name: "Gigantosaurus",
  1065. parents: ["dinosaur"]
  1066. },
  1067. "zorgoia": {
  1068. name: "Zorgoia",
  1069. parents: ["mammal"]
  1070. },
  1071. "monitor-lizard": {
  1072. name: "Monitor Lizard",
  1073. parents: ["lizard"]
  1074. },
  1075. "ziralkia": {
  1076. name: "Ziralkia",
  1077. parents: ["mammal"]
  1078. },
  1079. "kiiasi": {
  1080. name: "Kiiasi",
  1081. parents: ["animal"]
  1082. },
  1083. "synx": {
  1084. name: "Synx",
  1085. parents: ["monster"]
  1086. },
  1087. "panther": {
  1088. name: "Panther",
  1089. parents: ["cat"]
  1090. },
  1091. "azumarill": {
  1092. name: "Azumarill",
  1093. parents: ["pokemon"]
  1094. },
  1095. "river-snaptail": {
  1096. name: "River Snaptail",
  1097. parents: ["otter", "crocodile"]
  1098. },
  1099. "great-blue-heron": {
  1100. name: "Great Blue Heron",
  1101. parents: ["avian"]
  1102. },
  1103. "smeargle": {
  1104. name: "Smeargle",
  1105. parents: ["pokemon"]
  1106. },
  1107. "vendeilen": {
  1108. name: "Vendeilen",
  1109. parents: ["monster"]
  1110. },
  1111. "ventura": {
  1112. name: "Ventura",
  1113. parents: ["canine"]
  1114. },
  1115. "clouded-leopard": {
  1116. name: "Clouded Leopard",
  1117. parents: ["leopard"]
  1118. },
  1119. "argonian": {
  1120. name: "Argonian",
  1121. parents: ["lizard"]
  1122. },
  1123. "salazzle": {
  1124. name: "Salazzle",
  1125. parents: ["pokemon", "lizard"]
  1126. },
  1127. "je-stoff-drachen": {
  1128. name: "Je-Stoff Drachen",
  1129. parents: ["dragon"]
  1130. },
  1131. "finnish-spitz-dog": {
  1132. name: "Finnish Spitz Dog",
  1133. parents: ["dog"]
  1134. },
  1135. "gray-fox": {
  1136. name: "Gray Fox",
  1137. parents: ["fox"]
  1138. },
  1139. "opossum": {
  1140. name: "opossum",
  1141. parents: ["mammal"]
  1142. },
  1143. "antelope": {
  1144. name: "Antelope",
  1145. parents: ["mammal"]
  1146. },
  1147. "weavile": {
  1148. name: "Weavile",
  1149. parents: ["pokemon"]
  1150. },
  1151. "pikachu": {
  1152. name: "Pikachu",
  1153. parents: ["pokemon", "mouse"]
  1154. },
  1155. "grovyle": {
  1156. name: "Grovyle",
  1157. parents: ["pokemon", "plant"]
  1158. },
  1159. "sthara": {
  1160. name: "Sthara",
  1161. parents: ["snow-leopard", "reptile"]
  1162. },
  1163. "star-warrior": {
  1164. name: "Star Warrior",
  1165. parents: ["magical"]
  1166. },
  1167. "dragonoid": {
  1168. name: "Dragonoid",
  1169. parents: ["dragon"]
  1170. },
  1171. "suicune": {
  1172. name: "Suicune",
  1173. parents: ["pokemon"]
  1174. },
  1175. "vole": {
  1176. name: "Vole",
  1177. parents: ["mammal"]
  1178. },
  1179. "blaziken": {
  1180. name: "Blaziken",
  1181. parents: ["pokemon", "avian"]
  1182. },
  1183. "buizel": {
  1184. name: "Buizel",
  1185. parents: ["pokemon", "fish"]
  1186. },
  1187. "floatzel": {
  1188. name: "Floatzel",
  1189. parents: ["pokemon", "fish"]
  1190. },
  1191. "umok": {
  1192. name: "Umok",
  1193. parents: ["avian"]
  1194. },
  1195. "sea-monster": {
  1196. name: "Sea Monster",
  1197. parents: ["monster", "fish"]
  1198. },
  1199. "egyptian-vulture": {
  1200. name: "Egyptian Vulture",
  1201. parents: ["avian"]
  1202. },
  1203. "doberman": {
  1204. name: "Doberman",
  1205. parents: ["dog"]
  1206. },
  1207. "zangoose": {
  1208. name: "Zangoose",
  1209. parents: ["pokemon", "mongoose"]
  1210. },
  1211. "mongoose": {
  1212. name: "Mongoose",
  1213. parents: ["mammal"]
  1214. },
  1215. "wickerbeast": {
  1216. name: "Wickerbeast",
  1217. parents: ["monster"]
  1218. },
  1219. "zenari": {
  1220. name: "Zenari",
  1221. parents: ["lizard"]
  1222. },
  1223. "plant": {
  1224. name: "Plant",
  1225. parents: []
  1226. },
  1227. "raskatox": {
  1228. name: "Raskatox",
  1229. parents: ["raccoon", "skunk", "cat", "fox"]
  1230. },
  1231. "mikromare": {
  1232. name: "mikromare",
  1233. parents: ["alien"]
  1234. },
  1235. "alien": {
  1236. name: "Alien",
  1237. parents: ["animal"]
  1238. },
  1239. "deity": {
  1240. name: "Deity",
  1241. parents: []
  1242. },
  1243. "skarlan": {
  1244. name: "Skarlan",
  1245. parents: ["slug", "dragon"]
  1246. },
  1247. "slug": {
  1248. name: "Slug",
  1249. parents: ["mollusk"]
  1250. },
  1251. "mollusk": {
  1252. name: "Mollusk",
  1253. parents: ["animal"]
  1254. },
  1255. "chimera": {
  1256. name: "Chimera",
  1257. parents: ["monster"]
  1258. },
  1259. "gestalt": {
  1260. name: "Gestalt",
  1261. parents: ["construct"]
  1262. },
  1263. "mimic": {
  1264. name: "Mimic",
  1265. parents: ["monster"]
  1266. },
  1267. "calico-rat": {
  1268. name: "Calico Rat",
  1269. parents: ["rat"]
  1270. },
  1271. "panda": {
  1272. name: "Panda",
  1273. parents: ["mammal"]
  1274. },
  1275. "oni": {
  1276. name: "Oni",
  1277. parents: ["monster"]
  1278. },
  1279. "pegasus": {
  1280. name: "Pegasus",
  1281. parents: ["horse"]
  1282. },
  1283. "vulpera": {
  1284. name: "Vulpera",
  1285. parents: ["fennec-fox"]
  1286. },
  1287. "ceratosaurus": {
  1288. name: "Ceratosaurus",
  1289. parents: ["dinosaur"]
  1290. },
  1291. "nykur": {
  1292. name: "Nykur",
  1293. parents: ["horse", "monster"]
  1294. },
  1295. "giraffe": {
  1296. name: "Giraffe",
  1297. parents: ["mammal"]
  1298. },
  1299. "tauren": {
  1300. name: "Tauren",
  1301. parents: ["cow"]
  1302. },
  1303. "draconi": {
  1304. name: "Draconi",
  1305. parents: ["alien", "cat", "cyborg"]
  1306. },
  1307. "dire-wolf": {
  1308. name: "Dire Wolf",
  1309. parents: ["wolf"]
  1310. },
  1311. "ferromorph": {
  1312. name: "Ferromorph",
  1313. parents: ["construct"]
  1314. },
  1315. "meowth": {
  1316. name: "Meowth",
  1317. parents: ["cat", "pokemon"]
  1318. },
  1319. "pavodragon": {
  1320. name: "Pavodragon",
  1321. parents: ["dragon"]
  1322. },
  1323. "aaltranae": {
  1324. name: "Aaltranae",
  1325. parents: ["dragon"]
  1326. },
  1327. "cyborg": {
  1328. name: "Cyborg",
  1329. parents: ["machine"]
  1330. },
  1331. "draptor": {
  1332. name: "Draptor",
  1333. parents: ["dragon"]
  1334. },
  1335. "candy": {
  1336. name: "Candy",
  1337. parents: []
  1338. },
  1339. "drenath": {
  1340. name: "Drenath",
  1341. parents: ["dragon", "snake", "rabbit"]
  1342. },
  1343. "coyju": {
  1344. name: "Coyju",
  1345. parents: ["coyote", "kaiju"]
  1346. },
  1347. "kaiju": {
  1348. name: "Kaiju",
  1349. parents: ["monster"]
  1350. },
  1351. "nickit": {
  1352. name: "Nickit",
  1353. parents: ["pokemon", "cat"]
  1354. },
  1355. "lopunny": {
  1356. name: "Lopunny",
  1357. parents: ["pokemon", "rabbit"]
  1358. },
  1359. "korean-jindo-dog": {
  1360. name: "Korean Jindo Dog",
  1361. parents: ["dog"]
  1362. },
  1363. "naga": {
  1364. name: "Naga",
  1365. parents: ["snake", "monster"]
  1366. },
  1367. "undead": {
  1368. name: "Undead",
  1369. parents: ["monster"]
  1370. },
  1371. "whale": {
  1372. name: "Whale",
  1373. parents: ["fish"]
  1374. },
  1375. "gelato-bee": {
  1376. name: "Gelato Bee",
  1377. parents: ["bee"]
  1378. },
  1379. "bee": {
  1380. name: "Bee",
  1381. parents: ["insect"]
  1382. },
  1383. "gardevoir": {
  1384. name: "Gardevoir",
  1385. parents: ["pokemon"]
  1386. },
  1387. "ant": {
  1388. name: "Ant",
  1389. parents: ["insect"]
  1390. },
  1391. "frog": {
  1392. name: "Frog",
  1393. parents: ["amphibian"]
  1394. },
  1395. "amphibian": {
  1396. name: "Amphibian",
  1397. parents: ["animal"]
  1398. },
  1399. "pangolin": {
  1400. name: "Pangolin",
  1401. parents: ["mammal"]
  1402. },
  1403. "uragi'viidorn": {
  1404. name: "Uragi'viidorn",
  1405. parents: ["avian", "bear"]
  1406. },
  1407. "gryphdelphais": {
  1408. name: "Gryphdelphais",
  1409. parents: ["dolphin", "gryphon"]
  1410. },
  1411. "plush": {
  1412. name: "Plush",
  1413. parents: ["construct"]
  1414. },
  1415. "draiger": {
  1416. name: "Draiger",
  1417. parents: ["dragon","tiger"]
  1418. },
  1419. "foxsky": {
  1420. name: "Foxsky",
  1421. parents: ["fox", "husky"]
  1422. },
  1423. "umbreon": {
  1424. name: "Umbreon",
  1425. parents: ["eeveelution"]
  1426. },
  1427. "slime-dragon": {
  1428. name: "Slime Dragon",
  1429. parents: ["dragon"]
  1430. },
  1431. "enderman": {
  1432. name: "Enderman",
  1433. parents: ["monster"]
  1434. },
  1435. "gremlin": {
  1436. name: "Gremlin",
  1437. parents: ["monster"]
  1438. },
  1439. "dragonsune": {
  1440. name: "Dragonsune",
  1441. parents: ["dragon", "kitsune"]
  1442. },
  1443. "ghost": {
  1444. name: "Ghost",
  1445. parents: ["monster"]
  1446. },
  1447. "false-vampire-bat": {
  1448. name: "False Vampire Bat",
  1449. parents: ["bat"]
  1450. },
  1451. "succubus": {
  1452. name: "Succubus",
  1453. parents: ["demon"]
  1454. },
  1455. "mia": {
  1456. name: "Mia",
  1457. parents: ["canine"]
  1458. },
  1459. "rainbow": {
  1460. name: "Rainbow",
  1461. parents: ["monster"]
  1462. },
  1463. "solgaleo": {
  1464. name: "Solgaleo",
  1465. parents: ["pokemon"]
  1466. },
  1467. "lucent-nargacuga": {
  1468. name: "Lucent Nargacuga",
  1469. parents: ["monster-hunter"]
  1470. },
  1471. "monster-hunter": {
  1472. name: "Monster Hunter",
  1473. parents: ["monster"]
  1474. },
  1475. "leviathan": {
  1476. "name": "Leviathan",
  1477. "url": "sea-monster"
  1478. },
  1479. "bull": {
  1480. name: "Bull",
  1481. parents: ["mammal"]
  1482. },
  1483. "tanuki": {
  1484. name: "Tanuki",
  1485. parents: ["monster"]
  1486. },
  1487. "chakat": {
  1488. name: "Chakat",
  1489. parents: ["cat"]
  1490. },
  1491. "hydra": {
  1492. name: "Hydra",
  1493. parents: ["monster"]
  1494. },
  1495. "zigzagoon": {
  1496. name: "Zigzagoon",
  1497. parents: ["raccoon", "pokemon"]
  1498. },
  1499. "vulture": {
  1500. name: "Vulture",
  1501. parents: ["avian"]
  1502. },
  1503. "eastern-dragon": {
  1504. name: "Eastern Dragon",
  1505. parents: ["dragon"]
  1506. },
  1507. "gryffon": {
  1508. name: "Gryffon",
  1509. parents: ["phoenix", "red-panda"]
  1510. },
  1511. "amtsvane": {
  1512. name: "Amtsvane",
  1513. parents: ["reptile"]
  1514. },
  1515. "kigavi": {
  1516. name: "Kigavi",
  1517. parents: ["avian"]
  1518. },
  1519. }
  1520. //species
  1521. function getSpeciesInfo(speciesList) {
  1522. let result = new Set();
  1523. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1524. result.add(entry)
  1525. });
  1526. return Array.from(result);
  1527. };
  1528. function getSpeciesInfoHelper(species) {
  1529. if (!speciesData[species]) {
  1530. console.warn(species + " doesn't exist");
  1531. return [];
  1532. }
  1533. if (speciesData[species].parents) {
  1534. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1535. } else {
  1536. return [species];
  1537. }
  1538. }
  1539. characterMakers.push(() => makeCharacter(
  1540. {
  1541. name: "Fen",
  1542. species: ["crux"],
  1543. description: {
  1544. title: "Bio",
  1545. text: "Very furry. Sheds on everything."
  1546. },
  1547. tags: [
  1548. "anthro",
  1549. "goo"
  1550. ]
  1551. },
  1552. {
  1553. back: {
  1554. height: math.unit(2.2428, "meter"),
  1555. weight: math.unit(124.738, "kg"),
  1556. name: "Back",
  1557. image: {
  1558. source: "./media/characters/fen/back.svg",
  1559. extra: 2024 / 1867,
  1560. bottom: 13 / 2037
  1561. },
  1562. info: {
  1563. description: {
  1564. mode: "append",
  1565. text: "\n\nHe is not currently looking at you."
  1566. }
  1567. }
  1568. },
  1569. full: {
  1570. height: math.unit(1.34, "meter"),
  1571. weight: math.unit(225, "kg"),
  1572. name: "Full",
  1573. image: {
  1574. source: "./media/characters/fen/full.svg"
  1575. },
  1576. info: {
  1577. description: {
  1578. mode: "append",
  1579. text: "\n\nMunch."
  1580. }
  1581. }
  1582. },
  1583. kneeling: {
  1584. height: math.unit(5.4, "feet"),
  1585. weight: math.unit(124.738, "kg"),
  1586. name: "Kneeling",
  1587. image: {
  1588. source: "./media/characters/fen/kneeling.svg",
  1589. extra: 563 / 507
  1590. }
  1591. },
  1592. goo: {
  1593. height: math.unit(2.8, "feet"),
  1594. weight: math.unit(125, "kg"),
  1595. capacity: math.unit(1, "people"),
  1596. name: "Goo",
  1597. image: {
  1598. source: "./media/characters/fen/goo.svg",
  1599. bottom: 116 / 613
  1600. }
  1601. },
  1602. lounging: {
  1603. height: math.unit(6.5, "feet"),
  1604. weight: math.unit(125, "kg"),
  1605. name: "Lounging",
  1606. image: {
  1607. source: "./media/characters/fen/lounging.svg"
  1608. }
  1609. },
  1610. },
  1611. [
  1612. {
  1613. name: "Normal",
  1614. height: math.unit(2.2428, "meter")
  1615. },
  1616. {
  1617. name: "Big",
  1618. height: math.unit(12, "feet")
  1619. },
  1620. {
  1621. name: "Minimacro",
  1622. height: math.unit(40, "feet"),
  1623. default: true,
  1624. info: {
  1625. description: {
  1626. mode: "append",
  1627. text: "\n\nTOO DAMN BIG"
  1628. }
  1629. }
  1630. },
  1631. {
  1632. name: "Macro",
  1633. height: math.unit(100, "feet"),
  1634. info: {
  1635. description: {
  1636. mode: "append",
  1637. text: "\n\nTOO DAMN BIG"
  1638. }
  1639. }
  1640. },
  1641. {
  1642. name: "Macro+",
  1643. height: math.unit(300, "feet")
  1644. },
  1645. {
  1646. name: "Megamacro",
  1647. height: math.unit(2, "miles")
  1648. }
  1649. ]
  1650. ))
  1651. characterMakers.push(() => makeCharacter(
  1652. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1653. {
  1654. front: {
  1655. height: math.unit(183, "cm"),
  1656. weight: math.unit(80, "kg"),
  1657. name: "Front",
  1658. image: {
  1659. source: "./media/characters/sofia-fluttertail/front.svg",
  1660. bottom: 0.01,
  1661. extra: 2154 / 2081
  1662. }
  1663. },
  1664. frontAlt: {
  1665. height: math.unit(183, "cm"),
  1666. weight: math.unit(80, "kg"),
  1667. name: "Front (alt)",
  1668. image: {
  1669. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1670. }
  1671. },
  1672. back: {
  1673. height: math.unit(183, "cm"),
  1674. weight: math.unit(80, "kg"),
  1675. name: "Back",
  1676. image: {
  1677. source: "./media/characters/sofia-fluttertail/back.svg"
  1678. }
  1679. },
  1680. kneeling: {
  1681. height: math.unit(125, "cm"),
  1682. weight: math.unit(80, "kg"),
  1683. name: "Kneeling",
  1684. image: {
  1685. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1686. extra: 1033 / 977,
  1687. bottom: 23.7 / 1057
  1688. }
  1689. },
  1690. maw: {
  1691. height: math.unit(183 / 5, "cm"),
  1692. name: "Maw",
  1693. image: {
  1694. source: "./media/characters/sofia-fluttertail/maw.svg"
  1695. }
  1696. },
  1697. mawcloseup: {
  1698. height: math.unit(183 / 5 * 0.41, "cm"),
  1699. name: "Maw (Closeup)",
  1700. image: {
  1701. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1702. }
  1703. },
  1704. paws: {
  1705. height: math.unit(1.17, "feet"),
  1706. name: "Paws",
  1707. image: {
  1708. source: "./media/characters/sofia-fluttertail/paws.svg",
  1709. extra: 851 / 851,
  1710. bottom: 17 / 868
  1711. }
  1712. },
  1713. },
  1714. [
  1715. {
  1716. name: "Normal",
  1717. height: math.unit(1.83, "meter")
  1718. },
  1719. {
  1720. name: "Size Thief",
  1721. height: math.unit(18, "feet")
  1722. },
  1723. {
  1724. name: "50 Foot Collie",
  1725. height: math.unit(50, "feet")
  1726. },
  1727. {
  1728. name: "Macro",
  1729. height: math.unit(96, "feet"),
  1730. default: true
  1731. },
  1732. {
  1733. name: "Megamerger",
  1734. height: math.unit(650, "feet")
  1735. },
  1736. ]
  1737. ))
  1738. characterMakers.push(() => makeCharacter(
  1739. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1740. {
  1741. front: {
  1742. height: math.unit(7, "feet"),
  1743. weight: math.unit(100, "kg"),
  1744. name: "Front",
  1745. image: {
  1746. source: "./media/characters/march/front.svg",
  1747. extra: 1,
  1748. bottom: 0.015
  1749. }
  1750. },
  1751. foot: {
  1752. height: math.unit(0.9, "feet"),
  1753. name: "Foot",
  1754. image: {
  1755. source: "./media/characters/march/foot.svg"
  1756. }
  1757. },
  1758. },
  1759. [
  1760. {
  1761. name: "Normal",
  1762. height: math.unit(7.9, "feet")
  1763. },
  1764. {
  1765. name: "Macro",
  1766. height: math.unit(220, "meters")
  1767. },
  1768. {
  1769. name: "Megamacro",
  1770. height: math.unit(2.98, "km"),
  1771. default: true
  1772. },
  1773. {
  1774. name: "Gigamacro",
  1775. height: math.unit(15963, "km")
  1776. },
  1777. {
  1778. name: "Teramacro",
  1779. height: math.unit(2980000000, "km")
  1780. },
  1781. {
  1782. name: "Examacro",
  1783. height: math.unit(250, "parsecs")
  1784. },
  1785. ]
  1786. ))
  1787. characterMakers.push(() => makeCharacter(
  1788. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1789. {
  1790. front: {
  1791. height: math.unit(6, "feet"),
  1792. weight: math.unit(60, "kg"),
  1793. name: "Front",
  1794. image: {
  1795. source: "./media/characters/noir/front.svg",
  1796. extra: 1,
  1797. bottom: 0.032
  1798. }
  1799. },
  1800. },
  1801. [
  1802. {
  1803. name: "Normal",
  1804. height: math.unit(6.6, "feet")
  1805. },
  1806. {
  1807. name: "Macro",
  1808. height: math.unit(500, "feet")
  1809. },
  1810. {
  1811. name: "Megamacro",
  1812. height: math.unit(2.5, "km"),
  1813. default: true
  1814. },
  1815. {
  1816. name: "Gigamacro",
  1817. height: math.unit(22500, "km")
  1818. },
  1819. {
  1820. name: "Teramacro",
  1821. height: math.unit(2500000000, "km")
  1822. },
  1823. {
  1824. name: "Examacro",
  1825. height: math.unit(200, "parsecs")
  1826. },
  1827. ]
  1828. ))
  1829. characterMakers.push(() => makeCharacter(
  1830. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1831. {
  1832. front: {
  1833. height: math.unit(7, "feet"),
  1834. weight: math.unit(100, "kg"),
  1835. name: "Front",
  1836. image: {
  1837. source: "./media/characters/okuri/front.svg",
  1838. extra: 1,
  1839. bottom: 0.037
  1840. }
  1841. },
  1842. back: {
  1843. height: math.unit(7, "feet"),
  1844. weight: math.unit(100, "kg"),
  1845. name: "Back",
  1846. image: {
  1847. source: "./media/characters/okuri/back.svg",
  1848. extra: 1,
  1849. bottom: 0.007
  1850. }
  1851. },
  1852. },
  1853. [
  1854. {
  1855. name: "Megamacro",
  1856. height: math.unit(100, "miles"),
  1857. default: true
  1858. },
  1859. ]
  1860. ))
  1861. characterMakers.push(() => makeCharacter(
  1862. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1863. {
  1864. front: {
  1865. height: math.unit(7, "feet"),
  1866. weight: math.unit(100, "kg"),
  1867. name: "Front",
  1868. image: {
  1869. source: "./media/characters/manny/front.svg",
  1870. extra: 1,
  1871. bottom: 0.06
  1872. }
  1873. },
  1874. back: {
  1875. height: math.unit(7, "feet"),
  1876. weight: math.unit(100, "kg"),
  1877. name: "Back",
  1878. image: {
  1879. source: "./media/characters/manny/back.svg",
  1880. extra: 1,
  1881. bottom: 0.014
  1882. }
  1883. },
  1884. },
  1885. [
  1886. {
  1887. name: "Normal",
  1888. height: math.unit(7, "feet"),
  1889. },
  1890. {
  1891. name: "Macro",
  1892. height: math.unit(78, "feet"),
  1893. default: true
  1894. },
  1895. {
  1896. name: "Macro+",
  1897. height: math.unit(300, "meters")
  1898. },
  1899. {
  1900. name: "Macro++",
  1901. height: math.unit(2400, "meters")
  1902. },
  1903. {
  1904. name: "Megamacro",
  1905. height: math.unit(5167, "meters")
  1906. },
  1907. {
  1908. name: "Gigamacro",
  1909. height: math.unit(41769, "miles")
  1910. },
  1911. ]
  1912. ))
  1913. characterMakers.push(() => makeCharacter(
  1914. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1915. {
  1916. front: {
  1917. height: math.unit(7, "feet"),
  1918. weight: math.unit(100, "kg"),
  1919. name: "Front",
  1920. image: {
  1921. source: "./media/characters/adake/front-1.svg"
  1922. }
  1923. },
  1924. frontAlt: {
  1925. height: math.unit(7, "feet"),
  1926. weight: math.unit(100, "kg"),
  1927. name: "Front (Alt)",
  1928. image: {
  1929. source: "./media/characters/adake/front-2.svg",
  1930. extra: 1,
  1931. bottom: 0.01
  1932. }
  1933. },
  1934. back: {
  1935. height: math.unit(7, "feet"),
  1936. weight: math.unit(100, "kg"),
  1937. name: "Back",
  1938. image: {
  1939. source: "./media/characters/adake/back.svg",
  1940. }
  1941. },
  1942. kneel: {
  1943. height: math.unit(5.385, "feet"),
  1944. weight: math.unit(100, "kg"),
  1945. name: "Kneeling",
  1946. image: {
  1947. source: "./media/characters/adake/kneel.svg",
  1948. bottom: 0.052
  1949. }
  1950. },
  1951. },
  1952. [
  1953. {
  1954. name: "Normal",
  1955. height: math.unit(7, "feet"),
  1956. },
  1957. {
  1958. name: "Macro",
  1959. height: math.unit(78, "feet"),
  1960. default: true
  1961. },
  1962. {
  1963. name: "Macro+",
  1964. height: math.unit(300, "meters")
  1965. },
  1966. {
  1967. name: "Macro++",
  1968. height: math.unit(2400, "meters")
  1969. },
  1970. {
  1971. name: "Megamacro",
  1972. height: math.unit(5167, "meters")
  1973. },
  1974. {
  1975. name: "Gigamacro",
  1976. height: math.unit(41769, "miles")
  1977. },
  1978. ]
  1979. ))
  1980. characterMakers.push(() => makeCharacter(
  1981. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1982. {
  1983. front: {
  1984. height: math.unit(1.65, "meters"),
  1985. weight: math.unit(50, "kg"),
  1986. name: "Front",
  1987. image: {
  1988. source: "./media/characters/elijah/front.svg",
  1989. extra: 858 / 830,
  1990. bottom: 95.5 / 953.8559
  1991. }
  1992. },
  1993. back: {
  1994. height: math.unit(1.65, "meters"),
  1995. weight: math.unit(50, "kg"),
  1996. name: "Back",
  1997. image: {
  1998. source: "./media/characters/elijah/back.svg",
  1999. extra: 895 / 850,
  2000. bottom: 5.3 / 897.956
  2001. }
  2002. },
  2003. frontNsfw: {
  2004. height: math.unit(1.65, "meters"),
  2005. weight: math.unit(50, "kg"),
  2006. name: "Front (NSFW)",
  2007. image: {
  2008. source: "./media/characters/elijah/front-nsfw.svg",
  2009. extra: 858 / 830,
  2010. bottom: 95.5 / 953.8559
  2011. }
  2012. },
  2013. backNsfw: {
  2014. height: math.unit(1.65, "meters"),
  2015. weight: math.unit(50, "kg"),
  2016. name: "Back (NSFW)",
  2017. image: {
  2018. source: "./media/characters/elijah/back-nsfw.svg",
  2019. extra: 895 / 850,
  2020. bottom: 5.3 / 897.956
  2021. }
  2022. },
  2023. dick: {
  2024. height: math.unit(1, "feet"),
  2025. name: "Dick",
  2026. image: {
  2027. source: "./media/characters/elijah/dick.svg"
  2028. }
  2029. },
  2030. beakOpen: {
  2031. height: math.unit(1.25, "feet"),
  2032. name: "Beak (Open)",
  2033. image: {
  2034. source: "./media/characters/elijah/beak-open.svg"
  2035. }
  2036. },
  2037. beakShut: {
  2038. height: math.unit(1.25, "feet"),
  2039. name: "Beak (Shut)",
  2040. image: {
  2041. source: "./media/characters/elijah/beak-shut.svg"
  2042. }
  2043. },
  2044. footFlexing: {
  2045. height: math.unit(1.61, "feet"),
  2046. name: "Foot (Flexing)",
  2047. image: {
  2048. source: "./media/characters/elijah/foot-flexing.svg"
  2049. }
  2050. },
  2051. footStepping: {
  2052. height: math.unit(1.44, "feet"),
  2053. name: "Foot (Stepping)",
  2054. image: {
  2055. source: "./media/characters/elijah/foot-stepping.svg"
  2056. }
  2057. },
  2058. plantigradeLeg: {
  2059. height: math.unit(2.34, "feet"),
  2060. name: "Plantigrade Leg",
  2061. image: {
  2062. source: "./media/characters/elijah/plantigrade-leg.svg"
  2063. }
  2064. },
  2065. plantigradeFootLeft: {
  2066. height: math.unit(0.9, "feet"),
  2067. name: "Plantigrade Foot (Left)",
  2068. image: {
  2069. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2070. }
  2071. },
  2072. plantigradeFootRight: {
  2073. height: math.unit(0.9, "feet"),
  2074. name: "Plantigrade Foot (Right)",
  2075. image: {
  2076. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2077. }
  2078. },
  2079. },
  2080. [
  2081. {
  2082. name: "Normal",
  2083. height: math.unit(1.65, "meters")
  2084. },
  2085. {
  2086. name: "Macro",
  2087. height: math.unit(55, "meters"),
  2088. default: true
  2089. },
  2090. {
  2091. name: "Macro+",
  2092. height: math.unit(105, "meters")
  2093. },
  2094. ]
  2095. ))
  2096. characterMakers.push(() => makeCharacter(
  2097. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2098. {
  2099. front: {
  2100. height: math.unit(11, "feet"),
  2101. weight: math.unit(80, "kg"),
  2102. name: "Front",
  2103. image: {
  2104. source: "./media/characters/rai/front.svg",
  2105. extra: 1,
  2106. bottom: 0.03
  2107. }
  2108. },
  2109. side: {
  2110. height: math.unit(11, "feet"),
  2111. weight: math.unit(80, "kg"),
  2112. name: "Side",
  2113. image: {
  2114. source: "./media/characters/rai/side.svg"
  2115. }
  2116. },
  2117. back: {
  2118. height: math.unit(11, "feet"),
  2119. weight: math.unit(80, "lb"),
  2120. name: "Back",
  2121. image: {
  2122. source: "./media/characters/rai/back.svg",
  2123. extra: 1,
  2124. bottom: 0.01
  2125. }
  2126. },
  2127. feral: {
  2128. height: math.unit(11, "feet"),
  2129. weight: math.unit(800, "lb"),
  2130. name: "Feral",
  2131. image: {
  2132. source: "./media/characters/rai/feral.svg",
  2133. extra: 1050 / 659,
  2134. bottom: 0.07
  2135. }
  2136. },
  2137. dragon: {
  2138. height: math.unit(23, "feet"),
  2139. weight: math.unit(50000, "lb"),
  2140. name: "Dragon",
  2141. image: {
  2142. source: "./media/characters/rai/dragon.svg",
  2143. extra: 2498 / 2030,
  2144. bottom: 85.2 / 2584
  2145. }
  2146. },
  2147. maw: {
  2148. height: math.unit(6 / 3.81416, "feet"),
  2149. name: "Maw",
  2150. image: {
  2151. source: "./media/characters/rai/maw.svg"
  2152. }
  2153. },
  2154. },
  2155. [
  2156. {
  2157. name: "Normal",
  2158. height: math.unit(11, "feet")
  2159. },
  2160. {
  2161. name: "Macro",
  2162. height: math.unit(302, "feet"),
  2163. default: true
  2164. },
  2165. ]
  2166. ))
  2167. characterMakers.push(() => makeCharacter(
  2168. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2169. {
  2170. frontDressed: {
  2171. height: math.unit(216, "feet"),
  2172. weight: math.unit(7000000, "lb"),
  2173. name: "Front (Dressed)",
  2174. image: {
  2175. source: "./media/characters/jazzy/front-dressed.svg",
  2176. extra: 2738 / 2651,
  2177. bottom: 41.8 / 2786
  2178. }
  2179. },
  2180. backDressed: {
  2181. height: math.unit(216, "feet"),
  2182. weight: math.unit(7000000, "lb"),
  2183. name: "Back (Dressed)",
  2184. image: {
  2185. source: "./media/characters/jazzy/back-dressed.svg",
  2186. extra: 2775 / 2673,
  2187. bottom: 36.8 / 2817
  2188. }
  2189. },
  2190. front: {
  2191. height: math.unit(216, "feet"),
  2192. weight: math.unit(7000000, "lb"),
  2193. name: "Front",
  2194. image: {
  2195. source: "./media/characters/jazzy/front.svg",
  2196. extra: 2738 / 2651,
  2197. bottom: 41.8 / 2786
  2198. }
  2199. },
  2200. back: {
  2201. height: math.unit(216, "feet"),
  2202. weight: math.unit(7000000, "lb"),
  2203. name: "Back",
  2204. image: {
  2205. source: "./media/characters/jazzy/back.svg",
  2206. extra: 2775 / 2673,
  2207. bottom: 36.8 / 2817
  2208. }
  2209. },
  2210. maw: {
  2211. height: math.unit(20, "feet"),
  2212. name: "Maw",
  2213. image: {
  2214. source: "./media/characters/jazzy/maw.svg"
  2215. }
  2216. },
  2217. paws: {
  2218. height: math.unit(27.5, "feet"),
  2219. name: "Paws",
  2220. image: {
  2221. source: "./media/characters/jazzy/paws.svg"
  2222. }
  2223. },
  2224. eye: {
  2225. height: math.unit(4.4, "feet"),
  2226. name: "Eye",
  2227. image: {
  2228. source: "./media/characters/jazzy/eye.svg"
  2229. }
  2230. },
  2231. droneOffense: {
  2232. height: math.unit(9.5, "inches"),
  2233. name: "Drone (Offense)",
  2234. image: {
  2235. source: "./media/characters/jazzy/drone-offense.svg"
  2236. }
  2237. },
  2238. droneRecon: {
  2239. height: math.unit(9.5, "inches"),
  2240. name: "Drone (Recon)",
  2241. image: {
  2242. source: "./media/characters/jazzy/drone-recon.svg"
  2243. }
  2244. },
  2245. droneDefense: {
  2246. height: math.unit(9.5, "inches"),
  2247. name: "Drone (Defense)",
  2248. image: {
  2249. source: "./media/characters/jazzy/drone-defense.svg"
  2250. }
  2251. },
  2252. },
  2253. [
  2254. {
  2255. name: "Macro",
  2256. height: math.unit(216, "feet"),
  2257. default: true
  2258. },
  2259. ]
  2260. ))
  2261. characterMakers.push(() => makeCharacter(
  2262. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2263. {
  2264. front: {
  2265. height: math.unit(7, "feet"),
  2266. weight: math.unit(80, "kg"),
  2267. name: "Front",
  2268. image: {
  2269. source: "./media/characters/flamm/front.svg",
  2270. extra: 1794 / 1677,
  2271. bottom: 31.7 / 1828.5
  2272. }
  2273. },
  2274. },
  2275. [
  2276. {
  2277. name: "Normal",
  2278. height: math.unit(9.5, "feet")
  2279. },
  2280. {
  2281. name: "Macro",
  2282. height: math.unit(200, "feet"),
  2283. default: true
  2284. },
  2285. ]
  2286. ))
  2287. characterMakers.push(() => makeCharacter(
  2288. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2289. {
  2290. front: {
  2291. height: math.unit(5 + 3/12, "feet"),
  2292. weight: math.unit(60, "kg"),
  2293. name: "Front",
  2294. image: {
  2295. source: "./media/characters/zephiro/front.svg",
  2296. extra: 2309 / 2162,
  2297. bottom: 0.069
  2298. }
  2299. },
  2300. side: {
  2301. height: math.unit(5 + 3/12, "feet"),
  2302. weight: math.unit(60, "kg"),
  2303. name: "Side",
  2304. image: {
  2305. source: "./media/characters/zephiro/side.svg",
  2306. extra: 2403 / 2279,
  2307. bottom: 0.015
  2308. }
  2309. },
  2310. back: {
  2311. height: math.unit(5 + 3/12, "feet"),
  2312. weight: math.unit(60, "kg"),
  2313. name: "Back",
  2314. image: {
  2315. source: "./media/characters/zephiro/back.svg",
  2316. extra: 2373 / 2244,
  2317. bottom: 0.013
  2318. }
  2319. },
  2320. hand: {
  2321. height: math.unit(0.68, "feet"),
  2322. name: "Hand",
  2323. image: {
  2324. source: "./media/characters/zephiro/hand.svg"
  2325. }
  2326. },
  2327. paw: {
  2328. height: math.unit(1, "feet"),
  2329. name: "Paw",
  2330. image: {
  2331. source: "./media/characters/zephiro/paw.svg"
  2332. }
  2333. },
  2334. beans: {
  2335. height: math.unit(0.93, "feet"),
  2336. name: "Beans",
  2337. image: {
  2338. source: "./media/characters/zephiro/beans.svg"
  2339. }
  2340. },
  2341. },
  2342. [
  2343. {
  2344. name: "Micro",
  2345. height: math.unit(3, "inches")
  2346. },
  2347. {
  2348. name: "Normal",
  2349. height: math.unit(5 + 3 / 12, "feet"),
  2350. default: true
  2351. },
  2352. {
  2353. name: "Macro",
  2354. height: math.unit(118, "feet")
  2355. },
  2356. ]
  2357. ))
  2358. characterMakers.push(() => makeCharacter(
  2359. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2360. {
  2361. front: {
  2362. height: math.unit(5, "feet"),
  2363. weight: math.unit(90, "kg"),
  2364. name: "Front",
  2365. image: {
  2366. source: "./media/characters/fory/front.svg",
  2367. extra: 2862 / 2674,
  2368. bottom: 180 / 3043.8
  2369. }
  2370. },
  2371. back: {
  2372. height: math.unit(5, "feet"),
  2373. weight: math.unit(90, "kg"),
  2374. name: "Back",
  2375. image: {
  2376. source: "./media/characters/fory/back.svg",
  2377. extra: 2962 / 2791,
  2378. bottom: 106 / 3071.8
  2379. }
  2380. },
  2381. foot: {
  2382. height: math.unit(2.14, "feet"),
  2383. name: "Foot",
  2384. image: {
  2385. source: "./media/characters/fory/foot.svg"
  2386. }
  2387. },
  2388. },
  2389. [
  2390. {
  2391. name: "Normal",
  2392. height: math.unit(5, "feet")
  2393. },
  2394. {
  2395. name: "Macro",
  2396. height: math.unit(50, "feet"),
  2397. default: true
  2398. },
  2399. {
  2400. name: "Megamacro",
  2401. height: math.unit(10, "miles")
  2402. },
  2403. {
  2404. name: "Gigamacro",
  2405. height: math.unit(5, "earths")
  2406. },
  2407. ]
  2408. ))
  2409. characterMakers.push(() => makeCharacter(
  2410. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2411. {
  2412. front: {
  2413. height: math.unit(7, "feet"),
  2414. weight: math.unit(90, "kg"),
  2415. name: "Front",
  2416. image: {
  2417. source: "./media/characters/kurrikage/front.svg",
  2418. extra: 1,
  2419. bottom: 0.035
  2420. }
  2421. },
  2422. back: {
  2423. height: math.unit(7, "feet"),
  2424. weight: math.unit(90, "lb"),
  2425. name: "Back",
  2426. image: {
  2427. source: "./media/characters/kurrikage/back.svg"
  2428. }
  2429. },
  2430. paw: {
  2431. height: math.unit(1.5, "feet"),
  2432. name: "Paw",
  2433. image: {
  2434. source: "./media/characters/kurrikage/paw.svg"
  2435. }
  2436. },
  2437. staff: {
  2438. height: math.unit(6.7, "feet"),
  2439. name: "Staff",
  2440. image: {
  2441. source: "./media/characters/kurrikage/staff.svg"
  2442. }
  2443. },
  2444. peek: {
  2445. height: math.unit(1.05, "feet"),
  2446. name: "Peeking",
  2447. image: {
  2448. source: "./media/characters/kurrikage/peek.svg",
  2449. bottom: 0.08
  2450. }
  2451. },
  2452. },
  2453. [
  2454. {
  2455. name: "Normal",
  2456. height: math.unit(12, "feet"),
  2457. default: true
  2458. },
  2459. {
  2460. name: "Big",
  2461. height: math.unit(20, "feet")
  2462. },
  2463. {
  2464. name: "Macro",
  2465. height: math.unit(500, "feet")
  2466. },
  2467. {
  2468. name: "Megamacro",
  2469. height: math.unit(20, "miles")
  2470. },
  2471. ]
  2472. ))
  2473. characterMakers.push(() => makeCharacter(
  2474. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2475. {
  2476. front: {
  2477. height: math.unit(6, "feet"),
  2478. weight: math.unit(75, "kg"),
  2479. name: "Front",
  2480. image: {
  2481. source: "./media/characters/shingo/front.svg",
  2482. extra: 706/681,
  2483. bottom: 11/717
  2484. }
  2485. },
  2486. frontAlt: {
  2487. height: math.unit(6, "feet"),
  2488. weight: math.unit(75, "kg"),
  2489. name: "Front (Alt)",
  2490. image: {
  2491. source: "./media/characters/shingo/front-alt.svg",
  2492. extra: 3511 / 3338,
  2493. bottom: 0.005
  2494. }
  2495. },
  2496. paw: {
  2497. height: math.unit(1, "feet"),
  2498. name: "Paw",
  2499. image: {
  2500. source: "./media/characters/shingo/paw.svg"
  2501. }
  2502. },
  2503. },
  2504. [
  2505. {
  2506. name: "Micro",
  2507. height: math.unit(4, "inches")
  2508. },
  2509. {
  2510. name: "Normal",
  2511. height: math.unit(6, "feet"),
  2512. default: true
  2513. },
  2514. {
  2515. name: "Macro",
  2516. height: math.unit(108, "feet")
  2517. },
  2518. {
  2519. name: "Macro+",
  2520. height: math.unit(1500, "feet")
  2521. },
  2522. ]
  2523. ))
  2524. characterMakers.push(() => makeCharacter(
  2525. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2526. {
  2527. side: {
  2528. height: math.unit(6, "feet"),
  2529. weight: math.unit(75, "kg"),
  2530. name: "Side",
  2531. image: {
  2532. source: "./media/characters/aigey/side.svg"
  2533. }
  2534. },
  2535. },
  2536. [
  2537. {
  2538. name: "Macro",
  2539. height: math.unit(200, "feet"),
  2540. default: true
  2541. },
  2542. {
  2543. name: "Megamacro",
  2544. height: math.unit(100, "miles")
  2545. },
  2546. ]
  2547. )
  2548. )
  2549. characterMakers.push(() => makeCharacter(
  2550. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2551. {
  2552. front: {
  2553. height: math.unit(5 + 5 / 12, "feet"),
  2554. weight: math.unit(75, "kg"),
  2555. name: "Front",
  2556. image: {
  2557. source: "./media/characters/natasha/front.svg",
  2558. extra: 859 / 824,
  2559. bottom: 23 / 879.6
  2560. }
  2561. },
  2562. frontNsfw: {
  2563. height: math.unit(5 + 5 / 12, "feet"),
  2564. weight: math.unit(75, "kg"),
  2565. name: "Front (NSFW)",
  2566. image: {
  2567. source: "./media/characters/natasha/front-nsfw.svg",
  2568. extra: 859 / 824,
  2569. bottom: 23 / 879.6
  2570. }
  2571. },
  2572. frontErect: {
  2573. height: math.unit(5 + 5 / 12, "feet"),
  2574. weight: math.unit(75, "kg"),
  2575. name: "Front (Erect)",
  2576. image: {
  2577. source: "./media/characters/natasha/front-erect.svg",
  2578. extra: 859 / 824,
  2579. bottom: 23 / 879.6
  2580. }
  2581. },
  2582. back: {
  2583. height: math.unit(5 + 5 / 12, "feet"),
  2584. weight: math.unit(75, "kg"),
  2585. name: "Back",
  2586. image: {
  2587. source: "./media/characters/natasha/back.svg",
  2588. extra: 887.9 / 852.6,
  2589. bottom: 9.7 / 896.4
  2590. }
  2591. },
  2592. backAlt: {
  2593. height: math.unit(5 + 5 / 12, "feet"),
  2594. weight: math.unit(75, "kg"),
  2595. name: "Back (Alt)",
  2596. image: {
  2597. source: "./media/characters/natasha/back-alt.svg",
  2598. extra: 1236.7 / 1192,
  2599. bottom: 22.3 / 1258.2
  2600. }
  2601. },
  2602. dick: {
  2603. height: math.unit(1.772, "feet"),
  2604. name: "Dick",
  2605. image: {
  2606. source: "./media/characters/natasha/dick.svg"
  2607. }
  2608. },
  2609. paw: {
  2610. height: math.unit(0.250, "meters"),
  2611. name: "Paw",
  2612. image: {
  2613. source: "./media/characters/natasha/paw.svg"
  2614. }
  2615. },
  2616. },
  2617. [
  2618. {
  2619. name: "Normal",
  2620. height: math.unit(5 + 5 / 12, "feet")
  2621. },
  2622. {
  2623. name: "Large",
  2624. height: math.unit(12, "feet")
  2625. },
  2626. {
  2627. name: "Macro",
  2628. height: math.unit(100, "feet"),
  2629. default: true
  2630. },
  2631. {
  2632. name: "Macro+",
  2633. height: math.unit(260, "feet")
  2634. },
  2635. {
  2636. name: "Macro++",
  2637. height: math.unit(1, "mile")
  2638. },
  2639. ]
  2640. ))
  2641. characterMakers.push(() => makeCharacter(
  2642. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2643. {
  2644. front: {
  2645. height: math.unit(6, "feet"),
  2646. weight: math.unit(75, "kg"),
  2647. name: "Front",
  2648. image: {
  2649. source: "./media/characters/malik/front.svg"
  2650. }
  2651. },
  2652. side: {
  2653. height: math.unit(6, "feet"),
  2654. weight: math.unit(75, "kg"),
  2655. name: "Side",
  2656. image: {
  2657. source: "./media/characters/malik/side.svg",
  2658. extra: 1.1539
  2659. }
  2660. },
  2661. back: {
  2662. height: math.unit(6, "feet"),
  2663. weight: math.unit(75, "kg"),
  2664. name: "Back",
  2665. image: {
  2666. source: "./media/characters/malik/back.svg"
  2667. }
  2668. },
  2669. },
  2670. [
  2671. {
  2672. name: "Macro",
  2673. height: math.unit(156, "feet"),
  2674. default: true
  2675. },
  2676. {
  2677. name: "Macro+",
  2678. height: math.unit(1188, "feet")
  2679. },
  2680. ]
  2681. ))
  2682. characterMakers.push(() => makeCharacter(
  2683. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2684. {
  2685. front: {
  2686. height: math.unit(6, "feet"),
  2687. weight: math.unit(75, "kg"),
  2688. name: "Front",
  2689. image: {
  2690. source: "./media/characters/sefer/front.svg",
  2691. extra: 848 / 659,
  2692. bottom: 28.3 / 876.442
  2693. }
  2694. },
  2695. back: {
  2696. height: math.unit(6, "feet"),
  2697. weight: math.unit(75, "kg"),
  2698. name: "Back",
  2699. image: {
  2700. source: "./media/characters/sefer/back.svg",
  2701. extra: 864 / 695,
  2702. bottom: 10 / 871
  2703. }
  2704. },
  2705. frontDressed: {
  2706. height: math.unit(6, "feet"),
  2707. weight: math.unit(75, "kg"),
  2708. name: "Front (Dressed)",
  2709. image: {
  2710. source: "./media/characters/sefer/front-dressed.svg",
  2711. extra: 839 / 653,
  2712. bottom: 37.6 / 878
  2713. }
  2714. },
  2715. },
  2716. [
  2717. {
  2718. name: "Normal",
  2719. height: math.unit(6, "feet"),
  2720. default: true
  2721. },
  2722. ]
  2723. ))
  2724. characterMakers.push(() => makeCharacter(
  2725. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2726. {
  2727. body: {
  2728. height: math.unit(2.2428, "meter"),
  2729. weight: math.unit(124.738, "kg"),
  2730. name: "Body",
  2731. image: {
  2732. extra: 1225 / 1050,
  2733. source: "./media/characters/north/front.svg"
  2734. }
  2735. }
  2736. },
  2737. [
  2738. {
  2739. name: "Micro",
  2740. height: math.unit(4, "inches")
  2741. },
  2742. {
  2743. name: "Macro",
  2744. height: math.unit(63, "meters")
  2745. },
  2746. {
  2747. name: "Megamacro",
  2748. height: math.unit(101, "miles"),
  2749. default: true
  2750. }
  2751. ]
  2752. ))
  2753. characterMakers.push(() => makeCharacter(
  2754. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2755. {
  2756. angled: {
  2757. height: math.unit(4, "meter"),
  2758. weight: math.unit(150, "kg"),
  2759. name: "Angled",
  2760. image: {
  2761. source: "./media/characters/talan/angled-sfw.svg",
  2762. bottom: 29 / 3734
  2763. }
  2764. },
  2765. angledNsfw: {
  2766. height: math.unit(4, "meter"),
  2767. weight: math.unit(150, "kg"),
  2768. name: "Angled (NSFW)",
  2769. image: {
  2770. source: "./media/characters/talan/angled-nsfw.svg",
  2771. bottom: 29 / 3734
  2772. }
  2773. },
  2774. frontNsfw: {
  2775. height: math.unit(4, "meter"),
  2776. weight: math.unit(150, "kg"),
  2777. name: "Front (NSFW)",
  2778. image: {
  2779. source: "./media/characters/talan/front-nsfw.svg",
  2780. bottom: 29 / 3734
  2781. }
  2782. },
  2783. sideNsfw: {
  2784. height: math.unit(4, "meter"),
  2785. weight: math.unit(150, "kg"),
  2786. name: "Side (NSFW)",
  2787. image: {
  2788. source: "./media/characters/talan/side-nsfw.svg",
  2789. bottom: 29 / 3734
  2790. }
  2791. },
  2792. back: {
  2793. height: math.unit(4, "meter"),
  2794. weight: math.unit(150, "kg"),
  2795. name: "Back",
  2796. image: {
  2797. source: "./media/characters/talan/back.svg"
  2798. }
  2799. },
  2800. dickBottom: {
  2801. height: math.unit(0.621, "meter"),
  2802. name: "Dick (Bottom)",
  2803. image: {
  2804. source: "./media/characters/talan/dick-bottom.svg"
  2805. }
  2806. },
  2807. dickTop: {
  2808. height: math.unit(0.621, "meter"),
  2809. name: "Dick (Top)",
  2810. image: {
  2811. source: "./media/characters/talan/dick-top.svg"
  2812. }
  2813. },
  2814. dickSide: {
  2815. height: math.unit(0.305, "meter"),
  2816. name: "Dick (Side)",
  2817. image: {
  2818. source: "./media/characters/talan/dick-side.svg"
  2819. }
  2820. },
  2821. dickFront: {
  2822. height: math.unit(0.305, "meter"),
  2823. name: "Dick (Front)",
  2824. image: {
  2825. source: "./media/characters/talan/dick-front.svg"
  2826. }
  2827. },
  2828. },
  2829. [
  2830. {
  2831. name: "Normal",
  2832. height: math.unit(4, "meters")
  2833. },
  2834. {
  2835. name: "Macro",
  2836. height: math.unit(100, "meters")
  2837. },
  2838. {
  2839. name: "Megamacro",
  2840. height: math.unit(2, "miles"),
  2841. default: true
  2842. },
  2843. {
  2844. name: "Gigamacro",
  2845. height: math.unit(5000, "miles")
  2846. },
  2847. {
  2848. name: "Teramacro",
  2849. height: math.unit(100, "parsecs")
  2850. }
  2851. ]
  2852. ))
  2853. characterMakers.push(() => makeCharacter(
  2854. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2855. {
  2856. front: {
  2857. height: math.unit(2, "meter"),
  2858. weight: math.unit(90, "kg"),
  2859. name: "Front",
  2860. image: {
  2861. source: "./media/characters/gael'rathus/front.svg"
  2862. }
  2863. },
  2864. frontAlt: {
  2865. height: math.unit(2, "meter"),
  2866. weight: math.unit(90, "kg"),
  2867. name: "Front (alt)",
  2868. image: {
  2869. source: "./media/characters/gael'rathus/front-alt.svg"
  2870. }
  2871. },
  2872. frontAlt2: {
  2873. height: math.unit(2, "meter"),
  2874. weight: math.unit(90, "kg"),
  2875. name: "Front (alt 2)",
  2876. image: {
  2877. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2878. }
  2879. }
  2880. },
  2881. [
  2882. {
  2883. name: "Normal",
  2884. height: math.unit(9, "feet"),
  2885. default: true
  2886. },
  2887. {
  2888. name: "Large",
  2889. height: math.unit(25, "feet")
  2890. },
  2891. {
  2892. name: "Macro",
  2893. height: math.unit(0.25, "miles")
  2894. },
  2895. {
  2896. name: "Megamacro",
  2897. height: math.unit(10, "miles")
  2898. }
  2899. ]
  2900. ))
  2901. characterMakers.push(() => makeCharacter(
  2902. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2903. {
  2904. side: {
  2905. height: math.unit(2, "meter"),
  2906. weight: math.unit(140, "kg"),
  2907. name: "Side",
  2908. image: {
  2909. source: "./media/characters/sosha/side.svg",
  2910. bottom: 0.042
  2911. }
  2912. },
  2913. },
  2914. [
  2915. {
  2916. name: "Normal",
  2917. height: math.unit(12, "feet"),
  2918. default: true
  2919. }
  2920. ]
  2921. ))
  2922. characterMakers.push(() => makeCharacter(
  2923. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2924. {
  2925. side: {
  2926. height: math.unit(5 + 5 / 12, "feet"),
  2927. weight: math.unit(170, "kg"),
  2928. name: "Side",
  2929. image: {
  2930. source: "./media/characters/runnola/side.svg",
  2931. extra: 741 / 448,
  2932. bottom: 0.05
  2933. }
  2934. },
  2935. },
  2936. [
  2937. {
  2938. name: "Small",
  2939. height: math.unit(3, "feet")
  2940. },
  2941. {
  2942. name: "Normal",
  2943. height: math.unit(5 + 5 / 12, "feet"),
  2944. default: true
  2945. },
  2946. {
  2947. name: "Big",
  2948. height: math.unit(10, "feet")
  2949. },
  2950. ]
  2951. ))
  2952. characterMakers.push(() => makeCharacter(
  2953. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2954. {
  2955. front: {
  2956. height: math.unit(2, "meter"),
  2957. weight: math.unit(50, "kg"),
  2958. name: "Front",
  2959. image: {
  2960. source: "./media/characters/kurribird/front.svg",
  2961. bottom: 0.015
  2962. }
  2963. },
  2964. frontAlt: {
  2965. height: math.unit(1.5, "meter"),
  2966. weight: math.unit(50, "kg"),
  2967. name: "Front (Alt)",
  2968. image: {
  2969. source: "./media/characters/kurribird/front-alt.svg",
  2970. extra: 1.45
  2971. }
  2972. },
  2973. },
  2974. [
  2975. {
  2976. name: "Normal",
  2977. height: math.unit(7, "feet")
  2978. },
  2979. {
  2980. name: "Big",
  2981. height: math.unit(12, "feet"),
  2982. default: true
  2983. },
  2984. {
  2985. name: "Macro",
  2986. height: math.unit(1500, "feet")
  2987. },
  2988. {
  2989. name: "Megamacro",
  2990. height: math.unit(2, "miles")
  2991. }
  2992. ]
  2993. ))
  2994. characterMakers.push(() => makeCharacter(
  2995. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2996. {
  2997. front: {
  2998. height: math.unit(2, "meter"),
  2999. weight: math.unit(80, "kg"),
  3000. name: "Front",
  3001. image: {
  3002. source: "./media/characters/elbial/front.svg",
  3003. extra: 1643 / 1556,
  3004. bottom: 60.2 / 1696
  3005. }
  3006. },
  3007. side: {
  3008. height: math.unit(2, "meter"),
  3009. weight: math.unit(80, "kg"),
  3010. name: "Side",
  3011. image: {
  3012. source: "./media/characters/elbial/side.svg",
  3013. extra: 1630 / 1565,
  3014. bottom: 71.5 / 1697
  3015. }
  3016. },
  3017. back: {
  3018. height: math.unit(2, "meter"),
  3019. weight: math.unit(80, "kg"),
  3020. name: "Back",
  3021. image: {
  3022. source: "./media/characters/elbial/back.svg",
  3023. extra: 1668 / 1595,
  3024. bottom: 5.6 / 1672
  3025. }
  3026. },
  3027. frontDressed: {
  3028. height: math.unit(2, "meter"),
  3029. weight: math.unit(80, "kg"),
  3030. name: "Front (Dressed)",
  3031. image: {
  3032. source: "./media/characters/elbial/front-dressed.svg",
  3033. extra: 1653 / 1584,
  3034. bottom: 57 / 1708
  3035. }
  3036. },
  3037. genitals: {
  3038. height: math.unit(2 / 3.367, "meter"),
  3039. name: "Genitals",
  3040. image: {
  3041. source: "./media/characters/elbial/genitals.svg"
  3042. }
  3043. },
  3044. },
  3045. [
  3046. {
  3047. name: "Large",
  3048. height: math.unit(100, "feet")
  3049. },
  3050. {
  3051. name: "Macro",
  3052. height: math.unit(500, "feet"),
  3053. default: true
  3054. },
  3055. {
  3056. name: "Megamacro",
  3057. height: math.unit(10, "miles")
  3058. },
  3059. {
  3060. name: "Gigamacro",
  3061. height: math.unit(25000, "miles")
  3062. },
  3063. {
  3064. name: "Full-Size",
  3065. height: math.unit(8000000, "gigaparsecs")
  3066. }
  3067. ]
  3068. ))
  3069. characterMakers.push(() => makeCharacter(
  3070. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3071. {
  3072. front: {
  3073. height: math.unit(2, "meter"),
  3074. weight: math.unit(60, "kg"),
  3075. name: "Front",
  3076. image: {
  3077. source: "./media/characters/noah/front.svg"
  3078. }
  3079. },
  3080. talons: {
  3081. height: math.unit(0.315, "meter"),
  3082. name: "Talons",
  3083. image: {
  3084. source: "./media/characters/noah/talons.svg"
  3085. }
  3086. }
  3087. },
  3088. [
  3089. {
  3090. name: "Large",
  3091. height: math.unit(50, "feet")
  3092. },
  3093. {
  3094. name: "Macro",
  3095. height: math.unit(750, "feet"),
  3096. default: true
  3097. },
  3098. {
  3099. name: "Megamacro",
  3100. height: math.unit(50, "miles")
  3101. },
  3102. {
  3103. name: "Gigamacro",
  3104. height: math.unit(100000, "miles")
  3105. },
  3106. {
  3107. name: "Full-Size",
  3108. height: math.unit(3000000000, "miles")
  3109. }
  3110. ]
  3111. ))
  3112. characterMakers.push(() => makeCharacter(
  3113. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3114. {
  3115. front: {
  3116. height: math.unit(2, "meter"),
  3117. weight: math.unit(80, "kg"),
  3118. name: "Front",
  3119. image: {
  3120. source: "./media/characters/natalya/front.svg"
  3121. }
  3122. },
  3123. back: {
  3124. height: math.unit(2, "meter"),
  3125. weight: math.unit(80, "kg"),
  3126. name: "Back",
  3127. image: {
  3128. source: "./media/characters/natalya/back.svg"
  3129. }
  3130. }
  3131. },
  3132. [
  3133. {
  3134. name: "Normal",
  3135. height: math.unit(150, "feet"),
  3136. default: true
  3137. },
  3138. {
  3139. name: "Megamacro",
  3140. height: math.unit(5, "miles")
  3141. },
  3142. {
  3143. name: "Full-Size",
  3144. height: math.unit(600, "kiloparsecs")
  3145. }
  3146. ]
  3147. ))
  3148. characterMakers.push(() => makeCharacter(
  3149. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3150. {
  3151. front: {
  3152. height: math.unit(2, "meter"),
  3153. weight: math.unit(50, "kg"),
  3154. name: "Front",
  3155. image: {
  3156. source: "./media/characters/erestrebah/front.svg",
  3157. extra: 208 / 193,
  3158. bottom: 0.055
  3159. }
  3160. },
  3161. back: {
  3162. height: math.unit(2, "meter"),
  3163. weight: math.unit(50, "kg"),
  3164. name: "Back",
  3165. image: {
  3166. source: "./media/characters/erestrebah/back.svg",
  3167. extra: 1.3
  3168. }
  3169. }
  3170. },
  3171. [
  3172. {
  3173. name: "Normal",
  3174. height: math.unit(10, "feet")
  3175. },
  3176. {
  3177. name: "Large",
  3178. height: math.unit(50, "feet"),
  3179. default: true
  3180. },
  3181. {
  3182. name: "Macro",
  3183. height: math.unit(300, "feet")
  3184. },
  3185. {
  3186. name: "Macro+",
  3187. height: math.unit(750, "feet")
  3188. },
  3189. {
  3190. name: "Megamacro",
  3191. height: math.unit(3, "miles")
  3192. }
  3193. ]
  3194. ))
  3195. characterMakers.push(() => makeCharacter(
  3196. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3197. {
  3198. front: {
  3199. height: math.unit(2, "meter"),
  3200. weight: math.unit(80, "kg"),
  3201. name: "Front",
  3202. image: {
  3203. source: "./media/characters/jennifer/front.svg",
  3204. bottom: 0.11,
  3205. extra: 1.16
  3206. }
  3207. },
  3208. frontAlt: {
  3209. height: math.unit(2, "meter"),
  3210. weight: math.unit(80, "kg"),
  3211. name: "Front (Alt)",
  3212. image: {
  3213. source: "./media/characters/jennifer/front-alt.svg"
  3214. }
  3215. }
  3216. },
  3217. [
  3218. {
  3219. name: "Canon Height",
  3220. height: math.unit(120, "feet"),
  3221. default: true
  3222. },
  3223. {
  3224. name: "Macro+",
  3225. height: math.unit(300, "feet")
  3226. },
  3227. {
  3228. name: "Megamacro",
  3229. height: math.unit(20000, "feet")
  3230. }
  3231. ]
  3232. ))
  3233. characterMakers.push(() => makeCharacter(
  3234. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3235. {
  3236. front: {
  3237. height: math.unit(2, "meter"),
  3238. weight: math.unit(50, "kg"),
  3239. name: "Front",
  3240. image: {
  3241. source: "./media/characters/kalista/front.svg",
  3242. extra: 1947 / 1700,
  3243. bottom: 76.6 / 1412.98
  3244. }
  3245. },
  3246. back: {
  3247. height: math.unit(2, "meter"),
  3248. weight: math.unit(50, "kg"),
  3249. name: "Back",
  3250. image: {
  3251. source: "./media/characters/kalista/back.svg",
  3252. extra: 1366 / 1156,
  3253. bottom: 33.9 / 1362.78
  3254. }
  3255. }
  3256. },
  3257. [
  3258. {
  3259. name: "Uncomfortably Small",
  3260. height: math.unit(10, "feet")
  3261. },
  3262. {
  3263. name: "Small",
  3264. height: math.unit(30, "feet")
  3265. },
  3266. {
  3267. name: "Macro",
  3268. height: math.unit(100, "feet"),
  3269. default: true
  3270. },
  3271. {
  3272. name: "Macro+",
  3273. height: math.unit(2000, "feet")
  3274. },
  3275. {
  3276. name: "True Form",
  3277. height: math.unit(8924, "miles")
  3278. }
  3279. ]
  3280. ))
  3281. characterMakers.push(() => makeCharacter(
  3282. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3283. {
  3284. front: {
  3285. height: math.unit(2, "meter"),
  3286. weight: math.unit(120, "kg"),
  3287. name: "Front",
  3288. image: {
  3289. source: "./media/characters/ggv/front.svg"
  3290. }
  3291. },
  3292. side: {
  3293. height: math.unit(2, "meter"),
  3294. weight: math.unit(120, "kg"),
  3295. name: "Side",
  3296. image: {
  3297. source: "./media/characters/ggv/side.svg"
  3298. }
  3299. }
  3300. },
  3301. [
  3302. {
  3303. name: "Extremely Puny",
  3304. height: math.unit(9 + 5 / 12, "feet")
  3305. },
  3306. {
  3307. name: "Horribly Small",
  3308. height: math.unit(47.7, "miles"),
  3309. default: true
  3310. },
  3311. {
  3312. name: "Reasonably Sized",
  3313. height: math.unit(25000, "parsecs")
  3314. },
  3315. {
  3316. name: "Slightly Uncompressed",
  3317. height: math.unit(7.77e31, "parsecs")
  3318. },
  3319. {
  3320. name: "Omniversal",
  3321. height: math.unit(1e300, "meters")
  3322. },
  3323. ]
  3324. ))
  3325. characterMakers.push(() => makeCharacter(
  3326. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3327. {
  3328. front: {
  3329. height: math.unit(2, "meter"),
  3330. weight: math.unit(75, "lb"),
  3331. name: "Front",
  3332. image: {
  3333. source: "./media/characters/napalm/front.svg"
  3334. }
  3335. },
  3336. back: {
  3337. height: math.unit(2, "meter"),
  3338. weight: math.unit(75, "lb"),
  3339. name: "Back",
  3340. image: {
  3341. source: "./media/characters/napalm/back.svg"
  3342. }
  3343. }
  3344. },
  3345. [
  3346. {
  3347. name: "Standard",
  3348. height: math.unit(55, "feet"),
  3349. default: true
  3350. }
  3351. ]
  3352. ))
  3353. characterMakers.push(() => makeCharacter(
  3354. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3355. {
  3356. front: {
  3357. height: math.unit(7 + 5 / 6, "feet"),
  3358. weight: math.unit(325, "lb"),
  3359. name: "Front",
  3360. image: {
  3361. source: "./media/characters/asana/front.svg",
  3362. extra: 1133 / 1060,
  3363. bottom: 15.2 / 1148.6
  3364. }
  3365. },
  3366. back: {
  3367. height: math.unit(7 + 5 / 6, "feet"),
  3368. weight: math.unit(325, "lb"),
  3369. name: "Back",
  3370. image: {
  3371. source: "./media/characters/asana/back.svg",
  3372. extra: 1114 / 1043,
  3373. bottom: 5 / 1120
  3374. }
  3375. },
  3376. dressedDark: {
  3377. height: math.unit(7 + 5 / 6, "feet"),
  3378. weight: math.unit(325, "lb"),
  3379. name: "Dressed (Dark)",
  3380. image: {
  3381. source: "./media/characters/asana/dressed-dark.svg",
  3382. extra: 1133 / 1060,
  3383. bottom: 15.2 / 1148.6
  3384. }
  3385. },
  3386. dressedLight: {
  3387. height: math.unit(7 + 5 / 6, "feet"),
  3388. weight: math.unit(325, "lb"),
  3389. name: "Dressed (Light)",
  3390. image: {
  3391. source: "./media/characters/asana/dressed-light.svg",
  3392. extra: 1133 / 1060,
  3393. bottom: 15.2 / 1148.6
  3394. }
  3395. },
  3396. },
  3397. [
  3398. {
  3399. name: "Standard",
  3400. height: math.unit(7 + 5 / 6, "feet"),
  3401. default: true
  3402. },
  3403. {
  3404. name: "Large",
  3405. height: math.unit(10, "meters")
  3406. },
  3407. {
  3408. name: "Macro",
  3409. height: math.unit(2500, "meters")
  3410. },
  3411. {
  3412. name: "Megamacro",
  3413. height: math.unit(5e6, "meters")
  3414. },
  3415. {
  3416. name: "Examacro",
  3417. height: math.unit(5e12, "lightyears")
  3418. },
  3419. {
  3420. name: "Max Size",
  3421. height: math.unit(1e31, "lightyears")
  3422. }
  3423. ]
  3424. ))
  3425. characterMakers.push(() => makeCharacter(
  3426. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3427. {
  3428. front: {
  3429. height: math.unit(2, "meter"),
  3430. weight: math.unit(60, "kg"),
  3431. name: "Front",
  3432. image: {
  3433. source: "./media/characters/ebony/front.svg",
  3434. bottom: 0.03,
  3435. extra: 1045 / 810 + 0.03
  3436. }
  3437. },
  3438. side: {
  3439. height: math.unit(2, "meter"),
  3440. weight: math.unit(60, "kg"),
  3441. name: "Side",
  3442. image: {
  3443. source: "./media/characters/ebony/side.svg",
  3444. bottom: 0.03,
  3445. extra: 1045 / 810 + 0.03
  3446. }
  3447. },
  3448. back: {
  3449. height: math.unit(2, "meter"),
  3450. weight: math.unit(60, "kg"),
  3451. name: "Back",
  3452. image: {
  3453. source: "./media/characters/ebony/back.svg",
  3454. bottom: 0.01,
  3455. extra: 1045 / 810 + 0.01
  3456. }
  3457. },
  3458. },
  3459. [
  3460. // TODO check why I did this lol
  3461. {
  3462. name: "Standard",
  3463. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3464. default: true
  3465. },
  3466. {
  3467. name: "Macro",
  3468. height: math.unit(200, "feet")
  3469. },
  3470. {
  3471. name: "Gigamacro",
  3472. height: math.unit(13000, "km")
  3473. }
  3474. ]
  3475. ))
  3476. characterMakers.push(() => makeCharacter(
  3477. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3478. {
  3479. front: {
  3480. height: math.unit(6, "feet"),
  3481. weight: math.unit(175, "lb"),
  3482. name: "Front",
  3483. image: {
  3484. source: "./media/characters/mountain/front.svg",
  3485. extra: 972 / 955,
  3486. bottom: 64 / 1036.6
  3487. }
  3488. },
  3489. back: {
  3490. height: math.unit(6, "feet"),
  3491. weight: math.unit(175, "lb"),
  3492. name: "Back",
  3493. image: {
  3494. source: "./media/characters/mountain/back.svg",
  3495. extra: 970 / 950,
  3496. bottom: 28.25 / 999
  3497. }
  3498. },
  3499. },
  3500. [
  3501. {
  3502. name: "Large",
  3503. height: math.unit(20, "meters")
  3504. },
  3505. {
  3506. name: "Macro",
  3507. height: math.unit(300, "meters")
  3508. },
  3509. {
  3510. name: "Gigamacro",
  3511. height: math.unit(10000, "km"),
  3512. default: true
  3513. },
  3514. {
  3515. name: "Examacro",
  3516. height: math.unit(10e9, "lightyears")
  3517. }
  3518. ]
  3519. ))
  3520. characterMakers.push(() => makeCharacter(
  3521. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3522. {
  3523. front: {
  3524. height: math.unit(8, "feet"),
  3525. weight: math.unit(500, "lb"),
  3526. name: "Front",
  3527. image: {
  3528. source: "./media/characters/rick/front.svg"
  3529. }
  3530. }
  3531. },
  3532. [
  3533. {
  3534. name: "Normal",
  3535. height: math.unit(8, "feet"),
  3536. default: true
  3537. },
  3538. {
  3539. name: "Macro",
  3540. height: math.unit(5, "km")
  3541. }
  3542. ]
  3543. ))
  3544. characterMakers.push(() => makeCharacter(
  3545. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3546. {
  3547. front: {
  3548. height: math.unit(8, "feet"),
  3549. weight: math.unit(120, "lb"),
  3550. name: "Front",
  3551. image: {
  3552. source: "./media/characters/ona/front.svg"
  3553. }
  3554. },
  3555. frontAlt: {
  3556. height: math.unit(8, "feet"),
  3557. weight: math.unit(120, "lb"),
  3558. name: "Front (Alt)",
  3559. image: {
  3560. source: "./media/characters/ona/front-alt.svg"
  3561. }
  3562. },
  3563. back: {
  3564. height: math.unit(8, "feet"),
  3565. weight: math.unit(120, "lb"),
  3566. name: "Back",
  3567. image: {
  3568. source: "./media/characters/ona/back.svg"
  3569. }
  3570. },
  3571. foot: {
  3572. height: math.unit(1.1, "feet"),
  3573. name: "Foot",
  3574. image: {
  3575. source: "./media/characters/ona/foot.svg"
  3576. }
  3577. }
  3578. },
  3579. [
  3580. {
  3581. name: "Megamacro",
  3582. height: math.unit(70, "km"),
  3583. default: true
  3584. },
  3585. {
  3586. name: "Gigamacro",
  3587. height: math.unit(681818, "miles")
  3588. },
  3589. {
  3590. name: "Examacro",
  3591. height: math.unit(3800000, "lightyears")
  3592. },
  3593. ]
  3594. ))
  3595. characterMakers.push(() => makeCharacter(
  3596. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3597. {
  3598. front: {
  3599. height: math.unit(12, "feet"),
  3600. weight: math.unit(3000, "lb"),
  3601. name: "Front",
  3602. image: {
  3603. source: "./media/characters/mech/front.svg",
  3604. extra: 2900 / 2770,
  3605. bottom: 110 / 3010
  3606. }
  3607. },
  3608. back: {
  3609. height: math.unit(12, "feet"),
  3610. weight: math.unit(3000, "lb"),
  3611. name: "Back",
  3612. image: {
  3613. source: "./media/characters/mech/back.svg",
  3614. extra: 3011 / 2890,
  3615. bottom: 94 / 3105
  3616. }
  3617. },
  3618. maw: {
  3619. height: math.unit(3.07, "feet"),
  3620. name: "Maw",
  3621. image: {
  3622. source: "./media/characters/mech/maw.svg"
  3623. }
  3624. },
  3625. head: {
  3626. height: math.unit(2.82, "feet"),
  3627. name: "Head",
  3628. image: {
  3629. source: "./media/characters/mech/head.svg"
  3630. }
  3631. },
  3632. dick: {
  3633. height: math.unit(1.43, "feet"),
  3634. name: "Dick",
  3635. image: {
  3636. source: "./media/characters/mech/dick.svg"
  3637. }
  3638. },
  3639. },
  3640. [
  3641. {
  3642. name: "Normal",
  3643. height: math.unit(12, "feet")
  3644. },
  3645. {
  3646. name: "Macro",
  3647. height: math.unit(300, "feet"),
  3648. default: true
  3649. },
  3650. {
  3651. name: "Macro+",
  3652. height: math.unit(1500, "feet")
  3653. },
  3654. ]
  3655. ))
  3656. characterMakers.push(() => makeCharacter(
  3657. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3658. {
  3659. front: {
  3660. height: math.unit(1.3, "meter"),
  3661. weight: math.unit(30, "kg"),
  3662. name: "Front",
  3663. image: {
  3664. source: "./media/characters/gregory/front.svg",
  3665. }
  3666. }
  3667. },
  3668. [
  3669. {
  3670. name: "Normal",
  3671. height: math.unit(1.3, "meter"),
  3672. default: true
  3673. },
  3674. {
  3675. name: "Macro",
  3676. height: math.unit(20, "meter")
  3677. }
  3678. ]
  3679. ))
  3680. characterMakers.push(() => makeCharacter(
  3681. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3682. {
  3683. front: {
  3684. height: math.unit(2.8, "meter"),
  3685. weight: math.unit(200, "kg"),
  3686. name: "Front",
  3687. image: {
  3688. source: "./media/characters/elory/front.svg",
  3689. }
  3690. }
  3691. },
  3692. [
  3693. {
  3694. name: "Normal",
  3695. height: math.unit(2.8, "meter"),
  3696. default: true
  3697. },
  3698. {
  3699. name: "Macro",
  3700. height: math.unit(38, "meter")
  3701. }
  3702. ]
  3703. ))
  3704. characterMakers.push(() => makeCharacter(
  3705. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3706. {
  3707. front: {
  3708. height: math.unit(470, "feet"),
  3709. weight: math.unit(924, "tons"),
  3710. name: "Front",
  3711. image: {
  3712. source: "./media/characters/angelpatamon/front.svg",
  3713. }
  3714. }
  3715. },
  3716. [
  3717. {
  3718. name: "Normal",
  3719. height: math.unit(470, "feet"),
  3720. default: true
  3721. },
  3722. {
  3723. name: "Deity Size I",
  3724. height: math.unit(28651.2, "km")
  3725. },
  3726. {
  3727. name: "Deity Size II",
  3728. height: math.unit(171907.2, "km")
  3729. }
  3730. ]
  3731. ))
  3732. characterMakers.push(() => makeCharacter(
  3733. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3734. {
  3735. side: {
  3736. height: math.unit(7.2, "meter"),
  3737. weight: math.unit(8.2, "tons"),
  3738. name: "Side",
  3739. image: {
  3740. source: "./media/characters/cryae/side.svg",
  3741. extra: 3500 / 1500
  3742. }
  3743. }
  3744. },
  3745. [
  3746. {
  3747. name: "Normal",
  3748. height: math.unit(7.2, "meter"),
  3749. default: true
  3750. }
  3751. ]
  3752. ))
  3753. characterMakers.push(() => makeCharacter(
  3754. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3755. {
  3756. front: {
  3757. height: math.unit(6, "feet"),
  3758. weight: math.unit(175, "lb"),
  3759. name: "Front",
  3760. image: {
  3761. source: "./media/characters/xera/front.svg",
  3762. extra: 2377 / 1972,
  3763. bottom: 75.5 / 2452
  3764. }
  3765. },
  3766. side: {
  3767. height: math.unit(6, "feet"),
  3768. weight: math.unit(175, "lb"),
  3769. name: "Side",
  3770. image: {
  3771. source: "./media/characters/xera/side.svg",
  3772. extra: 2345 / 2019,
  3773. bottom: 39.7 / 2384
  3774. }
  3775. },
  3776. back: {
  3777. height: math.unit(6, "feet"),
  3778. weight: math.unit(175, "lb"),
  3779. name: "Back",
  3780. image: {
  3781. source: "./media/characters/xera/back.svg",
  3782. extra: 2095 / 1984,
  3783. bottom: 67 / 2166
  3784. }
  3785. },
  3786. },
  3787. [
  3788. {
  3789. name: "Small",
  3790. height: math.unit(10, "feet")
  3791. },
  3792. {
  3793. name: "Macro",
  3794. height: math.unit(500, "meters"),
  3795. default: true
  3796. },
  3797. {
  3798. name: "Macro+",
  3799. height: math.unit(10, "km")
  3800. },
  3801. {
  3802. name: "Gigamacro",
  3803. height: math.unit(25000, "km")
  3804. },
  3805. {
  3806. name: "Teramacro",
  3807. height: math.unit(3e6, "km")
  3808. }
  3809. ]
  3810. ))
  3811. characterMakers.push(() => makeCharacter(
  3812. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3813. {
  3814. front: {
  3815. height: math.unit(6, "feet"),
  3816. weight: math.unit(175, "lb"),
  3817. name: "Front",
  3818. image: {
  3819. source: "./media/characters/nebula/front.svg",
  3820. extra: 2566 / 2362,
  3821. bottom: 81 / 2644
  3822. }
  3823. }
  3824. },
  3825. [
  3826. {
  3827. name: "Small",
  3828. height: math.unit(4.5, "meters")
  3829. },
  3830. {
  3831. name: "Macro",
  3832. height: math.unit(1500, "meters"),
  3833. default: true
  3834. },
  3835. {
  3836. name: "Megamacro",
  3837. height: math.unit(150, "km")
  3838. },
  3839. {
  3840. name: "Gigamacro",
  3841. height: math.unit(27000, "km")
  3842. }
  3843. ]
  3844. ))
  3845. characterMakers.push(() => makeCharacter(
  3846. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3847. {
  3848. front: {
  3849. height: math.unit(6, "feet"),
  3850. weight: math.unit(225, "lb"),
  3851. name: "Front",
  3852. image: {
  3853. source: "./media/characters/abysgar/front.svg"
  3854. }
  3855. }
  3856. },
  3857. [
  3858. {
  3859. name: "Small",
  3860. height: math.unit(4.5, "meters")
  3861. },
  3862. {
  3863. name: "Macro",
  3864. height: math.unit(1250, "meters"),
  3865. default: true
  3866. },
  3867. {
  3868. name: "Megamacro",
  3869. height: math.unit(125, "km")
  3870. },
  3871. {
  3872. name: "Gigamacro",
  3873. height: math.unit(26000, "km")
  3874. }
  3875. ]
  3876. ))
  3877. characterMakers.push(() => makeCharacter(
  3878. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3879. {
  3880. front: {
  3881. height: math.unit(6, "feet"),
  3882. weight: math.unit(180, "lb"),
  3883. name: "Front",
  3884. image: {
  3885. source: "./media/characters/yakuz/front.svg"
  3886. }
  3887. }
  3888. },
  3889. [
  3890. {
  3891. name: "Small",
  3892. height: math.unit(5, "meters")
  3893. },
  3894. {
  3895. name: "Macro",
  3896. height: math.unit(1500, "meters"),
  3897. default: true
  3898. },
  3899. {
  3900. name: "Megamacro",
  3901. height: math.unit(200, "km")
  3902. },
  3903. {
  3904. name: "Gigamacro",
  3905. height: math.unit(100000, "km")
  3906. }
  3907. ]
  3908. ))
  3909. characterMakers.push(() => makeCharacter(
  3910. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3911. {
  3912. front: {
  3913. height: math.unit(6, "feet"),
  3914. weight: math.unit(175, "lb"),
  3915. name: "Front",
  3916. image: {
  3917. source: "./media/characters/mirova/front.svg",
  3918. extra: 3334 / 3071,
  3919. bottom: 42 / 3375.6
  3920. }
  3921. }
  3922. },
  3923. [
  3924. {
  3925. name: "Small",
  3926. height: math.unit(5, "meters")
  3927. },
  3928. {
  3929. name: "Macro",
  3930. height: math.unit(900, "meters"),
  3931. default: true
  3932. },
  3933. {
  3934. name: "Megamacro",
  3935. height: math.unit(135, "km")
  3936. },
  3937. {
  3938. name: "Gigamacro",
  3939. height: math.unit(20000, "km")
  3940. }
  3941. ]
  3942. ))
  3943. characterMakers.push(() => makeCharacter(
  3944. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3945. {
  3946. side: {
  3947. height: math.unit(28.35, "feet"),
  3948. weight: math.unit(99.75, "tons"),
  3949. name: "Side",
  3950. image: {
  3951. source: "./media/characters/asana-mech/side.svg",
  3952. extra: 923 / 699,
  3953. bottom: 50 / 975
  3954. }
  3955. },
  3956. chaingun: {
  3957. height: math.unit(7, "feet"),
  3958. weight: math.unit(2400, "lb"),
  3959. name: "Chaingun",
  3960. image: {
  3961. source: "./media/characters/asana-mech/chaingun.svg"
  3962. }
  3963. },
  3964. laser: {
  3965. height: math.unit(7.12, "feet"),
  3966. weight: math.unit(2000, "lb"),
  3967. name: "Laser",
  3968. image: {
  3969. source: "./media/characters/asana-mech/laser.svg"
  3970. }
  3971. },
  3972. },
  3973. [
  3974. {
  3975. name: "Normal",
  3976. height: math.unit(28.35, "feet"),
  3977. default: true
  3978. },
  3979. {
  3980. name: "Macro",
  3981. height: math.unit(2500, "feet")
  3982. },
  3983. {
  3984. name: "Megamacro",
  3985. height: math.unit(25, "miles")
  3986. },
  3987. {
  3988. name: "Examacro",
  3989. height: math.unit(6e8, "lightyears")
  3990. },
  3991. ]
  3992. ))
  3993. characterMakers.push(() => makeCharacter(
  3994. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3995. {
  3996. front: {
  3997. height: math.unit(5, "meters"),
  3998. weight: math.unit(1000, "kg"),
  3999. name: "Front",
  4000. image: {
  4001. source: "./media/characters/asche/front.svg",
  4002. extra: 1258 / 1190,
  4003. bottom: 47 / 1305
  4004. }
  4005. },
  4006. frontUnderwear: {
  4007. height: math.unit(5, "meters"),
  4008. weight: math.unit(1000, "kg"),
  4009. name: "Front (Underwear)",
  4010. image: {
  4011. source: "./media/characters/asche/front-underwear.svg",
  4012. extra: 1258 / 1190,
  4013. bottom: 47 / 1305
  4014. }
  4015. },
  4016. frontDressed: {
  4017. height: math.unit(5, "meters"),
  4018. weight: math.unit(1000, "kg"),
  4019. name: "Front (Dressed)",
  4020. image: {
  4021. source: "./media/characters/asche/front-dressed.svg",
  4022. extra: 1258 / 1190,
  4023. bottom: 47 / 1305
  4024. }
  4025. },
  4026. frontArmor: {
  4027. height: math.unit(5, "meters"),
  4028. weight: math.unit(1000, "kg"),
  4029. name: "Front (Armored)",
  4030. image: {
  4031. source: "./media/characters/asche/front-armored.svg",
  4032. extra: 1374 / 1308,
  4033. bottom: 23 / 1397
  4034. }
  4035. },
  4036. mp724: {
  4037. height: math.unit(0.96, "meters"),
  4038. weight: math.unit(38, "kg"),
  4039. name: "H&K MP724",
  4040. image: {
  4041. source: "./media/characters/asche/h&k-mp724.svg"
  4042. }
  4043. },
  4044. side: {
  4045. height: math.unit(5, "meters"),
  4046. weight: math.unit(1000, "kg"),
  4047. name: "Side",
  4048. image: {
  4049. source: "./media/characters/asche/side.svg",
  4050. extra: 1717 / 1609,
  4051. bottom: 0.005
  4052. }
  4053. },
  4054. back: {
  4055. height: math.unit(5, "meters"),
  4056. weight: math.unit(1000, "kg"),
  4057. name: "Back",
  4058. image: {
  4059. source: "./media/characters/asche/back.svg",
  4060. extra: 1570 / 1501
  4061. }
  4062. },
  4063. },
  4064. [
  4065. {
  4066. name: "DEFCON 5",
  4067. height: math.unit(5, "meters")
  4068. },
  4069. {
  4070. name: "DEFCON 4",
  4071. height: math.unit(500, "meters"),
  4072. default: true
  4073. },
  4074. {
  4075. name: "DEFCON 3",
  4076. height: math.unit(5, "km")
  4077. },
  4078. {
  4079. name: "DEFCON 2",
  4080. height: math.unit(500, "km")
  4081. },
  4082. {
  4083. name: "DEFCON 1",
  4084. height: math.unit(500000, "km")
  4085. },
  4086. {
  4087. name: "DEFCON 0",
  4088. height: math.unit(3, "gigaparsecs")
  4089. },
  4090. ]
  4091. ))
  4092. characterMakers.push(() => makeCharacter(
  4093. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4094. {
  4095. front: {
  4096. height: math.unit(2, "meters"),
  4097. weight: math.unit(76, "kg"),
  4098. name: "Front",
  4099. image: {
  4100. source: "./media/characters/gale/front.svg"
  4101. }
  4102. },
  4103. frontAlt1: {
  4104. height: math.unit(2, "meters"),
  4105. weight: math.unit(76, "kg"),
  4106. name: "Front (Alt 1)",
  4107. image: {
  4108. source: "./media/characters/gale/front-alt-1.svg"
  4109. }
  4110. },
  4111. frontAlt2: {
  4112. height: math.unit(2, "meters"),
  4113. weight: math.unit(76, "kg"),
  4114. name: "Front (Alt 2)",
  4115. image: {
  4116. source: "./media/characters/gale/front-alt-2.svg"
  4117. }
  4118. },
  4119. },
  4120. [
  4121. {
  4122. name: "Normal",
  4123. height: math.unit(7, "feet")
  4124. },
  4125. {
  4126. name: "Macro",
  4127. height: math.unit(150, "feet"),
  4128. default: true
  4129. },
  4130. {
  4131. name: "Macro+",
  4132. height: math.unit(300, "feet")
  4133. },
  4134. ]
  4135. ))
  4136. characterMakers.push(() => makeCharacter(
  4137. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4138. {
  4139. front: {
  4140. height: math.unit(2, "meters"),
  4141. weight: math.unit(76, "kg"),
  4142. name: "Front",
  4143. image: {
  4144. source: "./media/characters/draylen/front.svg"
  4145. }
  4146. }
  4147. },
  4148. [
  4149. {
  4150. name: "Macro",
  4151. height: math.unit(150, "feet"),
  4152. default: true
  4153. }
  4154. ]
  4155. ))
  4156. characterMakers.push(() => makeCharacter(
  4157. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4158. {
  4159. front: {
  4160. height: math.unit(7 + 9 / 12, "feet"),
  4161. weight: math.unit(379, "lbs"),
  4162. name: "Front",
  4163. image: {
  4164. source: "./media/characters/chez/front.svg"
  4165. }
  4166. },
  4167. side: {
  4168. height: math.unit(7 + 9 / 12, "feet"),
  4169. weight: math.unit(379, "lbs"),
  4170. name: "Side",
  4171. image: {
  4172. source: "./media/characters/chez/side.svg"
  4173. }
  4174. }
  4175. },
  4176. [
  4177. {
  4178. name: "Normal",
  4179. height: math.unit(7 + 9 / 12, "feet"),
  4180. default: true
  4181. },
  4182. {
  4183. name: "God King",
  4184. height: math.unit(9750000, "meters")
  4185. }
  4186. ]
  4187. ))
  4188. characterMakers.push(() => makeCharacter(
  4189. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4190. {
  4191. front: {
  4192. height: math.unit(6, "feet"),
  4193. weight: math.unit(275, "lbs"),
  4194. name: "Front",
  4195. image: {
  4196. source: "./media/characters/kaylum/front.svg",
  4197. bottom: 0.01,
  4198. extra: 1166 / 1031
  4199. }
  4200. },
  4201. frontWingless: {
  4202. height: math.unit(6, "feet"),
  4203. weight: math.unit(275, "lbs"),
  4204. name: "Front (Wingless)",
  4205. image: {
  4206. source: "./media/characters/kaylum/front-wingless.svg",
  4207. bottom: 0.01,
  4208. extra: 1117 / 1031
  4209. }
  4210. }
  4211. },
  4212. [
  4213. {
  4214. name: "Normal",
  4215. height: math.unit(3.05, "meters")
  4216. },
  4217. {
  4218. name: "Master",
  4219. height: math.unit(5.5, "meters")
  4220. },
  4221. {
  4222. name: "Rampage",
  4223. height: math.unit(19, "meters")
  4224. },
  4225. {
  4226. name: "Macro Lite",
  4227. height: math.unit(37, "meters")
  4228. },
  4229. {
  4230. name: "Hyper Predator",
  4231. height: math.unit(61, "meters")
  4232. },
  4233. {
  4234. name: "Macro",
  4235. height: math.unit(138, "meters"),
  4236. default: true
  4237. }
  4238. ]
  4239. ))
  4240. characterMakers.push(() => makeCharacter(
  4241. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4242. {
  4243. front: {
  4244. height: math.unit(6, "feet"),
  4245. weight: math.unit(150, "lbs"),
  4246. name: "Front",
  4247. image: {
  4248. source: "./media/characters/geta/front.svg"
  4249. }
  4250. }
  4251. },
  4252. [
  4253. {
  4254. name: "Micro",
  4255. height: math.unit(3, "inches"),
  4256. default: true
  4257. },
  4258. {
  4259. name: "Normal",
  4260. height: math.unit(5 + 5 / 12, "feet")
  4261. }
  4262. ]
  4263. ))
  4264. characterMakers.push(() => makeCharacter(
  4265. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4266. {
  4267. front: {
  4268. height: math.unit(6, "feet"),
  4269. weight: math.unit(300, "lbs"),
  4270. name: "Front",
  4271. image: {
  4272. source: "./media/characters/tyrnn/front.svg"
  4273. }
  4274. }
  4275. },
  4276. [
  4277. {
  4278. name: "Main Height",
  4279. height: math.unit(355, "feet"),
  4280. default: true
  4281. },
  4282. {
  4283. name: "Fave. Height",
  4284. height: math.unit(2400, "feet")
  4285. }
  4286. ]
  4287. ))
  4288. characterMakers.push(() => makeCharacter(
  4289. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4290. {
  4291. front: {
  4292. height: math.unit(6, "feet"),
  4293. weight: math.unit(300, "lbs"),
  4294. name: "Front",
  4295. image: {
  4296. source: "./media/characters/appledectomy/front.svg"
  4297. }
  4298. }
  4299. },
  4300. [
  4301. {
  4302. name: "Macro",
  4303. height: math.unit(2500, "feet")
  4304. },
  4305. {
  4306. name: "Megamacro",
  4307. height: math.unit(50, "miles"),
  4308. default: true
  4309. },
  4310. {
  4311. name: "Gigamacro",
  4312. height: math.unit(5000, "miles")
  4313. },
  4314. {
  4315. name: "Teramacro",
  4316. height: math.unit(250000, "miles")
  4317. },
  4318. ]
  4319. ))
  4320. characterMakers.push(() => makeCharacter(
  4321. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4322. {
  4323. front: {
  4324. height: math.unit(6, "feet"),
  4325. weight: math.unit(200, "lbs"),
  4326. name: "Front",
  4327. image: {
  4328. source: "./media/characters/vulpes/front.svg",
  4329. extra: 573 / 543,
  4330. bottom: 0.033
  4331. }
  4332. },
  4333. side: {
  4334. height: math.unit(6, "feet"),
  4335. weight: math.unit(200, "lbs"),
  4336. name: "Side",
  4337. image: {
  4338. source: "./media/characters/vulpes/side.svg",
  4339. extra: 577 / 549,
  4340. bottom: 11 / 588
  4341. }
  4342. },
  4343. back: {
  4344. height: math.unit(6, "feet"),
  4345. weight: math.unit(200, "lbs"),
  4346. name: "Back",
  4347. image: {
  4348. source: "./media/characters/vulpes/back.svg",
  4349. extra: 573 / 549,
  4350. bottom: 20 / 593
  4351. }
  4352. },
  4353. feet: {
  4354. height: math.unit(1.276, "feet"),
  4355. name: "Feet",
  4356. image: {
  4357. source: "./media/characters/vulpes/feet.svg"
  4358. }
  4359. },
  4360. maw: {
  4361. height: math.unit(1.18, "feet"),
  4362. name: "Maw",
  4363. image: {
  4364. source: "./media/characters/vulpes/maw.svg"
  4365. }
  4366. },
  4367. },
  4368. [
  4369. {
  4370. name: "Micro",
  4371. height: math.unit(2, "inches")
  4372. },
  4373. {
  4374. name: "Normal",
  4375. height: math.unit(6.3, "feet")
  4376. },
  4377. {
  4378. name: "Macro",
  4379. height: math.unit(850, "feet")
  4380. },
  4381. {
  4382. name: "Megamacro",
  4383. height: math.unit(7500, "feet"),
  4384. default: true
  4385. },
  4386. {
  4387. name: "Gigamacro",
  4388. height: math.unit(570000, "miles")
  4389. }
  4390. ]
  4391. ))
  4392. characterMakers.push(() => makeCharacter(
  4393. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4394. {
  4395. front: {
  4396. height: math.unit(6, "feet"),
  4397. weight: math.unit(210, "lbs"),
  4398. name: "Front",
  4399. image: {
  4400. source: "./media/characters/rain-fallen/front.svg"
  4401. }
  4402. },
  4403. side: {
  4404. height: math.unit(6, "feet"),
  4405. weight: math.unit(210, "lbs"),
  4406. name: "Side",
  4407. image: {
  4408. source: "./media/characters/rain-fallen/side.svg"
  4409. }
  4410. },
  4411. back: {
  4412. height: math.unit(6, "feet"),
  4413. weight: math.unit(210, "lbs"),
  4414. name: "Back",
  4415. image: {
  4416. source: "./media/characters/rain-fallen/back.svg"
  4417. }
  4418. },
  4419. feral: {
  4420. height: math.unit(9, "feet"),
  4421. weight: math.unit(700, "lbs"),
  4422. name: "Feral",
  4423. image: {
  4424. source: "./media/characters/rain-fallen/feral.svg"
  4425. }
  4426. },
  4427. },
  4428. [
  4429. {
  4430. name: "Meddling with Mortals",
  4431. height: math.unit(8 + 8/12, "feet")
  4432. },
  4433. {
  4434. name: "Normal",
  4435. height: math.unit(5, "meter")
  4436. },
  4437. {
  4438. name: "Macro",
  4439. height: math.unit(150, "meter"),
  4440. default: true
  4441. },
  4442. {
  4443. name: "Megamacro",
  4444. height: math.unit(278e6, "meter")
  4445. },
  4446. {
  4447. name: "Gigamacro",
  4448. height: math.unit(2e9, "meter")
  4449. },
  4450. {
  4451. name: "Teramacro",
  4452. height: math.unit(8e12, "meter")
  4453. },
  4454. {
  4455. name: "Devourer",
  4456. height: math.unit(14, "zettameters")
  4457. },
  4458. {
  4459. name: "Scarlet King",
  4460. height: math.unit(18, "yottameters")
  4461. },
  4462. {
  4463. name: "Void",
  4464. height: math.unit(1e88, "yottameters")
  4465. }
  4466. ]
  4467. ))
  4468. characterMakers.push(() => makeCharacter(
  4469. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4470. {
  4471. standing: {
  4472. height: math.unit(6, "feet"),
  4473. weight: math.unit(180, "lbs"),
  4474. name: "Standing",
  4475. image: {
  4476. source: "./media/characters/zaakira/standing.svg"
  4477. }
  4478. },
  4479. laying: {
  4480. height: math.unit(3, "feet"),
  4481. weight: math.unit(180, "lbs"),
  4482. name: "Laying",
  4483. image: {
  4484. source: "./media/characters/zaakira/laying.svg"
  4485. }
  4486. },
  4487. },
  4488. [
  4489. {
  4490. name: "Normal",
  4491. height: math.unit(12, "feet")
  4492. },
  4493. {
  4494. name: "Macro",
  4495. height: math.unit(279, "feet"),
  4496. default: true
  4497. }
  4498. ]
  4499. ))
  4500. characterMakers.push(() => makeCharacter(
  4501. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4502. {
  4503. femSfw: {
  4504. height: math.unit(8, "feet"),
  4505. weight: math.unit(350, "lb"),
  4506. name: "Fem",
  4507. image: {
  4508. source: "./media/characters/sigvald/fem-sfw.svg",
  4509. extra: 182 / 164,
  4510. bottom: 8.7 / 190.5
  4511. }
  4512. },
  4513. femNsfw: {
  4514. height: math.unit(8, "feet"),
  4515. weight: math.unit(350, "lb"),
  4516. name: "Fem (NSFW)",
  4517. image: {
  4518. source: "./media/characters/sigvald/fem-nsfw.svg",
  4519. extra: 182 / 164,
  4520. bottom: 8.7 / 190.5
  4521. }
  4522. },
  4523. maleNsfw: {
  4524. height: math.unit(8, "feet"),
  4525. weight: math.unit(350, "lb"),
  4526. name: "Male (NSFW)",
  4527. image: {
  4528. source: "./media/characters/sigvald/male-nsfw.svg",
  4529. extra: 182 / 164,
  4530. bottom: 8.7 / 190.5
  4531. }
  4532. },
  4533. hermNsfw: {
  4534. height: math.unit(8, "feet"),
  4535. weight: math.unit(350, "lb"),
  4536. name: "Herm (NSFW)",
  4537. image: {
  4538. source: "./media/characters/sigvald/herm-nsfw.svg",
  4539. extra: 182 / 164,
  4540. bottom: 8.7 / 190.5
  4541. }
  4542. },
  4543. dick: {
  4544. height: math.unit(2.36, "feet"),
  4545. name: "Dick",
  4546. image: {
  4547. source: "./media/characters/sigvald/dick.svg"
  4548. }
  4549. },
  4550. eye: {
  4551. height: math.unit(0.31, "feet"),
  4552. name: "Eye",
  4553. image: {
  4554. source: "./media/characters/sigvald/eye.svg"
  4555. }
  4556. },
  4557. mouth: {
  4558. height: math.unit(0.92, "feet"),
  4559. name: "Mouth",
  4560. image: {
  4561. source: "./media/characters/sigvald/mouth.svg"
  4562. }
  4563. },
  4564. paws: {
  4565. height: math.unit(2.2, "feet"),
  4566. name: "Paws",
  4567. image: {
  4568. source: "./media/characters/sigvald/paws.svg"
  4569. }
  4570. }
  4571. },
  4572. [
  4573. {
  4574. name: "Normal",
  4575. height: math.unit(8, "feet")
  4576. },
  4577. {
  4578. name: "Large",
  4579. height: math.unit(12, "feet")
  4580. },
  4581. {
  4582. name: "Larger",
  4583. height: math.unit(20, "feet")
  4584. },
  4585. {
  4586. name: "Macro",
  4587. height: math.unit(150, "feet")
  4588. },
  4589. {
  4590. name: "Macro+",
  4591. height: math.unit(200, "feet"),
  4592. default: true
  4593. },
  4594. ]
  4595. ))
  4596. characterMakers.push(() => makeCharacter(
  4597. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4598. {
  4599. side: {
  4600. height: math.unit(12, "feet"),
  4601. weight: math.unit(2000, "kg"),
  4602. name: "Side",
  4603. image: {
  4604. source: "./media/characters/scott/side.svg",
  4605. extra: 754 / 724,
  4606. bottom: 0.069
  4607. }
  4608. },
  4609. upright: {
  4610. height: math.unit(12, "feet"),
  4611. weight: math.unit(2000, "kg"),
  4612. name: "Upright",
  4613. image: {
  4614. source: "./media/characters/scott/upright.svg",
  4615. extra: 3881 / 3722,
  4616. bottom: 0.05
  4617. }
  4618. },
  4619. },
  4620. [
  4621. {
  4622. name: "Normal",
  4623. height: math.unit(12, "feet"),
  4624. default: true
  4625. },
  4626. ]
  4627. ))
  4628. characterMakers.push(() => makeCharacter(
  4629. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4630. {
  4631. side: {
  4632. height: math.unit(8, "meters"),
  4633. weight: math.unit(84755, "lbs"),
  4634. name: "Side",
  4635. image: {
  4636. source: "./media/characters/tobias/side.svg",
  4637. extra: 1474 / 1096,
  4638. bottom: 38.9 / 1513.1235
  4639. }
  4640. },
  4641. },
  4642. [
  4643. {
  4644. name: "Normal",
  4645. height: math.unit(8, "meters"),
  4646. default: true
  4647. },
  4648. ]
  4649. ))
  4650. characterMakers.push(() => makeCharacter(
  4651. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4652. {
  4653. front: {
  4654. height: math.unit(5.5, "feet"),
  4655. weight: math.unit(400, "lbs"),
  4656. name: "Front",
  4657. image: {
  4658. source: "./media/characters/kieran/front.svg",
  4659. extra: 2694 / 2364,
  4660. bottom: 217 / 2908
  4661. }
  4662. },
  4663. side: {
  4664. height: math.unit(5.5, "feet"),
  4665. weight: math.unit(400, "lbs"),
  4666. name: "Side",
  4667. image: {
  4668. source: "./media/characters/kieran/side.svg",
  4669. extra: 875 / 777,
  4670. bottom: 84.6 / 959
  4671. }
  4672. },
  4673. },
  4674. [
  4675. {
  4676. name: "Normal",
  4677. height: math.unit(5.5, "feet"),
  4678. default: true
  4679. },
  4680. ]
  4681. ))
  4682. characterMakers.push(() => makeCharacter(
  4683. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4684. {
  4685. side: {
  4686. height: math.unit(2, "meters"),
  4687. weight: math.unit(70, "kg"),
  4688. name: "Side",
  4689. image: {
  4690. source: "./media/characters/sanya/side.svg",
  4691. bottom: 0.02,
  4692. extra: 1.02
  4693. }
  4694. },
  4695. },
  4696. [
  4697. {
  4698. name: "Small",
  4699. height: math.unit(2, "meters")
  4700. },
  4701. {
  4702. name: "Normal",
  4703. height: math.unit(3, "meters")
  4704. },
  4705. {
  4706. name: "Macro",
  4707. height: math.unit(16, "meters"),
  4708. default: true
  4709. },
  4710. ]
  4711. ))
  4712. characterMakers.push(() => makeCharacter(
  4713. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4714. {
  4715. front: {
  4716. height: math.unit(2, "meters"),
  4717. weight: math.unit(120, "kg"),
  4718. name: "Front",
  4719. image: {
  4720. source: "./media/characters/miranda/front.svg",
  4721. extra: 195 / 185,
  4722. bottom: 10.9 / 206.5
  4723. }
  4724. },
  4725. back: {
  4726. height: math.unit(2, "meters"),
  4727. weight: math.unit(120, "kg"),
  4728. name: "Back",
  4729. image: {
  4730. source: "./media/characters/miranda/back.svg",
  4731. extra: 201 / 193,
  4732. bottom: 2.3 / 203.7
  4733. }
  4734. },
  4735. },
  4736. [
  4737. {
  4738. name: "Normal",
  4739. height: math.unit(10, "feet"),
  4740. default: true
  4741. }
  4742. ]
  4743. ))
  4744. characterMakers.push(() => makeCharacter(
  4745. { name: "James", species: ["deer"], tags: ["anthro"] },
  4746. {
  4747. side: {
  4748. height: math.unit(2, "meters"),
  4749. weight: math.unit(100, "kg"),
  4750. name: "Front",
  4751. image: {
  4752. source: "./media/characters/james/front.svg",
  4753. extra: 10 / 8.5
  4754. }
  4755. },
  4756. },
  4757. [
  4758. {
  4759. name: "Normal",
  4760. height: math.unit(8.5, "feet"),
  4761. default: true
  4762. }
  4763. ]
  4764. ))
  4765. characterMakers.push(() => makeCharacter(
  4766. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4767. {
  4768. side: {
  4769. height: math.unit(9.5, "feet"),
  4770. weight: math.unit(2500, "lbs"),
  4771. name: "Side",
  4772. image: {
  4773. source: "./media/characters/heather/side.svg"
  4774. }
  4775. },
  4776. },
  4777. [
  4778. {
  4779. name: "Normal",
  4780. height: math.unit(9.5, "feet"),
  4781. default: true
  4782. }
  4783. ]
  4784. ))
  4785. characterMakers.push(() => makeCharacter(
  4786. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4787. {
  4788. side: {
  4789. height: math.unit(6.5, "feet"),
  4790. weight: math.unit(400, "lbs"),
  4791. name: "Side",
  4792. image: {
  4793. source: "./media/characters/lukas/side.svg",
  4794. extra: 7.25 / 6.5
  4795. }
  4796. },
  4797. },
  4798. [
  4799. {
  4800. name: "Normal",
  4801. height: math.unit(6.5, "feet"),
  4802. default: true
  4803. }
  4804. ]
  4805. ))
  4806. characterMakers.push(() => makeCharacter(
  4807. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4808. {
  4809. side: {
  4810. height: math.unit(5, "feet"),
  4811. weight: math.unit(3000, "lbs"),
  4812. name: "Side",
  4813. image: {
  4814. source: "./media/characters/louise/side.svg"
  4815. }
  4816. },
  4817. },
  4818. [
  4819. {
  4820. name: "Normal",
  4821. height: math.unit(5, "feet"),
  4822. default: true
  4823. }
  4824. ]
  4825. ))
  4826. characterMakers.push(() => makeCharacter(
  4827. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4828. {
  4829. side: {
  4830. height: math.unit(6, "feet"),
  4831. weight: math.unit(150, "lbs"),
  4832. name: "Side",
  4833. image: {
  4834. source: "./media/characters/ramona/side.svg"
  4835. }
  4836. },
  4837. },
  4838. [
  4839. {
  4840. name: "Normal",
  4841. height: math.unit(5.3, "meters"),
  4842. default: true
  4843. },
  4844. {
  4845. name: "Macro",
  4846. height: math.unit(20, "stories")
  4847. },
  4848. {
  4849. name: "Macro+",
  4850. height: math.unit(50, "stories")
  4851. },
  4852. ]
  4853. ))
  4854. characterMakers.push(() => makeCharacter(
  4855. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4856. {
  4857. standing: {
  4858. height: math.unit(5.75, "feet"),
  4859. weight: math.unit(160, "lbs"),
  4860. name: "Standing",
  4861. image: {
  4862. source: "./media/characters/deerpuff/standing.svg",
  4863. extra: 682 / 624
  4864. }
  4865. },
  4866. sitting: {
  4867. height: math.unit(5.75 / 1.79, "feet"),
  4868. weight: math.unit(160, "lbs"),
  4869. name: "Sitting",
  4870. image: {
  4871. source: "./media/characters/deerpuff/sitting.svg",
  4872. bottom: 44 / 400,
  4873. extra: 1
  4874. }
  4875. },
  4876. taurLaying: {
  4877. height: math.unit(6, "feet"),
  4878. weight: math.unit(400, "lbs"),
  4879. name: "Taur (Laying)",
  4880. image: {
  4881. source: "./media/characters/deerpuff/taur-laying.svg"
  4882. }
  4883. },
  4884. },
  4885. [
  4886. {
  4887. name: "Puffball",
  4888. height: math.unit(6, "inches")
  4889. },
  4890. {
  4891. name: "Normalpuff",
  4892. height: math.unit(5.75, "feet")
  4893. },
  4894. {
  4895. name: "Macropuff",
  4896. height: math.unit(1500, "feet"),
  4897. default: true
  4898. },
  4899. {
  4900. name: "Megapuff",
  4901. height: math.unit(500, "miles")
  4902. },
  4903. {
  4904. name: "Gigapuff",
  4905. height: math.unit(250000, "miles")
  4906. },
  4907. {
  4908. name: "Omegapuff",
  4909. height: math.unit(1000, "lightyears")
  4910. },
  4911. ]
  4912. ))
  4913. characterMakers.push(() => makeCharacter(
  4914. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4915. {
  4916. stomping: {
  4917. height: math.unit(6, "feet"),
  4918. weight: math.unit(170, "lbs"),
  4919. name: "Stomping",
  4920. image: {
  4921. source: "./media/characters/vivian/stomping.svg"
  4922. }
  4923. },
  4924. sitting: {
  4925. height: math.unit(6 / 1.75, "feet"),
  4926. weight: math.unit(170, "lbs"),
  4927. name: "Sitting",
  4928. image: {
  4929. source: "./media/characters/vivian/sitting.svg",
  4930. bottom: 1 / 6.4,
  4931. extra: 1,
  4932. }
  4933. },
  4934. },
  4935. [
  4936. {
  4937. name: "Normal",
  4938. height: math.unit(7, "feet"),
  4939. default: true
  4940. },
  4941. {
  4942. name: "Macro",
  4943. height: math.unit(10, "stories")
  4944. },
  4945. {
  4946. name: "Macro+",
  4947. height: math.unit(30, "stories")
  4948. },
  4949. {
  4950. name: "Megamacro",
  4951. height: math.unit(10, "miles")
  4952. },
  4953. {
  4954. name: "Megamacro+",
  4955. height: math.unit(2750000, "meters")
  4956. },
  4957. ]
  4958. ))
  4959. characterMakers.push(() => makeCharacter(
  4960. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4961. {
  4962. front: {
  4963. height: math.unit(6, "feet"),
  4964. weight: math.unit(160, "lbs"),
  4965. name: "Front",
  4966. image: {
  4967. source: "./media/characters/prince/front.svg",
  4968. extra: 3400 / 3000
  4969. }
  4970. },
  4971. jumping: {
  4972. height: math.unit(6, "feet"),
  4973. weight: math.unit(160, "lbs"),
  4974. name: "Jumping",
  4975. image: {
  4976. source: "./media/characters/prince/jump.svg",
  4977. extra: 2555 / 2134
  4978. }
  4979. },
  4980. },
  4981. [
  4982. {
  4983. name: "Normal",
  4984. height: math.unit(7.75, "feet"),
  4985. default: true
  4986. },
  4987. {
  4988. name: "Not cute",
  4989. height: math.unit(17, "feet")
  4990. },
  4991. {
  4992. name: "I said NOT",
  4993. height: math.unit(91, "feet")
  4994. },
  4995. {
  4996. name: "Please stop",
  4997. height: math.unit(560, "feet")
  4998. },
  4999. {
  5000. name: "What have you done",
  5001. height: math.unit(2200, "feet")
  5002. },
  5003. {
  5004. name: "Deer God",
  5005. height: math.unit(3.6, "miles")
  5006. },
  5007. ]
  5008. ))
  5009. characterMakers.push(() => makeCharacter(
  5010. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5011. {
  5012. standing: {
  5013. height: math.unit(6, "feet"),
  5014. weight: math.unit(300, "lbs"),
  5015. name: "Standing",
  5016. image: {
  5017. source: "./media/characters/psymon/standing.svg",
  5018. extra: 1888 / 1810,
  5019. bottom: 0.05
  5020. }
  5021. },
  5022. slithering: {
  5023. height: math.unit(6, "feet"),
  5024. weight: math.unit(300, "lbs"),
  5025. name: "Slithering",
  5026. image: {
  5027. source: "./media/characters/psymon/slithering.svg",
  5028. extra: 1330 / 1224
  5029. }
  5030. },
  5031. slitheringAlt: {
  5032. height: math.unit(6, "feet"),
  5033. weight: math.unit(300, "lbs"),
  5034. name: "Slithering (Alt)",
  5035. image: {
  5036. source: "./media/characters/psymon/slithering-alt.svg",
  5037. extra: 1330 / 1224
  5038. }
  5039. },
  5040. },
  5041. [
  5042. {
  5043. name: "Normal",
  5044. height: math.unit(11.25, "feet"),
  5045. default: true
  5046. },
  5047. {
  5048. name: "Large",
  5049. height: math.unit(27, "feet")
  5050. },
  5051. {
  5052. name: "Giant",
  5053. height: math.unit(87, "feet")
  5054. },
  5055. {
  5056. name: "Macro",
  5057. height: math.unit(365, "feet")
  5058. },
  5059. {
  5060. name: "Megamacro",
  5061. height: math.unit(3, "miles")
  5062. },
  5063. {
  5064. name: "World Serpent",
  5065. height: math.unit(8000, "miles")
  5066. },
  5067. ]
  5068. ))
  5069. characterMakers.push(() => makeCharacter(
  5070. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5071. {
  5072. front: {
  5073. height: math.unit(6, "feet"),
  5074. weight: math.unit(180, "lbs"),
  5075. name: "Front",
  5076. image: {
  5077. source: "./media/characters/daimos/front.svg",
  5078. extra: 4160 / 3897,
  5079. bottom: 0.021
  5080. }
  5081. }
  5082. },
  5083. [
  5084. {
  5085. name: "Normal",
  5086. height: math.unit(8, "feet"),
  5087. default: true
  5088. },
  5089. {
  5090. name: "Big Dog",
  5091. height: math.unit(22, "feet")
  5092. },
  5093. {
  5094. name: "Macro",
  5095. height: math.unit(127, "feet")
  5096. },
  5097. {
  5098. name: "Megamacro",
  5099. height: math.unit(3600, "feet")
  5100. },
  5101. ]
  5102. ))
  5103. characterMakers.push(() => makeCharacter(
  5104. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5105. {
  5106. side: {
  5107. height: math.unit(6, "feet"),
  5108. weight: math.unit(180, "lbs"),
  5109. name: "Side",
  5110. image: {
  5111. source: "./media/characters/blake/side.svg",
  5112. extra: 1212 / 1120,
  5113. bottom: 0.05
  5114. }
  5115. },
  5116. crouched: {
  5117. height: math.unit(6 * 0.57, "feet"),
  5118. weight: math.unit(180, "lbs"),
  5119. name: "Crouched",
  5120. image: {
  5121. source: "./media/characters/blake/crouched.svg",
  5122. extra: 840 / 587,
  5123. bottom: 0.04
  5124. }
  5125. },
  5126. bent: {
  5127. height: math.unit(6 * 0.75, "feet"),
  5128. weight: math.unit(180, "lbs"),
  5129. name: "Bent",
  5130. image: {
  5131. source: "./media/characters/blake/bent.svg",
  5132. extra: 592 / 544,
  5133. bottom: 0.035
  5134. }
  5135. },
  5136. },
  5137. [
  5138. {
  5139. name: "Normal",
  5140. height: math.unit(8 + 1 / 6, "feet"),
  5141. default: true
  5142. },
  5143. {
  5144. name: "Big Backside",
  5145. height: math.unit(37, "feet")
  5146. },
  5147. {
  5148. name: "Subway Shredder",
  5149. height: math.unit(72, "feet")
  5150. },
  5151. {
  5152. name: "City Carver",
  5153. height: math.unit(1675, "feet")
  5154. },
  5155. {
  5156. name: "Tectonic Tweaker",
  5157. height: math.unit(2300, "miles")
  5158. },
  5159. ]
  5160. ))
  5161. characterMakers.push(() => makeCharacter(
  5162. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5163. {
  5164. front: {
  5165. height: math.unit(6, "feet"),
  5166. weight: math.unit(180, "lbs"),
  5167. name: "Front",
  5168. image: {
  5169. source: "./media/characters/guisetto/front.svg",
  5170. extra: 856 / 817,
  5171. bottom: 0.06
  5172. }
  5173. },
  5174. airborne: {
  5175. height: math.unit(6, "feet"),
  5176. weight: math.unit(180, "lbs"),
  5177. name: "Airborne",
  5178. image: {
  5179. source: "./media/characters/guisetto/airborne.svg",
  5180. extra: 584 / 525
  5181. }
  5182. },
  5183. },
  5184. [
  5185. {
  5186. name: "Normal",
  5187. height: math.unit(10 + 11 / 12, "feet"),
  5188. default: true
  5189. },
  5190. {
  5191. name: "Large",
  5192. height: math.unit(35, "feet")
  5193. },
  5194. {
  5195. name: "Macro",
  5196. height: math.unit(475, "feet")
  5197. },
  5198. ]
  5199. ))
  5200. characterMakers.push(() => makeCharacter(
  5201. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5202. {
  5203. front: {
  5204. height: math.unit(6, "feet"),
  5205. weight: math.unit(180, "lbs"),
  5206. name: "Front",
  5207. image: {
  5208. source: "./media/characters/luxor/front.svg",
  5209. extra: 2940 / 2152
  5210. }
  5211. },
  5212. back: {
  5213. height: math.unit(6, "feet"),
  5214. weight: math.unit(180, "lbs"),
  5215. name: "Back",
  5216. image: {
  5217. source: "./media/characters/luxor/back.svg",
  5218. extra: 1083 / 960
  5219. }
  5220. },
  5221. },
  5222. [
  5223. {
  5224. name: "Normal",
  5225. height: math.unit(5 + 5 / 6, "feet"),
  5226. default: true
  5227. },
  5228. {
  5229. name: "Lamp",
  5230. height: math.unit(50, "feet")
  5231. },
  5232. {
  5233. name: "Lämp",
  5234. height: math.unit(300, "feet")
  5235. },
  5236. {
  5237. name: "The sun is a lamp",
  5238. height: math.unit(250000, "miles")
  5239. },
  5240. ]
  5241. ))
  5242. characterMakers.push(() => makeCharacter(
  5243. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5244. {
  5245. front: {
  5246. height: math.unit(6, "feet"),
  5247. weight: math.unit(50, "lbs"),
  5248. name: "Front",
  5249. image: {
  5250. source: "./media/characters/huoyan/front.svg"
  5251. }
  5252. },
  5253. side: {
  5254. height: math.unit(6, "feet"),
  5255. weight: math.unit(180, "lbs"),
  5256. name: "Side",
  5257. image: {
  5258. source: "./media/characters/huoyan/side.svg"
  5259. }
  5260. },
  5261. },
  5262. [
  5263. {
  5264. name: "Chef",
  5265. height: math.unit(9, "feet")
  5266. },
  5267. {
  5268. name: "Normal",
  5269. height: math.unit(65, "feet"),
  5270. default: true
  5271. },
  5272. {
  5273. name: "Macro",
  5274. height: math.unit(780, "feet")
  5275. },
  5276. {
  5277. name: "Flaming Mountain",
  5278. height: math.unit(4.8, "miles")
  5279. },
  5280. {
  5281. name: "Celestial",
  5282. height: math.unit(765000, "miles")
  5283. },
  5284. ]
  5285. ))
  5286. characterMakers.push(() => makeCharacter(
  5287. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5288. {
  5289. front: {
  5290. height: math.unit(5 + 3 / 4, "feet"),
  5291. weight: math.unit(120, "lbs"),
  5292. name: "Front",
  5293. image: {
  5294. source: "./media/characters/tails/front.svg"
  5295. }
  5296. }
  5297. },
  5298. [
  5299. {
  5300. name: "Normal",
  5301. height: math.unit(5 + 3 / 4, "feet"),
  5302. default: true
  5303. }
  5304. ]
  5305. ))
  5306. characterMakers.push(() => makeCharacter(
  5307. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5308. {
  5309. front: {
  5310. height: math.unit(4, "feet"),
  5311. weight: math.unit(50, "lbs"),
  5312. name: "Front",
  5313. image: {
  5314. source: "./media/characters/rainy/front.svg"
  5315. }
  5316. }
  5317. },
  5318. [
  5319. {
  5320. name: "Macro",
  5321. height: math.unit(800, "feet"),
  5322. default: true
  5323. }
  5324. ]
  5325. ))
  5326. characterMakers.push(() => makeCharacter(
  5327. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5328. {
  5329. front: {
  5330. height: math.unit(6, "feet"),
  5331. weight: math.unit(150, "lbs"),
  5332. name: "Front",
  5333. image: {
  5334. source: "./media/characters/rainier/front.svg"
  5335. }
  5336. }
  5337. },
  5338. [
  5339. {
  5340. name: "Micro",
  5341. height: math.unit(2, "mm"),
  5342. default: true
  5343. }
  5344. ]
  5345. ))
  5346. characterMakers.push(() => makeCharacter(
  5347. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5348. {
  5349. front: {
  5350. height: math.unit(6, "feet"),
  5351. weight: math.unit(180, "lbs"),
  5352. name: "Front",
  5353. image: {
  5354. source: "./media/characters/andy/front.svg"
  5355. }
  5356. }
  5357. },
  5358. [
  5359. {
  5360. name: "Normal",
  5361. height: math.unit(8, "feet"),
  5362. default: true
  5363. },
  5364. {
  5365. name: "Macro",
  5366. height: math.unit(1000, "feet")
  5367. },
  5368. {
  5369. name: "Megamacro",
  5370. height: math.unit(5, "miles")
  5371. },
  5372. {
  5373. name: "Gigamacro",
  5374. height: math.unit(5000, "miles")
  5375. },
  5376. ]
  5377. ))
  5378. characterMakers.push(() => makeCharacter(
  5379. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5380. {
  5381. front: {
  5382. height: math.unit(6, "feet"),
  5383. weight: math.unit(210, "lbs"),
  5384. name: "Front",
  5385. image: {
  5386. source: "./media/characters/cimmaron/front-sfw.svg",
  5387. extra: 701 / 676,
  5388. bottom: 0.046
  5389. }
  5390. },
  5391. back: {
  5392. height: math.unit(6, "feet"),
  5393. weight: math.unit(210, "lbs"),
  5394. name: "Back",
  5395. image: {
  5396. source: "./media/characters/cimmaron/back-sfw.svg",
  5397. extra: 701 / 676,
  5398. bottom: 0.046
  5399. }
  5400. },
  5401. frontNsfw: {
  5402. height: math.unit(6, "feet"),
  5403. weight: math.unit(210, "lbs"),
  5404. name: "Front (NSFW)",
  5405. image: {
  5406. source: "./media/characters/cimmaron/front-nsfw.svg",
  5407. extra: 701 / 676,
  5408. bottom: 0.046
  5409. }
  5410. },
  5411. backNsfw: {
  5412. height: math.unit(6, "feet"),
  5413. weight: math.unit(210, "lbs"),
  5414. name: "Back (NSFW)",
  5415. image: {
  5416. source: "./media/characters/cimmaron/back-nsfw.svg",
  5417. extra: 701 / 676,
  5418. bottom: 0.046
  5419. }
  5420. },
  5421. dick: {
  5422. height: math.unit(1.714, "feet"),
  5423. name: "Dick",
  5424. image: {
  5425. source: "./media/characters/cimmaron/dick.svg"
  5426. }
  5427. },
  5428. },
  5429. [
  5430. {
  5431. name: "Normal",
  5432. height: math.unit(6, "feet"),
  5433. default: true
  5434. },
  5435. {
  5436. name: "Macro Mayor",
  5437. height: math.unit(350, "meters")
  5438. },
  5439. ]
  5440. ))
  5441. characterMakers.push(() => makeCharacter(
  5442. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5443. {
  5444. front: {
  5445. height: math.unit(6, "feet"),
  5446. weight: math.unit(200, "lbs"),
  5447. name: "Front",
  5448. image: {
  5449. source: "./media/characters/akari/front.svg",
  5450. extra: 962 / 901,
  5451. bottom: 0.04
  5452. }
  5453. }
  5454. },
  5455. [
  5456. {
  5457. name: "Micro",
  5458. height: math.unit(5, "inches"),
  5459. default: true
  5460. },
  5461. {
  5462. name: "Normal",
  5463. height: math.unit(7, "feet")
  5464. },
  5465. ]
  5466. ))
  5467. characterMakers.push(() => makeCharacter(
  5468. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5469. {
  5470. front: {
  5471. height: math.unit(6, "feet"),
  5472. weight: math.unit(140, "lbs"),
  5473. name: "Front",
  5474. image: {
  5475. source: "./media/characters/cynosura/front.svg",
  5476. extra: 896 / 847
  5477. }
  5478. },
  5479. back: {
  5480. height: math.unit(6, "feet"),
  5481. weight: math.unit(140, "lbs"),
  5482. name: "Back",
  5483. image: {
  5484. source: "./media/characters/cynosura/back.svg",
  5485. extra: 1365 / 1250
  5486. }
  5487. },
  5488. },
  5489. [
  5490. {
  5491. name: "Micro",
  5492. height: math.unit(4, "inches")
  5493. },
  5494. {
  5495. name: "Normal",
  5496. height: math.unit(5.75, "feet"),
  5497. default: true
  5498. },
  5499. {
  5500. name: "Tall",
  5501. height: math.unit(10, "feet")
  5502. },
  5503. {
  5504. name: "Big",
  5505. height: math.unit(20, "feet")
  5506. },
  5507. {
  5508. name: "Macro",
  5509. height: math.unit(50, "feet")
  5510. },
  5511. ]
  5512. ))
  5513. characterMakers.push(() => makeCharacter(
  5514. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5515. {
  5516. front: {
  5517. height: math.unit(6, "feet"),
  5518. weight: math.unit(170, "lbs"),
  5519. name: "Front",
  5520. image: {
  5521. source: "./media/characters/gin/front.svg",
  5522. extra: 1.053,
  5523. bottom: 0.025
  5524. }
  5525. },
  5526. foot: {
  5527. height: math.unit(6 / 4.25, "feet"),
  5528. name: "Foot",
  5529. image: {
  5530. source: "./media/characters/gin/foot.svg"
  5531. }
  5532. },
  5533. sole: {
  5534. height: math.unit(6 / 4.40, "feet"),
  5535. name: "Sole",
  5536. image: {
  5537. source: "./media/characters/gin/sole.svg"
  5538. }
  5539. },
  5540. },
  5541. [
  5542. {
  5543. name: "Normal",
  5544. height: math.unit(13 + 2 / 12, "feet")
  5545. },
  5546. {
  5547. name: "Macro",
  5548. height: math.unit(1500, "feet")
  5549. },
  5550. {
  5551. name: "Megamacro",
  5552. height: math.unit(200, "miles"),
  5553. default: true
  5554. },
  5555. {
  5556. name: "Gigamacro",
  5557. height: math.unit(500, "megameters")
  5558. },
  5559. {
  5560. name: "Teramacro",
  5561. height: math.unit(15, "lightyears")
  5562. }
  5563. ]
  5564. ))
  5565. characterMakers.push(() => makeCharacter(
  5566. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5567. {
  5568. front: {
  5569. height: math.unit(6 + 1 / 6, "feet"),
  5570. weight: math.unit(178, "lbs"),
  5571. name: "Front",
  5572. image: {
  5573. source: "./media/characters/guy/front.svg"
  5574. }
  5575. }
  5576. },
  5577. [
  5578. {
  5579. name: "Normal",
  5580. height: math.unit(6 + 1 / 6, "feet"),
  5581. default: true
  5582. },
  5583. {
  5584. name: "Large",
  5585. height: math.unit(25 + 7 / 12, "feet")
  5586. },
  5587. {
  5588. name: "Macro",
  5589. height: math.unit(60 + 9 / 12, "feet")
  5590. },
  5591. {
  5592. name: "Macro+",
  5593. height: math.unit(246, "feet")
  5594. },
  5595. {
  5596. name: "Macro++",
  5597. height: math.unit(878, "feet")
  5598. }
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5603. {
  5604. front: {
  5605. height: math.unit(9, "feet"),
  5606. weight: math.unit(800, "lbs"),
  5607. name: "Front",
  5608. image: {
  5609. source: "./media/characters/tiberius/front.svg",
  5610. extra: 2295 / 2071
  5611. }
  5612. },
  5613. back: {
  5614. height: math.unit(9, "feet"),
  5615. weight: math.unit(800, "lbs"),
  5616. name: "Back",
  5617. image: {
  5618. source: "./media/characters/tiberius/back.svg",
  5619. extra: 2373 / 2160
  5620. }
  5621. },
  5622. },
  5623. [
  5624. {
  5625. name: "Normal",
  5626. height: math.unit(9, "feet"),
  5627. default: true
  5628. }
  5629. ]
  5630. ))
  5631. characterMakers.push(() => makeCharacter(
  5632. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5633. {
  5634. front: {
  5635. height: math.unit(6, "feet"),
  5636. weight: math.unit(600, "lbs"),
  5637. name: "Front",
  5638. image: {
  5639. source: "./media/characters/surgo/front.svg",
  5640. extra: 3591 / 2227
  5641. }
  5642. },
  5643. back: {
  5644. height: math.unit(6, "feet"),
  5645. weight: math.unit(600, "lbs"),
  5646. name: "Back",
  5647. image: {
  5648. source: "./media/characters/surgo/back.svg",
  5649. extra: 3557 / 2228
  5650. }
  5651. },
  5652. laying: {
  5653. height: math.unit(6 * 0.85, "feet"),
  5654. weight: math.unit(600, "lbs"),
  5655. name: "Laying",
  5656. image: {
  5657. source: "./media/characters/surgo/laying.svg"
  5658. }
  5659. },
  5660. },
  5661. [
  5662. {
  5663. name: "Normal",
  5664. height: math.unit(6, "feet"),
  5665. default: true
  5666. }
  5667. ]
  5668. ))
  5669. characterMakers.push(() => makeCharacter(
  5670. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5671. {
  5672. side: {
  5673. height: math.unit(6, "feet"),
  5674. weight: math.unit(150, "lbs"),
  5675. name: "Side",
  5676. image: {
  5677. source: "./media/characters/cibus/side.svg",
  5678. extra: 800 / 400
  5679. }
  5680. },
  5681. },
  5682. [
  5683. {
  5684. name: "Normal",
  5685. height: math.unit(6, "feet"),
  5686. default: true
  5687. }
  5688. ]
  5689. ))
  5690. characterMakers.push(() => makeCharacter(
  5691. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5692. {
  5693. front: {
  5694. height: math.unit(6, "feet"),
  5695. weight: math.unit(240, "lbs"),
  5696. name: "Front",
  5697. image: {
  5698. source: "./media/characters/nibbles/front.svg"
  5699. }
  5700. },
  5701. side: {
  5702. height: math.unit(6, "feet"),
  5703. weight: math.unit(240, "lbs"),
  5704. name: "Side",
  5705. image: {
  5706. source: "./media/characters/nibbles/side.svg"
  5707. }
  5708. },
  5709. },
  5710. [
  5711. {
  5712. name: "Normal",
  5713. height: math.unit(9, "feet"),
  5714. default: true
  5715. }
  5716. ]
  5717. ))
  5718. characterMakers.push(() => makeCharacter(
  5719. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5720. {
  5721. side: {
  5722. height: math.unit(5 + 1 / 6, "feet"),
  5723. weight: math.unit(130, "lbs"),
  5724. name: "Side",
  5725. image: {
  5726. source: "./media/characters/rikky/side.svg",
  5727. extra: 851 / 801
  5728. }
  5729. },
  5730. },
  5731. [
  5732. {
  5733. name: "Normal",
  5734. height: math.unit(5 + 1 / 6, "feet")
  5735. },
  5736. {
  5737. name: "Macro",
  5738. height: math.unit(152, "feet"),
  5739. default: true
  5740. },
  5741. {
  5742. name: "Megamacro",
  5743. height: math.unit(7, "miles")
  5744. }
  5745. ]
  5746. ))
  5747. characterMakers.push(() => makeCharacter(
  5748. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5749. {
  5750. side: {
  5751. height: math.unit(370, "cm"),
  5752. weight: math.unit(350, "lbs"),
  5753. name: "Side",
  5754. image: {
  5755. source: "./media/characters/malfressa/side.svg"
  5756. }
  5757. },
  5758. walking: {
  5759. height: math.unit(370, "cm"),
  5760. weight: math.unit(350, "lbs"),
  5761. name: "Walking",
  5762. image: {
  5763. source: "./media/characters/malfressa/walking.svg"
  5764. }
  5765. },
  5766. feral: {
  5767. height: math.unit(2500, "cm"),
  5768. weight: math.unit(100000, "lbs"),
  5769. name: "Feral",
  5770. image: {
  5771. source: "./media/characters/malfressa/feral.svg",
  5772. extra: 2108 / 837,
  5773. bottom: 0.02
  5774. }
  5775. },
  5776. },
  5777. [
  5778. {
  5779. name: "Normal",
  5780. height: math.unit(370, "cm")
  5781. },
  5782. {
  5783. name: "Macro",
  5784. height: math.unit(300, "meters"),
  5785. default: true
  5786. }
  5787. ]
  5788. ))
  5789. characterMakers.push(() => makeCharacter(
  5790. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5791. {
  5792. front: {
  5793. height: math.unit(6, "feet"),
  5794. weight: math.unit(60, "kg"),
  5795. name: "Front",
  5796. image: {
  5797. source: "./media/characters/jaro/front.svg"
  5798. }
  5799. },
  5800. back: {
  5801. height: math.unit(6, "feet"),
  5802. weight: math.unit(60, "kg"),
  5803. name: "Back",
  5804. image: {
  5805. source: "./media/characters/jaro/back.svg"
  5806. }
  5807. },
  5808. },
  5809. [
  5810. {
  5811. name: "Micro",
  5812. height: math.unit(7, "inches")
  5813. },
  5814. {
  5815. name: "Normal",
  5816. height: math.unit(5.5, "feet"),
  5817. default: true
  5818. },
  5819. {
  5820. name: "Minimacro",
  5821. height: math.unit(20, "feet")
  5822. },
  5823. {
  5824. name: "Macro",
  5825. height: math.unit(200, "meters")
  5826. }
  5827. ]
  5828. ))
  5829. characterMakers.push(() => makeCharacter(
  5830. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5831. {
  5832. front: {
  5833. height: math.unit(6, "feet"),
  5834. weight: math.unit(195, "lb"),
  5835. name: "Front",
  5836. image: {
  5837. source: "./media/characters/rogue/front.svg"
  5838. }
  5839. },
  5840. },
  5841. [
  5842. {
  5843. name: "Macro",
  5844. height: math.unit(90, "feet"),
  5845. default: true
  5846. },
  5847. ]
  5848. ))
  5849. characterMakers.push(() => makeCharacter(
  5850. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5851. {
  5852. front: {
  5853. height: math.unit(5 + 8 / 12, "feet"),
  5854. weight: math.unit(140, "lb"),
  5855. name: "Front",
  5856. image: {
  5857. source: "./media/characters/piper/front.svg",
  5858. extra: 3948/3655,
  5859. bottom: 0/3948
  5860. }
  5861. },
  5862. },
  5863. [
  5864. {
  5865. name: "Micro",
  5866. height: math.unit(2, "inches")
  5867. },
  5868. {
  5869. name: "Normal",
  5870. height: math.unit(5 + 8 / 12, "feet")
  5871. },
  5872. {
  5873. name: "Macro",
  5874. height: math.unit(250, "feet"),
  5875. default: true
  5876. },
  5877. {
  5878. name: "Megamacro",
  5879. height: math.unit(7, "miles")
  5880. },
  5881. ]
  5882. ))
  5883. characterMakers.push(() => makeCharacter(
  5884. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5885. {
  5886. front: {
  5887. height: math.unit(6, "feet"),
  5888. weight: math.unit(220, "lb"),
  5889. name: "Front",
  5890. image: {
  5891. source: "./media/characters/gemini/front.svg"
  5892. }
  5893. },
  5894. back: {
  5895. height: math.unit(6, "feet"),
  5896. weight: math.unit(220, "lb"),
  5897. name: "Back",
  5898. image: {
  5899. source: "./media/characters/gemini/back.svg"
  5900. }
  5901. },
  5902. kneeling: {
  5903. height: math.unit(6 / 1.5, "feet"),
  5904. weight: math.unit(220, "lb"),
  5905. name: "Kneeling",
  5906. image: {
  5907. source: "./media/characters/gemini/kneeling.svg",
  5908. bottom: 0.02
  5909. }
  5910. },
  5911. },
  5912. [
  5913. {
  5914. name: "Macro",
  5915. height: math.unit(300, "meters"),
  5916. default: true
  5917. },
  5918. {
  5919. name: "Megamacro",
  5920. height: math.unit(6900, "meters")
  5921. },
  5922. ]
  5923. ))
  5924. characterMakers.push(() => makeCharacter(
  5925. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5926. {
  5927. anthro: {
  5928. height: math.unit(2.35, "meters"),
  5929. weight: math.unit(73, "kg"),
  5930. name: "Anthro",
  5931. image: {
  5932. source: "./media/characters/alicia/anthro.svg",
  5933. extra: 2571 / 2385,
  5934. bottom: 75 / 2648
  5935. }
  5936. },
  5937. paw: {
  5938. height: math.unit(1.32, "feet"),
  5939. name: "Paw",
  5940. image: {
  5941. source: "./media/characters/alicia/paw.svg"
  5942. }
  5943. },
  5944. feral: {
  5945. height: math.unit(1.69, "meters"),
  5946. weight: math.unit(73, "kg"),
  5947. name: "Feral",
  5948. image: {
  5949. source: "./media/characters/alicia/feral.svg",
  5950. extra: 2123 / 1715,
  5951. bottom: 222 / 2349
  5952. }
  5953. },
  5954. },
  5955. [
  5956. {
  5957. name: "Normal",
  5958. height: math.unit(2.35, "meters")
  5959. },
  5960. {
  5961. name: "Macro",
  5962. height: math.unit(60, "meters"),
  5963. default: true
  5964. },
  5965. {
  5966. name: "Megamacro",
  5967. height: math.unit(10000, "kilometers")
  5968. },
  5969. ]
  5970. ))
  5971. characterMakers.push(() => makeCharacter(
  5972. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5973. {
  5974. front: {
  5975. height: math.unit(7, "feet"),
  5976. weight: math.unit(250, "lbs"),
  5977. name: "Front",
  5978. image: {
  5979. source: "./media/characters/archy/front.svg"
  5980. }
  5981. }
  5982. },
  5983. [
  5984. {
  5985. name: "Micro",
  5986. height: math.unit(1, "inch")
  5987. },
  5988. {
  5989. name: "Shorty",
  5990. height: math.unit(5, "feet")
  5991. },
  5992. {
  5993. name: "Normal",
  5994. height: math.unit(7, "feet")
  5995. },
  5996. {
  5997. name: "Macro",
  5998. height: math.unit(600, "meters"),
  5999. default: true
  6000. },
  6001. {
  6002. name: "Megamacro",
  6003. height: math.unit(1, "mile")
  6004. },
  6005. ]
  6006. ))
  6007. characterMakers.push(() => makeCharacter(
  6008. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6009. {
  6010. front: {
  6011. height: math.unit(1.65, "meters"),
  6012. weight: math.unit(74, "kg"),
  6013. name: "Front",
  6014. image: {
  6015. source: "./media/characters/berri/front.svg",
  6016. extra: 857 / 837,
  6017. bottom: 18 / 877
  6018. }
  6019. },
  6020. bum: {
  6021. height: math.unit(1.46, "feet"),
  6022. name: "Bum",
  6023. image: {
  6024. source: "./media/characters/berri/bum.svg"
  6025. }
  6026. },
  6027. mouth: {
  6028. height: math.unit(0.44, "feet"),
  6029. name: "Mouth",
  6030. image: {
  6031. source: "./media/characters/berri/mouth.svg"
  6032. }
  6033. },
  6034. paw: {
  6035. height: math.unit(0.826, "feet"),
  6036. name: "Paw",
  6037. image: {
  6038. source: "./media/characters/berri/paw.svg"
  6039. }
  6040. },
  6041. },
  6042. [
  6043. {
  6044. name: "Normal",
  6045. height: math.unit(1.65, "meters")
  6046. },
  6047. {
  6048. name: "Macro",
  6049. height: math.unit(60, "m"),
  6050. default: true
  6051. },
  6052. {
  6053. name: "Megamacro",
  6054. height: math.unit(9.213, "km")
  6055. },
  6056. {
  6057. name: "Planet Eater",
  6058. height: math.unit(489, "megameters")
  6059. },
  6060. {
  6061. name: "Teramacro",
  6062. height: math.unit(2471635000000, "meters")
  6063. },
  6064. {
  6065. name: "Examacro",
  6066. height: math.unit(8.0624e+26, "meters")
  6067. }
  6068. ]
  6069. ))
  6070. characterMakers.push(() => makeCharacter(
  6071. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6072. {
  6073. front: {
  6074. height: math.unit(1.72, "meters"),
  6075. weight: math.unit(68, "kg"),
  6076. name: "Front",
  6077. image: {
  6078. source: "./media/characters/lexi/front.svg"
  6079. }
  6080. }
  6081. },
  6082. [
  6083. {
  6084. name: "Very Smol",
  6085. height: math.unit(10, "mm")
  6086. },
  6087. {
  6088. name: "Micro",
  6089. height: math.unit(6.8, "cm"),
  6090. default: true
  6091. },
  6092. {
  6093. name: "Normal",
  6094. height: math.unit(1.72, "m")
  6095. }
  6096. ]
  6097. ))
  6098. characterMakers.push(() => makeCharacter(
  6099. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6100. {
  6101. front: {
  6102. height: math.unit(1.69, "meters"),
  6103. weight: math.unit(68, "kg"),
  6104. name: "Front",
  6105. image: {
  6106. source: "./media/characters/martin/front.svg",
  6107. extra: 596 / 581
  6108. }
  6109. }
  6110. },
  6111. [
  6112. {
  6113. name: "Micro",
  6114. height: math.unit(6.85, "cm"),
  6115. default: true
  6116. },
  6117. {
  6118. name: "Normal",
  6119. height: math.unit(1.69, "m")
  6120. }
  6121. ]
  6122. ))
  6123. characterMakers.push(() => makeCharacter(
  6124. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6125. {
  6126. front: {
  6127. height: math.unit(1.69, "meters"),
  6128. weight: math.unit(68, "kg"),
  6129. name: "Front",
  6130. image: {
  6131. source: "./media/characters/juno/front.svg"
  6132. }
  6133. }
  6134. },
  6135. [
  6136. {
  6137. name: "Micro",
  6138. height: math.unit(7, "cm")
  6139. },
  6140. {
  6141. name: "Normal",
  6142. height: math.unit(1.89, "m")
  6143. },
  6144. {
  6145. name: "Macro",
  6146. height: math.unit(353, "meters"),
  6147. default: true
  6148. }
  6149. ]
  6150. ))
  6151. characterMakers.push(() => makeCharacter(
  6152. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6153. {
  6154. front: {
  6155. height: math.unit(1.93, "meters"),
  6156. weight: math.unit(83, "kg"),
  6157. name: "Front",
  6158. image: {
  6159. source: "./media/characters/samantha/front.svg"
  6160. }
  6161. },
  6162. frontClothed: {
  6163. height: math.unit(1.93, "meters"),
  6164. weight: math.unit(83, "kg"),
  6165. name: "Front (Clothed)",
  6166. image: {
  6167. source: "./media/characters/samantha/front-clothed.svg"
  6168. }
  6169. },
  6170. back: {
  6171. height: math.unit(1.93, "meters"),
  6172. weight: math.unit(83, "kg"),
  6173. name: "Back",
  6174. image: {
  6175. source: "./media/characters/samantha/back.svg"
  6176. }
  6177. },
  6178. },
  6179. [
  6180. {
  6181. name: "Normal",
  6182. height: math.unit(1.93, "m")
  6183. },
  6184. {
  6185. name: "Macro",
  6186. height: math.unit(74, "meters"),
  6187. default: true
  6188. },
  6189. {
  6190. name: "Macro+",
  6191. height: math.unit(223, "meters"),
  6192. },
  6193. {
  6194. name: "Megamacro",
  6195. height: math.unit(8381, "meters"),
  6196. },
  6197. {
  6198. name: "Megamacro+",
  6199. height: math.unit(12000, "kilometers")
  6200. },
  6201. ]
  6202. ))
  6203. characterMakers.push(() => makeCharacter(
  6204. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6205. {
  6206. front: {
  6207. height: math.unit(1.92, "meters"),
  6208. weight: math.unit(80, "kg"),
  6209. name: "Front",
  6210. image: {
  6211. source: "./media/characters/dr-clay/front.svg"
  6212. }
  6213. },
  6214. frontClothed: {
  6215. height: math.unit(1.92, "meters"),
  6216. weight: math.unit(80, "kg"),
  6217. name: "Front (Clothed)",
  6218. image: {
  6219. source: "./media/characters/dr-clay/front-clothed.svg"
  6220. }
  6221. }
  6222. },
  6223. [
  6224. {
  6225. name: "Normal",
  6226. height: math.unit(1.92, "m")
  6227. },
  6228. {
  6229. name: "Macro",
  6230. height: math.unit(214, "meters"),
  6231. default: true
  6232. },
  6233. {
  6234. name: "Macro+",
  6235. height: math.unit(12.237, "meters"),
  6236. },
  6237. {
  6238. name: "Megamacro",
  6239. height: math.unit(557, "megameters"),
  6240. },
  6241. {
  6242. name: "Unimaginable",
  6243. height: math.unit(120e9, "lightyears")
  6244. },
  6245. ]
  6246. ))
  6247. characterMakers.push(() => makeCharacter(
  6248. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6249. {
  6250. front: {
  6251. height: math.unit(2, "meters"),
  6252. weight: math.unit(80, "kg"),
  6253. name: "Front",
  6254. image: {
  6255. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6256. }
  6257. }
  6258. },
  6259. [
  6260. {
  6261. name: "Teramacro",
  6262. height: math.unit(500000, "lightyears"),
  6263. default: true
  6264. },
  6265. ]
  6266. ))
  6267. characterMakers.push(() => makeCharacter(
  6268. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6269. {
  6270. front: {
  6271. height: math.unit(2, "meters"),
  6272. weight: math.unit(150, "kg"),
  6273. name: "Front",
  6274. image: {
  6275. source: "./media/characters/vemus/front.svg",
  6276. extra: 2384 / 2084,
  6277. bottom: 0.0123
  6278. }
  6279. }
  6280. },
  6281. [
  6282. {
  6283. name: "Normal",
  6284. height: math.unit(3.75, "meters"),
  6285. default: true
  6286. },
  6287. {
  6288. name: "Big",
  6289. height: math.unit(8, "meters")
  6290. },
  6291. {
  6292. name: "Macro",
  6293. height: math.unit(100, "meters")
  6294. },
  6295. {
  6296. name: "Macro+",
  6297. height: math.unit(1500, "meters")
  6298. },
  6299. {
  6300. name: "Stellar",
  6301. height: math.unit(14e8, "meters")
  6302. },
  6303. ]
  6304. ))
  6305. characterMakers.push(() => makeCharacter(
  6306. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6307. {
  6308. front: {
  6309. height: math.unit(2, "meters"),
  6310. weight: math.unit(70, "kg"),
  6311. name: "Front",
  6312. image: {
  6313. source: "./media/characters/beherit/front.svg",
  6314. extra: 1408 / 1242
  6315. }
  6316. }
  6317. },
  6318. [
  6319. {
  6320. name: "Normal",
  6321. height: math.unit(6, "feet")
  6322. },
  6323. {
  6324. name: "Lorg",
  6325. height: math.unit(25, "feet"),
  6326. default: true
  6327. },
  6328. {
  6329. name: "Lorger",
  6330. height: math.unit(75, "feet")
  6331. },
  6332. {
  6333. name: "Macro",
  6334. height: math.unit(200, "meters")
  6335. },
  6336. ]
  6337. ))
  6338. characterMakers.push(() => makeCharacter(
  6339. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6340. {
  6341. front: {
  6342. height: math.unit(2, "meters"),
  6343. weight: math.unit(150, "kg"),
  6344. name: "Front",
  6345. image: {
  6346. source: "./media/characters/everett/front.svg",
  6347. extra: 2038 / 1737,
  6348. bottom: 0.03
  6349. }
  6350. },
  6351. paw: {
  6352. height: math.unit(2 / 3.6, "meters"),
  6353. name: "Paw",
  6354. image: {
  6355. source: "./media/characters/everett/paw.svg"
  6356. }
  6357. },
  6358. },
  6359. [
  6360. {
  6361. name: "Normal",
  6362. height: math.unit(15, "feet"),
  6363. default: true
  6364. },
  6365. {
  6366. name: "Lorg",
  6367. height: math.unit(70, "feet"),
  6368. default: true
  6369. },
  6370. {
  6371. name: "Lorger",
  6372. height: math.unit(250, "feet")
  6373. },
  6374. {
  6375. name: "Macro",
  6376. height: math.unit(500, "meters")
  6377. },
  6378. ]
  6379. ))
  6380. characterMakers.push(() => makeCharacter(
  6381. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6382. {
  6383. front: {
  6384. height: math.unit(2, "meters"),
  6385. weight: math.unit(86, "kg"),
  6386. name: "Front",
  6387. image: {
  6388. source: "./media/characters/rose/front.svg",
  6389. extra: 350/335,
  6390. bottom: 10/360
  6391. }
  6392. },
  6393. frontAlt: {
  6394. height: math.unit(1.6, "meters"),
  6395. weight: math.unit(86, "kg"),
  6396. name: "Front (Alt)",
  6397. image: {
  6398. source: "./media/characters/rose/front-alt.svg",
  6399. extra: 299/283,
  6400. bottom: 3/302
  6401. }
  6402. },
  6403. plush: {
  6404. height: math.unit(2, "meters"),
  6405. weight: math.unit(86/3, "kg"),
  6406. name: "Plush",
  6407. image: {
  6408. source: "./media/characters/rose/plush.svg",
  6409. extra: 361/337,
  6410. bottom: 11/372
  6411. }
  6412. },
  6413. },
  6414. [
  6415. {
  6416. name: "Mini-Micro",
  6417. height: math.unit(1, "cm")
  6418. },
  6419. {
  6420. name: "Micro",
  6421. height: math.unit(3.5, "inches"),
  6422. default: true
  6423. },
  6424. {
  6425. name: "Normal",
  6426. height: math.unit(6 + 1 / 6, "feet")
  6427. },
  6428. {
  6429. name: "Mini-Macro",
  6430. height: math.unit(9 + 10 / 12, "feet")
  6431. },
  6432. ]
  6433. ))
  6434. characterMakers.push(() => makeCharacter(
  6435. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6436. {
  6437. front: {
  6438. height: math.unit(2, "meters"),
  6439. weight: math.unit(350, "lbs"),
  6440. name: "Front",
  6441. image: {
  6442. source: "./media/characters/regal/front.svg"
  6443. }
  6444. },
  6445. back: {
  6446. height: math.unit(2, "meters"),
  6447. weight: math.unit(350, "lbs"),
  6448. name: "Back",
  6449. image: {
  6450. source: "./media/characters/regal/back.svg"
  6451. }
  6452. },
  6453. },
  6454. [
  6455. {
  6456. name: "Macro",
  6457. height: math.unit(350, "feet"),
  6458. default: true
  6459. }
  6460. ]
  6461. ))
  6462. characterMakers.push(() => makeCharacter(
  6463. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6464. {
  6465. front: {
  6466. height: math.unit(4 + 11 / 12, "feet"),
  6467. weight: math.unit(100, "lbs"),
  6468. name: "Front",
  6469. image: {
  6470. source: "./media/characters/opal/front.svg"
  6471. }
  6472. },
  6473. frontAlt: {
  6474. height: math.unit(4 + 11 / 12, "feet"),
  6475. weight: math.unit(100, "lbs"),
  6476. name: "Front (Alt)",
  6477. image: {
  6478. source: "./media/characters/opal/front-alt.svg"
  6479. }
  6480. },
  6481. },
  6482. [
  6483. {
  6484. name: "Small",
  6485. height: math.unit(4 + 11 / 12, "feet")
  6486. },
  6487. {
  6488. name: "Normal",
  6489. height: math.unit(20, "feet"),
  6490. default: true
  6491. },
  6492. {
  6493. name: "Macro",
  6494. height: math.unit(120, "feet")
  6495. },
  6496. {
  6497. name: "Megamacro",
  6498. height: math.unit(80, "miles")
  6499. },
  6500. {
  6501. name: "True Size",
  6502. height: math.unit(100000, "lightyears")
  6503. },
  6504. ]
  6505. ))
  6506. characterMakers.push(() => makeCharacter(
  6507. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6508. {
  6509. front: {
  6510. height: math.unit(6, "feet"),
  6511. weight: math.unit(200, "lbs"),
  6512. name: "Front",
  6513. image: {
  6514. source: "./media/characters/vector-wuff/front.svg"
  6515. }
  6516. }
  6517. },
  6518. [
  6519. {
  6520. name: "Normal",
  6521. height: math.unit(2.8, "meters")
  6522. },
  6523. {
  6524. name: "Macro",
  6525. height: math.unit(450, "meters"),
  6526. default: true
  6527. },
  6528. {
  6529. name: "Megamacro",
  6530. height: math.unit(15, "kilometers")
  6531. }
  6532. ]
  6533. ))
  6534. characterMakers.push(() => makeCharacter(
  6535. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6536. {
  6537. front: {
  6538. height: math.unit(6, "feet"),
  6539. weight: math.unit(256, "lbs"),
  6540. name: "Front",
  6541. image: {
  6542. source: "./media/characters/dannik/front.svg"
  6543. }
  6544. }
  6545. },
  6546. [
  6547. {
  6548. name: "Macro",
  6549. height: math.unit(69.57, "meters"),
  6550. default: true
  6551. },
  6552. ]
  6553. ))
  6554. characterMakers.push(() => makeCharacter(
  6555. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6556. {
  6557. front: {
  6558. height: math.unit(6, "feet"),
  6559. weight: math.unit(120, "lbs"),
  6560. name: "Front",
  6561. image: {
  6562. source: "./media/characters/azura-saharah/front.svg"
  6563. }
  6564. },
  6565. back: {
  6566. height: math.unit(6, "feet"),
  6567. weight: math.unit(120, "lbs"),
  6568. name: "Back",
  6569. image: {
  6570. source: "./media/characters/azura-saharah/back.svg"
  6571. }
  6572. },
  6573. },
  6574. [
  6575. {
  6576. name: "Macro",
  6577. height: math.unit(100, "feet"),
  6578. default: true
  6579. },
  6580. ]
  6581. ))
  6582. characterMakers.push(() => makeCharacter(
  6583. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6584. {
  6585. side: {
  6586. height: math.unit(5 + 4 / 12, "feet"),
  6587. weight: math.unit(163, "lbs"),
  6588. name: "Side",
  6589. image: {
  6590. source: "./media/characters/kennedy/side.svg"
  6591. }
  6592. }
  6593. },
  6594. [
  6595. {
  6596. name: "Standard Doggo",
  6597. height: math.unit(5 + 4 / 12, "feet")
  6598. },
  6599. {
  6600. name: "Big Doggo",
  6601. height: math.unit(25 + 3 / 12, "feet"),
  6602. default: true
  6603. },
  6604. ]
  6605. ))
  6606. characterMakers.push(() => makeCharacter(
  6607. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6608. {
  6609. front: {
  6610. height: math.unit(6, "feet"),
  6611. weight: math.unit(90, "lbs"),
  6612. name: "Front",
  6613. image: {
  6614. source: "./media/characters/odi-lunar/front.svg"
  6615. }
  6616. }
  6617. },
  6618. [
  6619. {
  6620. name: "Micro",
  6621. height: math.unit(3, "inches"),
  6622. default: true
  6623. },
  6624. {
  6625. name: "Normal",
  6626. height: math.unit(5.5, "feet")
  6627. }
  6628. ]
  6629. ))
  6630. characterMakers.push(() => makeCharacter(
  6631. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6632. {
  6633. back: {
  6634. height: math.unit(6, "feet"),
  6635. weight: math.unit(220, "lbs"),
  6636. name: "Back",
  6637. image: {
  6638. source: "./media/characters/mandake/back.svg"
  6639. }
  6640. }
  6641. },
  6642. [
  6643. {
  6644. name: "Normal",
  6645. height: math.unit(7, "feet"),
  6646. default: true
  6647. },
  6648. {
  6649. name: "Macro",
  6650. height: math.unit(78, "feet")
  6651. },
  6652. {
  6653. name: "Macro+",
  6654. height: math.unit(300, "meters")
  6655. },
  6656. {
  6657. name: "Macro++",
  6658. height: math.unit(2400, "feet")
  6659. },
  6660. {
  6661. name: "Megamacro",
  6662. height: math.unit(5167, "meters")
  6663. },
  6664. {
  6665. name: "Gigamacro",
  6666. height: math.unit(41769, "miles")
  6667. },
  6668. ]
  6669. ))
  6670. characterMakers.push(() => makeCharacter(
  6671. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6672. {
  6673. front: {
  6674. height: math.unit(6, "feet"),
  6675. weight: math.unit(120, "lbs"),
  6676. name: "Front",
  6677. image: {
  6678. source: "./media/characters/yozey/front.svg"
  6679. }
  6680. },
  6681. frontAlt: {
  6682. height: math.unit(6, "feet"),
  6683. weight: math.unit(120, "lbs"),
  6684. name: "Front (Alt)",
  6685. image: {
  6686. source: "./media/characters/yozey/front-alt.svg"
  6687. }
  6688. },
  6689. side: {
  6690. height: math.unit(6, "feet"),
  6691. weight: math.unit(120, "lbs"),
  6692. name: "Side",
  6693. image: {
  6694. source: "./media/characters/yozey/side.svg"
  6695. }
  6696. },
  6697. },
  6698. [
  6699. {
  6700. name: "Micro",
  6701. height: math.unit(3, "inches"),
  6702. default: true
  6703. },
  6704. {
  6705. name: "Normal",
  6706. height: math.unit(6, "feet")
  6707. }
  6708. ]
  6709. ))
  6710. characterMakers.push(() => makeCharacter(
  6711. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6712. {
  6713. front: {
  6714. height: math.unit(6, "feet"),
  6715. weight: math.unit(103, "lbs"),
  6716. name: "Front",
  6717. image: {
  6718. source: "./media/characters/valeska-voss/front.svg"
  6719. }
  6720. }
  6721. },
  6722. [
  6723. {
  6724. name: "Mini-Sized Sub",
  6725. height: math.unit(3.1, "inches")
  6726. },
  6727. {
  6728. name: "Mid-Sized Sub",
  6729. height: math.unit(6.2, "inches")
  6730. },
  6731. {
  6732. name: "Full-Sized Sub",
  6733. height: math.unit(9.3, "inches")
  6734. },
  6735. {
  6736. name: "Normal",
  6737. height: math.unit(5 + 2 / 12, "foot"),
  6738. default: true
  6739. },
  6740. ]
  6741. ))
  6742. characterMakers.push(() => makeCharacter(
  6743. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6744. {
  6745. front: {
  6746. height: math.unit(6, "feet"),
  6747. weight: math.unit(160, "lbs"),
  6748. name: "Front",
  6749. image: {
  6750. source: "./media/characters/gene-zeta/front.svg",
  6751. extra: 3006 / 2826,
  6752. bottom: 182 / 3188
  6753. }
  6754. }
  6755. },
  6756. [
  6757. {
  6758. name: "Micro",
  6759. height: math.unit(6, "inches")
  6760. },
  6761. {
  6762. name: "Normal",
  6763. height: math.unit(5 + 11 / 12, "foot"),
  6764. default: true
  6765. },
  6766. {
  6767. name: "Macro",
  6768. height: math.unit(140, "feet")
  6769. },
  6770. {
  6771. name: "Supercharged",
  6772. height: math.unit(2500, "feet")
  6773. },
  6774. ]
  6775. ))
  6776. characterMakers.push(() => makeCharacter(
  6777. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6778. {
  6779. front: {
  6780. height: math.unit(6, "feet"),
  6781. weight: math.unit(350, "lbs"),
  6782. name: "Front",
  6783. image: {
  6784. source: "./media/characters/razinox/front.svg",
  6785. extra: 1686 / 1548,
  6786. bottom: 28.2 / 1868
  6787. }
  6788. },
  6789. back: {
  6790. height: math.unit(6, "feet"),
  6791. weight: math.unit(350, "lbs"),
  6792. name: "Back",
  6793. image: {
  6794. source: "./media/characters/razinox/back.svg",
  6795. extra: 1660 / 1590,
  6796. bottom: 15 / 1665
  6797. }
  6798. },
  6799. },
  6800. [
  6801. {
  6802. name: "Normal",
  6803. height: math.unit(10 + 8 / 12, "foot")
  6804. },
  6805. {
  6806. name: "Minimacro",
  6807. height: math.unit(15, "foot")
  6808. },
  6809. {
  6810. name: "Macro",
  6811. height: math.unit(60, "foot"),
  6812. default: true
  6813. },
  6814. {
  6815. name: "Megamacro",
  6816. height: math.unit(5, "miles")
  6817. },
  6818. {
  6819. name: "Gigamacro",
  6820. height: math.unit(6000, "miles")
  6821. },
  6822. ]
  6823. ))
  6824. characterMakers.push(() => makeCharacter(
  6825. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6826. {
  6827. front: {
  6828. height: math.unit(6, "feet"),
  6829. weight: math.unit(150, "lbs"),
  6830. name: "Front",
  6831. image: {
  6832. source: "./media/characters/cobalt/front.svg"
  6833. }
  6834. }
  6835. },
  6836. [
  6837. {
  6838. name: "Normal",
  6839. height: math.unit(8 + 1 / 12, "foot")
  6840. },
  6841. {
  6842. name: "Macro",
  6843. height: math.unit(111, "foot"),
  6844. default: true
  6845. },
  6846. {
  6847. name: "Supracosmic",
  6848. height: math.unit(1e42, "feet")
  6849. },
  6850. ]
  6851. ))
  6852. characterMakers.push(() => makeCharacter(
  6853. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6854. {
  6855. front: {
  6856. height: math.unit(6, "feet"),
  6857. weight: math.unit(140, "lbs"),
  6858. name: "Front",
  6859. image: {
  6860. source: "./media/characters/amanda/front.svg"
  6861. }
  6862. }
  6863. },
  6864. [
  6865. {
  6866. name: "Micro",
  6867. height: math.unit(5, "inches"),
  6868. default: true
  6869. },
  6870. ]
  6871. ))
  6872. characterMakers.push(() => makeCharacter(
  6873. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6874. {
  6875. front: {
  6876. height: math.unit(2.75, "meters"),
  6877. weight: math.unit(1200, "lb"),
  6878. name: "Front",
  6879. image: {
  6880. source: "./media/characters/teal/front.svg",
  6881. extra: 2463 / 2320,
  6882. bottom: 166 / 2629
  6883. }
  6884. },
  6885. back: {
  6886. height: math.unit(2.75, "meters"),
  6887. weight: math.unit(1200, "lb"),
  6888. name: "Back",
  6889. image: {
  6890. source: "./media/characters/teal/back.svg",
  6891. extra: 2580 / 2489,
  6892. bottom: 151 / 2731
  6893. }
  6894. },
  6895. sitting: {
  6896. height: math.unit(1.9, "meters"),
  6897. weight: math.unit(1200, "lb"),
  6898. name: "Sitting",
  6899. image: {
  6900. source: "./media/characters/teal/sitting.svg",
  6901. extra: 623 / 590,
  6902. bottom: 121 / 744
  6903. }
  6904. },
  6905. standing: {
  6906. height: math.unit(2.75, "meters"),
  6907. weight: math.unit(1200, "lb"),
  6908. name: "Standing",
  6909. image: {
  6910. source: "./media/characters/teal/standing.svg",
  6911. extra: 923 / 893,
  6912. bottom: 60 / 983
  6913. }
  6914. },
  6915. stretching: {
  6916. height: math.unit(3.65, "meters"),
  6917. weight: math.unit(1200, "lb"),
  6918. name: "Stretching",
  6919. image: {
  6920. source: "./media/characters/teal/stretching.svg",
  6921. extra: 1276 / 1244,
  6922. bottom: 0 / 1276
  6923. }
  6924. },
  6925. legged: {
  6926. height: math.unit(1.3, "meters"),
  6927. weight: math.unit(100, "lb"),
  6928. name: "Legged",
  6929. image: {
  6930. source: "./media/characters/teal/legged.svg",
  6931. extra: 462 / 437,
  6932. bottom: 24 / 486
  6933. }
  6934. },
  6935. naga: {
  6936. height: math.unit(5.4, "meters"),
  6937. weight: math.unit(4000, "lb"),
  6938. name: "Naga",
  6939. image: {
  6940. source: "./media/characters/teal/naga.svg",
  6941. extra: 1902 / 1858,
  6942. bottom: 0 / 1902
  6943. }
  6944. },
  6945. hand: {
  6946. height: math.unit(0.52, "meters"),
  6947. name: "Hand",
  6948. image: {
  6949. source: "./media/characters/teal/hand.svg"
  6950. }
  6951. },
  6952. maw: {
  6953. height: math.unit(0.43, "meters"),
  6954. name: "Maw",
  6955. image: {
  6956. source: "./media/characters/teal/maw.svg"
  6957. }
  6958. },
  6959. slit: {
  6960. height: math.unit(0.25, "meters"),
  6961. name: "Slit",
  6962. image: {
  6963. source: "./media/characters/teal/slit.svg"
  6964. }
  6965. },
  6966. },
  6967. [
  6968. {
  6969. name: "Normal",
  6970. height: math.unit(2.75, "meters"),
  6971. default: true
  6972. },
  6973. {
  6974. name: "Macro",
  6975. height: math.unit(300, "feet")
  6976. },
  6977. {
  6978. name: "Macro+",
  6979. height: math.unit(2000, "feet")
  6980. },
  6981. ]
  6982. ))
  6983. characterMakers.push(() => makeCharacter(
  6984. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6985. {
  6986. frontCat: {
  6987. height: math.unit(6, "feet"),
  6988. weight: math.unit(180, "lbs"),
  6989. name: "Front (Cat)",
  6990. image: {
  6991. source: "./media/characters/ravin-amulet/front-cat.svg"
  6992. }
  6993. },
  6994. frontCatAlt: {
  6995. height: math.unit(6, "feet"),
  6996. weight: math.unit(180, "lbs"),
  6997. name: "Front (Alt, Cat)",
  6998. image: {
  6999. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7000. }
  7001. },
  7002. frontWerewolf: {
  7003. height: math.unit(6 * 1.2, "feet"),
  7004. weight: math.unit(225, "lbs"),
  7005. name: "Front (Werewolf)",
  7006. image: {
  7007. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7008. }
  7009. },
  7010. backWerewolf: {
  7011. height: math.unit(6 * 1.2, "feet"),
  7012. weight: math.unit(225, "lbs"),
  7013. name: "Back (Werewolf)",
  7014. image: {
  7015. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7016. }
  7017. },
  7018. },
  7019. [
  7020. {
  7021. name: "Nano",
  7022. height: math.unit(1, "micrometer")
  7023. },
  7024. {
  7025. name: "Micro",
  7026. height: math.unit(1, "inch")
  7027. },
  7028. {
  7029. name: "Normal",
  7030. height: math.unit(6, "feet"),
  7031. default: true
  7032. },
  7033. {
  7034. name: "Macro",
  7035. height: math.unit(60, "feet")
  7036. }
  7037. ]
  7038. ))
  7039. characterMakers.push(() => makeCharacter(
  7040. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7041. {
  7042. front: {
  7043. height: math.unit(6, "feet"),
  7044. weight: math.unit(165, "lbs"),
  7045. name: "Front",
  7046. image: {
  7047. source: "./media/characters/fluoresce/front.svg"
  7048. }
  7049. }
  7050. },
  7051. [
  7052. {
  7053. name: "Micro",
  7054. height: math.unit(6, "cm")
  7055. },
  7056. {
  7057. name: "Normal",
  7058. height: math.unit(5 + 7 / 12, "feet"),
  7059. default: true
  7060. },
  7061. {
  7062. name: "Macro",
  7063. height: math.unit(56, "feet")
  7064. },
  7065. {
  7066. name: "Megamacro",
  7067. height: math.unit(1.9, "miles")
  7068. },
  7069. ]
  7070. ))
  7071. characterMakers.push(() => makeCharacter(
  7072. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7073. {
  7074. front: {
  7075. height: math.unit(9 + 6 / 12, "feet"),
  7076. weight: math.unit(523, "lbs"),
  7077. name: "Side",
  7078. image: {
  7079. source: "./media/characters/aurora/side.svg"
  7080. }
  7081. }
  7082. },
  7083. [
  7084. {
  7085. name: "Normal",
  7086. height: math.unit(9 + 6 / 12, "feet")
  7087. },
  7088. {
  7089. name: "Macro",
  7090. height: math.unit(96, "feet"),
  7091. default: true
  7092. },
  7093. {
  7094. name: "Macro+",
  7095. height: math.unit(243, "feet")
  7096. },
  7097. ]
  7098. ))
  7099. characterMakers.push(() => makeCharacter(
  7100. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7101. {
  7102. front: {
  7103. height: math.unit(194, "cm"),
  7104. weight: math.unit(90, "kg"),
  7105. name: "Front",
  7106. image: {
  7107. source: "./media/characters/ranek/front.svg"
  7108. }
  7109. },
  7110. side: {
  7111. height: math.unit(194, "cm"),
  7112. weight: math.unit(90, "kg"),
  7113. name: "Side",
  7114. image: {
  7115. source: "./media/characters/ranek/side.svg"
  7116. }
  7117. },
  7118. back: {
  7119. height: math.unit(194, "cm"),
  7120. weight: math.unit(90, "kg"),
  7121. name: "Back",
  7122. image: {
  7123. source: "./media/characters/ranek/back.svg"
  7124. }
  7125. },
  7126. feral: {
  7127. height: math.unit(30, "cm"),
  7128. weight: math.unit(1.6, "lbs"),
  7129. name: "Feral",
  7130. image: {
  7131. source: "./media/characters/ranek/feral.svg"
  7132. }
  7133. },
  7134. },
  7135. [
  7136. {
  7137. name: "Normal",
  7138. height: math.unit(194, "cm"),
  7139. default: true
  7140. },
  7141. {
  7142. name: "Macro",
  7143. height: math.unit(100, "meters")
  7144. },
  7145. ]
  7146. ))
  7147. characterMakers.push(() => makeCharacter(
  7148. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7149. {
  7150. front: {
  7151. height: math.unit(5 + 6 / 12, "feet"),
  7152. weight: math.unit(153, "lbs"),
  7153. name: "Front",
  7154. image: {
  7155. source: "./media/characters/andrew-cooper/front.svg"
  7156. }
  7157. },
  7158. },
  7159. [
  7160. {
  7161. name: "Nano",
  7162. height: math.unit(1, "mm")
  7163. },
  7164. {
  7165. name: "Micro",
  7166. height: math.unit(2, "inches")
  7167. },
  7168. {
  7169. name: "Normal",
  7170. height: math.unit(5 + 6 / 12, "feet"),
  7171. default: true
  7172. }
  7173. ]
  7174. ))
  7175. characterMakers.push(() => makeCharacter(
  7176. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7177. {
  7178. front: {
  7179. height: math.unit(6, "feet"),
  7180. weight: math.unit(180, "lbs"),
  7181. name: "Front",
  7182. image: {
  7183. source: "./media/characters/akane-sato/front.svg",
  7184. extra: 1219 / 1140
  7185. }
  7186. },
  7187. back: {
  7188. height: math.unit(6, "feet"),
  7189. weight: math.unit(180, "lbs"),
  7190. name: "Back",
  7191. image: {
  7192. source: "./media/characters/akane-sato/back.svg",
  7193. extra: 1219 / 1170
  7194. }
  7195. },
  7196. },
  7197. [
  7198. {
  7199. name: "Normal",
  7200. height: math.unit(2.5, "meters")
  7201. },
  7202. {
  7203. name: "Macro",
  7204. height: math.unit(250, "meters"),
  7205. default: true
  7206. },
  7207. {
  7208. name: "Megamacro",
  7209. height: math.unit(25, "km")
  7210. },
  7211. ]
  7212. ))
  7213. characterMakers.push(() => makeCharacter(
  7214. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7215. {
  7216. front: {
  7217. height: math.unit(6, "feet"),
  7218. weight: math.unit(65, "kg"),
  7219. name: "Front",
  7220. image: {
  7221. source: "./media/characters/rook/front.svg",
  7222. extra: 960 / 950
  7223. }
  7224. }
  7225. },
  7226. [
  7227. {
  7228. name: "Normal",
  7229. height: math.unit(8.8, "feet")
  7230. },
  7231. {
  7232. name: "Macro",
  7233. height: math.unit(88, "feet"),
  7234. default: true
  7235. },
  7236. {
  7237. name: "Megamacro",
  7238. height: math.unit(8, "miles")
  7239. },
  7240. ]
  7241. ))
  7242. characterMakers.push(() => makeCharacter(
  7243. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7244. {
  7245. front: {
  7246. height: math.unit(12 + 2 / 12, "feet"),
  7247. weight: math.unit(808, "lbs"),
  7248. name: "Front",
  7249. image: {
  7250. source: "./media/characters/prodigy/front.svg"
  7251. }
  7252. }
  7253. },
  7254. [
  7255. {
  7256. name: "Normal",
  7257. height: math.unit(12 + 2 / 12, "feet"),
  7258. default: true
  7259. },
  7260. {
  7261. name: "Macro",
  7262. height: math.unit(143, "feet")
  7263. },
  7264. {
  7265. name: "Macro+",
  7266. height: math.unit(400, "feet")
  7267. },
  7268. ]
  7269. ))
  7270. characterMakers.push(() => makeCharacter(
  7271. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7272. {
  7273. front: {
  7274. height: math.unit(6, "feet"),
  7275. weight: math.unit(225, "lbs"),
  7276. name: "Front",
  7277. image: {
  7278. source: "./media/characters/daniel/front.svg"
  7279. }
  7280. },
  7281. leaning: {
  7282. height: math.unit(6, "feet"),
  7283. weight: math.unit(225, "lbs"),
  7284. name: "Leaning",
  7285. image: {
  7286. source: "./media/characters/daniel/leaning.svg"
  7287. }
  7288. },
  7289. },
  7290. [
  7291. {
  7292. name: "Macro",
  7293. height: math.unit(1000, "feet"),
  7294. default: true
  7295. },
  7296. ]
  7297. ))
  7298. characterMakers.push(() => makeCharacter(
  7299. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7300. {
  7301. front: {
  7302. height: math.unit(6, "feet"),
  7303. weight: math.unit(88, "lbs"),
  7304. name: "Front",
  7305. image: {
  7306. source: "./media/characters/chiros/front.svg",
  7307. extra: 306 / 226
  7308. }
  7309. },
  7310. side: {
  7311. height: math.unit(6, "feet"),
  7312. weight: math.unit(88, "lbs"),
  7313. name: "Side",
  7314. image: {
  7315. source: "./media/characters/chiros/side.svg",
  7316. extra: 306 / 226
  7317. }
  7318. },
  7319. },
  7320. [
  7321. {
  7322. name: "Normal",
  7323. height: math.unit(6, "cm"),
  7324. default: true
  7325. },
  7326. ]
  7327. ))
  7328. characterMakers.push(() => makeCharacter(
  7329. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7330. {
  7331. front: {
  7332. height: math.unit(6, "feet"),
  7333. weight: math.unit(100, "lbs"),
  7334. name: "Front",
  7335. image: {
  7336. source: "./media/characters/selka/front.svg",
  7337. extra: 947 / 887
  7338. }
  7339. }
  7340. },
  7341. [
  7342. {
  7343. name: "Normal",
  7344. height: math.unit(5, "cm"),
  7345. default: true
  7346. },
  7347. ]
  7348. ))
  7349. characterMakers.push(() => makeCharacter(
  7350. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7351. {
  7352. front: {
  7353. height: math.unit(8 + 3 / 12, "feet"),
  7354. weight: math.unit(424, "lbs"),
  7355. name: "Front",
  7356. image: {
  7357. source: "./media/characters/verin/front.svg",
  7358. extra: 1845 / 1550
  7359. }
  7360. },
  7361. frontArmored: {
  7362. height: math.unit(8 + 3 / 12, "feet"),
  7363. weight: math.unit(424, "lbs"),
  7364. name: "Front (Armored)",
  7365. image: {
  7366. source: "./media/characters/verin/front-armor.svg",
  7367. extra: 1845 / 1550,
  7368. bottom: 0.01
  7369. }
  7370. },
  7371. back: {
  7372. height: math.unit(8 + 3 / 12, "feet"),
  7373. weight: math.unit(424, "lbs"),
  7374. name: "Back",
  7375. image: {
  7376. source: "./media/characters/verin/back.svg",
  7377. bottom: 0.1,
  7378. extra: 1
  7379. }
  7380. },
  7381. foot: {
  7382. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7383. name: "Foot",
  7384. image: {
  7385. source: "./media/characters/verin/foot.svg"
  7386. }
  7387. },
  7388. },
  7389. [
  7390. {
  7391. name: "Normal",
  7392. height: math.unit(8 + 3 / 12, "feet")
  7393. },
  7394. {
  7395. name: "Minimacro",
  7396. height: math.unit(21, "feet"),
  7397. default: true
  7398. },
  7399. {
  7400. name: "Macro",
  7401. height: math.unit(626, "feet")
  7402. },
  7403. ]
  7404. ))
  7405. characterMakers.push(() => makeCharacter(
  7406. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7407. {
  7408. front: {
  7409. height: math.unit(2.718, "meters"),
  7410. weight: math.unit(150, "lbs"),
  7411. name: "Front",
  7412. image: {
  7413. source: "./media/characters/sovrim-terraquian/front.svg"
  7414. }
  7415. },
  7416. back: {
  7417. height: math.unit(2.718, "meters"),
  7418. weight: math.unit(150, "lbs"),
  7419. name: "Back",
  7420. image: {
  7421. source: "./media/characters/sovrim-terraquian/back.svg"
  7422. }
  7423. }
  7424. },
  7425. [
  7426. {
  7427. name: "Micro",
  7428. height: math.unit(2, "inches")
  7429. },
  7430. {
  7431. name: "Small",
  7432. height: math.unit(1, "meter")
  7433. },
  7434. {
  7435. name: "Normal",
  7436. height: math.unit(Math.E, "meters"),
  7437. default: true
  7438. },
  7439. {
  7440. name: "Macro",
  7441. height: math.unit(20, "meters")
  7442. },
  7443. {
  7444. name: "Macro+",
  7445. height: math.unit(400, "meters")
  7446. },
  7447. ]
  7448. ))
  7449. characterMakers.push(() => makeCharacter(
  7450. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7451. {
  7452. front: {
  7453. height: math.unit(7, "feet"),
  7454. weight: math.unit(489, "lbs"),
  7455. name: "Front",
  7456. image: {
  7457. source: "./media/characters/reece-silvermane/front.svg",
  7458. bottom: 0.02,
  7459. extra: 1
  7460. }
  7461. },
  7462. },
  7463. [
  7464. {
  7465. name: "Macro",
  7466. height: math.unit(1.5, "miles"),
  7467. default: true
  7468. },
  7469. ]
  7470. ))
  7471. characterMakers.push(() => makeCharacter(
  7472. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7473. {
  7474. front: {
  7475. height: math.unit(6, "feet"),
  7476. weight: math.unit(78, "kg"),
  7477. name: "Front",
  7478. image: {
  7479. source: "./media/characters/kane/front.svg",
  7480. extra: 978 / 899
  7481. }
  7482. },
  7483. },
  7484. [
  7485. {
  7486. name: "Normal",
  7487. height: math.unit(2.1, "m"),
  7488. },
  7489. {
  7490. name: "Macro",
  7491. height: math.unit(1, "km"),
  7492. default: true
  7493. },
  7494. ]
  7495. ))
  7496. characterMakers.push(() => makeCharacter(
  7497. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7498. {
  7499. front: {
  7500. height: math.unit(6, "feet"),
  7501. weight: math.unit(200, "kg"),
  7502. name: "Front",
  7503. image: {
  7504. source: "./media/characters/tegon/front.svg",
  7505. bottom: 0.01,
  7506. extra: 1
  7507. }
  7508. },
  7509. },
  7510. [
  7511. {
  7512. name: "Micro",
  7513. height: math.unit(1, "inch")
  7514. },
  7515. {
  7516. name: "Normal",
  7517. height: math.unit(6 + 3 / 12, "feet"),
  7518. default: true
  7519. },
  7520. {
  7521. name: "Macro",
  7522. height: math.unit(300, "feet")
  7523. },
  7524. {
  7525. name: "Megamacro",
  7526. height: math.unit(69, "miles")
  7527. },
  7528. ]
  7529. ))
  7530. characterMakers.push(() => makeCharacter(
  7531. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7532. {
  7533. side: {
  7534. height: math.unit(6, "feet"),
  7535. weight: math.unit(2304, "lbs"),
  7536. name: "Side",
  7537. image: {
  7538. source: "./media/characters/arcturax/side.svg",
  7539. extra: 790 / 376,
  7540. bottom: 0.01
  7541. }
  7542. },
  7543. },
  7544. [
  7545. {
  7546. name: "Micro",
  7547. height: math.unit(2, "inch")
  7548. },
  7549. {
  7550. name: "Normal",
  7551. height: math.unit(6, "feet")
  7552. },
  7553. {
  7554. name: "Macro",
  7555. height: math.unit(39, "feet"),
  7556. default: true
  7557. },
  7558. {
  7559. name: "Megamacro",
  7560. height: math.unit(7, "miles")
  7561. },
  7562. ]
  7563. ))
  7564. characterMakers.push(() => makeCharacter(
  7565. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7566. {
  7567. front: {
  7568. height: math.unit(6, "feet"),
  7569. weight: math.unit(50, "lbs"),
  7570. name: "Front",
  7571. image: {
  7572. source: "./media/characters/sentri/front.svg",
  7573. extra: 1750 / 1570,
  7574. bottom: 0.025
  7575. }
  7576. },
  7577. frontAlt: {
  7578. height: math.unit(6, "feet"),
  7579. weight: math.unit(50, "lbs"),
  7580. name: "Front (Alt)",
  7581. image: {
  7582. source: "./media/characters/sentri/front-alt.svg",
  7583. extra: 1750 / 1570,
  7584. bottom: 0.025
  7585. }
  7586. },
  7587. },
  7588. [
  7589. {
  7590. name: "Normal",
  7591. height: math.unit(15, "feet"),
  7592. default: true
  7593. },
  7594. {
  7595. name: "Macro",
  7596. height: math.unit(2500, "feet")
  7597. }
  7598. ]
  7599. ))
  7600. characterMakers.push(() => makeCharacter(
  7601. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7602. {
  7603. front: {
  7604. height: math.unit(5 + 8 / 12, "feet"),
  7605. weight: math.unit(130, "lbs"),
  7606. name: "Front",
  7607. image: {
  7608. source: "./media/characters/corvin/front.svg",
  7609. extra: 1803 / 1629
  7610. }
  7611. },
  7612. frontShirt: {
  7613. height: math.unit(5 + 8 / 12, "feet"),
  7614. weight: math.unit(130, "lbs"),
  7615. name: "Front (Shirt)",
  7616. image: {
  7617. source: "./media/characters/corvin/front-shirt.svg",
  7618. extra: 1803 / 1629
  7619. }
  7620. },
  7621. frontPoncho: {
  7622. height: math.unit(5 + 8 / 12, "feet"),
  7623. weight: math.unit(130, "lbs"),
  7624. name: "Front (Poncho)",
  7625. image: {
  7626. source: "./media/characters/corvin/front-poncho.svg",
  7627. extra: 1803 / 1629
  7628. }
  7629. },
  7630. side: {
  7631. height: math.unit(5 + 8 / 12, "feet"),
  7632. weight: math.unit(130, "lbs"),
  7633. name: "Side",
  7634. image: {
  7635. source: "./media/characters/corvin/side.svg",
  7636. extra: 1012 / 945
  7637. }
  7638. },
  7639. back: {
  7640. height: math.unit(5 + 8 / 12, "feet"),
  7641. weight: math.unit(130, "lbs"),
  7642. name: "Back",
  7643. image: {
  7644. source: "./media/characters/corvin/back.svg",
  7645. extra: 1803 / 1629
  7646. }
  7647. },
  7648. },
  7649. [
  7650. {
  7651. name: "Micro",
  7652. height: math.unit(3, "inches")
  7653. },
  7654. {
  7655. name: "Normal",
  7656. height: math.unit(5 + 8 / 12, "feet")
  7657. },
  7658. {
  7659. name: "Macro",
  7660. height: math.unit(300, "feet"),
  7661. default: true
  7662. },
  7663. {
  7664. name: "Megamacro",
  7665. height: math.unit(500, "miles")
  7666. }
  7667. ]
  7668. ))
  7669. characterMakers.push(() => makeCharacter(
  7670. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7671. {
  7672. front: {
  7673. height: math.unit(6, "feet"),
  7674. weight: math.unit(135, "lbs"),
  7675. name: "Front",
  7676. image: {
  7677. source: "./media/characters/q/front.svg",
  7678. extra: 854 / 752,
  7679. bottom: 0.005
  7680. }
  7681. },
  7682. back: {
  7683. height: math.unit(6, "feet"),
  7684. weight: math.unit(130, "lbs"),
  7685. name: "Back",
  7686. image: {
  7687. source: "./media/characters/q/back.svg",
  7688. extra: 854 / 752
  7689. }
  7690. },
  7691. },
  7692. [
  7693. {
  7694. name: "Macro",
  7695. height: math.unit(90, "feet"),
  7696. default: true
  7697. },
  7698. {
  7699. name: "Extra Macro",
  7700. height: math.unit(300, "feet"),
  7701. },
  7702. {
  7703. name: "BIG WALF",
  7704. height: math.unit(750, "feet"),
  7705. },
  7706. ]
  7707. ))
  7708. characterMakers.push(() => makeCharacter(
  7709. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7710. {
  7711. front: {
  7712. height: math.unit(6, "feet"),
  7713. weight: math.unit(150, "lbs"),
  7714. name: "Front",
  7715. image: {
  7716. source: "./media/characters/carley/front.svg",
  7717. extra: 3927 / 3540,
  7718. bottom: 29.2 / 735
  7719. }
  7720. }
  7721. },
  7722. [
  7723. {
  7724. name: "Normal",
  7725. height: math.unit(6 + 3 / 12, "feet")
  7726. },
  7727. {
  7728. name: "Macro",
  7729. height: math.unit(185, "feet"),
  7730. default: true
  7731. },
  7732. {
  7733. name: "Megamacro",
  7734. height: math.unit(8, "miles"),
  7735. },
  7736. ]
  7737. ))
  7738. characterMakers.push(() => makeCharacter(
  7739. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7740. {
  7741. front: {
  7742. height: math.unit(3, "feet"),
  7743. weight: math.unit(28, "lbs"),
  7744. name: "Front",
  7745. image: {
  7746. source: "./media/characters/citrine/front.svg"
  7747. }
  7748. }
  7749. },
  7750. [
  7751. {
  7752. name: "Normal",
  7753. height: math.unit(3, "feet"),
  7754. default: true
  7755. }
  7756. ]
  7757. ))
  7758. characterMakers.push(() => makeCharacter(
  7759. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7760. {
  7761. front: {
  7762. height: math.unit(14, "feet"),
  7763. weight: math.unit(1450, "kg"),
  7764. capacity: math.unit(15, "people"),
  7765. name: "Front",
  7766. image: {
  7767. source: "./media/characters/aura-starwind/front.svg",
  7768. extra: 1455 / 1335
  7769. }
  7770. },
  7771. side: {
  7772. height: math.unit(14, "feet"),
  7773. weight: math.unit(1450, "kg"),
  7774. capacity: math.unit(15, "people"),
  7775. name: "Side",
  7776. image: {
  7777. source: "./media/characters/aura-starwind/side.svg",
  7778. extra: 1654 / 1497
  7779. }
  7780. },
  7781. taur: {
  7782. height: math.unit(18, "feet"),
  7783. weight: math.unit(5500, "kg"),
  7784. capacity: math.unit(50, "people"),
  7785. name: "Taur",
  7786. image: {
  7787. source: "./media/characters/aura-starwind/taur.svg",
  7788. extra: 1760 / 1650
  7789. }
  7790. },
  7791. feral: {
  7792. height: math.unit(46, "feet"),
  7793. weight: math.unit(25000, "kg"),
  7794. capacity: math.unit(120, "people"),
  7795. name: "Feral",
  7796. image: {
  7797. source: "./media/characters/aura-starwind/feral.svg"
  7798. }
  7799. },
  7800. },
  7801. [
  7802. {
  7803. name: "Normal",
  7804. height: math.unit(14, "feet"),
  7805. default: true
  7806. },
  7807. {
  7808. name: "Macro",
  7809. height: math.unit(50, "meters")
  7810. },
  7811. {
  7812. name: "Megamacro",
  7813. height: math.unit(5000, "meters")
  7814. },
  7815. {
  7816. name: "Gigamacro",
  7817. height: math.unit(100000, "kilometers")
  7818. },
  7819. ]
  7820. ))
  7821. characterMakers.push(() => makeCharacter(
  7822. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7823. {
  7824. front: {
  7825. height: math.unit(2 + 7 / 12, "feet"),
  7826. weight: math.unit(32, "lbs"),
  7827. name: "Front",
  7828. image: {
  7829. source: "./media/characters/rivet/front.svg",
  7830. extra: 1716 / 1658,
  7831. bottom: 0.03
  7832. }
  7833. },
  7834. foot: {
  7835. height: math.unit(0.551, "feet"),
  7836. name: "Rivet's Foot",
  7837. image: {
  7838. source: "./media/characters/rivet/foot.svg"
  7839. },
  7840. rename: true
  7841. }
  7842. },
  7843. [
  7844. {
  7845. name: "Micro",
  7846. height: math.unit(1.5, "inches"),
  7847. },
  7848. {
  7849. name: "Normal",
  7850. height: math.unit(2 + 7 / 12, "feet"),
  7851. default: true
  7852. },
  7853. {
  7854. name: "Macro",
  7855. height: math.unit(85, "feet")
  7856. },
  7857. {
  7858. name: "Megamacro",
  7859. height: math.unit(2.2, "km")
  7860. }
  7861. ]
  7862. ))
  7863. characterMakers.push(() => makeCharacter(
  7864. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7865. {
  7866. front: {
  7867. height: math.unit(5 + 9 / 12, "feet"),
  7868. weight: math.unit(150, "lbs"),
  7869. name: "Front",
  7870. image: {
  7871. source: "./media/characters/coffee/front.svg",
  7872. extra: 3666 / 3032,
  7873. bottom: 0.04
  7874. }
  7875. },
  7876. foot: {
  7877. height: math.unit(1.29, "feet"),
  7878. name: "Foot",
  7879. image: {
  7880. source: "./media/characters/coffee/foot.svg"
  7881. }
  7882. },
  7883. },
  7884. [
  7885. {
  7886. name: "Micro",
  7887. height: math.unit(2, "inches"),
  7888. },
  7889. {
  7890. name: "Normal",
  7891. height: math.unit(5 + 9 / 12, "feet"),
  7892. default: true
  7893. },
  7894. {
  7895. name: "Macro",
  7896. height: math.unit(800, "feet")
  7897. },
  7898. {
  7899. name: "Megamacro",
  7900. height: math.unit(25, "miles")
  7901. }
  7902. ]
  7903. ))
  7904. characterMakers.push(() => makeCharacter(
  7905. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7906. {
  7907. front: {
  7908. height: math.unit(6, "feet"),
  7909. weight: math.unit(200, "lbs"),
  7910. name: "Front",
  7911. image: {
  7912. source: "./media/characters/chari-gal/front.svg",
  7913. extra: 1568 / 1385,
  7914. bottom: 0.047
  7915. }
  7916. },
  7917. gigantamax: {
  7918. height: math.unit(6 * 16, "feet"),
  7919. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7920. name: "Gigantamax",
  7921. image: {
  7922. source: "./media/characters/chari-gal/gigantamax.svg",
  7923. extra: 1124 / 888,
  7924. bottom: 0.03
  7925. }
  7926. },
  7927. },
  7928. [
  7929. {
  7930. name: "Normal",
  7931. height: math.unit(5 + 7 / 12, "feet")
  7932. },
  7933. {
  7934. name: "Macro",
  7935. height: math.unit(200, "feet"),
  7936. default: true
  7937. }
  7938. ]
  7939. ))
  7940. characterMakers.push(() => makeCharacter(
  7941. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7942. {
  7943. front: {
  7944. height: math.unit(6, "feet"),
  7945. weight: math.unit(150, "lbs"),
  7946. name: "Front",
  7947. image: {
  7948. source: "./media/characters/nova/front.svg",
  7949. extra: 5000 / 4722,
  7950. bottom: 0.02
  7951. }
  7952. }
  7953. },
  7954. [
  7955. {
  7956. name: "Micro-",
  7957. height: math.unit(0.8, "inches")
  7958. },
  7959. {
  7960. name: "Micro",
  7961. height: math.unit(2, "inches"),
  7962. default: true
  7963. },
  7964. ]
  7965. ))
  7966. characterMakers.push(() => makeCharacter(
  7967. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7968. {
  7969. front: {
  7970. height: math.unit(3 + 1 / 12, "feet"),
  7971. weight: math.unit(21.7, "lbs"),
  7972. name: "Front",
  7973. image: {
  7974. source: "./media/characters/argent/front.svg",
  7975. extra: 1471 / 1331,
  7976. bottom: 100.8 / 1575.5
  7977. }
  7978. }
  7979. },
  7980. [
  7981. {
  7982. name: "Micro",
  7983. height: math.unit(2, "inches")
  7984. },
  7985. {
  7986. name: "Normal",
  7987. height: math.unit(3 + 1 / 12, "feet"),
  7988. default: true
  7989. },
  7990. {
  7991. name: "Macro",
  7992. height: math.unit(120, "feet")
  7993. },
  7994. ]
  7995. ))
  7996. characterMakers.push(() => makeCharacter(
  7997. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7998. {
  7999. lamp: {
  8000. height: math.unit(7 * 1559 / 989, "feet"),
  8001. name: "Magic Lamp",
  8002. image: {
  8003. source: "./media/characters/mira-al-cul/lamp.svg",
  8004. extra: 1617 / 1559
  8005. }
  8006. },
  8007. front: {
  8008. height: math.unit(7, "feet"),
  8009. name: "Front",
  8010. image: {
  8011. source: "./media/characters/mira-al-cul/front.svg",
  8012. extra: 1044 / 990
  8013. }
  8014. },
  8015. },
  8016. [
  8017. {
  8018. name: "Heavily Restricted",
  8019. height: math.unit(7 * 1559 / 989, "feet")
  8020. },
  8021. {
  8022. name: "Freshly Freed",
  8023. height: math.unit(50 * 1559 / 989, "feet")
  8024. },
  8025. {
  8026. name: "World Encompassing",
  8027. height: math.unit(10000 * 1559 / 989, "miles")
  8028. },
  8029. {
  8030. name: "Galactic",
  8031. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8032. },
  8033. {
  8034. name: "Palmed Universe",
  8035. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8036. default: true
  8037. },
  8038. {
  8039. name: "Multiversal Matriarch",
  8040. height: math.unit(8.87e10, "yottameters")
  8041. },
  8042. {
  8043. name: "Void Mother",
  8044. height: math.unit(3.14e110, "yottaparsecs")
  8045. },
  8046. {
  8047. name: "Toying with Transcendence",
  8048. height: math.unit(1e307, "meters")
  8049. },
  8050. ]
  8051. ))
  8052. characterMakers.push(() => makeCharacter(
  8053. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8054. {
  8055. front: {
  8056. height: math.unit(17 + 1 / 12, "feet"),
  8057. weight: math.unit(476.2 * 5, "lbs"),
  8058. name: "Front",
  8059. image: {
  8060. source: "./media/characters/kuro-shi-uchū/front.svg",
  8061. extra: 2329 / 1835,
  8062. bottom: 0.02
  8063. }
  8064. },
  8065. },
  8066. [
  8067. {
  8068. name: "Micro",
  8069. height: math.unit(2, "inches")
  8070. },
  8071. {
  8072. name: "Normal",
  8073. height: math.unit(12, "meters")
  8074. },
  8075. {
  8076. name: "Planetary",
  8077. height: math.unit(0.00929, "AU"),
  8078. default: true
  8079. },
  8080. {
  8081. name: "Universal",
  8082. height: math.unit(20, "gigaparsecs")
  8083. },
  8084. ]
  8085. ))
  8086. characterMakers.push(() => makeCharacter(
  8087. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8088. {
  8089. front: {
  8090. height: math.unit(5 + 2 / 12, "feet"),
  8091. weight: math.unit(120, "lbs"),
  8092. name: "Front",
  8093. image: {
  8094. source: "./media/characters/katherine/front.svg",
  8095. extra: 2075 / 1969
  8096. }
  8097. },
  8098. dress: {
  8099. height: math.unit(5 + 2 / 12, "feet"),
  8100. weight: math.unit(120, "lbs"),
  8101. name: "Dress",
  8102. image: {
  8103. source: "./media/characters/katherine/dress.svg",
  8104. extra: 2258 / 2064
  8105. }
  8106. },
  8107. },
  8108. [
  8109. {
  8110. name: "Micro",
  8111. height: math.unit(1, "inches"),
  8112. default: true
  8113. },
  8114. {
  8115. name: "Normal",
  8116. height: math.unit(5 + 2 / 12, "feet")
  8117. },
  8118. {
  8119. name: "Macro",
  8120. height: math.unit(100, "meters")
  8121. },
  8122. {
  8123. name: "Megamacro",
  8124. height: math.unit(80, "miles")
  8125. },
  8126. ]
  8127. ))
  8128. characterMakers.push(() => makeCharacter(
  8129. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8130. {
  8131. front: {
  8132. height: math.unit(7 + 8 / 12, "feet"),
  8133. weight: math.unit(250, "lbs"),
  8134. name: "Front",
  8135. image: {
  8136. source: "./media/characters/yevis/front.svg",
  8137. extra: 1938 / 1755
  8138. }
  8139. }
  8140. },
  8141. [
  8142. {
  8143. name: "Mortal",
  8144. height: math.unit(7 + 8 / 12, "feet")
  8145. },
  8146. {
  8147. name: "Battle",
  8148. height: math.unit(25 + 11 / 12, "feet")
  8149. },
  8150. {
  8151. name: "Wrath",
  8152. height: math.unit(1654 + 11 / 12, "feet")
  8153. },
  8154. {
  8155. name: "Planet Destroyer",
  8156. height: math.unit(12000, "miles")
  8157. },
  8158. {
  8159. name: "Galaxy Conqueror",
  8160. height: math.unit(1.45, "zettameters"),
  8161. default: true
  8162. },
  8163. {
  8164. name: "Universal War",
  8165. height: math.unit(184, "gigaparsecs")
  8166. },
  8167. {
  8168. name: "Eternity War",
  8169. height: math.unit(1.98e55, "yottaparsecs")
  8170. },
  8171. ]
  8172. ))
  8173. characterMakers.push(() => makeCharacter(
  8174. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8175. {
  8176. front: {
  8177. height: math.unit(5 + 8 / 12, "feet"),
  8178. weight: math.unit(63, "kg"),
  8179. name: "Front",
  8180. image: {
  8181. source: "./media/characters/xavier/front.svg",
  8182. extra: 944 / 883
  8183. }
  8184. },
  8185. frontStretch: {
  8186. height: math.unit(5 + 8 / 12, "feet"),
  8187. weight: math.unit(63, "kg"),
  8188. name: "Stretching",
  8189. image: {
  8190. source: "./media/characters/xavier/front-stretch.svg",
  8191. extra: 962 / 820
  8192. }
  8193. },
  8194. },
  8195. [
  8196. {
  8197. name: "Normal",
  8198. height: math.unit(5 + 8 / 12, "feet")
  8199. },
  8200. {
  8201. name: "Macro",
  8202. height: math.unit(100, "meters"),
  8203. default: true
  8204. },
  8205. {
  8206. name: "McLargeHuge",
  8207. height: math.unit(10, "miles")
  8208. },
  8209. ]
  8210. ))
  8211. characterMakers.push(() => makeCharacter(
  8212. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8213. {
  8214. front: {
  8215. height: math.unit(5 + 5 / 12, "feet"),
  8216. weight: math.unit(150, "lb"),
  8217. name: "Front",
  8218. image: {
  8219. source: "./media/characters/joshii/front.svg",
  8220. extra: 765 / 653,
  8221. bottom: 51 / 816
  8222. }
  8223. },
  8224. foot: {
  8225. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8226. name: "Foot",
  8227. image: {
  8228. source: "./media/characters/joshii/foot.svg"
  8229. }
  8230. },
  8231. },
  8232. [
  8233. {
  8234. name: "Micro",
  8235. height: math.unit(2, "inches"),
  8236. default: true
  8237. },
  8238. {
  8239. name: "Normal",
  8240. height: math.unit(5 + 5 / 12, "feet")
  8241. },
  8242. {
  8243. name: "Macro",
  8244. height: math.unit(785, "feet")
  8245. },
  8246. {
  8247. name: "Megamacro",
  8248. height: math.unit(24.5, "miles")
  8249. },
  8250. ]
  8251. ))
  8252. characterMakers.push(() => makeCharacter(
  8253. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8254. {
  8255. front: {
  8256. height: math.unit(6, "feet"),
  8257. weight: math.unit(150, "lb"),
  8258. name: "Front",
  8259. image: {
  8260. source: "./media/characters/goddess-elizabeth/front.svg",
  8261. extra: 1800 / 1525,
  8262. bottom: 0.005
  8263. }
  8264. },
  8265. foot: {
  8266. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8267. name: "Foot",
  8268. image: {
  8269. source: "./media/characters/goddess-elizabeth/foot.svg"
  8270. }
  8271. },
  8272. mouth: {
  8273. height: math.unit(6, "feet"),
  8274. name: "Mouth",
  8275. image: {
  8276. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8277. }
  8278. },
  8279. },
  8280. [
  8281. {
  8282. name: "Micro",
  8283. height: math.unit(12, "feet")
  8284. },
  8285. {
  8286. name: "Normal",
  8287. height: math.unit(80, "miles"),
  8288. default: true
  8289. },
  8290. {
  8291. name: "Macro",
  8292. height: math.unit(15000, "parsecs")
  8293. },
  8294. ]
  8295. ))
  8296. characterMakers.push(() => makeCharacter(
  8297. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8298. {
  8299. front: {
  8300. height: math.unit(5 + 9 / 12, "feet"),
  8301. weight: math.unit(144, "lb"),
  8302. name: "Front",
  8303. image: {
  8304. source: "./media/characters/kara/front.svg"
  8305. }
  8306. },
  8307. feet: {
  8308. height: math.unit(6 / 6.765, "feet"),
  8309. name: "Kara's Feet",
  8310. rename: true,
  8311. image: {
  8312. source: "./media/characters/kara/feet.svg"
  8313. }
  8314. },
  8315. },
  8316. [
  8317. {
  8318. name: "Normal",
  8319. height: math.unit(5 + 9 / 12, "feet")
  8320. },
  8321. {
  8322. name: "Macro",
  8323. height: math.unit(174, "feet"),
  8324. default: true
  8325. },
  8326. ]
  8327. ))
  8328. characterMakers.push(() => makeCharacter(
  8329. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8330. {
  8331. front: {
  8332. height: math.unit(18, "feet"),
  8333. weight: math.unit(4050, "lb"),
  8334. name: "Front",
  8335. image: {
  8336. source: "./media/characters/tyrone/front.svg",
  8337. extra: 2405 / 2270,
  8338. bottom: 182 / 2587
  8339. }
  8340. },
  8341. },
  8342. [
  8343. {
  8344. name: "Normal",
  8345. height: math.unit(18, "feet"),
  8346. default: true
  8347. },
  8348. {
  8349. name: "Macro",
  8350. height: math.unit(300, "feet")
  8351. },
  8352. {
  8353. name: "Megamacro",
  8354. height: math.unit(15, "km")
  8355. },
  8356. {
  8357. name: "Gigamacro",
  8358. height: math.unit(500, "km")
  8359. },
  8360. {
  8361. name: "Teramacro",
  8362. height: math.unit(0.5, "gigameters")
  8363. },
  8364. {
  8365. name: "Omnimacro",
  8366. height: math.unit(1e252, "yottauniverse")
  8367. },
  8368. ]
  8369. ))
  8370. characterMakers.push(() => makeCharacter(
  8371. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8372. {
  8373. front: {
  8374. height: math.unit(7 + 8 / 12, "feet"),
  8375. weight: math.unit(120, "lb"),
  8376. name: "Front",
  8377. image: {
  8378. source: "./media/characters/danny/front.svg",
  8379. extra: 1490 / 1350
  8380. }
  8381. },
  8382. back: {
  8383. height: math.unit(7 + 8 / 12, "feet"),
  8384. weight: math.unit(120, "lb"),
  8385. name: "Back",
  8386. image: {
  8387. source: "./media/characters/danny/back.svg",
  8388. extra: 1490 / 1350
  8389. }
  8390. },
  8391. },
  8392. [
  8393. {
  8394. name: "Normal",
  8395. height: math.unit(7 + 8 / 12, "feet"),
  8396. default: true
  8397. },
  8398. ]
  8399. ))
  8400. characterMakers.push(() => makeCharacter(
  8401. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8402. {
  8403. front: {
  8404. height: math.unit(3.5, "inches"),
  8405. weight: math.unit(19, "grams"),
  8406. name: "Front",
  8407. image: {
  8408. source: "./media/characters/mallow/front.svg",
  8409. extra: 471 / 431
  8410. }
  8411. },
  8412. back: {
  8413. height: math.unit(3.5, "inches"),
  8414. weight: math.unit(19, "grams"),
  8415. name: "Back",
  8416. image: {
  8417. source: "./media/characters/mallow/back.svg",
  8418. extra: 471 / 431
  8419. }
  8420. },
  8421. },
  8422. [
  8423. {
  8424. name: "Normal",
  8425. height: math.unit(3.5, "inches"),
  8426. default: true
  8427. },
  8428. ]
  8429. ))
  8430. characterMakers.push(() => makeCharacter(
  8431. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8432. {
  8433. front: {
  8434. height: math.unit(9, "feet"),
  8435. weight: math.unit(230, "kg"),
  8436. name: "Front",
  8437. image: {
  8438. source: "./media/characters/starry-aqua/front.svg"
  8439. }
  8440. },
  8441. back: {
  8442. height: math.unit(9, "feet"),
  8443. weight: math.unit(230, "kg"),
  8444. name: "Back",
  8445. image: {
  8446. source: "./media/characters/starry-aqua/back.svg"
  8447. }
  8448. },
  8449. hand: {
  8450. height: math.unit(9 * 0.1168, "feet"),
  8451. name: "Hand",
  8452. image: {
  8453. source: "./media/characters/starry-aqua/hand.svg"
  8454. }
  8455. },
  8456. foot: {
  8457. height: math.unit(9 * 0.18, "feet"),
  8458. name: "Foot",
  8459. image: {
  8460. source: "./media/characters/starry-aqua/foot.svg"
  8461. }
  8462. }
  8463. },
  8464. [
  8465. {
  8466. name: "Micro",
  8467. height: math.unit(3, "inches")
  8468. },
  8469. {
  8470. name: "Normal",
  8471. height: math.unit(9, "feet")
  8472. },
  8473. {
  8474. name: "Macro",
  8475. height: math.unit(300, "feet"),
  8476. default: true
  8477. },
  8478. {
  8479. name: "Megamacro",
  8480. height: math.unit(3200, "feet")
  8481. }
  8482. ]
  8483. ))
  8484. characterMakers.push(() => makeCharacter(
  8485. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8486. {
  8487. front: {
  8488. height: math.unit(6, "feet"),
  8489. weight: math.unit(230, "lb"),
  8490. name: "Front",
  8491. image: {
  8492. source: "./media/characters/luka/front.svg",
  8493. extra: 1,
  8494. bottom: 0.025
  8495. }
  8496. },
  8497. },
  8498. [
  8499. {
  8500. name: "Normal",
  8501. height: math.unit(12 + 8 / 12, "feet"),
  8502. default: true
  8503. },
  8504. {
  8505. name: "Minimacro",
  8506. height: math.unit(20, "feet")
  8507. },
  8508. {
  8509. name: "Macro",
  8510. height: math.unit(250, "feet")
  8511. },
  8512. {
  8513. name: "Megamacro",
  8514. height: math.unit(5, "miles")
  8515. },
  8516. {
  8517. name: "Gigamacro",
  8518. height: math.unit(8000, "miles")
  8519. },
  8520. ]
  8521. ))
  8522. characterMakers.push(() => makeCharacter(
  8523. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8524. {
  8525. front: {
  8526. height: math.unit(6, "feet"),
  8527. weight: math.unit(150, "lb"),
  8528. name: "Front",
  8529. image: {
  8530. source: "./media/characters/natalie-nightring/front.svg",
  8531. extra: 1,
  8532. bottom: 0.06
  8533. }
  8534. },
  8535. },
  8536. [
  8537. {
  8538. name: "Uh Oh",
  8539. height: math.unit(0.1, "mm")
  8540. },
  8541. {
  8542. name: "Small",
  8543. height: math.unit(3, "inches")
  8544. },
  8545. {
  8546. name: "Human Scale",
  8547. height: math.unit(6, "feet")
  8548. },
  8549. {
  8550. name: "Librarian",
  8551. height: math.unit(50, "feet"),
  8552. default: true
  8553. },
  8554. {
  8555. name: "Immense",
  8556. height: math.unit(200, "miles")
  8557. },
  8558. ]
  8559. ))
  8560. characterMakers.push(() => makeCharacter(
  8561. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8562. {
  8563. front: {
  8564. height: math.unit(6, "feet"),
  8565. weight: math.unit(180, "lbs"),
  8566. name: "Front",
  8567. image: {
  8568. source: "./media/characters/danni-rosie/front.svg",
  8569. extra: 1260 / 1128,
  8570. bottom: 0.022
  8571. }
  8572. },
  8573. },
  8574. [
  8575. {
  8576. name: "Micro",
  8577. height: math.unit(2, "inches"),
  8578. default: true
  8579. },
  8580. ]
  8581. ))
  8582. characterMakers.push(() => makeCharacter(
  8583. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8584. {
  8585. front: {
  8586. height: math.unit(5 + 9 / 12, "feet"),
  8587. weight: math.unit(220, "lb"),
  8588. name: "Front",
  8589. image: {
  8590. source: "./media/characters/samantha-kruse/front.svg",
  8591. extra: (985 / 935),
  8592. bottom: 0.03
  8593. }
  8594. },
  8595. frontUndressed: {
  8596. height: math.unit(5 + 9 / 12, "feet"),
  8597. weight: math.unit(220, "lb"),
  8598. name: "Front (Undressed)",
  8599. image: {
  8600. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8601. extra: (973 / 923),
  8602. bottom: 0.025
  8603. }
  8604. },
  8605. fat: {
  8606. height: math.unit(5 + 9 / 12, "feet"),
  8607. weight: math.unit(900, "lb"),
  8608. name: "Front (Fat)",
  8609. image: {
  8610. source: "./media/characters/samantha-kruse/fat.svg",
  8611. extra: 2688 / 2561
  8612. }
  8613. },
  8614. },
  8615. [
  8616. {
  8617. name: "Normal",
  8618. height: math.unit(5 + 9 / 12, "feet"),
  8619. default: true
  8620. }
  8621. ]
  8622. ))
  8623. characterMakers.push(() => makeCharacter(
  8624. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8625. {
  8626. back: {
  8627. height: math.unit(5 + 4 / 12, "feet"),
  8628. weight: math.unit(4963, "lb"),
  8629. name: "Back",
  8630. image: {
  8631. source: "./media/characters/amelia-rosie/back.svg",
  8632. extra: 1113 / 963,
  8633. bottom: 0.01
  8634. }
  8635. },
  8636. },
  8637. [
  8638. {
  8639. name: "Level 0",
  8640. height: math.unit(5 + 4 / 12, "feet")
  8641. },
  8642. {
  8643. name: "Level 1",
  8644. height: math.unit(164597, "feet"),
  8645. default: true
  8646. },
  8647. {
  8648. name: "Level 2",
  8649. height: math.unit(956243, "miles")
  8650. },
  8651. {
  8652. name: "Level 3",
  8653. height: math.unit(29421709423, "miles")
  8654. },
  8655. {
  8656. name: "Level 4",
  8657. height: math.unit(154, "lightyears")
  8658. },
  8659. {
  8660. name: "Level 5",
  8661. height: math.unit(4738272, "lightyears")
  8662. },
  8663. {
  8664. name: "Level 6",
  8665. height: math.unit(145787152896, "lightyears")
  8666. },
  8667. ]
  8668. ))
  8669. characterMakers.push(() => makeCharacter(
  8670. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8671. {
  8672. front: {
  8673. height: math.unit(5 + 11 / 12, "feet"),
  8674. weight: math.unit(65, "kg"),
  8675. name: "Front",
  8676. image: {
  8677. source: "./media/characters/rook-kitara/front.svg",
  8678. extra: 1347 / 1274,
  8679. bottom: 0.005
  8680. }
  8681. },
  8682. },
  8683. [
  8684. {
  8685. name: "Totally Unfair",
  8686. height: math.unit(1.8, "mm")
  8687. },
  8688. {
  8689. name: "Lap Rookie",
  8690. height: math.unit(1.4, "feet")
  8691. },
  8692. {
  8693. name: "Normal",
  8694. height: math.unit(5 + 11 / 12, "feet"),
  8695. default: true
  8696. },
  8697. {
  8698. name: "How Did This Happen",
  8699. height: math.unit(80, "miles")
  8700. }
  8701. ]
  8702. ))
  8703. characterMakers.push(() => makeCharacter(
  8704. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8705. {
  8706. front: {
  8707. height: math.unit(7, "feet"),
  8708. weight: math.unit(300, "lb"),
  8709. name: "Front",
  8710. image: {
  8711. source: "./media/characters/pisces/front.svg",
  8712. extra: 2255 / 2115,
  8713. bottom: 0.03
  8714. }
  8715. },
  8716. back: {
  8717. height: math.unit(7, "feet"),
  8718. weight: math.unit(300, "lb"),
  8719. name: "Back",
  8720. image: {
  8721. source: "./media/characters/pisces/back.svg",
  8722. extra: 2146 / 2055,
  8723. bottom: 0.04
  8724. }
  8725. },
  8726. },
  8727. [
  8728. {
  8729. name: "Normal",
  8730. height: math.unit(7, "feet"),
  8731. default: true
  8732. },
  8733. {
  8734. name: "Swimming Pool",
  8735. height: math.unit(12.2, "meters")
  8736. },
  8737. {
  8738. name: "Olympic Swimming Pool",
  8739. height: math.unit(56.3, "meters")
  8740. },
  8741. {
  8742. name: "Lake Superior",
  8743. height: math.unit(93900, "meters")
  8744. },
  8745. {
  8746. name: "Mediterranean Sea",
  8747. height: math.unit(644457, "meters")
  8748. },
  8749. {
  8750. name: "World's Oceans",
  8751. height: math.unit(4567491, "meters")
  8752. },
  8753. ]
  8754. ))
  8755. characterMakers.push(() => makeCharacter(
  8756. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8757. {
  8758. front: {
  8759. height: math.unit(2.3, "meters"),
  8760. weight: math.unit(120, "kg"),
  8761. name: "Front",
  8762. image: {
  8763. source: "./media/characters/zelas/front.svg"
  8764. }
  8765. },
  8766. side: {
  8767. height: math.unit(2.3, "meters"),
  8768. weight: math.unit(120, "kg"),
  8769. name: "Side",
  8770. image: {
  8771. source: "./media/characters/zelas/side.svg"
  8772. }
  8773. },
  8774. back: {
  8775. height: math.unit(2.3, "meters"),
  8776. weight: math.unit(120, "kg"),
  8777. name: "Back",
  8778. image: {
  8779. source: "./media/characters/zelas/back.svg"
  8780. }
  8781. },
  8782. foot: {
  8783. height: math.unit(1.116, "feet"),
  8784. name: "Foot",
  8785. image: {
  8786. source: "./media/characters/zelas/foot.svg"
  8787. }
  8788. },
  8789. },
  8790. [
  8791. {
  8792. name: "Normal",
  8793. height: math.unit(2.3, "meters")
  8794. },
  8795. {
  8796. name: "Macro",
  8797. height: math.unit(30, "meters"),
  8798. default: true
  8799. },
  8800. ]
  8801. ))
  8802. characterMakers.push(() => makeCharacter(
  8803. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8804. {
  8805. front: {
  8806. height: math.unit(1, "inch"),
  8807. weight: math.unit(0.21, "grams"),
  8808. name: "Front",
  8809. image: {
  8810. source: "./media/characters/talbot/front.svg",
  8811. extra: 594 / 544
  8812. }
  8813. },
  8814. },
  8815. [
  8816. {
  8817. name: "Micro",
  8818. height: math.unit(1, "inch"),
  8819. default: true
  8820. },
  8821. ]
  8822. ))
  8823. characterMakers.push(() => makeCharacter(
  8824. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8825. {
  8826. front: {
  8827. height: math.unit(3 + 3 / 12, "feet"),
  8828. weight: math.unit(51.8, "lb"),
  8829. name: "Front",
  8830. image: {
  8831. source: "./media/characters/fliss/front.svg",
  8832. extra: 840 / 640
  8833. }
  8834. },
  8835. },
  8836. [
  8837. {
  8838. name: "Teeny Tiny",
  8839. height: math.unit(1, "mm")
  8840. },
  8841. {
  8842. name: "Small",
  8843. height: math.unit(1, "inch"),
  8844. default: true
  8845. },
  8846. {
  8847. name: "Standard Sylveon",
  8848. height: math.unit(3 + 3 / 12, "feet")
  8849. },
  8850. {
  8851. name: "Large Nuisance",
  8852. height: math.unit(33, "feet")
  8853. },
  8854. {
  8855. name: "City Filler",
  8856. height: math.unit(3000, "feet")
  8857. },
  8858. {
  8859. name: "New Horizon",
  8860. height: math.unit(6000, "miles")
  8861. },
  8862. ]
  8863. ))
  8864. characterMakers.push(() => makeCharacter(
  8865. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8866. {
  8867. front: {
  8868. height: math.unit(5, "cm"),
  8869. weight: math.unit(1.94, "g"),
  8870. name: "Front",
  8871. image: {
  8872. source: "./media/characters/fleta/front.svg",
  8873. extra: 835 / 803
  8874. }
  8875. },
  8876. back: {
  8877. height: math.unit(5, "cm"),
  8878. weight: math.unit(1.94, "g"),
  8879. name: "Back",
  8880. image: {
  8881. source: "./media/characters/fleta/back.svg",
  8882. extra: 835 / 803
  8883. }
  8884. },
  8885. },
  8886. [
  8887. {
  8888. name: "Micro",
  8889. height: math.unit(5, "cm"),
  8890. default: true
  8891. },
  8892. ]
  8893. ))
  8894. characterMakers.push(() => makeCharacter(
  8895. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8896. {
  8897. front: {
  8898. height: math.unit(6, "feet"),
  8899. weight: math.unit(225, "lb"),
  8900. name: "Front",
  8901. image: {
  8902. source: "./media/characters/dominic/front.svg",
  8903. extra: 1770 / 1620,
  8904. bottom: 0.025
  8905. }
  8906. },
  8907. back: {
  8908. height: math.unit(6, "feet"),
  8909. weight: math.unit(225, "lb"),
  8910. name: "Back",
  8911. image: {
  8912. source: "./media/characters/dominic/back.svg",
  8913. extra: 1745 / 1620,
  8914. bottom: 0.065
  8915. }
  8916. },
  8917. },
  8918. [
  8919. {
  8920. name: "Nano",
  8921. height: math.unit(0.1, "mm")
  8922. },
  8923. {
  8924. name: "Micro-",
  8925. height: math.unit(1, "mm")
  8926. },
  8927. {
  8928. name: "Micro",
  8929. height: math.unit(4, "inches")
  8930. },
  8931. {
  8932. name: "Normal",
  8933. height: math.unit(6 + 4 / 12, "feet"),
  8934. default: true
  8935. },
  8936. {
  8937. name: "Macro",
  8938. height: math.unit(115, "feet")
  8939. },
  8940. {
  8941. name: "Macro+",
  8942. height: math.unit(955, "feet")
  8943. },
  8944. {
  8945. name: "Megamacro",
  8946. height: math.unit(8990, "feet")
  8947. },
  8948. {
  8949. name: "Gigmacro",
  8950. height: math.unit(9310, "miles")
  8951. },
  8952. {
  8953. name: "Teramacro",
  8954. height: math.unit(1567005010, "miles")
  8955. },
  8956. {
  8957. name: "Examacro",
  8958. height: math.unit(1425, "parsecs")
  8959. },
  8960. ]
  8961. ))
  8962. characterMakers.push(() => makeCharacter(
  8963. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8964. {
  8965. front: {
  8966. height: math.unit(400, "feet"),
  8967. weight: math.unit(44444444, "lb"),
  8968. name: "Front",
  8969. image: {
  8970. source: "./media/characters/major-colonel/front.svg"
  8971. }
  8972. },
  8973. back: {
  8974. height: math.unit(400, "feet"),
  8975. weight: math.unit(44444444, "lb"),
  8976. name: "Back",
  8977. image: {
  8978. source: "./media/characters/major-colonel/back.svg"
  8979. }
  8980. },
  8981. },
  8982. [
  8983. {
  8984. name: "Macro",
  8985. height: math.unit(400, "feet"),
  8986. default: true
  8987. },
  8988. ]
  8989. ))
  8990. characterMakers.push(() => makeCharacter(
  8991. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8992. {
  8993. catFront: {
  8994. height: math.unit(6, "feet"),
  8995. weight: math.unit(120, "lb"),
  8996. name: "Front (Cat Side)",
  8997. image: {
  8998. source: "./media/characters/axel-lycan/cat-front.svg",
  8999. extra: 430 / 402,
  9000. bottom: 43 / 472.35
  9001. }
  9002. },
  9003. catBack: {
  9004. height: math.unit(6, "feet"),
  9005. weight: math.unit(120, "lb"),
  9006. name: "Back (Cat Side)",
  9007. image: {
  9008. source: "./media/characters/axel-lycan/cat-back.svg",
  9009. extra: 447 / 419,
  9010. bottom: 23.3 / 469
  9011. }
  9012. },
  9013. wolfFront: {
  9014. height: math.unit(6, "feet"),
  9015. weight: math.unit(120, "lb"),
  9016. name: "Front (Wolf Side)",
  9017. image: {
  9018. source: "./media/characters/axel-lycan/wolf-front.svg",
  9019. extra: 485 / 456,
  9020. bottom: 19 / 504
  9021. }
  9022. },
  9023. wolfBack: {
  9024. height: math.unit(6, "feet"),
  9025. weight: math.unit(120, "lb"),
  9026. name: "Back (Wolf Side)",
  9027. image: {
  9028. source: "./media/characters/axel-lycan/wolf-back.svg",
  9029. extra: 475 / 438,
  9030. bottom: 39.2 / 514
  9031. }
  9032. },
  9033. },
  9034. [
  9035. {
  9036. name: "Macro",
  9037. height: math.unit(1, "km"),
  9038. default: true
  9039. },
  9040. ]
  9041. ))
  9042. characterMakers.push(() => makeCharacter(
  9043. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9044. {
  9045. front: {
  9046. height: math.unit(5 + 9 / 12, "feet"),
  9047. weight: math.unit(175, "lb"),
  9048. name: "Front",
  9049. image: {
  9050. source: "./media/characters/vanrel-hyena/front.svg",
  9051. extra: 1086 / 1010,
  9052. bottom: 0.04
  9053. }
  9054. },
  9055. },
  9056. [
  9057. {
  9058. name: "Normal",
  9059. height: math.unit(5 + 9 / 12, "feet"),
  9060. default: true
  9061. },
  9062. ]
  9063. ))
  9064. characterMakers.push(() => makeCharacter(
  9065. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9066. {
  9067. front: {
  9068. height: math.unit(6, "feet"),
  9069. weight: math.unit(103, "lb"),
  9070. name: "Front",
  9071. image: {
  9072. source: "./media/characters/abbott-absol/front.svg",
  9073. extra: 2010 / 1842
  9074. }
  9075. },
  9076. },
  9077. [
  9078. {
  9079. name: "Megamicro",
  9080. height: math.unit(0.1, "mm")
  9081. },
  9082. {
  9083. name: "Micro",
  9084. height: math.unit(1, "inch")
  9085. },
  9086. {
  9087. name: "Normal",
  9088. height: math.unit(6, "feet"),
  9089. default: true
  9090. },
  9091. ]
  9092. ))
  9093. characterMakers.push(() => makeCharacter(
  9094. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9095. {
  9096. front: {
  9097. height: math.unit(6, "feet"),
  9098. weight: math.unit(264, "lb"),
  9099. name: "Front",
  9100. image: {
  9101. source: "./media/characters/hector/front.svg",
  9102. extra: 2280 / 2130,
  9103. bottom: 0.07
  9104. }
  9105. },
  9106. },
  9107. [
  9108. {
  9109. name: "Normal",
  9110. height: math.unit(12.25, "foot"),
  9111. default: true
  9112. },
  9113. {
  9114. name: "Macro",
  9115. height: math.unit(160, "feet")
  9116. },
  9117. ]
  9118. ))
  9119. characterMakers.push(() => makeCharacter(
  9120. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9121. {
  9122. front: {
  9123. height: math.unit(6, "feet"),
  9124. weight: math.unit(150, "lb"),
  9125. name: "Front",
  9126. image: {
  9127. source: "./media/characters/sal/front.svg",
  9128. extra: 1846 / 1699,
  9129. bottom: 0.04
  9130. }
  9131. },
  9132. },
  9133. [
  9134. {
  9135. name: "Megamacro",
  9136. height: math.unit(10, "miles"),
  9137. default: true
  9138. },
  9139. ]
  9140. ))
  9141. characterMakers.push(() => makeCharacter(
  9142. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9143. {
  9144. front: {
  9145. height: math.unit(3, "meters"),
  9146. weight: math.unit(450, "kg"),
  9147. name: "front",
  9148. image: {
  9149. source: "./media/characters/ranger/front.svg",
  9150. extra: 2401 / 2243,
  9151. bottom: 0.05
  9152. }
  9153. },
  9154. },
  9155. [
  9156. {
  9157. name: "Normal",
  9158. height: math.unit(3, "meters"),
  9159. default: true
  9160. },
  9161. ]
  9162. ))
  9163. characterMakers.push(() => makeCharacter(
  9164. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9165. {
  9166. front: {
  9167. height: math.unit(14, "feet"),
  9168. weight: math.unit(800, "kg"),
  9169. name: "Front",
  9170. image: {
  9171. source: "./media/characters/theresa/front.svg",
  9172. extra: 3575 / 3346,
  9173. bottom: 0.03
  9174. }
  9175. },
  9176. },
  9177. [
  9178. {
  9179. name: "Normal",
  9180. height: math.unit(14, "feet"),
  9181. default: true
  9182. },
  9183. ]
  9184. ))
  9185. characterMakers.push(() => makeCharacter(
  9186. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9187. {
  9188. front: {
  9189. height: math.unit(6, "feet"),
  9190. weight: math.unit(3, "kg"),
  9191. name: "Front",
  9192. image: {
  9193. source: "./media/characters/ine/front.svg",
  9194. extra: 678 / 539,
  9195. bottom: 0.023
  9196. }
  9197. },
  9198. },
  9199. [
  9200. {
  9201. name: "Normal",
  9202. height: math.unit(2.265, "feet"),
  9203. default: true
  9204. },
  9205. ]
  9206. ))
  9207. characterMakers.push(() => makeCharacter(
  9208. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9209. {
  9210. front: {
  9211. height: math.unit(5, "feet"),
  9212. weight: math.unit(30, "kg"),
  9213. name: "Front",
  9214. image: {
  9215. source: "./media/characters/vial/front.svg",
  9216. extra: 1365 / 1277,
  9217. bottom: 0.04
  9218. }
  9219. },
  9220. },
  9221. [
  9222. {
  9223. name: "Normal",
  9224. height: math.unit(5, "feet"),
  9225. default: true
  9226. },
  9227. ]
  9228. ))
  9229. characterMakers.push(() => makeCharacter(
  9230. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9231. {
  9232. side: {
  9233. height: math.unit(3.4, "meters"),
  9234. weight: math.unit(1000, "lb"),
  9235. name: "Side",
  9236. image: {
  9237. source: "./media/characters/rovoska/side.svg",
  9238. extra: 4403 / 1515
  9239. }
  9240. },
  9241. },
  9242. [
  9243. {
  9244. name: "Normal",
  9245. height: math.unit(3.4, "meters"),
  9246. default: true
  9247. },
  9248. ]
  9249. ))
  9250. characterMakers.push(() => makeCharacter(
  9251. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9252. {
  9253. front: {
  9254. height: math.unit(8, "feet"),
  9255. weight: math.unit(315, "lb"),
  9256. name: "Front",
  9257. image: {
  9258. source: "./media/characters/gunner-rotthbauer/front.svg"
  9259. }
  9260. },
  9261. back: {
  9262. height: math.unit(8, "feet"),
  9263. weight: math.unit(315, "lb"),
  9264. name: "Back",
  9265. image: {
  9266. source: "./media/characters/gunner-rotthbauer/back.svg"
  9267. }
  9268. },
  9269. },
  9270. [
  9271. {
  9272. name: "Micro",
  9273. height: math.unit(3.5, "inches")
  9274. },
  9275. {
  9276. name: "Normal",
  9277. height: math.unit(8, "feet"),
  9278. default: true
  9279. },
  9280. {
  9281. name: "Macro",
  9282. height: math.unit(250, "feet")
  9283. },
  9284. {
  9285. name: "Megamacro",
  9286. height: math.unit(1, "AU")
  9287. },
  9288. ]
  9289. ))
  9290. characterMakers.push(() => makeCharacter(
  9291. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9292. {
  9293. front: {
  9294. height: math.unit(5 + 5 / 12, "feet"),
  9295. weight: math.unit(140, "lb"),
  9296. name: "Front",
  9297. image: {
  9298. source: "./media/characters/allatia/front.svg",
  9299. extra: 1227 / 1180,
  9300. bottom: 0.027
  9301. }
  9302. },
  9303. },
  9304. [
  9305. {
  9306. name: "Normal",
  9307. height: math.unit(5 + 5 / 12, "feet")
  9308. },
  9309. {
  9310. name: "Macro",
  9311. height: math.unit(250, "feet"),
  9312. default: true
  9313. },
  9314. {
  9315. name: "Megamacro",
  9316. height: math.unit(8, "miles")
  9317. }
  9318. ]
  9319. ))
  9320. characterMakers.push(() => makeCharacter(
  9321. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9322. {
  9323. front: {
  9324. height: math.unit(6, "feet"),
  9325. weight: math.unit(120, "lb"),
  9326. name: "Front",
  9327. image: {
  9328. source: "./media/characters/tene/front.svg",
  9329. extra: 1728 / 1578,
  9330. bottom: 0.022
  9331. }
  9332. },
  9333. stomping: {
  9334. height: math.unit(2.025, "meters"),
  9335. weight: math.unit(120, "lb"),
  9336. name: "Stomping",
  9337. image: {
  9338. source: "./media/characters/tene/stomping.svg",
  9339. extra: 938 / 873,
  9340. bottom: 0.01
  9341. }
  9342. },
  9343. sitting: {
  9344. height: math.unit(1, "meter"),
  9345. weight: math.unit(120, "lb"),
  9346. name: "Sitting",
  9347. image: {
  9348. source: "./media/characters/tene/sitting.svg",
  9349. extra: 437 / 415,
  9350. bottom: 0.1
  9351. }
  9352. },
  9353. feral: {
  9354. height: math.unit(3.9, "feet"),
  9355. weight: math.unit(250, "lb"),
  9356. name: "Feral",
  9357. image: {
  9358. source: "./media/characters/tene/feral.svg",
  9359. extra: 717 / 458,
  9360. bottom: 0.179
  9361. }
  9362. },
  9363. },
  9364. [
  9365. {
  9366. name: "Normal",
  9367. height: math.unit(6, "feet")
  9368. },
  9369. {
  9370. name: "Macro",
  9371. height: math.unit(300, "feet"),
  9372. default: true
  9373. },
  9374. {
  9375. name: "Megamacro",
  9376. height: math.unit(5, "miles")
  9377. },
  9378. ]
  9379. ))
  9380. characterMakers.push(() => makeCharacter(
  9381. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9382. {
  9383. side: {
  9384. height: math.unit(6, "feet"),
  9385. name: "Side",
  9386. image: {
  9387. source: "./media/characters/evander/side.svg",
  9388. extra: 877 / 477
  9389. }
  9390. },
  9391. },
  9392. [
  9393. {
  9394. name: "Normal",
  9395. height: math.unit(0.83, "meters"),
  9396. default: true
  9397. },
  9398. ]
  9399. ))
  9400. characterMakers.push(() => makeCharacter(
  9401. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9402. {
  9403. front: {
  9404. height: math.unit(12, "feet"),
  9405. weight: math.unit(1000, "lb"),
  9406. name: "Front",
  9407. image: {
  9408. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9409. extra: 1762 / 1611
  9410. }
  9411. },
  9412. back: {
  9413. height: math.unit(12, "feet"),
  9414. weight: math.unit(1000, "lb"),
  9415. name: "Back",
  9416. image: {
  9417. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9418. extra: 1762 / 1611
  9419. }
  9420. },
  9421. },
  9422. [
  9423. {
  9424. name: "Normal",
  9425. height: math.unit(12, "feet"),
  9426. default: true
  9427. },
  9428. {
  9429. name: "Kaiju",
  9430. height: math.unit(150, "feet")
  9431. },
  9432. ]
  9433. ))
  9434. characterMakers.push(() => makeCharacter(
  9435. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9436. {
  9437. front: {
  9438. height: math.unit(6, "feet"),
  9439. weight: math.unit(150, "lb"),
  9440. name: "Front",
  9441. image: {
  9442. source: "./media/characters/zero-alurus/front.svg"
  9443. }
  9444. },
  9445. back: {
  9446. height: math.unit(6, "feet"),
  9447. weight: math.unit(150, "lb"),
  9448. name: "Back",
  9449. image: {
  9450. source: "./media/characters/zero-alurus/back.svg"
  9451. }
  9452. },
  9453. },
  9454. [
  9455. {
  9456. name: "Normal",
  9457. height: math.unit(5 + 10 / 12, "feet")
  9458. },
  9459. {
  9460. name: "Macro",
  9461. height: math.unit(60, "feet"),
  9462. default: true
  9463. },
  9464. {
  9465. name: "Macro+",
  9466. height: math.unit(450, "feet")
  9467. },
  9468. ]
  9469. ))
  9470. characterMakers.push(() => makeCharacter(
  9471. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9472. {
  9473. front: {
  9474. height: math.unit(6, "feet"),
  9475. weight: math.unit(200, "lb"),
  9476. name: "Front",
  9477. image: {
  9478. source: "./media/characters/mega-shi/front.svg",
  9479. extra: 1279 / 1250,
  9480. bottom: 0.02
  9481. }
  9482. },
  9483. back: {
  9484. height: math.unit(6, "feet"),
  9485. weight: math.unit(200, "lb"),
  9486. name: "Back",
  9487. image: {
  9488. source: "./media/characters/mega-shi/back.svg",
  9489. extra: 1279 / 1250,
  9490. bottom: 0.02
  9491. }
  9492. },
  9493. },
  9494. [
  9495. {
  9496. name: "Micro",
  9497. height: math.unit(16 + 6 / 12, "feet")
  9498. },
  9499. {
  9500. name: "Third Dimension",
  9501. height: math.unit(40, "meters")
  9502. },
  9503. {
  9504. name: "Normal",
  9505. height: math.unit(660, "feet"),
  9506. default: true
  9507. },
  9508. {
  9509. name: "Megamacro",
  9510. height: math.unit(10, "miles")
  9511. },
  9512. {
  9513. name: "Planetary Launch",
  9514. height: math.unit(500, "miles")
  9515. },
  9516. {
  9517. name: "Interstellar",
  9518. height: math.unit(1e9, "miles")
  9519. },
  9520. {
  9521. name: "Leaving the Universe",
  9522. height: math.unit(1, "gigaparsec")
  9523. },
  9524. {
  9525. name: "Travelling Universes",
  9526. height: math.unit(30e15, "parsecs")
  9527. },
  9528. ]
  9529. ))
  9530. characterMakers.push(() => makeCharacter(
  9531. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9532. {
  9533. front: {
  9534. height: math.unit(6, "feet"),
  9535. weight: math.unit(150, "lb"),
  9536. name: "Front",
  9537. image: {
  9538. source: "./media/characters/odyssey/front.svg",
  9539. extra: 1782 / 1582,
  9540. bottom: 0.01
  9541. }
  9542. },
  9543. side: {
  9544. height: math.unit(5.7, "feet"),
  9545. weight: math.unit(140, "lb"),
  9546. name: "Side",
  9547. image: {
  9548. source: "./media/characters/odyssey/side.svg",
  9549. extra: 6462 / 5700
  9550. }
  9551. },
  9552. },
  9553. [
  9554. {
  9555. name: "Normal",
  9556. height: math.unit(5 + 4 / 12, "feet")
  9557. },
  9558. {
  9559. name: "Macro",
  9560. height: math.unit(1, "km")
  9561. },
  9562. {
  9563. name: "Megamacro",
  9564. height: math.unit(3000, "km")
  9565. },
  9566. {
  9567. name: "Gigamacro",
  9568. height: math.unit(1, "AU"),
  9569. default: true
  9570. },
  9571. {
  9572. name: "Omniversal",
  9573. height: math.unit(100e14, "lightyears")
  9574. },
  9575. ]
  9576. ))
  9577. characterMakers.push(() => makeCharacter(
  9578. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9579. {
  9580. front: {
  9581. height: math.unit(6, "feet"),
  9582. weight: math.unit(300, "lb"),
  9583. name: "Front",
  9584. image: {
  9585. source: "./media/characters/mekuto/front.svg",
  9586. extra: 921 / 832,
  9587. bottom: 0.03
  9588. }
  9589. },
  9590. hand: {
  9591. height: math.unit(6 / 10.24, "feet"),
  9592. name: "Hand",
  9593. image: {
  9594. source: "./media/characters/mekuto/hand.svg"
  9595. }
  9596. },
  9597. foot: {
  9598. height: math.unit(6 / 5.05, "feet"),
  9599. name: "Foot",
  9600. image: {
  9601. source: "./media/characters/mekuto/foot.svg"
  9602. }
  9603. },
  9604. },
  9605. [
  9606. {
  9607. name: "Minimicro",
  9608. height: math.unit(0.2, "inches")
  9609. },
  9610. {
  9611. name: "Micro",
  9612. height: math.unit(1.5, "inches")
  9613. },
  9614. {
  9615. name: "Normal",
  9616. height: math.unit(5 + 11 / 12, "feet"),
  9617. default: true
  9618. },
  9619. {
  9620. name: "Minimacro",
  9621. height: math.unit(17 + 9 / 12, "feet")
  9622. },
  9623. {
  9624. name: "Macro",
  9625. height: math.unit(177.5, "feet")
  9626. },
  9627. {
  9628. name: "Megamacro",
  9629. height: math.unit(152, "miles")
  9630. },
  9631. ]
  9632. ))
  9633. characterMakers.push(() => makeCharacter(
  9634. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9635. {
  9636. front: {
  9637. height: math.unit(6.5, "inches"),
  9638. weight: math.unit(13, "oz"),
  9639. name: "Front",
  9640. image: {
  9641. source: "./media/characters/dafydd-tomos/front.svg",
  9642. extra: 2990 / 2603,
  9643. bottom: 0.03
  9644. }
  9645. },
  9646. },
  9647. [
  9648. {
  9649. name: "Micro",
  9650. height: math.unit(6.5, "inches"),
  9651. default: true
  9652. },
  9653. ]
  9654. ))
  9655. characterMakers.push(() => makeCharacter(
  9656. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9657. {
  9658. front: {
  9659. height: math.unit(6, "feet"),
  9660. weight: math.unit(150, "lb"),
  9661. name: "Front",
  9662. image: {
  9663. source: "./media/characters/splinter/front.svg",
  9664. extra: 2990 / 2882,
  9665. bottom: 0.04
  9666. }
  9667. },
  9668. back: {
  9669. height: math.unit(6, "feet"),
  9670. weight: math.unit(150, "lb"),
  9671. name: "Back",
  9672. image: {
  9673. source: "./media/characters/splinter/back.svg",
  9674. extra: 2990 / 2882,
  9675. bottom: 0.04
  9676. }
  9677. },
  9678. },
  9679. [
  9680. {
  9681. name: "Normal",
  9682. height: math.unit(6, "feet")
  9683. },
  9684. {
  9685. name: "Macro",
  9686. height: math.unit(230, "meters"),
  9687. default: true
  9688. },
  9689. ]
  9690. ))
  9691. characterMakers.push(() => makeCharacter(
  9692. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9693. {
  9694. front: {
  9695. height: math.unit(4 + 10 / 12, "feet"),
  9696. weight: math.unit(480, "lb"),
  9697. name: "Front",
  9698. image: {
  9699. source: "./media/characters/snow-gabumon/front.svg",
  9700. extra: 1140 / 963,
  9701. bottom: 0.058
  9702. }
  9703. },
  9704. back: {
  9705. height: math.unit(4 + 10 / 12, "feet"),
  9706. weight: math.unit(480, "lb"),
  9707. name: "Back",
  9708. image: {
  9709. source: "./media/characters/snow-gabumon/back.svg",
  9710. extra: 1115 / 962,
  9711. bottom: 0.041
  9712. }
  9713. },
  9714. frontUndresed: {
  9715. height: math.unit(4 + 10 / 12, "feet"),
  9716. weight: math.unit(480, "lb"),
  9717. name: "Front (Undressed)",
  9718. image: {
  9719. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9720. extra: 1061 / 960,
  9721. bottom: 0.045
  9722. }
  9723. },
  9724. },
  9725. [
  9726. {
  9727. name: "Micro",
  9728. height: math.unit(1, "inch")
  9729. },
  9730. {
  9731. name: "Normal",
  9732. height: math.unit(4 + 10 / 12, "feet"),
  9733. default: true
  9734. },
  9735. {
  9736. name: "Macro",
  9737. height: math.unit(200, "feet")
  9738. },
  9739. {
  9740. name: "Megamacro",
  9741. height: math.unit(120, "miles")
  9742. },
  9743. {
  9744. name: "Gigamacro",
  9745. height: math.unit(9800, "miles")
  9746. },
  9747. ]
  9748. ))
  9749. characterMakers.push(() => makeCharacter(
  9750. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9751. {
  9752. front: {
  9753. height: math.unit(1.7, "meters"),
  9754. weight: math.unit(140, "lb"),
  9755. name: "Front",
  9756. image: {
  9757. source: "./media/characters/moody/front.svg",
  9758. extra: 3226 / 3007,
  9759. bottom: 0.087
  9760. }
  9761. },
  9762. },
  9763. [
  9764. {
  9765. name: "Micro",
  9766. height: math.unit(1, "mm")
  9767. },
  9768. {
  9769. name: "Normal",
  9770. height: math.unit(1.7, "meters"),
  9771. default: true
  9772. },
  9773. {
  9774. name: "Macro",
  9775. height: math.unit(80, "meters")
  9776. },
  9777. {
  9778. name: "Macro+",
  9779. height: math.unit(500, "meters")
  9780. },
  9781. ]
  9782. ))
  9783. characterMakers.push(() => makeCharacter(
  9784. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9785. {
  9786. front: {
  9787. height: math.unit(6, "feet"),
  9788. weight: math.unit(150, "lb"),
  9789. name: "Front",
  9790. image: {
  9791. source: "./media/characters/zyas/front.svg",
  9792. extra: 1180 / 1120,
  9793. bottom: 0.045
  9794. }
  9795. },
  9796. },
  9797. [
  9798. {
  9799. name: "Normal",
  9800. height: math.unit(10, "feet"),
  9801. default: true
  9802. },
  9803. {
  9804. name: "Macro",
  9805. height: math.unit(500, "feet")
  9806. },
  9807. {
  9808. name: "Megamacro",
  9809. height: math.unit(5, "miles")
  9810. },
  9811. {
  9812. name: "Teramacro",
  9813. height: math.unit(150000, "miles")
  9814. },
  9815. ]
  9816. ))
  9817. characterMakers.push(() => makeCharacter(
  9818. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9819. {
  9820. front: {
  9821. height: math.unit(6, "feet"),
  9822. weight: math.unit(150, "lb"),
  9823. name: "Front",
  9824. image: {
  9825. source: "./media/characters/cuon/front.svg",
  9826. extra: 1390 / 1320,
  9827. bottom: 0.008
  9828. }
  9829. },
  9830. },
  9831. [
  9832. {
  9833. name: "Micro",
  9834. height: math.unit(3, "inches")
  9835. },
  9836. {
  9837. name: "Normal",
  9838. height: math.unit(18 + 9 / 12, "feet"),
  9839. default: true
  9840. },
  9841. {
  9842. name: "Macro",
  9843. height: math.unit(360, "feet")
  9844. },
  9845. {
  9846. name: "Megamacro",
  9847. height: math.unit(360, "miles")
  9848. },
  9849. ]
  9850. ))
  9851. characterMakers.push(() => makeCharacter(
  9852. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9853. {
  9854. front: {
  9855. height: math.unit(2.4, "meters"),
  9856. weight: math.unit(70, "kg"),
  9857. name: "Front",
  9858. image: {
  9859. source: "./media/characters/nyanuxk/front.svg",
  9860. extra: 1172 / 1084,
  9861. bottom: 0.065
  9862. }
  9863. },
  9864. side: {
  9865. height: math.unit(2.4, "meters"),
  9866. weight: math.unit(70, "kg"),
  9867. name: "Side",
  9868. image: {
  9869. source: "./media/characters/nyanuxk/side.svg",
  9870. extra: 1190 / 1132,
  9871. bottom: 0.007
  9872. }
  9873. },
  9874. back: {
  9875. height: math.unit(2.4, "meters"),
  9876. weight: math.unit(70, "kg"),
  9877. name: "Back",
  9878. image: {
  9879. source: "./media/characters/nyanuxk/back.svg",
  9880. extra: 1200 / 1141,
  9881. bottom: 0.015
  9882. }
  9883. },
  9884. foot: {
  9885. height: math.unit(0.52, "meters"),
  9886. name: "Foot",
  9887. image: {
  9888. source: "./media/characters/nyanuxk/foot.svg"
  9889. }
  9890. },
  9891. },
  9892. [
  9893. {
  9894. name: "Micro",
  9895. height: math.unit(2, "cm")
  9896. },
  9897. {
  9898. name: "Normal",
  9899. height: math.unit(2.4, "meters"),
  9900. default: true
  9901. },
  9902. {
  9903. name: "Smaller Macro",
  9904. height: math.unit(120, "meters")
  9905. },
  9906. {
  9907. name: "Bigger Macro",
  9908. height: math.unit(1.2, "km")
  9909. },
  9910. {
  9911. name: "Megamacro",
  9912. height: math.unit(15, "kilometers")
  9913. },
  9914. {
  9915. name: "Gigamacro",
  9916. height: math.unit(2000, "km")
  9917. },
  9918. {
  9919. name: "Teramacro",
  9920. height: math.unit(500000, "km")
  9921. },
  9922. ]
  9923. ))
  9924. characterMakers.push(() => makeCharacter(
  9925. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9926. {
  9927. side: {
  9928. height: math.unit(6, "feet"),
  9929. name: "Side",
  9930. image: {
  9931. source: "./media/characters/ailbhe/side.svg",
  9932. extra: 757 / 464,
  9933. bottom: 0.041
  9934. }
  9935. },
  9936. },
  9937. [
  9938. {
  9939. name: "Normal",
  9940. height: math.unit(1.07, "meters"),
  9941. default: true
  9942. },
  9943. ]
  9944. ))
  9945. characterMakers.push(() => makeCharacter(
  9946. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9947. {
  9948. front: {
  9949. height: math.unit(6, "feet"),
  9950. weight: math.unit(120, "kg"),
  9951. name: "Front",
  9952. image: {
  9953. source: "./media/characters/zevulfius/front.svg",
  9954. extra: 965 / 903
  9955. }
  9956. },
  9957. side: {
  9958. height: math.unit(6, "feet"),
  9959. weight: math.unit(120, "kg"),
  9960. name: "Side",
  9961. image: {
  9962. source: "./media/characters/zevulfius/side.svg",
  9963. extra: 939 / 900
  9964. }
  9965. },
  9966. back: {
  9967. height: math.unit(6, "feet"),
  9968. weight: math.unit(120, "kg"),
  9969. name: "Back",
  9970. image: {
  9971. source: "./media/characters/zevulfius/back.svg",
  9972. extra: 918 / 854,
  9973. bottom: 0.005
  9974. }
  9975. },
  9976. foot: {
  9977. height: math.unit(6 / 3.72, "feet"),
  9978. name: "Foot",
  9979. image: {
  9980. source: "./media/characters/zevulfius/foot.svg"
  9981. }
  9982. },
  9983. },
  9984. [
  9985. {
  9986. name: "Macro",
  9987. height: math.unit(750, "meters")
  9988. },
  9989. {
  9990. name: "Megamacro",
  9991. height: math.unit(20, "km"),
  9992. default: true
  9993. },
  9994. {
  9995. name: "Gigamacro",
  9996. height: math.unit(2000, "km")
  9997. },
  9998. {
  9999. name: "Teramacro",
  10000. height: math.unit(250000, "km")
  10001. },
  10002. ]
  10003. ))
  10004. characterMakers.push(() => makeCharacter(
  10005. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10006. {
  10007. front: {
  10008. height: math.unit(100, "feet"),
  10009. weight: math.unit(350, "kg"),
  10010. name: "Front",
  10011. image: {
  10012. source: "./media/characters/rikes/front.svg",
  10013. extra: 1565 / 1483,
  10014. bottom: 0.017
  10015. }
  10016. },
  10017. },
  10018. [
  10019. {
  10020. name: "Macro",
  10021. height: math.unit(100, "feet"),
  10022. default: true
  10023. },
  10024. ]
  10025. ))
  10026. characterMakers.push(() => makeCharacter(
  10027. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10028. {
  10029. anthro: {
  10030. height: math.unit(8, "feet"),
  10031. weight: math.unit(120, "kg"),
  10032. name: "Anthro",
  10033. image: {
  10034. source: "./media/characters/adam-silver-mane/anthro.svg",
  10035. extra: 5743 / 5339,
  10036. bottom: 0.07
  10037. }
  10038. },
  10039. taur: {
  10040. height: math.unit(16, "feet"),
  10041. weight: math.unit(1500, "kg"),
  10042. name: "Taur",
  10043. image: {
  10044. source: "./media/characters/adam-silver-mane/taur.svg",
  10045. extra: 1713 / 1571,
  10046. bottom: 0.01
  10047. }
  10048. },
  10049. },
  10050. [
  10051. {
  10052. name: "Normal",
  10053. height: math.unit(8, "feet")
  10054. },
  10055. {
  10056. name: "Minimacro",
  10057. height: math.unit(80, "feet")
  10058. },
  10059. {
  10060. name: "Macro",
  10061. height: math.unit(800, "feet"),
  10062. default: true
  10063. },
  10064. {
  10065. name: "Megamacro",
  10066. height: math.unit(8000, "feet")
  10067. },
  10068. {
  10069. name: "Gigamacro",
  10070. height: math.unit(800, "miles")
  10071. },
  10072. {
  10073. name: "Teramacro",
  10074. height: math.unit(80000, "miles")
  10075. },
  10076. {
  10077. name: "Celestial",
  10078. height: math.unit(8e6, "miles")
  10079. },
  10080. {
  10081. name: "Star Dragon",
  10082. height: math.unit(800000, "parsecs")
  10083. },
  10084. {
  10085. name: "Godly",
  10086. height: math.unit(800, "teraparsecs")
  10087. },
  10088. ]
  10089. ))
  10090. characterMakers.push(() => makeCharacter(
  10091. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10092. {
  10093. front: {
  10094. height: math.unit(6, "feet"),
  10095. weight: math.unit(150, "lb"),
  10096. name: "Front",
  10097. image: {
  10098. source: "./media/characters/ky'owin/front.svg",
  10099. extra: 3888 / 3068,
  10100. bottom: 0.015
  10101. }
  10102. },
  10103. },
  10104. [
  10105. {
  10106. name: "Normal",
  10107. height: math.unit(6 + 8 / 12, "feet")
  10108. },
  10109. {
  10110. name: "Large",
  10111. height: math.unit(68, "feet")
  10112. },
  10113. {
  10114. name: "Macro",
  10115. height: math.unit(132, "feet")
  10116. },
  10117. {
  10118. name: "Macro+",
  10119. height: math.unit(340, "feet")
  10120. },
  10121. {
  10122. name: "Macro++",
  10123. height: math.unit(680, "feet"),
  10124. default: true
  10125. },
  10126. {
  10127. name: "Megamacro",
  10128. height: math.unit(1, "mile")
  10129. },
  10130. {
  10131. name: "Megamacro+",
  10132. height: math.unit(10, "miles")
  10133. },
  10134. ]
  10135. ))
  10136. characterMakers.push(() => makeCharacter(
  10137. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10138. {
  10139. front: {
  10140. height: math.unit(4, "feet"),
  10141. weight: math.unit(50, "lb"),
  10142. name: "Front",
  10143. image: {
  10144. source: "./media/characters/mal/front.svg",
  10145. extra: 785 / 724,
  10146. bottom: 0.07
  10147. }
  10148. },
  10149. },
  10150. [
  10151. {
  10152. name: "Micro",
  10153. height: math.unit(4, "inches")
  10154. },
  10155. {
  10156. name: "Normal",
  10157. height: math.unit(4, "feet"),
  10158. default: true
  10159. },
  10160. {
  10161. name: "Macro",
  10162. height: math.unit(200, "feet")
  10163. },
  10164. ]
  10165. ))
  10166. characterMakers.push(() => makeCharacter(
  10167. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10168. {
  10169. front: {
  10170. height: math.unit(6, "feet"),
  10171. weight: math.unit(150, "lb"),
  10172. name: "Front",
  10173. image: {
  10174. source: "./media/characters/jordan-deware/front.svg",
  10175. extra: 1191 / 1012
  10176. }
  10177. },
  10178. },
  10179. [
  10180. {
  10181. name: "Nano",
  10182. height: math.unit(0.01, "mm")
  10183. },
  10184. {
  10185. name: "Minimicro",
  10186. height: math.unit(1, "mm")
  10187. },
  10188. {
  10189. name: "Micro",
  10190. height: math.unit(0.5, "inches")
  10191. },
  10192. {
  10193. name: "Normal",
  10194. height: math.unit(4, "feet"),
  10195. default: true
  10196. },
  10197. {
  10198. name: "Minimacro",
  10199. height: math.unit(40, "meters")
  10200. },
  10201. {
  10202. name: "Small Macro",
  10203. height: math.unit(400, "meters")
  10204. },
  10205. {
  10206. name: "Macro",
  10207. height: math.unit(4, "miles")
  10208. },
  10209. {
  10210. name: "Megamacro",
  10211. height: math.unit(40, "miles")
  10212. },
  10213. {
  10214. name: "Megamacro+",
  10215. height: math.unit(400, "miles")
  10216. },
  10217. {
  10218. name: "Gigamacro",
  10219. height: math.unit(400000, "miles")
  10220. },
  10221. ]
  10222. ))
  10223. characterMakers.push(() => makeCharacter(
  10224. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10225. {
  10226. side: {
  10227. height: math.unit(6, "feet"),
  10228. weight: math.unit(150, "lb"),
  10229. name: "Side",
  10230. image: {
  10231. source: "./media/characters/kimiko/side.svg",
  10232. extra: 600 / 358
  10233. }
  10234. },
  10235. },
  10236. [
  10237. {
  10238. name: "Normal",
  10239. height: math.unit(15, "feet"),
  10240. default: true
  10241. },
  10242. {
  10243. name: "Macro",
  10244. height: math.unit(220, "feet")
  10245. },
  10246. {
  10247. name: "Macro+",
  10248. height: math.unit(1450, "feet")
  10249. },
  10250. {
  10251. name: "Megamacro",
  10252. height: math.unit(11500, "feet")
  10253. },
  10254. {
  10255. name: "Gigamacro",
  10256. height: math.unit(9500, "miles")
  10257. },
  10258. {
  10259. name: "Teramacro",
  10260. height: math.unit(2208005005, "miles")
  10261. },
  10262. {
  10263. name: "Examacro",
  10264. height: math.unit(2750, "parsecs")
  10265. },
  10266. {
  10267. name: "Zettamacro",
  10268. height: math.unit(101500, "parsecs")
  10269. },
  10270. ]
  10271. ))
  10272. characterMakers.push(() => makeCharacter(
  10273. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10274. {
  10275. front: {
  10276. height: math.unit(6, "feet"),
  10277. weight: math.unit(70, "kg"),
  10278. name: "Front",
  10279. image: {
  10280. source: "./media/characters/andrew-sleepy/front.svg"
  10281. }
  10282. },
  10283. side: {
  10284. height: math.unit(6, "feet"),
  10285. weight: math.unit(70, "kg"),
  10286. name: "Side",
  10287. image: {
  10288. source: "./media/characters/andrew-sleepy/side.svg"
  10289. }
  10290. },
  10291. },
  10292. [
  10293. {
  10294. name: "Micro",
  10295. height: math.unit(1, "mm"),
  10296. default: true
  10297. },
  10298. ]
  10299. ))
  10300. characterMakers.push(() => makeCharacter(
  10301. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10302. {
  10303. front: {
  10304. height: math.unit(6, "feet"),
  10305. weight: math.unit(150, "lb"),
  10306. name: "Front",
  10307. image: {
  10308. source: "./media/characters/judio/front.svg",
  10309. extra: 1258 / 1110
  10310. }
  10311. },
  10312. },
  10313. [
  10314. {
  10315. name: "Normal",
  10316. height: math.unit(5 + 6 / 12, "feet")
  10317. },
  10318. {
  10319. name: "Macro",
  10320. height: math.unit(1000, "feet"),
  10321. default: true
  10322. },
  10323. {
  10324. name: "Megamacro",
  10325. height: math.unit(10, "miles")
  10326. },
  10327. ]
  10328. ))
  10329. characterMakers.push(() => makeCharacter(
  10330. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10331. {
  10332. front: {
  10333. height: math.unit(6, "feet"),
  10334. weight: math.unit(68, "kg"),
  10335. name: "Front",
  10336. image: {
  10337. source: "./media/characters/nomaxice/front.svg",
  10338. extra: 1498 / 1073,
  10339. bottom: 0.075
  10340. }
  10341. },
  10342. foot: {
  10343. height: math.unit(1.1, "feet"),
  10344. name: "Foot",
  10345. image: {
  10346. source: "./media/characters/nomaxice/foot.svg"
  10347. }
  10348. },
  10349. },
  10350. [
  10351. {
  10352. name: "Micro",
  10353. height: math.unit(8, "cm")
  10354. },
  10355. {
  10356. name: "Norm",
  10357. height: math.unit(1.82, "m")
  10358. },
  10359. {
  10360. name: "Norm+",
  10361. height: math.unit(8.8, "feet")
  10362. },
  10363. {
  10364. name: "Big",
  10365. height: math.unit(8, "meters"),
  10366. default: true
  10367. },
  10368. {
  10369. name: "Macro",
  10370. height: math.unit(18, "meters")
  10371. },
  10372. {
  10373. name: "Macro+",
  10374. height: math.unit(88, "meters")
  10375. },
  10376. ]
  10377. ))
  10378. characterMakers.push(() => makeCharacter(
  10379. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10380. {
  10381. front: {
  10382. height: math.unit(12, "feet"),
  10383. weight: math.unit(1.5, "tons"),
  10384. name: "Front",
  10385. image: {
  10386. source: "./media/characters/dydros/front.svg",
  10387. extra: 863 / 800,
  10388. bottom: 0.015
  10389. }
  10390. },
  10391. back: {
  10392. height: math.unit(12, "feet"),
  10393. weight: math.unit(1.5, "tons"),
  10394. name: "Back",
  10395. image: {
  10396. source: "./media/characters/dydros/back.svg",
  10397. extra: 900 / 843,
  10398. bottom: 0.005
  10399. }
  10400. },
  10401. },
  10402. [
  10403. {
  10404. name: "Normal",
  10405. height: math.unit(12, "feet"),
  10406. default: true
  10407. },
  10408. ]
  10409. ))
  10410. characterMakers.push(() => makeCharacter(
  10411. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10412. {
  10413. front: {
  10414. height: math.unit(6, "feet"),
  10415. weight: math.unit(100, "kg"),
  10416. name: "Front",
  10417. image: {
  10418. source: "./media/characters/riggi/front.svg",
  10419. extra: 5787 / 5303
  10420. }
  10421. },
  10422. hyper: {
  10423. height: math.unit(6 * 5 / 3, "feet"),
  10424. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10425. name: "Hyper",
  10426. image: {
  10427. source: "./media/characters/riggi/hyper.svg",
  10428. extra: 3595 / 3485
  10429. }
  10430. },
  10431. },
  10432. [
  10433. {
  10434. name: "Small Macro",
  10435. height: math.unit(50, "feet")
  10436. },
  10437. {
  10438. name: "Default",
  10439. height: math.unit(200, "feet"),
  10440. default: true
  10441. },
  10442. {
  10443. name: "Loom",
  10444. height: math.unit(10000, "feet")
  10445. },
  10446. {
  10447. name: "Cruising Altitude",
  10448. height: math.unit(30000, "feet")
  10449. },
  10450. {
  10451. name: "Megamacro",
  10452. height: math.unit(100, "miles")
  10453. },
  10454. {
  10455. name: "Continent Sized",
  10456. height: math.unit(2800, "miles")
  10457. },
  10458. {
  10459. name: "Earth Sized",
  10460. height: math.unit(8000, "miles")
  10461. },
  10462. ]
  10463. ))
  10464. characterMakers.push(() => makeCharacter(
  10465. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10466. {
  10467. front: {
  10468. height: math.unit(6, "feet"),
  10469. weight: math.unit(250, "lb"),
  10470. name: "Front",
  10471. image: {
  10472. source: "./media/characters/alexi/front.svg",
  10473. extra: 3483 / 3291,
  10474. bottom: 0.04
  10475. }
  10476. },
  10477. back: {
  10478. height: math.unit(6, "feet"),
  10479. weight: math.unit(250, "lb"),
  10480. name: "Back",
  10481. image: {
  10482. source: "./media/characters/alexi/back.svg",
  10483. extra: 3533 / 3356,
  10484. bottom: 0.021
  10485. }
  10486. },
  10487. frontTransforming: {
  10488. height: math.unit(8.58, "feet"),
  10489. weight: math.unit(1300, "lb"),
  10490. name: "Transforming",
  10491. image: {
  10492. source: "./media/characters/alexi/front-transforming.svg",
  10493. extra: 437 / 409,
  10494. bottom: 19 / 458.66
  10495. }
  10496. },
  10497. frontTransformed: {
  10498. height: math.unit(12.5, "feet"),
  10499. weight: math.unit(4000, "lb"),
  10500. name: "Transformed",
  10501. image: {
  10502. source: "./media/characters/alexi/front-transformed.svg",
  10503. extra: 639 / 614,
  10504. bottom: 30.55 / 671
  10505. }
  10506. },
  10507. },
  10508. [
  10509. {
  10510. name: "Normal",
  10511. height: math.unit(14, "feet"),
  10512. default: true
  10513. },
  10514. {
  10515. name: "Minimacro",
  10516. height: math.unit(30, "meters")
  10517. },
  10518. {
  10519. name: "Macro",
  10520. height: math.unit(500, "meters")
  10521. },
  10522. {
  10523. name: "Megamacro",
  10524. height: math.unit(9000, "km")
  10525. },
  10526. {
  10527. name: "Teramacro",
  10528. height: math.unit(384000, "km")
  10529. },
  10530. ]
  10531. ))
  10532. characterMakers.push(() => makeCharacter(
  10533. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10534. {
  10535. front: {
  10536. height: math.unit(6, "feet"),
  10537. weight: math.unit(150, "lb"),
  10538. name: "Front",
  10539. image: {
  10540. source: "./media/characters/kayroo/front.svg",
  10541. extra: 1153 / 1038,
  10542. bottom: 0.06
  10543. }
  10544. },
  10545. foot: {
  10546. height: math.unit(6, "feet"),
  10547. weight: math.unit(150, "lb"),
  10548. name: "Foot",
  10549. image: {
  10550. source: "./media/characters/kayroo/foot.svg"
  10551. }
  10552. },
  10553. },
  10554. [
  10555. {
  10556. name: "Normal",
  10557. height: math.unit(8, "feet"),
  10558. default: true
  10559. },
  10560. {
  10561. name: "Minimacro",
  10562. height: math.unit(250, "feet")
  10563. },
  10564. {
  10565. name: "Macro",
  10566. height: math.unit(2800, "feet")
  10567. },
  10568. {
  10569. name: "Megamacro",
  10570. height: math.unit(5200, "feet")
  10571. },
  10572. {
  10573. name: "Gigamacro",
  10574. height: math.unit(27000, "feet")
  10575. },
  10576. {
  10577. name: "Omega",
  10578. height: math.unit(45000, "feet")
  10579. },
  10580. ]
  10581. ))
  10582. characterMakers.push(() => makeCharacter(
  10583. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10584. {
  10585. front: {
  10586. height: math.unit(18, "feet"),
  10587. weight: math.unit(5800, "lb"),
  10588. name: "Front",
  10589. image: {
  10590. source: "./media/characters/rhys/front.svg",
  10591. extra: 3386 / 3090,
  10592. bottom: 0.07
  10593. }
  10594. },
  10595. },
  10596. [
  10597. {
  10598. name: "Normal",
  10599. height: math.unit(18, "feet"),
  10600. default: true
  10601. },
  10602. {
  10603. name: "Working Size",
  10604. height: math.unit(200, "feet")
  10605. },
  10606. {
  10607. name: "Demolition Size",
  10608. height: math.unit(2000, "feet")
  10609. },
  10610. {
  10611. name: "Maximum Licensed Size",
  10612. height: math.unit(5, "miles")
  10613. },
  10614. {
  10615. name: "Maximum Observed Size",
  10616. height: math.unit(10, "yottameters")
  10617. },
  10618. ]
  10619. ))
  10620. characterMakers.push(() => makeCharacter(
  10621. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10622. {
  10623. front: {
  10624. height: math.unit(6, "feet"),
  10625. weight: math.unit(250, "lb"),
  10626. name: "Front",
  10627. image: {
  10628. source: "./media/characters/toto/front.svg",
  10629. extra: 527 / 479,
  10630. bottom: 0.05
  10631. }
  10632. },
  10633. },
  10634. [
  10635. {
  10636. name: "Micro",
  10637. height: math.unit(3, "feet")
  10638. },
  10639. {
  10640. name: "Normal",
  10641. height: math.unit(10, "feet")
  10642. },
  10643. {
  10644. name: "Macro",
  10645. height: math.unit(150, "feet"),
  10646. default: true
  10647. },
  10648. {
  10649. name: "Megamacro",
  10650. height: math.unit(1200, "feet")
  10651. },
  10652. ]
  10653. ))
  10654. characterMakers.push(() => makeCharacter(
  10655. { name: "King", species: ["lion"], tags: ["anthro"] },
  10656. {
  10657. back: {
  10658. height: math.unit(6, "feet"),
  10659. weight: math.unit(150, "lb"),
  10660. name: "Back",
  10661. image: {
  10662. source: "./media/characters/king/back.svg"
  10663. }
  10664. },
  10665. },
  10666. [
  10667. {
  10668. name: "Micro",
  10669. height: math.unit(2, "inches")
  10670. },
  10671. {
  10672. name: "Normal",
  10673. height: math.unit(8, "feet")
  10674. },
  10675. {
  10676. name: "Macro",
  10677. height: math.unit(200, "feet"),
  10678. default: true
  10679. },
  10680. {
  10681. name: "Megamacro",
  10682. height: math.unit(50, "miles")
  10683. },
  10684. ]
  10685. ))
  10686. characterMakers.push(() => makeCharacter(
  10687. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10688. {
  10689. anthro: {
  10690. height: math.unit(6 + 5 / 12, "feet"),
  10691. weight: math.unit(280, "lb"),
  10692. name: "Anthro",
  10693. image: {
  10694. source: "./media/characters/cordite/anthro.svg",
  10695. extra: 1986 / 1905,
  10696. bottom: 0.025
  10697. }
  10698. },
  10699. feral: {
  10700. height: math.unit(2, "feet"),
  10701. weight: math.unit(90, "lb"),
  10702. name: "Feral",
  10703. image: {
  10704. source: "./media/characters/cordite/feral.svg",
  10705. extra: 1260 / 755,
  10706. bottom: 0.05
  10707. }
  10708. },
  10709. },
  10710. [
  10711. {
  10712. name: "Normal",
  10713. height: math.unit(6 + 5 / 12, "feet"),
  10714. default: true
  10715. },
  10716. ]
  10717. ))
  10718. characterMakers.push(() => makeCharacter(
  10719. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10720. {
  10721. front: {
  10722. height: math.unit(6, "feet"),
  10723. weight: math.unit(150, "lb"),
  10724. name: "Front",
  10725. image: {
  10726. source: "./media/characters/pianostrong/front.svg",
  10727. extra: 6577 / 6254,
  10728. bottom: 0.02
  10729. }
  10730. },
  10731. side: {
  10732. height: math.unit(6, "feet"),
  10733. weight: math.unit(150, "lb"),
  10734. name: "Side",
  10735. image: {
  10736. source: "./media/characters/pianostrong/side.svg",
  10737. extra: 6106 / 5730
  10738. }
  10739. },
  10740. back: {
  10741. height: math.unit(6, "feet"),
  10742. weight: math.unit(150, "lb"),
  10743. name: "Back",
  10744. image: {
  10745. source: "./media/characters/pianostrong/back.svg",
  10746. extra: 6085 / 5733,
  10747. bottom: 0.01
  10748. }
  10749. },
  10750. },
  10751. [
  10752. {
  10753. name: "Macro",
  10754. height: math.unit(100, "feet")
  10755. },
  10756. {
  10757. name: "Macro+",
  10758. height: math.unit(300, "feet"),
  10759. default: true
  10760. },
  10761. {
  10762. name: "Macro++",
  10763. height: math.unit(1000, "feet")
  10764. },
  10765. ]
  10766. ))
  10767. characterMakers.push(() => makeCharacter(
  10768. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10769. {
  10770. front: {
  10771. height: math.unit(6, "feet"),
  10772. weight: math.unit(150, "lb"),
  10773. name: "Front",
  10774. image: {
  10775. source: "./media/characters/kona/front.svg",
  10776. extra: 2960 / 2629,
  10777. bottom: 0.005
  10778. }
  10779. },
  10780. },
  10781. [
  10782. {
  10783. name: "Normal",
  10784. height: math.unit(11 + 8 / 12, "feet")
  10785. },
  10786. {
  10787. name: "Macro",
  10788. height: math.unit(850, "feet"),
  10789. default: true
  10790. },
  10791. {
  10792. name: "Macro+",
  10793. height: math.unit(1.5, "km"),
  10794. default: true
  10795. },
  10796. {
  10797. name: "Megamacro",
  10798. height: math.unit(80, "miles")
  10799. },
  10800. {
  10801. name: "Gigamacro",
  10802. height: math.unit(3500, "miles")
  10803. },
  10804. ]
  10805. ))
  10806. characterMakers.push(() => makeCharacter(
  10807. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10808. {
  10809. side: {
  10810. height: math.unit(1.9, "meters"),
  10811. weight: math.unit(326, "kg"),
  10812. name: "Side",
  10813. image: {
  10814. source: "./media/characters/levi/side.svg",
  10815. extra: 1704 / 1334,
  10816. bottom: 0.02
  10817. }
  10818. },
  10819. },
  10820. [
  10821. {
  10822. name: "Normal",
  10823. height: math.unit(1.9, "meters"),
  10824. default: true
  10825. },
  10826. {
  10827. name: "Macro",
  10828. height: math.unit(20, "meters")
  10829. },
  10830. {
  10831. name: "Macro+",
  10832. height: math.unit(200, "meters")
  10833. },
  10834. {
  10835. name: "Megamacro",
  10836. height: math.unit(2, "km")
  10837. },
  10838. {
  10839. name: "Megamacro+",
  10840. height: math.unit(20, "km")
  10841. },
  10842. {
  10843. name: "Gigamacro",
  10844. height: math.unit(2500, "km")
  10845. },
  10846. {
  10847. name: "Gigamacro+",
  10848. height: math.unit(120000, "km")
  10849. },
  10850. {
  10851. name: "Teramacro",
  10852. height: math.unit(7.77e6, "km")
  10853. },
  10854. ]
  10855. ))
  10856. characterMakers.push(() => makeCharacter(
  10857. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10858. {
  10859. front: {
  10860. height: math.unit(6 + 4 / 12, "feet"),
  10861. weight: math.unit(188, "lb"),
  10862. name: "Front",
  10863. image: {
  10864. source: "./media/characters/bmc/front.svg",
  10865. extra: 1067 / 1022,
  10866. bottom: 0.047
  10867. }
  10868. },
  10869. },
  10870. [
  10871. {
  10872. name: "Human-sized",
  10873. height: math.unit(6 + 4 / 12, "feet")
  10874. },
  10875. {
  10876. name: "Small",
  10877. height: math.unit(250, "feet")
  10878. },
  10879. {
  10880. name: "Normal",
  10881. height: math.unit(1250, "feet"),
  10882. default: true
  10883. },
  10884. {
  10885. name: "Good Day",
  10886. height: math.unit(88, "miles")
  10887. },
  10888. {
  10889. name: "Largest Measured Size",
  10890. height: math.unit(11.2e6, "lightyears")
  10891. },
  10892. ]
  10893. ))
  10894. characterMakers.push(() => makeCharacter(
  10895. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10896. {
  10897. front: {
  10898. height: math.unit(20, "feet"),
  10899. weight: math.unit(2016, "kg"),
  10900. name: "Front",
  10901. image: {
  10902. source: "./media/characters/sven-the-kaiju/front.svg",
  10903. extra: 1479 / 1449,
  10904. bottom: 0.05
  10905. }
  10906. },
  10907. },
  10908. [
  10909. {
  10910. name: "Fairy",
  10911. height: math.unit(6, "inches")
  10912. },
  10913. {
  10914. name: "Normal",
  10915. height: math.unit(20, "feet"),
  10916. default: true
  10917. },
  10918. {
  10919. name: "Rampage",
  10920. height: math.unit(200, "feet")
  10921. },
  10922. {
  10923. name: "Archfey Forest Guardian",
  10924. height: math.unit(1, "mile")
  10925. },
  10926. ]
  10927. ))
  10928. characterMakers.push(() => makeCharacter(
  10929. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10930. {
  10931. front: {
  10932. height: math.unit(4, "meters"),
  10933. weight: math.unit(2, "tons"),
  10934. name: "Front",
  10935. image: {
  10936. source: "./media/characters/marik/front.svg",
  10937. extra: 1057 / 1003,
  10938. bottom: 0.08
  10939. }
  10940. },
  10941. },
  10942. [
  10943. {
  10944. name: "Normal",
  10945. height: math.unit(4, "meters"),
  10946. default: true
  10947. },
  10948. {
  10949. name: "Macro",
  10950. height: math.unit(20, "meters")
  10951. },
  10952. {
  10953. name: "Megamacro",
  10954. height: math.unit(50, "km")
  10955. },
  10956. {
  10957. name: "Gigamacro",
  10958. height: math.unit(100, "km")
  10959. },
  10960. {
  10961. name: "Alpha Macro",
  10962. height: math.unit(7.88e7, "yottameters")
  10963. },
  10964. ]
  10965. ))
  10966. characterMakers.push(() => makeCharacter(
  10967. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10968. {
  10969. front: {
  10970. height: math.unit(6, "feet"),
  10971. weight: math.unit(110, "lb"),
  10972. name: "Front",
  10973. image: {
  10974. source: "./media/characters/mel/front.svg",
  10975. extra: 736 / 617,
  10976. bottom: 0.017
  10977. }
  10978. },
  10979. },
  10980. [
  10981. {
  10982. name: "Pico",
  10983. height: math.unit(3, "pm")
  10984. },
  10985. {
  10986. name: "Nano",
  10987. height: math.unit(3, "nm")
  10988. },
  10989. {
  10990. name: "Micro",
  10991. height: math.unit(0.3, "mm"),
  10992. default: true
  10993. },
  10994. {
  10995. name: "Micro+",
  10996. height: math.unit(3, "mm")
  10997. },
  10998. {
  10999. name: "Normal",
  11000. height: math.unit(5 + 10.5 / 12, "feet")
  11001. },
  11002. ]
  11003. ))
  11004. characterMakers.push(() => makeCharacter(
  11005. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11006. {
  11007. kaiju: {
  11008. height: math.unit(1.75, "meters"),
  11009. weight: math.unit(55, "kg"),
  11010. name: "Kaiju",
  11011. image: {
  11012. source: "./media/characters/lykonous/kaiju.svg",
  11013. extra: 1055 / 946,
  11014. bottom: 0.135
  11015. }
  11016. },
  11017. },
  11018. [
  11019. {
  11020. name: "Normal",
  11021. height: math.unit(2.5, "meters"),
  11022. default: true
  11023. },
  11024. {
  11025. name: "Kaiju Dragon",
  11026. height: math.unit(60, "meters")
  11027. },
  11028. {
  11029. name: "Mega Kaiju",
  11030. height: math.unit(120, "km")
  11031. },
  11032. {
  11033. name: "Giga Kaiju",
  11034. height: math.unit(200, "megameters")
  11035. },
  11036. {
  11037. name: "Terra Kaiju",
  11038. height: math.unit(400, "gigameters")
  11039. },
  11040. {
  11041. name: "Kaiju Dragon God",
  11042. height: math.unit(13000, "exaparsecs")
  11043. },
  11044. ]
  11045. ))
  11046. characterMakers.push(() => makeCharacter(
  11047. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11048. {
  11049. front: {
  11050. height: math.unit(6, "feet"),
  11051. weight: math.unit(150, "lb"),
  11052. name: "Front",
  11053. image: {
  11054. source: "./media/characters/blü/front.svg",
  11055. extra: 1883 / 1564,
  11056. bottom: 0.031
  11057. }
  11058. },
  11059. },
  11060. [
  11061. {
  11062. name: "Normal",
  11063. height: math.unit(13, "feet"),
  11064. default: true
  11065. },
  11066. {
  11067. name: "Big Boi",
  11068. height: math.unit(150, "meters")
  11069. },
  11070. {
  11071. name: "Mini Stomper",
  11072. height: math.unit(300, "meters")
  11073. },
  11074. {
  11075. name: "Macro",
  11076. height: math.unit(1000, "meters")
  11077. },
  11078. {
  11079. name: "Megamacro",
  11080. height: math.unit(11000, "meters")
  11081. },
  11082. {
  11083. name: "Gigamacro",
  11084. height: math.unit(11000, "km")
  11085. },
  11086. {
  11087. name: "Teramacro",
  11088. height: math.unit(420000, "km")
  11089. },
  11090. {
  11091. name: "Examacro",
  11092. height: math.unit(120, "parsecs")
  11093. },
  11094. {
  11095. name: "God Tho",
  11096. height: math.unit(98000000000, "parsecs")
  11097. },
  11098. ]
  11099. ))
  11100. characterMakers.push(() => makeCharacter(
  11101. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11102. {
  11103. taurFront: {
  11104. height: math.unit(6, "feet"),
  11105. weight: math.unit(200, "lb"),
  11106. name: "Taur (Front)",
  11107. image: {
  11108. source: "./media/characters/scales/taur-front.svg",
  11109. extra: 1,
  11110. bottom: 0.05
  11111. }
  11112. },
  11113. taurBack: {
  11114. height: math.unit(6, "feet"),
  11115. weight: math.unit(200, "lb"),
  11116. name: "Taur (Back)",
  11117. image: {
  11118. source: "./media/characters/scales/taur-back.svg",
  11119. extra: 1,
  11120. bottom: 0.08
  11121. }
  11122. },
  11123. anthro: {
  11124. height: math.unit(6 * 7 / 12, "feet"),
  11125. weight: math.unit(100, "lb"),
  11126. name: "Anthro",
  11127. image: {
  11128. source: "./media/characters/scales/anthro.svg",
  11129. extra: 1,
  11130. bottom: 0.06
  11131. }
  11132. },
  11133. },
  11134. [
  11135. {
  11136. name: "Normal",
  11137. height: math.unit(12, "feet"),
  11138. default: true
  11139. },
  11140. ]
  11141. ))
  11142. characterMakers.push(() => makeCharacter(
  11143. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11144. {
  11145. front: {
  11146. height: math.unit(6, "feet"),
  11147. weight: math.unit(150, "lb"),
  11148. name: "Front",
  11149. image: {
  11150. source: "./media/characters/koragos/front.svg",
  11151. extra: 841 / 794,
  11152. bottom: 0.035
  11153. }
  11154. },
  11155. back: {
  11156. height: math.unit(6, "feet"),
  11157. weight: math.unit(150, "lb"),
  11158. name: "Back",
  11159. image: {
  11160. source: "./media/characters/koragos/back.svg",
  11161. extra: 841 / 810,
  11162. bottom: 0.022
  11163. }
  11164. },
  11165. },
  11166. [
  11167. {
  11168. name: "Normal",
  11169. height: math.unit(6 + 11 / 12, "feet"),
  11170. default: true
  11171. },
  11172. {
  11173. name: "Macro",
  11174. height: math.unit(490, "feet")
  11175. },
  11176. {
  11177. name: "Megamacro",
  11178. height: math.unit(10, "miles")
  11179. },
  11180. {
  11181. name: "Gigamacro",
  11182. height: math.unit(50, "miles")
  11183. },
  11184. ]
  11185. ))
  11186. characterMakers.push(() => makeCharacter(
  11187. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11188. {
  11189. front: {
  11190. height: math.unit(6, "feet"),
  11191. weight: math.unit(250, "lb"),
  11192. name: "Front",
  11193. image: {
  11194. source: "./media/characters/xylrem/front.svg",
  11195. extra: 3323 / 3050,
  11196. bottom: 0.065
  11197. }
  11198. },
  11199. },
  11200. [
  11201. {
  11202. name: "Micro",
  11203. height: math.unit(4, "feet")
  11204. },
  11205. {
  11206. name: "Normal",
  11207. height: math.unit(16, "feet"),
  11208. default: true
  11209. },
  11210. {
  11211. name: "Macro",
  11212. height: math.unit(2720, "feet")
  11213. },
  11214. {
  11215. name: "Megamacro",
  11216. height: math.unit(25000, "miles")
  11217. },
  11218. ]
  11219. ))
  11220. characterMakers.push(() => makeCharacter(
  11221. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11222. {
  11223. front: {
  11224. height: math.unit(8, "feet"),
  11225. weight: math.unit(250, "kg"),
  11226. name: "Front",
  11227. image: {
  11228. source: "./media/characters/ikideru/front.svg",
  11229. extra: 930 / 870,
  11230. bottom: 0.087
  11231. }
  11232. },
  11233. back: {
  11234. height: math.unit(8, "feet"),
  11235. weight: math.unit(250, "kg"),
  11236. name: "Back",
  11237. image: {
  11238. source: "./media/characters/ikideru/back.svg",
  11239. extra: 919 / 852,
  11240. bottom: 0.055
  11241. }
  11242. },
  11243. },
  11244. [
  11245. {
  11246. name: "Rare",
  11247. height: math.unit(8, "feet"),
  11248. default: true
  11249. },
  11250. {
  11251. name: "Playful Loom",
  11252. height: math.unit(80, "feet")
  11253. },
  11254. {
  11255. name: "City Leaner",
  11256. height: math.unit(230, "feet")
  11257. },
  11258. {
  11259. name: "Megamacro",
  11260. height: math.unit(2500, "feet")
  11261. },
  11262. {
  11263. name: "Gigamacro",
  11264. height: math.unit(26400, "feet")
  11265. },
  11266. {
  11267. name: "Tectonic Shifter",
  11268. height: math.unit(1.7, "megameters")
  11269. },
  11270. {
  11271. name: "Planet Carer",
  11272. height: math.unit(21, "megameters")
  11273. },
  11274. {
  11275. name: "God",
  11276. height: math.unit(11157.22, "parsecs")
  11277. },
  11278. ]
  11279. ))
  11280. characterMakers.push(() => makeCharacter(
  11281. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11282. {
  11283. front: {
  11284. height: math.unit(6, "feet"),
  11285. weight: math.unit(120, "lb"),
  11286. name: "Front",
  11287. image: {
  11288. source: "./media/characters/neo/front.svg"
  11289. }
  11290. },
  11291. },
  11292. [
  11293. {
  11294. name: "Micro",
  11295. height: math.unit(2, "inches"),
  11296. default: true
  11297. },
  11298. {
  11299. name: "Human Size",
  11300. height: math.unit(5 + 8 / 12, "feet")
  11301. },
  11302. ]
  11303. ))
  11304. characterMakers.push(() => makeCharacter(
  11305. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11306. {
  11307. front: {
  11308. height: math.unit(13 + 10 / 12, "feet"),
  11309. weight: math.unit(5320, "lb"),
  11310. name: "Front",
  11311. image: {
  11312. source: "./media/characters/chauncey-chantz/front.svg",
  11313. extra: 1587 / 1435,
  11314. bottom: 0.02
  11315. }
  11316. },
  11317. },
  11318. [
  11319. {
  11320. name: "Normal",
  11321. height: math.unit(13 + 10 / 12, "feet"),
  11322. default: true
  11323. },
  11324. {
  11325. name: "Macro",
  11326. height: math.unit(45, "feet")
  11327. },
  11328. {
  11329. name: "Megamacro",
  11330. height: math.unit(250, "miles")
  11331. },
  11332. {
  11333. name: "Planetary",
  11334. height: math.unit(10000, "miles")
  11335. },
  11336. {
  11337. name: "Galactic",
  11338. height: math.unit(40000, "parsecs")
  11339. },
  11340. {
  11341. name: "Universal",
  11342. height: math.unit(1, "yottameter")
  11343. },
  11344. ]
  11345. ))
  11346. characterMakers.push(() => makeCharacter(
  11347. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11348. {
  11349. front: {
  11350. height: math.unit(6, "feet"),
  11351. weight: math.unit(150, "lb"),
  11352. name: "Front",
  11353. image: {
  11354. source: "./media/characters/epifox/front.svg",
  11355. extra: 1,
  11356. bottom: 0.075
  11357. }
  11358. },
  11359. },
  11360. [
  11361. {
  11362. name: "Micro",
  11363. height: math.unit(6, "inches")
  11364. },
  11365. {
  11366. name: "Normal",
  11367. height: math.unit(12, "feet"),
  11368. default: true
  11369. },
  11370. {
  11371. name: "Macro",
  11372. height: math.unit(3810, "feet")
  11373. },
  11374. {
  11375. name: "Megamacro",
  11376. height: math.unit(500, "miles")
  11377. },
  11378. ]
  11379. ))
  11380. characterMakers.push(() => makeCharacter(
  11381. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11382. {
  11383. front: {
  11384. height: math.unit(1.8796, "m"),
  11385. weight: math.unit(230, "lb"),
  11386. name: "Front",
  11387. image: {
  11388. source: "./media/characters/colin-t/front.svg",
  11389. extra: 1272 / 1193,
  11390. bottom: 0.07
  11391. }
  11392. },
  11393. },
  11394. [
  11395. {
  11396. name: "Micro",
  11397. height: math.unit(0.571, "meters")
  11398. },
  11399. {
  11400. name: "Normal",
  11401. height: math.unit(1.8796, "meters"),
  11402. default: true
  11403. },
  11404. {
  11405. name: "Tall",
  11406. height: math.unit(4, "meters")
  11407. },
  11408. {
  11409. name: "Macro",
  11410. height: math.unit(67.241, "meters")
  11411. },
  11412. {
  11413. name: "Megamacro",
  11414. height: math.unit(371.856, "meters")
  11415. },
  11416. {
  11417. name: "Planetary",
  11418. height: math.unit(12631.5689, "km")
  11419. },
  11420. ]
  11421. ))
  11422. characterMakers.push(() => makeCharacter(
  11423. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11424. {
  11425. front: {
  11426. height: math.unit(1.85, "meters"),
  11427. weight: math.unit(80, "kg"),
  11428. name: "Front",
  11429. image: {
  11430. source: "./media/characters/matvei/front.svg",
  11431. extra: 614 / 594,
  11432. bottom: 0.01
  11433. }
  11434. },
  11435. },
  11436. [
  11437. {
  11438. name: "Normal",
  11439. height: math.unit(1.85, "meters"),
  11440. default: true
  11441. },
  11442. ]
  11443. ))
  11444. characterMakers.push(() => makeCharacter(
  11445. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11446. {
  11447. front: {
  11448. height: math.unit(5 + 9 / 12, "feet"),
  11449. weight: math.unit(70, "lb"),
  11450. name: "Front",
  11451. image: {
  11452. source: "./media/characters/quincy/front.svg",
  11453. extra: 3041 / 2751
  11454. }
  11455. },
  11456. back: {
  11457. height: math.unit(5 + 9 / 12, "feet"),
  11458. weight: math.unit(70, "lb"),
  11459. name: "Back",
  11460. image: {
  11461. source: "./media/characters/quincy/back.svg",
  11462. extra: 3041 / 2751
  11463. }
  11464. },
  11465. flying: {
  11466. height: math.unit(5 + 4 / 12, "feet"),
  11467. weight: math.unit(70, "lb"),
  11468. name: "Flying",
  11469. image: {
  11470. source: "./media/characters/quincy/flying.svg",
  11471. extra: 1044 / 930
  11472. }
  11473. },
  11474. },
  11475. [
  11476. {
  11477. name: "Micro",
  11478. height: math.unit(3, "cm")
  11479. },
  11480. {
  11481. name: "Normal",
  11482. height: math.unit(5 + 9 / 12, "feet")
  11483. },
  11484. {
  11485. name: "Macro",
  11486. height: math.unit(200, "meters"),
  11487. default: true
  11488. },
  11489. {
  11490. name: "Megamacro",
  11491. height: math.unit(1000, "meters")
  11492. },
  11493. ]
  11494. ))
  11495. characterMakers.push(() => makeCharacter(
  11496. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11497. {
  11498. front: {
  11499. height: math.unit(4 + 7 / 12, "feet"),
  11500. weight: math.unit(50, "lb"),
  11501. name: "Front",
  11502. image: {
  11503. source: "./media/characters/vanrel/front.svg",
  11504. extra: 1,
  11505. bottom: 0.02
  11506. }
  11507. },
  11508. frontAlt: {
  11509. height: math.unit(4 + 7 / 12, "feet"),
  11510. weight: math.unit(50, "lb"),
  11511. name: "Front-alt",
  11512. image: {
  11513. source: "./media/characters/vanrel/front-alt.svg",
  11514. extra: 1,
  11515. bottom: 15 / 1511
  11516. }
  11517. },
  11518. elemental: {
  11519. height: math.unit(3, "feet"),
  11520. weight: math.unit(50, "lb"),
  11521. name: "Elemental",
  11522. image: {
  11523. source: "./media/characters/vanrel/elemental.svg",
  11524. extra: 192.3 / 162.8,
  11525. bottom: 1.79 / 194.17
  11526. }
  11527. },
  11528. side: {
  11529. height: math.unit(4 + 7 / 12, "feet"),
  11530. weight: math.unit(50, "lb"),
  11531. name: "Side",
  11532. image: {
  11533. source: "./media/characters/vanrel/side.svg",
  11534. extra: 1,
  11535. bottom: 0.025
  11536. }
  11537. },
  11538. tome: {
  11539. height: math.unit(1.35, "feet"),
  11540. weight: math.unit(10, "lb"),
  11541. name: "Vanrel's Tome",
  11542. rename: true,
  11543. image: {
  11544. source: "./media/characters/vanrel/tome.svg"
  11545. }
  11546. },
  11547. beans: {
  11548. height: math.unit(0.89, "feet"),
  11549. name: "Beans",
  11550. image: {
  11551. source: "./media/characters/vanrel/beans.svg"
  11552. }
  11553. },
  11554. },
  11555. [
  11556. {
  11557. name: "Normal",
  11558. height: math.unit(4 + 7 / 12, "feet"),
  11559. default: true
  11560. },
  11561. ]
  11562. ))
  11563. characterMakers.push(() => makeCharacter(
  11564. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11565. {
  11566. front: {
  11567. height: math.unit(7 + 5 / 12, "feet"),
  11568. weight: math.unit(150, "lb"),
  11569. name: "Front",
  11570. image: {
  11571. source: "./media/characters/kuiper-vanrel/front.svg",
  11572. extra: 1118 / 1068,
  11573. bottom: 0.09
  11574. }
  11575. },
  11576. foot: {
  11577. height: math.unit(0.55, "meters"),
  11578. name: "Foot",
  11579. image: {
  11580. source: "./media/characters/kuiper-vanrel/foot.svg",
  11581. }
  11582. },
  11583. battle: {
  11584. height: math.unit(6.824, "feet"),
  11585. weight: math.unit(150, "lb"),
  11586. name: "Battle",
  11587. image: {
  11588. source: "./media/characters/kuiper-vanrel/battle.svg",
  11589. extra: 1466 / 1327,
  11590. bottom: 29 / 1492.5
  11591. }
  11592. },
  11593. battleAlt: {
  11594. height: math.unit(6.824, "feet"),
  11595. weight: math.unit(150, "lb"),
  11596. name: "Battle (Alt)",
  11597. image: {
  11598. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11599. extra: 2081 / 1965,
  11600. bottom: 40 / 2121
  11601. }
  11602. },
  11603. },
  11604. [
  11605. {
  11606. name: "Normal",
  11607. height: math.unit(7 + 5 / 12, "feet"),
  11608. default: true
  11609. },
  11610. ]
  11611. ))
  11612. characterMakers.push(() => makeCharacter(
  11613. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11614. {
  11615. front: {
  11616. height: math.unit(8 + 5 / 12, "feet"),
  11617. weight: math.unit(150, "lb"),
  11618. name: "Front",
  11619. image: {
  11620. source: "./media/characters/keset-vanrel/front.svg",
  11621. extra: 1150 / 1084,
  11622. bottom: 0.05
  11623. }
  11624. },
  11625. hand: {
  11626. height: math.unit(0.6, "meters"),
  11627. name: "Hand",
  11628. image: {
  11629. source: "./media/characters/keset-vanrel/hand.svg"
  11630. }
  11631. },
  11632. foot: {
  11633. height: math.unit(0.94978, "meters"),
  11634. name: "Foot",
  11635. image: {
  11636. source: "./media/characters/keset-vanrel/foot.svg"
  11637. }
  11638. },
  11639. battle: {
  11640. height: math.unit(7.408, "feet"),
  11641. weight: math.unit(150, "lb"),
  11642. name: "Battle",
  11643. image: {
  11644. source: "./media/characters/keset-vanrel/battle.svg",
  11645. extra: 1890 / 1386,
  11646. bottom: 73.28 / 1970
  11647. }
  11648. },
  11649. },
  11650. [
  11651. {
  11652. name: "Normal",
  11653. height: math.unit(8 + 5 / 12, "feet"),
  11654. default: true
  11655. },
  11656. ]
  11657. ))
  11658. characterMakers.push(() => makeCharacter(
  11659. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11660. {
  11661. front: {
  11662. height: math.unit(6, "feet"),
  11663. weight: math.unit(150, "lb"),
  11664. name: "Front",
  11665. image: {
  11666. source: "./media/characters/neos/front.svg",
  11667. extra: 1696 / 992,
  11668. bottom: 0.14
  11669. }
  11670. },
  11671. },
  11672. [
  11673. {
  11674. name: "Normal",
  11675. height: math.unit(54, "cm"),
  11676. default: true
  11677. },
  11678. {
  11679. name: "Macro",
  11680. height: math.unit(100, "m")
  11681. },
  11682. {
  11683. name: "Megamacro",
  11684. height: math.unit(10, "km")
  11685. },
  11686. {
  11687. name: "Megamacro+",
  11688. height: math.unit(100, "km")
  11689. },
  11690. {
  11691. name: "Gigamacro",
  11692. height: math.unit(100, "Mm")
  11693. },
  11694. {
  11695. name: "Teramacro",
  11696. height: math.unit(100, "Gm")
  11697. },
  11698. {
  11699. name: "Examacro",
  11700. height: math.unit(100, "Em")
  11701. },
  11702. {
  11703. name: "Godly",
  11704. height: math.unit(10000, "Ym")
  11705. },
  11706. {
  11707. name: "Beyond Godly",
  11708. height: math.unit(25, "multiverses")
  11709. },
  11710. ]
  11711. ))
  11712. characterMakers.push(() => makeCharacter(
  11713. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11714. {
  11715. feminine: {
  11716. height: math.unit(5, "feet"),
  11717. weight: math.unit(100, "lb"),
  11718. name: "Feminine",
  11719. image: {
  11720. source: "./media/characters/sammy-mouse/feminine.svg",
  11721. extra: 2526 / 2425,
  11722. bottom: 0.123
  11723. }
  11724. },
  11725. masculine: {
  11726. height: math.unit(5, "feet"),
  11727. weight: math.unit(100, "lb"),
  11728. name: "Masculine",
  11729. image: {
  11730. source: "./media/characters/sammy-mouse/masculine.svg",
  11731. extra: 2526 / 2425,
  11732. bottom: 0.123
  11733. }
  11734. },
  11735. },
  11736. [
  11737. {
  11738. name: "Micro",
  11739. height: math.unit(5, "inches")
  11740. },
  11741. {
  11742. name: "Normal",
  11743. height: math.unit(5, "feet"),
  11744. default: true
  11745. },
  11746. {
  11747. name: "Macro",
  11748. height: math.unit(60, "feet")
  11749. },
  11750. ]
  11751. ))
  11752. characterMakers.push(() => makeCharacter(
  11753. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11754. {
  11755. front: {
  11756. height: math.unit(4, "feet"),
  11757. weight: math.unit(50, "lb"),
  11758. name: "Front",
  11759. image: {
  11760. source: "./media/characters/kole/front.svg",
  11761. extra: 1423 / 1303,
  11762. bottom: 0.025
  11763. }
  11764. },
  11765. back: {
  11766. height: math.unit(4, "feet"),
  11767. weight: math.unit(50, "lb"),
  11768. name: "Back",
  11769. image: {
  11770. source: "./media/characters/kole/back.svg",
  11771. extra: 1426 / 1280,
  11772. bottom: 0.02
  11773. }
  11774. },
  11775. },
  11776. [
  11777. {
  11778. name: "Normal",
  11779. height: math.unit(4, "feet"),
  11780. default: true
  11781. },
  11782. ]
  11783. ))
  11784. characterMakers.push(() => makeCharacter(
  11785. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11786. {
  11787. front: {
  11788. height: math.unit(2 + 6 / 12, "feet"),
  11789. weight: math.unit(20, "lb"),
  11790. name: "Front",
  11791. image: {
  11792. source: "./media/characters/rufran/front.svg",
  11793. extra: 2041 / 1839,
  11794. bottom: 0.055
  11795. }
  11796. },
  11797. back: {
  11798. height: math.unit(2 + 6 / 12, "feet"),
  11799. weight: math.unit(20, "lb"),
  11800. name: "Back",
  11801. image: {
  11802. source: "./media/characters/rufran/back.svg",
  11803. extra: 2054 / 1839,
  11804. bottom: 0.01
  11805. }
  11806. },
  11807. hand: {
  11808. height: math.unit(0.2166, "meters"),
  11809. name: "Hand",
  11810. image: {
  11811. source: "./media/characters/rufran/hand.svg"
  11812. }
  11813. },
  11814. foot: {
  11815. height: math.unit(0.185, "meters"),
  11816. name: "Foot",
  11817. image: {
  11818. source: "./media/characters/rufran/foot.svg"
  11819. }
  11820. },
  11821. },
  11822. [
  11823. {
  11824. name: "Micro",
  11825. height: math.unit(1, "inch")
  11826. },
  11827. {
  11828. name: "Normal",
  11829. height: math.unit(2 + 6 / 12, "feet"),
  11830. default: true
  11831. },
  11832. {
  11833. name: "Big",
  11834. height: math.unit(60, "feet")
  11835. },
  11836. {
  11837. name: "Macro",
  11838. height: math.unit(325, "feet")
  11839. },
  11840. ]
  11841. ))
  11842. characterMakers.push(() => makeCharacter(
  11843. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11844. {
  11845. front: {
  11846. height: math.unit(0.3, "meters"),
  11847. weight: math.unit(3.5, "kg"),
  11848. name: "Front",
  11849. image: {
  11850. source: "./media/characters/chip/front.svg",
  11851. extra: 748 / 674
  11852. }
  11853. },
  11854. },
  11855. [
  11856. {
  11857. name: "Micro",
  11858. height: math.unit(1, "inch"),
  11859. default: true
  11860. },
  11861. ]
  11862. ))
  11863. characterMakers.push(() => makeCharacter(
  11864. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11865. {
  11866. side: {
  11867. height: math.unit(2.3, "meters"),
  11868. weight: math.unit(3500, "lb"),
  11869. name: "Side",
  11870. image: {
  11871. source: "./media/characters/torvid/side.svg",
  11872. extra: 1972 / 722,
  11873. bottom: 0.035
  11874. }
  11875. },
  11876. },
  11877. [
  11878. {
  11879. name: "Normal",
  11880. height: math.unit(2.3, "meters"),
  11881. default: true
  11882. },
  11883. ]
  11884. ))
  11885. characterMakers.push(() => makeCharacter(
  11886. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11887. {
  11888. front: {
  11889. height: math.unit(2, "meters"),
  11890. weight: math.unit(150.5, "kg"),
  11891. name: "Front",
  11892. image: {
  11893. source: "./media/characters/susan/front.svg",
  11894. extra: 693 / 635,
  11895. bottom: 0.05
  11896. }
  11897. },
  11898. },
  11899. [
  11900. {
  11901. name: "Megamacro",
  11902. height: math.unit(505, "miles"),
  11903. default: true
  11904. },
  11905. ]
  11906. ))
  11907. characterMakers.push(() => makeCharacter(
  11908. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11909. {
  11910. front: {
  11911. height: math.unit(6, "feet"),
  11912. weight: math.unit(150, "lb"),
  11913. name: "Front",
  11914. image: {
  11915. source: "./media/characters/raindrops/front.svg",
  11916. extra: 2655 / 2461,
  11917. bottom: 49 / 2705
  11918. }
  11919. },
  11920. back: {
  11921. height: math.unit(6, "feet"),
  11922. weight: math.unit(150, "lb"),
  11923. name: "Back",
  11924. image: {
  11925. source: "./media/characters/raindrops/back.svg",
  11926. extra: 2574 / 2400,
  11927. bottom: 65 / 2634
  11928. }
  11929. },
  11930. },
  11931. [
  11932. {
  11933. name: "Micro",
  11934. height: math.unit(6, "inches")
  11935. },
  11936. {
  11937. name: "Normal",
  11938. height: math.unit(6 + 2 / 12, "feet")
  11939. },
  11940. {
  11941. name: "Macro",
  11942. height: math.unit(131, "feet"),
  11943. default: true
  11944. },
  11945. {
  11946. name: "Megamacro",
  11947. height: math.unit(15, "miles")
  11948. },
  11949. {
  11950. name: "Gigamacro",
  11951. height: math.unit(4000, "miles")
  11952. },
  11953. {
  11954. name: "Teramacro",
  11955. height: math.unit(315000, "miles")
  11956. },
  11957. ]
  11958. ))
  11959. characterMakers.push(() => makeCharacter(
  11960. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11961. {
  11962. front: {
  11963. height: math.unit(2.794, "meters"),
  11964. weight: math.unit(325, "kg"),
  11965. name: "Front",
  11966. image: {
  11967. source: "./media/characters/tezwa/front.svg",
  11968. extra: 2083 / 1906,
  11969. bottom: 0.031
  11970. }
  11971. },
  11972. foot: {
  11973. height: math.unit(0.687, "meters"),
  11974. name: "Foot",
  11975. image: {
  11976. source: "./media/characters/tezwa/foot.svg"
  11977. }
  11978. },
  11979. },
  11980. [
  11981. {
  11982. name: "Normal",
  11983. height: math.unit(9 + 2 / 12, "feet"),
  11984. default: true
  11985. },
  11986. ]
  11987. ))
  11988. characterMakers.push(() => makeCharacter(
  11989. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11990. {
  11991. front: {
  11992. height: math.unit(58, "feet"),
  11993. weight: math.unit(89000, "lb"),
  11994. name: "Front",
  11995. image: {
  11996. source: "./media/characters/typhus/front.svg",
  11997. extra: 816 / 800,
  11998. bottom: 0.065
  11999. }
  12000. },
  12001. },
  12002. [
  12003. {
  12004. name: "Macro",
  12005. height: math.unit(58, "feet"),
  12006. default: true
  12007. },
  12008. ]
  12009. ))
  12010. characterMakers.push(() => makeCharacter(
  12011. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12012. {
  12013. front: {
  12014. height: math.unit(12, "feet"),
  12015. weight: math.unit(6, "tonnes"),
  12016. name: "Front",
  12017. image: {
  12018. source: "./media/characters/lyra-von-wulf/front.svg",
  12019. extra: 1,
  12020. bottom: 0.10
  12021. }
  12022. },
  12023. frontMecha: {
  12024. height: math.unit(12, "feet"),
  12025. weight: math.unit(12, "tonnes"),
  12026. name: "Front (Mecha)",
  12027. image: {
  12028. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12029. extra: 1,
  12030. bottom: 0.042
  12031. }
  12032. },
  12033. maw: {
  12034. height: math.unit(2.2, "feet"),
  12035. name: "Maw",
  12036. image: {
  12037. source: "./media/characters/lyra-von-wulf/maw.svg"
  12038. }
  12039. },
  12040. },
  12041. [
  12042. {
  12043. name: "Normal",
  12044. height: math.unit(12, "feet"),
  12045. default: true
  12046. },
  12047. {
  12048. name: "Classic",
  12049. height: math.unit(50, "feet")
  12050. },
  12051. {
  12052. name: "Macro",
  12053. height: math.unit(500, "feet")
  12054. },
  12055. {
  12056. name: "Megamacro",
  12057. height: math.unit(1, "mile")
  12058. },
  12059. {
  12060. name: "Gigamacro",
  12061. height: math.unit(400, "miles")
  12062. },
  12063. {
  12064. name: "Teramacro",
  12065. height: math.unit(22000, "miles")
  12066. },
  12067. {
  12068. name: "Solarmacro",
  12069. height: math.unit(8600000, "miles")
  12070. },
  12071. {
  12072. name: "Galactic",
  12073. height: math.unit(1057000, "lightyears")
  12074. },
  12075. ]
  12076. ))
  12077. characterMakers.push(() => makeCharacter(
  12078. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12079. {
  12080. front: {
  12081. height: math.unit(6 + 10 / 12, "feet"),
  12082. weight: math.unit(150, "lb"),
  12083. name: "Front",
  12084. image: {
  12085. source: "./media/characters/dixon/front.svg",
  12086. extra: 3361 / 3209,
  12087. bottom: 0.01
  12088. }
  12089. },
  12090. },
  12091. [
  12092. {
  12093. name: "Normal",
  12094. height: math.unit(6 + 10 / 12, "feet"),
  12095. default: true
  12096. },
  12097. {
  12098. name: "Big",
  12099. height: math.unit(12, "meters")
  12100. },
  12101. {
  12102. name: "Macro",
  12103. height: math.unit(500, "meters")
  12104. },
  12105. {
  12106. name: "Megamacro",
  12107. height: math.unit(2, "km")
  12108. },
  12109. ]
  12110. ))
  12111. characterMakers.push(() => makeCharacter(
  12112. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12113. {
  12114. front: {
  12115. height: math.unit(185, "cm"),
  12116. weight: math.unit(68, "kg"),
  12117. name: "Front",
  12118. image: {
  12119. source: "./media/characters/kauko/front.svg",
  12120. extra: 1455 / 1421,
  12121. bottom: 0.03
  12122. }
  12123. },
  12124. back: {
  12125. height: math.unit(185, "cm"),
  12126. weight: math.unit(68, "kg"),
  12127. name: "Back",
  12128. image: {
  12129. source: "./media/characters/kauko/back.svg",
  12130. extra: 1455 / 1421,
  12131. bottom: 0.004
  12132. }
  12133. },
  12134. },
  12135. [
  12136. {
  12137. name: "Normal",
  12138. height: math.unit(185, "cm"),
  12139. default: true
  12140. },
  12141. ]
  12142. ))
  12143. characterMakers.push(() => makeCharacter(
  12144. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12145. {
  12146. front: {
  12147. height: math.unit(6, "feet"),
  12148. weight: math.unit(150, "kg"),
  12149. name: "Front",
  12150. image: {
  12151. source: "./media/characters/varg/front.svg",
  12152. extra: 1108 / 1018,
  12153. bottom: 0.0375
  12154. }
  12155. },
  12156. },
  12157. [
  12158. {
  12159. name: "Normal",
  12160. height: math.unit(5, "meters")
  12161. },
  12162. {
  12163. name: "Macro",
  12164. height: math.unit(200, "meters")
  12165. },
  12166. {
  12167. name: "Megamacro",
  12168. height: math.unit(20, "kilometers")
  12169. },
  12170. {
  12171. name: "True Size",
  12172. height: math.unit(211, "km"),
  12173. default: true
  12174. },
  12175. {
  12176. name: "Gigamacro",
  12177. height: math.unit(1000, "km")
  12178. },
  12179. {
  12180. name: "Gigamacro+",
  12181. height: math.unit(8000, "km")
  12182. },
  12183. {
  12184. name: "Teramacro",
  12185. height: math.unit(1000000, "km")
  12186. },
  12187. ]
  12188. ))
  12189. characterMakers.push(() => makeCharacter(
  12190. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12191. {
  12192. front: {
  12193. height: math.unit(7 + 7 / 12, "feet"),
  12194. weight: math.unit(267, "lb"),
  12195. name: "Front",
  12196. image: {
  12197. source: "./media/characters/dayza/front.svg",
  12198. extra: 1262 / 1200,
  12199. bottom: 0.035
  12200. }
  12201. },
  12202. side: {
  12203. height: math.unit(7 + 7 / 12, "feet"),
  12204. weight: math.unit(267, "lb"),
  12205. name: "Side",
  12206. image: {
  12207. source: "./media/characters/dayza/side.svg",
  12208. extra: 1295 / 1245,
  12209. bottom: 0.05
  12210. }
  12211. },
  12212. back: {
  12213. height: math.unit(7 + 7 / 12, "feet"),
  12214. weight: math.unit(267, "lb"),
  12215. name: "Back",
  12216. image: {
  12217. source: "./media/characters/dayza/back.svg",
  12218. extra: 1241 / 1170
  12219. }
  12220. },
  12221. },
  12222. [
  12223. {
  12224. name: "Normal",
  12225. height: math.unit(7 + 7 / 12, "feet"),
  12226. default: true
  12227. },
  12228. {
  12229. name: "Macro",
  12230. height: math.unit(155, "feet")
  12231. },
  12232. ]
  12233. ))
  12234. characterMakers.push(() => makeCharacter(
  12235. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12236. {
  12237. front: {
  12238. height: math.unit(6 + 5 / 12, "feet"),
  12239. weight: math.unit(160, "lb"),
  12240. name: "Front",
  12241. image: {
  12242. source: "./media/characters/xanthos/front.svg",
  12243. extra: 1,
  12244. bottom: 0.04
  12245. }
  12246. },
  12247. back: {
  12248. height: math.unit(6 + 5 / 12, "feet"),
  12249. weight: math.unit(160, "lb"),
  12250. name: "Back",
  12251. image: {
  12252. source: "./media/characters/xanthos/back.svg",
  12253. extra: 1,
  12254. bottom: 0.03
  12255. }
  12256. },
  12257. hand: {
  12258. height: math.unit(0.928, "feet"),
  12259. name: "Hand",
  12260. image: {
  12261. source: "./media/characters/xanthos/hand.svg"
  12262. }
  12263. },
  12264. foot: {
  12265. height: math.unit(1.286, "feet"),
  12266. name: "Foot",
  12267. image: {
  12268. source: "./media/characters/xanthos/foot.svg"
  12269. }
  12270. },
  12271. },
  12272. [
  12273. {
  12274. name: "Normal",
  12275. height: math.unit(6 + 5 / 12, "feet"),
  12276. default: true
  12277. },
  12278. {
  12279. name: "Normal+",
  12280. height: math.unit(6, "meters")
  12281. },
  12282. {
  12283. name: "Macro",
  12284. height: math.unit(40, "feet")
  12285. },
  12286. {
  12287. name: "Macro+",
  12288. height: math.unit(200, "meters")
  12289. },
  12290. {
  12291. name: "Megamacro",
  12292. height: math.unit(20, "km")
  12293. },
  12294. {
  12295. name: "Megamacro+",
  12296. height: math.unit(100, "km")
  12297. },
  12298. ]
  12299. ))
  12300. characterMakers.push(() => makeCharacter(
  12301. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12302. {
  12303. front: {
  12304. height: math.unit(6 + 3 / 12, "feet"),
  12305. weight: math.unit(215, "lb"),
  12306. name: "Front",
  12307. image: {
  12308. source: "./media/characters/grynn/front.svg",
  12309. extra: 4627 / 4209,
  12310. bottom: 0.047
  12311. }
  12312. },
  12313. },
  12314. [
  12315. {
  12316. name: "Micro",
  12317. height: math.unit(6, "inches")
  12318. },
  12319. {
  12320. name: "Normal",
  12321. height: math.unit(6 + 3 / 12, "feet"),
  12322. default: true
  12323. },
  12324. {
  12325. name: "Big",
  12326. height: math.unit(104, "feet")
  12327. },
  12328. {
  12329. name: "Macro",
  12330. height: math.unit(944, "feet")
  12331. },
  12332. {
  12333. name: "Macro+",
  12334. height: math.unit(9480, "feet")
  12335. },
  12336. {
  12337. name: "Megamacro",
  12338. height: math.unit(78752, "feet")
  12339. },
  12340. {
  12341. name: "Megamacro+",
  12342. height: math.unit(630128, "feet")
  12343. },
  12344. {
  12345. name: "Megamacro++",
  12346. height: math.unit(3150695, "feet")
  12347. },
  12348. ]
  12349. ))
  12350. characterMakers.push(() => makeCharacter(
  12351. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12352. {
  12353. front: {
  12354. height: math.unit(7 + 5 / 12, "feet"),
  12355. weight: math.unit(450, "lb"),
  12356. name: "Front",
  12357. image: {
  12358. source: "./media/characters/mocha-aura/front.svg",
  12359. extra: 1907 / 1817,
  12360. bottom: 0.04
  12361. }
  12362. },
  12363. back: {
  12364. height: math.unit(7 + 5 / 12, "feet"),
  12365. weight: math.unit(450, "lb"),
  12366. name: "Back",
  12367. image: {
  12368. source: "./media/characters/mocha-aura/back.svg",
  12369. extra: 1900 / 1825,
  12370. bottom: 0.045
  12371. }
  12372. },
  12373. },
  12374. [
  12375. {
  12376. name: "Nano",
  12377. height: math.unit(1, "nm")
  12378. },
  12379. {
  12380. name: "Megamicro",
  12381. height: math.unit(1, "mm")
  12382. },
  12383. {
  12384. name: "Micro",
  12385. height: math.unit(3, "inches")
  12386. },
  12387. {
  12388. name: "Normal",
  12389. height: math.unit(7 + 5 / 12, "feet"),
  12390. default: true
  12391. },
  12392. {
  12393. name: "Macro",
  12394. height: math.unit(30, "feet")
  12395. },
  12396. {
  12397. name: "Megamacro",
  12398. height: math.unit(3500, "feet")
  12399. },
  12400. {
  12401. name: "Teramacro",
  12402. height: math.unit(500000, "miles")
  12403. },
  12404. {
  12405. name: "Petamacro",
  12406. height: math.unit(50000000000000000, "parsecs")
  12407. },
  12408. ]
  12409. ))
  12410. characterMakers.push(() => makeCharacter(
  12411. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12412. {
  12413. front: {
  12414. height: math.unit(6, "feet"),
  12415. weight: math.unit(150, "lb"),
  12416. name: "Front",
  12417. image: {
  12418. source: "./media/characters/ilisha-devya/front.svg",
  12419. extra: 1,
  12420. bottom: 0.175
  12421. }
  12422. },
  12423. back: {
  12424. height: math.unit(6, "feet"),
  12425. weight: math.unit(150, "lb"),
  12426. name: "Back",
  12427. image: {
  12428. source: "./media/characters/ilisha-devya/back.svg",
  12429. extra: 1,
  12430. bottom: 0.015
  12431. }
  12432. },
  12433. },
  12434. [
  12435. {
  12436. name: "Macro",
  12437. height: math.unit(500, "feet"),
  12438. default: true
  12439. },
  12440. {
  12441. name: "Megamacro",
  12442. height: math.unit(10, "miles")
  12443. },
  12444. {
  12445. name: "Gigamacro",
  12446. height: math.unit(100000, "miles")
  12447. },
  12448. {
  12449. name: "Examacro",
  12450. height: math.unit(1e9, "lightyears")
  12451. },
  12452. {
  12453. name: "Omniversal",
  12454. height: math.unit(1e33, "lightyears")
  12455. },
  12456. {
  12457. name: "Beyond Infinite",
  12458. height: math.unit(1e100, "lightyears")
  12459. },
  12460. ]
  12461. ))
  12462. characterMakers.push(() => makeCharacter(
  12463. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12464. {
  12465. Side: {
  12466. height: math.unit(6, "feet"),
  12467. weight: math.unit(150, "lb"),
  12468. name: "Side",
  12469. image: {
  12470. source: "./media/characters/mira/side.svg",
  12471. extra: 900 / 799,
  12472. bottom: 0.02
  12473. }
  12474. },
  12475. },
  12476. [
  12477. {
  12478. name: "Human Size",
  12479. height: math.unit(6, "feet")
  12480. },
  12481. {
  12482. name: "Macro",
  12483. height: math.unit(100, "feet"),
  12484. default: true
  12485. },
  12486. {
  12487. name: "Megamacro",
  12488. height: math.unit(10, "miles")
  12489. },
  12490. {
  12491. name: "Gigamacro",
  12492. height: math.unit(25000, "miles")
  12493. },
  12494. {
  12495. name: "Teramacro",
  12496. height: math.unit(300, "AU")
  12497. },
  12498. {
  12499. name: "Full Size",
  12500. height: math.unit(4.5e10, "lightyears")
  12501. },
  12502. ]
  12503. ))
  12504. characterMakers.push(() => makeCharacter(
  12505. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12506. {
  12507. front: {
  12508. height: math.unit(6, "feet"),
  12509. weight: math.unit(150, "lb"),
  12510. name: "Front",
  12511. image: {
  12512. source: "./media/characters/holly/front.svg",
  12513. extra: 639 / 606
  12514. }
  12515. },
  12516. back: {
  12517. height: math.unit(6, "feet"),
  12518. weight: math.unit(150, "lb"),
  12519. name: "Back",
  12520. image: {
  12521. source: "./media/characters/holly/back.svg",
  12522. extra: 623 / 598
  12523. }
  12524. },
  12525. frontWorking: {
  12526. height: math.unit(6, "feet"),
  12527. weight: math.unit(150, "lb"),
  12528. name: "Front (Working)",
  12529. image: {
  12530. source: "./media/characters/holly/front-working.svg",
  12531. extra: 607 / 577,
  12532. bottom: 0.048
  12533. }
  12534. },
  12535. },
  12536. [
  12537. {
  12538. name: "Normal",
  12539. height: math.unit(12 + 3 / 12, "feet"),
  12540. default: true
  12541. },
  12542. ]
  12543. ))
  12544. characterMakers.push(() => makeCharacter(
  12545. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12546. {
  12547. front: {
  12548. height: math.unit(6, "feet"),
  12549. weight: math.unit(150, "lb"),
  12550. name: "Front",
  12551. image: {
  12552. source: "./media/characters/porter/front.svg",
  12553. extra: 1,
  12554. bottom: 0.01
  12555. }
  12556. },
  12557. frontRobes: {
  12558. height: math.unit(6, "feet"),
  12559. weight: math.unit(150, "lb"),
  12560. name: "Front (Robes)",
  12561. image: {
  12562. source: "./media/characters/porter/front-robes.svg",
  12563. extra: 1.01,
  12564. bottom: 0.01
  12565. }
  12566. },
  12567. },
  12568. [
  12569. {
  12570. name: "Normal",
  12571. height: math.unit(11 + 9 / 12, "feet"),
  12572. default: true
  12573. },
  12574. ]
  12575. ))
  12576. characterMakers.push(() => makeCharacter(
  12577. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12578. {
  12579. legendary: {
  12580. height: math.unit(6, "feet"),
  12581. weight: math.unit(150, "lb"),
  12582. name: "Legendary",
  12583. image: {
  12584. source: "./media/characters/lucy/legendary.svg",
  12585. extra: 1355 / 1100,
  12586. bottom: 0.045
  12587. }
  12588. },
  12589. },
  12590. [
  12591. {
  12592. name: "Legendary",
  12593. height: math.unit(86882 * 2, "miles"),
  12594. default: true
  12595. },
  12596. ]
  12597. ))
  12598. characterMakers.push(() => makeCharacter(
  12599. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12600. {
  12601. front: {
  12602. height: math.unit(6, "feet"),
  12603. weight: math.unit(150, "lb"),
  12604. name: "Front",
  12605. image: {
  12606. source: "./media/characters/drusilla/front.svg",
  12607. extra: 678 / 635,
  12608. bottom: 0.03
  12609. }
  12610. },
  12611. back: {
  12612. height: math.unit(6, "feet"),
  12613. weight: math.unit(150, "lb"),
  12614. name: "Back",
  12615. image: {
  12616. source: "./media/characters/drusilla/back.svg",
  12617. extra: 678 / 635,
  12618. bottom: 0.005
  12619. }
  12620. },
  12621. },
  12622. [
  12623. {
  12624. name: "Macro",
  12625. height: math.unit(100, "feet")
  12626. },
  12627. {
  12628. name: "Canon Height",
  12629. height: math.unit(2000, "feet"),
  12630. default: true
  12631. },
  12632. ]
  12633. ))
  12634. characterMakers.push(() => makeCharacter(
  12635. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12636. {
  12637. front: {
  12638. height: math.unit(6, "feet"),
  12639. weight: math.unit(180, "lb"),
  12640. name: "Front",
  12641. image: {
  12642. source: "./media/characters/renard-thatch/front.svg",
  12643. extra: 2411 / 2275,
  12644. bottom: 0.01
  12645. }
  12646. },
  12647. frontPosing: {
  12648. height: math.unit(6, "feet"),
  12649. weight: math.unit(180, "lb"),
  12650. name: "Front (Posing)",
  12651. image: {
  12652. source: "./media/characters/renard-thatch/front-posing.svg",
  12653. extra: 2381 / 2261,
  12654. bottom: 0.01
  12655. }
  12656. },
  12657. back: {
  12658. height: math.unit(6, "feet"),
  12659. weight: math.unit(180, "lb"),
  12660. name: "Back",
  12661. image: {
  12662. source: "./media/characters/renard-thatch/back.svg",
  12663. extra: 2428 / 2288
  12664. }
  12665. },
  12666. },
  12667. [
  12668. {
  12669. name: "Micro",
  12670. height: math.unit(3, "inches")
  12671. },
  12672. {
  12673. name: "Default",
  12674. height: math.unit(6, "feet"),
  12675. default: true
  12676. },
  12677. {
  12678. name: "Macro",
  12679. height: math.unit(75, "feet")
  12680. },
  12681. ]
  12682. ))
  12683. characterMakers.push(() => makeCharacter(
  12684. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12685. {
  12686. front: {
  12687. height: math.unit(1450, "feet"),
  12688. weight: math.unit(1.21e6, "tons"),
  12689. name: "Front",
  12690. image: {
  12691. source: "./media/characters/sekvra/front.svg",
  12692. extra: 1,
  12693. bottom: 0.03
  12694. }
  12695. },
  12696. frontClothed: {
  12697. height: math.unit(1450, "feet"),
  12698. weight: math.unit(1.21e6, "tons"),
  12699. name: "Front (Clothed)",
  12700. image: {
  12701. source: "./media/characters/sekvra/front-clothed.svg",
  12702. extra: 1,
  12703. bottom: 0.03
  12704. }
  12705. },
  12706. side: {
  12707. height: math.unit(1450, "feet"),
  12708. weight: math.unit(1.21e6, "tons"),
  12709. name: "Side",
  12710. image: {
  12711. source: "./media/characters/sekvra/side.svg",
  12712. extra: 1,
  12713. bottom: 0.025
  12714. }
  12715. },
  12716. back: {
  12717. height: math.unit(1450, "feet"),
  12718. weight: math.unit(1.21e6, "tons"),
  12719. name: "Back",
  12720. image: {
  12721. source: "./media/characters/sekvra/back.svg",
  12722. extra: 1,
  12723. bottom: 0.005
  12724. }
  12725. },
  12726. },
  12727. [
  12728. {
  12729. name: "Macro",
  12730. height: math.unit(1450, "feet"),
  12731. default: true
  12732. },
  12733. {
  12734. name: "Megamacro",
  12735. height: math.unit(15000, "feet")
  12736. },
  12737. ]
  12738. ))
  12739. characterMakers.push(() => makeCharacter(
  12740. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12741. {
  12742. front: {
  12743. height: math.unit(6, "feet"),
  12744. weight: math.unit(150, "lb"),
  12745. name: "Front",
  12746. image: {
  12747. source: "./media/characters/carmine/front.svg",
  12748. extra: 1,
  12749. bottom: 0.035
  12750. }
  12751. },
  12752. frontArmor: {
  12753. height: math.unit(6, "feet"),
  12754. weight: math.unit(150, "lb"),
  12755. name: "Front (Armor)",
  12756. image: {
  12757. source: "./media/characters/carmine/front-armor.svg",
  12758. extra: 1,
  12759. bottom: 0.035
  12760. }
  12761. },
  12762. },
  12763. [
  12764. {
  12765. name: "Large",
  12766. height: math.unit(1, "mile")
  12767. },
  12768. {
  12769. name: "Huge",
  12770. height: math.unit(40, "miles"),
  12771. default: true
  12772. },
  12773. {
  12774. name: "Colossal",
  12775. height: math.unit(2500, "miles")
  12776. },
  12777. ]
  12778. ))
  12779. characterMakers.push(() => makeCharacter(
  12780. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12781. {
  12782. front: {
  12783. height: math.unit(6, "feet"),
  12784. weight: math.unit(150, "lb"),
  12785. name: "Front",
  12786. image: {
  12787. source: "./media/characters/elyssia/front.svg",
  12788. extra: 2201 / 2035,
  12789. bottom: 0.05
  12790. }
  12791. },
  12792. frontClothed: {
  12793. height: math.unit(6, "feet"),
  12794. weight: math.unit(150, "lb"),
  12795. name: "Front (Clothed)",
  12796. image: {
  12797. source: "./media/characters/elyssia/front-clothed.svg",
  12798. extra: 2201 / 2035,
  12799. bottom: 0.05
  12800. }
  12801. },
  12802. back: {
  12803. height: math.unit(6, "feet"),
  12804. weight: math.unit(150, "lb"),
  12805. name: "Back",
  12806. image: {
  12807. source: "./media/characters/elyssia/back.svg",
  12808. extra: 2201 / 2035,
  12809. bottom: 0.013
  12810. }
  12811. },
  12812. },
  12813. [
  12814. {
  12815. name: "Smaller",
  12816. height: math.unit(150, "feet")
  12817. },
  12818. {
  12819. name: "Standard",
  12820. height: math.unit(1400, "feet"),
  12821. default: true
  12822. },
  12823. {
  12824. name: "Distracted",
  12825. height: math.unit(15000, "feet")
  12826. },
  12827. ]
  12828. ))
  12829. characterMakers.push(() => makeCharacter(
  12830. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12831. {
  12832. front: {
  12833. height: math.unit(7 + 4 / 12, "feet"),
  12834. weight: math.unit(500, "lb"),
  12835. name: "Front",
  12836. image: {
  12837. source: "./media/characters/geno-maxwell/front.svg",
  12838. extra: 2207 / 2040,
  12839. bottom: 0.015
  12840. }
  12841. },
  12842. },
  12843. [
  12844. {
  12845. name: "Micro",
  12846. height: math.unit(3, "inches")
  12847. },
  12848. {
  12849. name: "Normal",
  12850. height: math.unit(7 + 4 / 12, "feet"),
  12851. default: true
  12852. },
  12853. {
  12854. name: "Macro",
  12855. height: math.unit(220, "feet")
  12856. },
  12857. {
  12858. name: "Megamacro",
  12859. height: math.unit(11, "miles")
  12860. },
  12861. ]
  12862. ))
  12863. characterMakers.push(() => makeCharacter(
  12864. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12865. {
  12866. front: {
  12867. height: math.unit(7 + 4 / 12, "feet"),
  12868. weight: math.unit(500, "lb"),
  12869. name: "Front",
  12870. image: {
  12871. source: "./media/characters/regena-maxwell/front.svg",
  12872. extra: 3115 / 2770,
  12873. bottom: 0.02
  12874. }
  12875. },
  12876. },
  12877. [
  12878. {
  12879. name: "Normal",
  12880. height: math.unit(7 + 4 / 12, "feet"),
  12881. default: true
  12882. },
  12883. {
  12884. name: "Macro",
  12885. height: math.unit(220, "feet")
  12886. },
  12887. {
  12888. name: "Megamacro",
  12889. height: math.unit(11, "miles")
  12890. },
  12891. ]
  12892. ))
  12893. characterMakers.push(() => makeCharacter(
  12894. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12895. {
  12896. front: {
  12897. height: math.unit(6, "feet"),
  12898. weight: math.unit(150, "lb"),
  12899. name: "Front",
  12900. image: {
  12901. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12902. extra: 860 / 690,
  12903. bottom: 0.03
  12904. }
  12905. },
  12906. },
  12907. [
  12908. {
  12909. name: "Normal",
  12910. height: math.unit(1.7, "meters"),
  12911. default: true
  12912. },
  12913. ]
  12914. ))
  12915. characterMakers.push(() => makeCharacter(
  12916. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12917. {
  12918. front: {
  12919. height: math.unit(6, "feet"),
  12920. weight: math.unit(150, "lb"),
  12921. name: "Front",
  12922. image: {
  12923. source: "./media/characters/quilly/front.svg",
  12924. extra: 890 / 776
  12925. }
  12926. },
  12927. },
  12928. [
  12929. {
  12930. name: "Gigamacro",
  12931. height: math.unit(404090, "miles"),
  12932. default: true
  12933. },
  12934. ]
  12935. ))
  12936. characterMakers.push(() => makeCharacter(
  12937. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12938. {
  12939. front: {
  12940. height: math.unit(7 + 8 / 12, "feet"),
  12941. weight: math.unit(350, "lb"),
  12942. name: "Front",
  12943. image: {
  12944. source: "./media/characters/tempest/front.svg",
  12945. extra: 1175 / 1086,
  12946. bottom: 0.02
  12947. }
  12948. },
  12949. },
  12950. [
  12951. {
  12952. name: "Normal",
  12953. height: math.unit(7 + 8 / 12, "feet"),
  12954. default: true
  12955. },
  12956. ]
  12957. ))
  12958. characterMakers.push(() => makeCharacter(
  12959. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12960. {
  12961. side: {
  12962. height: math.unit(4 + 5 / 12, "feet"),
  12963. weight: math.unit(80, "lb"),
  12964. name: "Side",
  12965. image: {
  12966. source: "./media/characters/rodger/side.svg",
  12967. extra: 1235 / 1118
  12968. }
  12969. },
  12970. },
  12971. [
  12972. {
  12973. name: "Micro",
  12974. height: math.unit(1, "inch")
  12975. },
  12976. {
  12977. name: "Normal",
  12978. height: math.unit(4 + 5 / 12, "feet"),
  12979. default: true
  12980. },
  12981. {
  12982. name: "Macro",
  12983. height: math.unit(120, "feet")
  12984. },
  12985. ]
  12986. ))
  12987. characterMakers.push(() => makeCharacter(
  12988. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12989. {
  12990. front: {
  12991. height: math.unit(6, "feet"),
  12992. weight: math.unit(150, "lb"),
  12993. name: "Front",
  12994. image: {
  12995. source: "./media/characters/danyel/front.svg",
  12996. extra: 1185 / 1123,
  12997. bottom: 0.05
  12998. }
  12999. },
  13000. },
  13001. [
  13002. {
  13003. name: "Shrunken",
  13004. height: math.unit(0.5, "mm")
  13005. },
  13006. {
  13007. name: "Micro",
  13008. height: math.unit(1, "mm"),
  13009. default: true
  13010. },
  13011. {
  13012. name: "Upsized",
  13013. height: math.unit(5 + 5 / 12, "feet")
  13014. },
  13015. ]
  13016. ))
  13017. characterMakers.push(() => makeCharacter(
  13018. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13019. {
  13020. front: {
  13021. height: math.unit(5 + 6 / 12, "feet"),
  13022. weight: math.unit(200, "lb"),
  13023. name: "Front",
  13024. image: {
  13025. source: "./media/characters/vivian-bijoux/front.svg",
  13026. extra: 1,
  13027. bottom: 0.072
  13028. }
  13029. },
  13030. },
  13031. [
  13032. {
  13033. name: "Normal",
  13034. height: math.unit(5 + 6 / 12, "feet"),
  13035. default: true
  13036. },
  13037. {
  13038. name: "Bad Dream",
  13039. height: math.unit(500, "feet")
  13040. },
  13041. {
  13042. name: "Nightmare",
  13043. height: math.unit(500, "miles")
  13044. },
  13045. ]
  13046. ))
  13047. characterMakers.push(() => makeCharacter(
  13048. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13049. {
  13050. front: {
  13051. height: math.unit(6 + 1 / 12, "feet"),
  13052. weight: math.unit(260, "lb"),
  13053. name: "Front",
  13054. image: {
  13055. source: "./media/characters/zeta/front.svg",
  13056. extra: 1968 / 1889,
  13057. bottom: 0.06
  13058. }
  13059. },
  13060. back: {
  13061. height: math.unit(6 + 1 / 12, "feet"),
  13062. weight: math.unit(260, "lb"),
  13063. name: "Back",
  13064. image: {
  13065. source: "./media/characters/zeta/back.svg",
  13066. extra: 1944 / 1858,
  13067. bottom: 0.03
  13068. }
  13069. },
  13070. hand: {
  13071. height: math.unit(1.112, "feet"),
  13072. name: "Hand",
  13073. image: {
  13074. source: "./media/characters/zeta/hand.svg"
  13075. }
  13076. },
  13077. foot: {
  13078. height: math.unit(1.48, "feet"),
  13079. name: "Foot",
  13080. image: {
  13081. source: "./media/characters/zeta/foot.svg"
  13082. }
  13083. },
  13084. },
  13085. [
  13086. {
  13087. name: "Micro",
  13088. height: math.unit(6, "inches")
  13089. },
  13090. {
  13091. name: "Normal",
  13092. height: math.unit(6 + 1 / 12, "feet"),
  13093. default: true
  13094. },
  13095. {
  13096. name: "Macro",
  13097. height: math.unit(20, "feet")
  13098. },
  13099. ]
  13100. ))
  13101. characterMakers.push(() => makeCharacter(
  13102. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13103. {
  13104. front: {
  13105. height: math.unit(6, "feet"),
  13106. weight: math.unit(150, "lb"),
  13107. name: "Front",
  13108. image: {
  13109. source: "./media/characters/jamie-larsen/front.svg",
  13110. extra: 962 / 933,
  13111. bottom: 0.02
  13112. }
  13113. },
  13114. back: {
  13115. height: math.unit(6, "feet"),
  13116. weight: math.unit(150, "lb"),
  13117. name: "Back",
  13118. image: {
  13119. source: "./media/characters/jamie-larsen/back.svg",
  13120. extra: 997 / 946
  13121. }
  13122. },
  13123. },
  13124. [
  13125. {
  13126. name: "Macro",
  13127. height: math.unit(28 + 7 / 12, "feet"),
  13128. default: true
  13129. },
  13130. {
  13131. name: "Macro+",
  13132. height: math.unit(180, "feet")
  13133. },
  13134. {
  13135. name: "Megamacro",
  13136. height: math.unit(10, "miles")
  13137. },
  13138. {
  13139. name: "Gigamacro",
  13140. height: math.unit(200000, "miles")
  13141. },
  13142. ]
  13143. ))
  13144. characterMakers.push(() => makeCharacter(
  13145. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13146. {
  13147. front: {
  13148. height: math.unit(6, "feet"),
  13149. weight: math.unit(120, "lb"),
  13150. name: "Front",
  13151. image: {
  13152. source: "./media/characters/vance/front.svg",
  13153. extra: 1980 / 1890,
  13154. bottom: 0.09
  13155. }
  13156. },
  13157. back: {
  13158. height: math.unit(6, "feet"),
  13159. weight: math.unit(120, "lb"),
  13160. name: "Back",
  13161. image: {
  13162. source: "./media/characters/vance/back.svg",
  13163. extra: 2081 / 1994,
  13164. bottom: 0.014
  13165. }
  13166. },
  13167. hand: {
  13168. height: math.unit(0.88, "feet"),
  13169. name: "Hand",
  13170. image: {
  13171. source: "./media/characters/vance/hand.svg"
  13172. }
  13173. },
  13174. foot: {
  13175. height: math.unit(0.64, "feet"),
  13176. name: "Foot",
  13177. image: {
  13178. source: "./media/characters/vance/foot.svg"
  13179. }
  13180. },
  13181. },
  13182. [
  13183. {
  13184. name: "Small",
  13185. height: math.unit(90, "feet"),
  13186. default: true
  13187. },
  13188. {
  13189. name: "Macro",
  13190. height: math.unit(100, "meters")
  13191. },
  13192. {
  13193. name: "Megamacro",
  13194. height: math.unit(15, "miles")
  13195. },
  13196. ]
  13197. ))
  13198. characterMakers.push(() => makeCharacter(
  13199. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13200. {
  13201. front: {
  13202. height: math.unit(6, "feet"),
  13203. weight: math.unit(180, "lb"),
  13204. name: "Front",
  13205. image: {
  13206. source: "./media/characters/xochitl/front.svg",
  13207. extra: 2297 / 2261,
  13208. bottom: 0.065
  13209. }
  13210. },
  13211. back: {
  13212. height: math.unit(6, "feet"),
  13213. weight: math.unit(180, "lb"),
  13214. name: "Back",
  13215. image: {
  13216. source: "./media/characters/xochitl/back.svg",
  13217. extra: 2386 / 2354,
  13218. bottom: 0.01
  13219. }
  13220. },
  13221. foot: {
  13222. height: math.unit(6 / 5 * 1.15, "feet"),
  13223. weight: math.unit(150, "lb"),
  13224. name: "Foot",
  13225. image: {
  13226. source: "./media/characters/xochitl/foot.svg"
  13227. }
  13228. },
  13229. },
  13230. [
  13231. {
  13232. name: "Macro",
  13233. height: math.unit(80, "feet")
  13234. },
  13235. {
  13236. name: "Macro+",
  13237. height: math.unit(400, "feet"),
  13238. default: true
  13239. },
  13240. {
  13241. name: "Gigamacro",
  13242. height: math.unit(80000, "miles")
  13243. },
  13244. {
  13245. name: "Gigamacro+",
  13246. height: math.unit(400000, "miles")
  13247. },
  13248. {
  13249. name: "Teramacro",
  13250. height: math.unit(300, "AU")
  13251. },
  13252. ]
  13253. ))
  13254. characterMakers.push(() => makeCharacter(
  13255. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13256. {
  13257. front: {
  13258. height: math.unit(6, "feet"),
  13259. weight: math.unit(150, "lb"),
  13260. name: "Front",
  13261. image: {
  13262. source: "./media/characters/vincent/front.svg",
  13263. extra: 1130 / 1080,
  13264. bottom: 0.055
  13265. }
  13266. },
  13267. beak: {
  13268. height: math.unit(6 * 0.1, "feet"),
  13269. name: "Beak",
  13270. image: {
  13271. source: "./media/characters/vincent/beak.svg"
  13272. }
  13273. },
  13274. hand: {
  13275. height: math.unit(6 * 0.85, "feet"),
  13276. weight: math.unit(150, "lb"),
  13277. name: "Hand",
  13278. image: {
  13279. source: "./media/characters/vincent/hand.svg"
  13280. }
  13281. },
  13282. foot: {
  13283. height: math.unit(6 * 0.19, "feet"),
  13284. weight: math.unit(150, "lb"),
  13285. name: "Foot",
  13286. image: {
  13287. source: "./media/characters/vincent/foot.svg"
  13288. }
  13289. },
  13290. },
  13291. [
  13292. {
  13293. name: "Base",
  13294. height: math.unit(6 + 5 / 12, "feet"),
  13295. default: true
  13296. },
  13297. {
  13298. name: "Macro",
  13299. height: math.unit(300, "feet")
  13300. },
  13301. {
  13302. name: "Megamacro",
  13303. height: math.unit(2, "miles")
  13304. },
  13305. {
  13306. name: "Gigamacro",
  13307. height: math.unit(1000, "miles")
  13308. },
  13309. ]
  13310. ))
  13311. characterMakers.push(() => makeCharacter(
  13312. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13313. {
  13314. front: {
  13315. height: math.unit(6 + 2 / 12, "feet"),
  13316. weight: math.unit(265, "lb"),
  13317. name: "Front",
  13318. image: {
  13319. source: "./media/characters/jay/front.svg",
  13320. extra: 1510 / 1430,
  13321. bottom: 0.042
  13322. }
  13323. },
  13324. back: {
  13325. height: math.unit(6 + 2 / 12, "feet"),
  13326. weight: math.unit(265, "lb"),
  13327. name: "Back",
  13328. image: {
  13329. source: "./media/characters/jay/back.svg",
  13330. extra: 1510 / 1430,
  13331. bottom: 0.025
  13332. }
  13333. },
  13334. clothed: {
  13335. height: math.unit(6 + 2 / 12, "feet"),
  13336. weight: math.unit(265, "lb"),
  13337. name: "Front (Clothed)",
  13338. image: {
  13339. source: "./media/characters/jay/clothed.svg",
  13340. extra: 744 / 699,
  13341. bottom: 0.043
  13342. }
  13343. },
  13344. head: {
  13345. height: math.unit(1.772, "feet"),
  13346. name: "Head",
  13347. image: {
  13348. source: "./media/characters/jay/head.svg"
  13349. }
  13350. },
  13351. sizeRay: {
  13352. height: math.unit(1.331, "feet"),
  13353. name: "Size Ray",
  13354. image: {
  13355. source: "./media/characters/jay/size-ray.svg"
  13356. }
  13357. },
  13358. },
  13359. [
  13360. {
  13361. name: "Micro",
  13362. height: math.unit(1, "inch")
  13363. },
  13364. {
  13365. name: "Normal",
  13366. height: math.unit(6 + 2 / 12, "feet"),
  13367. default: true
  13368. },
  13369. {
  13370. name: "Macro",
  13371. height: math.unit(1, "mile")
  13372. },
  13373. {
  13374. name: "Megamacro",
  13375. height: math.unit(100, "miles")
  13376. },
  13377. ]
  13378. ))
  13379. characterMakers.push(() => makeCharacter(
  13380. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13381. {
  13382. front: {
  13383. height: math.unit(2, "meters"),
  13384. weight: math.unit(500, "kg"),
  13385. name: "Front",
  13386. image: {
  13387. source: "./media/characters/coatl/front.svg",
  13388. extra: 3948 / 3500,
  13389. bottom: 0.082
  13390. }
  13391. },
  13392. },
  13393. [
  13394. {
  13395. name: "Normal",
  13396. height: math.unit(4, "meters")
  13397. },
  13398. {
  13399. name: "Macro",
  13400. height: math.unit(100, "meters"),
  13401. default: true
  13402. },
  13403. {
  13404. name: "Macro+",
  13405. height: math.unit(300, "meters")
  13406. },
  13407. {
  13408. name: "Megamacro",
  13409. height: math.unit(3, "gigameters")
  13410. },
  13411. {
  13412. name: "Megamacro+",
  13413. height: math.unit(300, "terameters")
  13414. },
  13415. {
  13416. name: "Megamacro++",
  13417. height: math.unit(3, "lightyears")
  13418. },
  13419. ]
  13420. ))
  13421. characterMakers.push(() => makeCharacter(
  13422. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13423. {
  13424. front: {
  13425. height: math.unit(6, "feet"),
  13426. weight: math.unit(50, "kg"),
  13427. name: "front",
  13428. image: {
  13429. source: "./media/characters/shiroryu/front.svg",
  13430. extra: 1990 / 1935
  13431. }
  13432. },
  13433. },
  13434. [
  13435. {
  13436. name: "Mortal Mingling",
  13437. height: math.unit(3, "meters")
  13438. },
  13439. {
  13440. name: "Kaiju-ish",
  13441. height: math.unit(250, "meters")
  13442. },
  13443. {
  13444. name: "Somewhat Godly",
  13445. height: math.unit(400, "km"),
  13446. default: true
  13447. },
  13448. {
  13449. name: "Planetary",
  13450. height: math.unit(300, "megameters")
  13451. },
  13452. {
  13453. name: "Galaxy-dwarfing",
  13454. height: math.unit(450, "kiloparsecs")
  13455. },
  13456. {
  13457. name: "Universe Eater",
  13458. height: math.unit(150, "gigaparsecs")
  13459. },
  13460. {
  13461. name: "Almost Immeasurable",
  13462. height: math.unit(1.3e266, "yottaparsecs")
  13463. },
  13464. ]
  13465. ))
  13466. characterMakers.push(() => makeCharacter(
  13467. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13468. {
  13469. front: {
  13470. height: math.unit(6, "feet"),
  13471. weight: math.unit(150, "lb"),
  13472. name: "Front",
  13473. image: {
  13474. source: "./media/characters/umeko/front.svg",
  13475. extra: 1,
  13476. bottom: 0.019
  13477. }
  13478. },
  13479. frontArmored: {
  13480. height: math.unit(6, "feet"),
  13481. weight: math.unit(150, "lb"),
  13482. name: "Front (Armored)",
  13483. image: {
  13484. source: "./media/characters/umeko/front-armored.svg",
  13485. extra: 1,
  13486. bottom: 0.021
  13487. }
  13488. },
  13489. },
  13490. [
  13491. {
  13492. name: "Macro",
  13493. height: math.unit(220, "feet"),
  13494. default: true
  13495. },
  13496. {
  13497. name: "Guardian Dragon",
  13498. height: math.unit(50, "miles")
  13499. },
  13500. {
  13501. name: "Cosmic",
  13502. height: math.unit(800000, "miles")
  13503. },
  13504. ]
  13505. ))
  13506. characterMakers.push(() => makeCharacter(
  13507. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13508. {
  13509. front: {
  13510. height: math.unit(6, "feet"),
  13511. weight: math.unit(150, "lb"),
  13512. name: "Front",
  13513. image: {
  13514. source: "./media/characters/cassidy/front.svg",
  13515. extra: 1,
  13516. bottom: 0.043
  13517. }
  13518. },
  13519. },
  13520. [
  13521. {
  13522. name: "Canon Height",
  13523. height: math.unit(120, "feet"),
  13524. default: true
  13525. },
  13526. {
  13527. name: "Macro+",
  13528. height: math.unit(400, "feet")
  13529. },
  13530. {
  13531. name: "Macro++",
  13532. height: math.unit(4000, "feet")
  13533. },
  13534. {
  13535. name: "Megamacro",
  13536. height: math.unit(3, "miles")
  13537. },
  13538. ]
  13539. ))
  13540. characterMakers.push(() => makeCharacter(
  13541. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13542. {
  13543. front: {
  13544. height: math.unit(6, "feet"),
  13545. weight: math.unit(150, "lb"),
  13546. name: "Front",
  13547. image: {
  13548. source: "./media/characters/isaac/front.svg",
  13549. extra: 896 / 815,
  13550. bottom: 0.11
  13551. }
  13552. },
  13553. },
  13554. [
  13555. {
  13556. name: "Human Size",
  13557. height: math.unit(8, "feet"),
  13558. default: true
  13559. },
  13560. {
  13561. name: "Macro",
  13562. height: math.unit(400, "feet")
  13563. },
  13564. {
  13565. name: "Megamacro",
  13566. height: math.unit(50, "miles")
  13567. },
  13568. {
  13569. name: "Canon Height",
  13570. height: math.unit(200, "AU")
  13571. },
  13572. ]
  13573. ))
  13574. characterMakers.push(() => makeCharacter(
  13575. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13576. {
  13577. front: {
  13578. height: math.unit(6, "feet"),
  13579. weight: math.unit(72, "kg"),
  13580. name: "Front",
  13581. image: {
  13582. source: "./media/characters/sleekit/front.svg",
  13583. extra: 4693 / 4487,
  13584. bottom: 0.012
  13585. }
  13586. },
  13587. },
  13588. [
  13589. {
  13590. name: "Minimum Height",
  13591. height: math.unit(10, "meters")
  13592. },
  13593. {
  13594. name: "Smaller",
  13595. height: math.unit(25, "meters")
  13596. },
  13597. {
  13598. name: "Larger",
  13599. height: math.unit(38, "meters"),
  13600. default: true
  13601. },
  13602. {
  13603. name: "Maximum height",
  13604. height: math.unit(100, "meters")
  13605. },
  13606. ]
  13607. ))
  13608. characterMakers.push(() => makeCharacter(
  13609. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13610. {
  13611. front: {
  13612. height: math.unit(6, "feet"),
  13613. weight: math.unit(150, "lb"),
  13614. name: "Front",
  13615. image: {
  13616. source: "./media/characters/nillia/front.svg",
  13617. extra: 2195 / 2037,
  13618. bottom: 0.005
  13619. }
  13620. },
  13621. back: {
  13622. height: math.unit(6, "feet"),
  13623. weight: math.unit(150, "lb"),
  13624. name: "Back",
  13625. image: {
  13626. source: "./media/characters/nillia/back.svg",
  13627. extra: 2195 / 2037,
  13628. bottom: 0.005
  13629. }
  13630. },
  13631. },
  13632. [
  13633. {
  13634. name: "Canon Height",
  13635. height: math.unit(489, "feet"),
  13636. default: true
  13637. }
  13638. ]
  13639. ))
  13640. characterMakers.push(() => makeCharacter(
  13641. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13642. {
  13643. front: {
  13644. height: math.unit(6, "feet"),
  13645. weight: math.unit(150, "lb"),
  13646. name: "Front",
  13647. image: {
  13648. source: "./media/characters/mesmyriza/front.svg",
  13649. extra: 2067 / 1784,
  13650. bottom: 0.035
  13651. }
  13652. },
  13653. foot: {
  13654. height: math.unit(6 / (250 / 35), "feet"),
  13655. name: "Foot",
  13656. image: {
  13657. source: "./media/characters/mesmyriza/foot.svg"
  13658. }
  13659. },
  13660. },
  13661. [
  13662. {
  13663. name: "Macro",
  13664. height: math.unit(457, "meters"),
  13665. default: true
  13666. },
  13667. {
  13668. name: "Megamacro",
  13669. height: math.unit(8, "megameters")
  13670. },
  13671. ]
  13672. ))
  13673. characterMakers.push(() => makeCharacter(
  13674. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13675. {
  13676. front: {
  13677. height: math.unit(6, "feet"),
  13678. weight: math.unit(250, "lb"),
  13679. name: "Front",
  13680. image: {
  13681. source: "./media/characters/saudade/front.svg",
  13682. extra: 1172 / 1139,
  13683. bottom: 0.035
  13684. }
  13685. },
  13686. },
  13687. [
  13688. {
  13689. name: "Micro",
  13690. height: math.unit(3, "inches")
  13691. },
  13692. {
  13693. name: "Normal",
  13694. height: math.unit(6, "feet"),
  13695. default: true
  13696. },
  13697. {
  13698. name: "Macro",
  13699. height: math.unit(50, "feet")
  13700. },
  13701. {
  13702. name: "Megamacro",
  13703. height: math.unit(2800, "feet")
  13704. },
  13705. ]
  13706. ))
  13707. characterMakers.push(() => makeCharacter(
  13708. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13709. {
  13710. front: {
  13711. height: math.unit(5 + 4 / 12, "feet"),
  13712. weight: math.unit(100, "lb"),
  13713. name: "Front",
  13714. image: {
  13715. source: "./media/characters/keireer/front.svg",
  13716. extra: 716 / 666,
  13717. bottom: 0.05
  13718. }
  13719. },
  13720. },
  13721. [
  13722. {
  13723. name: "Normal",
  13724. height: math.unit(5 + 4 / 12, "feet"),
  13725. default: true
  13726. },
  13727. ]
  13728. ))
  13729. characterMakers.push(() => makeCharacter(
  13730. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13731. {
  13732. front: {
  13733. height: math.unit(6, "feet"),
  13734. weight: math.unit(90, "kg"),
  13735. name: "Front",
  13736. image: {
  13737. source: "./media/characters/mirja/front.svg",
  13738. extra: 1789 / 1683,
  13739. bottom: 0.05
  13740. }
  13741. },
  13742. frontDressed: {
  13743. height: math.unit(6, "feet"),
  13744. weight: math.unit(90, "lb"),
  13745. name: "Front (Dressed)",
  13746. image: {
  13747. source: "./media/characters/mirja/front-dressed.svg",
  13748. extra: 1789 / 1683,
  13749. bottom: 0.05
  13750. }
  13751. },
  13752. back: {
  13753. height: math.unit(6, "feet"),
  13754. weight: math.unit(90, "lb"),
  13755. name: "Back",
  13756. image: {
  13757. source: "./media/characters/mirja/back.svg",
  13758. extra: 953 / 917,
  13759. bottom: 0.017
  13760. }
  13761. },
  13762. },
  13763. [
  13764. {
  13765. name: "\"Incognito\"",
  13766. height: math.unit(3, "meters")
  13767. },
  13768. {
  13769. name: "Strolling Size",
  13770. height: math.unit(15, "km")
  13771. },
  13772. {
  13773. name: "Larger Strolling Size",
  13774. height: math.unit(400, "km")
  13775. },
  13776. {
  13777. name: "Preferred Size",
  13778. height: math.unit(5000, "km")
  13779. },
  13780. {
  13781. name: "True Size",
  13782. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13783. default: true
  13784. },
  13785. ]
  13786. ))
  13787. characterMakers.push(() => makeCharacter(
  13788. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13789. {
  13790. front: {
  13791. height: math.unit(15, "feet"),
  13792. weight: math.unit(880, "kg"),
  13793. name: "Front",
  13794. image: {
  13795. source: "./media/characters/nightraver/front.svg",
  13796. extra: 2444 / 2160,
  13797. bottom: 0.027
  13798. }
  13799. },
  13800. back: {
  13801. height: math.unit(15, "feet"),
  13802. weight: math.unit(880, "kg"),
  13803. name: "Back",
  13804. image: {
  13805. source: "./media/characters/nightraver/back.svg",
  13806. extra: 2309 / 2180,
  13807. bottom: 0.005
  13808. }
  13809. },
  13810. sole: {
  13811. height: math.unit(2.878, "feet"),
  13812. name: "Sole",
  13813. image: {
  13814. source: "./media/characters/nightraver/sole.svg"
  13815. }
  13816. },
  13817. foot: {
  13818. height: math.unit(2.285, "feet"),
  13819. name: "Foot",
  13820. image: {
  13821. source: "./media/characters/nightraver/foot.svg"
  13822. }
  13823. },
  13824. maw: {
  13825. height: math.unit(2.67, "feet"),
  13826. name: "Maw",
  13827. image: {
  13828. source: "./media/characters/nightraver/maw.svg"
  13829. }
  13830. },
  13831. },
  13832. [
  13833. {
  13834. name: "Micro",
  13835. height: math.unit(1, "cm")
  13836. },
  13837. {
  13838. name: "Normal",
  13839. height: math.unit(15, "feet"),
  13840. default: true
  13841. },
  13842. {
  13843. name: "Macro",
  13844. height: math.unit(300, "feet")
  13845. },
  13846. {
  13847. name: "Megamacro",
  13848. height: math.unit(300, "miles")
  13849. },
  13850. {
  13851. name: "Gigamacro",
  13852. height: math.unit(10000, "miles")
  13853. },
  13854. ]
  13855. ))
  13856. characterMakers.push(() => makeCharacter(
  13857. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13858. {
  13859. side: {
  13860. height: math.unit(2, "inches"),
  13861. weight: math.unit(5, "grams"),
  13862. name: "Side",
  13863. image: {
  13864. source: "./media/characters/arc/side.svg"
  13865. }
  13866. },
  13867. },
  13868. [
  13869. {
  13870. name: "Micro",
  13871. height: math.unit(2, "inches"),
  13872. default: true
  13873. },
  13874. ]
  13875. ))
  13876. characterMakers.push(() => makeCharacter(
  13877. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13878. {
  13879. front: {
  13880. height: math.unit(1.1938, "meters"),
  13881. weight: math.unit(54, "kg"),
  13882. name: "Front",
  13883. image: {
  13884. source: "./media/characters/nebula-shahar/front.svg",
  13885. extra: 1642 / 1436,
  13886. bottom: 0.06
  13887. }
  13888. },
  13889. },
  13890. [
  13891. {
  13892. name: "Megamicro",
  13893. height: math.unit(0.3, "mm")
  13894. },
  13895. {
  13896. name: "Micro",
  13897. height: math.unit(3, "cm")
  13898. },
  13899. {
  13900. name: "Normal",
  13901. height: math.unit(138, "cm"),
  13902. default: true
  13903. },
  13904. {
  13905. name: "Macro",
  13906. height: math.unit(30, "m")
  13907. },
  13908. ]
  13909. ))
  13910. characterMakers.push(() => makeCharacter(
  13911. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13912. {
  13913. front: {
  13914. height: math.unit(5.24, "feet"),
  13915. weight: math.unit(150, "lb"),
  13916. name: "Front",
  13917. image: {
  13918. source: "./media/characters/shayla/front.svg",
  13919. extra: 1512 / 1414,
  13920. bottom: 0.01
  13921. }
  13922. },
  13923. back: {
  13924. height: math.unit(5.24, "feet"),
  13925. weight: math.unit(150, "lb"),
  13926. name: "Back",
  13927. image: {
  13928. source: "./media/characters/shayla/back.svg",
  13929. extra: 1512 / 1414
  13930. }
  13931. },
  13932. hand: {
  13933. height: math.unit(0.7781496062992126, "feet"),
  13934. name: "Hand",
  13935. image: {
  13936. source: "./media/characters/shayla/hand.svg"
  13937. }
  13938. },
  13939. foot: {
  13940. height: math.unit(1.4206036745406823, "feet"),
  13941. name: "Foot",
  13942. image: {
  13943. source: "./media/characters/shayla/foot.svg"
  13944. }
  13945. },
  13946. },
  13947. [
  13948. {
  13949. name: "Micro",
  13950. height: math.unit(0.32, "feet")
  13951. },
  13952. {
  13953. name: "Normal",
  13954. height: math.unit(5.24, "feet"),
  13955. default: true
  13956. },
  13957. {
  13958. name: "Macro",
  13959. height: math.unit(492.12, "feet")
  13960. },
  13961. {
  13962. name: "Megamacro",
  13963. height: math.unit(186.41, "miles")
  13964. },
  13965. ]
  13966. ))
  13967. characterMakers.push(() => makeCharacter(
  13968. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13969. {
  13970. front: {
  13971. height: math.unit(2.2, "m"),
  13972. weight: math.unit(120, "kg"),
  13973. name: "Front",
  13974. image: {
  13975. source: "./media/characters/pia-jr/front.svg",
  13976. extra: 1000 / 970,
  13977. bottom: 0.035
  13978. }
  13979. },
  13980. hand: {
  13981. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13982. name: "Hand",
  13983. image: {
  13984. source: "./media/characters/pia-jr/hand.svg"
  13985. }
  13986. },
  13987. paw: {
  13988. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13989. name: "Paw",
  13990. image: {
  13991. source: "./media/characters/pia-jr/paw.svg"
  13992. }
  13993. },
  13994. },
  13995. [
  13996. {
  13997. name: "Micro",
  13998. height: math.unit(1.2, "cm")
  13999. },
  14000. {
  14001. name: "Normal",
  14002. height: math.unit(2.2, "m"),
  14003. default: true
  14004. },
  14005. {
  14006. name: "Macro",
  14007. height: math.unit(180, "m")
  14008. },
  14009. {
  14010. name: "Megamacro",
  14011. height: math.unit(420, "km")
  14012. },
  14013. ]
  14014. ))
  14015. characterMakers.push(() => makeCharacter(
  14016. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14017. {
  14018. front: {
  14019. height: math.unit(2, "m"),
  14020. weight: math.unit(115, "kg"),
  14021. name: "Front",
  14022. image: {
  14023. source: "./media/characters/pia-sr/front.svg",
  14024. extra: 760 / 730,
  14025. bottom: 0.015
  14026. }
  14027. },
  14028. back: {
  14029. height: math.unit(2, "m"),
  14030. weight: math.unit(115, "kg"),
  14031. name: "Back",
  14032. image: {
  14033. source: "./media/characters/pia-sr/back.svg",
  14034. extra: 760 / 730,
  14035. bottom: 0.01
  14036. }
  14037. },
  14038. hand: {
  14039. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14040. name: "Hand",
  14041. image: {
  14042. source: "./media/characters/pia-sr/hand.svg"
  14043. }
  14044. },
  14045. foot: {
  14046. height: math.unit(1.83, "feet"),
  14047. name: "Foot",
  14048. image: {
  14049. source: "./media/characters/pia-sr/foot.svg"
  14050. }
  14051. },
  14052. },
  14053. [
  14054. {
  14055. name: "Micro",
  14056. height: math.unit(88, "mm")
  14057. },
  14058. {
  14059. name: "Normal",
  14060. height: math.unit(2, "m"),
  14061. default: true
  14062. },
  14063. {
  14064. name: "Macro",
  14065. height: math.unit(200, "m")
  14066. },
  14067. {
  14068. name: "Megamacro",
  14069. height: math.unit(420, "km")
  14070. },
  14071. ]
  14072. ))
  14073. characterMakers.push(() => makeCharacter(
  14074. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14075. {
  14076. front: {
  14077. height: math.unit(8 + 2 / 12, "feet"),
  14078. weight: math.unit(300, "lb"),
  14079. name: "Front",
  14080. image: {
  14081. source: "./media/characters/kibibyte/front.svg",
  14082. extra: 2221 / 2098,
  14083. bottom: 0.04
  14084. }
  14085. },
  14086. },
  14087. [
  14088. {
  14089. name: "Normal",
  14090. height: math.unit(8 + 2 / 12, "feet"),
  14091. default: true
  14092. },
  14093. {
  14094. name: "Socialable Macro",
  14095. height: math.unit(50, "feet")
  14096. },
  14097. {
  14098. name: "Macro",
  14099. height: math.unit(300, "feet")
  14100. },
  14101. {
  14102. name: "Megamacro",
  14103. height: math.unit(500, "miles")
  14104. },
  14105. ]
  14106. ))
  14107. characterMakers.push(() => makeCharacter(
  14108. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14109. {
  14110. front: {
  14111. height: math.unit(6, "feet"),
  14112. weight: math.unit(150, "lb"),
  14113. name: "Front",
  14114. image: {
  14115. source: "./media/characters/felix/front.svg",
  14116. extra: 762 / 722,
  14117. bottom: 0.02
  14118. }
  14119. },
  14120. frontClothed: {
  14121. height: math.unit(6, "feet"),
  14122. weight: math.unit(150, "lb"),
  14123. name: "Front (Clothed)",
  14124. image: {
  14125. source: "./media/characters/felix/front-clothed.svg",
  14126. extra: 762 / 722,
  14127. bottom: 0.02
  14128. }
  14129. },
  14130. },
  14131. [
  14132. {
  14133. name: "Normal",
  14134. height: math.unit(6 + 8 / 12, "feet"),
  14135. default: true
  14136. },
  14137. {
  14138. name: "Macro",
  14139. height: math.unit(2600, "feet")
  14140. },
  14141. {
  14142. name: "Megamacro",
  14143. height: math.unit(450, "miles")
  14144. },
  14145. ]
  14146. ))
  14147. characterMakers.push(() => makeCharacter(
  14148. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14149. {
  14150. front: {
  14151. height: math.unit(6 + 1 / 12, "feet"),
  14152. weight: math.unit(250, "lb"),
  14153. name: "Front",
  14154. image: {
  14155. source: "./media/characters/tobo/front.svg",
  14156. extra: 608 / 586,
  14157. bottom: 0.023
  14158. }
  14159. },
  14160. back: {
  14161. height: math.unit(6 + 1 / 12, "feet"),
  14162. weight: math.unit(250, "lb"),
  14163. name: "Back",
  14164. image: {
  14165. source: "./media/characters/tobo/back.svg",
  14166. extra: 608 / 586
  14167. }
  14168. },
  14169. },
  14170. [
  14171. {
  14172. name: "Nano",
  14173. height: math.unit(2, "nm")
  14174. },
  14175. {
  14176. name: "Megamicro",
  14177. height: math.unit(0.1, "mm")
  14178. },
  14179. {
  14180. name: "Micro",
  14181. height: math.unit(1, "inch"),
  14182. default: true
  14183. },
  14184. {
  14185. name: "Human-sized",
  14186. height: math.unit(6 + 1 / 12, "feet")
  14187. },
  14188. {
  14189. name: "Macro",
  14190. height: math.unit(250, "feet")
  14191. },
  14192. {
  14193. name: "Megamacro",
  14194. height: math.unit(75, "miles")
  14195. },
  14196. {
  14197. name: "Texas-sized",
  14198. height: math.unit(750, "miles")
  14199. },
  14200. {
  14201. name: "Teramacro",
  14202. height: math.unit(50000, "miles")
  14203. },
  14204. ]
  14205. ))
  14206. characterMakers.push(() => makeCharacter(
  14207. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14208. {
  14209. front: {
  14210. height: math.unit(6, "feet"),
  14211. weight: math.unit(269, "lb"),
  14212. name: "Front",
  14213. image: {
  14214. source: "./media/characters/danny-kapowsky/front.svg",
  14215. extra: 766 / 736,
  14216. bottom: 0.044
  14217. }
  14218. },
  14219. back: {
  14220. height: math.unit(6, "feet"),
  14221. weight: math.unit(269, "lb"),
  14222. name: "Back",
  14223. image: {
  14224. source: "./media/characters/danny-kapowsky/back.svg",
  14225. extra: 797 / 760,
  14226. bottom: 0.025
  14227. }
  14228. },
  14229. },
  14230. [
  14231. {
  14232. name: "Macro",
  14233. height: math.unit(150, "feet"),
  14234. default: true
  14235. },
  14236. {
  14237. name: "Macro+",
  14238. height: math.unit(200, "feet")
  14239. },
  14240. {
  14241. name: "Macro++",
  14242. height: math.unit(300, "feet")
  14243. },
  14244. {
  14245. name: "Macro+++",
  14246. height: math.unit(400, "feet")
  14247. },
  14248. ]
  14249. ))
  14250. characterMakers.push(() => makeCharacter(
  14251. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14252. {
  14253. side: {
  14254. height: math.unit(6, "feet"),
  14255. weight: math.unit(170, "lb"),
  14256. name: "Side",
  14257. image: {
  14258. source: "./media/characters/finn/side.svg",
  14259. extra: 1953 / 1807,
  14260. bottom: 0.057
  14261. }
  14262. },
  14263. },
  14264. [
  14265. {
  14266. name: "Megamacro",
  14267. height: math.unit(14445, "feet"),
  14268. default: true
  14269. },
  14270. ]
  14271. ))
  14272. characterMakers.push(() => makeCharacter(
  14273. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14274. {
  14275. front: {
  14276. height: math.unit(5 + 6 / 12, "feet"),
  14277. weight: math.unit(125, "lb"),
  14278. name: "Front",
  14279. image: {
  14280. source: "./media/characters/roy/front.svg",
  14281. extra: 1,
  14282. bottom: 0.11
  14283. }
  14284. },
  14285. },
  14286. [
  14287. {
  14288. name: "Micro",
  14289. height: math.unit(3, "inches"),
  14290. default: true
  14291. },
  14292. {
  14293. name: "Normal",
  14294. height: math.unit(5 + 6 / 12, "feet")
  14295. },
  14296. {
  14297. name: "Lesser Macro",
  14298. height: math.unit(60, "feet")
  14299. },
  14300. {
  14301. name: "Greater Macro",
  14302. height: math.unit(120, "feet")
  14303. },
  14304. ]
  14305. ))
  14306. characterMakers.push(() => makeCharacter(
  14307. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14308. {
  14309. front: {
  14310. height: math.unit(6, "feet"),
  14311. weight: math.unit(100, "lb"),
  14312. name: "Front",
  14313. image: {
  14314. source: "./media/characters/aevsivs/front.svg",
  14315. extra: 1,
  14316. bottom: 0.03
  14317. }
  14318. },
  14319. back: {
  14320. height: math.unit(6, "feet"),
  14321. weight: math.unit(100, "lb"),
  14322. name: "Back",
  14323. image: {
  14324. source: "./media/characters/aevsivs/back.svg"
  14325. }
  14326. },
  14327. },
  14328. [
  14329. {
  14330. name: "Micro",
  14331. height: math.unit(2, "inches"),
  14332. default: true
  14333. },
  14334. {
  14335. name: "Normal",
  14336. height: math.unit(5, "feet")
  14337. },
  14338. ]
  14339. ))
  14340. characterMakers.push(() => makeCharacter(
  14341. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14342. {
  14343. front: {
  14344. height: math.unit(5 + 7 / 12, "feet"),
  14345. weight: math.unit(159, "lb"),
  14346. name: "Front",
  14347. image: {
  14348. source: "./media/characters/hildegard/front.svg",
  14349. extra: 289 / 269,
  14350. bottom: 7.63 / 297.8
  14351. }
  14352. },
  14353. back: {
  14354. height: math.unit(5 + 7 / 12, "feet"),
  14355. weight: math.unit(159, "lb"),
  14356. name: "Back",
  14357. image: {
  14358. source: "./media/characters/hildegard/back.svg",
  14359. extra: 280 / 260,
  14360. bottom: 2.3 / 282
  14361. }
  14362. },
  14363. },
  14364. [
  14365. {
  14366. name: "Normal",
  14367. height: math.unit(5 + 7 / 12, "feet"),
  14368. default: true
  14369. },
  14370. ]
  14371. ))
  14372. characterMakers.push(() => makeCharacter(
  14373. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14374. {
  14375. bernard: {
  14376. height: math.unit(2 + 7 / 12, "feet"),
  14377. weight: math.unit(66, "lb"),
  14378. name: "Bernard",
  14379. rename: true,
  14380. image: {
  14381. source: "./media/characters/bernard-wilder/bernard.svg",
  14382. extra: 192 / 128,
  14383. bottom: 0.05
  14384. }
  14385. },
  14386. wilder: {
  14387. height: math.unit(5 + 8 / 12, "feet"),
  14388. weight: math.unit(143, "lb"),
  14389. name: "Wilder",
  14390. rename: true,
  14391. image: {
  14392. source: "./media/characters/bernard-wilder/wilder.svg",
  14393. extra: 361 / 312,
  14394. bottom: 0.02
  14395. }
  14396. },
  14397. },
  14398. [
  14399. {
  14400. name: "Normal",
  14401. height: math.unit(2 + 7 / 12, "feet"),
  14402. default: true
  14403. },
  14404. ]
  14405. ))
  14406. characterMakers.push(() => makeCharacter(
  14407. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14408. {
  14409. anthro: {
  14410. height: math.unit(6 + 1 / 12, "feet"),
  14411. weight: math.unit(155, "lb"),
  14412. name: "Anthro",
  14413. image: {
  14414. source: "./media/characters/hearth/anthro.svg",
  14415. extra: 260 / 250,
  14416. bottom: 0.02
  14417. }
  14418. },
  14419. feral: {
  14420. height: math.unit(3.78, "feet"),
  14421. weight: math.unit(35, "kg"),
  14422. name: "Feral",
  14423. image: {
  14424. source: "./media/characters/hearth/feral.svg",
  14425. extra: 153 / 135,
  14426. bottom: 0.03
  14427. }
  14428. },
  14429. },
  14430. [
  14431. {
  14432. name: "Normal",
  14433. height: math.unit(6 + 1 / 12, "feet"),
  14434. default: true
  14435. },
  14436. ]
  14437. ))
  14438. characterMakers.push(() => makeCharacter(
  14439. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14440. {
  14441. front: {
  14442. height: math.unit(6, "feet"),
  14443. weight: math.unit(182, "lb"),
  14444. name: "Front",
  14445. image: {
  14446. source: "./media/characters/ingrid/front.svg",
  14447. extra: 294 / 268,
  14448. bottom: 0.027
  14449. }
  14450. },
  14451. },
  14452. [
  14453. {
  14454. name: "Normal",
  14455. height: math.unit(6, "feet"),
  14456. default: true
  14457. },
  14458. ]
  14459. ))
  14460. characterMakers.push(() => makeCharacter(
  14461. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14462. {
  14463. eevee: {
  14464. height: math.unit(2 + 10 / 12, "feet"),
  14465. weight: math.unit(86, "lb"),
  14466. name: "Malgam",
  14467. image: {
  14468. source: "./media/characters/malgam/eevee.svg",
  14469. extra: 218 / 180,
  14470. bottom: 0.2
  14471. }
  14472. },
  14473. sylveon: {
  14474. height: math.unit(4, "feet"),
  14475. weight: math.unit(101, "lb"),
  14476. name: "Future Malgam",
  14477. rename: true,
  14478. image: {
  14479. source: "./media/characters/malgam/sylveon.svg",
  14480. extra: 371 / 325,
  14481. bottom: 0.015
  14482. }
  14483. },
  14484. gigantamax: {
  14485. height: math.unit(50, "feet"),
  14486. name: "Gigantamax Malgam",
  14487. rename: true,
  14488. image: {
  14489. source: "./media/characters/malgam/gigantamax.svg"
  14490. }
  14491. },
  14492. },
  14493. [
  14494. {
  14495. name: "Normal",
  14496. height: math.unit(2 + 10 / 12, "feet"),
  14497. default: true
  14498. },
  14499. ]
  14500. ))
  14501. characterMakers.push(() => makeCharacter(
  14502. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14503. {
  14504. front: {
  14505. height: math.unit(5 + 11 / 12, "feet"),
  14506. weight: math.unit(188, "lb"),
  14507. name: "Front",
  14508. image: {
  14509. source: "./media/characters/fleur/front.svg",
  14510. extra: 309 / 283,
  14511. bottom: 0.007
  14512. }
  14513. },
  14514. },
  14515. [
  14516. {
  14517. name: "Normal",
  14518. height: math.unit(5 + 11 / 12, "feet"),
  14519. default: true
  14520. },
  14521. ]
  14522. ))
  14523. characterMakers.push(() => makeCharacter(
  14524. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14525. {
  14526. front: {
  14527. height: math.unit(5 + 4 / 12, "feet"),
  14528. weight: math.unit(122, "lb"),
  14529. name: "Front",
  14530. image: {
  14531. source: "./media/characters/jude/front.svg",
  14532. extra: 288 / 273,
  14533. bottom: 0.03
  14534. }
  14535. },
  14536. },
  14537. [
  14538. {
  14539. name: "Normal",
  14540. height: math.unit(5 + 4 / 12, "feet"),
  14541. default: true
  14542. },
  14543. ]
  14544. ))
  14545. characterMakers.push(() => makeCharacter(
  14546. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14547. {
  14548. front: {
  14549. height: math.unit(5 + 11 / 12, "feet"),
  14550. weight: math.unit(190, "lb"),
  14551. name: "Front",
  14552. image: {
  14553. source: "./media/characters/seara/front.svg",
  14554. extra: 1,
  14555. bottom: 0.05
  14556. }
  14557. },
  14558. },
  14559. [
  14560. {
  14561. name: "Normal",
  14562. height: math.unit(5 + 11 / 12, "feet"),
  14563. default: true
  14564. },
  14565. ]
  14566. ))
  14567. characterMakers.push(() => makeCharacter(
  14568. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14569. {
  14570. front: {
  14571. height: math.unit(16 + 5 / 12, "feet"),
  14572. weight: math.unit(524, "lb"),
  14573. name: "Front",
  14574. image: {
  14575. source: "./media/characters/caspian/front.svg",
  14576. extra: 1,
  14577. bottom: 0.04
  14578. }
  14579. },
  14580. },
  14581. [
  14582. {
  14583. name: "Normal",
  14584. height: math.unit(16 + 5 / 12, "feet"),
  14585. default: true
  14586. },
  14587. ]
  14588. ))
  14589. characterMakers.push(() => makeCharacter(
  14590. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14591. {
  14592. front: {
  14593. height: math.unit(5 + 7 / 12, "feet"),
  14594. weight: math.unit(170, "lb"),
  14595. name: "Front",
  14596. image: {
  14597. source: "./media/characters/mika/front.svg",
  14598. extra: 1,
  14599. bottom: 0.016
  14600. }
  14601. },
  14602. },
  14603. [
  14604. {
  14605. name: "Normal",
  14606. height: math.unit(5 + 7 / 12, "feet"),
  14607. default: true
  14608. },
  14609. ]
  14610. ))
  14611. characterMakers.push(() => makeCharacter(
  14612. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14613. {
  14614. front: {
  14615. height: math.unit(6 + 2 / 12, "feet"),
  14616. weight: math.unit(268, "lb"),
  14617. name: "Front",
  14618. image: {
  14619. source: "./media/characters/sol/front.svg",
  14620. extra: 247 / 231,
  14621. bottom: 0.05
  14622. }
  14623. },
  14624. },
  14625. [
  14626. {
  14627. name: "Normal",
  14628. height: math.unit(6 + 2 / 12, "feet"),
  14629. default: true
  14630. },
  14631. ]
  14632. ))
  14633. characterMakers.push(() => makeCharacter(
  14634. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14635. {
  14636. buizel: {
  14637. height: math.unit(2 + 5 / 12, "feet"),
  14638. weight: math.unit(87, "lb"),
  14639. name: "Buizel",
  14640. image: {
  14641. source: "./media/characters/umiko/buizel.svg",
  14642. extra: 172 / 157,
  14643. bottom: 0.01
  14644. }
  14645. },
  14646. floatzel: {
  14647. height: math.unit(5 + 9 / 12, "feet"),
  14648. weight: math.unit(250, "lb"),
  14649. name: "Floatzel",
  14650. image: {
  14651. source: "./media/characters/umiko/floatzel.svg",
  14652. extra: 262 / 248
  14653. }
  14654. },
  14655. },
  14656. [
  14657. {
  14658. name: "Normal",
  14659. height: math.unit(2 + 5 / 12, "feet"),
  14660. default: true
  14661. },
  14662. ]
  14663. ))
  14664. characterMakers.push(() => makeCharacter(
  14665. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14666. {
  14667. front: {
  14668. height: math.unit(6 + 2 / 12, "feet"),
  14669. weight: math.unit(146, "lb"),
  14670. name: "Front",
  14671. image: {
  14672. source: "./media/characters/iliac/front.svg",
  14673. extra: 389 / 365,
  14674. bottom: 0.035
  14675. }
  14676. },
  14677. },
  14678. [
  14679. {
  14680. name: "Normal",
  14681. height: math.unit(6 + 2 / 12, "feet"),
  14682. default: true
  14683. },
  14684. ]
  14685. ))
  14686. characterMakers.push(() => makeCharacter(
  14687. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14688. {
  14689. front: {
  14690. height: math.unit(6, "feet"),
  14691. weight: math.unit(170, "lb"),
  14692. name: "Front",
  14693. image: {
  14694. source: "./media/characters/topaz/front.svg",
  14695. extra: 317 / 303,
  14696. bottom: 0.055
  14697. }
  14698. },
  14699. },
  14700. [
  14701. {
  14702. name: "Normal",
  14703. height: math.unit(6, "feet"),
  14704. default: true
  14705. },
  14706. ]
  14707. ))
  14708. characterMakers.push(() => makeCharacter(
  14709. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14710. {
  14711. front: {
  14712. height: math.unit(5 + 11 / 12, "feet"),
  14713. weight: math.unit(144, "lb"),
  14714. name: "Front",
  14715. image: {
  14716. source: "./media/characters/gabriel/front.svg",
  14717. extra: 285 / 262,
  14718. bottom: 0.004
  14719. }
  14720. },
  14721. },
  14722. [
  14723. {
  14724. name: "Normal",
  14725. height: math.unit(5 + 11 / 12, "feet"),
  14726. default: true
  14727. },
  14728. ]
  14729. ))
  14730. characterMakers.push(() => makeCharacter(
  14731. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14732. {
  14733. side: {
  14734. height: math.unit(6 + 5 / 12, "feet"),
  14735. weight: math.unit(300, "lb"),
  14736. name: "Side",
  14737. image: {
  14738. source: "./media/characters/tempest-suicune/side.svg",
  14739. extra: 195 / 154,
  14740. bottom: 0.04
  14741. }
  14742. },
  14743. },
  14744. [
  14745. {
  14746. name: "Normal",
  14747. height: math.unit(6 + 5 / 12, "feet"),
  14748. default: true
  14749. },
  14750. ]
  14751. ))
  14752. characterMakers.push(() => makeCharacter(
  14753. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14754. {
  14755. front: {
  14756. height: math.unit(7 + 2 / 12, "feet"),
  14757. weight: math.unit(322, "lb"),
  14758. name: "Front",
  14759. image: {
  14760. source: "./media/characters/vulcan/front.svg",
  14761. extra: 154 / 147,
  14762. bottom: 0.04
  14763. }
  14764. },
  14765. },
  14766. [
  14767. {
  14768. name: "Normal",
  14769. height: math.unit(7 + 2 / 12, "feet"),
  14770. default: true
  14771. },
  14772. ]
  14773. ))
  14774. characterMakers.push(() => makeCharacter(
  14775. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14776. {
  14777. front: {
  14778. height: math.unit(5 + 10 / 12, "feet"),
  14779. weight: math.unit(264, "lb"),
  14780. name: "Front",
  14781. image: {
  14782. source: "./media/characters/gault/front.svg",
  14783. extra: 161 / 140,
  14784. bottom: 0.028
  14785. }
  14786. },
  14787. },
  14788. [
  14789. {
  14790. name: "Normal",
  14791. height: math.unit(5 + 10 / 12, "feet"),
  14792. default: true
  14793. },
  14794. ]
  14795. ))
  14796. characterMakers.push(() => makeCharacter(
  14797. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14798. {
  14799. front: {
  14800. height: math.unit(6, "feet"),
  14801. weight: math.unit(150, "lb"),
  14802. name: "Front",
  14803. image: {
  14804. source: "./media/characters/shard/front.svg",
  14805. extra: 273 / 238,
  14806. bottom: 0.02
  14807. }
  14808. },
  14809. },
  14810. [
  14811. {
  14812. name: "Normal",
  14813. height: math.unit(3 + 6 / 12, "feet"),
  14814. default: true
  14815. },
  14816. ]
  14817. ))
  14818. characterMakers.push(() => makeCharacter(
  14819. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14820. {
  14821. front: {
  14822. height: math.unit(5 + 11 / 12, "feet"),
  14823. weight: math.unit(146, "lb"),
  14824. name: "Front",
  14825. image: {
  14826. source: "./media/characters/ashe/front.svg",
  14827. extra: 400 / 373,
  14828. bottom: 0.01
  14829. }
  14830. },
  14831. },
  14832. [
  14833. {
  14834. name: "Normal",
  14835. height: math.unit(5 + 11 / 12, "feet"),
  14836. default: true
  14837. },
  14838. ]
  14839. ))
  14840. characterMakers.push(() => makeCharacter(
  14841. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14842. {
  14843. front: {
  14844. height: math.unit(5 + 5 / 12, "feet"),
  14845. weight: math.unit(135, "lb"),
  14846. name: "Front",
  14847. image: {
  14848. source: "./media/characters/beatrix/front.svg",
  14849. extra: 392 / 379,
  14850. bottom: 0.01
  14851. }
  14852. },
  14853. },
  14854. [
  14855. {
  14856. name: "Normal",
  14857. height: math.unit(6, "feet"),
  14858. default: true
  14859. },
  14860. ]
  14861. ))
  14862. characterMakers.push(() => makeCharacter(
  14863. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14864. {
  14865. front: {
  14866. height: math.unit(6, "feet"),
  14867. weight: math.unit(150, "lb"),
  14868. name: "Front",
  14869. image: {
  14870. source: "./media/characters/ignatius/front.svg",
  14871. extra: 245 / 222,
  14872. bottom: 0.01
  14873. }
  14874. },
  14875. },
  14876. [
  14877. {
  14878. name: "Normal",
  14879. height: math.unit(5 + 5 / 12, "feet"),
  14880. default: true
  14881. },
  14882. ]
  14883. ))
  14884. characterMakers.push(() => makeCharacter(
  14885. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14886. {
  14887. front: {
  14888. height: math.unit(6 + 2 / 12, "feet"),
  14889. weight: math.unit(138, "lb"),
  14890. name: "Front",
  14891. image: {
  14892. source: "./media/characters/mei-li/front.svg",
  14893. extra: 237 / 229,
  14894. bottom: 0.03
  14895. }
  14896. },
  14897. },
  14898. [
  14899. {
  14900. name: "Normal",
  14901. height: math.unit(6 + 2 / 12, "feet"),
  14902. default: true
  14903. },
  14904. ]
  14905. ))
  14906. characterMakers.push(() => makeCharacter(
  14907. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14908. {
  14909. front: {
  14910. height: math.unit(2 + 4 / 12, "feet"),
  14911. weight: math.unit(62, "lb"),
  14912. name: "Front",
  14913. image: {
  14914. source: "./media/characters/puru/front.svg",
  14915. extra: 206 / 149,
  14916. bottom: 0.06
  14917. }
  14918. },
  14919. },
  14920. [
  14921. {
  14922. name: "Normal",
  14923. height: math.unit(2 + 4 / 12, "feet"),
  14924. default: true
  14925. },
  14926. ]
  14927. ))
  14928. characterMakers.push(() => makeCharacter(
  14929. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14930. {
  14931. taur: {
  14932. height: math.unit(11, "feet"),
  14933. weight: math.unit(500, "lb"),
  14934. name: "Taur",
  14935. image: {
  14936. source: "./media/characters/kee/taur.svg",
  14937. extra: 1,
  14938. bottom: 0.04
  14939. }
  14940. },
  14941. },
  14942. [
  14943. {
  14944. name: "Normal",
  14945. height: math.unit(11, "feet"),
  14946. default: true
  14947. },
  14948. ]
  14949. ))
  14950. characterMakers.push(() => makeCharacter(
  14951. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14952. {
  14953. anthro: {
  14954. height: math.unit(7, "feet"),
  14955. weight: math.unit(190, "lb"),
  14956. name: "Anthro",
  14957. image: {
  14958. source: "./media/characters/cobalt-dracha/anthro.svg",
  14959. extra: 231 / 225,
  14960. bottom: 0.04
  14961. }
  14962. },
  14963. feral: {
  14964. height: math.unit(9 + 7 / 12, "feet"),
  14965. weight: math.unit(294, "lb"),
  14966. name: "Feral",
  14967. image: {
  14968. source: "./media/characters/cobalt-dracha/feral.svg",
  14969. extra: 692 / 633,
  14970. bottom: 0.05
  14971. }
  14972. },
  14973. },
  14974. [
  14975. {
  14976. name: "Normal",
  14977. height: math.unit(7, "feet"),
  14978. default: true
  14979. },
  14980. ]
  14981. ))
  14982. characterMakers.push(() => makeCharacter(
  14983. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14984. {
  14985. fallen: {
  14986. height: math.unit(11 + 8 / 12, "feet"),
  14987. weight: math.unit(485, "lb"),
  14988. name: "Java (Fallen)",
  14989. rename: true,
  14990. image: {
  14991. source: "./media/characters/java/fallen.svg",
  14992. extra: 226 / 208,
  14993. bottom: 0.005
  14994. }
  14995. },
  14996. godkin: {
  14997. height: math.unit(10 + 6 / 12, "feet"),
  14998. weight: math.unit(328, "lb"),
  14999. name: "Java (Godkin)",
  15000. rename: true,
  15001. image: {
  15002. source: "./media/characters/java/godkin.svg",
  15003. extra: 270 / 262,
  15004. bottom: 0.02
  15005. }
  15006. },
  15007. },
  15008. [
  15009. {
  15010. name: "Normal",
  15011. height: math.unit(11 + 8 / 12, "feet"),
  15012. default: true
  15013. },
  15014. ]
  15015. ))
  15016. characterMakers.push(() => makeCharacter(
  15017. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15018. {
  15019. front: {
  15020. height: math.unit(7 + 8 / 12, "feet"),
  15021. weight: math.unit(320, "lb"),
  15022. name: "Front",
  15023. image: {
  15024. source: "./media/characters/skoll/front.svg",
  15025. extra: 232 / 220,
  15026. bottom: 0.02
  15027. }
  15028. },
  15029. },
  15030. [
  15031. {
  15032. name: "Normal",
  15033. height: math.unit(7 + 8 / 12, "feet"),
  15034. default: true
  15035. },
  15036. ]
  15037. ))
  15038. characterMakers.push(() => makeCharacter(
  15039. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15040. {
  15041. front: {
  15042. height: math.unit(5 + 9 / 12, "feet"),
  15043. weight: math.unit(170, "lb"),
  15044. name: "Front",
  15045. image: {
  15046. source: "./media/characters/purna/front.svg",
  15047. extra: 239 / 229,
  15048. bottom: 0.01
  15049. }
  15050. },
  15051. },
  15052. [
  15053. {
  15054. name: "Normal",
  15055. height: math.unit(5 + 9 / 12, "feet"),
  15056. default: true
  15057. },
  15058. ]
  15059. ))
  15060. characterMakers.push(() => makeCharacter(
  15061. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15062. {
  15063. front: {
  15064. height: math.unit(5 + 9 / 12, "feet"),
  15065. weight: math.unit(142, "lb"),
  15066. name: "Front",
  15067. image: {
  15068. source: "./media/characters/kuva/front.svg",
  15069. extra: 281 / 271,
  15070. bottom: 0.006
  15071. }
  15072. },
  15073. },
  15074. [
  15075. {
  15076. name: "Normal",
  15077. height: math.unit(5 + 9 / 12, "feet"),
  15078. default: true
  15079. },
  15080. ]
  15081. ))
  15082. characterMakers.push(() => makeCharacter(
  15083. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15084. {
  15085. anthro: {
  15086. height: math.unit(9 + 2 / 12, "feet"),
  15087. weight: math.unit(270, "lb"),
  15088. name: "Anthro",
  15089. image: {
  15090. source: "./media/characters/embra/anthro.svg",
  15091. extra: 200 / 187,
  15092. bottom: 0.02
  15093. }
  15094. },
  15095. feral: {
  15096. height: math.unit(18 + 8 / 12, "feet"),
  15097. weight: math.unit(576, "lb"),
  15098. name: "Feral",
  15099. image: {
  15100. source: "./media/characters/embra/feral.svg",
  15101. extra: 152 / 137,
  15102. bottom: 0.037
  15103. }
  15104. },
  15105. },
  15106. [
  15107. {
  15108. name: "Normal",
  15109. height: math.unit(9 + 2 / 12, "feet"),
  15110. default: true
  15111. },
  15112. ]
  15113. ))
  15114. characterMakers.push(() => makeCharacter(
  15115. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15116. {
  15117. anthro: {
  15118. height: math.unit(10 + 9 / 12, "feet"),
  15119. weight: math.unit(224, "lb"),
  15120. name: "Anthro",
  15121. image: {
  15122. source: "./media/characters/grottos/anthro.svg",
  15123. extra: 350 / 332,
  15124. bottom: 0.045
  15125. }
  15126. },
  15127. feral: {
  15128. height: math.unit(20 + 7 / 12, "feet"),
  15129. weight: math.unit(629, "lb"),
  15130. name: "Feral",
  15131. image: {
  15132. source: "./media/characters/grottos/feral.svg",
  15133. extra: 207 / 190,
  15134. bottom: 0.05
  15135. }
  15136. },
  15137. },
  15138. [
  15139. {
  15140. name: "Normal",
  15141. height: math.unit(10 + 9 / 12, "feet"),
  15142. default: true
  15143. },
  15144. ]
  15145. ))
  15146. characterMakers.push(() => makeCharacter(
  15147. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15148. {
  15149. anthro: {
  15150. height: math.unit(9 + 6 / 12, "feet"),
  15151. weight: math.unit(298, "lb"),
  15152. name: "Anthro",
  15153. image: {
  15154. source: "./media/characters/frifna/anthro.svg",
  15155. extra: 282 / 269,
  15156. bottom: 0.015
  15157. }
  15158. },
  15159. feral: {
  15160. height: math.unit(16 + 2 / 12, "feet"),
  15161. weight: math.unit(624, "lb"),
  15162. name: "Feral",
  15163. image: {
  15164. source: "./media/characters/frifna/feral.svg"
  15165. }
  15166. },
  15167. },
  15168. [
  15169. {
  15170. name: "Normal",
  15171. height: math.unit(9 + 6 / 12, "feet"),
  15172. default: true
  15173. },
  15174. ]
  15175. ))
  15176. characterMakers.push(() => makeCharacter(
  15177. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15178. {
  15179. front: {
  15180. height: math.unit(6 + 2 / 12, "feet"),
  15181. weight: math.unit(168, "lb"),
  15182. name: "Front",
  15183. image: {
  15184. source: "./media/characters/elise/front.svg",
  15185. extra: 276 / 271
  15186. }
  15187. },
  15188. },
  15189. [
  15190. {
  15191. name: "Normal",
  15192. height: math.unit(6 + 2 / 12, "feet"),
  15193. default: true
  15194. },
  15195. ]
  15196. ))
  15197. characterMakers.push(() => makeCharacter(
  15198. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15199. {
  15200. front: {
  15201. height: math.unit(5 + 10 / 12, "feet"),
  15202. weight: math.unit(210, "lb"),
  15203. name: "Front",
  15204. image: {
  15205. source: "./media/characters/glade/front.svg",
  15206. extra: 258 / 247,
  15207. bottom: 0.008
  15208. }
  15209. },
  15210. },
  15211. [
  15212. {
  15213. name: "Normal",
  15214. height: math.unit(5 + 10 / 12, "feet"),
  15215. default: true
  15216. },
  15217. ]
  15218. ))
  15219. characterMakers.push(() => makeCharacter(
  15220. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15221. {
  15222. front: {
  15223. height: math.unit(5 + 10 / 12, "feet"),
  15224. weight: math.unit(129, "lb"),
  15225. name: "Front",
  15226. image: {
  15227. source: "./media/characters/rina/front.svg",
  15228. extra: 266 / 255,
  15229. bottom: 0.005
  15230. }
  15231. },
  15232. },
  15233. [
  15234. {
  15235. name: "Normal",
  15236. height: math.unit(5 + 10 / 12, "feet"),
  15237. default: true
  15238. },
  15239. ]
  15240. ))
  15241. characterMakers.push(() => makeCharacter(
  15242. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15243. {
  15244. front: {
  15245. height: math.unit(6 + 1 / 12, "feet"),
  15246. weight: math.unit(192, "lb"),
  15247. name: "Front",
  15248. image: {
  15249. source: "./media/characters/veronica/front.svg",
  15250. extra: 319 / 309,
  15251. bottom: 0.005
  15252. }
  15253. },
  15254. },
  15255. [
  15256. {
  15257. name: "Normal",
  15258. height: math.unit(6 + 1 / 12, "feet"),
  15259. default: true
  15260. },
  15261. ]
  15262. ))
  15263. characterMakers.push(() => makeCharacter(
  15264. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15265. {
  15266. front: {
  15267. height: math.unit(9 + 3 / 12, "feet"),
  15268. weight: math.unit(1100, "lb"),
  15269. name: "Front",
  15270. image: {
  15271. source: "./media/characters/braxton/front.svg",
  15272. extra: 1057 / 984,
  15273. bottom: 0.05
  15274. }
  15275. },
  15276. },
  15277. [
  15278. {
  15279. name: "Normal",
  15280. height: math.unit(9 + 3 / 12, "feet")
  15281. },
  15282. {
  15283. name: "Giant",
  15284. height: math.unit(300, "feet"),
  15285. default: true
  15286. },
  15287. {
  15288. name: "Macro",
  15289. height: math.unit(700, "feet")
  15290. },
  15291. {
  15292. name: "Megamacro",
  15293. height: math.unit(6000, "feet")
  15294. },
  15295. ]
  15296. ))
  15297. characterMakers.push(() => makeCharacter(
  15298. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15299. {
  15300. front: {
  15301. height: math.unit(6 + 7 / 12, "feet"),
  15302. weight: math.unit(150, "lb"),
  15303. name: "Front",
  15304. image: {
  15305. source: "./media/characters/blue-feyonics/front.svg",
  15306. extra: 1403 / 1306,
  15307. bottom: 0.047
  15308. }
  15309. },
  15310. },
  15311. [
  15312. {
  15313. name: "Normal",
  15314. height: math.unit(6 + 7 / 12, "feet"),
  15315. default: true
  15316. },
  15317. ]
  15318. ))
  15319. characterMakers.push(() => makeCharacter(
  15320. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15321. {
  15322. front: {
  15323. height: math.unit(1.8, "meters"),
  15324. weight: math.unit(60, "kg"),
  15325. name: "Front",
  15326. image: {
  15327. source: "./media/characters/maxwell/front.svg",
  15328. extra: 2060 / 1873
  15329. }
  15330. },
  15331. },
  15332. [
  15333. {
  15334. name: "Micro",
  15335. height: math.unit(1, "mm")
  15336. },
  15337. {
  15338. name: "Normal",
  15339. height: math.unit(1.8, "meter"),
  15340. default: true
  15341. },
  15342. {
  15343. name: "Macro",
  15344. height: math.unit(30, "meters")
  15345. },
  15346. {
  15347. name: "Megamacro",
  15348. height: math.unit(10, "km")
  15349. },
  15350. ]
  15351. ))
  15352. characterMakers.push(() => makeCharacter(
  15353. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15354. {
  15355. front: {
  15356. height: math.unit(6, "feet"),
  15357. weight: math.unit(150, "lb"),
  15358. name: "Front",
  15359. image: {
  15360. source: "./media/characters/jack/front.svg",
  15361. extra: 1754 / 1640,
  15362. bottom: 0.01
  15363. }
  15364. },
  15365. },
  15366. [
  15367. {
  15368. name: "Normal",
  15369. height: math.unit(80000, "feet"),
  15370. default: true
  15371. },
  15372. {
  15373. name: "Max size",
  15374. height: math.unit(10, "lightyears")
  15375. },
  15376. ]
  15377. ))
  15378. characterMakers.push(() => makeCharacter(
  15379. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15380. {
  15381. upright: {
  15382. height: math.unit(7, "feet"),
  15383. weight: math.unit(170, "lb"),
  15384. name: "Upright",
  15385. image: {
  15386. source: "./media/characters/cafat/upright.svg",
  15387. bottom: 0.01
  15388. }
  15389. },
  15390. uprightFull: {
  15391. height: math.unit(7, "feet"),
  15392. weight: math.unit(170, "lb"),
  15393. name: "Upright (Full)",
  15394. image: {
  15395. source: "./media/characters/cafat/upright-full.svg",
  15396. bottom: 0.01
  15397. }
  15398. },
  15399. side: {
  15400. height: math.unit(5, "feet"),
  15401. weight: math.unit(150, "lb"),
  15402. name: "Side",
  15403. image: {
  15404. source: "./media/characters/cafat/side.svg"
  15405. }
  15406. },
  15407. },
  15408. [
  15409. {
  15410. name: "Small",
  15411. height: math.unit(7, "feet"),
  15412. default: true
  15413. },
  15414. {
  15415. name: "Large",
  15416. height: math.unit(15.5, "feet")
  15417. },
  15418. ]
  15419. ))
  15420. characterMakers.push(() => makeCharacter(
  15421. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15422. {
  15423. front: {
  15424. height: math.unit(6, "feet"),
  15425. weight: math.unit(150, "lb"),
  15426. name: "Front",
  15427. image: {
  15428. source: "./media/characters/verin-raharra/front.svg",
  15429. extra: 5019 / 4835,
  15430. bottom: 0.023
  15431. }
  15432. },
  15433. },
  15434. [
  15435. {
  15436. name: "Normal",
  15437. height: math.unit(7 + 5 / 12, "feet"),
  15438. default: true
  15439. },
  15440. {
  15441. name: "Upsized",
  15442. height: math.unit(20, "feet")
  15443. },
  15444. ]
  15445. ))
  15446. characterMakers.push(() => makeCharacter(
  15447. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15448. {
  15449. front: {
  15450. height: math.unit(7, "feet"),
  15451. weight: math.unit(230, "lb"),
  15452. name: "Front",
  15453. image: {
  15454. source: "./media/characters/nakata/front.svg",
  15455. extra: 1.005,
  15456. bottom: 0.01
  15457. }
  15458. },
  15459. },
  15460. [
  15461. {
  15462. name: "Normal",
  15463. height: math.unit(7, "feet"),
  15464. default: true
  15465. },
  15466. {
  15467. name: "Big",
  15468. height: math.unit(14, "feet")
  15469. },
  15470. {
  15471. name: "Macro",
  15472. height: math.unit(400, "feet")
  15473. },
  15474. ]
  15475. ))
  15476. characterMakers.push(() => makeCharacter(
  15477. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15478. {
  15479. front: {
  15480. height: math.unit(4.91, "feet"),
  15481. weight: math.unit(100, "lb"),
  15482. name: "Front",
  15483. image: {
  15484. source: "./media/characters/lily/front.svg",
  15485. extra: 1585 / 1415,
  15486. bottom: 0.02
  15487. }
  15488. },
  15489. },
  15490. [
  15491. {
  15492. name: "Normal",
  15493. height: math.unit(4.91, "feet"),
  15494. default: true
  15495. },
  15496. ]
  15497. ))
  15498. characterMakers.push(() => makeCharacter(
  15499. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15500. {
  15501. laying: {
  15502. height: math.unit(4 + 4 / 12, "feet"),
  15503. weight: math.unit(600, "lb"),
  15504. name: "Laying",
  15505. image: {
  15506. source: "./media/characters/sheila/laying.svg",
  15507. extra: 1333 / 1265,
  15508. bottom: 0.16
  15509. }
  15510. },
  15511. },
  15512. [
  15513. {
  15514. name: "Normal",
  15515. height: math.unit(4 + 4 / 12, "feet"),
  15516. default: true
  15517. },
  15518. ]
  15519. ))
  15520. characterMakers.push(() => makeCharacter(
  15521. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15522. {
  15523. front: {
  15524. height: math.unit(6, "feet"),
  15525. weight: math.unit(190, "lb"),
  15526. name: "Front",
  15527. image: {
  15528. source: "./media/characters/sax/front.svg",
  15529. extra: 1187 / 973,
  15530. bottom: 0.042
  15531. }
  15532. },
  15533. },
  15534. [
  15535. {
  15536. name: "Micro",
  15537. height: math.unit(4, "inches"),
  15538. default: true
  15539. },
  15540. ]
  15541. ))
  15542. characterMakers.push(() => makeCharacter(
  15543. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15544. {
  15545. front: {
  15546. height: math.unit(6, "feet"),
  15547. weight: math.unit(150, "lb"),
  15548. name: "Front",
  15549. image: {
  15550. source: "./media/characters/pandora/front.svg",
  15551. extra: 2720 / 2556,
  15552. bottom: 0.015
  15553. }
  15554. },
  15555. back: {
  15556. height: math.unit(6, "feet"),
  15557. weight: math.unit(150, "lb"),
  15558. name: "Back",
  15559. image: {
  15560. source: "./media/characters/pandora/back.svg",
  15561. extra: 2720 / 2556,
  15562. bottom: 0.01
  15563. }
  15564. },
  15565. beans: {
  15566. height: math.unit(6 / 8, "feet"),
  15567. name: "Beans",
  15568. image: {
  15569. source: "./media/characters/pandora/beans.svg"
  15570. }
  15571. },
  15572. skirt: {
  15573. height: math.unit(6, "feet"),
  15574. weight: math.unit(150, "lb"),
  15575. name: "Skirt",
  15576. image: {
  15577. source: "./media/characters/pandora/skirt.svg",
  15578. extra: 1622 / 1525,
  15579. bottom: 0.015
  15580. }
  15581. },
  15582. hoodie: {
  15583. height: math.unit(6, "feet"),
  15584. weight: math.unit(150, "lb"),
  15585. name: "Hoodie",
  15586. image: {
  15587. source: "./media/characters/pandora/hoodie.svg",
  15588. extra: 1622 / 1525,
  15589. bottom: 0.015
  15590. }
  15591. },
  15592. casual: {
  15593. height: math.unit(6, "feet"),
  15594. weight: math.unit(150, "lb"),
  15595. name: "Casual",
  15596. image: {
  15597. source: "./media/characters/pandora/casual.svg",
  15598. extra: 1622 / 1525,
  15599. bottom: 0.015
  15600. }
  15601. },
  15602. },
  15603. [
  15604. {
  15605. name: "Normal",
  15606. height: math.unit(6, "feet")
  15607. },
  15608. {
  15609. name: "Big Steppy",
  15610. height: math.unit(1, "km"),
  15611. default: true
  15612. },
  15613. ]
  15614. ))
  15615. characterMakers.push(() => makeCharacter(
  15616. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15617. {
  15618. side: {
  15619. height: math.unit(10, "feet"),
  15620. weight: math.unit(800, "kg"),
  15621. name: "Side",
  15622. image: {
  15623. source: "./media/characters/venio-darcony/side.svg",
  15624. extra: 1373 / 1003,
  15625. bottom: 0.037
  15626. }
  15627. },
  15628. front: {
  15629. height: math.unit(19, "feet"),
  15630. weight: math.unit(800, "kg"),
  15631. name: "Front",
  15632. image: {
  15633. source: "./media/characters/venio-darcony/front.svg"
  15634. }
  15635. },
  15636. back: {
  15637. height: math.unit(19, "feet"),
  15638. weight: math.unit(800, "kg"),
  15639. name: "Back",
  15640. image: {
  15641. source: "./media/characters/venio-darcony/back.svg"
  15642. }
  15643. },
  15644. sideNsfw: {
  15645. height: math.unit(10, "feet"),
  15646. weight: math.unit(800, "kg"),
  15647. name: "Side (NSFW)",
  15648. image: {
  15649. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15650. extra: 1373 / 1003,
  15651. bottom: 0.037
  15652. }
  15653. },
  15654. frontNsfw: {
  15655. height: math.unit(19, "feet"),
  15656. weight: math.unit(800, "kg"),
  15657. name: "Front (NSFW)",
  15658. image: {
  15659. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15660. }
  15661. },
  15662. backNsfw: {
  15663. height: math.unit(19, "feet"),
  15664. weight: math.unit(800, "kg"),
  15665. name: "Back (NSFW)",
  15666. image: {
  15667. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15668. }
  15669. },
  15670. sideArmored: {
  15671. height: math.unit(10, "feet"),
  15672. weight: math.unit(800, "kg"),
  15673. name: "Side (Armored)",
  15674. image: {
  15675. source: "./media/characters/venio-darcony/side-armored.svg",
  15676. extra: 1373 / 1003,
  15677. bottom: 0.037
  15678. }
  15679. },
  15680. frontArmored: {
  15681. height: math.unit(19, "feet"),
  15682. weight: math.unit(900, "kg"),
  15683. name: "Front (Armored)",
  15684. image: {
  15685. source: "./media/characters/venio-darcony/front-armored.svg"
  15686. }
  15687. },
  15688. backArmored: {
  15689. height: math.unit(19, "feet"),
  15690. weight: math.unit(900, "kg"),
  15691. name: "Back (Armored)",
  15692. image: {
  15693. source: "./media/characters/venio-darcony/back-armored.svg"
  15694. }
  15695. },
  15696. sword: {
  15697. height: math.unit(10, "feet"),
  15698. weight: math.unit(50, "lb"),
  15699. name: "Sword",
  15700. image: {
  15701. source: "./media/characters/venio-darcony/sword.svg"
  15702. }
  15703. },
  15704. },
  15705. [
  15706. {
  15707. name: "Normal",
  15708. height: math.unit(10, "feet")
  15709. },
  15710. {
  15711. name: "Macro",
  15712. height: math.unit(130, "feet"),
  15713. default: true
  15714. },
  15715. {
  15716. name: "Macro+",
  15717. height: math.unit(240, "feet")
  15718. },
  15719. ]
  15720. ))
  15721. characterMakers.push(() => makeCharacter(
  15722. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15723. {
  15724. front: {
  15725. height: math.unit(6, "feet"),
  15726. weight: math.unit(150, "lb"),
  15727. name: "Front",
  15728. image: {
  15729. source: "./media/characters/veski/front.svg",
  15730. extra: 1299 / 1225,
  15731. bottom: 0.04
  15732. }
  15733. },
  15734. back: {
  15735. height: math.unit(6, "feet"),
  15736. weight: math.unit(150, "lb"),
  15737. name: "Back",
  15738. image: {
  15739. source: "./media/characters/veski/back.svg",
  15740. extra: 1299 / 1225,
  15741. bottom: 0.008
  15742. }
  15743. },
  15744. maw: {
  15745. height: math.unit(1.5 * 1.21, "feet"),
  15746. name: "Maw",
  15747. image: {
  15748. source: "./media/characters/veski/maw.svg"
  15749. }
  15750. },
  15751. },
  15752. [
  15753. {
  15754. name: "Macro",
  15755. height: math.unit(2, "km"),
  15756. default: true
  15757. },
  15758. ]
  15759. ))
  15760. characterMakers.push(() => makeCharacter(
  15761. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15762. {
  15763. front: {
  15764. height: math.unit(5 + 7 / 12, "feet"),
  15765. name: "Front",
  15766. image: {
  15767. source: "./media/characters/isabelle/front.svg",
  15768. extra: 2130 / 1976,
  15769. bottom: 0.05
  15770. }
  15771. },
  15772. },
  15773. [
  15774. {
  15775. name: "Supermicro",
  15776. height: math.unit(10, "micrometers")
  15777. },
  15778. {
  15779. name: "Micro",
  15780. height: math.unit(1, "inch")
  15781. },
  15782. {
  15783. name: "Tiny",
  15784. height: math.unit(5, "inches")
  15785. },
  15786. {
  15787. name: "Standard",
  15788. height: math.unit(5 + 7 / 12, "inches")
  15789. },
  15790. {
  15791. name: "Macro",
  15792. height: math.unit(80, "meters"),
  15793. default: true
  15794. },
  15795. {
  15796. name: "Megamacro",
  15797. height: math.unit(250, "meters")
  15798. },
  15799. {
  15800. name: "Gigamacro",
  15801. height: math.unit(5, "km")
  15802. },
  15803. {
  15804. name: "Cosmic",
  15805. height: math.unit(2.5e6, "miles")
  15806. },
  15807. ]
  15808. ))
  15809. characterMakers.push(() => makeCharacter(
  15810. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15811. {
  15812. front: {
  15813. height: math.unit(6, "feet"),
  15814. weight: math.unit(150, "lb"),
  15815. name: "Front",
  15816. image: {
  15817. source: "./media/characters/hanzo/front.svg",
  15818. extra: 374 / 344,
  15819. bottom: 0.02
  15820. }
  15821. },
  15822. },
  15823. [
  15824. {
  15825. name: "Normal",
  15826. height: math.unit(8, "feet"),
  15827. default: true
  15828. },
  15829. ]
  15830. ))
  15831. characterMakers.push(() => makeCharacter(
  15832. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15833. {
  15834. front: {
  15835. height: math.unit(7, "feet"),
  15836. weight: math.unit(130, "lb"),
  15837. name: "Front",
  15838. image: {
  15839. source: "./media/characters/anna/front.svg",
  15840. extra: 169 / 145,
  15841. bottom: 0.06
  15842. }
  15843. },
  15844. full: {
  15845. height: math.unit(4.96, "feet"),
  15846. weight: math.unit(220, "lb"),
  15847. name: "Full",
  15848. image: {
  15849. source: "./media/characters/anna/full.svg",
  15850. extra: 138 / 114,
  15851. bottom: 0.15
  15852. }
  15853. },
  15854. tongue: {
  15855. height: math.unit(2.53, "feet"),
  15856. name: "Tongue",
  15857. image: {
  15858. source: "./media/characters/anna/tongue.svg"
  15859. }
  15860. },
  15861. },
  15862. [
  15863. {
  15864. name: "Normal",
  15865. height: math.unit(7, "feet"),
  15866. default: true
  15867. },
  15868. ]
  15869. ))
  15870. characterMakers.push(() => makeCharacter(
  15871. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15872. {
  15873. front: {
  15874. height: math.unit(7, "feet"),
  15875. weight: math.unit(150, "lb"),
  15876. name: "Front",
  15877. image: {
  15878. source: "./media/characters/ian-corvid/front.svg",
  15879. extra: 150 / 142,
  15880. bottom: 0.02
  15881. }
  15882. },
  15883. back: {
  15884. height: math.unit(7, "feet"),
  15885. weight: math.unit(150, "lb"),
  15886. name: "Back",
  15887. image: {
  15888. source: "./media/characters/ian-corvid/back.svg",
  15889. extra: 150 / 143,
  15890. bottom: 0.01
  15891. }
  15892. },
  15893. stomping: {
  15894. height: math.unit(7, "feet"),
  15895. weight: math.unit(150, "lb"),
  15896. name: "Stomping",
  15897. image: {
  15898. source: "./media/characters/ian-corvid/stomping.svg",
  15899. extra: 76 / 72
  15900. }
  15901. },
  15902. sitting: {
  15903. height: math.unit(7 / 1.8, "feet"),
  15904. weight: math.unit(150, "lb"),
  15905. name: "Sitting",
  15906. image: {
  15907. source: "./media/characters/ian-corvid/sitting.svg",
  15908. extra: 1400 / 1269,
  15909. bottom: 0.15
  15910. }
  15911. },
  15912. },
  15913. [
  15914. {
  15915. name: "Tiny Microw",
  15916. height: math.unit(1, "inch")
  15917. },
  15918. {
  15919. name: "Microw",
  15920. height: math.unit(6, "inches")
  15921. },
  15922. {
  15923. name: "Crow",
  15924. height: math.unit(7 + 1 / 12, "feet"),
  15925. default: true
  15926. },
  15927. {
  15928. name: "Macrow",
  15929. height: math.unit(176, "feet")
  15930. },
  15931. ]
  15932. ))
  15933. characterMakers.push(() => makeCharacter(
  15934. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15935. {
  15936. front: {
  15937. height: math.unit(5 + 7 / 12, "feet"),
  15938. weight: math.unit(147, "lb"),
  15939. name: "Front",
  15940. image: {
  15941. source: "./media/characters/natalie-kellon/front.svg",
  15942. extra: 1214 / 1141,
  15943. bottom: 0.02
  15944. }
  15945. },
  15946. },
  15947. [
  15948. {
  15949. name: "Micro",
  15950. height: math.unit(1 / 16, "inch")
  15951. },
  15952. {
  15953. name: "Tiny",
  15954. height: math.unit(4, "inches")
  15955. },
  15956. {
  15957. name: "Normal",
  15958. height: math.unit(5 + 7 / 12, "feet"),
  15959. default: true
  15960. },
  15961. {
  15962. name: "Amazon",
  15963. height: math.unit(12, "feet")
  15964. },
  15965. {
  15966. name: "Giantess",
  15967. height: math.unit(160, "meters")
  15968. },
  15969. {
  15970. name: "Titaness",
  15971. height: math.unit(800, "meters")
  15972. },
  15973. ]
  15974. ))
  15975. characterMakers.push(() => makeCharacter(
  15976. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15977. {
  15978. front: {
  15979. height: math.unit(6, "feet"),
  15980. weight: math.unit(150, "lb"),
  15981. name: "Front",
  15982. image: {
  15983. source: "./media/characters/alluria/front.svg",
  15984. extra: 806 / 738,
  15985. bottom: 0.01
  15986. }
  15987. },
  15988. side: {
  15989. height: math.unit(6, "feet"),
  15990. weight: math.unit(150, "lb"),
  15991. name: "Side",
  15992. image: {
  15993. source: "./media/characters/alluria/side.svg",
  15994. extra: 800 / 750,
  15995. }
  15996. },
  15997. back: {
  15998. height: math.unit(6, "feet"),
  15999. weight: math.unit(150, "lb"),
  16000. name: "Back",
  16001. image: {
  16002. source: "./media/characters/alluria/back.svg",
  16003. extra: 806 / 738,
  16004. }
  16005. },
  16006. frontMaid: {
  16007. height: math.unit(6, "feet"),
  16008. weight: math.unit(150, "lb"),
  16009. name: "Front (Maid)",
  16010. image: {
  16011. source: "./media/characters/alluria/front-maid.svg",
  16012. extra: 806 / 738,
  16013. bottom: 0.01
  16014. }
  16015. },
  16016. sideMaid: {
  16017. height: math.unit(6, "feet"),
  16018. weight: math.unit(150, "lb"),
  16019. name: "Side (Maid)",
  16020. image: {
  16021. source: "./media/characters/alluria/side-maid.svg",
  16022. extra: 800 / 750,
  16023. bottom: 0.005
  16024. }
  16025. },
  16026. backMaid: {
  16027. height: math.unit(6, "feet"),
  16028. weight: math.unit(150, "lb"),
  16029. name: "Back (Maid)",
  16030. image: {
  16031. source: "./media/characters/alluria/back-maid.svg",
  16032. extra: 806 / 738,
  16033. }
  16034. },
  16035. },
  16036. [
  16037. {
  16038. name: "Micro",
  16039. height: math.unit(6, "inches"),
  16040. default: true
  16041. },
  16042. ]
  16043. ))
  16044. characterMakers.push(() => makeCharacter(
  16045. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16046. {
  16047. front: {
  16048. height: math.unit(6, "feet"),
  16049. weight: math.unit(150, "lb"),
  16050. name: "Front",
  16051. image: {
  16052. source: "./media/characters/kyle/front.svg",
  16053. extra: 1069 / 962,
  16054. bottom: 77.228 / 1727.45
  16055. }
  16056. },
  16057. },
  16058. [
  16059. {
  16060. name: "Macro",
  16061. height: math.unit(150, "feet"),
  16062. default: true
  16063. },
  16064. ]
  16065. ))
  16066. characterMakers.push(() => makeCharacter(
  16067. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16068. {
  16069. front: {
  16070. height: math.unit(6, "feet"),
  16071. weight: math.unit(300, "lb"),
  16072. name: "Front",
  16073. image: {
  16074. source: "./media/characters/duncan/front.svg",
  16075. extra: 1650 / 1482,
  16076. bottom: 0.05
  16077. }
  16078. },
  16079. },
  16080. [
  16081. {
  16082. name: "Macro",
  16083. height: math.unit(100, "feet"),
  16084. default: true
  16085. },
  16086. ]
  16087. ))
  16088. characterMakers.push(() => makeCharacter(
  16089. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16090. {
  16091. front: {
  16092. height: math.unit(5 + 4 / 12, "feet"),
  16093. weight: math.unit(220, "lb"),
  16094. name: "Front",
  16095. image: {
  16096. source: "./media/characters/memory/front.svg",
  16097. extra: 3641 / 3545,
  16098. bottom: 0.03
  16099. }
  16100. },
  16101. back: {
  16102. height: math.unit(5 + 4 / 12, "feet"),
  16103. weight: math.unit(220, "lb"),
  16104. name: "Back",
  16105. image: {
  16106. source: "./media/characters/memory/back.svg",
  16107. extra: 3641 / 3545,
  16108. bottom: 0.025
  16109. }
  16110. },
  16111. frontSkirt: {
  16112. height: math.unit(5 + 4 / 12, "feet"),
  16113. weight: math.unit(220, "lb"),
  16114. name: "Front (Skirt)",
  16115. image: {
  16116. source: "./media/characters/memory/front-skirt.svg",
  16117. extra: 3641 / 3545,
  16118. bottom: 0.03
  16119. }
  16120. },
  16121. frontDress: {
  16122. height: math.unit(5 + 4 / 12, "feet"),
  16123. weight: math.unit(220, "lb"),
  16124. name: "Front (Dress)",
  16125. image: {
  16126. source: "./media/characters/memory/front-dress.svg",
  16127. extra: 3641 / 3545,
  16128. bottom: 0.03
  16129. }
  16130. },
  16131. },
  16132. [
  16133. {
  16134. name: "Micro",
  16135. height: math.unit(6, "inches"),
  16136. default: true
  16137. },
  16138. {
  16139. name: "Normal",
  16140. height: math.unit(5 + 4 / 12, "feet")
  16141. },
  16142. ]
  16143. ))
  16144. characterMakers.push(() => makeCharacter(
  16145. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16146. {
  16147. front: {
  16148. height: math.unit(4 + 11 / 12, "feet"),
  16149. weight: math.unit(100, "lb"),
  16150. name: "Front",
  16151. image: {
  16152. source: "./media/characters/luno/front.svg",
  16153. extra: 1535 / 1487,
  16154. bottom: 0.03
  16155. }
  16156. },
  16157. },
  16158. [
  16159. {
  16160. name: "Micro",
  16161. height: math.unit(3, "inches")
  16162. },
  16163. {
  16164. name: "Normal",
  16165. height: math.unit(4 + 11 / 12, "feet"),
  16166. default: true
  16167. },
  16168. {
  16169. name: "Macro",
  16170. height: math.unit(300, "feet")
  16171. },
  16172. {
  16173. name: "Megamacro",
  16174. height: math.unit(700, "miles")
  16175. },
  16176. ]
  16177. ))
  16178. characterMakers.push(() => makeCharacter(
  16179. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16180. {
  16181. front: {
  16182. height: math.unit(6 + 2 / 12, "feet"),
  16183. weight: math.unit(170, "lb"),
  16184. name: "Front",
  16185. image: {
  16186. source: "./media/characters/jamesy/front.svg",
  16187. extra: 440 / 382,
  16188. bottom: 0.005
  16189. }
  16190. },
  16191. },
  16192. [
  16193. {
  16194. name: "Micro",
  16195. height: math.unit(3, "inches")
  16196. },
  16197. {
  16198. name: "Normal",
  16199. height: math.unit(6 + 2 / 12, "feet"),
  16200. default: true
  16201. },
  16202. {
  16203. name: "Macro",
  16204. height: math.unit(300, "feet")
  16205. },
  16206. {
  16207. name: "Megamacro",
  16208. height: math.unit(700, "miles")
  16209. },
  16210. ]
  16211. ))
  16212. characterMakers.push(() => makeCharacter(
  16213. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16214. {
  16215. front: {
  16216. height: math.unit(6, "feet"),
  16217. weight: math.unit(160, "lb"),
  16218. name: "Front",
  16219. image: {
  16220. source: "./media/characters/mark/front.svg",
  16221. extra: 3300 / 3100,
  16222. bottom: 136.42 / 3440.47
  16223. }
  16224. },
  16225. },
  16226. [
  16227. {
  16228. name: "Macro",
  16229. height: math.unit(120, "meters")
  16230. },
  16231. {
  16232. name: "Bigger Macro",
  16233. height: math.unit(350, "meters")
  16234. },
  16235. {
  16236. name: "Megamacro",
  16237. height: math.unit(8, "km"),
  16238. default: true
  16239. },
  16240. {
  16241. name: "Continental",
  16242. height: math.unit(4550, "km")
  16243. },
  16244. {
  16245. name: "Planetary",
  16246. height: math.unit(65000, "km")
  16247. },
  16248. ]
  16249. ))
  16250. characterMakers.push(() => makeCharacter(
  16251. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16252. {
  16253. front: {
  16254. height: math.unit(6, "feet"),
  16255. weight: math.unit(400, "lb"),
  16256. name: "Front",
  16257. image: {
  16258. source: "./media/characters/mac/front.svg",
  16259. extra: 1048 / 987.7,
  16260. bottom: 60 / 1107.6,
  16261. }
  16262. },
  16263. },
  16264. [
  16265. {
  16266. name: "Macro",
  16267. height: math.unit(500, "feet"),
  16268. default: true
  16269. },
  16270. ]
  16271. ))
  16272. characterMakers.push(() => makeCharacter(
  16273. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16274. {
  16275. front: {
  16276. height: math.unit(5 + 2 / 12, "feet"),
  16277. weight: math.unit(190, "lb"),
  16278. name: "Front",
  16279. image: {
  16280. source: "./media/characters/bari/front.svg",
  16281. extra: 3156 / 2880,
  16282. bottom: 0.03
  16283. }
  16284. },
  16285. back: {
  16286. height: math.unit(5 + 2 / 12, "feet"),
  16287. weight: math.unit(190, "lb"),
  16288. name: "Back",
  16289. image: {
  16290. source: "./media/characters/bari/back.svg",
  16291. extra: 3260 / 2834,
  16292. bottom: 0.025
  16293. }
  16294. },
  16295. frontPlush: {
  16296. height: math.unit(5 + 2 / 12, "feet"),
  16297. weight: math.unit(190, "lb"),
  16298. name: "Front (Plush)",
  16299. image: {
  16300. source: "./media/characters/bari/front-plush.svg",
  16301. extra: 1112 / 1061,
  16302. bottom: 0.002
  16303. }
  16304. },
  16305. },
  16306. [
  16307. {
  16308. name: "Micro",
  16309. height: math.unit(3, "inches")
  16310. },
  16311. {
  16312. name: "Normal",
  16313. height: math.unit(5 + 2 / 12, "feet"),
  16314. default: true
  16315. },
  16316. {
  16317. name: "Macro",
  16318. height: math.unit(20, "feet")
  16319. },
  16320. ]
  16321. ))
  16322. characterMakers.push(() => makeCharacter(
  16323. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16324. {
  16325. front: {
  16326. height: math.unit(6 + 1 / 12, "feet"),
  16327. weight: math.unit(275, "lb"),
  16328. name: "Front",
  16329. image: {
  16330. source: "./media/characters/hunter-misha-raven/front.svg"
  16331. }
  16332. },
  16333. },
  16334. [
  16335. {
  16336. name: "Mortal",
  16337. height: math.unit(6 + 1 / 12, "feet")
  16338. },
  16339. {
  16340. name: "Divine",
  16341. height: math.unit(1.12134e34, "parsecs"),
  16342. default: true
  16343. },
  16344. ]
  16345. ))
  16346. characterMakers.push(() => makeCharacter(
  16347. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16348. {
  16349. front: {
  16350. height: math.unit(6 + 3 / 12, "feet"),
  16351. weight: math.unit(220, "lb"),
  16352. name: "Front",
  16353. image: {
  16354. source: "./media/characters/max-calore/front.svg",
  16355. extra: 1700 / 1648,
  16356. bottom: 0.01
  16357. }
  16358. },
  16359. back: {
  16360. height: math.unit(6 + 3 / 12, "feet"),
  16361. weight: math.unit(220, "lb"),
  16362. name: "Back",
  16363. image: {
  16364. source: "./media/characters/max-calore/back.svg",
  16365. extra: 1700 / 1648,
  16366. bottom: 0.01
  16367. }
  16368. },
  16369. },
  16370. [
  16371. {
  16372. name: "Normal",
  16373. height: math.unit(6 + 3 / 12, "feet"),
  16374. default: true
  16375. },
  16376. ]
  16377. ))
  16378. characterMakers.push(() => makeCharacter(
  16379. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16380. {
  16381. side: {
  16382. height: math.unit(2 + 8 / 12, "feet"),
  16383. weight: math.unit(99, "lb"),
  16384. name: "Side",
  16385. image: {
  16386. source: "./media/characters/aspen/side.svg",
  16387. extra: 152 / 138,
  16388. bottom: 0.032
  16389. }
  16390. },
  16391. },
  16392. [
  16393. {
  16394. name: "Normal",
  16395. height: math.unit(2 + 8 / 12, "feet"),
  16396. default: true
  16397. },
  16398. ]
  16399. ))
  16400. characterMakers.push(() => makeCharacter(
  16401. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16402. {
  16403. side: {
  16404. height: math.unit(3 + 2 / 12, "feet"),
  16405. weight: math.unit(224, "lb"),
  16406. name: "Side",
  16407. image: {
  16408. source: "./media/characters/sheila-feral-wolf/side.svg",
  16409. extra: 179 / 166,
  16410. bottom: 0.03
  16411. }
  16412. },
  16413. },
  16414. [
  16415. {
  16416. name: "Normal",
  16417. height: math.unit(3 + 2 / 12, "feet"),
  16418. default: true
  16419. },
  16420. ]
  16421. ))
  16422. characterMakers.push(() => makeCharacter(
  16423. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16424. {
  16425. side: {
  16426. height: math.unit(1 + 9 / 12, "feet"),
  16427. weight: math.unit(38, "lb"),
  16428. name: "Side",
  16429. image: {
  16430. source: "./media/characters/michelle/side.svg",
  16431. extra: 147 / 136.7,
  16432. bottom: 0.03
  16433. }
  16434. },
  16435. },
  16436. [
  16437. {
  16438. name: "Normal",
  16439. height: math.unit(1 + 9 / 12, "feet"),
  16440. default: true
  16441. },
  16442. ]
  16443. ))
  16444. characterMakers.push(() => makeCharacter(
  16445. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16446. {
  16447. front: {
  16448. height: math.unit(1 + 1 / 12, "feet"),
  16449. weight: math.unit(18, "lb"),
  16450. name: "Front",
  16451. image: {
  16452. source: "./media/characters/nino/front.svg"
  16453. }
  16454. },
  16455. },
  16456. [
  16457. {
  16458. name: "Normal",
  16459. height: math.unit(1 + 1 / 12, "feet"),
  16460. default: true
  16461. },
  16462. ]
  16463. ))
  16464. characterMakers.push(() => makeCharacter(
  16465. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16466. {
  16467. front: {
  16468. height: math.unit(1, "feet"),
  16469. weight: math.unit(16, "lb"),
  16470. name: "Front",
  16471. image: {
  16472. source: "./media/characters/viola/front.svg"
  16473. }
  16474. },
  16475. },
  16476. [
  16477. {
  16478. name: "Normal",
  16479. height: math.unit(1, "feet"),
  16480. default: true
  16481. },
  16482. ]
  16483. ))
  16484. characterMakers.push(() => makeCharacter(
  16485. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16486. {
  16487. front: {
  16488. height: math.unit(6 + 5 / 12, "feet"),
  16489. weight: math.unit(580, "lb"),
  16490. name: "Front",
  16491. image: {
  16492. source: "./media/characters/atlas/front.svg",
  16493. extra: 298.5 / 290,
  16494. bottom: 0.015
  16495. }
  16496. },
  16497. },
  16498. [
  16499. {
  16500. name: "Normal",
  16501. height: math.unit(6 + 5 / 12, "feet"),
  16502. default: true
  16503. },
  16504. ]
  16505. ))
  16506. characterMakers.push(() => makeCharacter(
  16507. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16508. {
  16509. side: {
  16510. height: math.unit(1 + 10 / 12, "feet"),
  16511. weight: math.unit(25, "lb"),
  16512. name: "Side",
  16513. image: {
  16514. source: "./media/characters/davy/side.svg",
  16515. extra: 200 / 170,
  16516. bottom: 0.01
  16517. }
  16518. },
  16519. },
  16520. [
  16521. {
  16522. name: "Normal",
  16523. height: math.unit(1 + 10 / 12, "feet"),
  16524. default: true
  16525. },
  16526. ]
  16527. ))
  16528. characterMakers.push(() => makeCharacter(
  16529. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16530. {
  16531. side: {
  16532. height: math.unit(4 + 8 / 12, "feet"),
  16533. weight: math.unit(166, "lb"),
  16534. name: "Side",
  16535. image: {
  16536. source: "./media/characters/fiona/side.svg",
  16537. extra: 232 / 220,
  16538. bottom: 0.03
  16539. }
  16540. },
  16541. },
  16542. [
  16543. {
  16544. name: "Normal",
  16545. height: math.unit(4 + 8 / 12, "feet"),
  16546. default: true
  16547. },
  16548. ]
  16549. ))
  16550. characterMakers.push(() => makeCharacter(
  16551. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16552. {
  16553. front: {
  16554. height: math.unit(2, "feet"),
  16555. weight: math.unit(62, "lb"),
  16556. name: "Front",
  16557. image: {
  16558. source: "./media/characters/lyla/front.svg",
  16559. bottom: 0.1
  16560. }
  16561. },
  16562. },
  16563. [
  16564. {
  16565. name: "Normal",
  16566. height: math.unit(2, "feet"),
  16567. default: true
  16568. },
  16569. ]
  16570. ))
  16571. characterMakers.push(() => makeCharacter(
  16572. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16573. {
  16574. side: {
  16575. height: math.unit(1.8, "feet"),
  16576. weight: math.unit(44, "lb"),
  16577. name: "Side",
  16578. image: {
  16579. source: "./media/characters/perseus/side.svg",
  16580. bottom: 0.21
  16581. }
  16582. },
  16583. },
  16584. [
  16585. {
  16586. name: "Normal",
  16587. height: math.unit(1.8, "feet"),
  16588. default: true
  16589. },
  16590. ]
  16591. ))
  16592. characterMakers.push(() => makeCharacter(
  16593. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16594. {
  16595. side: {
  16596. height: math.unit(4 + 2 / 12, "feet"),
  16597. weight: math.unit(20, "lb"),
  16598. name: "Side",
  16599. image: {
  16600. source: "./media/characters/remus/side.svg"
  16601. }
  16602. },
  16603. },
  16604. [
  16605. {
  16606. name: "Normal",
  16607. height: math.unit(4 + 2 / 12, "feet"),
  16608. default: true
  16609. },
  16610. ]
  16611. ))
  16612. characterMakers.push(() => makeCharacter(
  16613. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16614. {
  16615. front: {
  16616. height: math.unit(4 + 11 / 12, "feet"),
  16617. weight: math.unit(114, "lb"),
  16618. name: "Front",
  16619. image: {
  16620. source: "./media/characters/raf/front.svg",
  16621. bottom: 20.5 / 1863
  16622. }
  16623. },
  16624. side: {
  16625. height: math.unit(4 + 11 / 12, "feet"),
  16626. weight: math.unit(114, "lb"),
  16627. name: "Side",
  16628. image: {
  16629. source: "./media/characters/raf/side.svg",
  16630. bottom: 22 / 1822
  16631. }
  16632. },
  16633. },
  16634. [
  16635. {
  16636. name: "Micro",
  16637. height: math.unit(2, "inches")
  16638. },
  16639. {
  16640. name: "Normal",
  16641. height: math.unit(4 + 11 / 12, "feet"),
  16642. default: true
  16643. },
  16644. {
  16645. name: "Macro",
  16646. height: math.unit(70, "feet")
  16647. },
  16648. ]
  16649. ))
  16650. characterMakers.push(() => makeCharacter(
  16651. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16652. {
  16653. front: {
  16654. height: math.unit(1.5, "meters"),
  16655. weight: math.unit(68, "kg"),
  16656. name: "Front",
  16657. image: {
  16658. source: "./media/characters/liam-einarr/front.svg",
  16659. extra: 2822 / 2666
  16660. }
  16661. },
  16662. back: {
  16663. height: math.unit(1.5, "meters"),
  16664. weight: math.unit(68, "kg"),
  16665. name: "Back",
  16666. image: {
  16667. source: "./media/characters/liam-einarr/back.svg",
  16668. extra: 2822 / 2666,
  16669. bottom: 0.015
  16670. }
  16671. },
  16672. },
  16673. [
  16674. {
  16675. name: "Normal",
  16676. height: math.unit(1.5, "meters"),
  16677. default: true
  16678. },
  16679. {
  16680. name: "Macro",
  16681. height: math.unit(150, "meters")
  16682. },
  16683. {
  16684. name: "Megamacro",
  16685. height: math.unit(35, "km")
  16686. },
  16687. ]
  16688. ))
  16689. characterMakers.push(() => makeCharacter(
  16690. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16691. {
  16692. front: {
  16693. height: math.unit(6, "feet"),
  16694. weight: math.unit(75, "kg"),
  16695. name: "Front",
  16696. image: {
  16697. source: "./media/characters/linda/front.svg",
  16698. extra: 930 / 874,
  16699. bottom: 0.004
  16700. }
  16701. },
  16702. },
  16703. [
  16704. {
  16705. name: "Normal",
  16706. height: math.unit(6, "feet"),
  16707. default: true
  16708. },
  16709. ]
  16710. ))
  16711. characterMakers.push(() => makeCharacter(
  16712. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16713. {
  16714. front: {
  16715. height: math.unit(6 + 8 / 12, "feet"),
  16716. weight: math.unit(220, "lb"),
  16717. name: "Front",
  16718. image: {
  16719. source: "./media/characters/caylex/front.svg",
  16720. extra: 821 / 772,
  16721. bottom: 0.07
  16722. }
  16723. },
  16724. back: {
  16725. height: math.unit(6 + 8 / 12, "feet"),
  16726. weight: math.unit(220, "lb"),
  16727. name: "Back",
  16728. image: {
  16729. source: "./media/characters/caylex/back.svg",
  16730. extra: 821 / 772,
  16731. bottom: 0.022
  16732. }
  16733. },
  16734. hand: {
  16735. height: math.unit(1.25, "feet"),
  16736. name: "Hand",
  16737. image: {
  16738. source: "./media/characters/caylex/hand.svg"
  16739. }
  16740. },
  16741. foot: {
  16742. height: math.unit(1.6, "feet"),
  16743. name: "Foot",
  16744. image: {
  16745. source: "./media/characters/caylex/foot.svg"
  16746. }
  16747. },
  16748. armored: {
  16749. height: math.unit(6 + 8 / 12, "feet"),
  16750. weight: math.unit(250, "lb"),
  16751. name: "Armored",
  16752. image: {
  16753. source: "./media/characters/caylex/armored.svg",
  16754. extra: 1420 / 1310,
  16755. bottom: 0.045
  16756. }
  16757. },
  16758. },
  16759. [
  16760. {
  16761. name: "Normal",
  16762. height: math.unit(6 + 8 / 12, "feet"),
  16763. default: true
  16764. },
  16765. {
  16766. name: "Normal+",
  16767. height: math.unit(12, "feet")
  16768. },
  16769. ]
  16770. ))
  16771. characterMakers.push(() => makeCharacter(
  16772. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16773. {
  16774. front: {
  16775. height: math.unit(7 + 6 / 12, "feet"),
  16776. weight: math.unit(288, "lb"),
  16777. name: "Front",
  16778. image: {
  16779. source: "./media/characters/alana/front.svg",
  16780. extra: 679 / 653,
  16781. bottom: 22.5 / 701
  16782. }
  16783. },
  16784. },
  16785. [
  16786. {
  16787. name: "Normal",
  16788. height: math.unit(7 + 6 / 12, "feet")
  16789. },
  16790. {
  16791. name: "Large",
  16792. height: math.unit(50, "feet")
  16793. },
  16794. {
  16795. name: "Macro",
  16796. height: math.unit(100, "feet"),
  16797. default: true
  16798. },
  16799. {
  16800. name: "Macro+",
  16801. height: math.unit(200, "feet")
  16802. },
  16803. ]
  16804. ))
  16805. characterMakers.push(() => makeCharacter(
  16806. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16807. {
  16808. front: {
  16809. height: math.unit(6 + 1 / 12, "feet"),
  16810. weight: math.unit(210, "lb"),
  16811. name: "Front",
  16812. image: {
  16813. source: "./media/characters/hasani/front.svg",
  16814. extra: 244 / 232,
  16815. bottom: 0.01
  16816. }
  16817. },
  16818. back: {
  16819. height: math.unit(6 + 1 / 12, "feet"),
  16820. weight: math.unit(210, "lb"),
  16821. name: "Back",
  16822. image: {
  16823. source: "./media/characters/hasani/back.svg",
  16824. extra: 244 / 232,
  16825. bottom: 0.01
  16826. }
  16827. },
  16828. },
  16829. [
  16830. {
  16831. name: "Normal",
  16832. height: math.unit(6 + 1 / 12, "feet")
  16833. },
  16834. {
  16835. name: "Macro",
  16836. height: math.unit(175, "feet"),
  16837. default: true
  16838. },
  16839. ]
  16840. ))
  16841. characterMakers.push(() => makeCharacter(
  16842. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16843. {
  16844. front: {
  16845. height: math.unit(1.82, "meters"),
  16846. weight: math.unit(140, "lb"),
  16847. name: "Front",
  16848. image: {
  16849. source: "./media/characters/nita/front.svg",
  16850. extra: 2473 / 2363,
  16851. bottom: 0.01
  16852. }
  16853. },
  16854. },
  16855. [
  16856. {
  16857. name: "Normal",
  16858. height: math.unit(1.82, "m")
  16859. },
  16860. {
  16861. name: "Macro",
  16862. height: math.unit(300, "m")
  16863. },
  16864. {
  16865. name: "Mistake Canon",
  16866. height: math.unit(0.5, "miles"),
  16867. default: true
  16868. },
  16869. {
  16870. name: "Big Mistake",
  16871. height: math.unit(13, "miles")
  16872. },
  16873. {
  16874. name: "Playing God",
  16875. height: math.unit(2450, "miles")
  16876. },
  16877. ]
  16878. ))
  16879. characterMakers.push(() => makeCharacter(
  16880. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16881. {
  16882. front: {
  16883. height: math.unit(4, "feet"),
  16884. weight: math.unit(120, "lb"),
  16885. name: "Front",
  16886. image: {
  16887. source: "./media/characters/shiriko/front.svg",
  16888. extra: 195 / 188
  16889. }
  16890. },
  16891. },
  16892. [
  16893. {
  16894. name: "Normal",
  16895. height: math.unit(4, "feet"),
  16896. default: true
  16897. },
  16898. ]
  16899. ))
  16900. characterMakers.push(() => makeCharacter(
  16901. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16902. {
  16903. front: {
  16904. height: math.unit(6, "feet"),
  16905. name: "front",
  16906. image: {
  16907. source: "./media/characters/deja/front.svg",
  16908. extra: 926 / 840,
  16909. bottom: 0.07
  16910. }
  16911. },
  16912. },
  16913. [
  16914. {
  16915. name: "Planck Length",
  16916. height: math.unit(1.6e-35, "meters")
  16917. },
  16918. {
  16919. name: "Normal",
  16920. height: math.unit(30.48, "meters"),
  16921. default: true
  16922. },
  16923. {
  16924. name: "Universal",
  16925. height: math.unit(8.8e26, "meters")
  16926. },
  16927. ]
  16928. ))
  16929. characterMakers.push(() => makeCharacter(
  16930. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16931. {
  16932. side: {
  16933. height: math.unit(8, "feet"),
  16934. weight: math.unit(6300, "lb"),
  16935. name: "Side",
  16936. image: {
  16937. source: "./media/characters/anima/side.svg",
  16938. bottom: 0.035
  16939. }
  16940. },
  16941. },
  16942. [
  16943. {
  16944. name: "Normal",
  16945. height: math.unit(8, "feet"),
  16946. default: true
  16947. },
  16948. ]
  16949. ))
  16950. characterMakers.push(() => makeCharacter(
  16951. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16952. {
  16953. front: {
  16954. height: math.unit(8, "feet"),
  16955. weight: math.unit(350, "lb"),
  16956. name: "Front",
  16957. image: {
  16958. source: "./media/characters/bianca/front.svg",
  16959. extra: 234 / 225,
  16960. bottom: 0.03
  16961. }
  16962. },
  16963. },
  16964. [
  16965. {
  16966. name: "Normal",
  16967. height: math.unit(8, "feet"),
  16968. default: true
  16969. },
  16970. ]
  16971. ))
  16972. characterMakers.push(() => makeCharacter(
  16973. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16974. {
  16975. front: {
  16976. height: math.unit(6, "feet"),
  16977. weight: math.unit(150, "lb"),
  16978. name: "Front",
  16979. image: {
  16980. source: "./media/characters/adinia/front.svg",
  16981. extra: 1845 / 1672,
  16982. bottom: 0.02
  16983. }
  16984. },
  16985. back: {
  16986. height: math.unit(6, "feet"),
  16987. weight: math.unit(150, "lb"),
  16988. name: "Back",
  16989. image: {
  16990. source: "./media/characters/adinia/back.svg",
  16991. extra: 1845 / 1672,
  16992. bottom: 0.002
  16993. }
  16994. },
  16995. },
  16996. [
  16997. {
  16998. name: "Normal",
  16999. height: math.unit(11 + 5 / 12, "feet"),
  17000. default: true
  17001. },
  17002. ]
  17003. ))
  17004. characterMakers.push(() => makeCharacter(
  17005. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17006. {
  17007. front: {
  17008. height: math.unit(3, "meters"),
  17009. weight: math.unit(200, "kg"),
  17010. name: "Front",
  17011. image: {
  17012. source: "./media/characters/lykasa/front.svg",
  17013. extra: 1076 / 976,
  17014. bottom: 0.06
  17015. }
  17016. },
  17017. },
  17018. [
  17019. {
  17020. name: "Normal",
  17021. height: math.unit(3, "meters")
  17022. },
  17023. {
  17024. name: "Kaiju",
  17025. height: math.unit(120, "meters"),
  17026. default: true
  17027. },
  17028. {
  17029. name: "Mega Kaiju",
  17030. height: math.unit(240, "km")
  17031. },
  17032. {
  17033. name: "Giga Kaiju",
  17034. height: math.unit(400, "megameters")
  17035. },
  17036. {
  17037. name: "Tera Kaiju",
  17038. height: math.unit(800, "gigameters")
  17039. },
  17040. {
  17041. name: "Kaiju Dragon Goddess",
  17042. height: math.unit(26, "zettaparsecs")
  17043. },
  17044. ]
  17045. ))
  17046. characterMakers.push(() => makeCharacter(
  17047. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17048. {
  17049. side: {
  17050. height: math.unit(283 / 124 * 6, "feet"),
  17051. weight: math.unit(35000, "lb"),
  17052. name: "Side",
  17053. image: {
  17054. source: "./media/characters/malfaren/side.svg",
  17055. extra: 2500 / 1010,
  17056. bottom: 0.01
  17057. }
  17058. },
  17059. front: {
  17060. height: math.unit(22.36, "feet"),
  17061. weight: math.unit(35000, "lb"),
  17062. name: "Front",
  17063. image: {
  17064. source: "./media/characters/malfaren/front.svg",
  17065. extra: 1631 / 1476,
  17066. bottom: 0.01
  17067. }
  17068. },
  17069. maw: {
  17070. height: math.unit(6.9, "feet"),
  17071. name: "Maw",
  17072. image: {
  17073. source: "./media/characters/malfaren/maw.svg"
  17074. }
  17075. },
  17076. },
  17077. [
  17078. {
  17079. name: "Big",
  17080. height: math.unit(283 / 162 * 6, "feet"),
  17081. },
  17082. {
  17083. name: "Bigger",
  17084. height: math.unit(283 / 124 * 6, "feet")
  17085. },
  17086. {
  17087. name: "Massive",
  17088. height: math.unit(283 / 92 * 6, "feet"),
  17089. default: true
  17090. },
  17091. {
  17092. name: "👀💦",
  17093. height: math.unit(283 / 73 * 6, "feet"),
  17094. },
  17095. ]
  17096. ))
  17097. characterMakers.push(() => makeCharacter(
  17098. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17099. {
  17100. front: {
  17101. height: math.unit(1.7, "m"),
  17102. weight: math.unit(70, "kg"),
  17103. name: "Front",
  17104. image: {
  17105. source: "./media/characters/kernel/front.svg",
  17106. extra: 222 / 210,
  17107. bottom: 0.007
  17108. }
  17109. },
  17110. },
  17111. [
  17112. {
  17113. name: "Nano",
  17114. height: math.unit(17, "micrometers")
  17115. },
  17116. {
  17117. name: "Micro",
  17118. height: math.unit(1.7, "mm")
  17119. },
  17120. {
  17121. name: "Small",
  17122. height: math.unit(1.7, "cm")
  17123. },
  17124. {
  17125. name: "Normal",
  17126. height: math.unit(1.7, "m"),
  17127. default: true
  17128. },
  17129. ]
  17130. ))
  17131. characterMakers.push(() => makeCharacter(
  17132. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17133. {
  17134. front: {
  17135. height: math.unit(1.75, "meters"),
  17136. weight: math.unit(65, "kg"),
  17137. name: "Front",
  17138. image: {
  17139. source: "./media/characters/jayne-folest/front.svg",
  17140. extra: 2115 / 2007,
  17141. bottom: 0.02
  17142. }
  17143. },
  17144. back: {
  17145. height: math.unit(1.75, "meters"),
  17146. weight: math.unit(65, "kg"),
  17147. name: "Back",
  17148. image: {
  17149. source: "./media/characters/jayne-folest/back.svg",
  17150. extra: 2115 / 2007,
  17151. bottom: 0.005
  17152. }
  17153. },
  17154. frontClothed: {
  17155. height: math.unit(1.75, "meters"),
  17156. weight: math.unit(65, "kg"),
  17157. name: "Front (Clothed)",
  17158. image: {
  17159. source: "./media/characters/jayne-folest/front-clothed.svg",
  17160. extra: 2115 / 2007,
  17161. bottom: 0.035
  17162. }
  17163. },
  17164. hand: {
  17165. height: math.unit(1 / 1.260, "feet"),
  17166. name: "Hand",
  17167. image: {
  17168. source: "./media/characters/jayne-folest/hand.svg"
  17169. }
  17170. },
  17171. foot: {
  17172. height: math.unit(1 / 0.918, "feet"),
  17173. name: "Foot",
  17174. image: {
  17175. source: "./media/characters/jayne-folest/foot.svg"
  17176. }
  17177. },
  17178. },
  17179. [
  17180. {
  17181. name: "Micro",
  17182. height: math.unit(4, "cm")
  17183. },
  17184. {
  17185. name: "Normal",
  17186. height: math.unit(1.75, "meters")
  17187. },
  17188. {
  17189. name: "Macro",
  17190. height: math.unit(47.5, "meters"),
  17191. default: true
  17192. },
  17193. ]
  17194. ))
  17195. characterMakers.push(() => makeCharacter(
  17196. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17197. {
  17198. front: {
  17199. height: math.unit(180, "cm"),
  17200. weight: math.unit(70, "kg"),
  17201. name: "Front",
  17202. image: {
  17203. source: "./media/characters/algier/front.svg",
  17204. extra: 596 / 572,
  17205. bottom: 0.04
  17206. }
  17207. },
  17208. back: {
  17209. height: math.unit(180, "cm"),
  17210. weight: math.unit(70, "kg"),
  17211. name: "Back",
  17212. image: {
  17213. source: "./media/characters/algier/back.svg",
  17214. extra: 596 / 572,
  17215. bottom: 0.025
  17216. }
  17217. },
  17218. frontdressed: {
  17219. height: math.unit(180, "cm"),
  17220. weight: math.unit(150, "kg"),
  17221. name: "Front-dressed",
  17222. image: {
  17223. source: "./media/characters/algier/front-dressed.svg",
  17224. extra: 596 / 572,
  17225. bottom: 0.038
  17226. }
  17227. },
  17228. },
  17229. [
  17230. {
  17231. name: "Micro",
  17232. height: math.unit(5, "cm")
  17233. },
  17234. {
  17235. name: "Normal",
  17236. height: math.unit(180, "cm"),
  17237. default: true
  17238. },
  17239. {
  17240. name: "Macro",
  17241. height: math.unit(64, "m")
  17242. },
  17243. ]
  17244. ))
  17245. characterMakers.push(() => makeCharacter(
  17246. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17247. {
  17248. upright: {
  17249. height: math.unit(7, "feet"),
  17250. weight: math.unit(300, "lb"),
  17251. name: "Upright",
  17252. image: {
  17253. source: "./media/characters/pretzel/upright.svg",
  17254. extra: 534 / 522,
  17255. bottom: 0.065
  17256. }
  17257. },
  17258. sprawling: {
  17259. height: math.unit(3.75, "feet"),
  17260. weight: math.unit(300, "lb"),
  17261. name: "Sprawling",
  17262. image: {
  17263. source: "./media/characters/pretzel/sprawling.svg",
  17264. extra: 314 / 281,
  17265. bottom: 0.1
  17266. }
  17267. },
  17268. tongue: {
  17269. height: math.unit(2, "feet"),
  17270. name: "Tongue",
  17271. image: {
  17272. source: "./media/characters/pretzel/tongue.svg"
  17273. }
  17274. },
  17275. },
  17276. [
  17277. {
  17278. name: "Normal",
  17279. height: math.unit(7, "feet"),
  17280. default: true
  17281. },
  17282. {
  17283. name: "Oversized",
  17284. height: math.unit(15, "feet")
  17285. },
  17286. {
  17287. name: "Huge",
  17288. height: math.unit(30, "feet")
  17289. },
  17290. {
  17291. name: "Macro",
  17292. height: math.unit(250, "feet")
  17293. },
  17294. ]
  17295. ))
  17296. characterMakers.push(() => makeCharacter(
  17297. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17298. {
  17299. sideFront: {
  17300. height: math.unit(5 + 2 / 12, "feet"),
  17301. weight: math.unit(120, "lb"),
  17302. name: "Front Side",
  17303. image: {
  17304. source: "./media/characters/roxi/side-front.svg",
  17305. extra: 2924 / 2717,
  17306. bottom: 0.08
  17307. }
  17308. },
  17309. sideBack: {
  17310. height: math.unit(5 + 2 / 12, "feet"),
  17311. weight: math.unit(120, "lb"),
  17312. name: "Back Side",
  17313. image: {
  17314. source: "./media/characters/roxi/side-back.svg",
  17315. extra: 2904 / 2693,
  17316. bottom: 0.06
  17317. }
  17318. },
  17319. front: {
  17320. height: math.unit(5 + 2 / 12, "feet"),
  17321. weight: math.unit(120, "lb"),
  17322. name: "Front",
  17323. image: {
  17324. source: "./media/characters/roxi/front.svg",
  17325. extra: 2028 / 1907,
  17326. bottom: 0.01
  17327. }
  17328. },
  17329. frontAlt: {
  17330. height: math.unit(5 + 2 / 12, "feet"),
  17331. weight: math.unit(120, "lb"),
  17332. name: "Front (Alt)",
  17333. image: {
  17334. source: "./media/characters/roxi/front-alt.svg",
  17335. extra: 1828 / 1798,
  17336. bottom: 0.01
  17337. }
  17338. },
  17339. sitting: {
  17340. height: math.unit(2.8, "feet"),
  17341. weight: math.unit(120, "lb"),
  17342. name: "Sitting",
  17343. image: {
  17344. source: "./media/characters/roxi/sitting.svg",
  17345. extra: 2660 / 2462,
  17346. bottom: 0.1
  17347. }
  17348. },
  17349. },
  17350. [
  17351. {
  17352. name: "Normal",
  17353. height: math.unit(5 + 2 / 12, "feet"),
  17354. default: true
  17355. },
  17356. ]
  17357. ))
  17358. characterMakers.push(() => makeCharacter(
  17359. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17360. {
  17361. side: {
  17362. height: math.unit(55, "feet"),
  17363. weight: math.unit(153, "tons"),
  17364. name: "Side",
  17365. image: {
  17366. source: "./media/characters/shadow/side.svg",
  17367. extra: 701 / 628,
  17368. bottom: 0.02
  17369. }
  17370. },
  17371. flying: {
  17372. height: math.unit(145, "feet"),
  17373. weight: math.unit(153, "tons"),
  17374. name: "Flying",
  17375. image: {
  17376. source: "./media/characters/shadow/flying.svg"
  17377. }
  17378. },
  17379. },
  17380. [
  17381. {
  17382. name: "Normal",
  17383. height: math.unit(55, "feet"),
  17384. default: true
  17385. },
  17386. ]
  17387. ))
  17388. characterMakers.push(() => makeCharacter(
  17389. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17390. {
  17391. front: {
  17392. height: math.unit(6, "feet"),
  17393. weight: math.unit(200, "lb"),
  17394. name: "Front",
  17395. image: {
  17396. source: "./media/characters/marcie/front.svg",
  17397. extra: 960 / 876,
  17398. bottom: 58 / 1017.87
  17399. }
  17400. },
  17401. },
  17402. [
  17403. {
  17404. name: "Macro",
  17405. height: math.unit(1, "mile"),
  17406. default: true
  17407. },
  17408. ]
  17409. ))
  17410. characterMakers.push(() => makeCharacter(
  17411. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17412. {
  17413. front: {
  17414. height: math.unit(7, "feet"),
  17415. weight: math.unit(200, "lb"),
  17416. name: "Front",
  17417. image: {
  17418. source: "./media/characters/kachina/front.svg",
  17419. extra: 1290.68 / 1119,
  17420. bottom: 36.5 / 1327.18
  17421. }
  17422. },
  17423. },
  17424. [
  17425. {
  17426. name: "Normal",
  17427. height: math.unit(7, "feet"),
  17428. default: true
  17429. },
  17430. ]
  17431. ))
  17432. characterMakers.push(() => makeCharacter(
  17433. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17434. {
  17435. looking: {
  17436. height: math.unit(2, "meters"),
  17437. weight: math.unit(300, "kg"),
  17438. name: "Looking",
  17439. image: {
  17440. source: "./media/characters/kash/looking.svg",
  17441. extra: 474 / 344,
  17442. bottom: 0.03
  17443. }
  17444. },
  17445. side: {
  17446. height: math.unit(2, "meters"),
  17447. weight: math.unit(300, "kg"),
  17448. name: "Side",
  17449. image: {
  17450. source: "./media/characters/kash/side.svg",
  17451. extra: 302 / 251,
  17452. bottom: 0.03
  17453. }
  17454. },
  17455. front: {
  17456. height: math.unit(2, "meters"),
  17457. weight: math.unit(300, "kg"),
  17458. name: "Front",
  17459. image: {
  17460. source: "./media/characters/kash/front.svg",
  17461. extra: 495 / 360,
  17462. bottom: 0.015
  17463. }
  17464. },
  17465. },
  17466. [
  17467. {
  17468. name: "Normal",
  17469. height: math.unit(2, "meters"),
  17470. default: true
  17471. },
  17472. {
  17473. name: "Big",
  17474. height: math.unit(3, "meters")
  17475. },
  17476. {
  17477. name: "Large",
  17478. height: math.unit(5, "meters")
  17479. },
  17480. ]
  17481. ))
  17482. characterMakers.push(() => makeCharacter(
  17483. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17484. {
  17485. feeding: {
  17486. height: math.unit(6.7, "feet"),
  17487. weight: math.unit(350, "lb"),
  17488. name: "Feeding",
  17489. image: {
  17490. source: "./media/characters/lalim/feeding.svg",
  17491. }
  17492. },
  17493. },
  17494. [
  17495. {
  17496. name: "Normal",
  17497. height: math.unit(6.7, "feet"),
  17498. default: true
  17499. },
  17500. ]
  17501. ))
  17502. characterMakers.push(() => makeCharacter(
  17503. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17504. {
  17505. front: {
  17506. height: math.unit(9.5, "feet"),
  17507. weight: math.unit(600, "lb"),
  17508. name: "Front",
  17509. image: {
  17510. source: "./media/characters/de'vout/front.svg",
  17511. extra: 1443 / 1328,
  17512. bottom: 0.025
  17513. }
  17514. },
  17515. back: {
  17516. height: math.unit(9.5, "feet"),
  17517. weight: math.unit(600, "lb"),
  17518. name: "Back",
  17519. image: {
  17520. source: "./media/characters/de'vout/back.svg",
  17521. extra: 1443 / 1328
  17522. }
  17523. },
  17524. frontDressed: {
  17525. height: math.unit(9.5, "feet"),
  17526. weight: math.unit(600, "lb"),
  17527. name: "Front (Dressed",
  17528. image: {
  17529. source: "./media/characters/de'vout/front-dressed.svg",
  17530. extra: 1443 / 1328,
  17531. bottom: 0.025
  17532. }
  17533. },
  17534. backDressed: {
  17535. height: math.unit(9.5, "feet"),
  17536. weight: math.unit(600, "lb"),
  17537. name: "Back (Dressed",
  17538. image: {
  17539. source: "./media/characters/de'vout/back-dressed.svg",
  17540. extra: 1443 / 1328
  17541. }
  17542. },
  17543. },
  17544. [
  17545. {
  17546. name: "Normal",
  17547. height: math.unit(9.5, "feet"),
  17548. default: true
  17549. },
  17550. ]
  17551. ))
  17552. characterMakers.push(() => makeCharacter(
  17553. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17554. {
  17555. front: {
  17556. height: math.unit(8, "feet"),
  17557. weight: math.unit(225, "lb"),
  17558. name: "Front",
  17559. image: {
  17560. source: "./media/characters/talana/front.svg",
  17561. extra: 1410 / 1300,
  17562. bottom: 0.015
  17563. }
  17564. },
  17565. frontDressed: {
  17566. height: math.unit(8, "feet"),
  17567. weight: math.unit(225, "lb"),
  17568. name: "Front (Dressed",
  17569. image: {
  17570. source: "./media/characters/talana/front-dressed.svg",
  17571. extra: 1410 / 1300,
  17572. bottom: 0.015
  17573. }
  17574. },
  17575. },
  17576. [
  17577. {
  17578. name: "Normal",
  17579. height: math.unit(8, "feet"),
  17580. default: true
  17581. },
  17582. ]
  17583. ))
  17584. characterMakers.push(() => makeCharacter(
  17585. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17586. {
  17587. side: {
  17588. height: math.unit(7.2, "feet"),
  17589. weight: math.unit(150, "lb"),
  17590. name: "Side",
  17591. image: {
  17592. source: "./media/characters/xeauvok/side.svg",
  17593. extra: 1975 / 1523,
  17594. bottom: 0.07
  17595. }
  17596. },
  17597. },
  17598. [
  17599. {
  17600. name: "Normal",
  17601. height: math.unit(7.2, "feet"),
  17602. default: true
  17603. },
  17604. ]
  17605. ))
  17606. characterMakers.push(() => makeCharacter(
  17607. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17608. {
  17609. side: {
  17610. height: math.unit(10, "feet"),
  17611. weight: math.unit(900, "kg"),
  17612. name: "Side",
  17613. image: {
  17614. source: "./media/characters/zara/side.svg",
  17615. extra: 504 / 498
  17616. }
  17617. },
  17618. },
  17619. [
  17620. {
  17621. name: "Normal",
  17622. height: math.unit(10, "feet"),
  17623. default: true
  17624. },
  17625. ]
  17626. ))
  17627. characterMakers.push(() => makeCharacter(
  17628. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17629. {
  17630. side: {
  17631. height: math.unit(6, "feet"),
  17632. weight: math.unit(150, "lb"),
  17633. name: "Side",
  17634. image: {
  17635. source: "./media/characters/richard-dragon/side.svg",
  17636. extra: 845 / 340,
  17637. bottom: 0.017
  17638. }
  17639. },
  17640. maw: {
  17641. height: math.unit(2.97, "feet"),
  17642. name: "Maw",
  17643. image: {
  17644. source: "./media/characters/richard-dragon/maw.svg"
  17645. }
  17646. },
  17647. },
  17648. [
  17649. ]
  17650. ))
  17651. characterMakers.push(() => makeCharacter(
  17652. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17653. {
  17654. front: {
  17655. height: math.unit(4, "feet"),
  17656. weight: math.unit(100, "lb"),
  17657. name: "Front",
  17658. image: {
  17659. source: "./media/characters/richard-smeargle/front.svg",
  17660. extra: 2952 / 2820,
  17661. bottom: 0.028
  17662. }
  17663. },
  17664. },
  17665. [
  17666. {
  17667. name: "Normal",
  17668. height: math.unit(4, "feet"),
  17669. default: true
  17670. },
  17671. {
  17672. name: "Dynamax",
  17673. height: math.unit(20, "meters")
  17674. },
  17675. ]
  17676. ))
  17677. characterMakers.push(() => makeCharacter(
  17678. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17679. {
  17680. front: {
  17681. height: math.unit(6, "feet"),
  17682. weight: math.unit(110, "lb"),
  17683. name: "Front",
  17684. image: {
  17685. source: "./media/characters/klay/front.svg",
  17686. extra: 962 / 883,
  17687. bottom: 0.04
  17688. }
  17689. },
  17690. back: {
  17691. height: math.unit(6, "feet"),
  17692. weight: math.unit(110, "lb"),
  17693. name: "Back",
  17694. image: {
  17695. source: "./media/characters/klay/back.svg",
  17696. extra: 962 / 883
  17697. }
  17698. },
  17699. beans: {
  17700. height: math.unit(1.15, "feet"),
  17701. name: "Beans",
  17702. image: {
  17703. source: "./media/characters/klay/beans.svg"
  17704. }
  17705. },
  17706. },
  17707. [
  17708. {
  17709. name: "Micro",
  17710. height: math.unit(6, "inches")
  17711. },
  17712. {
  17713. name: "Mini",
  17714. height: math.unit(3, "feet")
  17715. },
  17716. {
  17717. name: "Normal",
  17718. height: math.unit(6, "feet"),
  17719. default: true
  17720. },
  17721. {
  17722. name: "Big",
  17723. height: math.unit(25, "feet")
  17724. },
  17725. {
  17726. name: "Macro",
  17727. height: math.unit(100, "feet")
  17728. },
  17729. {
  17730. name: "Megamacro",
  17731. height: math.unit(400, "feet")
  17732. },
  17733. ]
  17734. ))
  17735. characterMakers.push(() => makeCharacter(
  17736. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17737. {
  17738. front: {
  17739. height: math.unit(6, "feet"),
  17740. weight: math.unit(160, "lb"),
  17741. name: "Front",
  17742. image: {
  17743. source: "./media/characters/marcus/front.svg",
  17744. extra: 734 / 676,
  17745. bottom: 0.03
  17746. }
  17747. },
  17748. },
  17749. [
  17750. {
  17751. name: "Little",
  17752. height: math.unit(6, "feet")
  17753. },
  17754. {
  17755. name: "Normal",
  17756. height: math.unit(110, "feet"),
  17757. default: true
  17758. },
  17759. {
  17760. name: "Macro",
  17761. height: math.unit(250, "feet")
  17762. },
  17763. {
  17764. name: "Megamacro",
  17765. height: math.unit(1000, "feet")
  17766. },
  17767. ]
  17768. ))
  17769. characterMakers.push(() => makeCharacter(
  17770. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17771. {
  17772. front: {
  17773. height: math.unit(7, "feet"),
  17774. weight: math.unit(275, "lb"),
  17775. name: "Front",
  17776. image: {
  17777. source: "./media/characters/claude-delroute/front.svg",
  17778. extra: 230 / 214,
  17779. bottom: 0.007
  17780. }
  17781. },
  17782. side: {
  17783. height: math.unit(7, "feet"),
  17784. weight: math.unit(275, "lb"),
  17785. name: "Side",
  17786. image: {
  17787. source: "./media/characters/claude-delroute/side.svg",
  17788. extra: 222 / 214,
  17789. bottom: 0.01
  17790. }
  17791. },
  17792. back: {
  17793. height: math.unit(7, "feet"),
  17794. weight: math.unit(275, "lb"),
  17795. name: "Back",
  17796. image: {
  17797. source: "./media/characters/claude-delroute/back.svg",
  17798. extra: 230 / 214,
  17799. bottom: 0.015
  17800. }
  17801. },
  17802. maw: {
  17803. height: math.unit(0.6407, "meters"),
  17804. name: "Maw",
  17805. image: {
  17806. source: "./media/characters/claude-delroute/maw.svg"
  17807. }
  17808. },
  17809. },
  17810. [
  17811. {
  17812. name: "Normal",
  17813. height: math.unit(7, "feet"),
  17814. default: true
  17815. },
  17816. {
  17817. name: "Lorge",
  17818. height: math.unit(20, "feet")
  17819. },
  17820. ]
  17821. ))
  17822. characterMakers.push(() => makeCharacter(
  17823. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17824. {
  17825. front: {
  17826. height: math.unit(8 + 4 / 12, "feet"),
  17827. weight: math.unit(600, "lb"),
  17828. name: "Front",
  17829. image: {
  17830. source: "./media/characters/dragonien/front.svg",
  17831. extra: 100 / 94,
  17832. bottom: 3.3 / 103.3445
  17833. }
  17834. },
  17835. back: {
  17836. height: math.unit(8 + 4 / 12, "feet"),
  17837. weight: math.unit(600, "lb"),
  17838. name: "Back",
  17839. image: {
  17840. source: "./media/characters/dragonien/back.svg",
  17841. extra: 776 / 746,
  17842. bottom: 6.4 / 782.0616
  17843. }
  17844. },
  17845. foot: {
  17846. height: math.unit(1.54, "feet"),
  17847. name: "Foot",
  17848. image: {
  17849. source: "./media/characters/dragonien/foot.svg",
  17850. }
  17851. },
  17852. },
  17853. [
  17854. {
  17855. name: "Normal",
  17856. height: math.unit(8 + 4 / 12, "feet"),
  17857. default: true
  17858. },
  17859. {
  17860. name: "Macro",
  17861. height: math.unit(200, "feet")
  17862. },
  17863. {
  17864. name: "Megamacro",
  17865. height: math.unit(1, "mile")
  17866. },
  17867. {
  17868. name: "Gigamacro",
  17869. height: math.unit(1000, "miles")
  17870. },
  17871. ]
  17872. ))
  17873. characterMakers.push(() => makeCharacter(
  17874. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17875. {
  17876. front: {
  17877. height: math.unit(5 + 2 / 12, "feet"),
  17878. weight: math.unit(110, "lb"),
  17879. name: "Front",
  17880. image: {
  17881. source: "./media/characters/desta/front.svg",
  17882. extra: 767 / 726,
  17883. bottom: 11.7 / 779
  17884. }
  17885. },
  17886. back: {
  17887. height: math.unit(5 + 2 / 12, "feet"),
  17888. weight: math.unit(110, "lb"),
  17889. name: "Back",
  17890. image: {
  17891. source: "./media/characters/desta/back.svg",
  17892. extra: 777 / 728,
  17893. bottom: 6 / 784
  17894. }
  17895. },
  17896. frontAlt: {
  17897. height: math.unit(5 + 2 / 12, "feet"),
  17898. weight: math.unit(110, "lb"),
  17899. name: "Front",
  17900. image: {
  17901. source: "./media/characters/desta/front-alt.svg",
  17902. extra: 1482 / 1417
  17903. }
  17904. },
  17905. side: {
  17906. height: math.unit(5 + 2 / 12, "feet"),
  17907. weight: math.unit(110, "lb"),
  17908. name: "Side",
  17909. image: {
  17910. source: "./media/characters/desta/side.svg",
  17911. extra: 2579 / 2491,
  17912. bottom: 0.053
  17913. }
  17914. },
  17915. },
  17916. [
  17917. {
  17918. name: "Micro",
  17919. height: math.unit(6, "inches")
  17920. },
  17921. {
  17922. name: "Normal",
  17923. height: math.unit(5 + 2 / 12, "feet"),
  17924. default: true
  17925. },
  17926. {
  17927. name: "Macro",
  17928. height: math.unit(62, "feet")
  17929. },
  17930. {
  17931. name: "Megamacro",
  17932. height: math.unit(1800, "feet")
  17933. },
  17934. ]
  17935. ))
  17936. characterMakers.push(() => makeCharacter(
  17937. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17938. {
  17939. front: {
  17940. height: math.unit(10, "feet"),
  17941. weight: math.unit(700, "lb"),
  17942. name: "Front",
  17943. image: {
  17944. source: "./media/characters/storm-alystar/front.svg",
  17945. extra: 2112 / 1898,
  17946. bottom: 0.034
  17947. }
  17948. },
  17949. },
  17950. [
  17951. {
  17952. name: "Micro",
  17953. height: math.unit(3.5, "inches")
  17954. },
  17955. {
  17956. name: "Normal",
  17957. height: math.unit(10, "feet"),
  17958. default: true
  17959. },
  17960. {
  17961. name: "Macro",
  17962. height: math.unit(400, "feet")
  17963. },
  17964. {
  17965. name: "Deific",
  17966. height: math.unit(60, "miles")
  17967. },
  17968. ]
  17969. ))
  17970. characterMakers.push(() => makeCharacter(
  17971. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17972. {
  17973. front: {
  17974. height: math.unit(2.35, "meters"),
  17975. weight: math.unit(119, "kg"),
  17976. name: "Front",
  17977. image: {
  17978. source: "./media/characters/ilia/front.svg",
  17979. extra: 1285 / 1255,
  17980. bottom: 0.06
  17981. }
  17982. },
  17983. },
  17984. [
  17985. {
  17986. name: "Normal",
  17987. height: math.unit(2.35, "meters")
  17988. },
  17989. {
  17990. name: "Macro",
  17991. height: math.unit(140, "meters"),
  17992. default: true
  17993. },
  17994. {
  17995. name: "Megamacro",
  17996. height: math.unit(100, "miles")
  17997. },
  17998. ]
  17999. ))
  18000. characterMakers.push(() => makeCharacter(
  18001. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18002. {
  18003. front: {
  18004. height: math.unit(6 + 5 / 12, "feet"),
  18005. weight: math.unit(190, "lb"),
  18006. name: "Front",
  18007. image: {
  18008. source: "./media/characters/kingdead/front.svg",
  18009. extra: 1228 / 1177
  18010. }
  18011. },
  18012. },
  18013. [
  18014. {
  18015. name: "Micro",
  18016. height: math.unit(7, "inches")
  18017. },
  18018. {
  18019. name: "Normal",
  18020. height: math.unit(6 + 5 / 12, "feet")
  18021. },
  18022. {
  18023. name: "Macro",
  18024. height: math.unit(150, "feet"),
  18025. default: true
  18026. },
  18027. {
  18028. name: "Megamacro",
  18029. height: math.unit(200, "miles")
  18030. },
  18031. ]
  18032. ))
  18033. characterMakers.push(() => makeCharacter(
  18034. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18035. {
  18036. front: {
  18037. height: math.unit(8, "feet"),
  18038. weight: math.unit(600, "lb"),
  18039. name: "Front",
  18040. image: {
  18041. source: "./media/characters/kyrehx/front.svg",
  18042. extra: 1195 / 1095,
  18043. bottom: 0.034
  18044. }
  18045. },
  18046. },
  18047. [
  18048. {
  18049. name: "Micro",
  18050. height: math.unit(2, "inches")
  18051. },
  18052. {
  18053. name: "Normal",
  18054. height: math.unit(8, "feet"),
  18055. default: true
  18056. },
  18057. {
  18058. name: "Macro",
  18059. height: math.unit(255, "feet")
  18060. },
  18061. ]
  18062. ))
  18063. characterMakers.push(() => makeCharacter(
  18064. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18065. {
  18066. front: {
  18067. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18068. weight: math.unit(184, "lb"),
  18069. name: "Front",
  18070. image: {
  18071. source: "./media/characters/xang/front.svg",
  18072. extra: 845 / 755
  18073. }
  18074. },
  18075. },
  18076. [
  18077. {
  18078. name: "Normal",
  18079. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18080. default: true
  18081. },
  18082. {
  18083. name: "Macro",
  18084. height: math.unit(0.935 * 146, "feet")
  18085. },
  18086. {
  18087. name: "Megamacro",
  18088. height: math.unit(0.935 * 3, "miles")
  18089. },
  18090. ]
  18091. ))
  18092. characterMakers.push(() => makeCharacter(
  18093. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18094. {
  18095. frontDressed: {
  18096. height: math.unit(5 + 7 / 12, "feet"),
  18097. weight: math.unit(140, "lb"),
  18098. name: "Front (Dressed)",
  18099. image: {
  18100. source: "./media/characters/doc-weardno/front-dressed.svg",
  18101. extra: 263 / 234
  18102. }
  18103. },
  18104. backDressed: {
  18105. height: math.unit(5 + 7 / 12, "feet"),
  18106. weight: math.unit(140, "lb"),
  18107. name: "Back (Dressed)",
  18108. image: {
  18109. source: "./media/characters/doc-weardno/back-dressed.svg",
  18110. extra: 266 / 238
  18111. }
  18112. },
  18113. front: {
  18114. height: math.unit(5 + 7 / 12, "feet"),
  18115. weight: math.unit(140, "lb"),
  18116. name: "Front",
  18117. image: {
  18118. source: "./media/characters/doc-weardno/front.svg",
  18119. extra: 254 / 233
  18120. }
  18121. },
  18122. },
  18123. [
  18124. {
  18125. name: "Micro",
  18126. height: math.unit(3, "inches")
  18127. },
  18128. {
  18129. name: "Normal",
  18130. height: math.unit(5 + 7 / 12, "feet"),
  18131. default: true
  18132. },
  18133. {
  18134. name: "Macro",
  18135. height: math.unit(25, "feet")
  18136. },
  18137. {
  18138. name: "Megamacro",
  18139. height: math.unit(2, "miles")
  18140. },
  18141. ]
  18142. ))
  18143. characterMakers.push(() => makeCharacter(
  18144. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18145. {
  18146. front: {
  18147. height: math.unit(6 + 2 / 12, "feet"),
  18148. weight: math.unit(153, "lb"),
  18149. name: "Front",
  18150. image: {
  18151. source: "./media/characters/seth-whilst/front.svg",
  18152. bottom: 0.07
  18153. }
  18154. },
  18155. },
  18156. [
  18157. {
  18158. name: "Micro",
  18159. height: math.unit(5, "inches")
  18160. },
  18161. {
  18162. name: "Normal",
  18163. height: math.unit(6 + 2 / 12, "feet"),
  18164. default: true
  18165. },
  18166. ]
  18167. ))
  18168. characterMakers.push(() => makeCharacter(
  18169. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18170. {
  18171. front: {
  18172. height: math.unit(3, "inches"),
  18173. weight: math.unit(8, "grams"),
  18174. name: "Front",
  18175. image: {
  18176. source: "./media/characters/pocket-jabari/front.svg",
  18177. extra: 1024 / 974,
  18178. bottom: 0.039
  18179. }
  18180. },
  18181. },
  18182. [
  18183. {
  18184. name: "Minimicro",
  18185. height: math.unit(8, "mm")
  18186. },
  18187. {
  18188. name: "Micro",
  18189. height: math.unit(3, "inches"),
  18190. default: true
  18191. },
  18192. {
  18193. name: "Normal",
  18194. height: math.unit(3, "feet")
  18195. },
  18196. ]
  18197. ))
  18198. characterMakers.push(() => makeCharacter(
  18199. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18200. {
  18201. front: {
  18202. height: math.unit(15, "feet"),
  18203. weight: math.unit(3280, "lb"),
  18204. name: "Front",
  18205. image: {
  18206. source: "./media/characters/sapphy/front.svg",
  18207. extra: 671 / 577,
  18208. bottom: 0.085
  18209. }
  18210. },
  18211. back: {
  18212. height: math.unit(15, "feet"),
  18213. weight: math.unit(3280, "lb"),
  18214. name: "Back",
  18215. image: {
  18216. source: "./media/characters/sapphy/back.svg",
  18217. extra: 631 / 607,
  18218. bottom: 0.045
  18219. }
  18220. },
  18221. },
  18222. [
  18223. {
  18224. name: "Normal",
  18225. height: math.unit(15, "feet")
  18226. },
  18227. {
  18228. name: "Casual Macro",
  18229. height: math.unit(120, "feet")
  18230. },
  18231. {
  18232. name: "Macro",
  18233. height: math.unit(2150, "feet"),
  18234. default: true
  18235. },
  18236. {
  18237. name: "Megamacro",
  18238. height: math.unit(8, "miles")
  18239. },
  18240. {
  18241. name: "Galaxy Mom",
  18242. height: math.unit(6, "megalightyears")
  18243. },
  18244. ]
  18245. ))
  18246. characterMakers.push(() => makeCharacter(
  18247. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18248. {
  18249. front: {
  18250. height: math.unit(6, "feet"),
  18251. weight: math.unit(170, "lb"),
  18252. name: "Front",
  18253. image: {
  18254. source: "./media/characters/kiro/front.svg",
  18255. extra: 1064 / 1012,
  18256. bottom: 0.052
  18257. }
  18258. },
  18259. },
  18260. [
  18261. {
  18262. name: "Micro",
  18263. height: math.unit(6, "inches")
  18264. },
  18265. {
  18266. name: "Normal",
  18267. height: math.unit(6, "feet"),
  18268. default: true
  18269. },
  18270. {
  18271. name: "Macro",
  18272. height: math.unit(72, "feet")
  18273. },
  18274. ]
  18275. ))
  18276. characterMakers.push(() => makeCharacter(
  18277. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18278. {
  18279. front: {
  18280. height: math.unit(5 + 9 / 12, "feet"),
  18281. weight: math.unit(175, "lb"),
  18282. name: "Front",
  18283. image: {
  18284. source: "./media/characters/irishfox/front.svg",
  18285. extra: 1912 / 1680,
  18286. bottom: 0.02
  18287. }
  18288. },
  18289. },
  18290. [
  18291. {
  18292. name: "Nano",
  18293. height: math.unit(1, "mm")
  18294. },
  18295. {
  18296. name: "Micro",
  18297. height: math.unit(2, "inches")
  18298. },
  18299. {
  18300. name: "Normal",
  18301. height: math.unit(5 + 9 / 12, "feet"),
  18302. default: true
  18303. },
  18304. {
  18305. name: "Macro",
  18306. height: math.unit(45, "feet")
  18307. },
  18308. ]
  18309. ))
  18310. characterMakers.push(() => makeCharacter(
  18311. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18312. {
  18313. front: {
  18314. height: math.unit(6 + 1 / 12, "feet"),
  18315. weight: math.unit(75, "lb"),
  18316. name: "Front",
  18317. image: {
  18318. source: "./media/characters/aronai-sieyes/front.svg",
  18319. extra: 1556 / 1480,
  18320. bottom: 0.015
  18321. }
  18322. },
  18323. side: {
  18324. height: math.unit(6 + 1 / 12, "feet"),
  18325. weight: math.unit(75, "lb"),
  18326. name: "Side",
  18327. image: {
  18328. source: "./media/characters/aronai-sieyes/side.svg",
  18329. extra: 1433 / 1390,
  18330. bottom: 0.0393
  18331. }
  18332. },
  18333. back: {
  18334. height: math.unit(6 + 1 / 12, "feet"),
  18335. weight: math.unit(75, "lb"),
  18336. name: "Back",
  18337. image: {
  18338. source: "./media/characters/aronai-sieyes/back.svg",
  18339. extra: 1544 / 1494,
  18340. bottom: 0.02
  18341. }
  18342. },
  18343. frontClothed: {
  18344. height: math.unit(6 + 1 / 12, "feet"),
  18345. weight: math.unit(75, "lb"),
  18346. name: "Front (Clothed)",
  18347. image: {
  18348. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18349. extra: 1582 / 1527
  18350. }
  18351. },
  18352. feral: {
  18353. height: math.unit(18, "feet"),
  18354. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18355. name: "Feral",
  18356. image: {
  18357. source: "./media/characters/aronai-sieyes/feral.svg",
  18358. extra: 1530 / 1240,
  18359. bottom: 0.035
  18360. }
  18361. },
  18362. },
  18363. [
  18364. {
  18365. name: "Micro",
  18366. height: math.unit(2, "inches")
  18367. },
  18368. {
  18369. name: "Normal",
  18370. height: math.unit(6 + 1 / 12, "feet"),
  18371. default: true
  18372. }
  18373. ]
  18374. ))
  18375. characterMakers.push(() => makeCharacter(
  18376. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18377. {
  18378. front: {
  18379. height: math.unit(12, "feet"),
  18380. weight: math.unit(410, "kg"),
  18381. name: "Front",
  18382. image: {
  18383. source: "./media/characters/xuna/front.svg",
  18384. extra: 2184 / 1980
  18385. }
  18386. },
  18387. side: {
  18388. height: math.unit(12, "feet"),
  18389. weight: math.unit(410, "kg"),
  18390. name: "Side",
  18391. image: {
  18392. source: "./media/characters/xuna/side.svg",
  18393. extra: 2184 / 1980
  18394. }
  18395. },
  18396. back: {
  18397. height: math.unit(12, "feet"),
  18398. weight: math.unit(410, "kg"),
  18399. name: "Back",
  18400. image: {
  18401. source: "./media/characters/xuna/back.svg",
  18402. extra: 2184 / 1980
  18403. }
  18404. },
  18405. },
  18406. [
  18407. {
  18408. name: "Nano glow",
  18409. height: math.unit(10, "nm")
  18410. },
  18411. {
  18412. name: "Micro floof",
  18413. height: math.unit(0.3, "m")
  18414. },
  18415. {
  18416. name: "Huggable softy boi",
  18417. height: math.unit(3.6576, "m"),
  18418. default: true
  18419. },
  18420. {
  18421. name: "Admirable floof",
  18422. height: math.unit(80, "meters")
  18423. },
  18424. {
  18425. name: "Gentle macro",
  18426. height: math.unit(300, "meters")
  18427. },
  18428. {
  18429. name: "Very careful floof",
  18430. height: math.unit(3200, "meters")
  18431. },
  18432. {
  18433. name: "The mega floof",
  18434. height: math.unit(36000, "meters")
  18435. },
  18436. {
  18437. name: "Giga-fur-Wicker",
  18438. height: math.unit(4800000, "meters")
  18439. },
  18440. {
  18441. name: "Licky world",
  18442. height: math.unit(20000000, "meters")
  18443. },
  18444. {
  18445. name: "Floofy cyan sun",
  18446. height: math.unit(1500000000, "meters")
  18447. },
  18448. {
  18449. name: "Milky Wicker",
  18450. height: math.unit(1000000000000000000000, "meters")
  18451. },
  18452. {
  18453. name: "The observing Wicker",
  18454. height: math.unit(999999999999999999999999999, "meters")
  18455. },
  18456. ]
  18457. ))
  18458. characterMakers.push(() => makeCharacter(
  18459. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18460. {
  18461. front: {
  18462. height: math.unit(5 + 9 / 12, "feet"),
  18463. weight: math.unit(150, "lb"),
  18464. name: "Front",
  18465. image: {
  18466. source: "./media/characters/arokha-sieyes/front.svg",
  18467. extra: 1425 / 1284,
  18468. bottom: 0.05
  18469. }
  18470. },
  18471. },
  18472. [
  18473. {
  18474. name: "Normal",
  18475. height: math.unit(5 + 9 / 12, "feet")
  18476. },
  18477. {
  18478. name: "Macro",
  18479. height: math.unit(30, "meters"),
  18480. default: true
  18481. },
  18482. ]
  18483. ))
  18484. characterMakers.push(() => makeCharacter(
  18485. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18486. {
  18487. front: {
  18488. height: math.unit(6, "feet"),
  18489. weight: math.unit(180, "lb"),
  18490. name: "Front",
  18491. image: {
  18492. source: "./media/characters/arokh-sieyes/front.svg",
  18493. extra: 1830 / 1769,
  18494. bottom: 0.01
  18495. }
  18496. },
  18497. },
  18498. [
  18499. {
  18500. name: "Normal",
  18501. height: math.unit(6, "feet")
  18502. },
  18503. {
  18504. name: "Macro",
  18505. height: math.unit(30, "meters"),
  18506. default: true
  18507. },
  18508. ]
  18509. ))
  18510. characterMakers.push(() => makeCharacter(
  18511. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18512. {
  18513. side: {
  18514. height: math.unit(13 + 1 / 12, "feet"),
  18515. weight: math.unit(8.5, "tonnes"),
  18516. name: "Side",
  18517. image: {
  18518. source: "./media/characters/goldeneye/side.svg",
  18519. extra: 1182 / 778,
  18520. bottom: 0.067
  18521. }
  18522. },
  18523. paw: {
  18524. height: math.unit(3.4, "feet"),
  18525. name: "Paw",
  18526. image: {
  18527. source: "./media/characters/goldeneye/paw.svg"
  18528. }
  18529. },
  18530. },
  18531. [
  18532. {
  18533. name: "Normal",
  18534. height: math.unit(13 + 1 / 12, "feet"),
  18535. default: true
  18536. },
  18537. ]
  18538. ))
  18539. characterMakers.push(() => makeCharacter(
  18540. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18541. {
  18542. front: {
  18543. height: math.unit(6 + 1 / 12, "feet"),
  18544. weight: math.unit(210, "lb"),
  18545. name: "Front",
  18546. image: {
  18547. source: "./media/characters/leonardo-lycheborne/front.svg",
  18548. extra: 390 / 365,
  18549. bottom: 0.032
  18550. }
  18551. },
  18552. side: {
  18553. height: math.unit(6 + 1 / 12, "feet"),
  18554. weight: math.unit(210, "lb"),
  18555. name: "Side",
  18556. image: {
  18557. source: "./media/characters/leonardo-lycheborne/side.svg",
  18558. extra: 390 / 365,
  18559. bottom: 0.005
  18560. }
  18561. },
  18562. back: {
  18563. height: math.unit(6 + 1 / 12, "feet"),
  18564. weight: math.unit(210, "lb"),
  18565. name: "Back",
  18566. image: {
  18567. source: "./media/characters/leonardo-lycheborne/back.svg",
  18568. extra: 392 / 366,
  18569. bottom: 0.01
  18570. }
  18571. },
  18572. hand: {
  18573. height: math.unit(1.08, "feet"),
  18574. name: "Hand",
  18575. image: {
  18576. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18577. }
  18578. },
  18579. foot: {
  18580. height: math.unit(1.32, "feet"),
  18581. name: "Foot",
  18582. image: {
  18583. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18584. }
  18585. },
  18586. were: {
  18587. height: math.unit(20, "feet"),
  18588. weight: math.unit(7800, "lb"),
  18589. name: "Were",
  18590. image: {
  18591. source: "./media/characters/leonardo-lycheborne/were.svg",
  18592. extra: 308 / 294,
  18593. bottom: 0.048
  18594. }
  18595. },
  18596. feral: {
  18597. height: math.unit(7.5, "feet"),
  18598. weight: math.unit(600, "lb"),
  18599. name: "Feral",
  18600. image: {
  18601. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18602. extra: 210 / 186,
  18603. bottom: 0.108
  18604. }
  18605. },
  18606. taur: {
  18607. height: math.unit(11, "feet"),
  18608. weight: math.unit(3300, "lb"),
  18609. name: "Taur",
  18610. image: {
  18611. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18612. extra: 320 / 303,
  18613. bottom: 0.025
  18614. }
  18615. },
  18616. barghest: {
  18617. height: math.unit(11, "feet"),
  18618. weight: math.unit(1300, "lb"),
  18619. name: "Barghest",
  18620. image: {
  18621. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18622. extra: 323 / 302,
  18623. bottom: 0.027
  18624. }
  18625. },
  18626. dick: {
  18627. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18628. name: "Dick",
  18629. image: {
  18630. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18631. }
  18632. },
  18633. dickWere: {
  18634. height: math.unit((20) / 3.8, "feet"),
  18635. name: "Dick (Were)",
  18636. image: {
  18637. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18638. }
  18639. },
  18640. },
  18641. [
  18642. {
  18643. name: "Normal",
  18644. height: math.unit(6 + 1 / 12, "feet"),
  18645. default: true
  18646. },
  18647. ]
  18648. ))
  18649. characterMakers.push(() => makeCharacter(
  18650. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18651. {
  18652. front: {
  18653. height: math.unit(10, "feet"),
  18654. weight: math.unit(350, "lb"),
  18655. name: "Front",
  18656. image: {
  18657. source: "./media/characters/jet/front.svg",
  18658. extra: 2050 / 1980,
  18659. bottom: 0.013
  18660. }
  18661. },
  18662. back: {
  18663. height: math.unit(10, "feet"),
  18664. weight: math.unit(350, "lb"),
  18665. name: "Back",
  18666. image: {
  18667. source: "./media/characters/jet/back.svg",
  18668. extra: 2050 / 1980,
  18669. bottom: 0.013
  18670. }
  18671. },
  18672. },
  18673. [
  18674. {
  18675. name: "Micro",
  18676. height: math.unit(6, "inches")
  18677. },
  18678. {
  18679. name: "Normal",
  18680. height: math.unit(10, "feet"),
  18681. default: true
  18682. },
  18683. {
  18684. name: "Macro",
  18685. height: math.unit(100, "feet")
  18686. },
  18687. ]
  18688. ))
  18689. characterMakers.push(() => makeCharacter(
  18690. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18691. {
  18692. front: {
  18693. height: math.unit(15, "feet"),
  18694. weight: math.unit(2800, "lb"),
  18695. name: "Front",
  18696. image: {
  18697. source: "./media/characters/tanarath/front.svg",
  18698. extra: 2392 / 2220,
  18699. bottom: 0.03
  18700. }
  18701. },
  18702. back: {
  18703. height: math.unit(15, "feet"),
  18704. weight: math.unit(2800, "lb"),
  18705. name: "Back",
  18706. image: {
  18707. source: "./media/characters/tanarath/back.svg",
  18708. extra: 2392 / 2220,
  18709. bottom: 0.03
  18710. }
  18711. },
  18712. },
  18713. [
  18714. {
  18715. name: "Normal",
  18716. height: math.unit(15, "feet"),
  18717. default: true
  18718. },
  18719. ]
  18720. ))
  18721. characterMakers.push(() => makeCharacter(
  18722. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18723. {
  18724. front: {
  18725. height: math.unit(7 + 1 / 12, "feet"),
  18726. weight: math.unit(175, "lb"),
  18727. name: "Front",
  18728. image: {
  18729. source: "./media/characters/patty-cattybatty/front.svg",
  18730. extra: 908 / 874,
  18731. bottom: 0.025
  18732. }
  18733. },
  18734. },
  18735. [
  18736. {
  18737. name: "Micro",
  18738. height: math.unit(1, "inch")
  18739. },
  18740. {
  18741. name: "Normal",
  18742. height: math.unit(7 + 1 / 12, "feet")
  18743. },
  18744. {
  18745. name: "Mini Macro",
  18746. height: math.unit(155, "feet")
  18747. },
  18748. {
  18749. name: "Macro",
  18750. height: math.unit(1077, "feet")
  18751. },
  18752. {
  18753. name: "Mega Macro",
  18754. height: math.unit(47650, "feet"),
  18755. default: true
  18756. },
  18757. {
  18758. name: "Giga Macro",
  18759. height: math.unit(440, "miles")
  18760. },
  18761. {
  18762. name: "Tera Macro",
  18763. height: math.unit(8700, "miles")
  18764. },
  18765. {
  18766. name: "Planetary Macro",
  18767. height: math.unit(32700, "miles")
  18768. },
  18769. {
  18770. name: "Solar Macro",
  18771. height: math.unit(550000, "miles")
  18772. },
  18773. {
  18774. name: "Celestial Macro",
  18775. height: math.unit(2.5, "AU")
  18776. },
  18777. ]
  18778. ))
  18779. characterMakers.push(() => makeCharacter(
  18780. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18781. {
  18782. front: {
  18783. height: math.unit(4 + 5 / 12, "feet"),
  18784. weight: math.unit(90, "lb"),
  18785. name: "Front",
  18786. image: {
  18787. source: "./media/characters/cappu/front.svg",
  18788. extra: 1247 / 1152,
  18789. bottom: 0.012
  18790. }
  18791. },
  18792. },
  18793. [
  18794. {
  18795. name: "Normal",
  18796. height: math.unit(4 + 5 / 12, "feet"),
  18797. default: true
  18798. },
  18799. ]
  18800. ))
  18801. characterMakers.push(() => makeCharacter(
  18802. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18803. {
  18804. frontDressed: {
  18805. height: math.unit(70, "cm"),
  18806. weight: math.unit(6, "kg"),
  18807. name: "Front (Dressed)",
  18808. image: {
  18809. source: "./media/characters/sebi/front-dressed.svg",
  18810. extra: 713.5 / 686.5,
  18811. bottom: 0.003
  18812. }
  18813. },
  18814. front: {
  18815. height: math.unit(70, "cm"),
  18816. weight: math.unit(5, "kg"),
  18817. name: "Front",
  18818. image: {
  18819. source: "./media/characters/sebi/front.svg",
  18820. extra: 713.5 / 686.5,
  18821. bottom: 0.003
  18822. }
  18823. }
  18824. },
  18825. [
  18826. {
  18827. name: "Normal",
  18828. height: math.unit(70, "cm"),
  18829. default: true
  18830. },
  18831. {
  18832. name: "Macro",
  18833. height: math.unit(8, "meters")
  18834. },
  18835. ]
  18836. ))
  18837. characterMakers.push(() => makeCharacter(
  18838. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18839. {
  18840. front: {
  18841. height: math.unit(6, "feet"),
  18842. weight: math.unit(150, "lb"),
  18843. name: "Front",
  18844. image: {
  18845. source: "./media/characters/typhek/front.svg",
  18846. extra: 1948 / 1929,
  18847. bottom: 0.025
  18848. }
  18849. },
  18850. side: {
  18851. height: math.unit(6, "feet"),
  18852. weight: math.unit(150, "lb"),
  18853. name: "Side",
  18854. image: {
  18855. source: "./media/characters/typhek/side.svg",
  18856. extra: 2034 / 2010,
  18857. bottom: 0.003
  18858. }
  18859. },
  18860. back: {
  18861. height: math.unit(6, "feet"),
  18862. weight: math.unit(150, "lb"),
  18863. name: "Back",
  18864. image: {
  18865. source: "./media/characters/typhek/back.svg",
  18866. extra: 2005 / 1978,
  18867. bottom: 0.004
  18868. }
  18869. },
  18870. palm: {
  18871. height: math.unit(1.2, "feet"),
  18872. name: "Palm",
  18873. image: {
  18874. source: "./media/characters/typhek/palm.svg"
  18875. }
  18876. },
  18877. fist: {
  18878. height: math.unit(1.1, "feet"),
  18879. name: "Fist",
  18880. image: {
  18881. source: "./media/characters/typhek/fist.svg"
  18882. }
  18883. },
  18884. foot: {
  18885. height: math.unit(1.57, "feet"),
  18886. name: "Foot",
  18887. image: {
  18888. source: "./media/characters/typhek/foot.svg"
  18889. }
  18890. },
  18891. sole: {
  18892. height: math.unit(2.05, "feet"),
  18893. name: "Sole",
  18894. image: {
  18895. source: "./media/characters/typhek/sole.svg"
  18896. }
  18897. },
  18898. },
  18899. [
  18900. {
  18901. name: "Macro",
  18902. height: math.unit(40, "stories"),
  18903. default: true
  18904. },
  18905. {
  18906. name: "Megamacro",
  18907. height: math.unit(1, "mile")
  18908. },
  18909. {
  18910. name: "Gigamacro",
  18911. height: math.unit(4000, "solarradii")
  18912. },
  18913. {
  18914. name: "Universal",
  18915. height: math.unit(1.1, "universes")
  18916. }
  18917. ]
  18918. ))
  18919. characterMakers.push(() => makeCharacter(
  18920. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18921. {
  18922. side: {
  18923. height: math.unit(5 + 7 / 12, "feet"),
  18924. weight: math.unit(150, "lb"),
  18925. name: "Side",
  18926. image: {
  18927. source: "./media/characters/kassy/side.svg",
  18928. extra: 1280 / 1225,
  18929. bottom: 0.002
  18930. }
  18931. },
  18932. front: {
  18933. height: math.unit(5 + 7 / 12, "feet"),
  18934. weight: math.unit(150, "lb"),
  18935. name: "Front",
  18936. image: {
  18937. source: "./media/characters/kassy/front.svg",
  18938. extra: 1280 / 1225,
  18939. bottom: 0.025
  18940. }
  18941. },
  18942. back: {
  18943. height: math.unit(5 + 7 / 12, "feet"),
  18944. weight: math.unit(150, "lb"),
  18945. name: "Back",
  18946. image: {
  18947. source: "./media/characters/kassy/back.svg",
  18948. extra: 1280 / 1225,
  18949. bottom: 0.002
  18950. }
  18951. },
  18952. foot: {
  18953. height: math.unit(1.266, "feet"),
  18954. name: "Foot",
  18955. image: {
  18956. source: "./media/characters/kassy/foot.svg"
  18957. }
  18958. },
  18959. },
  18960. [
  18961. {
  18962. name: "Normal",
  18963. height: math.unit(5 + 7 / 12, "feet")
  18964. },
  18965. {
  18966. name: "Macro",
  18967. height: math.unit(137, "feet"),
  18968. default: true
  18969. },
  18970. {
  18971. name: "Megamacro",
  18972. height: math.unit(1, "mile")
  18973. },
  18974. ]
  18975. ))
  18976. characterMakers.push(() => makeCharacter(
  18977. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18978. {
  18979. front: {
  18980. height: math.unit(6 + 1 / 12, "feet"),
  18981. weight: math.unit(200, "lb"),
  18982. name: "Front",
  18983. image: {
  18984. source: "./media/characters/neil/front.svg",
  18985. extra: 1326 / 1250,
  18986. bottom: 0.023
  18987. }
  18988. },
  18989. },
  18990. [
  18991. {
  18992. name: "Normal",
  18993. height: math.unit(6 + 1 / 12, "feet"),
  18994. default: true
  18995. },
  18996. {
  18997. name: "Macro",
  18998. height: math.unit(200, "feet")
  18999. },
  19000. ]
  19001. ))
  19002. characterMakers.push(() => makeCharacter(
  19003. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19004. {
  19005. front: {
  19006. height: math.unit(5 + 9 / 12, "feet"),
  19007. weight: math.unit(190, "lb"),
  19008. name: "Front",
  19009. image: {
  19010. source: "./media/characters/atticus/front.svg",
  19011. extra: 2934 / 2785,
  19012. bottom: 0.025
  19013. }
  19014. },
  19015. },
  19016. [
  19017. {
  19018. name: "Normal",
  19019. height: math.unit(5 + 9 / 12, "feet"),
  19020. default: true
  19021. },
  19022. {
  19023. name: "Macro",
  19024. height: math.unit(180, "feet")
  19025. },
  19026. ]
  19027. ))
  19028. characterMakers.push(() => makeCharacter(
  19029. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19030. {
  19031. side: {
  19032. height: math.unit(9, "feet"),
  19033. weight: math.unit(650, "lb"),
  19034. name: "Side",
  19035. image: {
  19036. source: "./media/characters/milo/side.svg",
  19037. extra: 2644 / 2310,
  19038. bottom: 0.032
  19039. }
  19040. },
  19041. },
  19042. [
  19043. {
  19044. name: "Normal",
  19045. height: math.unit(9, "feet"),
  19046. default: true
  19047. },
  19048. {
  19049. name: "Macro",
  19050. height: math.unit(300, "feet")
  19051. },
  19052. ]
  19053. ))
  19054. characterMakers.push(() => makeCharacter(
  19055. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19056. {
  19057. side: {
  19058. height: math.unit(8, "meters"),
  19059. weight: math.unit(90000, "kg"),
  19060. name: "Side",
  19061. image: {
  19062. source: "./media/characters/ijzer/side.svg",
  19063. extra: 2756 / 1600,
  19064. bottom: 0.01
  19065. }
  19066. },
  19067. },
  19068. [
  19069. {
  19070. name: "Small",
  19071. height: math.unit(3, "meters")
  19072. },
  19073. {
  19074. name: "Normal",
  19075. height: math.unit(8, "meters"),
  19076. default: true
  19077. },
  19078. {
  19079. name: "Normal+",
  19080. height: math.unit(10, "meters")
  19081. },
  19082. {
  19083. name: "Bigger",
  19084. height: math.unit(24, "meters")
  19085. },
  19086. {
  19087. name: "Huge",
  19088. height: math.unit(80, "meters")
  19089. },
  19090. ]
  19091. ))
  19092. characterMakers.push(() => makeCharacter(
  19093. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19094. {
  19095. front: {
  19096. height: math.unit(6 + 2 / 12, "feet"),
  19097. weight: math.unit(153, "lb"),
  19098. name: "Front",
  19099. image: {
  19100. source: "./media/characters/luca-cervicum/front.svg",
  19101. extra: 370 / 327,
  19102. bottom: 0.015
  19103. }
  19104. },
  19105. back: {
  19106. height: math.unit(6 + 2 / 12, "feet"),
  19107. weight: math.unit(153, "lb"),
  19108. name: "Back",
  19109. image: {
  19110. source: "./media/characters/luca-cervicum/back.svg",
  19111. extra: 367 / 333,
  19112. bottom: 0.005
  19113. }
  19114. },
  19115. frontGear: {
  19116. height: math.unit(6 + 2 / 12, "feet"),
  19117. weight: math.unit(173, "lb"),
  19118. name: "Front (Gear)",
  19119. image: {
  19120. source: "./media/characters/luca-cervicum/front-gear.svg",
  19121. extra: 377 / 333,
  19122. bottom: 0.006
  19123. }
  19124. },
  19125. },
  19126. [
  19127. {
  19128. name: "Normal",
  19129. height: math.unit(6 + 2 / 12, "feet"),
  19130. default: true
  19131. },
  19132. ]
  19133. ))
  19134. characterMakers.push(() => makeCharacter(
  19135. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19136. {
  19137. front: {
  19138. height: math.unit(6 + 1 / 12, "feet"),
  19139. weight: math.unit(304, "lb"),
  19140. name: "Front",
  19141. image: {
  19142. source: "./media/characters/oliver/front.svg",
  19143. extra: 157 / 143,
  19144. bottom: 0.08
  19145. }
  19146. },
  19147. },
  19148. [
  19149. {
  19150. name: "Normal",
  19151. height: math.unit(6 + 1 / 12, "feet"),
  19152. default: true
  19153. },
  19154. ]
  19155. ))
  19156. characterMakers.push(() => makeCharacter(
  19157. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19158. {
  19159. front: {
  19160. height: math.unit(5 + 7 / 12, "feet"),
  19161. weight: math.unit(140, "lb"),
  19162. name: "Front",
  19163. image: {
  19164. source: "./media/characters/shane/front.svg",
  19165. extra: 304 / 289,
  19166. bottom: 0.005
  19167. }
  19168. },
  19169. },
  19170. [
  19171. {
  19172. name: "Normal",
  19173. height: math.unit(5 + 7 / 12, "feet"),
  19174. default: true
  19175. },
  19176. ]
  19177. ))
  19178. characterMakers.push(() => makeCharacter(
  19179. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19180. {
  19181. front: {
  19182. height: math.unit(5 + 9 / 12, "feet"),
  19183. weight: math.unit(178, "lb"),
  19184. name: "Front",
  19185. image: {
  19186. source: "./media/characters/shin/front.svg",
  19187. extra: 159 / 151,
  19188. bottom: 0.015
  19189. }
  19190. },
  19191. },
  19192. [
  19193. {
  19194. name: "Normal",
  19195. height: math.unit(5 + 9 / 12, "feet"),
  19196. default: true
  19197. },
  19198. ]
  19199. ))
  19200. characterMakers.push(() => makeCharacter(
  19201. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19202. {
  19203. front: {
  19204. height: math.unit(5 + 10 / 12, "feet"),
  19205. weight: math.unit(168, "lb"),
  19206. name: "Front",
  19207. image: {
  19208. source: "./media/characters/xerxes/front.svg",
  19209. extra: 282 / 260,
  19210. bottom: 0.045
  19211. }
  19212. },
  19213. },
  19214. [
  19215. {
  19216. name: "Normal",
  19217. height: math.unit(5 + 10 / 12, "feet"),
  19218. default: true
  19219. },
  19220. ]
  19221. ))
  19222. characterMakers.push(() => makeCharacter(
  19223. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19224. {
  19225. front: {
  19226. height: math.unit(6 + 7 / 12, "feet"),
  19227. weight: math.unit(208, "lb"),
  19228. name: "Front",
  19229. image: {
  19230. source: "./media/characters/chaska/front.svg",
  19231. extra: 332 / 319,
  19232. bottom: 0.015
  19233. }
  19234. },
  19235. },
  19236. [
  19237. {
  19238. name: "Normal",
  19239. height: math.unit(6 + 7 / 12, "feet"),
  19240. default: true
  19241. },
  19242. ]
  19243. ))
  19244. characterMakers.push(() => makeCharacter(
  19245. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19246. {
  19247. front: {
  19248. height: math.unit(5 + 8 / 12, "feet"),
  19249. weight: math.unit(208, "lb"),
  19250. name: "Front",
  19251. image: {
  19252. source: "./media/characters/enuk/front.svg",
  19253. extra: 437 / 406,
  19254. bottom: 0.02
  19255. }
  19256. },
  19257. },
  19258. [
  19259. {
  19260. name: "Normal",
  19261. height: math.unit(5 + 8 / 12, "feet"),
  19262. default: true
  19263. },
  19264. ]
  19265. ))
  19266. characterMakers.push(() => makeCharacter(
  19267. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19268. {
  19269. front: {
  19270. height: math.unit(5 + 10 / 12, "feet"),
  19271. weight: math.unit(252, "lb"),
  19272. name: "Front",
  19273. image: {
  19274. source: "./media/characters/bruun/front.svg",
  19275. extra: 197 / 187,
  19276. bottom: 0.012
  19277. }
  19278. },
  19279. },
  19280. [
  19281. {
  19282. name: "Normal",
  19283. height: math.unit(5 + 10 / 12, "feet"),
  19284. default: true
  19285. },
  19286. ]
  19287. ))
  19288. characterMakers.push(() => makeCharacter(
  19289. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19290. {
  19291. front: {
  19292. height: math.unit(6 + 10 / 12, "feet"),
  19293. weight: math.unit(255, "lb"),
  19294. name: "Front",
  19295. image: {
  19296. source: "./media/characters/alexeev/front.svg",
  19297. extra: 213 / 200,
  19298. bottom: 0.05
  19299. }
  19300. },
  19301. },
  19302. [
  19303. {
  19304. name: "Normal",
  19305. height: math.unit(6 + 10 / 12, "feet"),
  19306. default: true
  19307. },
  19308. ]
  19309. ))
  19310. characterMakers.push(() => makeCharacter(
  19311. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19312. {
  19313. front: {
  19314. height: math.unit(2 + 8 / 12, "feet"),
  19315. weight: math.unit(22, "lb"),
  19316. name: "Front",
  19317. image: {
  19318. source: "./media/characters/evelyn/front.svg",
  19319. extra: 208 / 180
  19320. }
  19321. },
  19322. },
  19323. [
  19324. {
  19325. name: "Normal",
  19326. height: math.unit(2 + 8 / 12, "feet"),
  19327. default: true
  19328. },
  19329. ]
  19330. ))
  19331. characterMakers.push(() => makeCharacter(
  19332. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19333. {
  19334. front: {
  19335. height: math.unit(5 + 9 / 12, "feet"),
  19336. weight: math.unit(139, "lb"),
  19337. name: "Front",
  19338. image: {
  19339. source: "./media/characters/inca/front.svg",
  19340. extra: 294 / 291,
  19341. bottom: 0.03
  19342. }
  19343. },
  19344. },
  19345. [
  19346. {
  19347. name: "Normal",
  19348. height: math.unit(5 + 9 / 12, "feet"),
  19349. default: true
  19350. },
  19351. ]
  19352. ))
  19353. characterMakers.push(() => makeCharacter(
  19354. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19355. {
  19356. front: {
  19357. height: math.unit(5 + 1 / 12, "feet"),
  19358. weight: math.unit(84, "lb"),
  19359. name: "Front",
  19360. image: {
  19361. source: "./media/characters/magdalene/front.svg",
  19362. extra: 293 / 273
  19363. }
  19364. },
  19365. },
  19366. [
  19367. {
  19368. name: "Normal",
  19369. height: math.unit(5 + 1 / 12, "feet"),
  19370. default: true
  19371. },
  19372. ]
  19373. ))
  19374. characterMakers.push(() => makeCharacter(
  19375. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19376. {
  19377. front: {
  19378. height: math.unit(6 + 3 / 12, "feet"),
  19379. weight: math.unit(185, "lb"),
  19380. name: "Front",
  19381. image: {
  19382. source: "./media/characters/mera/front.svg",
  19383. extra: 291 / 277,
  19384. bottom: 0.03
  19385. }
  19386. },
  19387. },
  19388. [
  19389. {
  19390. name: "Normal",
  19391. height: math.unit(6 + 3 / 12, "feet"),
  19392. default: true
  19393. },
  19394. ]
  19395. ))
  19396. characterMakers.push(() => makeCharacter(
  19397. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19398. {
  19399. front: {
  19400. height: math.unit(6 + 7 / 12, "feet"),
  19401. weight: math.unit(160, "lb"),
  19402. name: "Front",
  19403. image: {
  19404. source: "./media/characters/ceres/front.svg",
  19405. extra: 1023 / 950,
  19406. bottom: 0.027
  19407. }
  19408. },
  19409. back: {
  19410. height: math.unit(6 + 7 / 12, "feet"),
  19411. weight: math.unit(160, "lb"),
  19412. name: "Back",
  19413. image: {
  19414. source: "./media/characters/ceres/back.svg",
  19415. extra: 1023 / 950
  19416. }
  19417. },
  19418. },
  19419. [
  19420. {
  19421. name: "Normal",
  19422. height: math.unit(6 + 7 / 12, "feet"),
  19423. default: true
  19424. },
  19425. ]
  19426. ))
  19427. characterMakers.push(() => makeCharacter(
  19428. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19429. {
  19430. front: {
  19431. height: math.unit(5 + 10 / 12, "feet"),
  19432. weight: math.unit(150, "lb"),
  19433. name: "Front",
  19434. image: {
  19435. source: "./media/characters/kris/front.svg",
  19436. extra: 885 / 803,
  19437. bottom: 0.03
  19438. }
  19439. },
  19440. },
  19441. [
  19442. {
  19443. name: "Normal",
  19444. height: math.unit(5 + 10 / 12, "feet"),
  19445. default: true
  19446. },
  19447. ]
  19448. ))
  19449. characterMakers.push(() => makeCharacter(
  19450. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19451. {
  19452. front: {
  19453. height: math.unit(7, "feet"),
  19454. weight: math.unit(120, "kg"),
  19455. name: "Front",
  19456. image: {
  19457. source: "./media/characters/taluthus/front.svg",
  19458. extra: 903 / 833,
  19459. bottom: 0.015
  19460. }
  19461. },
  19462. },
  19463. [
  19464. {
  19465. name: "Normal",
  19466. height: math.unit(7, "feet"),
  19467. default: true
  19468. },
  19469. {
  19470. name: "Macro",
  19471. height: math.unit(300, "feet")
  19472. },
  19473. ]
  19474. ))
  19475. characterMakers.push(() => makeCharacter(
  19476. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19477. {
  19478. front: {
  19479. height: math.unit(5 + 9 / 12, "feet"),
  19480. weight: math.unit(145, "lb"),
  19481. name: "Front",
  19482. image: {
  19483. source: "./media/characters/dawn/front.svg",
  19484. extra: 2094 / 2016,
  19485. bottom: 0.025
  19486. }
  19487. },
  19488. back: {
  19489. height: math.unit(5 + 9 / 12, "feet"),
  19490. weight: math.unit(160, "lb"),
  19491. name: "Back",
  19492. image: {
  19493. source: "./media/characters/dawn/back.svg",
  19494. extra: 2112 / 2080,
  19495. bottom: 0.005
  19496. }
  19497. },
  19498. },
  19499. [
  19500. {
  19501. name: "Normal",
  19502. height: math.unit(6 + 7 / 12, "feet"),
  19503. default: true
  19504. },
  19505. ]
  19506. ))
  19507. characterMakers.push(() => makeCharacter(
  19508. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19509. {
  19510. anthro: {
  19511. height: math.unit(8 + 3 / 12, "feet"),
  19512. weight: math.unit(450, "lb"),
  19513. name: "Anthro",
  19514. image: {
  19515. source: "./media/characters/arador/anthro.svg",
  19516. extra: 1835 / 1718,
  19517. bottom: 0.025
  19518. }
  19519. },
  19520. feral: {
  19521. height: math.unit(4, "feet"),
  19522. weight: math.unit(200, "lb"),
  19523. name: "Feral",
  19524. image: {
  19525. source: "./media/characters/arador/feral.svg",
  19526. extra: 1683 / 1514,
  19527. bottom: 0.07
  19528. }
  19529. },
  19530. },
  19531. [
  19532. {
  19533. name: "Normal",
  19534. height: math.unit(8 + 3 / 12, "feet")
  19535. },
  19536. {
  19537. name: "Macro",
  19538. height: math.unit(82.5, "feet"),
  19539. default: true
  19540. },
  19541. ]
  19542. ))
  19543. characterMakers.push(() => makeCharacter(
  19544. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19545. {
  19546. front: {
  19547. height: math.unit(5 + 10 / 12, "feet"),
  19548. weight: math.unit(125, "lb"),
  19549. name: "Front",
  19550. image: {
  19551. source: "./media/characters/dharsi/front.svg",
  19552. extra: 716 / 630,
  19553. bottom: 0.035
  19554. }
  19555. },
  19556. },
  19557. [
  19558. {
  19559. name: "Nano",
  19560. height: math.unit(100, "nm")
  19561. },
  19562. {
  19563. name: "Micro",
  19564. height: math.unit(2, "inches")
  19565. },
  19566. {
  19567. name: "Normal",
  19568. height: math.unit(5 + 10 / 12, "feet"),
  19569. default: true
  19570. },
  19571. {
  19572. name: "Macro",
  19573. height: math.unit(1000, "feet")
  19574. },
  19575. {
  19576. name: "Megamacro",
  19577. height: math.unit(10, "miles")
  19578. },
  19579. {
  19580. name: "Gigamacro",
  19581. height: math.unit(3000, "miles")
  19582. },
  19583. {
  19584. name: "Teramacro",
  19585. height: math.unit(500000, "miles")
  19586. },
  19587. {
  19588. name: "Teramacro+",
  19589. height: math.unit(30, "galaxies")
  19590. },
  19591. ]
  19592. ))
  19593. characterMakers.push(() => makeCharacter(
  19594. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19595. {
  19596. front: {
  19597. height: math.unit(6, "feet"),
  19598. weight: math.unit(150, "lb"),
  19599. name: "Front",
  19600. image: {
  19601. source: "./media/characters/deathy/front.svg",
  19602. extra: 1552 / 1463,
  19603. bottom: 0.025
  19604. }
  19605. },
  19606. side: {
  19607. height: math.unit(6, "feet"),
  19608. weight: math.unit(150, "lb"),
  19609. name: "Side",
  19610. image: {
  19611. source: "./media/characters/deathy/side.svg",
  19612. extra: 1604 / 1455,
  19613. bottom: 0.025
  19614. }
  19615. },
  19616. back: {
  19617. height: math.unit(6, "feet"),
  19618. weight: math.unit(150, "lb"),
  19619. name: "Back",
  19620. image: {
  19621. source: "./media/characters/deathy/back.svg",
  19622. extra: 1580 / 1463,
  19623. bottom: 0.005
  19624. }
  19625. },
  19626. },
  19627. [
  19628. {
  19629. name: "Micro",
  19630. height: math.unit(5, "millimeters")
  19631. },
  19632. {
  19633. name: "Normal",
  19634. height: math.unit(6 + 5 / 12, "feet"),
  19635. default: true
  19636. },
  19637. ]
  19638. ))
  19639. characterMakers.push(() => makeCharacter(
  19640. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19641. {
  19642. front: {
  19643. height: math.unit(16, "feet"),
  19644. weight: math.unit(4000, "lb"),
  19645. name: "Front",
  19646. image: {
  19647. source: "./media/characters/juniper/front.svg",
  19648. bottom: 0.04
  19649. }
  19650. },
  19651. },
  19652. [
  19653. {
  19654. name: "Normal",
  19655. height: math.unit(16, "feet"),
  19656. default: true
  19657. },
  19658. ]
  19659. ))
  19660. characterMakers.push(() => makeCharacter(
  19661. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19662. {
  19663. front: {
  19664. height: math.unit(6, "feet"),
  19665. weight: math.unit(150, "lb"),
  19666. name: "Front",
  19667. image: {
  19668. source: "./media/characters/hipster/front.svg",
  19669. extra: 1312 / 1209,
  19670. bottom: 0.025
  19671. }
  19672. },
  19673. back: {
  19674. height: math.unit(6, "feet"),
  19675. weight: math.unit(150, "lb"),
  19676. name: "Back",
  19677. image: {
  19678. source: "./media/characters/hipster/back.svg",
  19679. extra: 1281 / 1196,
  19680. bottom: 0.01
  19681. }
  19682. },
  19683. },
  19684. [
  19685. {
  19686. name: "Micro",
  19687. height: math.unit(1, "mm")
  19688. },
  19689. {
  19690. name: "Normal",
  19691. height: math.unit(4, "inches"),
  19692. default: true
  19693. },
  19694. {
  19695. name: "Macro",
  19696. height: math.unit(500, "feet")
  19697. },
  19698. {
  19699. name: "Megamacro",
  19700. height: math.unit(1000, "miles")
  19701. },
  19702. ]
  19703. ))
  19704. characterMakers.push(() => makeCharacter(
  19705. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19706. {
  19707. front: {
  19708. height: math.unit(6, "feet"),
  19709. weight: math.unit(150, "lb"),
  19710. name: "Front",
  19711. image: {
  19712. source: "./media/characters/tendirmuldr/front.svg",
  19713. extra: 1878 / 1772,
  19714. bottom: 0.015
  19715. }
  19716. },
  19717. },
  19718. [
  19719. {
  19720. name: "Megamacro",
  19721. height: math.unit(1500, "miles"),
  19722. default: true
  19723. },
  19724. ]
  19725. ))
  19726. characterMakers.push(() => makeCharacter(
  19727. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19728. {
  19729. front: {
  19730. height: math.unit(14, "feet"),
  19731. weight: math.unit(12000, "lb"),
  19732. name: "Front",
  19733. image: {
  19734. source: "./media/characters/mort/front.svg",
  19735. extra: 365 / 318,
  19736. bottom: 0.01
  19737. }
  19738. },
  19739. side: {
  19740. height: math.unit(14, "feet"),
  19741. weight: math.unit(12000, "lb"),
  19742. name: "Side",
  19743. image: {
  19744. source: "./media/characters/mort/side.svg",
  19745. extra: 365 / 318,
  19746. bottom: 0.052
  19747. },
  19748. default: true
  19749. },
  19750. back: {
  19751. height: math.unit(14, "feet"),
  19752. weight: math.unit(12000, "lb"),
  19753. name: "Back",
  19754. image: {
  19755. source: "./media/characters/mort/back.svg",
  19756. extra: 371 / 332,
  19757. bottom: 0.18
  19758. }
  19759. },
  19760. },
  19761. [
  19762. {
  19763. name: "Normal",
  19764. height: math.unit(14, "feet"),
  19765. default: true
  19766. },
  19767. ]
  19768. ))
  19769. characterMakers.push(() => makeCharacter(
  19770. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19771. {
  19772. front: {
  19773. height: math.unit(8, "feet"),
  19774. weight: math.unit(1, "ton"),
  19775. name: "Front",
  19776. image: {
  19777. source: "./media/characters/lycoa/front.svg",
  19778. extra: 1875 / 1789,
  19779. bottom: 0.022
  19780. }
  19781. },
  19782. back: {
  19783. height: math.unit(8, "feet"),
  19784. weight: math.unit(1, "ton"),
  19785. name: "Back",
  19786. image: {
  19787. source: "./media/characters/lycoa/back.svg",
  19788. extra: 1835 / 1781,
  19789. bottom: 0.03
  19790. }
  19791. },
  19792. head: {
  19793. height: math.unit(2.1, "feet"),
  19794. name: "Head",
  19795. image: {
  19796. source: "./media/characters/lycoa/head.svg"
  19797. }
  19798. },
  19799. tailmaw: {
  19800. height: math.unit(1.9, "feet"),
  19801. name: "Tailmaw",
  19802. image: {
  19803. source: "./media/characters/lycoa/tailmaw.svg"
  19804. }
  19805. },
  19806. tentacles: {
  19807. height: math.unit(2.1, "feet"),
  19808. name: "Tentacles",
  19809. image: {
  19810. source: "./media/characters/lycoa/tentacles.svg"
  19811. }
  19812. },
  19813. dick: {
  19814. height: math.unit(1.73, "feet"),
  19815. name: "Dick",
  19816. image: {
  19817. source: "./media/characters/lycoa/dick.svg"
  19818. }
  19819. },
  19820. },
  19821. [
  19822. {
  19823. name: "Normal",
  19824. height: math.unit(8, "feet"),
  19825. default: true
  19826. },
  19827. {
  19828. name: "Macro",
  19829. height: math.unit(30, "feet")
  19830. },
  19831. ]
  19832. ))
  19833. characterMakers.push(() => makeCharacter(
  19834. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19835. {
  19836. front: {
  19837. height: math.unit(4 + 2 / 12, "feet"),
  19838. weight: math.unit(70, "lb"),
  19839. name: "Front",
  19840. image: {
  19841. source: "./media/characters/naldara/front.svg",
  19842. extra: 841 / 720,
  19843. bottom: 0.04
  19844. }
  19845. },
  19846. naga: {
  19847. height: math.unit(23, "feet"),
  19848. weight: math.unit(15000, "kg"),
  19849. name: "Naga",
  19850. image: {
  19851. source: "./media/characters/naldara/naga.svg",
  19852. extra: 3290 / 2959,
  19853. bottom: 124 / 3432
  19854. }
  19855. },
  19856. },
  19857. [
  19858. {
  19859. name: "Normal",
  19860. height: math.unit(4 + 2 / 12, "feet"),
  19861. default: true
  19862. },
  19863. ]
  19864. ))
  19865. characterMakers.push(() => makeCharacter(
  19866. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19867. {
  19868. front: {
  19869. height: math.unit(13 + 7 / 12, "feet"),
  19870. weight: math.unit(1500, "lb"),
  19871. name: "Front",
  19872. image: {
  19873. source: "./media/characters/briar/front.svg",
  19874. extra: 626 / 596,
  19875. bottom: 0.08
  19876. }
  19877. },
  19878. },
  19879. [
  19880. {
  19881. name: "Normal",
  19882. height: math.unit(13 + 7 / 12, "feet"),
  19883. default: true
  19884. },
  19885. ]
  19886. ))
  19887. characterMakers.push(() => makeCharacter(
  19888. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19889. {
  19890. side: {
  19891. height: math.unit(10, "feet"),
  19892. weight: math.unit(500, "lb"),
  19893. name: "Side",
  19894. image: {
  19895. source: "./media/characters/vanguard/side.svg",
  19896. extra: 502 / 425,
  19897. bottom: 0.087
  19898. }
  19899. },
  19900. },
  19901. [
  19902. {
  19903. name: "Normal",
  19904. height: math.unit(10, "feet"),
  19905. default: true
  19906. },
  19907. ]
  19908. ))
  19909. characterMakers.push(() => makeCharacter(
  19910. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19911. {
  19912. front: {
  19913. height: math.unit(7.5, "feet"),
  19914. weight: math.unit(2, "lb"),
  19915. name: "Front",
  19916. image: {
  19917. source: "./media/characters/artemis/front.svg",
  19918. extra: 1192 / 1075,
  19919. bottom: 0.07
  19920. }
  19921. },
  19922. frontNsfw: {
  19923. height: math.unit(7.5, "feet"),
  19924. weight: math.unit(2, "lb"),
  19925. name: "Front (NSFW)",
  19926. image: {
  19927. source: "./media/characters/artemis/front-nsfw.svg",
  19928. extra: 1192 / 1075,
  19929. bottom: 0.07
  19930. }
  19931. },
  19932. frontNsfwer: {
  19933. height: math.unit(7.5, "feet"),
  19934. weight: math.unit(2, "lb"),
  19935. name: "Front (NSFW-er)",
  19936. image: {
  19937. source: "./media/characters/artemis/front-nsfwer.svg",
  19938. extra: 1192 / 1075,
  19939. bottom: 0.07
  19940. }
  19941. },
  19942. side: {
  19943. height: math.unit(7.5, "feet"),
  19944. weight: math.unit(2, "lb"),
  19945. name: "Side",
  19946. image: {
  19947. source: "./media/characters/artemis/side.svg",
  19948. extra: 1192 / 1075,
  19949. bottom: 0.07
  19950. }
  19951. },
  19952. sideNsfw: {
  19953. height: math.unit(7.5, "feet"),
  19954. weight: math.unit(2, "lb"),
  19955. name: "Side (NSFW)",
  19956. image: {
  19957. source: "./media/characters/artemis/side-nsfw.svg",
  19958. extra: 1192 / 1075,
  19959. bottom: 0.07
  19960. }
  19961. },
  19962. sideNsfwer: {
  19963. height: math.unit(7.5, "feet"),
  19964. weight: math.unit(2, "lb"),
  19965. name: "Side (NSFW-er)",
  19966. image: {
  19967. source: "./media/characters/artemis/side-nsfwer.svg",
  19968. extra: 1192 / 1075,
  19969. bottom: 0.07
  19970. }
  19971. },
  19972. maw: {
  19973. height: math.unit(1.1, "feet"),
  19974. name: "Maw",
  19975. image: {
  19976. source: "./media/characters/artemis/maw.svg"
  19977. }
  19978. },
  19979. stomach: {
  19980. height: math.unit(0.95, "feet"),
  19981. name: "Stomach",
  19982. image: {
  19983. source: "./media/characters/artemis/stomach.svg"
  19984. }
  19985. },
  19986. dickCanine: {
  19987. height: math.unit(1, "feet"),
  19988. name: "Dick (Canine)",
  19989. image: {
  19990. source: "./media/characters/artemis/dick-canine.svg"
  19991. }
  19992. },
  19993. dickEquine: {
  19994. height: math.unit(0.85, "feet"),
  19995. name: "Dick (Equine)",
  19996. image: {
  19997. source: "./media/characters/artemis/dick-equine.svg"
  19998. }
  19999. },
  20000. dickExotic: {
  20001. height: math.unit(0.85, "feet"),
  20002. name: "Dick (Exotic)",
  20003. image: {
  20004. source: "./media/characters/artemis/dick-exotic.svg"
  20005. }
  20006. },
  20007. },
  20008. [
  20009. {
  20010. name: "Normal",
  20011. height: math.unit(7.5, "feet"),
  20012. default: true
  20013. },
  20014. {
  20015. name: "Enlarged",
  20016. height: math.unit(12, "feet")
  20017. },
  20018. ]
  20019. ))
  20020. characterMakers.push(() => makeCharacter(
  20021. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20022. {
  20023. front: {
  20024. height: math.unit(5 + 3 / 12, "feet"),
  20025. weight: math.unit(160, "lb"),
  20026. name: "Front",
  20027. image: {
  20028. source: "./media/characters/kira/front.svg",
  20029. extra: 906 / 786,
  20030. bottom: 0.01
  20031. }
  20032. },
  20033. back: {
  20034. height: math.unit(5 + 3 / 12, "feet"),
  20035. weight: math.unit(160, "lb"),
  20036. name: "Back",
  20037. image: {
  20038. source: "./media/characters/kira/back.svg",
  20039. extra: 882 / 757,
  20040. bottom: 0.005
  20041. }
  20042. },
  20043. frontDressed: {
  20044. height: math.unit(5 + 3 / 12, "feet"),
  20045. weight: math.unit(160, "lb"),
  20046. name: "Front (Dressed)",
  20047. image: {
  20048. source: "./media/characters/kira/front-dressed.svg",
  20049. extra: 906 / 786,
  20050. bottom: 0.01
  20051. }
  20052. },
  20053. beans: {
  20054. height: math.unit(0.92, "feet"),
  20055. name: "Beans",
  20056. image: {
  20057. source: "./media/characters/kira/beans.svg"
  20058. }
  20059. },
  20060. },
  20061. [
  20062. {
  20063. name: "Normal",
  20064. height: math.unit(5 + 3 / 12, "feet"),
  20065. default: true
  20066. },
  20067. ]
  20068. ))
  20069. characterMakers.push(() => makeCharacter(
  20070. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20071. {
  20072. front: {
  20073. height: math.unit(5 + 4 / 12, "feet"),
  20074. weight: math.unit(145, "lb"),
  20075. name: "Front",
  20076. image: {
  20077. source: "./media/characters/scramble/front.svg",
  20078. extra: 763 / 727,
  20079. bottom: 0.05
  20080. }
  20081. },
  20082. back: {
  20083. height: math.unit(5 + 4 / 12, "feet"),
  20084. weight: math.unit(145, "lb"),
  20085. name: "Back",
  20086. image: {
  20087. source: "./media/characters/scramble/back.svg",
  20088. extra: 826 / 737,
  20089. bottom: 0.002
  20090. }
  20091. },
  20092. },
  20093. [
  20094. {
  20095. name: "Normal",
  20096. height: math.unit(5 + 4 / 12, "feet"),
  20097. default: true
  20098. },
  20099. ]
  20100. ))
  20101. characterMakers.push(() => makeCharacter(
  20102. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20103. {
  20104. side: {
  20105. height: math.unit(6 + 2 / 12, "feet"),
  20106. weight: math.unit(190, "lb"),
  20107. name: "Side",
  20108. image: {
  20109. source: "./media/characters/biscuit/side.svg",
  20110. extra: 858 / 791,
  20111. bottom: 0.044
  20112. }
  20113. },
  20114. },
  20115. [
  20116. {
  20117. name: "Normal",
  20118. height: math.unit(6 + 2 / 12, "feet"),
  20119. default: true
  20120. },
  20121. ]
  20122. ))
  20123. characterMakers.push(() => makeCharacter(
  20124. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20125. {
  20126. front: {
  20127. height: math.unit(5 + 2 / 12, "feet"),
  20128. weight: math.unit(120, "lb"),
  20129. name: "Front",
  20130. image: {
  20131. source: "./media/characters/poffin/front.svg",
  20132. extra: 786 / 680,
  20133. bottom: 0.005
  20134. }
  20135. },
  20136. },
  20137. [
  20138. {
  20139. name: "Normal",
  20140. height: math.unit(5 + 2 / 12, "feet"),
  20141. default: true
  20142. },
  20143. ]
  20144. ))
  20145. characterMakers.push(() => makeCharacter(
  20146. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20147. {
  20148. front: {
  20149. height: math.unit(6 + 3 / 12, "feet"),
  20150. weight: math.unit(519, "lb"),
  20151. name: "Front",
  20152. image: {
  20153. source: "./media/characters/dhari/front.svg",
  20154. extra: 1048 / 946,
  20155. bottom: 0.015
  20156. }
  20157. },
  20158. back: {
  20159. height: math.unit(6 + 3 / 12, "feet"),
  20160. weight: math.unit(519, "lb"),
  20161. name: "Back",
  20162. image: {
  20163. source: "./media/characters/dhari/back.svg",
  20164. extra: 1048 / 931,
  20165. bottom: 0.005
  20166. }
  20167. },
  20168. frontDressed: {
  20169. height: math.unit(6 + 3 / 12, "feet"),
  20170. weight: math.unit(519, "lb"),
  20171. name: "Front (Dressed)",
  20172. image: {
  20173. source: "./media/characters/dhari/front-dressed.svg",
  20174. extra: 1713 / 1546,
  20175. bottom: 0.02
  20176. }
  20177. },
  20178. backDressed: {
  20179. height: math.unit(6 + 3 / 12, "feet"),
  20180. weight: math.unit(519, "lb"),
  20181. name: "Back (Dressed)",
  20182. image: {
  20183. source: "./media/characters/dhari/back-dressed.svg",
  20184. extra: 1699 / 1537,
  20185. bottom: 0.01
  20186. }
  20187. },
  20188. maw: {
  20189. height: math.unit(0.95, "feet"),
  20190. name: "Maw",
  20191. image: {
  20192. source: "./media/characters/dhari/maw.svg"
  20193. }
  20194. },
  20195. wereFront: {
  20196. height: math.unit(12 + 8 / 12, "feet"),
  20197. weight: math.unit(4000, "lb"),
  20198. name: "Front (Were)",
  20199. image: {
  20200. source: "./media/characters/dhari/were-front.svg",
  20201. extra: 1065 / 969,
  20202. bottom: 0.015
  20203. }
  20204. },
  20205. wereBack: {
  20206. height: math.unit(12 + 8 / 12, "feet"),
  20207. weight: math.unit(4000, "lb"),
  20208. name: "Back (Were)",
  20209. image: {
  20210. source: "./media/characters/dhari/were-back.svg",
  20211. extra: 1065 / 969,
  20212. bottom: 0.012
  20213. }
  20214. },
  20215. wereMaw: {
  20216. height: math.unit(0.625, "meters"),
  20217. name: "Maw (Were)",
  20218. image: {
  20219. source: "./media/characters/dhari/were-maw.svg"
  20220. }
  20221. },
  20222. },
  20223. [
  20224. {
  20225. name: "Normal",
  20226. height: math.unit(6 + 3 / 12, "feet"),
  20227. default: true
  20228. },
  20229. ]
  20230. ))
  20231. characterMakers.push(() => makeCharacter(
  20232. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20233. {
  20234. anthro: {
  20235. height: math.unit(5 + 7 / 12, "feet"),
  20236. weight: math.unit(175, "lb"),
  20237. name: "Anthro",
  20238. image: {
  20239. source: "./media/characters/rena-dyne/anthro.svg",
  20240. extra: 1849 / 1785,
  20241. bottom: 0.005
  20242. }
  20243. },
  20244. taur: {
  20245. height: math.unit(15 + 6 / 12, "feet"),
  20246. weight: math.unit(8000, "lb"),
  20247. name: "Taur",
  20248. image: {
  20249. source: "./media/characters/rena-dyne/taur.svg",
  20250. extra: 2315 / 2234,
  20251. bottom: 0.033
  20252. }
  20253. },
  20254. },
  20255. [
  20256. {
  20257. name: "Normal",
  20258. height: math.unit(5 + 7 / 12, "feet"),
  20259. default: true
  20260. },
  20261. ]
  20262. ))
  20263. characterMakers.push(() => makeCharacter(
  20264. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20265. {
  20266. front: {
  20267. height: math.unit(8, "feet"),
  20268. weight: math.unit(600, "lb"),
  20269. name: "Front",
  20270. image: {
  20271. source: "./media/characters/weremeep/front.svg",
  20272. extra: 967 / 862,
  20273. bottom: 0.01
  20274. }
  20275. },
  20276. },
  20277. [
  20278. {
  20279. name: "Normal",
  20280. height: math.unit(8, "feet"),
  20281. default: true
  20282. },
  20283. {
  20284. name: "Lorg",
  20285. height: math.unit(12, "feet")
  20286. },
  20287. {
  20288. name: "Oh Lawd She Comin'",
  20289. height: math.unit(20, "feet")
  20290. },
  20291. ]
  20292. ))
  20293. characterMakers.push(() => makeCharacter(
  20294. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20295. {
  20296. front: {
  20297. height: math.unit(4, "feet"),
  20298. weight: math.unit(90, "lb"),
  20299. name: "Front",
  20300. image: {
  20301. source: "./media/characters/reza/front.svg",
  20302. extra: 1183 / 1111,
  20303. bottom: 0.017
  20304. }
  20305. },
  20306. back: {
  20307. height: math.unit(4, "feet"),
  20308. weight: math.unit(90, "lb"),
  20309. name: "Back",
  20310. image: {
  20311. source: "./media/characters/reza/back.svg",
  20312. extra: 1183 / 1111,
  20313. bottom: 0.01
  20314. }
  20315. },
  20316. drake: {
  20317. height: math.unit(30, "feet"),
  20318. weight: math.unit(246960, "lb"),
  20319. name: "Drake",
  20320. image: {
  20321. source: "./media/characters/reza/drake.svg",
  20322. extra: 2350 / 2024,
  20323. bottom: 60.7 / 2403
  20324. }
  20325. },
  20326. },
  20327. [
  20328. {
  20329. name: "Normal",
  20330. height: math.unit(4, "feet"),
  20331. default: true
  20332. },
  20333. ]
  20334. ))
  20335. characterMakers.push(() => makeCharacter(
  20336. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20337. {
  20338. side: {
  20339. height: math.unit(15, "feet"),
  20340. weight: math.unit(14, "tons"),
  20341. name: "Side",
  20342. image: {
  20343. source: "./media/characters/athea/side.svg",
  20344. extra: 960 / 540,
  20345. bottom: 0.003
  20346. }
  20347. },
  20348. sitting: {
  20349. height: math.unit(6 * 2.85, "feet"),
  20350. weight: math.unit(14, "tons"),
  20351. name: "Sitting",
  20352. image: {
  20353. source: "./media/characters/athea/sitting.svg",
  20354. extra: 621 / 581,
  20355. bottom: 0.075
  20356. }
  20357. },
  20358. maw: {
  20359. height: math.unit(7.59498031496063, "feet"),
  20360. name: "Maw",
  20361. image: {
  20362. source: "./media/characters/athea/maw.svg"
  20363. }
  20364. },
  20365. },
  20366. [
  20367. {
  20368. name: "Lap Cat",
  20369. height: math.unit(2.5, "feet")
  20370. },
  20371. {
  20372. name: "Minimacro",
  20373. height: math.unit(15, "feet"),
  20374. default: true
  20375. },
  20376. {
  20377. name: "Macro",
  20378. height: math.unit(120, "feet")
  20379. },
  20380. {
  20381. name: "Macro+",
  20382. height: math.unit(640, "feet")
  20383. },
  20384. {
  20385. name: "Colossus",
  20386. height: math.unit(2.2, "miles")
  20387. },
  20388. ]
  20389. ))
  20390. characterMakers.push(() => makeCharacter(
  20391. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20392. {
  20393. front: {
  20394. height: math.unit(8 + 8 / 12, "feet"),
  20395. weight: math.unit(130, "kg"),
  20396. name: "Front",
  20397. image: {
  20398. source: "./media/characters/seroko/front.svg",
  20399. extra: 1385 / 1280,
  20400. bottom: 0.025
  20401. }
  20402. },
  20403. back: {
  20404. height: math.unit(8 + 8 / 12, "feet"),
  20405. weight: math.unit(130, "kg"),
  20406. name: "Back",
  20407. image: {
  20408. source: "./media/characters/seroko/back.svg",
  20409. extra: 1369 / 1238,
  20410. bottom: 0.018
  20411. }
  20412. },
  20413. frontDressed: {
  20414. height: math.unit(8 + 8 / 12, "feet"),
  20415. weight: math.unit(130, "kg"),
  20416. name: "Front (Dressed)",
  20417. image: {
  20418. source: "./media/characters/seroko/front-dressed.svg",
  20419. extra: 1366 / 1275,
  20420. bottom: 0.03
  20421. }
  20422. },
  20423. },
  20424. [
  20425. {
  20426. name: "Normal",
  20427. height: math.unit(8 + 8 / 12, "feet"),
  20428. default: true
  20429. },
  20430. ]
  20431. ))
  20432. characterMakers.push(() => makeCharacter(
  20433. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20434. {
  20435. front: {
  20436. height: math.unit(5.5, "feet"),
  20437. weight: math.unit(160, "lb"),
  20438. name: "Front",
  20439. image: {
  20440. source: "./media/characters/quatzi/front.svg",
  20441. extra: 2346 / 2242,
  20442. bottom: 0.015
  20443. }
  20444. },
  20445. },
  20446. [
  20447. {
  20448. name: "Normal",
  20449. height: math.unit(5.5, "feet"),
  20450. default: true
  20451. },
  20452. {
  20453. name: "Big",
  20454. height: math.unit(7.7, "feet")
  20455. },
  20456. ]
  20457. ))
  20458. characterMakers.push(() => makeCharacter(
  20459. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20460. {
  20461. front: {
  20462. height: math.unit(5 + 11 / 12, "feet"),
  20463. weight: math.unit(180, "lb"),
  20464. name: "Front",
  20465. image: {
  20466. source: "./media/characters/sen/front.svg",
  20467. extra: 1321 / 1254,
  20468. bottom: 0.015
  20469. }
  20470. },
  20471. side: {
  20472. height: math.unit(5 + 11 / 12, "feet"),
  20473. weight: math.unit(180, "lb"),
  20474. name: "Side",
  20475. image: {
  20476. source: "./media/characters/sen/side.svg",
  20477. extra: 1321 / 1254,
  20478. bottom: 0.007
  20479. }
  20480. },
  20481. back: {
  20482. height: math.unit(5 + 11 / 12, "feet"),
  20483. weight: math.unit(180, "lb"),
  20484. name: "Back",
  20485. image: {
  20486. source: "./media/characters/sen/back.svg",
  20487. extra: 1321 / 1254
  20488. }
  20489. },
  20490. },
  20491. [
  20492. {
  20493. name: "Normal",
  20494. height: math.unit(5 + 11 / 12, "feet"),
  20495. default: true
  20496. },
  20497. ]
  20498. ))
  20499. characterMakers.push(() => makeCharacter(
  20500. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20501. {
  20502. front: {
  20503. height: math.unit(166.6, "cm"),
  20504. weight: math.unit(66.6, "kg"),
  20505. name: "Front",
  20506. image: {
  20507. source: "./media/characters/fruity/front.svg",
  20508. extra: 1510 / 1386,
  20509. bottom: 0.04
  20510. }
  20511. },
  20512. back: {
  20513. height: math.unit(166.6, "cm"),
  20514. weight: math.unit(66.6, "lb"),
  20515. name: "Back",
  20516. image: {
  20517. source: "./media/characters/fruity/back.svg",
  20518. extra: 1563 / 1435,
  20519. bottom: 0.005
  20520. }
  20521. },
  20522. },
  20523. [
  20524. {
  20525. name: "Normal",
  20526. height: math.unit(166.6, "cm"),
  20527. default: true
  20528. },
  20529. {
  20530. name: "Demonic",
  20531. height: math.unit(166.6, "feet")
  20532. },
  20533. ]
  20534. ))
  20535. characterMakers.push(() => makeCharacter(
  20536. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20537. {
  20538. side: {
  20539. height: math.unit(10, "feet"),
  20540. weight: math.unit(500, "lb"),
  20541. name: "Side",
  20542. image: {
  20543. source: "./media/characters/zost/side.svg",
  20544. extra: 966 / 880,
  20545. bottom: 0.075
  20546. }
  20547. },
  20548. mawFront: {
  20549. height: math.unit(1.08, "meters"),
  20550. name: "Maw (Front)",
  20551. image: {
  20552. source: "./media/characters/zost/maw-front.svg"
  20553. }
  20554. },
  20555. mawSide: {
  20556. height: math.unit(2.66, "feet"),
  20557. name: "Maw (Side)",
  20558. image: {
  20559. source: "./media/characters/zost/maw-side.svg"
  20560. }
  20561. },
  20562. },
  20563. [
  20564. {
  20565. name: "Normal",
  20566. height: math.unit(10, "feet"),
  20567. default: true
  20568. },
  20569. ]
  20570. ))
  20571. characterMakers.push(() => makeCharacter(
  20572. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20573. {
  20574. front: {
  20575. height: math.unit(5 + 4 / 12, "feet"),
  20576. weight: math.unit(120, "lb"),
  20577. name: "Front",
  20578. image: {
  20579. source: "./media/characters/luci/front.svg",
  20580. extra: 1985 / 1884,
  20581. bottom: 0.04
  20582. }
  20583. },
  20584. back: {
  20585. height: math.unit(5 + 4 / 12, "feet"),
  20586. weight: math.unit(120, "lb"),
  20587. name: "Back",
  20588. image: {
  20589. source: "./media/characters/luci/back.svg",
  20590. extra: 1892 / 1791,
  20591. bottom: 0.002
  20592. }
  20593. },
  20594. },
  20595. [
  20596. {
  20597. name: "Normal",
  20598. height: math.unit(5 + 4 / 12, "feet"),
  20599. default: true
  20600. },
  20601. ]
  20602. ))
  20603. characterMakers.push(() => makeCharacter(
  20604. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20605. {
  20606. front: {
  20607. height: math.unit(1500, "feet"),
  20608. weight: math.unit(3.8e6, "tons"),
  20609. name: "Front",
  20610. image: {
  20611. source: "./media/characters/2th/front.svg",
  20612. extra: 3489 / 3350,
  20613. bottom: 0.1
  20614. }
  20615. },
  20616. foot: {
  20617. height: math.unit(461, "feet"),
  20618. name: "Foot",
  20619. image: {
  20620. source: "./media/characters/2th/foot.svg"
  20621. }
  20622. },
  20623. },
  20624. [
  20625. {
  20626. name: "\"Micro\"",
  20627. height: math.unit(15 + 7 / 12, "feet")
  20628. },
  20629. {
  20630. name: "Normal",
  20631. height: math.unit(1500, "feet"),
  20632. default: true
  20633. },
  20634. {
  20635. name: "Macro",
  20636. height: math.unit(5000, "feet")
  20637. },
  20638. {
  20639. name: "Megamacro",
  20640. height: math.unit(15, "miles")
  20641. },
  20642. {
  20643. name: "Gigamacro",
  20644. height: math.unit(4000, "miles")
  20645. },
  20646. {
  20647. name: "Galactic",
  20648. height: math.unit(50, "AU")
  20649. },
  20650. ]
  20651. ))
  20652. characterMakers.push(() => makeCharacter(
  20653. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20654. {
  20655. front: {
  20656. height: math.unit(5 + 6 / 12, "feet"),
  20657. weight: math.unit(220, "lb"),
  20658. name: "Front",
  20659. image: {
  20660. source: "./media/characters/amethyst/front.svg",
  20661. extra: 2078 / 2040,
  20662. bottom: 0.045
  20663. }
  20664. },
  20665. back: {
  20666. height: math.unit(5 + 6 / 12, "feet"),
  20667. weight: math.unit(220, "lb"),
  20668. name: "Back",
  20669. image: {
  20670. source: "./media/characters/amethyst/back.svg",
  20671. extra: 2021 / 1989,
  20672. bottom: 0.02
  20673. }
  20674. },
  20675. },
  20676. [
  20677. {
  20678. name: "Normal",
  20679. height: math.unit(5 + 6 / 12, "feet"),
  20680. default: true
  20681. },
  20682. ]
  20683. ))
  20684. characterMakers.push(() => makeCharacter(
  20685. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20686. {
  20687. front: {
  20688. height: math.unit(4 + 11 / 12, "feet"),
  20689. weight: math.unit(120, "lb"),
  20690. name: "Front",
  20691. image: {
  20692. source: "./media/characters/yumi-akiyama/front.svg",
  20693. extra: 1327 / 1235,
  20694. bottom: 0.02
  20695. }
  20696. },
  20697. back: {
  20698. height: math.unit(4 + 11 / 12, "feet"),
  20699. weight: math.unit(120, "lb"),
  20700. name: "Back",
  20701. image: {
  20702. source: "./media/characters/yumi-akiyama/back.svg",
  20703. extra: 1287 / 1245,
  20704. bottom: 0.002
  20705. }
  20706. },
  20707. },
  20708. [
  20709. {
  20710. name: "Galactic",
  20711. height: math.unit(50, "galaxies"),
  20712. default: true
  20713. },
  20714. {
  20715. name: "Universal",
  20716. height: math.unit(100, "universes")
  20717. },
  20718. ]
  20719. ))
  20720. characterMakers.push(() => makeCharacter(
  20721. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20722. {
  20723. front: {
  20724. height: math.unit(8, "feet"),
  20725. weight: math.unit(500, "lb"),
  20726. name: "Front",
  20727. image: {
  20728. source: "./media/characters/rifter-yrmori/front.svg",
  20729. extra: 1180 / 1125,
  20730. bottom: 0.02
  20731. }
  20732. },
  20733. back: {
  20734. height: math.unit(8, "feet"),
  20735. weight: math.unit(500, "lb"),
  20736. name: "Back",
  20737. image: {
  20738. source: "./media/characters/rifter-yrmori/back.svg",
  20739. extra: 1190 / 1145,
  20740. bottom: 0.001
  20741. }
  20742. },
  20743. wings: {
  20744. height: math.unit(7.75, "feet"),
  20745. weight: math.unit(500, "lb"),
  20746. name: "Wings",
  20747. image: {
  20748. source: "./media/characters/rifter-yrmori/wings.svg",
  20749. extra: 1357 / 1285
  20750. }
  20751. },
  20752. maw: {
  20753. height: math.unit(0.8, "feet"),
  20754. name: "Maw",
  20755. image: {
  20756. source: "./media/characters/rifter-yrmori/maw.svg"
  20757. }
  20758. },
  20759. mawfront: {
  20760. height: math.unit(1.45, "feet"),
  20761. name: "Maw (Front)",
  20762. image: {
  20763. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20764. }
  20765. },
  20766. },
  20767. [
  20768. {
  20769. name: "Normal",
  20770. height: math.unit(8, "feet"),
  20771. default: true
  20772. },
  20773. {
  20774. name: "Macro",
  20775. height: math.unit(42, "meters")
  20776. },
  20777. ]
  20778. ))
  20779. characterMakers.push(() => makeCharacter(
  20780. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20781. {
  20782. were: {
  20783. height: math.unit(25 + 6 / 12, "feet"),
  20784. weight: math.unit(10000, "lb"),
  20785. name: "Were",
  20786. image: {
  20787. source: "./media/characters/tahajin/were.svg",
  20788. extra: 801 / 770,
  20789. bottom: 0.042
  20790. }
  20791. },
  20792. aquatic: {
  20793. height: math.unit(6 + 4 / 12, "feet"),
  20794. weight: math.unit(160, "lb"),
  20795. name: "Aquatic",
  20796. image: {
  20797. source: "./media/characters/tahajin/aquatic.svg",
  20798. extra: 572 / 542,
  20799. bottom: 0.04
  20800. }
  20801. },
  20802. chow: {
  20803. height: math.unit(8 + 11 / 12, "feet"),
  20804. weight: math.unit(450, "lb"),
  20805. name: "Chow",
  20806. image: {
  20807. source: "./media/characters/tahajin/chow.svg",
  20808. extra: 660 / 640,
  20809. bottom: 0.015
  20810. }
  20811. },
  20812. demiNaga: {
  20813. height: math.unit(6 + 8 / 12, "feet"),
  20814. weight: math.unit(300, "lb"),
  20815. name: "Demi Naga",
  20816. image: {
  20817. source: "./media/characters/tahajin/demi-naga.svg",
  20818. extra: 643 / 615,
  20819. bottom: 0.1
  20820. }
  20821. },
  20822. data: {
  20823. height: math.unit(5, "inches"),
  20824. weight: math.unit(0.1, "lb"),
  20825. name: "Data",
  20826. image: {
  20827. source: "./media/characters/tahajin/data.svg"
  20828. }
  20829. },
  20830. fluu: {
  20831. height: math.unit(5 + 7 / 12, "feet"),
  20832. weight: math.unit(140, "lb"),
  20833. name: "Fluu",
  20834. image: {
  20835. source: "./media/characters/tahajin/fluu.svg",
  20836. extra: 628 / 592,
  20837. bottom: 0.02
  20838. }
  20839. },
  20840. starWarrior: {
  20841. height: math.unit(4 + 5 / 12, "feet"),
  20842. weight: math.unit(50, "lb"),
  20843. name: "Star Warrior",
  20844. image: {
  20845. source: "./media/characters/tahajin/star-warrior.svg"
  20846. }
  20847. },
  20848. },
  20849. [
  20850. {
  20851. name: "Normal",
  20852. height: math.unit(25 + 6 / 12, "feet"),
  20853. default: true
  20854. },
  20855. ]
  20856. ))
  20857. characterMakers.push(() => makeCharacter(
  20858. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20859. {
  20860. front: {
  20861. height: math.unit(8, "feet"),
  20862. weight: math.unit(350, "lb"),
  20863. name: "Front",
  20864. image: {
  20865. source: "./media/characters/gabira/front.svg",
  20866. extra: 608 / 580,
  20867. bottom: 0.03
  20868. }
  20869. },
  20870. back: {
  20871. height: math.unit(8, "feet"),
  20872. weight: math.unit(350, "lb"),
  20873. name: "Back",
  20874. image: {
  20875. source: "./media/characters/gabira/back.svg",
  20876. extra: 608 / 580,
  20877. bottom: 0.03
  20878. }
  20879. },
  20880. },
  20881. [
  20882. {
  20883. name: "Normal",
  20884. height: math.unit(8, "feet"),
  20885. default: true
  20886. },
  20887. ]
  20888. ))
  20889. characterMakers.push(() => makeCharacter(
  20890. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20891. {
  20892. front: {
  20893. height: math.unit(5 + 3 / 12, "feet"),
  20894. weight: math.unit(137, "lb"),
  20895. name: "Front",
  20896. image: {
  20897. source: "./media/characters/sasha-katraine/front.svg",
  20898. bottom: 0.045
  20899. }
  20900. },
  20901. },
  20902. [
  20903. {
  20904. name: "Micro",
  20905. height: math.unit(5, "inches")
  20906. },
  20907. {
  20908. name: "Normal",
  20909. height: math.unit(5 + 3 / 12, "feet"),
  20910. default: true
  20911. },
  20912. ]
  20913. ))
  20914. characterMakers.push(() => makeCharacter(
  20915. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20916. {
  20917. side: {
  20918. height: math.unit(4, "inches"),
  20919. weight: math.unit(200, "grams"),
  20920. name: "Side",
  20921. image: {
  20922. source: "./media/characters/der/side.svg",
  20923. extra: 719 / 400,
  20924. bottom: 30.6 / 749.9187
  20925. }
  20926. },
  20927. },
  20928. [
  20929. {
  20930. name: "Micro",
  20931. height: math.unit(4, "inches"),
  20932. default: true
  20933. },
  20934. ]
  20935. ))
  20936. characterMakers.push(() => makeCharacter(
  20937. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20938. {
  20939. side: {
  20940. height: math.unit(30, "meters"),
  20941. weight: math.unit(700, "tonnes"),
  20942. name: "Side",
  20943. image: {
  20944. source: "./media/characters/fixerdragon/side.svg",
  20945. extra: (1293.0514 - 116.03) / 1106.86,
  20946. bottom: 116.03 / 1293.0514
  20947. }
  20948. },
  20949. },
  20950. [
  20951. {
  20952. name: "Planck",
  20953. height: math.unit(1.6e-35, "meters")
  20954. },
  20955. {
  20956. name: "Micro",
  20957. height: math.unit(0.4, "meters")
  20958. },
  20959. {
  20960. name: "Normal",
  20961. height: math.unit(30, "meters"),
  20962. default: true
  20963. },
  20964. {
  20965. name: "Megamacro",
  20966. height: math.unit(1.2, "megameters")
  20967. },
  20968. {
  20969. name: "Teramacro",
  20970. height: math.unit(130, "terameters")
  20971. },
  20972. {
  20973. name: "Yottamacro",
  20974. height: math.unit(6200, "yottameters")
  20975. },
  20976. ]
  20977. ));
  20978. characterMakers.push(() => makeCharacter(
  20979. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20980. {
  20981. front: {
  20982. height: math.unit(8, "feet"),
  20983. weight: math.unit(250, "lb"),
  20984. name: "Front",
  20985. image: {
  20986. source: "./media/characters/kite/front.svg",
  20987. extra: 2796 / 2659,
  20988. bottom: 0.002
  20989. }
  20990. },
  20991. },
  20992. [
  20993. {
  20994. name: "Normal",
  20995. height: math.unit(8, "feet"),
  20996. default: true
  20997. },
  20998. {
  20999. name: "Macro",
  21000. height: math.unit(360, "feet")
  21001. },
  21002. {
  21003. name: "Megamacro",
  21004. height: math.unit(1500, "feet")
  21005. },
  21006. ]
  21007. ))
  21008. characterMakers.push(() => makeCharacter(
  21009. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21010. {
  21011. front: {
  21012. height: math.unit(5 + 10 / 12, "feet"),
  21013. weight: math.unit(150, "lb"),
  21014. name: "Front",
  21015. image: {
  21016. source: "./media/characters/poojawa-vynar/front.svg",
  21017. extra: (1506.1547 - 55) / 1356.6,
  21018. bottom: 55 / 1506.1547
  21019. }
  21020. },
  21021. frontTailless: {
  21022. height: math.unit(5 + 10 / 12, "feet"),
  21023. weight: math.unit(150, "lb"),
  21024. name: "Front (Tailless)",
  21025. image: {
  21026. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21027. extra: (1506.1547 - 55) / 1356.6,
  21028. bottom: 55 / 1506.1547
  21029. }
  21030. },
  21031. },
  21032. [
  21033. {
  21034. name: "Normal",
  21035. height: math.unit(5 + 10 / 12, "feet"),
  21036. default: true
  21037. },
  21038. ]
  21039. ))
  21040. characterMakers.push(() => makeCharacter(
  21041. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21042. {
  21043. front: {
  21044. height: math.unit(293, "meters"),
  21045. weight: math.unit(70400, "tons"),
  21046. name: "Front",
  21047. image: {
  21048. source: "./media/characters/violette/front.svg",
  21049. extra: 1227 / 1180,
  21050. bottom: 0.005
  21051. }
  21052. },
  21053. back: {
  21054. height: math.unit(293, "meters"),
  21055. weight: math.unit(70400, "tons"),
  21056. name: "Back",
  21057. image: {
  21058. source: "./media/characters/violette/back.svg",
  21059. extra: 1227 / 1180,
  21060. bottom: 0.005
  21061. }
  21062. },
  21063. },
  21064. [
  21065. {
  21066. name: "Macro",
  21067. height: math.unit(293, "meters"),
  21068. default: true
  21069. },
  21070. ]
  21071. ))
  21072. characterMakers.push(() => makeCharacter(
  21073. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21074. {
  21075. front: {
  21076. height: math.unit(1050, "feet"),
  21077. weight: math.unit(200000, "tons"),
  21078. name: "Front",
  21079. image: {
  21080. source: "./media/characters/alessandra/front.svg",
  21081. extra: 960 / 912,
  21082. bottom: 0.06
  21083. }
  21084. },
  21085. },
  21086. [
  21087. {
  21088. name: "Macro",
  21089. height: math.unit(1050, "feet")
  21090. },
  21091. {
  21092. name: "Macro+",
  21093. height: math.unit(900, "meters"),
  21094. default: true
  21095. },
  21096. ]
  21097. ))
  21098. characterMakers.push(() => makeCharacter(
  21099. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21100. {
  21101. front: {
  21102. height: math.unit(5, "feet"),
  21103. weight: math.unit(187, "lb"),
  21104. name: "Front",
  21105. image: {
  21106. source: "./media/characters/person/front.svg",
  21107. extra: 3087 / 2945,
  21108. bottom: 91 / 3181
  21109. }
  21110. },
  21111. },
  21112. [
  21113. {
  21114. name: "Micro",
  21115. height: math.unit(3, "inches")
  21116. },
  21117. {
  21118. name: "Normal",
  21119. height: math.unit(5, "feet"),
  21120. default: true
  21121. },
  21122. {
  21123. name: "Macro",
  21124. height: math.unit(90, "feet")
  21125. },
  21126. {
  21127. name: "Max Size",
  21128. height: math.unit(280, "feet")
  21129. },
  21130. ]
  21131. ))
  21132. characterMakers.push(() => makeCharacter(
  21133. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21134. {
  21135. front: {
  21136. height: math.unit(4.5, "meters"),
  21137. weight: math.unit(3200, "lb"),
  21138. name: "Front",
  21139. image: {
  21140. source: "./media/characters/ty/front.svg",
  21141. extra: 1038 / 960,
  21142. bottom: 31.156 / 1068
  21143. }
  21144. },
  21145. back: {
  21146. height: math.unit(4.5, "meters"),
  21147. weight: math.unit(3200, "lb"),
  21148. name: "Back",
  21149. image: {
  21150. source: "./media/characters/ty/back.svg",
  21151. extra: 1044 / 966,
  21152. bottom: 7.48 / 1049
  21153. }
  21154. },
  21155. },
  21156. [
  21157. {
  21158. name: "Normal",
  21159. height: math.unit(4.5, "meters"),
  21160. default: true
  21161. },
  21162. ]
  21163. ))
  21164. characterMakers.push(() => makeCharacter(
  21165. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21166. {
  21167. front: {
  21168. height: math.unit(5 + 4 / 12, "feet"),
  21169. weight: math.unit(115, "lb"),
  21170. name: "Front",
  21171. image: {
  21172. source: "./media/characters/rocky/front.svg",
  21173. extra: 1012 / 975,
  21174. bottom: 54 / 1066
  21175. }
  21176. },
  21177. },
  21178. [
  21179. {
  21180. name: "Normal",
  21181. height: math.unit(5 + 4 / 12, "feet"),
  21182. default: true
  21183. },
  21184. ]
  21185. ))
  21186. characterMakers.push(() => makeCharacter(
  21187. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21188. {
  21189. upright: {
  21190. height: math.unit(6, "meters"),
  21191. weight: math.unit(4000, "kg"),
  21192. name: "Upright",
  21193. image: {
  21194. source: "./media/characters/ruin/upright.svg",
  21195. extra: 668 / 661,
  21196. bottom: 42 / 799.8396
  21197. }
  21198. },
  21199. },
  21200. [
  21201. {
  21202. name: "Normal",
  21203. height: math.unit(6, "meters"),
  21204. default: true
  21205. },
  21206. ]
  21207. ))
  21208. characterMakers.push(() => makeCharacter(
  21209. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21210. {
  21211. front: {
  21212. height: math.unit(5, "feet"),
  21213. weight: math.unit(106, "lb"),
  21214. name: "Front",
  21215. image: {
  21216. source: "./media/characters/robin/front.svg",
  21217. extra: 862 / 799,
  21218. bottom: 42.4 / 914.8856
  21219. }
  21220. },
  21221. },
  21222. [
  21223. {
  21224. name: "Normal",
  21225. height: math.unit(5, "feet"),
  21226. default: true
  21227. },
  21228. ]
  21229. ))
  21230. characterMakers.push(() => makeCharacter(
  21231. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21232. {
  21233. side: {
  21234. height: math.unit(3, "feet"),
  21235. weight: math.unit(225, "lb"),
  21236. name: "Side",
  21237. image: {
  21238. source: "./media/characters/saian/side.svg",
  21239. extra: 566 / 356,
  21240. bottom: 79.7 / 643
  21241. }
  21242. },
  21243. maw: {
  21244. height: math.unit(2.85, "feet"),
  21245. name: "Maw",
  21246. image: {
  21247. source: "./media/characters/saian/maw.svg"
  21248. }
  21249. },
  21250. },
  21251. [
  21252. {
  21253. name: "Normal",
  21254. height: math.unit(3, "feet"),
  21255. default: true
  21256. },
  21257. ]
  21258. ))
  21259. characterMakers.push(() => makeCharacter(
  21260. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21261. {
  21262. side: {
  21263. height: math.unit(8, "feet"),
  21264. weight: math.unit(300, "lb"),
  21265. name: "Side",
  21266. image: {
  21267. source: "./media/characters/equus-silvermane/side.svg",
  21268. extra: 2176 / 2050,
  21269. bottom: 65.7 / 2245
  21270. }
  21271. },
  21272. front: {
  21273. height: math.unit(8, "feet"),
  21274. weight: math.unit(300, "lb"),
  21275. name: "Front",
  21276. image: {
  21277. source: "./media/characters/equus-silvermane/front.svg",
  21278. extra: 4633 / 4400,
  21279. bottom: 71.3 / 4706.915
  21280. }
  21281. },
  21282. sideStepping: {
  21283. height: math.unit(8, "feet"),
  21284. weight: math.unit(300, "lb"),
  21285. name: "Side (Stepping)",
  21286. image: {
  21287. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21288. extra: 1968 / 1860,
  21289. bottom: 16.4 / 1989
  21290. }
  21291. },
  21292. },
  21293. [
  21294. {
  21295. name: "Normal",
  21296. height: math.unit(8, "feet")
  21297. },
  21298. {
  21299. name: "Minimacro",
  21300. height: math.unit(75, "feet"),
  21301. default: true
  21302. },
  21303. {
  21304. name: "Macro",
  21305. height: math.unit(150, "feet")
  21306. },
  21307. {
  21308. name: "Macro+",
  21309. height: math.unit(1000, "feet")
  21310. },
  21311. {
  21312. name: "Megamacro",
  21313. height: math.unit(1, "mile")
  21314. },
  21315. ]
  21316. ))
  21317. characterMakers.push(() => makeCharacter(
  21318. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21319. {
  21320. side: {
  21321. height: math.unit(20, "feet"),
  21322. weight: math.unit(30000, "kg"),
  21323. name: "Side",
  21324. image: {
  21325. source: "./media/characters/windar/side.svg",
  21326. extra: 1491 / 1248,
  21327. bottom: 82.56 / 1568
  21328. }
  21329. },
  21330. },
  21331. [
  21332. {
  21333. name: "Normal",
  21334. height: math.unit(20, "feet"),
  21335. default: true
  21336. },
  21337. ]
  21338. ))
  21339. characterMakers.push(() => makeCharacter(
  21340. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21341. {
  21342. side: {
  21343. height: math.unit(15.66, "feet"),
  21344. weight: math.unit(150, "lb"),
  21345. name: "Side",
  21346. image: {
  21347. source: "./media/characters/melody/side.svg",
  21348. extra: 1097 / 944,
  21349. bottom: 11.8 / 1109
  21350. }
  21351. },
  21352. sideOutfit: {
  21353. height: math.unit(15.66, "feet"),
  21354. weight: math.unit(150, "lb"),
  21355. name: "Side (Outfit)",
  21356. image: {
  21357. source: "./media/characters/melody/side-outfit.svg",
  21358. extra: 1097 / 944,
  21359. bottom: 11.8 / 1109
  21360. }
  21361. },
  21362. },
  21363. [
  21364. {
  21365. name: "Normal",
  21366. height: math.unit(15.66, "feet"),
  21367. default: true
  21368. },
  21369. ]
  21370. ))
  21371. characterMakers.push(() => makeCharacter(
  21372. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21373. {
  21374. front: {
  21375. height: math.unit(8, "feet"),
  21376. weight: math.unit(325, "lb"),
  21377. name: "Front",
  21378. image: {
  21379. source: "./media/characters/windera/front.svg",
  21380. extra: 3180 / 2845,
  21381. bottom: 178 / 3365
  21382. }
  21383. },
  21384. },
  21385. [
  21386. {
  21387. name: "Normal",
  21388. height: math.unit(8, "feet"),
  21389. default: true
  21390. },
  21391. ]
  21392. ))
  21393. characterMakers.push(() => makeCharacter(
  21394. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21395. {
  21396. front: {
  21397. height: math.unit(28.75, "feet"),
  21398. weight: math.unit(2000, "kg"),
  21399. name: "Front",
  21400. image: {
  21401. source: "./media/characters/sonear/front.svg",
  21402. extra: 1041.1 / 964.9,
  21403. bottom: 53.7 / 1096.6
  21404. }
  21405. },
  21406. },
  21407. [
  21408. {
  21409. name: "Normal",
  21410. height: math.unit(28.75, "feet"),
  21411. default: true
  21412. },
  21413. ]
  21414. ))
  21415. characterMakers.push(() => makeCharacter(
  21416. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21417. {
  21418. side: {
  21419. height: math.unit(25.5, "feet"),
  21420. weight: math.unit(23000, "kg"),
  21421. name: "Side",
  21422. image: {
  21423. source: "./media/characters/kanara/side.svg"
  21424. }
  21425. },
  21426. },
  21427. [
  21428. {
  21429. name: "Normal",
  21430. height: math.unit(25.5, "feet"),
  21431. default: true
  21432. },
  21433. ]
  21434. ))
  21435. characterMakers.push(() => makeCharacter(
  21436. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21437. {
  21438. side: {
  21439. height: math.unit(10, "feet"),
  21440. weight: math.unit(1000, "kg"),
  21441. name: "Side",
  21442. image: {
  21443. source: "./media/characters/ereus/side.svg",
  21444. extra: 1157 / 959,
  21445. bottom: 153 / 1312.5
  21446. }
  21447. },
  21448. },
  21449. [
  21450. {
  21451. name: "Normal",
  21452. height: math.unit(10, "feet"),
  21453. default: true
  21454. },
  21455. ]
  21456. ))
  21457. characterMakers.push(() => makeCharacter(
  21458. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21459. {
  21460. side: {
  21461. height: math.unit(4.5, "feet"),
  21462. weight: math.unit(500, "lb"),
  21463. name: "Side",
  21464. image: {
  21465. source: "./media/characters/e-ter/side.svg",
  21466. extra: 1550 / 1248,
  21467. bottom: 146 / 1694
  21468. }
  21469. },
  21470. },
  21471. [
  21472. {
  21473. name: "Normal",
  21474. height: math.unit(4.5, "feet"),
  21475. default: true
  21476. },
  21477. ]
  21478. ))
  21479. characterMakers.push(() => makeCharacter(
  21480. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21481. {
  21482. side: {
  21483. height: math.unit(9.7, "feet"),
  21484. weight: math.unit(4000, "kg"),
  21485. name: "Side",
  21486. image: {
  21487. source: "./media/characters/yamie/side.svg"
  21488. }
  21489. },
  21490. },
  21491. [
  21492. {
  21493. name: "Normal",
  21494. height: math.unit(9.7, "feet"),
  21495. default: true
  21496. },
  21497. ]
  21498. ))
  21499. characterMakers.push(() => makeCharacter(
  21500. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21501. {
  21502. front: {
  21503. height: math.unit(50, "feet"),
  21504. weight: math.unit(50000, "kg"),
  21505. name: "Front",
  21506. image: {
  21507. source: "./media/characters/anders/front.svg",
  21508. extra: 570 / 539,
  21509. bottom: 14.7 / 586.7
  21510. }
  21511. },
  21512. },
  21513. [
  21514. {
  21515. name: "Large",
  21516. height: math.unit(50, "feet")
  21517. },
  21518. {
  21519. name: "Macro",
  21520. height: math.unit(2000, "feet"),
  21521. default: true
  21522. },
  21523. {
  21524. name: "Megamacro",
  21525. height: math.unit(12, "miles")
  21526. },
  21527. ]
  21528. ))
  21529. characterMakers.push(() => makeCharacter(
  21530. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21531. {
  21532. front: {
  21533. height: math.unit(7 + 2 / 12, "feet"),
  21534. weight: math.unit(300, "lb"),
  21535. name: "Front",
  21536. image: {
  21537. source: "./media/characters/reban/front.svg",
  21538. extra: 516 / 487,
  21539. bottom: 42.82 / 558.356
  21540. }
  21541. },
  21542. dick: {
  21543. height: math.unit(7 / 5, "feet"),
  21544. name: "Dick",
  21545. image: {
  21546. source: "./media/characters/reban/dick.svg"
  21547. }
  21548. },
  21549. },
  21550. [
  21551. {
  21552. name: "Natural Height",
  21553. height: math.unit(7 + 2 / 12, "feet")
  21554. },
  21555. {
  21556. name: "Macro",
  21557. height: math.unit(500, "feet"),
  21558. default: true
  21559. },
  21560. {
  21561. name: "Canon Height",
  21562. height: math.unit(50, "AU")
  21563. },
  21564. ]
  21565. ))
  21566. characterMakers.push(() => makeCharacter(
  21567. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21568. {
  21569. front: {
  21570. height: math.unit(6, "feet"),
  21571. weight: math.unit(150, "lb"),
  21572. name: "Front",
  21573. image: {
  21574. source: "./media/characters/terrance-keayes/front.svg",
  21575. extra: 1.005,
  21576. bottom: 151 / 1615
  21577. }
  21578. },
  21579. side: {
  21580. height: math.unit(6, "feet"),
  21581. weight: math.unit(150, "lb"),
  21582. name: "Side",
  21583. image: {
  21584. source: "./media/characters/terrance-keayes/side.svg",
  21585. extra: 1.005,
  21586. bottom: 129.4 / 1544
  21587. }
  21588. },
  21589. back: {
  21590. height: math.unit(6, "feet"),
  21591. weight: math.unit(150, "lb"),
  21592. name: "Back",
  21593. image: {
  21594. source: "./media/characters/terrance-keayes/back.svg",
  21595. extra: 1.005,
  21596. bottom: 58.4 / 1557.3
  21597. }
  21598. },
  21599. dick: {
  21600. height: math.unit(6 * 0.208, "feet"),
  21601. name: "Dick",
  21602. image: {
  21603. source: "./media/characters/terrance-keayes/dick.svg"
  21604. }
  21605. },
  21606. },
  21607. [
  21608. {
  21609. name: "Canon Height",
  21610. height: math.unit(35, "miles"),
  21611. default: true
  21612. },
  21613. ]
  21614. ))
  21615. characterMakers.push(() => makeCharacter(
  21616. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21617. {
  21618. front: {
  21619. height: math.unit(6, "feet"),
  21620. weight: math.unit(150, "lb"),
  21621. name: "Front",
  21622. image: {
  21623. source: "./media/characters/ofelia/front.svg",
  21624. extra: 546 / 541,
  21625. bottom: 39 / 583
  21626. }
  21627. },
  21628. back: {
  21629. height: math.unit(6, "feet"),
  21630. weight: math.unit(150, "lb"),
  21631. name: "Back",
  21632. image: {
  21633. source: "./media/characters/ofelia/back.svg",
  21634. extra: 564 / 559.5,
  21635. bottom: 8.69 / 573.02
  21636. }
  21637. },
  21638. maw: {
  21639. height: math.unit(1, "feet"),
  21640. name: "Maw",
  21641. image: {
  21642. source: "./media/characters/ofelia/maw.svg"
  21643. }
  21644. },
  21645. foot: {
  21646. height: math.unit(1.949, "feet"),
  21647. name: "Foot",
  21648. image: {
  21649. source: "./media/characters/ofelia/foot.svg"
  21650. }
  21651. },
  21652. },
  21653. [
  21654. {
  21655. name: "Canon Height",
  21656. height: math.unit(2000, "miles"),
  21657. default: true
  21658. },
  21659. ]
  21660. ))
  21661. characterMakers.push(() => makeCharacter(
  21662. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21663. {
  21664. front: {
  21665. height: math.unit(6, "feet"),
  21666. weight: math.unit(150, "lb"),
  21667. name: "Front",
  21668. image: {
  21669. source: "./media/characters/samuel/front.svg",
  21670. extra: 265 / 258,
  21671. bottom: 2 / 266.1566
  21672. }
  21673. },
  21674. },
  21675. [
  21676. {
  21677. name: "Macro",
  21678. height: math.unit(100, "feet"),
  21679. default: true
  21680. },
  21681. {
  21682. name: "Full Size",
  21683. height: math.unit(1000, "miles")
  21684. },
  21685. ]
  21686. ))
  21687. characterMakers.push(() => makeCharacter(
  21688. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21689. {
  21690. front: {
  21691. height: math.unit(6, "feet"),
  21692. weight: math.unit(300, "lb"),
  21693. name: "Front",
  21694. image: {
  21695. source: "./media/characters/beishir-kiel/front.svg",
  21696. extra: 569 / 547,
  21697. bottom: 41.9 / 609
  21698. }
  21699. },
  21700. maw: {
  21701. height: math.unit(6 * 0.202, "feet"),
  21702. name: "Maw",
  21703. image: {
  21704. source: "./media/characters/beishir-kiel/maw.svg"
  21705. }
  21706. },
  21707. },
  21708. [
  21709. {
  21710. name: "Macro",
  21711. height: math.unit(300, "feet"),
  21712. default: true
  21713. },
  21714. ]
  21715. ))
  21716. characterMakers.push(() => makeCharacter(
  21717. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21718. {
  21719. front: {
  21720. height: math.unit(5 + 8 / 12, "feet"),
  21721. weight: math.unit(120, "lb"),
  21722. name: "Front",
  21723. image: {
  21724. source: "./media/characters/logan-grey/front.svg",
  21725. extra: 2539 / 2393,
  21726. bottom: 97.6 / 2636.37
  21727. }
  21728. },
  21729. frontAlt: {
  21730. height: math.unit(5 + 8 / 12, "feet"),
  21731. weight: math.unit(120, "lb"),
  21732. name: "Front (Alt)",
  21733. image: {
  21734. source: "./media/characters/logan-grey/front-alt.svg",
  21735. extra: 958 / 893,
  21736. bottom: 15 / 970.768
  21737. }
  21738. },
  21739. back: {
  21740. height: math.unit(5 + 8 / 12, "feet"),
  21741. weight: math.unit(120, "lb"),
  21742. name: "Back",
  21743. image: {
  21744. source: "./media/characters/logan-grey/back.svg",
  21745. extra: 958 / 893,
  21746. bottom: 2.1881 / 970.9788
  21747. }
  21748. },
  21749. dick: {
  21750. height: math.unit(1.437, "feet"),
  21751. name: "Dick",
  21752. image: {
  21753. source: "./media/characters/logan-grey/dick.svg"
  21754. }
  21755. },
  21756. },
  21757. [
  21758. {
  21759. name: "Normal",
  21760. height: math.unit(5 + 8 / 12, "feet")
  21761. },
  21762. {
  21763. name: "The 500 Foot Femboy",
  21764. height: math.unit(500, "feet"),
  21765. default: true
  21766. },
  21767. {
  21768. name: "Megmacro",
  21769. height: math.unit(20, "miles")
  21770. },
  21771. ]
  21772. ))
  21773. characterMakers.push(() => makeCharacter(
  21774. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21775. {
  21776. front: {
  21777. height: math.unit(8 + 2 / 12, "feet"),
  21778. weight: math.unit(275, "lb"),
  21779. name: "Front",
  21780. image: {
  21781. source: "./media/characters/draganta/front.svg",
  21782. extra: 1177 / 1135,
  21783. bottom: 33.46 / 1212.1
  21784. }
  21785. },
  21786. },
  21787. [
  21788. {
  21789. name: "Normal",
  21790. height: math.unit(8 + 6 / 12, "feet"),
  21791. default: true
  21792. },
  21793. {
  21794. name: "Macro",
  21795. height: math.unit(150, "feet")
  21796. },
  21797. {
  21798. name: "Megamacro",
  21799. height: math.unit(1000, "miles")
  21800. },
  21801. ]
  21802. ))
  21803. characterMakers.push(() => makeCharacter(
  21804. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21805. {
  21806. front: {
  21807. height: math.unit(1.72, "m"),
  21808. weight: math.unit(80, "lb"),
  21809. name: "Front",
  21810. image: {
  21811. source: "./media/characters/voski/front.svg",
  21812. extra: 2076.22 / 2022.4,
  21813. bottom: 102.7 / 2177.3866
  21814. }
  21815. },
  21816. frontNsfw: {
  21817. height: math.unit(1.72, "m"),
  21818. weight: math.unit(80, "lb"),
  21819. name: "Front (NSFW)",
  21820. image: {
  21821. source: "./media/characters/voski/front-nsfw.svg",
  21822. extra: 2076.22 / 2022.4,
  21823. bottom: 102.7 / 2177.3866
  21824. }
  21825. },
  21826. back: {
  21827. height: math.unit(1.72, "m"),
  21828. weight: math.unit(80, "lb"),
  21829. name: "Back",
  21830. image: {
  21831. source: "./media/characters/voski/back.svg",
  21832. extra: 2104 / 2051,
  21833. bottom: 10.45 / 2113.63
  21834. }
  21835. },
  21836. },
  21837. [
  21838. {
  21839. name: "Normal",
  21840. height: math.unit(1.72, "m")
  21841. },
  21842. {
  21843. name: "Macro",
  21844. height: math.unit(55, "m"),
  21845. default: true
  21846. },
  21847. {
  21848. name: "Macro+",
  21849. height: math.unit(300, "m")
  21850. },
  21851. {
  21852. name: "Macro++",
  21853. height: math.unit(700, "m")
  21854. },
  21855. {
  21856. name: "Macro+++",
  21857. height: math.unit(4500, "m")
  21858. },
  21859. {
  21860. name: "Macro++++",
  21861. height: math.unit(45, "km")
  21862. },
  21863. {
  21864. name: "Macro+++++",
  21865. height: math.unit(1220, "km")
  21866. },
  21867. ]
  21868. ))
  21869. characterMakers.push(() => makeCharacter(
  21870. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21871. {
  21872. front: {
  21873. height: math.unit(2.3, "m"),
  21874. weight: math.unit(304, "kg"),
  21875. name: "Front",
  21876. image: {
  21877. source: "./media/characters/icowom-lee/front.svg",
  21878. extra: 985 / 955,
  21879. bottom: 25.4 / 1012
  21880. }
  21881. },
  21882. fronttentacles: {
  21883. height: math.unit(2.3, "m"),
  21884. weight: math.unit(304, "kg"),
  21885. name: "Front-tentacles",
  21886. image: {
  21887. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21888. extra: 985 / 955,
  21889. bottom: 25.4 / 1012
  21890. }
  21891. },
  21892. back: {
  21893. height: math.unit(2.3, "m"),
  21894. weight: math.unit(304, "kg"),
  21895. name: "Back",
  21896. image: {
  21897. source: "./media/characters/icowom-lee/back.svg",
  21898. extra: 975 / 954,
  21899. bottom: 9.5 / 985
  21900. }
  21901. },
  21902. backtentacles: {
  21903. height: math.unit(2.3, "m"),
  21904. weight: math.unit(304, "kg"),
  21905. name: "Back-tentacles",
  21906. image: {
  21907. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21908. extra: 975 / 954,
  21909. bottom: 9.5 / 985
  21910. }
  21911. },
  21912. frontDressed: {
  21913. height: math.unit(2.3, "m"),
  21914. weight: math.unit(304, "kg"),
  21915. name: "Front (Dressed)",
  21916. image: {
  21917. source: "./media/characters/icowom-lee/front-dressed.svg",
  21918. extra: 3076 / 2933,
  21919. bottom: 51.4 / 3125.1889
  21920. }
  21921. },
  21922. rump: {
  21923. height: math.unit(0.776, "meters"),
  21924. name: "Rump",
  21925. image: {
  21926. source: "./media/characters/icowom-lee/rump.svg"
  21927. }
  21928. },
  21929. genitals: {
  21930. height: math.unit(0.78, "meters"),
  21931. name: "Genitals",
  21932. image: {
  21933. source: "./media/characters/icowom-lee/genitals.svg"
  21934. }
  21935. },
  21936. },
  21937. [
  21938. {
  21939. name: "Normal",
  21940. height: math.unit(2.3, "meters"),
  21941. default: true
  21942. },
  21943. {
  21944. name: "Macro",
  21945. height: math.unit(94, "meters"),
  21946. default: true
  21947. },
  21948. ]
  21949. ))
  21950. characterMakers.push(() => makeCharacter(
  21951. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21952. {
  21953. front: {
  21954. height: math.unit(22, "meters"),
  21955. weight: math.unit(21000, "kg"),
  21956. name: "Front",
  21957. image: {
  21958. source: "./media/characters/shock-diamond/front.svg",
  21959. extra: 2204 / 2053,
  21960. bottom: 65 / 2239.47
  21961. }
  21962. },
  21963. frontNude: {
  21964. height: math.unit(22, "meters"),
  21965. weight: math.unit(21000, "kg"),
  21966. name: "Front (Nude)",
  21967. image: {
  21968. source: "./media/characters/shock-diamond/front-nude.svg",
  21969. extra: 2514 / 2285,
  21970. bottom: 13 / 2527.56
  21971. }
  21972. },
  21973. },
  21974. [
  21975. {
  21976. name: "Normal",
  21977. height: math.unit(3, "meters")
  21978. },
  21979. {
  21980. name: "Macro",
  21981. height: math.unit(22, "meters"),
  21982. default: true
  21983. },
  21984. ]
  21985. ))
  21986. characterMakers.push(() => makeCharacter(
  21987. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21988. {
  21989. front: {
  21990. height: math.unit(5 + 4 / 12, "feet"),
  21991. weight: math.unit(120, "lb"),
  21992. name: "Front",
  21993. image: {
  21994. source: "./media/characters/rory/front.svg",
  21995. extra: 589 / 556,
  21996. bottom: 45.7 / 635.76
  21997. }
  21998. },
  21999. frontNude: {
  22000. height: math.unit(5 + 4 / 12, "feet"),
  22001. weight: math.unit(120, "lb"),
  22002. name: "Front (Nude)",
  22003. image: {
  22004. source: "./media/characters/rory/front-nude.svg",
  22005. extra: 589 / 556,
  22006. bottom: 45.7 / 635.76
  22007. }
  22008. },
  22009. side: {
  22010. height: math.unit(5 + 4 / 12, "feet"),
  22011. weight: math.unit(120, "lb"),
  22012. name: "Side",
  22013. image: {
  22014. source: "./media/characters/rory/side.svg",
  22015. extra: 597 / 564,
  22016. bottom: 55 / 653
  22017. }
  22018. },
  22019. back: {
  22020. height: math.unit(5 + 4 / 12, "feet"),
  22021. weight: math.unit(120, "lb"),
  22022. name: "Back",
  22023. image: {
  22024. source: "./media/characters/rory/back.svg",
  22025. extra: 620 / 585,
  22026. bottom: 8.86 / 630.43
  22027. }
  22028. },
  22029. dick: {
  22030. height: math.unit(0.86, "feet"),
  22031. name: "Dick",
  22032. image: {
  22033. source: "./media/characters/rory/dick.svg"
  22034. }
  22035. },
  22036. },
  22037. [
  22038. {
  22039. name: "Normal",
  22040. height: math.unit(5 + 4 / 12, "feet"),
  22041. default: true
  22042. },
  22043. {
  22044. name: "Macro",
  22045. height: math.unit(100, "feet")
  22046. },
  22047. {
  22048. name: "Macro+",
  22049. height: math.unit(140, "feet")
  22050. },
  22051. {
  22052. name: "Macro++",
  22053. height: math.unit(300, "feet")
  22054. },
  22055. ]
  22056. ))
  22057. characterMakers.push(() => makeCharacter(
  22058. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22059. {
  22060. front: {
  22061. height: math.unit(5 + 9 / 12, "feet"),
  22062. weight: math.unit(190, "lb"),
  22063. name: "Front",
  22064. image: {
  22065. source: "./media/characters/sprisk/front.svg",
  22066. extra: 1225 / 1180,
  22067. bottom: 42.7 / 1266.4
  22068. }
  22069. },
  22070. frontNsfw: {
  22071. height: math.unit(5 + 9 / 12, "feet"),
  22072. weight: math.unit(190, "lb"),
  22073. name: "Front (NSFW)",
  22074. image: {
  22075. source: "./media/characters/sprisk/front-nsfw.svg",
  22076. extra: 1225 / 1180,
  22077. bottom: 42.7 / 1266.4
  22078. }
  22079. },
  22080. back: {
  22081. height: math.unit(5 + 9 / 12, "feet"),
  22082. weight: math.unit(190, "lb"),
  22083. name: "Back",
  22084. image: {
  22085. source: "./media/characters/sprisk/back.svg",
  22086. extra: 1247 / 1200,
  22087. bottom: 5.6 / 1253.04
  22088. }
  22089. },
  22090. },
  22091. [
  22092. {
  22093. name: "Tiny",
  22094. height: math.unit(2, "inches")
  22095. },
  22096. {
  22097. name: "Normal",
  22098. height: math.unit(5 + 9 / 12, "feet"),
  22099. default: true
  22100. },
  22101. {
  22102. name: "Mini Macro",
  22103. height: math.unit(18, "feet")
  22104. },
  22105. {
  22106. name: "Macro",
  22107. height: math.unit(100, "feet")
  22108. },
  22109. {
  22110. name: "MACRO",
  22111. height: math.unit(50, "miles")
  22112. },
  22113. {
  22114. name: "M A C R O",
  22115. height: math.unit(300, "miles")
  22116. },
  22117. ]
  22118. ))
  22119. characterMakers.push(() => makeCharacter(
  22120. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22121. {
  22122. side: {
  22123. height: math.unit(15.6, "meters"),
  22124. weight: math.unit(700000, "kg"),
  22125. name: "Side",
  22126. image: {
  22127. source: "./media/characters/bunsen/side.svg",
  22128. extra: 1644 / 358
  22129. }
  22130. },
  22131. foot: {
  22132. height: math.unit(1.611 * 1644 / 358, "meter"),
  22133. name: "Foot",
  22134. image: {
  22135. source: "./media/characters/bunsen/foot.svg"
  22136. }
  22137. },
  22138. },
  22139. [
  22140. {
  22141. name: "Small",
  22142. height: math.unit(10, "feet")
  22143. },
  22144. {
  22145. name: "Normal",
  22146. height: math.unit(15.6, "meters"),
  22147. default: true
  22148. },
  22149. ]
  22150. ))
  22151. characterMakers.push(() => makeCharacter(
  22152. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22153. {
  22154. front: {
  22155. height: math.unit(4 + 11 / 12, "feet"),
  22156. weight: math.unit(140, "lb"),
  22157. name: "Front",
  22158. image: {
  22159. source: "./media/characters/sesh/front.svg",
  22160. extra: 3420 / 3231,
  22161. bottom: 72 / 3949.5
  22162. }
  22163. },
  22164. },
  22165. [
  22166. {
  22167. name: "Normal",
  22168. height: math.unit(4 + 11 / 12, "feet")
  22169. },
  22170. {
  22171. name: "Grown",
  22172. height: math.unit(15, "feet"),
  22173. default: true
  22174. },
  22175. {
  22176. name: "Macro",
  22177. height: math.unit(1500, "feet")
  22178. },
  22179. {
  22180. name: "Megamacro",
  22181. height: math.unit(30, "miles")
  22182. },
  22183. {
  22184. name: "Continental",
  22185. height: math.unit(3000, "miles")
  22186. },
  22187. {
  22188. name: "Gravity Mass",
  22189. height: math.unit(300000, "miles")
  22190. },
  22191. {
  22192. name: "Planet Buster",
  22193. height: math.unit(30000000, "miles")
  22194. },
  22195. {
  22196. name: "Big",
  22197. height: math.unit(3000000000, "miles")
  22198. },
  22199. ]
  22200. ))
  22201. characterMakers.push(() => makeCharacter(
  22202. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22203. {
  22204. front: {
  22205. height: math.unit(9, "feet"),
  22206. weight: math.unit(350, "lb"),
  22207. name: "Front",
  22208. image: {
  22209. source: "./media/characters/pepper/front.svg",
  22210. extra: 1448 / 1312,
  22211. bottom: 9.4 / 1457.88
  22212. }
  22213. },
  22214. back: {
  22215. height: math.unit(9, "feet"),
  22216. weight: math.unit(350, "lb"),
  22217. name: "Back",
  22218. image: {
  22219. source: "./media/characters/pepper/back.svg",
  22220. extra: 1423 / 1300,
  22221. bottom: 4.6 / 1429
  22222. }
  22223. },
  22224. maw: {
  22225. height: math.unit(0.932, "feet"),
  22226. name: "Maw",
  22227. image: {
  22228. source: "./media/characters/pepper/maw.svg"
  22229. }
  22230. },
  22231. },
  22232. [
  22233. {
  22234. name: "Normal",
  22235. height: math.unit(9, "feet"),
  22236. default: true
  22237. },
  22238. ]
  22239. ))
  22240. characterMakers.push(() => makeCharacter(
  22241. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22242. {
  22243. front: {
  22244. height: math.unit(6, "feet"),
  22245. weight: math.unit(150, "lb"),
  22246. name: "Front",
  22247. image: {
  22248. source: "./media/characters/maelstrom/front.svg",
  22249. extra: 2100 / 1883,
  22250. bottom: 94 / 2196.7
  22251. }
  22252. },
  22253. },
  22254. [
  22255. {
  22256. name: "Less Kaiju",
  22257. height: math.unit(200, "feet")
  22258. },
  22259. {
  22260. name: "Kaiju",
  22261. height: math.unit(400, "feet"),
  22262. default: true
  22263. },
  22264. {
  22265. name: "Kaiju-er",
  22266. height: math.unit(600, "feet")
  22267. },
  22268. ]
  22269. ))
  22270. characterMakers.push(() => makeCharacter(
  22271. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22272. {
  22273. front: {
  22274. height: math.unit(6 + 5 / 12, "feet"),
  22275. weight: math.unit(180, "lb"),
  22276. name: "Front",
  22277. image: {
  22278. source: "./media/characters/lexir/front.svg",
  22279. extra: 180 / 172,
  22280. bottom: 12 / 192
  22281. }
  22282. },
  22283. back: {
  22284. height: math.unit(6 + 5 / 12, "feet"),
  22285. weight: math.unit(180, "lb"),
  22286. name: "Back",
  22287. image: {
  22288. source: "./media/characters/lexir/back.svg",
  22289. extra: 183.84 / 175.5,
  22290. bottom: 3.1 / 187
  22291. }
  22292. },
  22293. },
  22294. [
  22295. {
  22296. name: "Very Smal",
  22297. height: math.unit(1, "nm")
  22298. },
  22299. {
  22300. name: "Normal",
  22301. height: math.unit(6 + 5 / 12, "feet"),
  22302. default: true
  22303. },
  22304. {
  22305. name: "Macro",
  22306. height: math.unit(1, "mile")
  22307. },
  22308. {
  22309. name: "Megamacro",
  22310. height: math.unit(50, "miles")
  22311. },
  22312. ]
  22313. ))
  22314. characterMakers.push(() => makeCharacter(
  22315. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22316. {
  22317. front: {
  22318. height: math.unit(1.5, "meters"),
  22319. weight: math.unit(100, "lb"),
  22320. name: "Front",
  22321. image: {
  22322. source: "./media/characters/maksio/front.svg",
  22323. extra: 1549 / 1531,
  22324. bottom: 123.7 / 1674.5429
  22325. }
  22326. },
  22327. back: {
  22328. height: math.unit(1.5, "meters"),
  22329. weight: math.unit(100, "lb"),
  22330. name: "Back",
  22331. image: {
  22332. source: "./media/characters/maksio/back.svg",
  22333. extra: 1541 / 1509,
  22334. bottom: 97 / 1639
  22335. }
  22336. },
  22337. hand: {
  22338. height: math.unit(0.621, "feet"),
  22339. name: "Hand",
  22340. image: {
  22341. source: "./media/characters/maksio/hand.svg"
  22342. }
  22343. },
  22344. foot: {
  22345. height: math.unit(1.611, "feet"),
  22346. name: "Foot",
  22347. image: {
  22348. source: "./media/characters/maksio/foot.svg"
  22349. }
  22350. },
  22351. },
  22352. [
  22353. {
  22354. name: "Shrunken",
  22355. height: math.unit(10, "cm")
  22356. },
  22357. {
  22358. name: "Normal",
  22359. height: math.unit(150, "cm"),
  22360. default: true
  22361. },
  22362. ]
  22363. ))
  22364. characterMakers.push(() => makeCharacter(
  22365. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22366. {
  22367. front: {
  22368. height: math.unit(100, "feet"),
  22369. name: "Front",
  22370. image: {
  22371. source: "./media/characters/erza-bear/front.svg",
  22372. extra: 2449 / 2390,
  22373. bottom: 46 / 2494
  22374. }
  22375. },
  22376. back: {
  22377. height: math.unit(100, "feet"),
  22378. name: "Back",
  22379. image: {
  22380. source: "./media/characters/erza-bear/back.svg",
  22381. extra: 2489 / 2430,
  22382. bottom: 85.4 / 2480
  22383. }
  22384. },
  22385. tail: {
  22386. height: math.unit(42, "feet"),
  22387. name: "Tail",
  22388. image: {
  22389. source: "./media/characters/erza-bear/tail.svg"
  22390. }
  22391. },
  22392. tongue: {
  22393. height: math.unit(8, "feet"),
  22394. name: "Tongue",
  22395. image: {
  22396. source: "./media/characters/erza-bear/tongue.svg"
  22397. }
  22398. },
  22399. dick: {
  22400. height: math.unit(10.5, "feet"),
  22401. name: "Dick",
  22402. image: {
  22403. source: "./media/characters/erza-bear/dick.svg"
  22404. }
  22405. },
  22406. dickVertical: {
  22407. height: math.unit(16.9, "feet"),
  22408. name: "Dick (Vertical)",
  22409. image: {
  22410. source: "./media/characters/erza-bear/dick-vertical.svg"
  22411. }
  22412. },
  22413. },
  22414. [
  22415. {
  22416. name: "Macro",
  22417. height: math.unit(100, "feet"),
  22418. default: true
  22419. },
  22420. ]
  22421. ))
  22422. characterMakers.push(() => makeCharacter(
  22423. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22424. {
  22425. front: {
  22426. height: math.unit(172, "cm"),
  22427. weight: math.unit(73, "kg"),
  22428. name: "Front",
  22429. image: {
  22430. source: "./media/characters/violet-flor/front.svg",
  22431. extra: 1530 / 1442,
  22432. bottom: 61.9 / 1588.8
  22433. }
  22434. },
  22435. back: {
  22436. height: math.unit(180, "cm"),
  22437. weight: math.unit(73, "kg"),
  22438. name: "Back",
  22439. image: {
  22440. source: "./media/characters/violet-flor/back.svg",
  22441. extra: 1692 / 1630,
  22442. bottom: 20 / 1712
  22443. }
  22444. },
  22445. },
  22446. [
  22447. {
  22448. name: "Normal",
  22449. height: math.unit(172, "cm"),
  22450. default: true
  22451. },
  22452. ]
  22453. ))
  22454. characterMakers.push(() => makeCharacter(
  22455. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22456. {
  22457. front: {
  22458. height: math.unit(6, "feet"),
  22459. weight: math.unit(220, "lb"),
  22460. name: "Front",
  22461. image: {
  22462. source: "./media/characters/lynn-rhea/front.svg",
  22463. extra: 310 / 273
  22464. }
  22465. },
  22466. back: {
  22467. height: math.unit(6, "feet"),
  22468. weight: math.unit(220, "lb"),
  22469. name: "Back",
  22470. image: {
  22471. source: "./media/characters/lynn-rhea/back.svg",
  22472. extra: 310 / 273
  22473. }
  22474. },
  22475. dicks: {
  22476. height: math.unit(0.9, "feet"),
  22477. name: "Dicks",
  22478. image: {
  22479. source: "./media/characters/lynn-rhea/dicks.svg"
  22480. }
  22481. },
  22482. slit: {
  22483. height: math.unit(0.4, "feet"),
  22484. name: "Slit",
  22485. image: {
  22486. source: "./media/characters/lynn-rhea/slit.svg"
  22487. }
  22488. },
  22489. },
  22490. [
  22491. {
  22492. name: "Micro",
  22493. height: math.unit(1, "inch")
  22494. },
  22495. {
  22496. name: "Macro",
  22497. height: math.unit(60, "feet"),
  22498. default: true
  22499. },
  22500. {
  22501. name: "Megamacro",
  22502. height: math.unit(2, "miles")
  22503. },
  22504. {
  22505. name: "Gigamacro",
  22506. height: math.unit(3, "earths")
  22507. },
  22508. {
  22509. name: "Galactic",
  22510. height: math.unit(0.8, "galaxies")
  22511. },
  22512. ]
  22513. ))
  22514. characterMakers.push(() => makeCharacter(
  22515. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22516. {
  22517. front: {
  22518. height: math.unit(1600, "feet"),
  22519. weight: math.unit(85758785169, "kg"),
  22520. name: "Front",
  22521. image: {
  22522. source: "./media/characters/valathos/front.svg",
  22523. extra: 1451 / 1339
  22524. }
  22525. },
  22526. },
  22527. [
  22528. {
  22529. name: "Macro",
  22530. height: math.unit(1600, "feet"),
  22531. default: true
  22532. },
  22533. ]
  22534. ))
  22535. characterMakers.push(() => makeCharacter(
  22536. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22537. {
  22538. front: {
  22539. height: math.unit(7 + 5 / 12, "feet"),
  22540. weight: math.unit(300, "lb"),
  22541. name: "Front",
  22542. image: {
  22543. source: "./media/characters/azula/front.svg",
  22544. extra: 3208 / 2880,
  22545. bottom: 80.2 / 3277
  22546. }
  22547. },
  22548. back: {
  22549. height: math.unit(7 + 5 / 12, "feet"),
  22550. weight: math.unit(300, "lb"),
  22551. name: "Back",
  22552. image: {
  22553. source: "./media/characters/azula/back.svg",
  22554. extra: 3169 / 2822,
  22555. bottom: 150.6 / 3321
  22556. }
  22557. },
  22558. },
  22559. [
  22560. {
  22561. name: "Normal",
  22562. height: math.unit(7 + 5 / 12, "feet"),
  22563. default: true
  22564. },
  22565. {
  22566. name: "Big",
  22567. height: math.unit(20, "feet")
  22568. },
  22569. ]
  22570. ))
  22571. characterMakers.push(() => makeCharacter(
  22572. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22573. {
  22574. front: {
  22575. height: math.unit(5 + 1 / 12, "feet"),
  22576. weight: math.unit(110, "lb"),
  22577. name: "Front",
  22578. image: {
  22579. source: "./media/characters/rupert/front.svg",
  22580. extra: 1549 / 1495,
  22581. bottom: 54.2 / 1604.4
  22582. }
  22583. },
  22584. },
  22585. [
  22586. {
  22587. name: "Normal",
  22588. height: math.unit(5 + 1 / 12, "feet"),
  22589. default: true
  22590. },
  22591. ]
  22592. ))
  22593. characterMakers.push(() => makeCharacter(
  22594. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22595. {
  22596. front: {
  22597. height: math.unit(8 + 4 / 12, "feet"),
  22598. weight: math.unit(350, "lb"),
  22599. name: "Front",
  22600. image: {
  22601. source: "./media/characters/sheera-castellar/front.svg",
  22602. extra: 1957 / 1894,
  22603. bottom: 26.97 / 1975.017
  22604. }
  22605. },
  22606. side: {
  22607. height: math.unit(8 + 4 / 12, "feet"),
  22608. weight: math.unit(350, "lb"),
  22609. name: "Side",
  22610. image: {
  22611. source: "./media/characters/sheera-castellar/side.svg",
  22612. extra: 1957 / 1894
  22613. }
  22614. },
  22615. back: {
  22616. height: math.unit(8 + 4 / 12, "feet"),
  22617. weight: math.unit(350, "lb"),
  22618. name: "Back",
  22619. image: {
  22620. source: "./media/characters/sheera-castellar/back.svg",
  22621. extra: 1957 / 1894
  22622. }
  22623. },
  22624. angled: {
  22625. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22626. weight: math.unit(350, "lb"),
  22627. name: "Angled",
  22628. image: {
  22629. source: "./media/characters/sheera-castellar/angled.svg",
  22630. extra: 1807 / 1707,
  22631. bottom: 68 / 1875
  22632. }
  22633. },
  22634. genitals: {
  22635. height: math.unit(2.2, "feet"),
  22636. name: "Genitals",
  22637. image: {
  22638. source: "./media/characters/sheera-castellar/genitals.svg"
  22639. }
  22640. },
  22641. },
  22642. [
  22643. {
  22644. name: "Normal",
  22645. height: math.unit(8 + 4 / 12, "feet")
  22646. },
  22647. {
  22648. name: "Macro",
  22649. height: math.unit(150, "feet"),
  22650. default: true
  22651. },
  22652. {
  22653. name: "Macro+",
  22654. height: math.unit(800, "feet")
  22655. },
  22656. ]
  22657. ))
  22658. characterMakers.push(() => makeCharacter(
  22659. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22660. {
  22661. front: {
  22662. height: math.unit(6, "feet"),
  22663. weight: math.unit(150, "lb"),
  22664. name: "Front",
  22665. image: {
  22666. source: "./media/characters/jaipur/front.svg",
  22667. extra: 3860 / 3731,
  22668. bottom: 287 / 4140
  22669. }
  22670. },
  22671. back: {
  22672. height: math.unit(6, "feet"),
  22673. weight: math.unit(150, "lb"),
  22674. name: "Back",
  22675. image: {
  22676. source: "./media/characters/jaipur/back.svg",
  22677. extra: 4060 / 3930,
  22678. bottom: 151 / 4200
  22679. }
  22680. },
  22681. },
  22682. [
  22683. {
  22684. name: "Normal",
  22685. height: math.unit(1.85, "meters"),
  22686. default: true
  22687. },
  22688. {
  22689. name: "Macro",
  22690. height: math.unit(150, "meters")
  22691. },
  22692. {
  22693. name: "Macro+",
  22694. height: math.unit(0.5, "miles")
  22695. },
  22696. {
  22697. name: "Macro++",
  22698. height: math.unit(2.5, "miles")
  22699. },
  22700. {
  22701. name: "Macro+++",
  22702. height: math.unit(12, "miles")
  22703. },
  22704. {
  22705. name: "Macro++++",
  22706. height: math.unit(120, "miles")
  22707. },
  22708. {
  22709. name: "Macro+++++",
  22710. height: math.unit(1200, "miles")
  22711. },
  22712. ]
  22713. ))
  22714. characterMakers.push(() => makeCharacter(
  22715. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22716. {
  22717. front: {
  22718. height: math.unit(6, "feet"),
  22719. weight: math.unit(150, "lb"),
  22720. name: "Front",
  22721. image: {
  22722. source: "./media/characters/sheila-wolf/front.svg",
  22723. extra: 1931 / 1808,
  22724. bottom: 29.5 / 1960
  22725. }
  22726. },
  22727. dick: {
  22728. height: math.unit(1.464, "feet"),
  22729. name: "Dick",
  22730. image: {
  22731. source: "./media/characters/sheila-wolf/dick.svg"
  22732. }
  22733. },
  22734. muzzle: {
  22735. height: math.unit(0.513, "feet"),
  22736. name: "Muzzle",
  22737. image: {
  22738. source: "./media/characters/sheila-wolf/muzzle.svg"
  22739. }
  22740. },
  22741. },
  22742. [
  22743. {
  22744. name: "Macro",
  22745. height: math.unit(70, "feet"),
  22746. default: true
  22747. },
  22748. ]
  22749. ))
  22750. characterMakers.push(() => makeCharacter(
  22751. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22752. {
  22753. front: {
  22754. height: math.unit(32, "meters"),
  22755. weight: math.unit(300000, "kg"),
  22756. name: "Front",
  22757. image: {
  22758. source: "./media/characters/almor/front.svg",
  22759. extra: 1408 / 1322,
  22760. bottom: 94.6 / 1506.5
  22761. }
  22762. },
  22763. },
  22764. [
  22765. {
  22766. name: "Macro",
  22767. height: math.unit(32, "meters"),
  22768. default: true
  22769. },
  22770. ]
  22771. ))
  22772. characterMakers.push(() => makeCharacter(
  22773. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22774. {
  22775. front: {
  22776. height: math.unit(7, "feet"),
  22777. weight: math.unit(200, "lb"),
  22778. name: "Front",
  22779. image: {
  22780. source: "./media/characters/silver/front.svg",
  22781. extra: 472.1 / 450.5,
  22782. bottom: 26.5 / 499.424
  22783. }
  22784. },
  22785. },
  22786. [
  22787. {
  22788. name: "Normal",
  22789. height: math.unit(7, "feet"),
  22790. default: true
  22791. },
  22792. {
  22793. name: "Macro",
  22794. height: math.unit(800, "feet")
  22795. },
  22796. {
  22797. name: "Megamacro",
  22798. height: math.unit(250, "miles")
  22799. },
  22800. ]
  22801. ))
  22802. characterMakers.push(() => makeCharacter(
  22803. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22804. {
  22805. front: {
  22806. height: math.unit(6, "feet"),
  22807. weight: math.unit(150, "lb"),
  22808. name: "Front",
  22809. image: {
  22810. source: "./media/characters/pliskin/front.svg",
  22811. extra: 1469 / 1359,
  22812. bottom: 70 / 1540
  22813. }
  22814. },
  22815. },
  22816. [
  22817. {
  22818. name: "Micro",
  22819. height: math.unit(3, "inches")
  22820. },
  22821. {
  22822. name: "Normal",
  22823. height: math.unit(5 + 11 / 12, "feet"),
  22824. default: true
  22825. },
  22826. {
  22827. name: "Macro",
  22828. height: math.unit(120, "feet")
  22829. },
  22830. ]
  22831. ))
  22832. characterMakers.push(() => makeCharacter(
  22833. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22834. {
  22835. front: {
  22836. height: math.unit(6, "feet"),
  22837. weight: math.unit(150, "lb"),
  22838. name: "Front",
  22839. image: {
  22840. source: "./media/characters/sammy/front.svg",
  22841. extra: 1193 / 1089,
  22842. bottom: 30.5 / 1226
  22843. }
  22844. },
  22845. },
  22846. [
  22847. {
  22848. name: "Macro",
  22849. height: math.unit(1700, "feet"),
  22850. default: true
  22851. },
  22852. {
  22853. name: "Examacro",
  22854. height: math.unit(2.5e9, "lightyears")
  22855. },
  22856. ]
  22857. ))
  22858. characterMakers.push(() => makeCharacter(
  22859. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22860. {
  22861. front: {
  22862. height: math.unit(21, "meters"),
  22863. weight: math.unit(12, "tonnes"),
  22864. name: "Front",
  22865. image: {
  22866. source: "./media/characters/kuru/front.svg",
  22867. extra: 4301 / 3785,
  22868. bottom: 371.3 / 4691
  22869. }
  22870. },
  22871. },
  22872. [
  22873. {
  22874. name: "Macro",
  22875. height: math.unit(21, "meters"),
  22876. default: true
  22877. },
  22878. ]
  22879. ))
  22880. characterMakers.push(() => makeCharacter(
  22881. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22882. {
  22883. front: {
  22884. height: math.unit(23, "meters"),
  22885. weight: math.unit(12.2, "tonnes"),
  22886. name: "Front",
  22887. image: {
  22888. source: "./media/characters/rakka/front.svg",
  22889. extra: 4670 / 4169,
  22890. bottom: 301 / 4968.7
  22891. }
  22892. },
  22893. },
  22894. [
  22895. {
  22896. name: "Macro",
  22897. height: math.unit(23, "meters"),
  22898. default: true
  22899. },
  22900. ]
  22901. ))
  22902. characterMakers.push(() => makeCharacter(
  22903. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22904. {
  22905. front: {
  22906. height: math.unit(6, "feet"),
  22907. weight: math.unit(150, "lb"),
  22908. name: "Front",
  22909. image: {
  22910. source: "./media/characters/rhys-feline/front.svg",
  22911. extra: 2488 / 2308,
  22912. bottom: 35.67 / 2519.19
  22913. }
  22914. },
  22915. },
  22916. [
  22917. {
  22918. name: "Really Small",
  22919. height: math.unit(1, "nm")
  22920. },
  22921. {
  22922. name: "Micro",
  22923. height: math.unit(4, "inches")
  22924. },
  22925. {
  22926. name: "Normal",
  22927. height: math.unit(4 + 10 / 12, "feet"),
  22928. default: true
  22929. },
  22930. {
  22931. name: "Macro",
  22932. height: math.unit(100, "feet")
  22933. },
  22934. {
  22935. name: "Megamacto",
  22936. height: math.unit(50, "miles")
  22937. },
  22938. ]
  22939. ))
  22940. characterMakers.push(() => makeCharacter(
  22941. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22942. {
  22943. side: {
  22944. height: math.unit(30, "feet"),
  22945. weight: math.unit(35000, "kg"),
  22946. name: "Side",
  22947. image: {
  22948. source: "./media/characters/alydar/side.svg",
  22949. extra: 234 / 222,
  22950. bottom: 6.5 / 241
  22951. }
  22952. },
  22953. front: {
  22954. height: math.unit(30, "feet"),
  22955. weight: math.unit(35000, "kg"),
  22956. name: "Front",
  22957. image: {
  22958. source: "./media/characters/alydar/front.svg",
  22959. extra: 223.37 / 210.2,
  22960. bottom: 22.3 / 246.76
  22961. }
  22962. },
  22963. top: {
  22964. height: math.unit(64.54, "feet"),
  22965. weight: math.unit(35000, "kg"),
  22966. name: "Top",
  22967. image: {
  22968. source: "./media/characters/alydar/top.svg"
  22969. }
  22970. },
  22971. anthro: {
  22972. height: math.unit(30, "feet"),
  22973. weight: math.unit(9000, "kg"),
  22974. name: "Anthro",
  22975. image: {
  22976. source: "./media/characters/alydar/anthro.svg",
  22977. extra: 432 / 421,
  22978. bottom: 7.18 / 440
  22979. }
  22980. },
  22981. maw: {
  22982. height: math.unit(11.693, "feet"),
  22983. name: "Maw",
  22984. image: {
  22985. source: "./media/characters/alydar/maw.svg"
  22986. }
  22987. },
  22988. head: {
  22989. height: math.unit(11.693, "feet"),
  22990. name: "Head",
  22991. image: {
  22992. source: "./media/characters/alydar/head.svg"
  22993. }
  22994. },
  22995. headAlt: {
  22996. height: math.unit(12.861, "feet"),
  22997. name: "Head (Alt)",
  22998. image: {
  22999. source: "./media/characters/alydar/head-alt.svg"
  23000. }
  23001. },
  23002. wing: {
  23003. height: math.unit(20.712, "feet"),
  23004. name: "Wing",
  23005. image: {
  23006. source: "./media/characters/alydar/wing.svg"
  23007. }
  23008. },
  23009. wingFeather: {
  23010. height: math.unit(9.662, "feet"),
  23011. name: "Wing Feather",
  23012. image: {
  23013. source: "./media/characters/alydar/wing-feather.svg"
  23014. }
  23015. },
  23016. countourFeather: {
  23017. height: math.unit(4.154, "feet"),
  23018. name: "Contour Feather",
  23019. image: {
  23020. source: "./media/characters/alydar/contour-feather.svg"
  23021. }
  23022. },
  23023. },
  23024. [
  23025. {
  23026. name: "Diplomatic",
  23027. height: math.unit(13, "feet"),
  23028. default: true
  23029. },
  23030. {
  23031. name: "Small",
  23032. height: math.unit(30, "feet")
  23033. },
  23034. {
  23035. name: "Normal",
  23036. height: math.unit(95, "feet"),
  23037. default: true
  23038. },
  23039. {
  23040. name: "Large",
  23041. height: math.unit(285, "feet")
  23042. },
  23043. {
  23044. name: "Incomprehensible",
  23045. height: math.unit(450, "megameters")
  23046. },
  23047. ]
  23048. ))
  23049. characterMakers.push(() => makeCharacter(
  23050. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23051. {
  23052. side: {
  23053. height: math.unit(11, "feet"),
  23054. weight: math.unit(1750, "kg"),
  23055. name: "Side",
  23056. image: {
  23057. source: "./media/characters/selicia/side.svg",
  23058. extra: 440 / 396,
  23059. bottom: 24.8 / 465.979
  23060. }
  23061. },
  23062. maw: {
  23063. height: math.unit(4.665, "feet"),
  23064. name: "Maw",
  23065. image: {
  23066. source: "./media/characters/selicia/maw.svg"
  23067. }
  23068. },
  23069. },
  23070. [
  23071. {
  23072. name: "Normal",
  23073. height: math.unit(11, "feet"),
  23074. default: true
  23075. },
  23076. ]
  23077. ))
  23078. characterMakers.push(() => makeCharacter(
  23079. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23080. {
  23081. side: {
  23082. height: math.unit(2 + 6 / 12, "feet"),
  23083. weight: math.unit(30, "lb"),
  23084. name: "Side",
  23085. image: {
  23086. source: "./media/characters/layla/side.svg",
  23087. extra: 244 / 188,
  23088. bottom: 18.2 / 262.1
  23089. }
  23090. },
  23091. back: {
  23092. height: math.unit(2 + 6 / 12, "feet"),
  23093. weight: math.unit(30, "lb"),
  23094. name: "Back",
  23095. image: {
  23096. source: "./media/characters/layla/back.svg",
  23097. extra: 308 / 241.5,
  23098. bottom: 8.9 / 316.8
  23099. }
  23100. },
  23101. cumming: {
  23102. height: math.unit(2 + 6 / 12, "feet"),
  23103. weight: math.unit(30, "lb"),
  23104. name: "Cumming",
  23105. image: {
  23106. source: "./media/characters/layla/cumming.svg",
  23107. extra: 342 / 279,
  23108. bottom: 595 / 938
  23109. }
  23110. },
  23111. dickFlaccid: {
  23112. height: math.unit(2.595, "feet"),
  23113. name: "Flaccid Genitals",
  23114. image: {
  23115. source: "./media/characters/layla/dick-flaccid.svg"
  23116. }
  23117. },
  23118. dickErect: {
  23119. height: math.unit(2.359, "feet"),
  23120. name: "Erect Genitals",
  23121. image: {
  23122. source: "./media/characters/layla/dick-erect.svg"
  23123. }
  23124. },
  23125. },
  23126. [
  23127. {
  23128. name: "Micro",
  23129. height: math.unit(1, "inch")
  23130. },
  23131. {
  23132. name: "Small",
  23133. height: math.unit(1, "foot")
  23134. },
  23135. {
  23136. name: "Normal",
  23137. height: math.unit(2 + 6 / 12, "feet"),
  23138. default: true
  23139. },
  23140. {
  23141. name: "Macro",
  23142. height: math.unit(200, "feet")
  23143. },
  23144. {
  23145. name: "Megamacro",
  23146. height: math.unit(1000, "miles")
  23147. },
  23148. {
  23149. name: "Planetary",
  23150. height: math.unit(8000, "miles")
  23151. },
  23152. {
  23153. name: "True Layla",
  23154. height: math.unit(200000 * 7, "multiverses")
  23155. },
  23156. ]
  23157. ))
  23158. characterMakers.push(() => makeCharacter(
  23159. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23160. {
  23161. back: {
  23162. height: math.unit(10.5, "feet"),
  23163. weight: math.unit(800, "lb"),
  23164. name: "Back",
  23165. image: {
  23166. source: "./media/characters/knox/back.svg",
  23167. extra: 1486 / 1089,
  23168. bottom: 107 / 1601.4
  23169. }
  23170. },
  23171. side: {
  23172. height: math.unit(10.5, "feet"),
  23173. weight: math.unit(800, "lb"),
  23174. name: "Side",
  23175. image: {
  23176. source: "./media/characters/knox/side.svg",
  23177. extra: 244 / 218,
  23178. bottom: 14 / 260
  23179. }
  23180. },
  23181. },
  23182. [
  23183. {
  23184. name: "Compact",
  23185. height: math.unit(10.5, "feet"),
  23186. default: true
  23187. },
  23188. {
  23189. name: "Dynamax",
  23190. height: math.unit(210, "feet")
  23191. },
  23192. {
  23193. name: "Full Macro",
  23194. height: math.unit(850, "feet")
  23195. },
  23196. ]
  23197. ))
  23198. characterMakers.push(() => makeCharacter(
  23199. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23200. {
  23201. front: {
  23202. height: math.unit(6, "feet"),
  23203. weight: math.unit(152, "lb"),
  23204. name: "Front",
  23205. image: {
  23206. source: "./media/characters/shin-pikachu/front.svg",
  23207. extra: 1574 / 1480,
  23208. bottom: 53.3 / 1626
  23209. }
  23210. },
  23211. hand: {
  23212. height: math.unit(1.055, "feet"),
  23213. name: "Hand",
  23214. image: {
  23215. source: "./media/characters/shin-pikachu/hand.svg"
  23216. }
  23217. },
  23218. foot: {
  23219. height: math.unit(1.1, "feet"),
  23220. name: "Foot",
  23221. image: {
  23222. source: "./media/characters/shin-pikachu/foot.svg"
  23223. }
  23224. },
  23225. collar: {
  23226. height: math.unit(0.386, "feet"),
  23227. name: "Collar",
  23228. image: {
  23229. source: "./media/characters/shin-pikachu/collar.svg"
  23230. }
  23231. },
  23232. },
  23233. [
  23234. {
  23235. name: "Smallest",
  23236. height: math.unit(0.5, "inches")
  23237. },
  23238. {
  23239. name: "Micro",
  23240. height: math.unit(6, "inches")
  23241. },
  23242. {
  23243. name: "Normal",
  23244. height: math.unit(6, "feet"),
  23245. default: true
  23246. },
  23247. {
  23248. name: "Macro",
  23249. height: math.unit(150, "feet")
  23250. },
  23251. ]
  23252. ))
  23253. characterMakers.push(() => makeCharacter(
  23254. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23255. {
  23256. front: {
  23257. height: math.unit(28, "feet"),
  23258. weight: math.unit(10500, "lb"),
  23259. name: "Front",
  23260. image: {
  23261. source: "./media/characters/kayda/front.svg",
  23262. extra: 1536 / 1428,
  23263. bottom: 68.7 / 1603
  23264. }
  23265. },
  23266. back: {
  23267. height: math.unit(28, "feet"),
  23268. weight: math.unit(10500, "lb"),
  23269. name: "Back",
  23270. image: {
  23271. source: "./media/characters/kayda/back.svg",
  23272. extra: 1557 / 1464,
  23273. bottom: 39.5 / 1597.49
  23274. }
  23275. },
  23276. dick: {
  23277. height: math.unit(3.858, "feet"),
  23278. name: "Dick",
  23279. image: {
  23280. source: "./media/characters/kayda/dick.svg"
  23281. }
  23282. },
  23283. },
  23284. [
  23285. {
  23286. name: "Macro",
  23287. height: math.unit(28, "feet"),
  23288. default: true
  23289. },
  23290. ]
  23291. ))
  23292. characterMakers.push(() => makeCharacter(
  23293. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23294. {
  23295. front: {
  23296. height: math.unit(10 + 11 / 12, "feet"),
  23297. weight: math.unit(1400, "lb"),
  23298. name: "Front",
  23299. image: {
  23300. source: "./media/characters/brian/front.svg",
  23301. extra: 737 / 692,
  23302. bottom: 55.4 / 785
  23303. }
  23304. },
  23305. },
  23306. [
  23307. {
  23308. name: "Normal",
  23309. height: math.unit(10 + 11 / 12, "feet"),
  23310. default: true
  23311. },
  23312. ]
  23313. ))
  23314. characterMakers.push(() => makeCharacter(
  23315. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23316. {
  23317. front: {
  23318. height: math.unit(5 + 8 / 12, "feet"),
  23319. weight: math.unit(140, "lb"),
  23320. name: "Front",
  23321. image: {
  23322. source: "./media/characters/khemri/front.svg",
  23323. extra: 4780 / 4059,
  23324. bottom: 80.1 / 4859.25
  23325. }
  23326. },
  23327. },
  23328. [
  23329. {
  23330. name: "Micro",
  23331. height: math.unit(6, "inches")
  23332. },
  23333. {
  23334. name: "Normal",
  23335. height: math.unit(5 + 8 / 12, "feet"),
  23336. default: true
  23337. },
  23338. ]
  23339. ))
  23340. characterMakers.push(() => makeCharacter(
  23341. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23342. {
  23343. front: {
  23344. height: math.unit(13, "feet"),
  23345. weight: math.unit(1700, "lb"),
  23346. name: "Front",
  23347. image: {
  23348. source: "./media/characters/felix-braveheart/front.svg",
  23349. extra: 1222 / 1157,
  23350. bottom: 53.2 / 1280
  23351. }
  23352. },
  23353. back: {
  23354. height: math.unit(13, "feet"),
  23355. weight: math.unit(1700, "lb"),
  23356. name: "Back",
  23357. image: {
  23358. source: "./media/characters/felix-braveheart/back.svg",
  23359. extra: 1277 / 1203,
  23360. bottom: 50.2 / 1327
  23361. }
  23362. },
  23363. feral: {
  23364. height: math.unit(6, "feet"),
  23365. weight: math.unit(400, "lb"),
  23366. name: "Feral",
  23367. image: {
  23368. source: "./media/characters/felix-braveheart/feral.svg",
  23369. extra: 682 / 625,
  23370. bottom: 6.9 / 688
  23371. }
  23372. },
  23373. },
  23374. [
  23375. {
  23376. name: "Normal",
  23377. height: math.unit(13, "feet"),
  23378. default: true
  23379. },
  23380. ]
  23381. ))
  23382. characterMakers.push(() => makeCharacter(
  23383. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23384. {
  23385. side: {
  23386. height: math.unit(5 + 11 / 12, "feet"),
  23387. weight: math.unit(1400, "lb"),
  23388. name: "Side",
  23389. image: {
  23390. source: "./media/characters/shadow-blade/side.svg",
  23391. extra: 1726 / 1267,
  23392. bottom: 58.4 / 1785
  23393. }
  23394. },
  23395. },
  23396. [
  23397. {
  23398. name: "Normal",
  23399. height: math.unit(5 + 11 / 12, "feet"),
  23400. default: true
  23401. },
  23402. ]
  23403. ))
  23404. characterMakers.push(() => makeCharacter(
  23405. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23406. {
  23407. front: {
  23408. height: math.unit(1 + 6 / 12, "feet"),
  23409. weight: math.unit(25, "lb"),
  23410. name: "Front",
  23411. image: {
  23412. source: "./media/characters/karla-halldor/front.svg",
  23413. extra: 1459 / 1383,
  23414. bottom: 12 / 1472
  23415. }
  23416. },
  23417. },
  23418. [
  23419. {
  23420. name: "Normal",
  23421. height: math.unit(1 + 6 / 12, "feet"),
  23422. default: true
  23423. },
  23424. ]
  23425. ))
  23426. characterMakers.push(() => makeCharacter(
  23427. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23428. {
  23429. front: {
  23430. height: math.unit(6 + 2 / 12, "feet"),
  23431. weight: math.unit(160, "lb"),
  23432. name: "Front",
  23433. image: {
  23434. source: "./media/characters/ariam/front.svg",
  23435. extra: 714 / 617,
  23436. bottom: 23.4 / 737,
  23437. }
  23438. },
  23439. squatting: {
  23440. height: math.unit(4.1, "feet"),
  23441. weight: math.unit(160, "lb"),
  23442. name: "Squatting",
  23443. image: {
  23444. source: "./media/characters/ariam/squatting.svg",
  23445. extra: 2617 / 2112,
  23446. bottom: 61.2 / 2681,
  23447. }
  23448. },
  23449. },
  23450. [
  23451. {
  23452. name: "Normal",
  23453. height: math.unit(6 + 2 / 12, "feet"),
  23454. default: true
  23455. },
  23456. {
  23457. name: "Normal+",
  23458. height: math.unit(4, "meters")
  23459. },
  23460. {
  23461. name: "Macro",
  23462. height: math.unit(50, "meters")
  23463. },
  23464. {
  23465. name: "Macro+",
  23466. height: math.unit(100, "meters")
  23467. },
  23468. {
  23469. name: "Megamacro",
  23470. height: math.unit(20, "km")
  23471. },
  23472. ]
  23473. ))
  23474. characterMakers.push(() => makeCharacter(
  23475. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23476. {
  23477. front: {
  23478. height: math.unit(1.67, "meters"),
  23479. weight: math.unit(140, "lb"),
  23480. name: "Front",
  23481. image: {
  23482. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23483. extra: 438 / 410,
  23484. bottom: 0.75 / 439
  23485. }
  23486. },
  23487. },
  23488. [
  23489. {
  23490. name: "Shrunken",
  23491. height: math.unit(7.6, "cm")
  23492. },
  23493. {
  23494. name: "Human Scale",
  23495. height: math.unit(1.67, "meters")
  23496. },
  23497. {
  23498. name: "Wolxi Scale",
  23499. height: math.unit(36.7, "meters"),
  23500. default: true
  23501. },
  23502. ]
  23503. ))
  23504. characterMakers.push(() => makeCharacter(
  23505. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23506. {
  23507. front: {
  23508. height: math.unit(1.73, "meters"),
  23509. weight: math.unit(240, "lb"),
  23510. name: "Front",
  23511. image: {
  23512. source: "./media/characters/izue-two-mothers/front.svg",
  23513. extra: 469 / 437,
  23514. bottom: 1.24 / 470.6
  23515. }
  23516. },
  23517. },
  23518. [
  23519. {
  23520. name: "Shrunken",
  23521. height: math.unit(7.86, "cm")
  23522. },
  23523. {
  23524. name: "Human Scale",
  23525. height: math.unit(1.73, "meters")
  23526. },
  23527. {
  23528. name: "Wolxi Scale",
  23529. height: math.unit(38, "meters"),
  23530. default: true
  23531. },
  23532. ]
  23533. ))
  23534. characterMakers.push(() => makeCharacter(
  23535. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23536. {
  23537. front: {
  23538. height: math.unit(1.55, "meters"),
  23539. weight: math.unit(120, "lb"),
  23540. name: "Front",
  23541. image: {
  23542. source: "./media/characters/teeku-love-shack/front.svg",
  23543. extra: 387 / 362,
  23544. bottom: 1.51 / 388
  23545. }
  23546. },
  23547. },
  23548. [
  23549. {
  23550. name: "Shrunken",
  23551. height: math.unit(7, "cm")
  23552. },
  23553. {
  23554. name: "Human Scale",
  23555. height: math.unit(1.55, "meters")
  23556. },
  23557. {
  23558. name: "Wolxi Scale",
  23559. height: math.unit(34.1, "meters"),
  23560. default: true
  23561. },
  23562. ]
  23563. ))
  23564. characterMakers.push(() => makeCharacter(
  23565. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23566. {
  23567. front: {
  23568. height: math.unit(1.83, "meters"),
  23569. weight: math.unit(135, "lb"),
  23570. name: "Front",
  23571. image: {
  23572. source: "./media/characters/dejma-the-red/front.svg",
  23573. extra: 480 / 458,
  23574. bottom: 1.8 / 482
  23575. }
  23576. },
  23577. },
  23578. [
  23579. {
  23580. name: "Shrunken",
  23581. height: math.unit(8.3, "cm")
  23582. },
  23583. {
  23584. name: "Human Scale",
  23585. height: math.unit(1.83, "meters")
  23586. },
  23587. {
  23588. name: "Wolxi Scale",
  23589. height: math.unit(40, "meters"),
  23590. default: true
  23591. },
  23592. ]
  23593. ))
  23594. characterMakers.push(() => makeCharacter(
  23595. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23596. {
  23597. front: {
  23598. height: math.unit(1.78, "meters"),
  23599. weight: math.unit(65, "kg"),
  23600. name: "Front",
  23601. image: {
  23602. source: "./media/characters/aki/front.svg",
  23603. extra: 452 / 415
  23604. }
  23605. },
  23606. frontNsfw: {
  23607. height: math.unit(1.78, "meters"),
  23608. weight: math.unit(65, "kg"),
  23609. name: "Front (NSFW)",
  23610. image: {
  23611. source: "./media/characters/aki/front-nsfw.svg",
  23612. extra: 452 / 415
  23613. }
  23614. },
  23615. back: {
  23616. height: math.unit(1.78, "meters"),
  23617. weight: math.unit(65, "kg"),
  23618. name: "Back",
  23619. image: {
  23620. source: "./media/characters/aki/back.svg",
  23621. extra: 452 / 415
  23622. }
  23623. },
  23624. rump: {
  23625. height: math.unit(2.05, "feet"),
  23626. name: "Rump",
  23627. image: {
  23628. source: "./media/characters/aki/rump.svg"
  23629. }
  23630. },
  23631. dick: {
  23632. height: math.unit(0.95, "feet"),
  23633. name: "Dick",
  23634. image: {
  23635. source: "./media/characters/aki/dick.svg"
  23636. }
  23637. },
  23638. },
  23639. [
  23640. {
  23641. name: "Micro",
  23642. height: math.unit(15, "cm")
  23643. },
  23644. {
  23645. name: "Normal",
  23646. height: math.unit(178, "cm"),
  23647. default: true
  23648. },
  23649. {
  23650. name: "Macro",
  23651. height: math.unit(214, "m")
  23652. },
  23653. {
  23654. name: "Macro+",
  23655. height: math.unit(534, "m")
  23656. },
  23657. ]
  23658. ))
  23659. characterMakers.push(() => makeCharacter(
  23660. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23661. {
  23662. front: {
  23663. height: math.unit(5 + 5 / 12, "feet"),
  23664. weight: math.unit(120, "lb"),
  23665. name: "Front",
  23666. image: {
  23667. source: "./media/characters/ari/front.svg",
  23668. extra: 714.5 / 682,
  23669. bottom: 8 / 722.5
  23670. }
  23671. },
  23672. },
  23673. [
  23674. {
  23675. name: "Normal",
  23676. height: math.unit(5 + 5 / 12, "feet")
  23677. },
  23678. {
  23679. name: "Macro",
  23680. height: math.unit(100, "feet"),
  23681. default: true
  23682. },
  23683. {
  23684. name: "Megamacro",
  23685. height: math.unit(100, "miles")
  23686. },
  23687. {
  23688. name: "Gigamacro",
  23689. height: math.unit(80000, "miles")
  23690. },
  23691. ]
  23692. ))
  23693. characterMakers.push(() => makeCharacter(
  23694. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23695. {
  23696. side: {
  23697. height: math.unit(9, "feet"),
  23698. weight: math.unit(400, "kg"),
  23699. name: "Side",
  23700. image: {
  23701. source: "./media/characters/bolt/side.svg",
  23702. extra: 1126 / 896,
  23703. bottom: 60 / 1187.3,
  23704. }
  23705. },
  23706. },
  23707. [
  23708. {
  23709. name: "Micro",
  23710. height: math.unit(5, "inches")
  23711. },
  23712. {
  23713. name: "Normal",
  23714. height: math.unit(9, "feet"),
  23715. default: true
  23716. },
  23717. {
  23718. name: "Macro",
  23719. height: math.unit(700, "feet")
  23720. },
  23721. {
  23722. name: "Max Size",
  23723. height: math.unit(1.52e22, "yottameters")
  23724. },
  23725. ]
  23726. ))
  23727. characterMakers.push(() => makeCharacter(
  23728. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23729. {
  23730. front: {
  23731. height: math.unit(4.53, "meters"),
  23732. weight: math.unit(3, "tons"),
  23733. name: "Front",
  23734. image: {
  23735. source: "./media/characters/draekon-sylviar/front.svg",
  23736. extra: 1228 / 1068,
  23737. bottom: 41 / 1270
  23738. }
  23739. },
  23740. tail: {
  23741. height: math.unit(1.772, "meter"),
  23742. name: "Tail",
  23743. image: {
  23744. source: "./media/characters/draekon-sylviar/tail.svg"
  23745. }
  23746. },
  23747. head: {
  23748. height: math.unit(1.331, "meter"),
  23749. name: "Head",
  23750. image: {
  23751. source: "./media/characters/draekon-sylviar/head.svg"
  23752. }
  23753. },
  23754. hand: {
  23755. height: math.unit(0.564, "meter"),
  23756. name: "Hand",
  23757. image: {
  23758. source: "./media/characters/draekon-sylviar/hand.svg"
  23759. }
  23760. },
  23761. foot: {
  23762. height: math.unit(0.621, "meter"),
  23763. name: "Foot",
  23764. image: {
  23765. source: "./media/characters/draekon-sylviar/foot.svg",
  23766. bottom: 32 / 324
  23767. }
  23768. },
  23769. dick: {
  23770. height: math.unit(61, "cm"),
  23771. name: "Dick",
  23772. image: {
  23773. source: "./media/characters/draekon-sylviar/dick.svg"
  23774. }
  23775. },
  23776. dickseparated: {
  23777. height: math.unit(61, "cm"),
  23778. name: "Dick-separated",
  23779. image: {
  23780. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23781. }
  23782. },
  23783. },
  23784. [
  23785. {
  23786. name: "Small",
  23787. height: math.unit(4.53 / 2, "meters"),
  23788. default: true
  23789. },
  23790. {
  23791. name: "Normal",
  23792. height: math.unit(4.53, "meters"),
  23793. default: true
  23794. },
  23795. {
  23796. name: "Large",
  23797. height: math.unit(4.53 * 2, "meters"),
  23798. },
  23799. ]
  23800. ))
  23801. characterMakers.push(() => makeCharacter(
  23802. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23803. {
  23804. front: {
  23805. height: math.unit(6 + 2 / 12, "feet"),
  23806. weight: math.unit(180, "lb"),
  23807. name: "Front",
  23808. image: {
  23809. source: "./media/characters/brawler/front.svg",
  23810. extra: 3301 / 3027,
  23811. bottom: 138 / 3439
  23812. }
  23813. },
  23814. },
  23815. [
  23816. {
  23817. name: "Normal",
  23818. height: math.unit(6 + 2 / 12, "feet"),
  23819. default: true
  23820. },
  23821. ]
  23822. ))
  23823. characterMakers.push(() => makeCharacter(
  23824. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23825. {
  23826. front: {
  23827. height: math.unit(11, "feet"),
  23828. weight: math.unit(1000, "lb"),
  23829. name: "Front",
  23830. image: {
  23831. source: "./media/characters/alex/front.svg",
  23832. bottom: 44.5 / 620
  23833. }
  23834. },
  23835. },
  23836. [
  23837. {
  23838. name: "Micro",
  23839. height: math.unit(5, "inches")
  23840. },
  23841. {
  23842. name: "Normal",
  23843. height: math.unit(11, "feet"),
  23844. default: true
  23845. },
  23846. {
  23847. name: "Macro",
  23848. height: math.unit(9.5e9, "feet")
  23849. },
  23850. {
  23851. name: "Max Size",
  23852. height: math.unit(1.4e283, "yottameters")
  23853. },
  23854. ]
  23855. ))
  23856. characterMakers.push(() => makeCharacter(
  23857. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23858. {
  23859. female: {
  23860. height: math.unit(29.9, "m"),
  23861. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23862. name: "Female",
  23863. image: {
  23864. source: "./media/characters/zenari/female.svg",
  23865. extra: 3281.6 / 3217,
  23866. bottom: 72.2 / 3353
  23867. }
  23868. },
  23869. male: {
  23870. height: math.unit(27.7, "m"),
  23871. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23872. name: "Male",
  23873. image: {
  23874. source: "./media/characters/zenari/male.svg",
  23875. extra: 3008 / 2991,
  23876. bottom: 54.6 / 3069
  23877. }
  23878. },
  23879. },
  23880. [
  23881. {
  23882. name: "Macro",
  23883. height: math.unit(29.7, "meters"),
  23884. default: true
  23885. },
  23886. ]
  23887. ))
  23888. characterMakers.push(() => makeCharacter(
  23889. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23890. {
  23891. female: {
  23892. height: math.unit(23.8, "m"),
  23893. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23894. name: "Female",
  23895. image: {
  23896. source: "./media/characters/mactarian/female.svg",
  23897. extra: 2662 / 2569,
  23898. bottom: 73 / 2736
  23899. }
  23900. },
  23901. male: {
  23902. height: math.unit(23.8, "m"),
  23903. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23904. name: "Male",
  23905. image: {
  23906. source: "./media/characters/mactarian/male.svg",
  23907. extra: 2673 / 2600,
  23908. bottom: 76 / 2750
  23909. }
  23910. },
  23911. },
  23912. [
  23913. {
  23914. name: "Macro",
  23915. height: math.unit(23.8, "meters"),
  23916. default: true
  23917. },
  23918. ]
  23919. ))
  23920. characterMakers.push(() => makeCharacter(
  23921. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23922. {
  23923. female: {
  23924. height: math.unit(19.3, "m"),
  23925. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23926. name: "Female",
  23927. image: {
  23928. source: "./media/characters/umok/female.svg",
  23929. extra: 2186 / 2078,
  23930. bottom: 87 / 2277
  23931. }
  23932. },
  23933. male: {
  23934. height: math.unit(19.5, "m"),
  23935. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23936. name: "Male",
  23937. image: {
  23938. source: "./media/characters/umok/male.svg",
  23939. extra: 2233 / 2140,
  23940. bottom: 24.4 / 2258
  23941. }
  23942. },
  23943. },
  23944. [
  23945. {
  23946. name: "Macro",
  23947. height: math.unit(19.3, "meters"),
  23948. default: true
  23949. },
  23950. ]
  23951. ))
  23952. characterMakers.push(() => makeCharacter(
  23953. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23954. {
  23955. female: {
  23956. height: math.unit(26.15, "m"),
  23957. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23958. name: "Female",
  23959. image: {
  23960. source: "./media/characters/joraxian/female.svg",
  23961. extra: 2912 / 2824,
  23962. bottom: 36 / 2956
  23963. }
  23964. },
  23965. male: {
  23966. height: math.unit(25.4, "m"),
  23967. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23968. name: "Male",
  23969. image: {
  23970. source: "./media/characters/joraxian/male.svg",
  23971. extra: 2877 / 2721,
  23972. bottom: 82 / 2967
  23973. }
  23974. },
  23975. },
  23976. [
  23977. {
  23978. name: "Macro",
  23979. height: math.unit(26.15, "meters"),
  23980. default: true
  23981. },
  23982. ]
  23983. ))
  23984. characterMakers.push(() => makeCharacter(
  23985. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23986. {
  23987. female: {
  23988. height: math.unit(21.6, "m"),
  23989. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23990. name: "Female",
  23991. image: {
  23992. source: "./media/characters/sthara/female.svg",
  23993. extra: 2516 / 2347,
  23994. bottom: 21.5 / 2537
  23995. }
  23996. },
  23997. male: {
  23998. height: math.unit(24, "m"),
  23999. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24000. name: "Male",
  24001. image: {
  24002. source: "./media/characters/sthara/male.svg",
  24003. extra: 2732 / 2607,
  24004. bottom: 23 / 2732
  24005. }
  24006. },
  24007. },
  24008. [
  24009. {
  24010. name: "Macro",
  24011. height: math.unit(21.6, "meters"),
  24012. default: true
  24013. },
  24014. ]
  24015. ))
  24016. characterMakers.push(() => makeCharacter(
  24017. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24018. {
  24019. front: {
  24020. height: math.unit(6 + 4 / 12, "feet"),
  24021. weight: math.unit(175, "lb"),
  24022. name: "Front",
  24023. image: {
  24024. source: "./media/characters/luka-bryzant/front.svg",
  24025. extra: 311 / 289,
  24026. bottom: 4 / 315
  24027. }
  24028. },
  24029. back: {
  24030. height: math.unit(6 + 4 / 12, "feet"),
  24031. weight: math.unit(175, "lb"),
  24032. name: "Back",
  24033. image: {
  24034. source: "./media/characters/luka-bryzant/back.svg",
  24035. extra: 311 / 289,
  24036. bottom: 3.8 / 313.7
  24037. }
  24038. },
  24039. },
  24040. [
  24041. {
  24042. name: "Micro",
  24043. height: math.unit(10, "inches")
  24044. },
  24045. {
  24046. name: "Normal",
  24047. height: math.unit(6 + 4 / 12, "feet"),
  24048. default: true
  24049. },
  24050. {
  24051. name: "Large",
  24052. height: math.unit(12, "feet")
  24053. },
  24054. ]
  24055. ))
  24056. characterMakers.push(() => makeCharacter(
  24057. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24058. {
  24059. front: {
  24060. height: math.unit(5 + 7 / 12, "feet"),
  24061. weight: math.unit(185, "lb"),
  24062. name: "Front",
  24063. image: {
  24064. source: "./media/characters/aman-aquila/front.svg",
  24065. extra: 1013 / 976,
  24066. bottom: 45.6 / 1057
  24067. }
  24068. },
  24069. side: {
  24070. height: math.unit(5 + 7 / 12, "feet"),
  24071. weight: math.unit(185, "lb"),
  24072. name: "Side",
  24073. image: {
  24074. source: "./media/characters/aman-aquila/side.svg",
  24075. extra: 1054 / 1011,
  24076. bottom: 15 / 1070
  24077. }
  24078. },
  24079. back: {
  24080. height: math.unit(5 + 7 / 12, "feet"),
  24081. weight: math.unit(185, "lb"),
  24082. name: "Back",
  24083. image: {
  24084. source: "./media/characters/aman-aquila/back.svg",
  24085. extra: 1026 / 970,
  24086. bottom: 12 / 1039
  24087. }
  24088. },
  24089. head: {
  24090. height: math.unit(1.211, "feet"),
  24091. name: "Head",
  24092. image: {
  24093. source: "./media/characters/aman-aquila/head.svg",
  24094. }
  24095. },
  24096. },
  24097. [
  24098. {
  24099. name: "Minimicro",
  24100. height: math.unit(0.057, "inches")
  24101. },
  24102. {
  24103. name: "Micro",
  24104. height: math.unit(7, "inches")
  24105. },
  24106. {
  24107. name: "Mini",
  24108. height: math.unit(3 + 7 / 12, "feet")
  24109. },
  24110. {
  24111. name: "Normal",
  24112. height: math.unit(5 + 7 / 12, "feet"),
  24113. default: true
  24114. },
  24115. {
  24116. name: "Macro",
  24117. height: math.unit(157 + 7 / 12, "feet")
  24118. },
  24119. {
  24120. name: "Megamacro",
  24121. height: math.unit(1557 + 7 / 12, "feet")
  24122. },
  24123. {
  24124. name: "Gigamacro",
  24125. height: math.unit(15557 + 7 / 12, "feet")
  24126. },
  24127. ]
  24128. ))
  24129. characterMakers.push(() => makeCharacter(
  24130. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24131. {
  24132. front: {
  24133. height: math.unit(3 + 2 / 12, "inches"),
  24134. weight: math.unit(0.3, "ounces"),
  24135. name: "Front",
  24136. image: {
  24137. source: "./media/characters/hiphae/front.svg",
  24138. extra: 1931 / 1683,
  24139. bottom: 24 / 1955
  24140. }
  24141. },
  24142. },
  24143. [
  24144. {
  24145. name: "Normal",
  24146. height: math.unit(3 + 1 / 2, "inches"),
  24147. default: true
  24148. },
  24149. ]
  24150. ))
  24151. characterMakers.push(() => makeCharacter(
  24152. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24153. {
  24154. front: {
  24155. height: math.unit(5 + 10 / 12, "feet"),
  24156. weight: math.unit(165, "lb"),
  24157. name: "Front",
  24158. image: {
  24159. source: "./media/characters/nicky/front.svg",
  24160. extra: 3144 / 2886,
  24161. bottom: 45.6 / 3192
  24162. }
  24163. },
  24164. back: {
  24165. height: math.unit(5 + 10 / 12, "feet"),
  24166. weight: math.unit(165, "lb"),
  24167. name: "Back",
  24168. image: {
  24169. source: "./media/characters/nicky/back.svg",
  24170. extra: 3055 / 2804,
  24171. bottom: 28.4 / 3087
  24172. }
  24173. },
  24174. frontclothed: {
  24175. height: math.unit(5 + 10 / 12, "feet"),
  24176. weight: math.unit(165, "lb"),
  24177. name: "Front-clothed",
  24178. image: {
  24179. source: "./media/characters/nicky/front-clothed.svg",
  24180. extra: 3184.9 / 2926.9,
  24181. bottom: 86.5 / 3239.9
  24182. }
  24183. },
  24184. foot: {
  24185. height: math.unit(1.16, "feet"),
  24186. name: "Foot",
  24187. image: {
  24188. source: "./media/characters/nicky/foot.svg"
  24189. }
  24190. },
  24191. feet: {
  24192. height: math.unit(1.34, "feet"),
  24193. name: "Feet",
  24194. image: {
  24195. source: "./media/characters/nicky/feet.svg"
  24196. }
  24197. },
  24198. maw: {
  24199. height: math.unit(0.9, "feet"),
  24200. name: "Maw",
  24201. image: {
  24202. source: "./media/characters/nicky/maw.svg"
  24203. }
  24204. },
  24205. },
  24206. [
  24207. {
  24208. name: "Normal",
  24209. height: math.unit(5 + 10 / 12, "feet"),
  24210. default: true
  24211. },
  24212. {
  24213. name: "Macro",
  24214. height: math.unit(60, "feet")
  24215. },
  24216. {
  24217. name: "Megamacro",
  24218. height: math.unit(1, "mile")
  24219. },
  24220. ]
  24221. ))
  24222. characterMakers.push(() => makeCharacter(
  24223. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24224. {
  24225. side: {
  24226. height: math.unit(10, "feet"),
  24227. weight: math.unit(600, "lb"),
  24228. name: "Side",
  24229. image: {
  24230. source: "./media/characters/blair/side.svg",
  24231. bottom: 16.6 / 475,
  24232. extra: 458 / 431
  24233. }
  24234. },
  24235. },
  24236. [
  24237. {
  24238. name: "Micro",
  24239. height: math.unit(8, "inches")
  24240. },
  24241. {
  24242. name: "Normal",
  24243. height: math.unit(10, "feet"),
  24244. default: true
  24245. },
  24246. {
  24247. name: "Macro",
  24248. height: math.unit(180, "feet")
  24249. },
  24250. ]
  24251. ))
  24252. characterMakers.push(() => makeCharacter(
  24253. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24254. {
  24255. front: {
  24256. height: math.unit(5 + 4 / 12, "feet"),
  24257. weight: math.unit(125, "lb"),
  24258. name: "Front",
  24259. image: {
  24260. source: "./media/characters/fisher/front.svg",
  24261. extra: 444 / 390,
  24262. bottom: 2 / 444.8
  24263. }
  24264. },
  24265. },
  24266. [
  24267. {
  24268. name: "Micro",
  24269. height: math.unit(4, "inches")
  24270. },
  24271. {
  24272. name: "Normal",
  24273. height: math.unit(5 + 4 / 12, "feet"),
  24274. default: true
  24275. },
  24276. {
  24277. name: "Macro",
  24278. height: math.unit(100, "feet")
  24279. },
  24280. ]
  24281. ))
  24282. characterMakers.push(() => makeCharacter(
  24283. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24284. {
  24285. front: {
  24286. height: math.unit(6.71, "feet"),
  24287. weight: math.unit(200, "lb"),
  24288. capacity: math.unit(1000000, "people"),
  24289. name: "Front",
  24290. image: {
  24291. source: "./media/characters/gliss/front.svg",
  24292. extra: 2347 / 2231,
  24293. bottom: 113 / 2462
  24294. }
  24295. },
  24296. hammerspaceSize: {
  24297. height: math.unit(6.71 * 717, "feet"),
  24298. weight: math.unit(200, "lb"),
  24299. capacity: math.unit(1000000, "people"),
  24300. name: "Hammerspace Size",
  24301. image: {
  24302. source: "./media/characters/gliss/front.svg",
  24303. extra: 2347 / 2231,
  24304. bottom: 113 / 2462
  24305. }
  24306. },
  24307. },
  24308. [
  24309. {
  24310. name: "Normal",
  24311. height: math.unit(6.71, "feet"),
  24312. default: true
  24313. },
  24314. ]
  24315. ))
  24316. characterMakers.push(() => makeCharacter(
  24317. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24318. {
  24319. side: {
  24320. height: math.unit(1.44, "m"),
  24321. weight: math.unit(80, "kg"),
  24322. name: "Side",
  24323. image: {
  24324. source: "./media/characters/dune-anderson/side.svg",
  24325. bottom: 49 / 1426
  24326. }
  24327. },
  24328. },
  24329. [
  24330. {
  24331. name: "Wolf-sized",
  24332. height: math.unit(1.44, "meters")
  24333. },
  24334. {
  24335. name: "Normal",
  24336. height: math.unit(5.05, "meters"),
  24337. default: true
  24338. },
  24339. {
  24340. name: "Big",
  24341. height: math.unit(14.4, "meters")
  24342. },
  24343. {
  24344. name: "Huge",
  24345. height: math.unit(144, "meters")
  24346. },
  24347. ]
  24348. ))
  24349. characterMakers.push(() => makeCharacter(
  24350. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24351. {
  24352. front: {
  24353. height: math.unit(7, "feet"),
  24354. weight: math.unit(425, "lb"),
  24355. name: "Front",
  24356. image: {
  24357. source: "./media/characters/hind/front.svg",
  24358. extra: 2091 / 1860,
  24359. bottom: 129 / 2220
  24360. }
  24361. },
  24362. back: {
  24363. height: math.unit(7, "feet"),
  24364. weight: math.unit(425, "lb"),
  24365. name: "Back",
  24366. image: {
  24367. source: "./media/characters/hind/back.svg",
  24368. extra: 2091 / 1860,
  24369. bottom: 24.6 / 2309
  24370. }
  24371. },
  24372. tail: {
  24373. height: math.unit(2.8, "feet"),
  24374. name: "Tail",
  24375. image: {
  24376. source: "./media/characters/hind/tail.svg"
  24377. }
  24378. },
  24379. head: {
  24380. height: math.unit(2.55, "feet"),
  24381. name: "Head",
  24382. image: {
  24383. source: "./media/characters/hind/head.svg"
  24384. }
  24385. },
  24386. },
  24387. [
  24388. {
  24389. name: "XS",
  24390. height: math.unit(0.7, "feet")
  24391. },
  24392. {
  24393. name: "Normal",
  24394. height: math.unit(7, "feet"),
  24395. default: true
  24396. },
  24397. {
  24398. name: "XL",
  24399. height: math.unit(70, "feet")
  24400. },
  24401. ]
  24402. ))
  24403. characterMakers.push(() => makeCharacter(
  24404. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24405. {
  24406. front: {
  24407. height: math.unit(6, "feet"),
  24408. weight: math.unit(150, "lb"),
  24409. name: "Front",
  24410. image: {
  24411. source: "./media/characters/dylan-skaven/front.svg",
  24412. extra: 2318 / 2063,
  24413. bottom: 93.4 / 2410
  24414. }
  24415. },
  24416. },
  24417. [
  24418. {
  24419. name: "Nano",
  24420. height: math.unit(1, "mm")
  24421. },
  24422. {
  24423. name: "Micro",
  24424. height: math.unit(1, "cm")
  24425. },
  24426. {
  24427. name: "Normal",
  24428. height: math.unit(2.1, "meters"),
  24429. default: true
  24430. },
  24431. ]
  24432. ))
  24433. characterMakers.push(() => makeCharacter(
  24434. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24435. {
  24436. front: {
  24437. height: math.unit(7 + 5 / 12, "feet"),
  24438. weight: math.unit(357, "lb"),
  24439. name: "Front",
  24440. image: {
  24441. source: "./media/characters/solex-draconov/front.svg",
  24442. extra: 1993 / 1865,
  24443. bottom: 117 / 2111
  24444. }
  24445. },
  24446. },
  24447. [
  24448. {
  24449. name: "Natural Height",
  24450. height: math.unit(7 + 5 / 12, "feet"),
  24451. default: true
  24452. },
  24453. {
  24454. name: "Macro",
  24455. height: math.unit(350, "feet")
  24456. },
  24457. {
  24458. name: "Macro+",
  24459. height: math.unit(1000, "feet")
  24460. },
  24461. {
  24462. name: "Megamacro",
  24463. height: math.unit(20, "km")
  24464. },
  24465. {
  24466. name: "Megamacro+",
  24467. height: math.unit(1000, "km")
  24468. },
  24469. {
  24470. name: "Gigamacro",
  24471. height: math.unit(2.5, "Gm")
  24472. },
  24473. {
  24474. name: "Teramacro",
  24475. height: math.unit(15, "Tm")
  24476. },
  24477. {
  24478. name: "Galactic",
  24479. height: math.unit(30, "Zm")
  24480. },
  24481. {
  24482. name: "Universal",
  24483. height: math.unit(21000, "Ym")
  24484. },
  24485. {
  24486. name: "Omniversal",
  24487. height: math.unit(9.861e50, "Ym")
  24488. },
  24489. {
  24490. name: "Existential",
  24491. height: math.unit(1e300, "meters")
  24492. },
  24493. ]
  24494. ))
  24495. characterMakers.push(() => makeCharacter(
  24496. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24497. {
  24498. side: {
  24499. height: math.unit(25, "feet"),
  24500. weight: math.unit(90000, "lb"),
  24501. name: "Side",
  24502. image: {
  24503. source: "./media/characters/mandarax/side.svg",
  24504. extra: 614 / 332,
  24505. bottom: 55 / 630
  24506. }
  24507. },
  24508. head: {
  24509. height: math.unit(11.4, "feet"),
  24510. name: "Head",
  24511. image: {
  24512. source: "./media/characters/mandarax/head.svg"
  24513. }
  24514. },
  24515. belly: {
  24516. height: math.unit(33, "feet"),
  24517. name: "Belly",
  24518. capacity: math.unit(500, "people"),
  24519. image: {
  24520. source: "./media/characters/mandarax/belly.svg"
  24521. }
  24522. },
  24523. dick: {
  24524. height: math.unit(8.46, "feet"),
  24525. name: "Dick",
  24526. image: {
  24527. source: "./media/characters/mandarax/dick.svg"
  24528. }
  24529. },
  24530. top: {
  24531. height: math.unit(28, "meters"),
  24532. name: "Top",
  24533. image: {
  24534. source: "./media/characters/mandarax/top.svg"
  24535. }
  24536. },
  24537. },
  24538. [
  24539. {
  24540. name: "Normal",
  24541. height: math.unit(25, "feet"),
  24542. default: true
  24543. },
  24544. ]
  24545. ))
  24546. characterMakers.push(() => makeCharacter(
  24547. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24548. {
  24549. front: {
  24550. height: math.unit(5, "feet"),
  24551. weight: math.unit(90, "lb"),
  24552. name: "Front",
  24553. image: {
  24554. source: "./media/characters/pixil/front.svg",
  24555. extra: 2000 / 1618,
  24556. bottom: 12.3 / 2011
  24557. }
  24558. },
  24559. },
  24560. [
  24561. {
  24562. name: "Normal",
  24563. height: math.unit(5, "feet"),
  24564. default: true
  24565. },
  24566. {
  24567. name: "Megamacro",
  24568. height: math.unit(10, "miles"),
  24569. },
  24570. ]
  24571. ))
  24572. characterMakers.push(() => makeCharacter(
  24573. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24574. {
  24575. front: {
  24576. height: math.unit(7 + 2 / 12, "feet"),
  24577. weight: math.unit(200, "lb"),
  24578. name: "Front",
  24579. image: {
  24580. source: "./media/characters/angel/front.svg",
  24581. extra: 1830 / 1737,
  24582. bottom: 22.6 / 1854,
  24583. }
  24584. },
  24585. },
  24586. [
  24587. {
  24588. name: "Normal",
  24589. height: math.unit(7 + 2 / 12, "feet"),
  24590. default: true
  24591. },
  24592. {
  24593. name: "Macro",
  24594. height: math.unit(1000, "feet")
  24595. },
  24596. {
  24597. name: "Megamacro",
  24598. height: math.unit(2, "miles")
  24599. },
  24600. {
  24601. name: "Gigamacro",
  24602. height: math.unit(20, "earths")
  24603. },
  24604. ]
  24605. ))
  24606. characterMakers.push(() => makeCharacter(
  24607. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24608. {
  24609. front: {
  24610. height: math.unit(5, "feet"),
  24611. weight: math.unit(180, "lb"),
  24612. name: "Front",
  24613. image: {
  24614. source: "./media/characters/mekana/front.svg",
  24615. extra: 1671 / 1605,
  24616. bottom: 3.5 / 1691
  24617. }
  24618. },
  24619. side: {
  24620. height: math.unit(5, "feet"),
  24621. weight: math.unit(180, "lb"),
  24622. name: "Side",
  24623. image: {
  24624. source: "./media/characters/mekana/side.svg",
  24625. extra: 1671 / 1605,
  24626. bottom: 3.5 / 1691
  24627. }
  24628. },
  24629. back: {
  24630. height: math.unit(5, "feet"),
  24631. weight: math.unit(180, "lb"),
  24632. name: "Back",
  24633. image: {
  24634. source: "./media/characters/mekana/back.svg",
  24635. extra: 1671 / 1605,
  24636. bottom: 3.5 / 1691
  24637. }
  24638. },
  24639. },
  24640. [
  24641. {
  24642. name: "Normal",
  24643. height: math.unit(5, "feet"),
  24644. default: true
  24645. },
  24646. ]
  24647. ))
  24648. characterMakers.push(() => makeCharacter(
  24649. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24650. {
  24651. front: {
  24652. height: math.unit(4 + 6 / 12, "feet"),
  24653. weight: math.unit(80, "lb"),
  24654. name: "Front",
  24655. image: {
  24656. source: "./media/characters/pixie/front.svg",
  24657. extra: 1924 / 1825,
  24658. bottom: 22.4 / 1946
  24659. }
  24660. },
  24661. },
  24662. [
  24663. {
  24664. name: "Normal",
  24665. height: math.unit(4 + 6 / 12, "feet"),
  24666. default: true
  24667. },
  24668. {
  24669. name: "Macro",
  24670. height: math.unit(40, "feet")
  24671. },
  24672. ]
  24673. ))
  24674. characterMakers.push(() => makeCharacter(
  24675. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24676. {
  24677. front: {
  24678. height: math.unit(2.1, "meters"),
  24679. weight: math.unit(200, "lb"),
  24680. name: "Front",
  24681. image: {
  24682. source: "./media/characters/the-lascivious/front.svg",
  24683. extra: 1 / 0.893,
  24684. bottom: 3.5 / 573.7
  24685. }
  24686. },
  24687. },
  24688. [
  24689. {
  24690. name: "Human Scale",
  24691. height: math.unit(2.1, "meters")
  24692. },
  24693. {
  24694. name: "Wolxi Scale",
  24695. height: math.unit(46.2, "m"),
  24696. default: true
  24697. },
  24698. {
  24699. name: "Boinker of Buildings",
  24700. height: math.unit(10, "km")
  24701. },
  24702. {
  24703. name: "Shagger of Skyscrapers",
  24704. height: math.unit(40, "km")
  24705. },
  24706. {
  24707. name: "Banger of Boroughs",
  24708. height: math.unit(4000, "km")
  24709. },
  24710. {
  24711. name: "Screwer of States",
  24712. height: math.unit(100000, "km")
  24713. },
  24714. {
  24715. name: "Pounder of Planets",
  24716. height: math.unit(2000000, "km")
  24717. },
  24718. ]
  24719. ))
  24720. characterMakers.push(() => makeCharacter(
  24721. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24722. {
  24723. front: {
  24724. height: math.unit(6, "feet"),
  24725. weight: math.unit(150, "lb"),
  24726. name: "Front",
  24727. image: {
  24728. source: "./media/characters/aj/front.svg",
  24729. extra: 2039 / 1562,
  24730. bottom: 40 / 2079
  24731. }
  24732. },
  24733. },
  24734. [
  24735. {
  24736. name: "Normal",
  24737. height: math.unit(11 + 6 / 12, "feet"),
  24738. default: true
  24739. },
  24740. {
  24741. name: "Megamacro",
  24742. height: math.unit(60, "megameters")
  24743. },
  24744. ]
  24745. ))
  24746. characterMakers.push(() => makeCharacter(
  24747. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24748. {
  24749. side: {
  24750. height: math.unit(31 + 8 / 12, "feet"),
  24751. weight: math.unit(75000, "kg"),
  24752. name: "Side",
  24753. image: {
  24754. source: "./media/characters/koros/side.svg",
  24755. extra: 1442 / 1297,
  24756. bottom: 122.7 / 1562
  24757. }
  24758. },
  24759. dicksKingsCrown: {
  24760. height: math.unit(6, "feet"),
  24761. name: "Dicks (King's Crown)",
  24762. image: {
  24763. source: "./media/characters/koros/dicks-kings-crown.svg"
  24764. }
  24765. },
  24766. dicksTailSet: {
  24767. height: math.unit(3, "feet"),
  24768. name: "Dicks (Tail Set)",
  24769. image: {
  24770. source: "./media/characters/koros/dicks-tail-set.svg"
  24771. }
  24772. },
  24773. dickCumming: {
  24774. height: math.unit(7.98, "feet"),
  24775. name: "Dick (Cumming)",
  24776. image: {
  24777. source: "./media/characters/koros/dick-cumming.svg"
  24778. }
  24779. },
  24780. dicksBack: {
  24781. height: math.unit(5.9, "feet"),
  24782. name: "Dicks (Back)",
  24783. image: {
  24784. source: "./media/characters/koros/dicks-back.svg"
  24785. }
  24786. },
  24787. dicksFront: {
  24788. height: math.unit(3.72, "feet"),
  24789. name: "Dicks (Front)",
  24790. image: {
  24791. source: "./media/characters/koros/dicks-front.svg"
  24792. }
  24793. },
  24794. dicksPeeking: {
  24795. height: math.unit(3.0, "feet"),
  24796. name: "Dicks (Peeking)",
  24797. image: {
  24798. source: "./media/characters/koros/dicks-peeking.svg"
  24799. }
  24800. },
  24801. eye: {
  24802. height: math.unit(1.7, "feet"),
  24803. name: "Eye",
  24804. image: {
  24805. source: "./media/characters/koros/eye.svg"
  24806. }
  24807. },
  24808. headFront: {
  24809. height: math.unit(11.69, "feet"),
  24810. name: "Head (Front)",
  24811. image: {
  24812. source: "./media/characters/koros/head-front.svg"
  24813. }
  24814. },
  24815. headSide: {
  24816. height: math.unit(14, "feet"),
  24817. name: "Head (Side)",
  24818. image: {
  24819. source: "./media/characters/koros/head-side.svg"
  24820. }
  24821. },
  24822. leg: {
  24823. height: math.unit(17, "feet"),
  24824. name: "Leg",
  24825. image: {
  24826. source: "./media/characters/koros/leg.svg"
  24827. }
  24828. },
  24829. mawSide: {
  24830. height: math.unit(12.8, "feet"),
  24831. name: "Maw (Side)",
  24832. image: {
  24833. source: "./media/characters/koros/maw-side.svg"
  24834. }
  24835. },
  24836. mawSpitting: {
  24837. height: math.unit(17, "feet"),
  24838. name: "Maw (Spitting)",
  24839. image: {
  24840. source: "./media/characters/koros/maw-spitting.svg"
  24841. }
  24842. },
  24843. slit: {
  24844. height: math.unit(2.8, "feet"),
  24845. name: "Slit",
  24846. image: {
  24847. source: "./media/characters/koros/slit.svg"
  24848. }
  24849. },
  24850. stomach: {
  24851. height: math.unit(6.8, "feet"),
  24852. capacity: math.unit(20, "people"),
  24853. name: "Stomach",
  24854. image: {
  24855. source: "./media/characters/koros/stomach.svg"
  24856. }
  24857. },
  24858. wingspanBottom: {
  24859. height: math.unit(114, "feet"),
  24860. name: "Wingspan (Bottom)",
  24861. image: {
  24862. source: "./media/characters/koros/wingspan-bottom.svg"
  24863. }
  24864. },
  24865. wingspanTop: {
  24866. height: math.unit(104, "feet"),
  24867. name: "Wingspan (Top)",
  24868. image: {
  24869. source: "./media/characters/koros/wingspan-top.svg"
  24870. }
  24871. },
  24872. },
  24873. [
  24874. {
  24875. name: "Normal",
  24876. height: math.unit(31 + 8 / 12, "feet"),
  24877. default: true
  24878. },
  24879. ]
  24880. ))
  24881. characterMakers.push(() => makeCharacter(
  24882. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24883. {
  24884. front: {
  24885. height: math.unit(18 + 5 / 12, "feet"),
  24886. weight: math.unit(3750, "kg"),
  24887. name: "Front",
  24888. image: {
  24889. source: "./media/characters/vexx/front.svg",
  24890. extra: 426 / 396,
  24891. bottom: 31.5 / 458
  24892. }
  24893. },
  24894. maw: {
  24895. height: math.unit(6, "feet"),
  24896. name: "Maw",
  24897. image: {
  24898. source: "./media/characters/vexx/maw.svg"
  24899. }
  24900. },
  24901. },
  24902. [
  24903. {
  24904. name: "Normal",
  24905. height: math.unit(18 + 5 / 12, "feet"),
  24906. default: true
  24907. },
  24908. ]
  24909. ))
  24910. characterMakers.push(() => makeCharacter(
  24911. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24912. {
  24913. front: {
  24914. height: math.unit(17 + 6 / 12, "feet"),
  24915. weight: math.unit(150, "lb"),
  24916. name: "Front",
  24917. image: {
  24918. source: "./media/characters/baadra/front.svg",
  24919. extra: 3137 / 2890,
  24920. bottom: 168.4 / 3305
  24921. }
  24922. },
  24923. back: {
  24924. height: math.unit(17 + 6 / 12, "feet"),
  24925. weight: math.unit(150, "lb"),
  24926. name: "Back",
  24927. image: {
  24928. source: "./media/characters/baadra/back.svg",
  24929. extra: 3142 / 2890,
  24930. bottom: 220 / 3371
  24931. }
  24932. },
  24933. head: {
  24934. height: math.unit(5.45, "feet"),
  24935. name: "Head",
  24936. image: {
  24937. source: "./media/characters/baadra/head.svg"
  24938. }
  24939. },
  24940. headAngry: {
  24941. height: math.unit(4.95, "feet"),
  24942. name: "Head (Angry)",
  24943. image: {
  24944. source: "./media/characters/baadra/head-angry.svg"
  24945. }
  24946. },
  24947. headOpen: {
  24948. height: math.unit(6, "feet"),
  24949. name: "Head (Open)",
  24950. image: {
  24951. source: "./media/characters/baadra/head-open.svg"
  24952. }
  24953. },
  24954. },
  24955. [
  24956. {
  24957. name: "Normal",
  24958. height: math.unit(17 + 6 / 12, "feet"),
  24959. default: true
  24960. },
  24961. ]
  24962. ))
  24963. characterMakers.push(() => makeCharacter(
  24964. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24965. {
  24966. front: {
  24967. height: math.unit(7 + 3 / 12, "feet"),
  24968. weight: math.unit(180, "lb"),
  24969. name: "Front",
  24970. image: {
  24971. source: "./media/characters/juri/front.svg",
  24972. extra: 1401 / 1237,
  24973. bottom: 18.5 / 1418
  24974. }
  24975. },
  24976. side: {
  24977. height: math.unit(7 + 3 / 12, "feet"),
  24978. weight: math.unit(180, "lb"),
  24979. name: "Side",
  24980. image: {
  24981. source: "./media/characters/juri/side.svg",
  24982. extra: 1424 / 1242,
  24983. bottom: 18.5 / 1447
  24984. }
  24985. },
  24986. sitting: {
  24987. height: math.unit(6, "feet"),
  24988. weight: math.unit(180, "lb"),
  24989. name: "Sitting",
  24990. image: {
  24991. source: "./media/characters/juri/sitting.svg",
  24992. extra: 1270 / 1143,
  24993. bottom: 100 / 1343
  24994. }
  24995. },
  24996. back: {
  24997. height: math.unit(7 + 3 / 12, "feet"),
  24998. weight: math.unit(180, "lb"),
  24999. name: "Back",
  25000. image: {
  25001. source: "./media/characters/juri/back.svg",
  25002. extra: 1377 / 1240,
  25003. bottom: 23.7 / 1405
  25004. }
  25005. },
  25006. maw: {
  25007. height: math.unit(2.8, "feet"),
  25008. name: "Maw",
  25009. image: {
  25010. source: "./media/characters/juri/maw.svg"
  25011. }
  25012. },
  25013. stomach: {
  25014. height: math.unit(0.89, "feet"),
  25015. capacity: math.unit(4, "liters"),
  25016. name: "Stomach",
  25017. image: {
  25018. source: "./media/characters/juri/stomach.svg"
  25019. }
  25020. },
  25021. },
  25022. [
  25023. {
  25024. name: "Normal",
  25025. height: math.unit(7 + 3 / 12, "feet"),
  25026. default: true
  25027. },
  25028. ]
  25029. ))
  25030. characterMakers.push(() => makeCharacter(
  25031. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25032. {
  25033. fox: {
  25034. height: math.unit(5 + 6 / 12, "feet"),
  25035. weight: math.unit(140, "lb"),
  25036. name: "Fox",
  25037. image: {
  25038. source: "./media/characters/maxene-sita/fox.svg",
  25039. extra: 146 / 138,
  25040. bottom: 2.1 / 148.19
  25041. }
  25042. },
  25043. foxLaying: {
  25044. height: math.unit(1.70, "feet"),
  25045. weight: math.unit(140, "lb"),
  25046. name: "Fox (Laying)",
  25047. image: {
  25048. source: "./media/characters/maxene-sita/fox-laying.svg",
  25049. extra: 910 / 572,
  25050. bottom: 71 / 981
  25051. }
  25052. },
  25053. kitsune: {
  25054. height: math.unit(10, "feet"),
  25055. weight: math.unit(800, "lb"),
  25056. name: "Kitsune",
  25057. image: {
  25058. source: "./media/characters/maxene-sita/kitsune.svg",
  25059. extra: 185 / 176,
  25060. bottom: 4.7 / 189.9
  25061. }
  25062. },
  25063. hellhound: {
  25064. height: math.unit(10, "feet"),
  25065. weight: math.unit(700, "lb"),
  25066. name: "Hellhound",
  25067. image: {
  25068. source: "./media/characters/maxene-sita/hellhound.svg",
  25069. extra: 1600 / 1545,
  25070. bottom: 81 / 1681
  25071. }
  25072. },
  25073. },
  25074. [
  25075. {
  25076. name: "Normal",
  25077. height: math.unit(5 + 6 / 12, "feet"),
  25078. default: true
  25079. },
  25080. ]
  25081. ))
  25082. characterMakers.push(() => makeCharacter(
  25083. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25084. {
  25085. front: {
  25086. height: math.unit(3 + 4 / 12, "feet"),
  25087. weight: math.unit(70, "lb"),
  25088. name: "Front",
  25089. image: {
  25090. source: "./media/characters/maia/front.svg",
  25091. extra: 227 / 219.5,
  25092. bottom: 40 / 267
  25093. }
  25094. },
  25095. back: {
  25096. height: math.unit(3 + 4 / 12, "feet"),
  25097. weight: math.unit(70, "lb"),
  25098. name: "Back",
  25099. image: {
  25100. source: "./media/characters/maia/back.svg",
  25101. extra: 237 / 225
  25102. }
  25103. },
  25104. },
  25105. [
  25106. {
  25107. name: "Normal",
  25108. height: math.unit(3 + 4 / 12, "feet"),
  25109. default: true
  25110. },
  25111. ]
  25112. ))
  25113. characterMakers.push(() => makeCharacter(
  25114. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25115. {
  25116. front: {
  25117. height: math.unit(5 + 10 / 12, "feet"),
  25118. weight: math.unit(197, "lb"),
  25119. name: "Front",
  25120. image: {
  25121. source: "./media/characters/jabaro/front.svg",
  25122. extra: 225 / 216,
  25123. bottom: 5.06 / 230
  25124. }
  25125. },
  25126. back: {
  25127. height: math.unit(5 + 10 / 12, "feet"),
  25128. weight: math.unit(197, "lb"),
  25129. name: "Back",
  25130. image: {
  25131. source: "./media/characters/jabaro/back.svg",
  25132. extra: 225 / 219,
  25133. bottom: 1.9 / 227
  25134. }
  25135. },
  25136. },
  25137. [
  25138. {
  25139. name: "Normal",
  25140. height: math.unit(5 + 10 / 12, "feet"),
  25141. default: true
  25142. },
  25143. ]
  25144. ))
  25145. characterMakers.push(() => makeCharacter(
  25146. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25147. {
  25148. front: {
  25149. height: math.unit(5 + 8 / 12, "feet"),
  25150. weight: math.unit(139, "lb"),
  25151. name: "Front",
  25152. image: {
  25153. source: "./media/characters/risa/front.svg",
  25154. extra: 270 / 260,
  25155. bottom: 11.2 / 282
  25156. }
  25157. },
  25158. back: {
  25159. height: math.unit(5 + 8 / 12, "feet"),
  25160. weight: math.unit(139, "lb"),
  25161. name: "Back",
  25162. image: {
  25163. source: "./media/characters/risa/back.svg",
  25164. extra: 264 / 255,
  25165. bottom: 4 / 268
  25166. }
  25167. },
  25168. },
  25169. [
  25170. {
  25171. name: "Normal",
  25172. height: math.unit(5 + 8 / 12, "feet"),
  25173. default: true
  25174. },
  25175. ]
  25176. ))
  25177. characterMakers.push(() => makeCharacter(
  25178. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25179. {
  25180. front: {
  25181. height: math.unit(2 + 11 / 12, "feet"),
  25182. weight: math.unit(30, "lb"),
  25183. name: "Front",
  25184. image: {
  25185. source: "./media/characters/weatley/front.svg",
  25186. bottom: 10.7 / 414,
  25187. extra: 403.5 / 362
  25188. }
  25189. },
  25190. back: {
  25191. height: math.unit(2 + 11 / 12, "feet"),
  25192. weight: math.unit(30, "lb"),
  25193. name: "Back",
  25194. image: {
  25195. source: "./media/characters/weatley/back.svg",
  25196. bottom: 10.7 / 414,
  25197. extra: 403.5 / 362
  25198. }
  25199. },
  25200. },
  25201. [
  25202. {
  25203. name: "Normal",
  25204. height: math.unit(2 + 11 / 12, "feet"),
  25205. default: true
  25206. },
  25207. ]
  25208. ))
  25209. characterMakers.push(() => makeCharacter(
  25210. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25211. {
  25212. front: {
  25213. height: math.unit(5 + 2 / 12, "feet"),
  25214. weight: math.unit(50, "kg"),
  25215. name: "Front",
  25216. image: {
  25217. source: "./media/characters/mercury-crescent/front.svg",
  25218. extra: 1088 / 1033,
  25219. bottom: 18.9 / 1109
  25220. }
  25221. },
  25222. },
  25223. [
  25224. {
  25225. name: "Normal",
  25226. height: math.unit(5 + 2 / 12, "feet"),
  25227. default: true
  25228. },
  25229. ]
  25230. ))
  25231. characterMakers.push(() => makeCharacter(
  25232. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25233. {
  25234. front: {
  25235. height: math.unit(2, "feet"),
  25236. weight: math.unit(15, "kg"),
  25237. name: "Front",
  25238. image: {
  25239. source: "./media/characters/diamond-jones/front.svg",
  25240. bottom: 16 / 568
  25241. }
  25242. },
  25243. },
  25244. [
  25245. {
  25246. name: "Normal",
  25247. height: math.unit(2, "feet"),
  25248. default: true
  25249. },
  25250. ]
  25251. ))
  25252. characterMakers.push(() => makeCharacter(
  25253. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25254. {
  25255. front: {
  25256. height: math.unit(3, "feet"),
  25257. weight: math.unit(30, "kg"),
  25258. name: "Front",
  25259. image: {
  25260. source: "./media/characters/sweet-bit/front.svg",
  25261. extra: 675 / 567,
  25262. bottom: 27.7 / 703
  25263. }
  25264. },
  25265. },
  25266. [
  25267. {
  25268. name: "Normal",
  25269. height: math.unit(3, "feet"),
  25270. default: true
  25271. },
  25272. ]
  25273. ))
  25274. characterMakers.push(() => makeCharacter(
  25275. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25276. {
  25277. side: {
  25278. height: math.unit(9.178, "feet"),
  25279. weight: math.unit(500, "lb"),
  25280. name: "Side",
  25281. image: {
  25282. source: "./media/characters/umbrazen/side.svg",
  25283. extra: 1730 / 1473,
  25284. bottom: 34.6 / 1765
  25285. }
  25286. },
  25287. },
  25288. [
  25289. {
  25290. name: "Normal",
  25291. height: math.unit(9.178, "feet"),
  25292. default: true
  25293. },
  25294. ]
  25295. ))
  25296. characterMakers.push(() => makeCharacter(
  25297. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25298. {
  25299. front: {
  25300. height: math.unit(10, "feet"),
  25301. weight: math.unit(750, "lb"),
  25302. name: "Front",
  25303. image: {
  25304. source: "./media/characters/arlist/front.svg",
  25305. extra: 961 / 778,
  25306. bottom: 6.2 / 986
  25307. }
  25308. },
  25309. },
  25310. [
  25311. {
  25312. name: "Normal",
  25313. height: math.unit(10, "feet"),
  25314. default: true
  25315. },
  25316. ]
  25317. ))
  25318. characterMakers.push(() => makeCharacter(
  25319. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25320. {
  25321. front: {
  25322. height: math.unit(5 + 1 / 12, "feet"),
  25323. weight: math.unit(110, "lb"),
  25324. name: "Front",
  25325. image: {
  25326. source: "./media/characters/aradel/front.svg",
  25327. extra: 324 / 303,
  25328. bottom: 3.6 / 329.4
  25329. }
  25330. },
  25331. },
  25332. [
  25333. {
  25334. name: "Normal",
  25335. height: math.unit(5 + 1 / 12, "feet"),
  25336. default: true
  25337. },
  25338. ]
  25339. ))
  25340. characterMakers.push(() => makeCharacter(
  25341. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25342. {
  25343. front: {
  25344. height: math.unit(3 + 8 / 12, "feet"),
  25345. weight: math.unit(50, "lb"),
  25346. name: "Front",
  25347. image: {
  25348. source: "./media/characters/serryn/front.svg",
  25349. extra: 1792 / 1656,
  25350. bottom: 43.5 / 1840
  25351. }
  25352. },
  25353. },
  25354. [
  25355. {
  25356. name: "Normal",
  25357. height: math.unit(3 + 8 / 12, "feet"),
  25358. default: true
  25359. },
  25360. ]
  25361. ))
  25362. characterMakers.push(() => makeCharacter(
  25363. { name: "Xavier Thyme" },
  25364. {
  25365. front: {
  25366. height: math.unit(7 + 10 / 12, "feet"),
  25367. weight: math.unit(255, "lb"),
  25368. name: "Front",
  25369. image: {
  25370. source: "./media/characters/xavier-thyme/front.svg",
  25371. extra: 3733 / 3642,
  25372. bottom: 131 / 3869
  25373. }
  25374. },
  25375. frontRaven: {
  25376. height: math.unit(7 + 10 / 12, "feet"),
  25377. weight: math.unit(255, "lb"),
  25378. name: "Front (Raven)",
  25379. image: {
  25380. source: "./media/characters/xavier-thyme/front-raven.svg",
  25381. extra: 4385 / 3642,
  25382. bottom: 131 / 4517
  25383. }
  25384. },
  25385. },
  25386. [
  25387. {
  25388. name: "Normal",
  25389. height: math.unit(7 + 10 / 12, "feet"),
  25390. default: true
  25391. },
  25392. ]
  25393. ))
  25394. characterMakers.push(() => makeCharacter(
  25395. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25396. {
  25397. front: {
  25398. height: math.unit(1.6, "m"),
  25399. weight: math.unit(50, "kg"),
  25400. name: "Front",
  25401. image: {
  25402. source: "./media/characters/kiki/front.svg",
  25403. extra: 4682 / 3610,
  25404. bottom: 115 / 4777
  25405. }
  25406. },
  25407. },
  25408. [
  25409. {
  25410. name: "Normal",
  25411. height: math.unit(1.6, "meters"),
  25412. default: true
  25413. },
  25414. ]
  25415. ))
  25416. characterMakers.push(() => makeCharacter(
  25417. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25418. {
  25419. front: {
  25420. height: math.unit(50, "m"),
  25421. weight: math.unit(500, "tonnes"),
  25422. name: "Front",
  25423. image: {
  25424. source: "./media/characters/ryoko/front.svg",
  25425. extra: 4632 / 3926,
  25426. bottom: 193 / 4823
  25427. }
  25428. },
  25429. },
  25430. [
  25431. {
  25432. name: "Normal",
  25433. height: math.unit(50, "meters"),
  25434. default: true
  25435. },
  25436. ]
  25437. ))
  25438. characterMakers.push(() => makeCharacter(
  25439. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25440. {
  25441. front: {
  25442. height: math.unit(30, "m"),
  25443. weight: math.unit(22, "tonnes"),
  25444. name: "Front",
  25445. image: {
  25446. source: "./media/characters/elio/front.svg",
  25447. extra: 4582 / 3720,
  25448. bottom: 236 / 4828
  25449. }
  25450. },
  25451. },
  25452. [
  25453. {
  25454. name: "Normal",
  25455. height: math.unit(30, "meters"),
  25456. default: true
  25457. },
  25458. ]
  25459. ))
  25460. characterMakers.push(() => makeCharacter(
  25461. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25462. {
  25463. front: {
  25464. height: math.unit(6 + 3 / 12, "feet"),
  25465. weight: math.unit(120, "lb"),
  25466. name: "Front",
  25467. image: {
  25468. source: "./media/characters/azura/front.svg",
  25469. extra: 1149 / 1135,
  25470. bottom: 45 / 1194
  25471. }
  25472. },
  25473. frontClothed: {
  25474. height: math.unit(6 + 3 / 12, "feet"),
  25475. weight: math.unit(120, "lb"),
  25476. name: "Front (Clothed)",
  25477. image: {
  25478. source: "./media/characters/azura/front-clothed.svg",
  25479. extra: 1149 / 1135,
  25480. bottom: 45 / 1194
  25481. }
  25482. },
  25483. },
  25484. [
  25485. {
  25486. name: "Normal",
  25487. height: math.unit(6 + 3 / 12, "feet"),
  25488. default: true
  25489. },
  25490. {
  25491. name: "Macro",
  25492. height: math.unit(20 + 6 / 12, "feet")
  25493. },
  25494. {
  25495. name: "Megamacro",
  25496. height: math.unit(12, "miles")
  25497. },
  25498. {
  25499. name: "Gigamacro",
  25500. height: math.unit(10000, "miles")
  25501. },
  25502. {
  25503. name: "Teramacro",
  25504. height: math.unit(900000, "miles")
  25505. },
  25506. ]
  25507. ))
  25508. characterMakers.push(() => makeCharacter(
  25509. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25510. {
  25511. front: {
  25512. height: math.unit(12, "feet"),
  25513. weight: math.unit(1, "ton"),
  25514. capacity: math.unit(660000, "gallons"),
  25515. name: "Front",
  25516. image: {
  25517. source: "./media/characters/zeus/front.svg",
  25518. extra: 5005 / 4717,
  25519. bottom: 363 / 5388
  25520. }
  25521. },
  25522. },
  25523. [
  25524. {
  25525. name: "Normal",
  25526. height: math.unit(12, "feet")
  25527. },
  25528. {
  25529. name: "Preferred Size",
  25530. height: math.unit(0.5, "miles"),
  25531. default: true
  25532. },
  25533. {
  25534. name: "Giga Horse",
  25535. height: math.unit(300, "miles")
  25536. },
  25537. {
  25538. name: "Riding Planets",
  25539. height: math.unit(30, "megameters")
  25540. },
  25541. {
  25542. name: "Cosmic Giant",
  25543. height: math.unit(3, "zettameters")
  25544. },
  25545. {
  25546. name: "Breeding God",
  25547. height: math.unit(9.92e22, "yottameters")
  25548. },
  25549. ]
  25550. ))
  25551. characterMakers.push(() => makeCharacter(
  25552. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25553. {
  25554. side: {
  25555. height: math.unit(9, "feet"),
  25556. weight: math.unit(1500, "kg"),
  25557. name: "Side",
  25558. image: {
  25559. source: "./media/characters/fang/side.svg",
  25560. extra: 924 / 866,
  25561. bottom: 47.5 / 972.3
  25562. }
  25563. },
  25564. },
  25565. [
  25566. {
  25567. name: "Normal",
  25568. height: math.unit(9, "feet"),
  25569. default: true
  25570. },
  25571. {
  25572. name: "Macro",
  25573. height: math.unit(75 + 6 / 12, "feet")
  25574. },
  25575. {
  25576. name: "Teramacro",
  25577. height: math.unit(50000, "miles")
  25578. },
  25579. ]
  25580. ))
  25581. characterMakers.push(() => makeCharacter(
  25582. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25583. {
  25584. front: {
  25585. height: math.unit(10, "feet"),
  25586. weight: math.unit(2, "tons"),
  25587. name: "Front",
  25588. image: {
  25589. source: "./media/characters/rekhit/front.svg",
  25590. extra: 2796 / 2590,
  25591. bottom: 225 / 3022
  25592. }
  25593. },
  25594. },
  25595. [
  25596. {
  25597. name: "Normal",
  25598. height: math.unit(10, "feet"),
  25599. default: true
  25600. },
  25601. {
  25602. name: "Macro",
  25603. height: math.unit(500, "feet")
  25604. },
  25605. ]
  25606. ))
  25607. characterMakers.push(() => makeCharacter(
  25608. { name: "Dahlia Verrick" },
  25609. {
  25610. front: {
  25611. height: math.unit(7 + 6.451 / 12, "feet"),
  25612. weight: math.unit(310, "lb"),
  25613. name: "Front",
  25614. image: {
  25615. source: "./media/characters/dahlia-verrick/front.svg",
  25616. extra: 1488 / 1365,
  25617. bottom: 6.2 / 1495
  25618. }
  25619. },
  25620. back: {
  25621. height: math.unit(7 + 6.451 / 12, "feet"),
  25622. weight: math.unit(310, "lb"),
  25623. name: "Back",
  25624. image: {
  25625. source: "./media/characters/dahlia-verrick/back.svg",
  25626. extra: 1472 / 1351,
  25627. bottom: 5.28 / 1477
  25628. }
  25629. },
  25630. frontBusiness: {
  25631. height: math.unit(7 + 6.451 / 12, "feet"),
  25632. weight: math.unit(200, "lb"),
  25633. name: "Front (Business)",
  25634. image: {
  25635. source: "./media/characters/dahlia-verrick/front-business.svg",
  25636. extra: 1478 / 1381,
  25637. bottom: 5.5 / 1484
  25638. }
  25639. },
  25640. frontCasual: {
  25641. height: math.unit(7 + 6.451 / 12, "feet"),
  25642. weight: math.unit(200, "lb"),
  25643. name: "Front (Casual)",
  25644. image: {
  25645. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25646. extra: 1478 / 1381,
  25647. bottom: 5.5 / 1484
  25648. }
  25649. },
  25650. },
  25651. [
  25652. {
  25653. name: "Travel-Sized",
  25654. height: math.unit(7.45, "inches")
  25655. },
  25656. {
  25657. name: "Normal",
  25658. height: math.unit(7 + 6.451 / 12, "feet"),
  25659. default: true
  25660. },
  25661. {
  25662. name: "Hitting the Town",
  25663. height: math.unit(37 + 8 / 12, "feet")
  25664. },
  25665. {
  25666. name: "Stomp in the Suburbs",
  25667. height: math.unit(964 + 9.728 / 12, "feet")
  25668. },
  25669. {
  25670. name: "Sit on the City",
  25671. height: math.unit(61747 + 10.592 / 12, "feet")
  25672. },
  25673. {
  25674. name: "Glomp the Globe",
  25675. height: math.unit(252919327 + 4.832 / 12, "feet")
  25676. },
  25677. ]
  25678. ))
  25679. characterMakers.push(() => makeCharacter(
  25680. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25681. {
  25682. front: {
  25683. height: math.unit(6 + 4 / 12, "feet"),
  25684. weight: math.unit(320, "lb"),
  25685. name: "Front",
  25686. image: {
  25687. source: "./media/characters/balina-mahigan/front.svg",
  25688. extra: 447 / 428,
  25689. bottom: 18 / 466
  25690. }
  25691. },
  25692. back: {
  25693. height: math.unit(6 + 4 / 12, "feet"),
  25694. weight: math.unit(320, "lb"),
  25695. name: "Back",
  25696. image: {
  25697. source: "./media/characters/balina-mahigan/back.svg",
  25698. extra: 445 / 428,
  25699. bottom: 4.07 / 448
  25700. }
  25701. },
  25702. arm: {
  25703. height: math.unit(1.88, "feet"),
  25704. name: "Arm",
  25705. image: {
  25706. source: "./media/characters/balina-mahigan/arm.svg"
  25707. }
  25708. },
  25709. backPort: {
  25710. height: math.unit(0.685, "feet"),
  25711. name: "Back Port",
  25712. image: {
  25713. source: "./media/characters/balina-mahigan/back-port.svg"
  25714. }
  25715. },
  25716. hoofpaw: {
  25717. height: math.unit(1.41, "feet"),
  25718. name: "Hoofpaw",
  25719. image: {
  25720. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25721. }
  25722. },
  25723. leftHandBack: {
  25724. height: math.unit(0.938, "feet"),
  25725. name: "Left Hand (Back)",
  25726. image: {
  25727. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25728. }
  25729. },
  25730. leftHandFront: {
  25731. height: math.unit(0.938, "feet"),
  25732. name: "Left Hand (Front)",
  25733. image: {
  25734. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25735. }
  25736. },
  25737. rightHandBack: {
  25738. height: math.unit(0.95, "feet"),
  25739. name: "Right Hand (Back)",
  25740. image: {
  25741. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25742. }
  25743. },
  25744. rightHandFront: {
  25745. height: math.unit(0.95, "feet"),
  25746. name: "Right Hand (Front)",
  25747. image: {
  25748. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25749. }
  25750. },
  25751. },
  25752. [
  25753. {
  25754. name: "Normal",
  25755. height: math.unit(6 + 4 / 12, "feet"),
  25756. default: true
  25757. },
  25758. ]
  25759. ))
  25760. characterMakers.push(() => makeCharacter(
  25761. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25762. {
  25763. front: {
  25764. height: math.unit(6, "feet"),
  25765. weight: math.unit(320, "lb"),
  25766. name: "Front",
  25767. image: {
  25768. source: "./media/characters/balina-mejeri/front.svg",
  25769. extra: 517 / 488,
  25770. bottom: 44.2 / 561
  25771. }
  25772. },
  25773. },
  25774. [
  25775. {
  25776. name: "Normal",
  25777. height: math.unit(6 + 4 / 12, "feet")
  25778. },
  25779. {
  25780. name: "Business",
  25781. height: math.unit(155, "feet"),
  25782. default: true
  25783. },
  25784. ]
  25785. ))
  25786. characterMakers.push(() => makeCharacter(
  25787. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25788. {
  25789. kneeling: {
  25790. height: math.unit(6 + 4 / 12, "feet"),
  25791. weight: math.unit(300 * 20, "lb"),
  25792. name: "Kneeling",
  25793. image: {
  25794. source: "./media/characters/balbarian/kneeling.svg",
  25795. extra: 922 / 862,
  25796. bottom: 42.4 / 965
  25797. }
  25798. },
  25799. },
  25800. [
  25801. {
  25802. name: "Normal",
  25803. height: math.unit(6 + 4 / 12, "feet")
  25804. },
  25805. {
  25806. name: "Treasured",
  25807. height: math.unit(18 + 9 / 12, "feet"),
  25808. default: true
  25809. },
  25810. {
  25811. name: "Macro",
  25812. height: math.unit(900, "feet")
  25813. },
  25814. ]
  25815. ))
  25816. characterMakers.push(() => makeCharacter(
  25817. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25818. {
  25819. front: {
  25820. height: math.unit(6 + 4 / 12, "feet"),
  25821. weight: math.unit(325, "lb"),
  25822. name: "Front",
  25823. image: {
  25824. source: "./media/characters/balina-amarini/front.svg",
  25825. extra: 415 / 403,
  25826. bottom: 19 / 433.4
  25827. }
  25828. },
  25829. back: {
  25830. height: math.unit(6 + 4 / 12, "feet"),
  25831. weight: math.unit(325, "lb"),
  25832. name: "Back",
  25833. image: {
  25834. source: "./media/characters/balina-amarini/back.svg",
  25835. extra: 415 / 403,
  25836. bottom: 13.5 / 432
  25837. }
  25838. },
  25839. overdrive: {
  25840. height: math.unit(6 + 4 / 12, "feet"),
  25841. weight: math.unit(400, "lb"),
  25842. name: "Overdrive",
  25843. image: {
  25844. source: "./media/characters/balina-amarini/overdrive.svg",
  25845. extra: 269 / 259,
  25846. bottom: 12 / 282
  25847. }
  25848. },
  25849. },
  25850. [
  25851. {
  25852. name: "Boom",
  25853. height: math.unit(9 + 10 / 12, "feet"),
  25854. default: true
  25855. },
  25856. {
  25857. name: "Macro",
  25858. height: math.unit(280, "feet")
  25859. },
  25860. ]
  25861. ))
  25862. characterMakers.push(() => makeCharacter(
  25863. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25864. {
  25865. goddess: {
  25866. height: math.unit(600, "feet"),
  25867. weight: math.unit(2000000, "tons"),
  25868. name: "Goddess",
  25869. image: {
  25870. source: "./media/characters/lady-kubwa/goddess.svg",
  25871. extra: 1240.5 / 1223,
  25872. bottom: 22 / 1263
  25873. }
  25874. },
  25875. goddesser: {
  25876. height: math.unit(900, "feet"),
  25877. weight: math.unit(20000000, "lb"),
  25878. name: "Goddess-er",
  25879. image: {
  25880. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25881. extra: 899 / 888,
  25882. bottom: 12.6 / 912
  25883. }
  25884. },
  25885. },
  25886. [
  25887. {
  25888. name: "Macro",
  25889. height: math.unit(600, "feet"),
  25890. default: true
  25891. },
  25892. {
  25893. name: "Megamacro",
  25894. height: math.unit(250, "miles")
  25895. },
  25896. ]
  25897. ))
  25898. characterMakers.push(() => makeCharacter(
  25899. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25900. {
  25901. front: {
  25902. height: math.unit(7 + 7 / 12, "feet"),
  25903. weight: math.unit(250, "lb"),
  25904. name: "Front",
  25905. image: {
  25906. source: "./media/characters/tala-grovehorn/front.svg",
  25907. extra: 2636 / 2525,
  25908. bottom: 147 / 2781
  25909. }
  25910. },
  25911. back: {
  25912. height: math.unit(7 + 7 / 12, "feet"),
  25913. weight: math.unit(250, "lb"),
  25914. name: "Back",
  25915. image: {
  25916. source: "./media/characters/tala-grovehorn/back.svg",
  25917. extra: 2635 / 2539,
  25918. bottom: 100 / 2732.8
  25919. }
  25920. },
  25921. mouth: {
  25922. height: math.unit(1.15, "feet"),
  25923. name: "Mouth",
  25924. image: {
  25925. source: "./media/characters/tala-grovehorn/mouth.svg"
  25926. }
  25927. },
  25928. dick: {
  25929. height: math.unit(2.36, "feet"),
  25930. name: "Dick",
  25931. image: {
  25932. source: "./media/characters/tala-grovehorn/dick.svg"
  25933. }
  25934. },
  25935. slit: {
  25936. height: math.unit(0.61, "feet"),
  25937. name: "Slit",
  25938. image: {
  25939. source: "./media/characters/tala-grovehorn/slit.svg"
  25940. }
  25941. },
  25942. },
  25943. [
  25944. ]
  25945. ))
  25946. characterMakers.push(() => makeCharacter(
  25947. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25948. {
  25949. front: {
  25950. height: math.unit(7 + 7 / 12, "feet"),
  25951. weight: math.unit(225, "lb"),
  25952. name: "Front",
  25953. image: {
  25954. source: "./media/characters/epona/front.svg",
  25955. extra: 2445 / 2290,
  25956. bottom: 251 / 2696
  25957. }
  25958. },
  25959. back: {
  25960. height: math.unit(7 + 7 / 12, "feet"),
  25961. weight: math.unit(225, "lb"),
  25962. name: "Back",
  25963. image: {
  25964. source: "./media/characters/epona/back.svg",
  25965. extra: 2546 / 2408,
  25966. bottom: 44 / 2589
  25967. }
  25968. },
  25969. genitals: {
  25970. height: math.unit(1.5, "feet"),
  25971. name: "Genitals",
  25972. image: {
  25973. source: "./media/characters/epona/genitals.svg"
  25974. }
  25975. },
  25976. },
  25977. [
  25978. {
  25979. name: "Normal",
  25980. height: math.unit(7 + 7 / 12, "feet"),
  25981. default: true
  25982. },
  25983. ]
  25984. ))
  25985. characterMakers.push(() => makeCharacter(
  25986. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25987. {
  25988. front: {
  25989. height: math.unit(7, "feet"),
  25990. weight: math.unit(518, "lb"),
  25991. name: "Front",
  25992. image: {
  25993. source: "./media/characters/avia-bloodbourn/front.svg",
  25994. extra: 1466 / 1350,
  25995. bottom: 65 / 1527
  25996. }
  25997. },
  25998. },
  25999. [
  26000. ]
  26001. ))
  26002. characterMakers.push(() => makeCharacter(
  26003. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26004. {
  26005. front: {
  26006. height: math.unit(9.35, "feet"),
  26007. weight: math.unit(600, "lb"),
  26008. name: "Front",
  26009. image: {
  26010. source: "./media/characters/amera/front.svg",
  26011. extra: 891 / 818,
  26012. bottom: 30 / 922.7
  26013. }
  26014. },
  26015. back: {
  26016. height: math.unit(9.35, "feet"),
  26017. weight: math.unit(600, "lb"),
  26018. name: "Back",
  26019. image: {
  26020. source: "./media/characters/amera/back.svg",
  26021. extra: 876 / 824,
  26022. bottom: 6.8 / 884
  26023. }
  26024. },
  26025. dick: {
  26026. height: math.unit(2.14, "feet"),
  26027. name: "Dick",
  26028. image: {
  26029. source: "./media/characters/amera/dick.svg"
  26030. }
  26031. },
  26032. },
  26033. [
  26034. {
  26035. name: "Normal",
  26036. height: math.unit(9.35, "feet"),
  26037. default: true
  26038. },
  26039. ]
  26040. ))
  26041. characterMakers.push(() => makeCharacter(
  26042. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26043. {
  26044. kneeling: {
  26045. height: math.unit(3 + 4 / 12, "feet"),
  26046. weight: math.unit(90, "lb"),
  26047. name: "Kneeling",
  26048. image: {
  26049. source: "./media/characters/rosewen/kneeling.svg",
  26050. extra: 1835 / 1571,
  26051. bottom: 27.7 / 1862
  26052. }
  26053. },
  26054. },
  26055. [
  26056. {
  26057. name: "Normal",
  26058. height: math.unit(3 + 4 / 12, "feet"),
  26059. default: true
  26060. },
  26061. ]
  26062. ))
  26063. characterMakers.push(() => makeCharacter(
  26064. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26065. {
  26066. front: {
  26067. height: math.unit(5 + 10 / 12, "feet"),
  26068. weight: math.unit(200, "lb"),
  26069. name: "Front",
  26070. image: {
  26071. source: "./media/characters/sabah/front.svg",
  26072. extra: 849 / 763,
  26073. bottom: 33.9 / 881
  26074. }
  26075. },
  26076. },
  26077. [
  26078. {
  26079. name: "Normal",
  26080. height: math.unit(5 + 10 / 12, "feet"),
  26081. default: true
  26082. },
  26083. ]
  26084. ))
  26085. characterMakers.push(() => makeCharacter(
  26086. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26087. {
  26088. front: {
  26089. height: math.unit(3 + 5 / 12, "feet"),
  26090. weight: math.unit(40, "kg"),
  26091. name: "Front",
  26092. image: {
  26093. source: "./media/characters/purple-flame/front.svg",
  26094. extra: 1577 / 1412,
  26095. bottom: 97 / 1694
  26096. }
  26097. },
  26098. frontDressed: {
  26099. height: math.unit(3 + 5 / 12, "feet"),
  26100. weight: math.unit(40, "kg"),
  26101. name: "Front (Dressed)",
  26102. image: {
  26103. source: "./media/characters/purple-flame/front-dressed.svg",
  26104. extra: 1577 / 1412,
  26105. bottom: 97 / 1694
  26106. }
  26107. },
  26108. headphones: {
  26109. height: math.unit(0.85, "feet"),
  26110. name: "Headphones",
  26111. image: {
  26112. source: "./media/characters/purple-flame/headphones.svg"
  26113. }
  26114. },
  26115. },
  26116. [
  26117. {
  26118. name: "Really Small",
  26119. height: math.unit(5, "cm")
  26120. },
  26121. {
  26122. name: "Micro",
  26123. height: math.unit(1 + 5 / 12, "feet")
  26124. },
  26125. {
  26126. name: "Normal",
  26127. height: math.unit(3 + 5 / 12, "feet"),
  26128. default: true
  26129. },
  26130. {
  26131. name: "Minimacro",
  26132. height: math.unit(125, "feet")
  26133. },
  26134. {
  26135. name: "Macro",
  26136. height: math.unit(0.5, "miles")
  26137. },
  26138. {
  26139. name: "Megamacro",
  26140. height: math.unit(50, "miles")
  26141. },
  26142. {
  26143. name: "Gigantic",
  26144. height: math.unit(750, "miles")
  26145. },
  26146. {
  26147. name: "Planetary",
  26148. height: math.unit(15000, "miles")
  26149. },
  26150. ]
  26151. ))
  26152. characterMakers.push(() => makeCharacter(
  26153. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26154. {
  26155. front: {
  26156. height: math.unit(14, "feet"),
  26157. weight: math.unit(959, "lb"),
  26158. name: "Front",
  26159. image: {
  26160. source: "./media/characters/arsenal/front.svg",
  26161. extra: 2357 / 2157,
  26162. bottom: 93 / 2458
  26163. }
  26164. },
  26165. },
  26166. [
  26167. {
  26168. name: "Normal",
  26169. height: math.unit(14, "feet"),
  26170. default: true
  26171. },
  26172. ]
  26173. ))
  26174. characterMakers.push(() => makeCharacter(
  26175. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26176. {
  26177. front: {
  26178. height: math.unit(6, "feet"),
  26179. weight: math.unit(150, "lb"),
  26180. name: "Front",
  26181. image: {
  26182. source: "./media/characters/adira/front.svg",
  26183. extra: 1078 / 1029,
  26184. bottom: 87 / 1166
  26185. }
  26186. },
  26187. },
  26188. [
  26189. {
  26190. name: "Micro",
  26191. height: math.unit(4, "inches"),
  26192. default: true
  26193. },
  26194. {
  26195. name: "Macro",
  26196. height: math.unit(50, "feet")
  26197. },
  26198. ]
  26199. ))
  26200. characterMakers.push(() => makeCharacter(
  26201. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26202. {
  26203. front: {
  26204. height: math.unit(16, "feet"),
  26205. weight: math.unit(1000, "lb"),
  26206. name: "Front",
  26207. image: {
  26208. source: "./media/characters/grim/front.svg",
  26209. extra: 622 / 614,
  26210. bottom: 18.1 / 642
  26211. }
  26212. },
  26213. back: {
  26214. height: math.unit(16, "feet"),
  26215. weight: math.unit(1000, "lb"),
  26216. name: "Back",
  26217. image: {
  26218. source: "./media/characters/grim/back.svg",
  26219. extra: 610.6 / 602,
  26220. bottom: 40.8 / 652
  26221. }
  26222. },
  26223. hunched: {
  26224. height: math.unit(9.75, "feet"),
  26225. weight: math.unit(1000, "lb"),
  26226. name: "Hunched",
  26227. image: {
  26228. source: "./media/characters/grim/hunched.svg",
  26229. extra: 304 / 297,
  26230. bottom: 35.4 / 394
  26231. }
  26232. },
  26233. },
  26234. [
  26235. {
  26236. name: "Normal",
  26237. height: math.unit(16, "feet"),
  26238. default: true
  26239. },
  26240. ]
  26241. ))
  26242. characterMakers.push(() => makeCharacter(
  26243. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26244. {
  26245. front: {
  26246. height: math.unit(2.3, "meters"),
  26247. weight: math.unit(300, "lb"),
  26248. name: "Front",
  26249. image: {
  26250. source: "./media/characters/sinja/front-sfw.svg",
  26251. extra: 1393 / 1294,
  26252. bottom: 70 / 1463
  26253. }
  26254. },
  26255. frontNsfw: {
  26256. height: math.unit(2.3, "meters"),
  26257. weight: math.unit(300, "lb"),
  26258. name: "Front (NSFW)",
  26259. image: {
  26260. source: "./media/characters/sinja/front-nsfw.svg",
  26261. extra: 1393 / 1294,
  26262. bottom: 70 / 1463
  26263. }
  26264. },
  26265. back: {
  26266. height: math.unit(2.3, "meters"),
  26267. weight: math.unit(300, "lb"),
  26268. name: "Back",
  26269. image: {
  26270. source: "./media/characters/sinja/back.svg",
  26271. extra: 1393 / 1294,
  26272. bottom: 70 / 1463
  26273. }
  26274. },
  26275. head: {
  26276. height: math.unit(1.771, "feet"),
  26277. name: "Head",
  26278. image: {
  26279. source: "./media/characters/sinja/head.svg"
  26280. }
  26281. },
  26282. slit: {
  26283. height: math.unit(0.8, "feet"),
  26284. name: "Slit",
  26285. image: {
  26286. source: "./media/characters/sinja/slit.svg"
  26287. }
  26288. },
  26289. },
  26290. [
  26291. {
  26292. name: "Normal",
  26293. height: math.unit(2.3, "meters")
  26294. },
  26295. {
  26296. name: "Macro",
  26297. height: math.unit(91, "meters"),
  26298. default: true
  26299. },
  26300. {
  26301. name: "Megamacro",
  26302. height: math.unit(91440, "meters")
  26303. },
  26304. {
  26305. name: "Gigamacro",
  26306. height: math.unit(60960000, "meters")
  26307. },
  26308. {
  26309. name: "Teramacro",
  26310. height: math.unit(9144000000, "meters")
  26311. },
  26312. ]
  26313. ))
  26314. characterMakers.push(() => makeCharacter(
  26315. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26316. {
  26317. front: {
  26318. height: math.unit(1.7, "meters"),
  26319. weight: math.unit(130, "lb"),
  26320. name: "Front",
  26321. image: {
  26322. source: "./media/characters/kyu/front.svg",
  26323. extra: 415 / 395,
  26324. bottom: 5 / 420
  26325. }
  26326. },
  26327. head: {
  26328. height: math.unit(1.75, "feet"),
  26329. name: "Head",
  26330. image: {
  26331. source: "./media/characters/kyu/head.svg"
  26332. }
  26333. },
  26334. foot: {
  26335. height: math.unit(0.81, "feet"),
  26336. name: "Foot",
  26337. image: {
  26338. source: "./media/characters/kyu/foot.svg"
  26339. }
  26340. },
  26341. },
  26342. [
  26343. {
  26344. name: "Normal",
  26345. height: math.unit(1.7, "meters")
  26346. },
  26347. {
  26348. name: "Macro",
  26349. height: math.unit(131, "feet"),
  26350. default: true
  26351. },
  26352. {
  26353. name: "Megamacro",
  26354. height: math.unit(91440, "meters")
  26355. },
  26356. {
  26357. name: "Gigamacro",
  26358. height: math.unit(60960000, "meters")
  26359. },
  26360. {
  26361. name: "Teramacro",
  26362. height: math.unit(9144000000, "meters")
  26363. },
  26364. ]
  26365. ))
  26366. characterMakers.push(() => makeCharacter(
  26367. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26368. {
  26369. front: {
  26370. height: math.unit(7 + 1 / 12, "feet"),
  26371. weight: math.unit(250, "lb"),
  26372. name: "Front",
  26373. image: {
  26374. source: "./media/characters/joey/front.svg",
  26375. extra: 1791 / 1537,
  26376. bottom: 28 / 1816
  26377. }
  26378. },
  26379. },
  26380. [
  26381. {
  26382. name: "Micro",
  26383. height: math.unit(3, "inches")
  26384. },
  26385. {
  26386. name: "Normal",
  26387. height: math.unit(7 + 1 / 12, "feet"),
  26388. default: true
  26389. },
  26390. ]
  26391. ))
  26392. characterMakers.push(() => makeCharacter(
  26393. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26394. {
  26395. front: {
  26396. height: math.unit(165, "cm"),
  26397. weight: math.unit(140, "lb"),
  26398. name: "Front",
  26399. image: {
  26400. source: "./media/characters/sam-evans/front.svg",
  26401. extra: 3417 / 3230,
  26402. bottom: 41.3 / 3417
  26403. }
  26404. },
  26405. frontSixTails: {
  26406. height: math.unit(165, "cm"),
  26407. weight: math.unit(140, "lb"),
  26408. name: "Front-six-tails",
  26409. image: {
  26410. source: "./media/characters/sam-evans/front-six-tails.svg",
  26411. extra: 3417 / 3230,
  26412. bottom: 41.3 / 3417
  26413. }
  26414. },
  26415. back: {
  26416. height: math.unit(165, "cm"),
  26417. weight: math.unit(140, "lb"),
  26418. name: "Back",
  26419. image: {
  26420. source: "./media/characters/sam-evans/back.svg",
  26421. extra: 3227 / 3032,
  26422. bottom: 6.8 / 3234
  26423. }
  26424. },
  26425. face: {
  26426. height: math.unit(0.68, "feet"),
  26427. name: "Face",
  26428. image: {
  26429. source: "./media/characters/sam-evans/face.svg"
  26430. }
  26431. },
  26432. },
  26433. [
  26434. {
  26435. name: "Normal",
  26436. height: math.unit(165, "cm"),
  26437. default: true
  26438. },
  26439. {
  26440. name: "Macro",
  26441. height: math.unit(100, "meters")
  26442. },
  26443. {
  26444. name: "Macro+",
  26445. height: math.unit(800, "meters")
  26446. },
  26447. {
  26448. name: "Macro++",
  26449. height: math.unit(3, "km")
  26450. },
  26451. {
  26452. name: "Macro+++",
  26453. height: math.unit(30, "km")
  26454. },
  26455. ]
  26456. ))
  26457. characterMakers.push(() => makeCharacter(
  26458. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26459. {
  26460. front: {
  26461. height: math.unit(10, "feet"),
  26462. weight: math.unit(750, "lb"),
  26463. name: "Front",
  26464. image: {
  26465. source: "./media/characters/juliet-a/front.svg",
  26466. extra: 1766 / 1720,
  26467. bottom: 43 / 1809
  26468. }
  26469. },
  26470. back: {
  26471. height: math.unit(10, "feet"),
  26472. weight: math.unit(750, "lb"),
  26473. name: "Back",
  26474. image: {
  26475. source: "./media/characters/juliet-a/back.svg",
  26476. extra: 1781 / 1734,
  26477. bottom: 35 / 1810,
  26478. }
  26479. },
  26480. },
  26481. [
  26482. {
  26483. name: "Normal",
  26484. height: math.unit(10, "feet"),
  26485. default: true
  26486. },
  26487. {
  26488. name: "Dragon Form",
  26489. height: math.unit(250, "feet")
  26490. },
  26491. {
  26492. name: "Macro",
  26493. height: math.unit(1000, "feet")
  26494. },
  26495. {
  26496. name: "Megamacro",
  26497. height: math.unit(10000, "feet")
  26498. }
  26499. ]
  26500. ))
  26501. characterMakers.push(() => makeCharacter(
  26502. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26503. {
  26504. regular: {
  26505. height: math.unit(7 + 3 / 12, "feet"),
  26506. weight: math.unit(260, "lb"),
  26507. name: "Regular",
  26508. image: {
  26509. source: "./media/characters/wild/regular.svg",
  26510. extra: 97.45 / 92,
  26511. bottom: 6.8 / 104.3
  26512. }
  26513. },
  26514. biggums: {
  26515. height: math.unit(8 + 6 / 12, "feet"),
  26516. weight: math.unit(425, "lb"),
  26517. name: "Biggums",
  26518. image: {
  26519. source: "./media/characters/wild/biggums.svg",
  26520. extra: 97.45 / 92,
  26521. bottom: 7.5 / 132.34
  26522. }
  26523. },
  26524. mawRegular: {
  26525. height: math.unit(1.24, "feet"),
  26526. name: "Maw (Regular)",
  26527. image: {
  26528. source: "./media/characters/wild/maw.svg"
  26529. }
  26530. },
  26531. mawBiggums: {
  26532. height: math.unit(1.47, "feet"),
  26533. name: "Maw (Biggums)",
  26534. image: {
  26535. source: "./media/characters/wild/maw.svg"
  26536. }
  26537. },
  26538. },
  26539. [
  26540. {
  26541. name: "Normal",
  26542. height: math.unit(7 + 3 / 12, "feet"),
  26543. default: true
  26544. },
  26545. ]
  26546. ))
  26547. characterMakers.push(() => makeCharacter(
  26548. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26549. {
  26550. front: {
  26551. height: math.unit(2.5, "meters"),
  26552. weight: math.unit(200, "kg"),
  26553. name: "Front",
  26554. image: {
  26555. source: "./media/characters/vidar/front.svg",
  26556. extra: 2994 / 2795,
  26557. bottom: 56 / 3061
  26558. }
  26559. },
  26560. back: {
  26561. height: math.unit(2.5, "meters"),
  26562. weight: math.unit(200, "kg"),
  26563. name: "Back",
  26564. image: {
  26565. source: "./media/characters/vidar/back.svg",
  26566. extra: 3131 / 2928,
  26567. bottom: 13.5 / 3141.5
  26568. }
  26569. },
  26570. feral: {
  26571. height: math.unit(2.5, "meters"),
  26572. weight: math.unit(2000, "kg"),
  26573. name: "Feral",
  26574. image: {
  26575. source: "./media/characters/vidar/feral.svg",
  26576. extra: 2790 / 1765,
  26577. bottom: 6 / 2796
  26578. }
  26579. },
  26580. },
  26581. [
  26582. {
  26583. name: "Normal",
  26584. height: math.unit(2.5, "meters"),
  26585. default: true
  26586. },
  26587. {
  26588. name: "Macro",
  26589. height: math.unit(100, "meters")
  26590. },
  26591. ]
  26592. ))
  26593. characterMakers.push(() => makeCharacter(
  26594. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26595. {
  26596. front: {
  26597. height: math.unit(5 + 9 / 12, "feet"),
  26598. weight: math.unit(120, "lb"),
  26599. name: "Front",
  26600. image: {
  26601. source: "./media/characters/ash/front.svg",
  26602. extra: 2189 / 1961,
  26603. bottom: 5.2 / 2194
  26604. }
  26605. },
  26606. },
  26607. [
  26608. {
  26609. name: "Normal",
  26610. height: math.unit(5 + 9 / 12, "feet"),
  26611. default: true
  26612. },
  26613. ]
  26614. ))
  26615. characterMakers.push(() => makeCharacter(
  26616. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26617. {
  26618. front: {
  26619. height: math.unit(9, "feet"),
  26620. weight: math.unit(10000, "lb"),
  26621. name: "Front",
  26622. image: {
  26623. source: "./media/characters/gygabite/front.svg",
  26624. bottom: 31.7 / 537.8,
  26625. extra: 505 / 370
  26626. }
  26627. },
  26628. },
  26629. [
  26630. {
  26631. name: "Normal",
  26632. height: math.unit(9, "feet"),
  26633. default: true
  26634. },
  26635. ]
  26636. ))
  26637. characterMakers.push(() => makeCharacter(
  26638. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26639. {
  26640. front: {
  26641. height: math.unit(12, "feet"),
  26642. weight: math.unit(35000, "lb"),
  26643. name: "Front",
  26644. image: {
  26645. source: "./media/characters/p0tat0/front.svg",
  26646. extra: 1065 / 921,
  26647. bottom: 55.7 / 1121.25
  26648. }
  26649. },
  26650. },
  26651. [
  26652. {
  26653. name: "Normal",
  26654. height: math.unit(12, "feet"),
  26655. default: true
  26656. },
  26657. ]
  26658. ))
  26659. characterMakers.push(() => makeCharacter(
  26660. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26661. {
  26662. side: {
  26663. height: math.unit(6.5, "feet"),
  26664. weight: math.unit(800, "lb"),
  26665. name: "Side",
  26666. image: {
  26667. source: "./media/characters/dusk/side.svg",
  26668. extra: 615 / 373,
  26669. bottom: 53 / 664
  26670. }
  26671. },
  26672. sitting: {
  26673. height: math.unit(7, "feet"),
  26674. weight: math.unit(800, "lb"),
  26675. name: "Sitting",
  26676. image: {
  26677. source: "./media/characters/dusk/sitting.svg",
  26678. extra: 753 / 425,
  26679. bottom: 33 / 774
  26680. }
  26681. },
  26682. head: {
  26683. height: math.unit(6.1, "feet"),
  26684. name: "Head",
  26685. image: {
  26686. source: "./media/characters/dusk/head.svg"
  26687. }
  26688. },
  26689. },
  26690. [
  26691. {
  26692. name: "Normal",
  26693. height: math.unit(7, "feet"),
  26694. default: true
  26695. },
  26696. ]
  26697. ))
  26698. characterMakers.push(() => makeCharacter(
  26699. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26700. {
  26701. front: {
  26702. height: math.unit(15, "feet"),
  26703. weight: math.unit(7000, "lb"),
  26704. name: "Front",
  26705. image: {
  26706. source: "./media/characters/jay-direwolf/front.svg",
  26707. extra: 1810 / 1732,
  26708. bottom: 66 / 1892
  26709. }
  26710. },
  26711. },
  26712. [
  26713. {
  26714. name: "Normal",
  26715. height: math.unit(15, "feet"),
  26716. default: true
  26717. },
  26718. ]
  26719. ))
  26720. characterMakers.push(() => makeCharacter(
  26721. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26722. {
  26723. front: {
  26724. height: math.unit(4 + 9 / 12, "feet"),
  26725. weight: math.unit(130, "lb"),
  26726. name: "Front",
  26727. image: {
  26728. source: "./media/characters/anchovie/front.svg",
  26729. extra: 382 / 350,
  26730. bottom: 25 / 409
  26731. }
  26732. },
  26733. back: {
  26734. height: math.unit(4 + 9 / 12, "feet"),
  26735. weight: math.unit(130, "lb"),
  26736. name: "Back",
  26737. image: {
  26738. source: "./media/characters/anchovie/back.svg",
  26739. extra: 385 / 352,
  26740. bottom: 16.6 / 402
  26741. }
  26742. },
  26743. frontDressed: {
  26744. height: math.unit(4 + 9 / 12, "feet"),
  26745. weight: math.unit(130, "lb"),
  26746. name: "Front (Dressed)",
  26747. image: {
  26748. source: "./media/characters/anchovie/front-dressed.svg",
  26749. extra: 382 / 350,
  26750. bottom: 25 / 409
  26751. }
  26752. },
  26753. backDressed: {
  26754. height: math.unit(4 + 9 / 12, "feet"),
  26755. weight: math.unit(130, "lb"),
  26756. name: "Back (Dressed)",
  26757. image: {
  26758. source: "./media/characters/anchovie/back-dressed.svg",
  26759. extra: 385 / 352,
  26760. bottom: 16.6 / 402
  26761. }
  26762. },
  26763. },
  26764. [
  26765. {
  26766. name: "Micro",
  26767. height: math.unit(6.4, "inches")
  26768. },
  26769. {
  26770. name: "Normal",
  26771. height: math.unit(4 + 9 / 12, "feet"),
  26772. default: true
  26773. },
  26774. ]
  26775. ))
  26776. characterMakers.push(() => makeCharacter(
  26777. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26778. {
  26779. front: {
  26780. height: math.unit(2, "meters"),
  26781. weight: math.unit(180, "lb"),
  26782. name: "Front",
  26783. image: {
  26784. source: "./media/characters/acidrenamon/front.svg",
  26785. extra: 987 / 890,
  26786. bottom: 22.8 / 1009
  26787. }
  26788. },
  26789. back: {
  26790. height: math.unit(2, "meters"),
  26791. weight: math.unit(180, "lb"),
  26792. name: "Back",
  26793. image: {
  26794. source: "./media/characters/acidrenamon/back.svg",
  26795. extra: 983 / 891,
  26796. bottom: 8.4 / 992
  26797. }
  26798. },
  26799. head: {
  26800. height: math.unit(1.92, "feet"),
  26801. name: "Head",
  26802. image: {
  26803. source: "./media/characters/acidrenamon/head.svg"
  26804. }
  26805. },
  26806. rump: {
  26807. height: math.unit(1.72, "feet"),
  26808. name: "Rump",
  26809. image: {
  26810. source: "./media/characters/acidrenamon/rump.svg"
  26811. }
  26812. },
  26813. tail: {
  26814. height: math.unit(4.2, "feet"),
  26815. name: "Tail",
  26816. image: {
  26817. source: "./media/characters/acidrenamon/tail.svg"
  26818. }
  26819. },
  26820. },
  26821. [
  26822. {
  26823. name: "Normal",
  26824. height: math.unit(2, "meters"),
  26825. default: true
  26826. },
  26827. {
  26828. name: "Minimacro",
  26829. height: math.unit(7, "meters")
  26830. },
  26831. {
  26832. name: "Macro",
  26833. height: math.unit(200, "meters")
  26834. },
  26835. {
  26836. name: "Gigamacro",
  26837. height: math.unit(0.2, "earths")
  26838. },
  26839. ]
  26840. ))
  26841. characterMakers.push(() => makeCharacter(
  26842. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26843. {
  26844. front: {
  26845. height: math.unit(6, "feet"),
  26846. weight: math.unit(150, "lb"),
  26847. name: "Front",
  26848. image: {
  26849. source: "./media/characters/kenzie-lee/front.svg",
  26850. extra: 1525 / 1465,
  26851. bottom: 45 / 1570
  26852. }
  26853. },
  26854. side: {
  26855. height: math.unit(6, "feet"),
  26856. weight: math.unit(150, "lb"),
  26857. name: "Side",
  26858. image: {
  26859. source: "./media/characters/kenzie-lee/side.svg",
  26860. extra: 5505 / 5383,
  26861. bottom: 60 / 5573
  26862. }
  26863. },
  26864. paw: {
  26865. height: math.unit(0.57, "feet"),
  26866. name: "Paw",
  26867. image: {
  26868. source: "./media/characters/kenzie-lee/paw.svg"
  26869. }
  26870. },
  26871. },
  26872. [
  26873. {
  26874. name: "Normal",
  26875. height: math.unit(152, "feet"),
  26876. default: true
  26877. },
  26878. {
  26879. name: "Megamacro",
  26880. height: math.unit(7, "miles")
  26881. },
  26882. {
  26883. name: "Gigamacro",
  26884. height: math.unit(8000, "miles")
  26885. },
  26886. ]
  26887. ))
  26888. characterMakers.push(() => makeCharacter(
  26889. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26890. {
  26891. side: {
  26892. height: math.unit(6, "feet"),
  26893. weight: math.unit(150, "lb"),
  26894. name: "Side",
  26895. image: {
  26896. source: "./media/characters/withers/side.svg",
  26897. extra: 1830 / 1728,
  26898. bottom: 96 / 1927
  26899. }
  26900. },
  26901. front: {
  26902. height: math.unit(6, "feet"),
  26903. weight: math.unit(150, "lb"),
  26904. name: "Front",
  26905. image: {
  26906. source: "./media/characters/withers/front.svg",
  26907. extra: 1514 / 1438,
  26908. bottom: 118 / 1632
  26909. }
  26910. },
  26911. },
  26912. [
  26913. {
  26914. name: "Macro",
  26915. height: math.unit(168, "feet"),
  26916. default: true
  26917. },
  26918. {
  26919. name: "Megamacro",
  26920. height: math.unit(15, "miles")
  26921. }
  26922. ]
  26923. ))
  26924. characterMakers.push(() => makeCharacter(
  26925. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26926. {
  26927. front: {
  26928. height: math.unit(6 + 7 / 12, "feet"),
  26929. weight: math.unit(250, "lb"),
  26930. name: "Front",
  26931. image: {
  26932. source: "./media/characters/nemoskii/front.svg",
  26933. extra: 2270 / 1734,
  26934. bottom: 86 / 2354
  26935. }
  26936. },
  26937. back: {
  26938. height: math.unit(6 + 7 / 12, "feet"),
  26939. weight: math.unit(250, "lb"),
  26940. name: "Back",
  26941. image: {
  26942. source: "./media/characters/nemoskii/back.svg",
  26943. extra: 1845 / 1788,
  26944. bottom: 10.5 / 1852
  26945. }
  26946. },
  26947. head: {
  26948. height: math.unit(1.31, "feet"),
  26949. name: "Head",
  26950. image: {
  26951. source: "./media/characters/nemoskii/head.svg"
  26952. }
  26953. },
  26954. },
  26955. [
  26956. {
  26957. name: "Micro",
  26958. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  26959. },
  26960. {
  26961. name: "Normal",
  26962. height: math.unit(6 + 7 / 12, "feet"),
  26963. default: true
  26964. },
  26965. {
  26966. name: "Macro",
  26967. height: math.unit((6 + 7 / 12) * 150, "feet")
  26968. },
  26969. {
  26970. name: "Macro+",
  26971. height: math.unit((6 + 7 / 12) * 500, "feet")
  26972. },
  26973. {
  26974. name: "Megamacro",
  26975. height: math.unit((6 + 7 / 12) * 100000, "feet")
  26976. },
  26977. ]
  26978. ))
  26979. characterMakers.push(() => makeCharacter(
  26980. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26981. {
  26982. front: {
  26983. height: math.unit(1, "mile"),
  26984. weight: math.unit(265261.9, "lb"),
  26985. name: "Front",
  26986. image: {
  26987. source: "./media/characters/shui/front.svg",
  26988. extra: 1633 / 1564,
  26989. bottom: 91.5 / 1726
  26990. }
  26991. },
  26992. },
  26993. [
  26994. {
  26995. name: "Macro",
  26996. height: math.unit(1, "mile"),
  26997. default: true
  26998. },
  26999. ]
  27000. ))
  27001. characterMakers.push(() => makeCharacter(
  27002. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27003. {
  27004. front: {
  27005. height: math.unit(12 + 6 / 12, "feet"),
  27006. weight: math.unit(1342, "lb"),
  27007. name: "Front",
  27008. image: {
  27009. source: "./media/characters/arokh-takakura/front.svg",
  27010. extra: 1089 / 1043,
  27011. bottom: 77.4 / 1176.7
  27012. }
  27013. },
  27014. back: {
  27015. height: math.unit(12 + 6 / 12, "feet"),
  27016. weight: math.unit(1342, "lb"),
  27017. name: "Back",
  27018. image: {
  27019. source: "./media/characters/arokh-takakura/back.svg",
  27020. extra: 1046 / 1019,
  27021. bottom: 102 / 1150
  27022. }
  27023. },
  27024. },
  27025. [
  27026. {
  27027. name: "Big",
  27028. height: math.unit(12 + 6 / 12, "feet"),
  27029. default: true
  27030. },
  27031. ]
  27032. ))
  27033. characterMakers.push(() => makeCharacter(
  27034. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27035. {
  27036. front: {
  27037. height: math.unit(5 + 6 / 12, "feet"),
  27038. weight: math.unit(150, "lb"),
  27039. name: "Front",
  27040. image: {
  27041. source: "./media/characters/theo/front.svg",
  27042. extra: 1184 / 1131,
  27043. bottom: 7.4 / 1191
  27044. }
  27045. },
  27046. },
  27047. [
  27048. {
  27049. name: "Micro",
  27050. height: math.unit(5, "inches")
  27051. },
  27052. {
  27053. name: "Normal",
  27054. height: math.unit(5 + 6 / 12, "feet"),
  27055. default: true
  27056. },
  27057. ]
  27058. ))
  27059. characterMakers.push(() => makeCharacter(
  27060. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27061. {
  27062. front: {
  27063. height: math.unit(5 + 9 / 12, "feet"),
  27064. weight: math.unit(130, "lb"),
  27065. name: "Front",
  27066. image: {
  27067. source: "./media/characters/cecelia-swift/front.svg",
  27068. extra: 502 / 484,
  27069. bottom: 23 / 523
  27070. }
  27071. },
  27072. back: {
  27073. height: math.unit(5 + 9 / 12, "feet"),
  27074. weight: math.unit(130, "lb"),
  27075. name: "Back",
  27076. image: {
  27077. source: "./media/characters/cecelia-swift/back.svg",
  27078. extra: 499 / 485,
  27079. bottom: 12 / 511
  27080. }
  27081. },
  27082. head: {
  27083. height: math.unit(0.90, "feet"),
  27084. name: "Head",
  27085. image: {
  27086. source: "./media/characters/cecelia-swift/head.svg"
  27087. }
  27088. },
  27089. rump: {
  27090. height: math.unit(1.75, "feet"),
  27091. name: "Rump",
  27092. image: {
  27093. source: "./media/characters/cecelia-swift/rump.svg"
  27094. }
  27095. },
  27096. },
  27097. [
  27098. {
  27099. name: "Normal",
  27100. height: math.unit(5 + 9 / 12, "feet"),
  27101. default: true
  27102. },
  27103. {
  27104. name: "Big",
  27105. height: math.unit(50, "feet")
  27106. },
  27107. {
  27108. name: "Macro",
  27109. height: math.unit(100, "feet")
  27110. },
  27111. {
  27112. name: "Macro+",
  27113. height: math.unit(500, "feet")
  27114. },
  27115. {
  27116. name: "Macro++",
  27117. height: math.unit(1000, "feet")
  27118. },
  27119. ]
  27120. ))
  27121. characterMakers.push(() => makeCharacter(
  27122. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27123. {
  27124. front: {
  27125. height: math.unit(6, "feet"),
  27126. weight: math.unit(150, "lb"),
  27127. name: "Front",
  27128. image: {
  27129. source: "./media/characters/kaunan/front.svg",
  27130. extra: 2890 / 2523,
  27131. bottom: 49 / 2939
  27132. }
  27133. },
  27134. },
  27135. [
  27136. {
  27137. name: "Macro",
  27138. height: math.unit(150, "feet"),
  27139. default: true
  27140. },
  27141. ]
  27142. ))
  27143. characterMakers.push(() => makeCharacter(
  27144. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27145. {
  27146. front: {
  27147. height: math.unit(175, "cm"),
  27148. weight: math.unit(60, "kg"),
  27149. name: "Front",
  27150. image: {
  27151. source: "./media/characters/fei/front.svg",
  27152. extra: 2581 / 2400,
  27153. bottom: 82.2 / 2663
  27154. }
  27155. },
  27156. },
  27157. [
  27158. {
  27159. name: "Mortal",
  27160. height: math.unit(175, "cm")
  27161. },
  27162. {
  27163. name: "Normal",
  27164. height: math.unit(3500, "m"),
  27165. default: true
  27166. },
  27167. {
  27168. name: "Stroll",
  27169. height: math.unit(17.5, "km")
  27170. },
  27171. {
  27172. name: "Showoff",
  27173. height: math.unit(175, "km")
  27174. },
  27175. ]
  27176. ))
  27177. characterMakers.push(() => makeCharacter(
  27178. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27179. {
  27180. front: {
  27181. height: math.unit(7, "feet"),
  27182. weight: math.unit(1000, "kg"),
  27183. name: "Front",
  27184. image: {
  27185. source: "./media/characters/edrax/front.svg",
  27186. extra: 2838 / 2550,
  27187. bottom: 130 / 2968
  27188. }
  27189. },
  27190. },
  27191. [
  27192. {
  27193. name: "Small",
  27194. height: math.unit(7, "feet")
  27195. },
  27196. {
  27197. name: "Normal",
  27198. height: math.unit(1500, "meters")
  27199. },
  27200. {
  27201. name: "Mega",
  27202. height: math.unit(12000000, "km"),
  27203. default: true
  27204. },
  27205. {
  27206. name: "Megamacro",
  27207. height: math.unit(10600000, "lightyears")
  27208. },
  27209. {
  27210. name: "Hypermacro",
  27211. height: math.unit(256, "yottameters")
  27212. },
  27213. ]
  27214. ))
  27215. characterMakers.push(() => makeCharacter(
  27216. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27217. {
  27218. front: {
  27219. height: math.unit(10, "feet"),
  27220. weight: math.unit(750, "lb"),
  27221. name: "Front",
  27222. image: {
  27223. source: "./media/characters/clove/front.svg",
  27224. extra: 2031 / 1860,
  27225. bottom: 47.8 / 2080
  27226. }
  27227. },
  27228. back: {
  27229. height: math.unit(10, "feet"),
  27230. weight: math.unit(750, "lb"),
  27231. name: "Back",
  27232. image: {
  27233. source: "./media/characters/clove/back.svg",
  27234. extra: 2025 / 1859,
  27235. bottom: 46 / 2071
  27236. }
  27237. },
  27238. },
  27239. [
  27240. {
  27241. name: "Normal",
  27242. height: math.unit(10, "feet"),
  27243. default: true
  27244. },
  27245. ]
  27246. ))
  27247. characterMakers.push(() => makeCharacter(
  27248. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27249. {
  27250. front: {
  27251. height: math.unit(4, "feet"),
  27252. weight: math.unit(50, "lb"),
  27253. name: "Front",
  27254. image: {
  27255. source: "./media/characters/alex-rabbit/front.svg",
  27256. extra: 507 / 458,
  27257. bottom: 18.5 / 527
  27258. }
  27259. },
  27260. back: {
  27261. height: math.unit(4, "feet"),
  27262. weight: math.unit(50, "lb"),
  27263. name: "Back",
  27264. image: {
  27265. source: "./media/characters/alex-rabbit/back.svg",
  27266. extra: 502 / 460,
  27267. bottom: 18.9 / 521
  27268. }
  27269. },
  27270. },
  27271. [
  27272. {
  27273. name: "Normal",
  27274. height: math.unit(4, "feet"),
  27275. default: true
  27276. },
  27277. ]
  27278. ))
  27279. characterMakers.push(() => makeCharacter(
  27280. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27281. {
  27282. front: {
  27283. height: math.unit(1 + 3 / 12, "feet"),
  27284. weight: math.unit(80, "lb"),
  27285. name: "Front",
  27286. image: {
  27287. source: "./media/characters/zander-rose/front.svg",
  27288. extra: 916 / 797,
  27289. bottom: 17 / 933
  27290. }
  27291. },
  27292. back: {
  27293. height: math.unit(1 + 3 / 12, "feet"),
  27294. weight: math.unit(80, "lb"),
  27295. name: "Back",
  27296. image: {
  27297. source: "./media/characters/zander-rose/back.svg",
  27298. extra: 903 / 779,
  27299. bottom: 31 / 934
  27300. }
  27301. },
  27302. },
  27303. [
  27304. {
  27305. name: "Normal",
  27306. height: math.unit(1 + 3 / 12, "feet"),
  27307. default: true
  27308. },
  27309. ]
  27310. ))
  27311. characterMakers.push(() => makeCharacter(
  27312. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27313. {
  27314. anthro: {
  27315. height: math.unit(6, "feet"),
  27316. weight: math.unit(150, "lb"),
  27317. name: "Anthro",
  27318. image: {
  27319. source: "./media/characters/razz/anthro.svg",
  27320. extra: 1437 / 1343,
  27321. bottom: 48 / 1485
  27322. }
  27323. },
  27324. feral: {
  27325. height: math.unit(6, "feet"),
  27326. weight: math.unit(150, "lb"),
  27327. name: "Feral",
  27328. image: {
  27329. source: "./media/characters/razz/feral.svg",
  27330. extra: 2569 / 1385,
  27331. bottom: 95 / 2664
  27332. }
  27333. },
  27334. },
  27335. [
  27336. {
  27337. name: "Normal",
  27338. height: math.unit(6, "feet"),
  27339. default: true
  27340. },
  27341. ]
  27342. ))
  27343. characterMakers.push(() => makeCharacter(
  27344. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27345. {
  27346. front: {
  27347. height: math.unit(9 + 4 / 12, "feet"),
  27348. weight: math.unit(500, "lb"),
  27349. name: "Front",
  27350. image: {
  27351. source: "./media/characters/morrigan/front.svg",
  27352. extra: 2707 / 2579,
  27353. bottom: 156 / 2863
  27354. }
  27355. },
  27356. },
  27357. [
  27358. {
  27359. name: "Normal",
  27360. height: math.unit(9 + 4 / 12, "feet"),
  27361. default: true
  27362. },
  27363. ]
  27364. ))
  27365. characterMakers.push(() => makeCharacter(
  27366. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27367. {
  27368. front: {
  27369. height: math.unit(5, "stories"),
  27370. weight: math.unit(4000, "lb"),
  27371. name: "Front",
  27372. image: {
  27373. source: "./media/characters/jenene/front.svg",
  27374. extra: 1780 / 1710,
  27375. bottom: 57 / 1837
  27376. }
  27377. },
  27378. },
  27379. [
  27380. {
  27381. name: "Normal",
  27382. height: math.unit(5, "stories"),
  27383. default: true
  27384. },
  27385. ]
  27386. ))
  27387. characterMakers.push(() => makeCharacter(
  27388. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27389. {
  27390. front: {
  27391. height: math.unit(6, "feet"),
  27392. weight: math.unit(150, "lb"),
  27393. name: "Front",
  27394. image: {
  27395. source: "./media/characters/vix-archaser/front.svg",
  27396. extra: 2767 / 2562,
  27397. bottom: 36 / 2803
  27398. }
  27399. },
  27400. },
  27401. [
  27402. {
  27403. name: "Micro",
  27404. height: math.unit(1, "foot")
  27405. },
  27406. {
  27407. name: "Normal",
  27408. height: math.unit(6 + 5 / 12, "feet")
  27409. },
  27410. {
  27411. name: "Minimacro",
  27412. height: math.unit(500, "feet")
  27413. },
  27414. {
  27415. name: "Macro",
  27416. height: math.unit(4, "miles")
  27417. },
  27418. {
  27419. name: "Megamacro",
  27420. height: math.unit(250, "miles"),
  27421. default: true
  27422. },
  27423. {
  27424. name: "Gigamacro",
  27425. height: math.unit(1, "universe")
  27426. },
  27427. {
  27428. name: "Endgame",
  27429. height: math.unit(100, "multiverses")
  27430. }
  27431. ]
  27432. ))
  27433. characterMakers.push(() => makeCharacter(
  27434. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27435. {
  27436. taurSfw: {
  27437. height: math.unit(10, "meters"),
  27438. weight: math.unit(17500, "kg"),
  27439. name: "Taur",
  27440. image: {
  27441. source: "./media/characters/faey/taur-sfw.svg",
  27442. extra: 1200 / 968,
  27443. bottom: 41 / 1241
  27444. }
  27445. },
  27446. chestmaw: {
  27447. height: math.unit(2.01, "meters"),
  27448. name: "Chestmaw",
  27449. image: {
  27450. source: "./media/characters/faey/chestmaw.svg"
  27451. }
  27452. },
  27453. foot: {
  27454. height: math.unit(2.43, "meters"),
  27455. name: "Foot",
  27456. image: {
  27457. source: "./media/characters/faey/foot.svg"
  27458. }
  27459. },
  27460. jaws: {
  27461. height: math.unit(1.66, "meters"),
  27462. name: "Jaws",
  27463. image: {
  27464. source: "./media/characters/faey/jaws.svg"
  27465. }
  27466. },
  27467. tongues: {
  27468. height: math.unit(2.01, "meters"),
  27469. name: "Tongues",
  27470. image: {
  27471. source: "./media/characters/faey/tongues.svg"
  27472. }
  27473. },
  27474. },
  27475. [
  27476. {
  27477. name: "Small",
  27478. height: math.unit(10, "meters"),
  27479. default: true
  27480. },
  27481. {
  27482. name: "Big",
  27483. height: math.unit(500000, "km")
  27484. },
  27485. ]
  27486. ))
  27487. characterMakers.push(() => makeCharacter(
  27488. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27489. {
  27490. front: {
  27491. height: math.unit(7, "feet"),
  27492. weight: math.unit(275, "lb"),
  27493. name: "Front",
  27494. image: {
  27495. source: "./media/characters/roku/front.svg",
  27496. extra: 903 / 878,
  27497. bottom: 37 / 940
  27498. }
  27499. },
  27500. },
  27501. [
  27502. {
  27503. name: "Normal",
  27504. height: math.unit(7, "feet"),
  27505. default: true
  27506. },
  27507. {
  27508. name: "Macro",
  27509. height: math.unit(500, "feet")
  27510. },
  27511. {
  27512. name: "Megamacro",
  27513. height: math.unit(200, "miles")
  27514. },
  27515. ]
  27516. ))
  27517. characterMakers.push(() => makeCharacter(
  27518. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27519. {
  27520. front: {
  27521. height: math.unit(6 + 2 / 12, "feet"),
  27522. weight: math.unit(150, "lb"),
  27523. name: "Front",
  27524. image: {
  27525. source: "./media/characters/lira/front.svg",
  27526. extra: 1727 / 1605,
  27527. bottom: 26 / 1753
  27528. }
  27529. },
  27530. back: {
  27531. height: math.unit(6 + 2 / 12, "feet"),
  27532. weight: math.unit(150, "lb"),
  27533. name: "Back",
  27534. image: {
  27535. source: "./media/characters/lira/back.svg",
  27536. extra: 1713 / 159,
  27537. bottom: 20 / 1733
  27538. }
  27539. },
  27540. hand: {
  27541. height: math.unit(0.75, "feet"),
  27542. name: "Hand",
  27543. image: {
  27544. source: "./media/characters/lira/hand.svg"
  27545. }
  27546. },
  27547. maw: {
  27548. height: math.unit(0.65, "feet"),
  27549. name: "Maw",
  27550. image: {
  27551. source: "./media/characters/lira/maw.svg"
  27552. }
  27553. },
  27554. pawDigi: {
  27555. height: math.unit(1.6, "feet"),
  27556. name: "Paw Digi",
  27557. image: {
  27558. source: "./media/characters/lira/paw-digi.svg"
  27559. }
  27560. },
  27561. pawPlanti: {
  27562. height: math.unit(1.4, "feet"),
  27563. name: "Paw Planti",
  27564. image: {
  27565. source: "./media/characters/lira/paw-planti.svg"
  27566. }
  27567. },
  27568. },
  27569. [
  27570. {
  27571. name: "Normal",
  27572. height: math.unit(6 + 2 / 12, "feet"),
  27573. default: true
  27574. },
  27575. {
  27576. name: "Macro",
  27577. height: math.unit(100, "feet")
  27578. },
  27579. {
  27580. name: "Macro²",
  27581. height: math.unit(1600, "feet")
  27582. },
  27583. {
  27584. name: "Planetary",
  27585. height: math.unit(20, "earths")
  27586. },
  27587. ]
  27588. ))
  27589. characterMakers.push(() => makeCharacter(
  27590. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27591. {
  27592. front: {
  27593. height: math.unit(6, "feet"),
  27594. weight: math.unit(150, "lb"),
  27595. name: "Front",
  27596. image: {
  27597. source: "./media/characters/hadjet/front.svg",
  27598. extra: 1480 / 1346,
  27599. bottom: 26 / 1506
  27600. }
  27601. },
  27602. frontNsfw: {
  27603. height: math.unit(6, "feet"),
  27604. weight: math.unit(150, "lb"),
  27605. name: "Front (NSFW)",
  27606. image: {
  27607. source: "./media/characters/hadjet/front-nsfw.svg",
  27608. extra: 1440 / 1358,
  27609. bottom: 52 / 1492
  27610. }
  27611. },
  27612. },
  27613. [
  27614. {
  27615. name: "Macro",
  27616. height: math.unit(10, "stories"),
  27617. default: true
  27618. },
  27619. {
  27620. name: "Megamacro",
  27621. height: math.unit(1.5, "miles")
  27622. },
  27623. {
  27624. name: "Megamacro+",
  27625. height: math.unit(5, "miles")
  27626. },
  27627. ]
  27628. ))
  27629. characterMakers.push(() => makeCharacter(
  27630. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27631. {
  27632. side: {
  27633. height: math.unit(106, "feet"),
  27634. weight: math.unit(500, "tonnes"),
  27635. name: "Side",
  27636. image: {
  27637. source: "./media/characters/kodran/side.svg",
  27638. extra: 553 / 480,
  27639. bottom: 33 / 586
  27640. }
  27641. },
  27642. front: {
  27643. height: math.unit(132, "feet"),
  27644. weight: math.unit(500, "tonnes"),
  27645. name: "Front",
  27646. image: {
  27647. source: "./media/characters/kodran/front.svg",
  27648. extra: 667 / 643,
  27649. bottom: 42 / 709
  27650. }
  27651. },
  27652. flying: {
  27653. height: math.unit(350, "feet"),
  27654. weight: math.unit(500, "tonnes"),
  27655. name: "Flying",
  27656. image: {
  27657. source: "./media/characters/kodran/flying.svg"
  27658. }
  27659. },
  27660. foot: {
  27661. height: math.unit(33, "feet"),
  27662. name: "Foot",
  27663. image: {
  27664. source: "./media/characters/kodran/foot.svg"
  27665. }
  27666. },
  27667. footFront: {
  27668. height: math.unit(19, "feet"),
  27669. name: "Foot (Front)",
  27670. image: {
  27671. source: "./media/characters/kodran/foot-front.svg",
  27672. extra: 261 / 261,
  27673. bottom: 91 / 352
  27674. }
  27675. },
  27676. headFront: {
  27677. height: math.unit(53, "feet"),
  27678. name: "Head (Front)",
  27679. image: {
  27680. source: "./media/characters/kodran/head-front.svg"
  27681. }
  27682. },
  27683. headSide: {
  27684. height: math.unit(65, "feet"),
  27685. name: "Head (Side)",
  27686. image: {
  27687. source: "./media/characters/kodran/head-side.svg"
  27688. }
  27689. },
  27690. throat: {
  27691. height: math.unit(79, "feet"),
  27692. name: "Throat",
  27693. image: {
  27694. source: "./media/characters/kodran/throat.svg"
  27695. }
  27696. },
  27697. },
  27698. [
  27699. {
  27700. name: "Large",
  27701. height: math.unit(106, "feet"),
  27702. default: true
  27703. },
  27704. ]
  27705. ))
  27706. characterMakers.push(() => makeCharacter(
  27707. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27708. {
  27709. side: {
  27710. height: math.unit(11, "feet"),
  27711. weight: math.unit(150, "lb"),
  27712. name: "Side",
  27713. image: {
  27714. source: "./media/characters/pyxaron/side.svg",
  27715. extra: 305 / 195,
  27716. bottom: 17 / 322
  27717. }
  27718. },
  27719. },
  27720. [
  27721. {
  27722. name: "Normal",
  27723. height: math.unit(11, "feet"),
  27724. default: true
  27725. },
  27726. ]
  27727. ))
  27728. characterMakers.push(() => makeCharacter(
  27729. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27730. {
  27731. front: {
  27732. height: math.unit(6, "feet"),
  27733. weight: math.unit(150, "lb"),
  27734. name: "Front",
  27735. image: {
  27736. source: "./media/characters/meep/front.svg",
  27737. extra: 88 / 80,
  27738. bottom: 6 / 94
  27739. }
  27740. },
  27741. },
  27742. [
  27743. {
  27744. name: "Fun Sized",
  27745. height: math.unit(2, "inches"),
  27746. default: true
  27747. },
  27748. {
  27749. name: "Friend Sized",
  27750. height: math.unit(8, "inches")
  27751. },
  27752. ]
  27753. ))
  27754. characterMakers.push(() => makeCharacter(
  27755. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27756. {
  27757. front: {
  27758. height: math.unit(15, "feet"),
  27759. weight: math.unit(2500, "lb"),
  27760. name: "Front",
  27761. image: {
  27762. source: "./media/characters/holly-rabbit/front.svg",
  27763. extra: 1433 / 1233,
  27764. bottom: 125 / 1558
  27765. }
  27766. },
  27767. dick: {
  27768. height: math.unit(4.6, "feet"),
  27769. name: "Dick",
  27770. image: {
  27771. source: "./media/characters/holly-rabbit/dick.svg"
  27772. }
  27773. },
  27774. },
  27775. [
  27776. {
  27777. name: "Normal",
  27778. height: math.unit(15, "feet"),
  27779. default: true
  27780. },
  27781. {
  27782. name: "Macro",
  27783. height: math.unit(250, "feet")
  27784. },
  27785. {
  27786. name: "Macro+",
  27787. height: math.unit(2500, "feet")
  27788. },
  27789. ]
  27790. ))
  27791. characterMakers.push(() => makeCharacter(
  27792. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27793. {
  27794. front: {
  27795. height: math.unit(3.02, "meters"),
  27796. weight: math.unit(500, "kg"),
  27797. name: "Front",
  27798. image: {
  27799. source: "./media/characters/drena/front.svg",
  27800. extra: 282 / 243,
  27801. bottom: 8 / 290
  27802. }
  27803. },
  27804. side: {
  27805. height: math.unit(3.02, "meters"),
  27806. weight: math.unit(500, "kg"),
  27807. name: "Side",
  27808. image: {
  27809. source: "./media/characters/drena/side.svg",
  27810. extra: 280 / 245,
  27811. bottom: 10 / 290
  27812. }
  27813. },
  27814. back: {
  27815. height: math.unit(3.02, "meters"),
  27816. weight: math.unit(500, "kg"),
  27817. name: "Back",
  27818. image: {
  27819. source: "./media/characters/drena/back.svg",
  27820. extra: 278 / 243,
  27821. bottom: 2 / 280
  27822. }
  27823. },
  27824. foot: {
  27825. height: math.unit(0.75, "meters"),
  27826. name: "Foot",
  27827. image: {
  27828. source: "./media/characters/drena/foot.svg"
  27829. }
  27830. },
  27831. maw: {
  27832. height: math.unit(0.82, "meters"),
  27833. name: "Maw",
  27834. image: {
  27835. source: "./media/characters/drena/maw.svg"
  27836. }
  27837. },
  27838. rump: {
  27839. height: math.unit(0.93, "meters"),
  27840. name: "Rump",
  27841. image: {
  27842. source: "./media/characters/drena/rump.svg"
  27843. }
  27844. },
  27845. },
  27846. [
  27847. {
  27848. name: "Normal",
  27849. height: math.unit(3.02, "meters"),
  27850. default: true
  27851. },
  27852. ]
  27853. ))
  27854. characterMakers.push(() => makeCharacter(
  27855. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27856. {
  27857. front: {
  27858. height: math.unit(6 + 4 / 12, "feet"),
  27859. weight: math.unit(250, "lb"),
  27860. name: "Front",
  27861. image: {
  27862. source: "./media/characters/remmyzilla/front.svg",
  27863. extra: 4033 / 3588,
  27864. bottom: 123 / 4156
  27865. }
  27866. },
  27867. back: {
  27868. height: math.unit(6 + 4 / 12, "feet"),
  27869. weight: math.unit(250, "lb"),
  27870. name: "Back",
  27871. image: {
  27872. source: "./media/characters/remmyzilla/back.svg",
  27873. extra: 2687 / 2555,
  27874. bottom: 48 / 2735
  27875. }
  27876. },
  27877. frontFancy: {
  27878. height: math.unit(6 + 4 / 12, "feet"),
  27879. weight: math.unit(250, "lb"),
  27880. name: "Front (Fancy)",
  27881. image: {
  27882. source: "./media/characters/remmyzilla/front-fancy.svg",
  27883. extra: 4119 / 3419,
  27884. bottom: 237 / 4356
  27885. }
  27886. },
  27887. paw: {
  27888. height: math.unit(1.73, "feet"),
  27889. name: "Paw",
  27890. image: {
  27891. source: "./media/characters/remmyzilla/paw.svg"
  27892. }
  27893. },
  27894. maw: {
  27895. height: math.unit(1.73, "feet"),
  27896. name: "Maw",
  27897. image: {
  27898. source: "./media/characters/remmyzilla/maw.svg"
  27899. }
  27900. },
  27901. },
  27902. [
  27903. {
  27904. name: "Normal",
  27905. height: math.unit(6 + 4 / 12, "feet")
  27906. },
  27907. {
  27908. name: "Minimacro",
  27909. height: math.unit(12 + 8 / 12, "feet")
  27910. },
  27911. {
  27912. name: "Normal",
  27913. height: math.unit(640, "feet"),
  27914. default: true
  27915. },
  27916. {
  27917. name: "Megamacro",
  27918. height: math.unit(6400, "feet")
  27919. },
  27920. {
  27921. name: "Gigamacro",
  27922. height: math.unit(64000, "miles")
  27923. },
  27924. ]
  27925. ))
  27926. characterMakers.push(() => makeCharacter(
  27927. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27928. {
  27929. front: {
  27930. height: math.unit(2.5, "meters"),
  27931. weight: math.unit(300, "lb"),
  27932. name: "Front",
  27933. image: {
  27934. source: "./media/characters/lawrence/front.svg",
  27935. extra: 357 / 335,
  27936. bottom: 30 / 387
  27937. }
  27938. },
  27939. back: {
  27940. height: math.unit(2.5, "meters"),
  27941. weight: math.unit(300, "lb"),
  27942. name: "Back",
  27943. image: {
  27944. source: "./media/characters/lawrence/back.svg",
  27945. extra: 357 / 338,
  27946. bottom: 16 / 373
  27947. }
  27948. },
  27949. head: {
  27950. height: math.unit(0.9, "meter"),
  27951. name: "Head",
  27952. image: {
  27953. source: "./media/characters/lawrence/head.svg"
  27954. }
  27955. },
  27956. maw: {
  27957. height: math.unit(0.7, "meter"),
  27958. name: "Maw",
  27959. image: {
  27960. source: "./media/characters/lawrence/maw.svg"
  27961. }
  27962. },
  27963. footBottom: {
  27964. height: math.unit(0.5, "meter"),
  27965. name: "Foot (Bottom)",
  27966. image: {
  27967. source: "./media/characters/lawrence/foot-bottom.svg"
  27968. }
  27969. },
  27970. footTop: {
  27971. height: math.unit(0.5, "meter"),
  27972. name: "Foot (Top)",
  27973. image: {
  27974. source: "./media/characters/lawrence/foot-top.svg"
  27975. }
  27976. },
  27977. },
  27978. [
  27979. {
  27980. name: "Normal",
  27981. height: math.unit(2.5, "meters"),
  27982. default: true
  27983. },
  27984. {
  27985. name: "Macro",
  27986. height: math.unit(95, "meters")
  27987. },
  27988. {
  27989. name: "Megamacro",
  27990. height: math.unit(150, "km")
  27991. },
  27992. ]
  27993. ))
  27994. characterMakers.push(() => makeCharacter(
  27995. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27996. {
  27997. front: {
  27998. height: math.unit(4.2, "meters"),
  27999. name: "Front",
  28000. image: {
  28001. source: "./media/characters/sydney/front.svg",
  28002. extra: 1323 / 1277,
  28003. bottom: 111 / 1434
  28004. }
  28005. },
  28006. },
  28007. [
  28008. {
  28009. name: "Normal",
  28010. height: math.unit(4.2, "meters"),
  28011. default: true
  28012. },
  28013. ]
  28014. ))
  28015. characterMakers.push(() => makeCharacter(
  28016. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28017. {
  28018. back: {
  28019. height: math.unit(201, "feet"),
  28020. name: "Back",
  28021. image: {
  28022. source: "./media/characters/jessica/back.svg",
  28023. extra: 273 / 259,
  28024. bottom: 7 / 280
  28025. }
  28026. },
  28027. },
  28028. [
  28029. {
  28030. name: "Normal",
  28031. height: math.unit(201, "feet"),
  28032. default: true
  28033. },
  28034. {
  28035. name: "Megamacro",
  28036. height: math.unit(8, "miles")
  28037. },
  28038. ]
  28039. ))
  28040. characterMakers.push(() => makeCharacter(
  28041. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28042. {
  28043. side: {
  28044. height: math.unit(320, "cm"),
  28045. name: "Side",
  28046. image: {
  28047. source: "./media/characters/victoria/side.svg",
  28048. extra: 778 / 346,
  28049. bottom: 56 / 834
  28050. }
  28051. },
  28052. maw: {
  28053. height: math.unit(5.9, "feet"),
  28054. name: "Maw",
  28055. image: {
  28056. source: "./media/characters/victoria/maw.svg"
  28057. }
  28058. },
  28059. },
  28060. [
  28061. {
  28062. name: "Normal",
  28063. height: math.unit(320, "cm"),
  28064. default: true
  28065. },
  28066. ]
  28067. ))
  28068. characterMakers.push(() => makeCharacter(
  28069. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28070. {
  28071. front: {
  28072. height: math.unit(5 + 6 / 12, "feet"),
  28073. name: "Front",
  28074. image: {
  28075. source: "./media/characters/cat/front.svg",
  28076. extra: 1374 / 1257,
  28077. bottom: 59 / 1433
  28078. }
  28079. },
  28080. back: {
  28081. height: math.unit(5 + 6 / 12, "feet"),
  28082. name: "Back",
  28083. image: {
  28084. source: "./media/characters/cat/back.svg",
  28085. extra: 1337 / 1226,
  28086. bottom: 34 / 1371
  28087. }
  28088. },
  28089. taur: {
  28090. height: math.unit(7, "feet"),
  28091. name: "Taur",
  28092. image: {
  28093. source: "./media/characters/cat/taur.svg",
  28094. extra: 1345 / 1231,
  28095. bottom: 66 / 1411
  28096. }
  28097. },
  28098. lucario: {
  28099. height: math.unit(4, "feet"),
  28100. name: "Lucario",
  28101. image: {
  28102. source: "./media/characters/cat/lucario.svg",
  28103. extra: 1470 / 1318,
  28104. bottom: 65 / 1535
  28105. }
  28106. },
  28107. megaLucario: {
  28108. height: math.unit(4, "feet"),
  28109. name: "Mega Lucario",
  28110. image: {
  28111. source: "./media/characters/cat/mega-lucario.svg",
  28112. extra: 1515 / 1319,
  28113. bottom: 63 / 1578
  28114. }
  28115. },
  28116. nickit: {
  28117. height: math.unit(2, "feet"),
  28118. name: "Nickit",
  28119. image: {
  28120. source: "./media/characters/cat/nickit.svg",
  28121. extra: 1980 / 1585,
  28122. bottom: 102 / 2082
  28123. }
  28124. },
  28125. lopunnyFront: {
  28126. height: math.unit(5, "feet"),
  28127. name: "Lopunny (Front)",
  28128. image: {
  28129. source: "./media/characters/cat/lopunny-front.svg",
  28130. extra: 1782 / 1469,
  28131. bottom: 38 / 1820
  28132. }
  28133. },
  28134. lopunnyBack: {
  28135. height: math.unit(5, "feet"),
  28136. name: "Lopunny (Back)",
  28137. image: {
  28138. source: "./media/characters/cat/lopunny-back.svg",
  28139. extra: 1660 / 1490,
  28140. bottom: 25 / 1685
  28141. }
  28142. },
  28143. },
  28144. [
  28145. {
  28146. name: "Really small",
  28147. height: math.unit(1, "nm")
  28148. },
  28149. {
  28150. name: "Micro",
  28151. height: math.unit(5, "inches")
  28152. },
  28153. {
  28154. name: "Normal",
  28155. height: math.unit(5 + 6 / 12, "feet"),
  28156. default: true
  28157. },
  28158. {
  28159. name: "Macro",
  28160. height: math.unit(50, "feet")
  28161. },
  28162. {
  28163. name: "Macro+",
  28164. height: math.unit(150, "feet")
  28165. },
  28166. {
  28167. name: "Megamacro",
  28168. height: math.unit(100, "miles")
  28169. },
  28170. ]
  28171. ))
  28172. characterMakers.push(() => makeCharacter(
  28173. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28174. {
  28175. front: {
  28176. height: math.unit(63.4, "meters"),
  28177. weight: math.unit(3.28349e+6, "kilograms"),
  28178. name: "Front",
  28179. image: {
  28180. source: "./media/characters/kirina-violet/front.svg",
  28181. extra: 2812 / 2725,
  28182. bottom: 0 / 2812
  28183. }
  28184. },
  28185. back: {
  28186. height: math.unit(63.4, "meters"),
  28187. weight: math.unit(3.28349e+6, "kilograms"),
  28188. name: "Back",
  28189. image: {
  28190. source: "./media/characters/kirina-violet/back.svg",
  28191. extra: 2812 / 2725,
  28192. bottom: 0 / 2812
  28193. }
  28194. },
  28195. mouth: {
  28196. height: math.unit(4.35, "meters"),
  28197. name: "Mouth",
  28198. image: {
  28199. source: "./media/characters/kirina-violet/mouth.svg"
  28200. }
  28201. },
  28202. paw: {
  28203. height: math.unit(5.6, "meters"),
  28204. name: "Paw",
  28205. image: {
  28206. source: "./media/characters/kirina-violet/paw.svg"
  28207. }
  28208. },
  28209. tail: {
  28210. height: math.unit(18, "meters"),
  28211. name: "Tail",
  28212. image: {
  28213. source: "./media/characters/kirina-violet/tail.svg"
  28214. }
  28215. },
  28216. },
  28217. [
  28218. {
  28219. name: "Macro",
  28220. height: math.unit(63.4, "meters"),
  28221. default: true
  28222. },
  28223. ]
  28224. ))
  28225. characterMakers.push(() => makeCharacter(
  28226. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28227. {
  28228. front: {
  28229. height: math.unit(60, "feet"),
  28230. name: "Front",
  28231. image: {
  28232. source: "./media/characters/cat-gigachu/front.svg",
  28233. extra: 1024 / 780,
  28234. bottom: 23 / 1047
  28235. }
  28236. },
  28237. back: {
  28238. height: math.unit(60, "feet"),
  28239. name: "Back",
  28240. image: {
  28241. source: "./media/characters/cat-gigachu/back.svg",
  28242. extra: 1024 / 780,
  28243. bottom: 23 / 1047
  28244. }
  28245. },
  28246. },
  28247. [
  28248. {
  28249. name: "Dynamax",
  28250. height: math.unit(60, "feet"),
  28251. default: true
  28252. },
  28253. ]
  28254. ))
  28255. characterMakers.push(() => makeCharacter(
  28256. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28257. {
  28258. front: {
  28259. height: math.unit(6, "feet"),
  28260. weight: math.unit(150, "lb"),
  28261. name: "Front",
  28262. image: {
  28263. source: "./media/characters/sfaiyan/front.svg",
  28264. extra: 999 / 978,
  28265. bottom: 5 / 1004
  28266. }
  28267. },
  28268. },
  28269. [
  28270. {
  28271. name: "Normal",
  28272. height: math.unit(1.82, "meters")
  28273. },
  28274. {
  28275. name: "Giant",
  28276. height: math.unit(2.27, "km"),
  28277. default: true
  28278. },
  28279. ]
  28280. ))
  28281. characterMakers.push(() => makeCharacter(
  28282. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28283. {
  28284. front: {
  28285. height: math.unit(179, "cm"),
  28286. weight: math.unit(100, "kg"),
  28287. name: "Front",
  28288. image: {
  28289. source: "./media/characters/raunehkeli/front.svg",
  28290. extra: 1934 / 1926,
  28291. bottom: 0 / 1934
  28292. }
  28293. },
  28294. },
  28295. [
  28296. {
  28297. name: "Normal",
  28298. height: math.unit(179, "cm")
  28299. },
  28300. {
  28301. name: "Maximum",
  28302. height: math.unit(575, "meters"),
  28303. default: true
  28304. },
  28305. ]
  28306. ))
  28307. characterMakers.push(() => makeCharacter(
  28308. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28309. {
  28310. front: {
  28311. height: math.unit(6, "feet"),
  28312. weight: math.unit(150, "lb"),
  28313. name: "Front",
  28314. image: {
  28315. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28316. extra: 2625 / 2518,
  28317. bottom: 60 / 2685
  28318. }
  28319. },
  28320. },
  28321. [
  28322. {
  28323. name: "Normal",
  28324. height: math.unit(6 + 2 / 12, "feet")
  28325. },
  28326. {
  28327. name: "Macro",
  28328. height: math.unit(1180, "feet"),
  28329. default: true
  28330. },
  28331. ]
  28332. ))
  28333. characterMakers.push(() => makeCharacter(
  28334. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28335. {
  28336. front: {
  28337. height: math.unit(5 + 6 / 12, "feet"),
  28338. weight: math.unit(108, "lb"),
  28339. name: "Front",
  28340. image: {
  28341. source: "./media/characters/lilith-zott/front.svg",
  28342. extra: 2510 / 2238,
  28343. bottom: 100 / 2610
  28344. }
  28345. },
  28346. frontDressed: {
  28347. height: math.unit(5 + 6 / 12, "feet"),
  28348. weight: math.unit(108, "lb"),
  28349. name: "Front (Dressed)",
  28350. image: {
  28351. source: "./media/characters/lilith-zott/front-dressed.svg",
  28352. extra: 2510 / 2238,
  28353. bottom: 100 / 2610
  28354. }
  28355. },
  28356. },
  28357. [
  28358. {
  28359. name: "Normal",
  28360. height: math.unit(5 + 6 / 12, "feet")
  28361. },
  28362. {
  28363. name: "Macro",
  28364. height: math.unit(1030, "feet"),
  28365. default: true
  28366. },
  28367. ]
  28368. ))
  28369. characterMakers.push(() => makeCharacter(
  28370. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28371. {
  28372. front: {
  28373. height: math.unit(6, "feet"),
  28374. weight: math.unit(150, "lb"),
  28375. name: "Front",
  28376. image: {
  28377. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28378. extra: 2567 / 2435,
  28379. bottom: 39 / 2606
  28380. }
  28381. },
  28382. frontSuper: {
  28383. height: math.unit(6, "feet"),
  28384. name: "Front (Super)",
  28385. image: {
  28386. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28387. extra: 2567 / 2435,
  28388. bottom: 39 / 2606
  28389. }
  28390. },
  28391. },
  28392. [
  28393. {
  28394. name: "Normal",
  28395. height: math.unit(5 + 10 / 12, "feet")
  28396. },
  28397. {
  28398. name: "Macro",
  28399. height: math.unit(1100, "feet"),
  28400. default: true
  28401. },
  28402. ]
  28403. ))
  28404. characterMakers.push(() => makeCharacter(
  28405. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28406. {
  28407. front: {
  28408. height: math.unit(100, "miles"),
  28409. name: "Front",
  28410. image: {
  28411. source: "./media/characters/sona/front.svg",
  28412. extra: 2433 / 2201,
  28413. bottom: 53 / 2486
  28414. }
  28415. },
  28416. foot: {
  28417. height: math.unit(16.1, "miles"),
  28418. name: "Foot",
  28419. image: {
  28420. source: "./media/characters/sona/foot.svg"
  28421. }
  28422. },
  28423. },
  28424. [
  28425. {
  28426. name: "Macro",
  28427. height: math.unit(100, "miles"),
  28428. default: true
  28429. },
  28430. ]
  28431. ))
  28432. characterMakers.push(() => makeCharacter(
  28433. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28434. {
  28435. front: {
  28436. height: math.unit(6, "feet"),
  28437. weight: math.unit(150, "lb"),
  28438. name: "Front",
  28439. image: {
  28440. source: "./media/characters/bailey/front.svg",
  28441. extra: 1778 / 1724,
  28442. bottom: 30 / 1808
  28443. }
  28444. },
  28445. },
  28446. [
  28447. {
  28448. name: "Micro",
  28449. height: math.unit(4, "inches")
  28450. },
  28451. {
  28452. name: "Normal",
  28453. height: math.unit(5 + 5 / 12, "feet"),
  28454. default: true
  28455. },
  28456. {
  28457. name: "Macro",
  28458. height: math.unit(250, "feet")
  28459. },
  28460. {
  28461. name: "Megamacro",
  28462. height: math.unit(100, "miles")
  28463. },
  28464. ]
  28465. ))
  28466. characterMakers.push(() => makeCharacter(
  28467. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28468. {
  28469. front: {
  28470. height: math.unit(5 + 2 / 12, "feet"),
  28471. weight: math.unit(120, "lb"),
  28472. name: "Front",
  28473. image: {
  28474. source: "./media/characters/snaps/front.svg",
  28475. extra: 2370 / 2177,
  28476. bottom: 48 / 2418
  28477. }
  28478. },
  28479. back: {
  28480. height: math.unit(5 + 2 / 12, "feet"),
  28481. weight: math.unit(120, "lb"),
  28482. name: "Back",
  28483. image: {
  28484. source: "./media/characters/snaps/back.svg",
  28485. extra: 2408 / 2258,
  28486. bottom: 15 / 2423
  28487. }
  28488. },
  28489. },
  28490. [
  28491. {
  28492. name: "Micro",
  28493. height: math.unit(9, "inches")
  28494. },
  28495. {
  28496. name: "Normal",
  28497. height: math.unit(5 + 2 / 12, "feet"),
  28498. default: true
  28499. },
  28500. {
  28501. name: "Mini Macro",
  28502. height: math.unit(10, "feet")
  28503. },
  28504. ]
  28505. ))
  28506. characterMakers.push(() => makeCharacter(
  28507. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28508. {
  28509. front: {
  28510. height: math.unit(1.8, "meters"),
  28511. weight: math.unit(85, "kg"),
  28512. name: "Front",
  28513. image: {
  28514. source: "./media/characters/azteck/front.svg",
  28515. extra: 2815 / 2625,
  28516. bottom: 89 / 2904
  28517. }
  28518. },
  28519. back: {
  28520. height: math.unit(1.8, "meters"),
  28521. weight: math.unit(85, "kg"),
  28522. name: "Back",
  28523. image: {
  28524. source: "./media/characters/azteck/back.svg",
  28525. extra: 2856 / 2648,
  28526. bottom: 85 / 2941
  28527. }
  28528. },
  28529. frontDressed: {
  28530. height: math.unit(1.8, "meters"),
  28531. weight: math.unit(85, "kg"),
  28532. name: "Front (Dressed)",
  28533. image: {
  28534. source: "./media/characters/azteck/front-dressed.svg",
  28535. extra: 2147 / 2003,
  28536. bottom: 68 / 2215
  28537. }
  28538. },
  28539. head: {
  28540. height: math.unit(0.47, "meters"),
  28541. weight: math.unit(85, "kg"),
  28542. name: "Head",
  28543. image: {
  28544. source: "./media/characters/azteck/head.svg"
  28545. }
  28546. },
  28547. },
  28548. [
  28549. {
  28550. name: "Bite sized",
  28551. height: math.unit(16, "cm")
  28552. },
  28553. {
  28554. name: "Normal",
  28555. height: math.unit(1.8, "meters"),
  28556. default: true
  28557. },
  28558. ]
  28559. ))
  28560. characterMakers.push(() => makeCharacter(
  28561. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28562. {
  28563. front: {
  28564. height: math.unit(6, "feet"),
  28565. weight: math.unit(150, "lb"),
  28566. name: "Front",
  28567. image: {
  28568. source: "./media/characters/pidge/front.svg",
  28569. extra: 620 / 588,
  28570. bottom: 9 / 629
  28571. }
  28572. },
  28573. back: {
  28574. height: math.unit(6, "feet"),
  28575. weight: math.unit(150, "lb"),
  28576. name: "Back",
  28577. image: {
  28578. source: "./media/characters/pidge/back.svg",
  28579. extra: 620 / 588,
  28580. bottom: 9 / 629
  28581. }
  28582. },
  28583. },
  28584. [
  28585. {
  28586. name: "Macro",
  28587. height: math.unit(1, "mile"),
  28588. default: true
  28589. },
  28590. ]
  28591. ))
  28592. characterMakers.push(() => makeCharacter(
  28593. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28594. {
  28595. front: {
  28596. height: math.unit(6, "feet"),
  28597. weight: math.unit(150, "lb"),
  28598. name: "Front",
  28599. image: {
  28600. source: "./media/characters/en/front.svg",
  28601. extra: 1697 / 1563,
  28602. bottom: 103 / 1800
  28603. }
  28604. },
  28605. back: {
  28606. height: math.unit(6, "feet"),
  28607. weight: math.unit(150, "lb"),
  28608. name: "Back",
  28609. image: {
  28610. source: "./media/characters/en/back.svg",
  28611. extra: 1700 / 1570,
  28612. bottom: 51 / 1751
  28613. }
  28614. },
  28615. frontDressed: {
  28616. height: math.unit(6, "feet"),
  28617. weight: math.unit(150, "lb"),
  28618. name: "Front (Dressed)",
  28619. image: {
  28620. source: "./media/characters/en/front-dressed.svg",
  28621. extra: 1697 / 1563,
  28622. bottom: 103 / 1800
  28623. }
  28624. },
  28625. backDressed: {
  28626. height: math.unit(6, "feet"),
  28627. weight: math.unit(150, "lb"),
  28628. name: "Back (Dressed)",
  28629. image: {
  28630. source: "./media/characters/en/back-dressed.svg",
  28631. extra: 1700 / 1570,
  28632. bottom: 51 / 1751
  28633. }
  28634. },
  28635. },
  28636. [
  28637. {
  28638. name: "Macro",
  28639. height: math.unit(210, "feet"),
  28640. default: true
  28641. },
  28642. ]
  28643. ))
  28644. characterMakers.push(() => makeCharacter(
  28645. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28646. {
  28647. front: {
  28648. height: math.unit(6, "feet"),
  28649. weight: math.unit(150, "lb"),
  28650. name: "Front",
  28651. image: {
  28652. source: "./media/characters/haze-orris/front.svg",
  28653. extra: 3975 / 3525,
  28654. bottom: 137 / 4112
  28655. }
  28656. },
  28657. },
  28658. [
  28659. {
  28660. name: "Micro",
  28661. height: math.unit(150, "mm"),
  28662. default: true
  28663. },
  28664. ]
  28665. ))
  28666. characterMakers.push(() => makeCharacter(
  28667. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28668. {
  28669. front: {
  28670. height: math.unit(6, "feet"),
  28671. weight: math.unit(150, "lb"),
  28672. name: "Front",
  28673. image: {
  28674. source: "./media/characters/casselene-yaro/front.svg",
  28675. extra: 4721 / 4541,
  28676. bottom: 82 / 4803
  28677. }
  28678. },
  28679. back: {
  28680. height: math.unit(6, "feet"),
  28681. weight: math.unit(150, "lb"),
  28682. name: "Back",
  28683. image: {
  28684. source: "./media/characters/casselene-yaro/back.svg",
  28685. extra: 4569 / 4377,
  28686. bottom: 69 / 4638
  28687. }
  28688. },
  28689. frontDressed: {
  28690. height: math.unit(6, "feet"),
  28691. weight: math.unit(150, "lb"),
  28692. name: "Front-dressed",
  28693. image: {
  28694. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28695. extra: 4721 / 4541,
  28696. bottom: 82 / 4803
  28697. }
  28698. },
  28699. },
  28700. [
  28701. {
  28702. name: "Macro",
  28703. height: math.unit(190, "feet"),
  28704. default: true
  28705. },
  28706. ]
  28707. ))
  28708. characterMakers.push(() => makeCharacter(
  28709. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28710. {
  28711. front: {
  28712. height: math.unit(6, "feet"),
  28713. weight: math.unit(150, "lb"),
  28714. name: "Front",
  28715. image: {
  28716. source: "./media/characters/myra-rue-delore/front.svg",
  28717. extra: 1340 / 1308,
  28718. bottom: 67 / 1407
  28719. }
  28720. },
  28721. back: {
  28722. height: math.unit(6, "feet"),
  28723. weight: math.unit(150, "lb"),
  28724. name: "Back",
  28725. image: {
  28726. source: "./media/characters/myra-rue-delore/back.svg",
  28727. extra: 1341 / 1310,
  28728. bottom: 40 / 1381
  28729. }
  28730. },
  28731. frontDressed: {
  28732. height: math.unit(6, "feet"),
  28733. weight: math.unit(150, "lb"),
  28734. name: "Front (Dressed)",
  28735. image: {
  28736. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28737. extra: 1340 / 1308,
  28738. bottom: 67 / 1407
  28739. }
  28740. },
  28741. },
  28742. [
  28743. {
  28744. name: "Macro",
  28745. height: math.unit(150, "feet"),
  28746. default: true
  28747. },
  28748. ]
  28749. ))
  28750. characterMakers.push(() => makeCharacter(
  28751. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28752. {
  28753. front: {
  28754. height: math.unit(10, "feet"),
  28755. weight: math.unit(15015, "lb"),
  28756. name: "Front",
  28757. image: {
  28758. source: "./media/characters/fem!plat/front.svg",
  28759. extra: 2799 / 2604,
  28760. bottom: 149 / 2948
  28761. }
  28762. },
  28763. },
  28764. [
  28765. {
  28766. name: "Normal",
  28767. height: math.unit(10, "feet"),
  28768. default: true
  28769. },
  28770. {
  28771. name: "Macro",
  28772. height: math.unit(100, "feet")
  28773. },
  28774. {
  28775. name: "Megamacro",
  28776. height: math.unit(1000, "feet")
  28777. },
  28778. ]
  28779. ))
  28780. characterMakers.push(() => makeCharacter(
  28781. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28782. {
  28783. front: {
  28784. height: math.unit(15 + 5 / 12, "feet"),
  28785. weight: math.unit(4600, "lb"),
  28786. name: "Front",
  28787. image: {
  28788. source: "./media/characters/neapolitan-ananassa/front.svg",
  28789. extra: 2903 / 2736,
  28790. bottom: 0 / 2903
  28791. }
  28792. },
  28793. side: {
  28794. height: math.unit(15 + 5 / 12, "feet"),
  28795. weight: math.unit(4600, "lb"),
  28796. name: "Side",
  28797. image: {
  28798. source: "./media/characters/neapolitan-ananassa/side.svg",
  28799. extra: 2925 / 2719,
  28800. bottom: 0 / 2925
  28801. }
  28802. },
  28803. back: {
  28804. height: math.unit(15 + 5 / 12, "feet"),
  28805. weight: math.unit(4600, "lb"),
  28806. name: "Back",
  28807. image: {
  28808. source: "./media/characters/neapolitan-ananassa/back.svg",
  28809. extra: 2903 / 2736,
  28810. bottom: 0 / 2903
  28811. }
  28812. },
  28813. },
  28814. [
  28815. {
  28816. name: "Normal",
  28817. height: math.unit(15 + 5 / 12, "feet"),
  28818. default: true
  28819. },
  28820. {
  28821. name: "Post-Millenium",
  28822. height: math.unit(35 + 5 / 12, "feet")
  28823. },
  28824. {
  28825. name: "Post-Era",
  28826. height: math.unit(450 + 5 / 12, "feet")
  28827. },
  28828. ]
  28829. ))
  28830. characterMakers.push(() => makeCharacter(
  28831. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28832. {
  28833. front: {
  28834. height: math.unit(300, "meters"),
  28835. weight: math.unit(125000, "tonnes"),
  28836. name: "Front",
  28837. image: {
  28838. source: "./media/characters/pazuzu/front.svg",
  28839. extra: 877 / 794,
  28840. bottom: 47 / 924
  28841. }
  28842. },
  28843. },
  28844. [
  28845. {
  28846. name: "Macro",
  28847. height: math.unit(300, "meters"),
  28848. default: true
  28849. },
  28850. ]
  28851. ))
  28852. characterMakers.push(() => makeCharacter(
  28853. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28854. {
  28855. side: {
  28856. height: math.unit(10 + 7 / 12, "feet"),
  28857. weight: math.unit(2.5, "tons"),
  28858. name: "Side",
  28859. image: {
  28860. source: "./media/characters/aasha/side.svg",
  28861. extra: 1345 / 1245,
  28862. bottom: 111 / 1456
  28863. }
  28864. },
  28865. back: {
  28866. height: math.unit(10 + 7 / 12, "feet"),
  28867. weight: math.unit(2.5, "tons"),
  28868. name: "Back",
  28869. image: {
  28870. source: "./media/characters/aasha/back.svg",
  28871. extra: 1133 / 1057,
  28872. bottom: 257 / 1390
  28873. }
  28874. },
  28875. },
  28876. [
  28877. {
  28878. name: "Normal",
  28879. height: math.unit(10 + 7 / 12, "feet"),
  28880. default: true
  28881. },
  28882. ]
  28883. ))
  28884. characterMakers.push(() => makeCharacter(
  28885. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28886. {
  28887. front: {
  28888. height: math.unit(6 + 3 / 12, "feet"),
  28889. name: "Front",
  28890. image: {
  28891. source: "./media/characters/nevan/front.svg",
  28892. extra: 704 / 704,
  28893. bottom: 28 / 732
  28894. }
  28895. },
  28896. back: {
  28897. height: math.unit(6 + 3 / 12, "feet"),
  28898. name: "Back",
  28899. image: {
  28900. source: "./media/characters/nevan/back.svg",
  28901. extra: 714 / 714,
  28902. bottom: 21 / 735
  28903. }
  28904. },
  28905. frontFlaccid: {
  28906. height: math.unit(6 + 3 / 12, "feet"),
  28907. name: "Front (Flaccid)",
  28908. image: {
  28909. source: "./media/characters/nevan/front-flaccid.svg",
  28910. extra: 704 / 704,
  28911. bottom: 28 / 732
  28912. }
  28913. },
  28914. frontErect: {
  28915. height: math.unit(6 + 3 / 12, "feet"),
  28916. name: "Front (Erect)",
  28917. image: {
  28918. source: "./media/characters/nevan/front-erect.svg",
  28919. extra: 704 / 704,
  28920. bottom: 28 / 732
  28921. }
  28922. },
  28923. backFlaccid: {
  28924. height: math.unit(6 + 3 / 12, "feet"),
  28925. name: "Back (Flaccid)",
  28926. image: {
  28927. source: "./media/characters/nevan/back-flaccid.svg",
  28928. extra: 714 / 714,
  28929. bottom: 21 / 735
  28930. }
  28931. },
  28932. },
  28933. [
  28934. {
  28935. name: "Normal",
  28936. height: math.unit(6 + 3 / 12, "feet"),
  28937. default: true
  28938. },
  28939. ]
  28940. ))
  28941. characterMakers.push(() => makeCharacter(
  28942. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28943. {
  28944. front: {
  28945. height: math.unit(4, "feet"),
  28946. name: "Front",
  28947. image: {
  28948. source: "./media/characters/arhan/front.svg",
  28949. extra: 3368 / 3133,
  28950. bottom: 0 / 3368
  28951. }
  28952. },
  28953. side: {
  28954. height: math.unit(4, "feet"),
  28955. name: "Side",
  28956. image: {
  28957. source: "./media/characters/arhan/side.svg",
  28958. extra: 3347 / 3105,
  28959. bottom: 0 / 3347
  28960. }
  28961. },
  28962. tongue: {
  28963. height: math.unit(1.42, "feet"),
  28964. name: "Tongue",
  28965. image: {
  28966. source: "./media/characters/arhan/tongue.svg"
  28967. }
  28968. },
  28969. head: {
  28970. height: math.unit(0.85, "feet"),
  28971. name: "Head",
  28972. image: {
  28973. source: "./media/characters/arhan/head.svg"
  28974. }
  28975. },
  28976. },
  28977. [
  28978. {
  28979. name: "Normal",
  28980. height: math.unit(4, "feet"),
  28981. default: true
  28982. },
  28983. ]
  28984. ))
  28985. characterMakers.push(() => makeCharacter(
  28986. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28987. {
  28988. front: {
  28989. height: math.unit(5 + 7.5 / 12, "feet"),
  28990. weight: math.unit(120, "lb"),
  28991. name: "Front",
  28992. image: {
  28993. source: "./media/characters/digi-duncan/front.svg",
  28994. extra: 330 / 326,
  28995. bottom: 16 / 346
  28996. }
  28997. },
  28998. side: {
  28999. height: math.unit(5 + 7.5 / 12, "feet"),
  29000. weight: math.unit(120, "lb"),
  29001. name: "Side",
  29002. image: {
  29003. source: "./media/characters/digi-duncan/side.svg",
  29004. extra: 341 / 337,
  29005. bottom: 1 / 342
  29006. }
  29007. },
  29008. back: {
  29009. height: math.unit(5 + 7.5 / 12, "feet"),
  29010. weight: math.unit(120, "lb"),
  29011. name: "Back",
  29012. image: {
  29013. source: "./media/characters/digi-duncan/back.svg",
  29014. extra: 330 / 326,
  29015. bottom: 12 / 342
  29016. }
  29017. },
  29018. },
  29019. [
  29020. {
  29021. name: "Speck",
  29022. height: math.unit(0.25, "mm")
  29023. },
  29024. {
  29025. name: "Micro",
  29026. height: math.unit(5, "mm")
  29027. },
  29028. {
  29029. name: "Tiny",
  29030. height: math.unit(0.5, "inches"),
  29031. default: true
  29032. },
  29033. {
  29034. name: "Human",
  29035. height: math.unit(5 + 7.5 / 12, "feet")
  29036. },
  29037. {
  29038. name: "Minigiant",
  29039. height: math.unit(8 + 5.25, "feet")
  29040. },
  29041. {
  29042. name: "Giant",
  29043. height: math.unit(2000, "feet")
  29044. },
  29045. {
  29046. name: "Mega",
  29047. height: math.unit(371.1, "miles")
  29048. },
  29049. ]
  29050. ))
  29051. characterMakers.push(() => makeCharacter(
  29052. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29053. {
  29054. front: {
  29055. height: math.unit(2, "meters"),
  29056. weight: math.unit(350, "kg"),
  29057. name: "Front",
  29058. image: {
  29059. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29060. extra: 898 / 838,
  29061. bottom: 9 / 907
  29062. }
  29063. },
  29064. },
  29065. [
  29066. {
  29067. name: "Micro",
  29068. height: math.unit(8, "meters")
  29069. },
  29070. {
  29071. name: "Normal",
  29072. height: math.unit(50, "meters"),
  29073. default: true
  29074. },
  29075. {
  29076. name: "Macro",
  29077. height: math.unit(500, "meters")
  29078. },
  29079. ]
  29080. ))
  29081. characterMakers.push(() => makeCharacter(
  29082. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29083. {
  29084. front: {
  29085. height: math.unit(6 + 6 / 12, "feet"),
  29086. name: "Front",
  29087. image: {
  29088. source: "./media/characters/khardesh/front.svg",
  29089. extra: 888 / 797,
  29090. bottom: 25 / 913
  29091. }
  29092. },
  29093. },
  29094. [
  29095. {
  29096. name: "Normal",
  29097. height: math.unit(6 + 6 / 12, "feet"),
  29098. default: true
  29099. },
  29100. {
  29101. name: "Normal+",
  29102. height: math.unit(4, "meters")
  29103. },
  29104. {
  29105. name: "Macro",
  29106. height: math.unit(50, "meters")
  29107. },
  29108. {
  29109. name: "Macro+",
  29110. height: math.unit(100, "meters")
  29111. },
  29112. {
  29113. name: "Megamacro",
  29114. height: math.unit(20, "km")
  29115. },
  29116. ]
  29117. ))
  29118. characterMakers.push(() => makeCharacter(
  29119. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29120. {
  29121. front: {
  29122. height: math.unit(6, "feet"),
  29123. weight: math.unit(150, "lb"),
  29124. name: "Front",
  29125. image: {
  29126. source: "./media/characters/kosho/front.svg",
  29127. extra: 1847 / 1847,
  29128. bottom: 86 / 1933
  29129. }
  29130. },
  29131. },
  29132. [
  29133. {
  29134. name: "Second-stage micro",
  29135. height: math.unit(0.5, "inches")
  29136. },
  29137. {
  29138. name: "First-stage micro",
  29139. height: math.unit(6, "inches")
  29140. },
  29141. {
  29142. name: "Normal",
  29143. height: math.unit(6, "feet"),
  29144. default: true
  29145. },
  29146. {
  29147. name: "First-stage macro",
  29148. height: math.unit(72, "feet")
  29149. },
  29150. {
  29151. name: "Second-stage macro",
  29152. height: math.unit(864, "feet")
  29153. },
  29154. ]
  29155. ))
  29156. characterMakers.push(() => makeCharacter(
  29157. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29158. {
  29159. normal: {
  29160. height: math.unit(4 + 6 / 12, "feet"),
  29161. name: "Normal",
  29162. image: {
  29163. source: "./media/characters/hydra/normal.svg",
  29164. extra: 2833 / 2634,
  29165. bottom: 68 / 2901
  29166. }
  29167. },
  29168. smol: {
  29169. height: math.unit(0.705, "inches"),
  29170. name: "Smol",
  29171. image: {
  29172. source: "./media/characters/hydra/smol.svg",
  29173. extra: 2715 / 2540,
  29174. bottom: 0 / 2715
  29175. }
  29176. },
  29177. },
  29178. [
  29179. {
  29180. name: "Normal",
  29181. height: math.unit(4 + 6 / 12, "feet"),
  29182. default: true
  29183. }
  29184. ]
  29185. ))
  29186. characterMakers.push(() => makeCharacter(
  29187. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29188. {
  29189. front: {
  29190. height: math.unit(0.6, "cm"),
  29191. name: "Front",
  29192. image: {
  29193. source: "./media/characters/daz/front.svg",
  29194. extra: 1682 / 1164,
  29195. bottom: 42 / 1724
  29196. }
  29197. },
  29198. },
  29199. [
  29200. {
  29201. name: "Normal",
  29202. height: math.unit(0.6, "cm"),
  29203. default: true
  29204. },
  29205. ]
  29206. ))
  29207. characterMakers.push(() => makeCharacter(
  29208. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29209. {
  29210. front: {
  29211. height: math.unit(6, "feet"),
  29212. weight: math.unit(235, "lb"),
  29213. name: "Front",
  29214. image: {
  29215. source: "./media/characters/theo-pangolin/front.svg",
  29216. extra: 1996 / 1969,
  29217. bottom: 115 / 2111
  29218. }
  29219. },
  29220. back: {
  29221. height: math.unit(6, "feet"),
  29222. weight: math.unit(235, "lb"),
  29223. name: "Back",
  29224. image: {
  29225. source: "./media/characters/theo-pangolin/back.svg",
  29226. extra: 1979 / 1979,
  29227. bottom: 40 / 2019
  29228. }
  29229. },
  29230. feral: {
  29231. height: math.unit(2, "feet"),
  29232. weight: math.unit(30, "lb"),
  29233. name: "Feral",
  29234. image: {
  29235. source: "./media/characters/theo-pangolin/feral.svg",
  29236. extra: 803 / 791,
  29237. bottom: 181 / 984
  29238. }
  29239. },
  29240. footFive: {
  29241. height: math.unit(1.43, "feet"),
  29242. name: "Foot (Five Toes)",
  29243. image: {
  29244. source: "./media/characters/theo-pangolin/foot-five.svg"
  29245. }
  29246. },
  29247. footFour: {
  29248. height: math.unit(1.43, "feet"),
  29249. name: "Foot (Four Toes)",
  29250. image: {
  29251. source: "./media/characters/theo-pangolin/foot-four.svg"
  29252. }
  29253. },
  29254. handFour: {
  29255. height: math.unit(0.81, "feet"),
  29256. name: "Hand (Four Fingers)",
  29257. image: {
  29258. source: "./media/characters/theo-pangolin/hand-four.svg"
  29259. }
  29260. },
  29261. handThree: {
  29262. height: math.unit(0.81, "feet"),
  29263. name: "Hand (Three Fingers)",
  29264. image: {
  29265. source: "./media/characters/theo-pangolin/hand-three.svg"
  29266. }
  29267. },
  29268. headFront: {
  29269. height: math.unit(1.37, "feet"),
  29270. name: "Head (Front)",
  29271. image: {
  29272. source: "./media/characters/theo-pangolin/head-front.svg"
  29273. }
  29274. },
  29275. headSide: {
  29276. height: math.unit(1.43, "feet"),
  29277. name: "Head (Side)",
  29278. image: {
  29279. source: "./media/characters/theo-pangolin/head-side.svg"
  29280. }
  29281. },
  29282. tongue: {
  29283. height: math.unit(2.29, "feet"),
  29284. name: "Tongue",
  29285. image: {
  29286. source: "./media/characters/theo-pangolin/tongue.svg"
  29287. }
  29288. },
  29289. },
  29290. [
  29291. {
  29292. name: "Normal",
  29293. height: math.unit(6, "feet")
  29294. },
  29295. {
  29296. name: "Macro",
  29297. height: math.unit(400, "feet"),
  29298. default: true
  29299. },
  29300. ]
  29301. ))
  29302. characterMakers.push(() => makeCharacter(
  29303. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29304. {
  29305. front: {
  29306. height: math.unit(6, "inches"),
  29307. weight: math.unit(0.036, "kg"),
  29308. name: "Front",
  29309. image: {
  29310. source: "./media/characters/renée/front.svg",
  29311. extra: 900 / 886,
  29312. bottom: 8 / 908
  29313. }
  29314. },
  29315. },
  29316. [
  29317. {
  29318. name: "Nano",
  29319. height: math.unit(1, "nm")
  29320. },
  29321. {
  29322. name: "Micro",
  29323. height: math.unit(1, "mm")
  29324. },
  29325. {
  29326. name: "Normal",
  29327. height: math.unit(6, "inches")
  29328. },
  29329. {
  29330. name: "Macro",
  29331. height: math.unit(2000, "feet"),
  29332. default: true
  29333. },
  29334. {
  29335. name: "Megamacro",
  29336. height: math.unit(2, "km")
  29337. },
  29338. {
  29339. name: "Gigamacro",
  29340. height: math.unit(2000, "km")
  29341. },
  29342. {
  29343. name: "Teramacro",
  29344. height: math.unit(250000, "km")
  29345. },
  29346. ]
  29347. ))
  29348. characterMakers.push(() => makeCharacter(
  29349. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29350. {
  29351. front: {
  29352. height: math.unit(4, "meters"),
  29353. weight: math.unit(150, "kg"),
  29354. name: "Front",
  29355. image: {
  29356. source: "./media/characters/caledvwlch/front.svg",
  29357. extra: 1760 / 1551,
  29358. bottom: 28 / 1788
  29359. }
  29360. },
  29361. side: {
  29362. height: math.unit(4, "meters"),
  29363. weight: math.unit(150, "kg"),
  29364. name: "Side",
  29365. image: {
  29366. source: "./media/characters/caledvwlch/side.svg",
  29367. extra: 1605 / 1536,
  29368. bottom: 31 / 1636
  29369. }
  29370. },
  29371. back: {
  29372. height: math.unit(4, "meters"),
  29373. weight: math.unit(150, "kg"),
  29374. name: "Back",
  29375. image: {
  29376. source: "./media/characters/caledvwlch/back.svg",
  29377. extra: 1635 / 1565,
  29378. bottom: 27 / 1662
  29379. }
  29380. },
  29381. },
  29382. [
  29383. {
  29384. name: "\"Incognito\"",
  29385. height: math.unit(4, "meters")
  29386. },
  29387. {
  29388. name: "Small rampage",
  29389. height: math.unit(600, "meters")
  29390. },
  29391. {
  29392. name: "Mega",
  29393. height: math.unit(30, "km")
  29394. },
  29395. {
  29396. name: "Home-size",
  29397. height: math.unit(50, "km"),
  29398. default: true
  29399. },
  29400. {
  29401. name: "Giga",
  29402. height: math.unit(300, "km")
  29403. },
  29404. {
  29405. name: "Lounging",
  29406. height: math.unit(11000, "km")
  29407. },
  29408. {
  29409. name: "Planet snacking",
  29410. height: math.unit(2000000, "km")
  29411. },
  29412. ]
  29413. ))
  29414. characterMakers.push(() => makeCharacter(
  29415. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29416. {
  29417. front: {
  29418. height: math.unit(6, "feet"),
  29419. weight: math.unit(215, "lb"),
  29420. name: "Front",
  29421. image: {
  29422. source: "./media/characters/sapphire-svell/front.svg",
  29423. extra: 495 / 455,
  29424. bottom: 20 / 515
  29425. }
  29426. },
  29427. back: {
  29428. height: math.unit(6, "feet"),
  29429. weight: math.unit(216, "lb"),
  29430. name: "Back",
  29431. image: {
  29432. source: "./media/characters/sapphire-svell/back.svg",
  29433. extra: 497 / 477,
  29434. bottom: 7 / 504
  29435. }
  29436. },
  29437. maw: {
  29438. height: math.unit(1.57, "feet"),
  29439. name: "Maw",
  29440. image: {
  29441. source: "./media/characters/sapphire-svell/maw.svg"
  29442. }
  29443. },
  29444. foot: {
  29445. height: math.unit(1.07, "feet"),
  29446. name: "Foot",
  29447. image: {
  29448. source: "./media/characters/sapphire-svell/foot.svg"
  29449. }
  29450. },
  29451. toering: {
  29452. height: math.unit(1.7, "inch"),
  29453. name: "Toering",
  29454. image: {
  29455. source: "./media/characters/sapphire-svell/toering.svg"
  29456. }
  29457. },
  29458. },
  29459. [
  29460. {
  29461. name: "Normal",
  29462. height: math.unit(300, "feet"),
  29463. default: true
  29464. },
  29465. {
  29466. name: "Augmented",
  29467. height: math.unit(1250, "feet")
  29468. },
  29469. {
  29470. name: "Unleashed",
  29471. height: math.unit(3000, "feet")
  29472. },
  29473. ]
  29474. ))
  29475. characterMakers.push(() => makeCharacter(
  29476. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29477. {
  29478. side: {
  29479. height: math.unit(2 + 3 / 12, "feet"),
  29480. weight: math.unit(110, "lb"),
  29481. name: "Side",
  29482. image: {
  29483. source: "./media/characters/glitch-flux/side.svg",
  29484. extra: 997 / 805,
  29485. bottom: 20 / 1017
  29486. }
  29487. },
  29488. },
  29489. [
  29490. {
  29491. name: "Normal",
  29492. height: math.unit(2 + 3 / 12, "feet"),
  29493. default: true
  29494. },
  29495. ]
  29496. ))
  29497. characterMakers.push(() => makeCharacter(
  29498. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29499. {
  29500. front: {
  29501. height: math.unit(4, "meters"),
  29502. name: "Front",
  29503. image: {
  29504. source: "./media/characters/mid/front.svg",
  29505. extra: 507 / 476,
  29506. bottom: 17 / 524
  29507. }
  29508. },
  29509. back: {
  29510. height: math.unit(4, "meters"),
  29511. name: "Back",
  29512. image: {
  29513. source: "./media/characters/mid/back.svg",
  29514. extra: 519 / 487,
  29515. bottom: 7 / 526
  29516. }
  29517. },
  29518. stuck: {
  29519. height: math.unit(2.2, "meters"),
  29520. name: "Stuck",
  29521. image: {
  29522. source: "./media/characters/mid/stuck.svg",
  29523. extra: 1951 / 1869,
  29524. bottom: 88 / 2039
  29525. }
  29526. }
  29527. },
  29528. [
  29529. {
  29530. name: "Normal",
  29531. height: math.unit(4, "meters"),
  29532. default: true
  29533. },
  29534. {
  29535. name: "Big",
  29536. height: math.unit(10, "meters")
  29537. },
  29538. {
  29539. name: "Macro",
  29540. height: math.unit(800, "meters")
  29541. },
  29542. {
  29543. name: "Megamacro",
  29544. height: math.unit(100, "km")
  29545. },
  29546. {
  29547. name: "Overgrown",
  29548. height: math.unit(1, "parsec")
  29549. },
  29550. ]
  29551. ))
  29552. characterMakers.push(() => makeCharacter(
  29553. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29554. {
  29555. front: {
  29556. height: math.unit(2.5, "meters"),
  29557. weight: math.unit(225, "kg"),
  29558. name: "Front",
  29559. image: {
  29560. source: "./media/characters/iris/front.svg",
  29561. extra: 3348 / 3251,
  29562. bottom: 205 / 3553
  29563. }
  29564. },
  29565. maw: {
  29566. height: math.unit(0.56, "meter"),
  29567. name: "Maw",
  29568. image: {
  29569. source: "./media/characters/iris/maw.svg"
  29570. }
  29571. },
  29572. },
  29573. [
  29574. {
  29575. name: "Mewter cat",
  29576. height: math.unit(1.2, "meters")
  29577. },
  29578. {
  29579. name: "Minimacro",
  29580. height: math.unit(2.5, "meters"),
  29581. default: true
  29582. },
  29583. {
  29584. name: "Macro",
  29585. height: math.unit(180, "meters")
  29586. },
  29587. {
  29588. name: "Megamacro",
  29589. height: math.unit(2746, "meters")
  29590. },
  29591. ]
  29592. ))
  29593. characterMakers.push(() => makeCharacter(
  29594. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29595. {
  29596. front: {
  29597. height: math.unit(6, "feet"),
  29598. weight: math.unit(135, "lb"),
  29599. name: "Front",
  29600. image: {
  29601. source: "./media/characters/axel/front.svg",
  29602. extra: 908 / 908,
  29603. bottom: 58 / 966
  29604. }
  29605. },
  29606. side: {
  29607. height: math.unit(6, "feet"),
  29608. weight: math.unit(135, "lb"),
  29609. name: "Side",
  29610. image: {
  29611. source: "./media/characters/axel/side.svg",
  29612. extra: 958 / 958,
  29613. bottom: 11 / 969
  29614. }
  29615. },
  29616. back: {
  29617. height: math.unit(6, "feet"),
  29618. weight: math.unit(135, "lb"),
  29619. name: "Back",
  29620. image: {
  29621. source: "./media/characters/axel/back.svg",
  29622. extra: 887 / 887,
  29623. bottom: 34 / 921
  29624. }
  29625. },
  29626. head: {
  29627. height: math.unit(1.07, "feet"),
  29628. name: "Head",
  29629. image: {
  29630. source: "./media/characters/axel/head.svg"
  29631. }
  29632. },
  29633. beak: {
  29634. height: math.unit(1.4, "feet"),
  29635. name: "Beak",
  29636. image: {
  29637. source: "./media/characters/axel/beak.svg"
  29638. }
  29639. },
  29640. beakSide: {
  29641. height: math.unit(1.4, "feet"),
  29642. name: "Beak Side",
  29643. image: {
  29644. source: "./media/characters/axel/beak-side.svg"
  29645. }
  29646. },
  29647. sheath: {
  29648. height: math.unit(0.5, "feet"),
  29649. name: "Sheath",
  29650. image: {
  29651. source: "./media/characters/axel/sheath.svg"
  29652. }
  29653. },
  29654. dick: {
  29655. height: math.unit(0.98, "feet"),
  29656. name: "Dick",
  29657. image: {
  29658. source: "./media/characters/axel/dick.svg"
  29659. }
  29660. },
  29661. },
  29662. [
  29663. {
  29664. name: "Macro",
  29665. height: math.unit(68, "meters"),
  29666. default: true
  29667. },
  29668. ]
  29669. ))
  29670. characterMakers.push(() => makeCharacter(
  29671. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29672. {
  29673. front: {
  29674. height: math.unit(3.5, "meters"),
  29675. weight: math.unit(1200, "kg"),
  29676. name: "Front",
  29677. image: {
  29678. source: "./media/characters/joanna/front.svg",
  29679. extra: 1596 / 1488,
  29680. bottom: 29 / 1625
  29681. }
  29682. },
  29683. back: {
  29684. height: math.unit(3.5, "meters"),
  29685. weight: math.unit(1200, "kg"),
  29686. name: "Back",
  29687. image: {
  29688. source: "./media/characters/joanna/back.svg",
  29689. extra: 1594 / 1495,
  29690. bottom: 26 / 1620
  29691. }
  29692. },
  29693. frontShorts: {
  29694. height: math.unit(3.5, "meters"),
  29695. weight: math.unit(1200, "kg"),
  29696. name: "Front (Shorts)",
  29697. image: {
  29698. source: "./media/characters/joanna/front-shorts.svg",
  29699. extra: 1596 / 1488,
  29700. bottom: 29 / 1625
  29701. }
  29702. },
  29703. frontBiker: {
  29704. height: math.unit(3.5, "meters"),
  29705. weight: math.unit(1200, "kg"),
  29706. name: "Front (Biker)",
  29707. image: {
  29708. source: "./media/characters/joanna/front-biker.svg",
  29709. extra: 1596 / 1488,
  29710. bottom: 29 / 1625
  29711. }
  29712. },
  29713. backBiker: {
  29714. height: math.unit(3.5, "meters"),
  29715. weight: math.unit(1200, "kg"),
  29716. name: "Back (Biker)",
  29717. image: {
  29718. source: "./media/characters/joanna/back-biker.svg",
  29719. extra: 1594 / 1495,
  29720. bottom: 88 / 1682
  29721. }
  29722. },
  29723. bikeLeft: {
  29724. height: math.unit(2.4, "meters"),
  29725. weight: math.unit(1600, "kg"),
  29726. name: "Bike (Left)",
  29727. image: {
  29728. source: "./media/characters/joanna/bike-left.svg",
  29729. extra: 720 / 720,
  29730. bottom: 8 / 728
  29731. }
  29732. },
  29733. bikeRight: {
  29734. height: math.unit(2.4, "meters"),
  29735. weight: math.unit(1600, "kg"),
  29736. name: "Bike (Right)",
  29737. image: {
  29738. source: "./media/characters/joanna/bike-right.svg",
  29739. extra: 720 / 720,
  29740. bottom: 8 / 728
  29741. }
  29742. },
  29743. },
  29744. [
  29745. {
  29746. name: "Incognito",
  29747. height: math.unit(3.5, "meters")
  29748. },
  29749. {
  29750. name: "Casual Big",
  29751. height: math.unit(200, "meters")
  29752. },
  29753. {
  29754. name: "Macro",
  29755. height: math.unit(600, "meters")
  29756. },
  29757. {
  29758. name: "Original",
  29759. height: math.unit(20, "km"),
  29760. default: true
  29761. },
  29762. {
  29763. name: "Giga",
  29764. height: math.unit(400, "km")
  29765. },
  29766. {
  29767. name: "Lounging",
  29768. height: math.unit(1500, "km")
  29769. },
  29770. {
  29771. name: "Planetary",
  29772. height: math.unit(200000, "km")
  29773. },
  29774. ]
  29775. ))
  29776. characterMakers.push(() => makeCharacter(
  29777. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29778. {
  29779. front: {
  29780. height: math.unit(6, "feet"),
  29781. weight: math.unit(150, "lb"),
  29782. name: "Front",
  29783. image: {
  29784. source: "./media/characters/hugo-sigil/front.svg",
  29785. extra: 522 / 500,
  29786. bottom: 2 / 524
  29787. }
  29788. },
  29789. back: {
  29790. height: math.unit(6, "feet"),
  29791. weight: math.unit(150, "lb"),
  29792. name: "Back",
  29793. image: {
  29794. source: "./media/characters/hugo-sigil/back.svg",
  29795. extra: 519 / 495,
  29796. bottom: 5 / 524
  29797. }
  29798. },
  29799. maw: {
  29800. height: math.unit(1.4, "feet"),
  29801. weight: math.unit(150, "lb"),
  29802. name: "Maw",
  29803. image: {
  29804. source: "./media/characters/hugo-sigil/maw.svg"
  29805. }
  29806. },
  29807. feet: {
  29808. height: math.unit(1.56, "feet"),
  29809. weight: math.unit(150, "lb"),
  29810. name: "Feet",
  29811. image: {
  29812. source: "./media/characters/hugo-sigil/feet.svg",
  29813. extra: 177 / 177,
  29814. bottom: 12 / 189
  29815. }
  29816. },
  29817. },
  29818. [
  29819. {
  29820. name: "Normal",
  29821. height: math.unit(6, "feet")
  29822. },
  29823. {
  29824. name: "Macro",
  29825. height: math.unit(200, "feet"),
  29826. default: true
  29827. },
  29828. ]
  29829. ))
  29830. characterMakers.push(() => makeCharacter(
  29831. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29832. {
  29833. front: {
  29834. height: math.unit(6, "feet"),
  29835. weight: math.unit(150, "lb"),
  29836. name: "Front",
  29837. image: {
  29838. source: "./media/characters/peri/front.svg",
  29839. extra: 2354 / 2233,
  29840. bottom: 49 / 2403
  29841. }
  29842. },
  29843. },
  29844. [
  29845. {
  29846. name: "Really Small",
  29847. height: math.unit(1, "nm")
  29848. },
  29849. {
  29850. name: "Micro",
  29851. height: math.unit(4, "inches")
  29852. },
  29853. {
  29854. name: "Normal",
  29855. height: math.unit(7, "inches"),
  29856. default: true
  29857. },
  29858. {
  29859. name: "Macro",
  29860. height: math.unit(400, "feet")
  29861. },
  29862. {
  29863. name: "Megamacro",
  29864. height: math.unit(100, "miles")
  29865. },
  29866. ]
  29867. ))
  29868. characterMakers.push(() => makeCharacter(
  29869. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29870. {
  29871. frontSlim: {
  29872. height: math.unit(7, "feet"),
  29873. name: "Front (Slim)",
  29874. image: {
  29875. source: "./media/characters/issilora/front-slim.svg",
  29876. extra: 529 / 449,
  29877. bottom: 53 / 582
  29878. }
  29879. },
  29880. sideSlim: {
  29881. height: math.unit(7, "feet"),
  29882. name: "Side (Slim)",
  29883. image: {
  29884. source: "./media/characters/issilora/side-slim.svg",
  29885. extra: 570 / 480,
  29886. bottom: 30 / 600
  29887. }
  29888. },
  29889. backSlim: {
  29890. height: math.unit(7, "feet"),
  29891. name: "Back (Slim)",
  29892. image: {
  29893. source: "./media/characters/issilora/back-slim.svg",
  29894. extra: 537 / 455,
  29895. bottom: 46 / 583
  29896. }
  29897. },
  29898. frontBuff: {
  29899. height: math.unit(7, "feet"),
  29900. name: "Front (Buff)",
  29901. image: {
  29902. source: "./media/characters/issilora/front-buff.svg",
  29903. extra: 2310 / 2035,
  29904. bottom: 335 / 2645
  29905. }
  29906. },
  29907. head: {
  29908. height: math.unit(1.94, "feet"),
  29909. name: "Head",
  29910. image: {
  29911. source: "./media/characters/issilora/head.svg"
  29912. }
  29913. },
  29914. },
  29915. [
  29916. {
  29917. name: "Minimum",
  29918. height: math.unit(7, "feet")
  29919. },
  29920. {
  29921. name: "Comfortable",
  29922. height: math.unit(17, "feet")
  29923. },
  29924. {
  29925. name: "Fun Size",
  29926. height: math.unit(47, "feet")
  29927. },
  29928. {
  29929. name: "Natural Macro",
  29930. height: math.unit(137, "feet"),
  29931. default: true
  29932. },
  29933. {
  29934. name: "Maximum Kaiju",
  29935. height: math.unit(397, "feet")
  29936. },
  29937. ]
  29938. ))
  29939. characterMakers.push(() => makeCharacter(
  29940. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29941. {
  29942. front: {
  29943. height: math.unit(50 + 9/12, "feet"),
  29944. weight: math.unit(32.8, "tons"),
  29945. name: "Front",
  29946. image: {
  29947. source: "./media/characters/irb'iiritaahn/front.svg",
  29948. extra: 1878/1826,
  29949. bottom: 326/2204
  29950. }
  29951. },
  29952. back: {
  29953. height: math.unit(50 + 9/12, "feet"),
  29954. weight: math.unit(32.8, "tons"),
  29955. name: "Back",
  29956. image: {
  29957. source: "./media/characters/irb'iiritaahn/back.svg",
  29958. extra: 2052/2018,
  29959. bottom: 152/2204
  29960. }
  29961. },
  29962. head: {
  29963. height: math.unit(12.86, "feet"),
  29964. name: "Head",
  29965. image: {
  29966. source: "./media/characters/irb'iiritaahn/head.svg"
  29967. }
  29968. },
  29969. maw: {
  29970. height: math.unit(9.66, "feet"),
  29971. name: "Maw",
  29972. image: {
  29973. source: "./media/characters/irb'iiritaahn/maw.svg"
  29974. }
  29975. },
  29976. frontDick: {
  29977. height: math.unit(8.78461, "feet"),
  29978. name: "Front Dick",
  29979. image: {
  29980. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29981. }
  29982. },
  29983. rearDick: {
  29984. height: math.unit(8.78461, "feet"),
  29985. name: "Rear Dick",
  29986. image: {
  29987. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29988. }
  29989. },
  29990. rearDickUnfolded: {
  29991. height: math.unit(8.78, "feet"),
  29992. name: "Rear Dick (Unfolded)",
  29993. image: {
  29994. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29995. }
  29996. },
  29997. wings: {
  29998. height: math.unit(43, "feet"),
  29999. name: "Wings",
  30000. image: {
  30001. source: "./media/characters/irb'iiritaahn/wings.svg"
  30002. }
  30003. },
  30004. },
  30005. [
  30006. {
  30007. name: "Macro",
  30008. height: math.unit(50 + 9/12, "feet"),
  30009. default: true
  30010. },
  30011. ]
  30012. ))
  30013. characterMakers.push(() => makeCharacter(
  30014. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30015. {
  30016. front: {
  30017. height: math.unit(205, "cm"),
  30018. weight: math.unit(102, "kg"),
  30019. name: "Front",
  30020. image: {
  30021. source: "./media/characters/irbisgreif/front.svg",
  30022. extra: 785/706,
  30023. bottom: 13/798
  30024. }
  30025. },
  30026. back: {
  30027. height: math.unit(205, "cm"),
  30028. weight: math.unit(102, "kg"),
  30029. name: "Back",
  30030. image: {
  30031. source: "./media/characters/irbisgreif/back.svg",
  30032. extra: 713/701,
  30033. bottom: 26/739
  30034. }
  30035. },
  30036. frontDressed: {
  30037. height: math.unit(216, "cm"),
  30038. weight: math.unit(102, "kg"),
  30039. name: "Front-dressed",
  30040. image: {
  30041. source: "./media/characters/irbisgreif/front-dressed.svg",
  30042. extra: 902/776,
  30043. bottom: 14/916
  30044. }
  30045. },
  30046. sideDressed: {
  30047. height: math.unit(195, "cm"),
  30048. weight: math.unit(102, "kg"),
  30049. name: "Side-dressed",
  30050. image: {
  30051. source: "./media/characters/irbisgreif/side-dressed.svg",
  30052. extra: 788/688,
  30053. bottom: 21/809
  30054. }
  30055. },
  30056. backDressed: {
  30057. height: math.unit(216, "cm"),
  30058. weight: math.unit(102, "kg"),
  30059. name: "Back-dressed",
  30060. image: {
  30061. source: "./media/characters/irbisgreif/back-dressed.svg",
  30062. extra: 901/783,
  30063. bottom: 10/911
  30064. }
  30065. },
  30066. dick: {
  30067. height: math.unit(0.49, "feet"),
  30068. name: "Dick",
  30069. image: {
  30070. source: "./media/characters/irbisgreif/dick.svg"
  30071. }
  30072. },
  30073. wingTop: {
  30074. height: math.unit(1.93 , "feet"),
  30075. name: "Wing-top",
  30076. image: {
  30077. source: "./media/characters/irbisgreif/wing-top.svg"
  30078. }
  30079. },
  30080. wingBottom: {
  30081. height: math.unit(1.93 , "feet"),
  30082. name: "Wing-bottom",
  30083. image: {
  30084. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30085. }
  30086. },
  30087. },
  30088. [
  30089. {
  30090. name: "Normal",
  30091. height: math.unit(216, "cm"),
  30092. default: true
  30093. },
  30094. ]
  30095. ))
  30096. characterMakers.push(() => makeCharacter(
  30097. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30098. {
  30099. front: {
  30100. height: math.unit(6, "feet"),
  30101. weight: math.unit(150, "lb"),
  30102. name: "Front",
  30103. image: {
  30104. source: "./media/characters/pride/front.svg",
  30105. extra: 1299/1230,
  30106. bottom: 18/1317
  30107. }
  30108. },
  30109. },
  30110. [
  30111. {
  30112. name: "Normal",
  30113. height: math.unit(7, "feet")
  30114. },
  30115. {
  30116. name: "Mini-macro",
  30117. height: math.unit(11, "feet")
  30118. },
  30119. {
  30120. name: "Macro",
  30121. height: math.unit(15, "meters"),
  30122. default: true
  30123. },
  30124. {
  30125. name: "Macro+",
  30126. height: math.unit(40, "meters")
  30127. },
  30128. ]
  30129. ))
  30130. characterMakers.push(() => makeCharacter(
  30131. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30132. {
  30133. front: {
  30134. height: math.unit(4 + 2 / 12, "feet"),
  30135. weight: math.unit(95, "lb"),
  30136. name: "Front",
  30137. image: {
  30138. source: "./media/characters/vaelophis-nyx/front.svg",
  30139. extra: 2532/2330,
  30140. bottom: 0/2532
  30141. }
  30142. },
  30143. back: {
  30144. height: math.unit(4 + 2 / 12, "feet"),
  30145. weight: math.unit(95, "lb"),
  30146. name: "Back",
  30147. image: {
  30148. source: "./media/characters/vaelophis-nyx/back.svg",
  30149. extra: 2484/2361,
  30150. bottom: 0/2484
  30151. }
  30152. },
  30153. feralSide: {
  30154. height: math.unit(2 + 1/12, "feet"),
  30155. weight: math.unit(20, "lb"),
  30156. name: "Feral (Side)",
  30157. image: {
  30158. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30159. extra: 1721/1581,
  30160. bottom: 70/1791
  30161. }
  30162. },
  30163. feralLazing: {
  30164. height: math.unit(1.08, "feet"),
  30165. weight: math.unit(20, "lb"),
  30166. name: "Feral (Lazing)",
  30167. image: {
  30168. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30169. extra: 822/822,
  30170. bottom: 248/1070
  30171. }
  30172. },
  30173. ear: {
  30174. height: math.unit(0.416, "feet"),
  30175. name: "Ear",
  30176. image: {
  30177. source: "./media/characters/vaelophis-nyx/ear.svg"
  30178. }
  30179. },
  30180. eye: {
  30181. height: math.unit(0.0748, "feet"),
  30182. name: "Eye",
  30183. image: {
  30184. source: "./media/characters/vaelophis-nyx/eye.svg"
  30185. }
  30186. },
  30187. mouth: {
  30188. height: math.unit(0.378, "feet"),
  30189. name: "Mouth",
  30190. image: {
  30191. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30192. }
  30193. },
  30194. spade: {
  30195. height: math.unit(0.55, "feet"),
  30196. name: "Spade",
  30197. image: {
  30198. source: "./media/characters/vaelophis-nyx/spade.svg"
  30199. }
  30200. },
  30201. },
  30202. [
  30203. {
  30204. name: "Normal",
  30205. height: math.unit(4 + 2/12, "feet"),
  30206. default: true
  30207. },
  30208. ]
  30209. ))
  30210. characterMakers.push(() => makeCharacter(
  30211. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30212. {
  30213. front: {
  30214. height: math.unit(7, "feet"),
  30215. weight: math.unit(231, "lb"),
  30216. name: "Front",
  30217. image: {
  30218. source: "./media/characters/flux/front.svg",
  30219. extra: 919/871,
  30220. bottom: 0/919
  30221. }
  30222. },
  30223. back: {
  30224. height: math.unit(7, "feet"),
  30225. weight: math.unit(231, "lb"),
  30226. name: "Back",
  30227. image: {
  30228. source: "./media/characters/flux/back.svg",
  30229. extra: 1040/992,
  30230. bottom: 0/1040
  30231. }
  30232. },
  30233. frontDressed: {
  30234. height: math.unit(7, "feet"),
  30235. weight: math.unit(231, "lb"),
  30236. name: "Front (Dressed)",
  30237. image: {
  30238. source: "./media/characters/flux/front-dressed.svg",
  30239. extra: 919/871,
  30240. bottom: 0/919
  30241. }
  30242. },
  30243. feralSide: {
  30244. height: math.unit(5, "feet"),
  30245. weight: math.unit(150, "lb"),
  30246. name: "Feral (Side)",
  30247. image: {
  30248. source: "./media/characters/flux/feral-side.svg",
  30249. extra: 598/528,
  30250. bottom: 28/626
  30251. }
  30252. },
  30253. head: {
  30254. height: math.unit(1.585, "feet"),
  30255. name: "Head",
  30256. image: {
  30257. source: "./media/characters/flux/head.svg"
  30258. }
  30259. },
  30260. headSide: {
  30261. height: math.unit(1.74, "feet"),
  30262. name: "Head (Side)",
  30263. image: {
  30264. source: "./media/characters/flux/head-side.svg"
  30265. }
  30266. },
  30267. headSideFire: {
  30268. height: math.unit(1.76, "feet"),
  30269. name: "Head (Side, Fire)",
  30270. image: {
  30271. source: "./media/characters/flux/head-side-fire.svg"
  30272. }
  30273. },
  30274. },
  30275. [
  30276. {
  30277. name: "Normal",
  30278. height: math.unit(7, "feet"),
  30279. default: true
  30280. },
  30281. ]
  30282. ))
  30283. characterMakers.push(() => makeCharacter(
  30284. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30285. {
  30286. front: {
  30287. height: math.unit(9, "feet"),
  30288. weight: math.unit(1012, "lb"),
  30289. name: "Front",
  30290. image: {
  30291. source: "./media/characters/ulfra-lupae/front.svg",
  30292. extra: 1083/1011,
  30293. bottom: 67/1150
  30294. }
  30295. },
  30296. },
  30297. [
  30298. {
  30299. name: "Micro",
  30300. height: math.unit(6, "inches")
  30301. },
  30302. {
  30303. name: "Socializing",
  30304. height: math.unit(6 + 5/12, "feet")
  30305. },
  30306. {
  30307. name: "Normal",
  30308. height: math.unit(9, "feet"),
  30309. default: true
  30310. },
  30311. {
  30312. name: "Macro",
  30313. height: math.unit(150, "feet")
  30314. },
  30315. ]
  30316. ))
  30317. characterMakers.push(() => makeCharacter(
  30318. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30319. {
  30320. front: {
  30321. height: math.unit(5 + 2/12, "feet"),
  30322. weight: math.unit(120, "lb"),
  30323. name: "Front",
  30324. image: {
  30325. source: "./media/characters/timber/front.svg",
  30326. extra: 2814/2705,
  30327. bottom: 181/2995
  30328. }
  30329. },
  30330. },
  30331. [
  30332. {
  30333. name: "Normal",
  30334. height: math.unit(5 + 2/12, "feet"),
  30335. default: true
  30336. },
  30337. ]
  30338. ))
  30339. characterMakers.push(() => makeCharacter(
  30340. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30341. {
  30342. front: {
  30343. height: math.unit(5 + 7/12, "feet"),
  30344. weight: math.unit(220, "lb"),
  30345. name: "Front",
  30346. image: {
  30347. source: "./media/characters/nicki/front.svg",
  30348. extra: 453/419,
  30349. bottom: 7/460
  30350. }
  30351. },
  30352. frontAlt: {
  30353. height: math.unit(5 + 7/12, "feet"),
  30354. weight: math.unit(220, "lb"),
  30355. name: "Front-alt",
  30356. image: {
  30357. source: "./media/characters/nicki/front-alt.svg",
  30358. extra: 435/411,
  30359. bottom: 12/447
  30360. }
  30361. },
  30362. back: {
  30363. height: math.unit(5 + 7/12, "feet"),
  30364. weight: math.unit(220, "lb"),
  30365. name: "Back",
  30366. image: {
  30367. source: "./media/characters/nicki/back.svg",
  30368. extra: 440/413,
  30369. bottom: 19/459
  30370. }
  30371. },
  30372. taur: {
  30373. height: math.unit(7 + 6/12, "feet"),
  30374. weight: math.unit(700, "lb"),
  30375. name: "Taur",
  30376. image: {
  30377. source: "./media/characters/nicki/taur.svg",
  30378. extra: 975/773,
  30379. bottom: 0/975
  30380. }
  30381. },
  30382. frontNsfw: {
  30383. height: math.unit(5 + 7/12, "feet"),
  30384. weight: math.unit(220, "lb"),
  30385. name: "Front (NSFW)",
  30386. image: {
  30387. source: "./media/characters/nicki/front-nsfw.svg",
  30388. extra: 453/419,
  30389. bottom: 7/460
  30390. }
  30391. },
  30392. frontNsfwAlt: {
  30393. height: math.unit(5 + 7/12, "feet"),
  30394. weight: math.unit(220, "lb"),
  30395. name: "Front (Alt, NSFW)",
  30396. image: {
  30397. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30398. extra: 435/411,
  30399. bottom: 12/447
  30400. }
  30401. },
  30402. backNsfw: {
  30403. height: math.unit(5 + 7/12, "feet"),
  30404. weight: math.unit(220, "lb"),
  30405. name: "Back (NSFW)",
  30406. image: {
  30407. source: "./media/characters/nicki/back-nsfw.svg",
  30408. extra: 440/413,
  30409. bottom: 19/459
  30410. }
  30411. },
  30412. head: {
  30413. height: math.unit(2.1, "feet"),
  30414. name: "Head",
  30415. image: {
  30416. source: "./media/characters/nicki/head.svg"
  30417. }
  30418. },
  30419. paw: {
  30420. height: math.unit(1.88, "feet"),
  30421. name: "Paw",
  30422. image: {
  30423. source: "./media/characters/nicki/paw.svg"
  30424. }
  30425. },
  30426. },
  30427. [
  30428. {
  30429. name: "Normal",
  30430. height: math.unit(5 + 7/12, "feet"),
  30431. default: true
  30432. },
  30433. ]
  30434. ))
  30435. characterMakers.push(() => makeCharacter(
  30436. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30437. {
  30438. front: {
  30439. height: math.unit(7 + 10/12, "feet"),
  30440. weight: math.unit(3.5, "tons"),
  30441. name: "Front",
  30442. image: {
  30443. source: "./media/characters/lee/front.svg",
  30444. extra: 1773/1615,
  30445. bottom: 86/1859
  30446. }
  30447. },
  30448. hand: {
  30449. height: math.unit(1.78, "feet"),
  30450. name: "Hand",
  30451. image: {
  30452. source: "./media/characters/lee/hand.svg"
  30453. }
  30454. },
  30455. maw: {
  30456. height: math.unit(1.18, "feet"),
  30457. name: "Maw",
  30458. image: {
  30459. source: "./media/characters/lee/maw.svg"
  30460. }
  30461. },
  30462. },
  30463. [
  30464. {
  30465. name: "Normal",
  30466. height: math.unit(7 + 10/12, "feet"),
  30467. default: true
  30468. },
  30469. ]
  30470. ))
  30471. characterMakers.push(() => makeCharacter(
  30472. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30473. {
  30474. front: {
  30475. height: math.unit(9, "feet"),
  30476. name: "Front",
  30477. image: {
  30478. source: "./media/characters/guti/front.svg",
  30479. extra: 4551/4355,
  30480. bottom: 123/4674
  30481. }
  30482. },
  30483. tongue: {
  30484. height: math.unit(1, "feet"),
  30485. name: "Tongue",
  30486. image: {
  30487. source: "./media/characters/guti/tongue.svg"
  30488. }
  30489. },
  30490. paw: {
  30491. height: math.unit(1.18, "feet"),
  30492. name: "Paw",
  30493. image: {
  30494. source: "./media/characters/guti/paw.svg"
  30495. }
  30496. },
  30497. },
  30498. [
  30499. {
  30500. name: "Normal",
  30501. height: math.unit(9, "feet"),
  30502. default: true
  30503. },
  30504. ]
  30505. ))
  30506. characterMakers.push(() => makeCharacter(
  30507. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30508. {
  30509. side: {
  30510. height: math.unit(5, "meters"),
  30511. name: "Side",
  30512. image: {
  30513. source: "./media/characters/vesper/side.svg",
  30514. extra: 1605/1518,
  30515. bottom: 0/1605
  30516. }
  30517. },
  30518. },
  30519. [
  30520. {
  30521. name: "Small",
  30522. height: math.unit(5, "meters")
  30523. },
  30524. {
  30525. name: "Sage",
  30526. height: math.unit(100, "meters"),
  30527. default: true
  30528. },
  30529. {
  30530. name: "Fun Size",
  30531. height: math.unit(600, "meters")
  30532. },
  30533. {
  30534. name: "Goddess",
  30535. height: math.unit(20000, "km")
  30536. },
  30537. {
  30538. name: "Maximum",
  30539. height: math.unit(5, "galaxies")
  30540. },
  30541. ]
  30542. ))
  30543. characterMakers.push(() => makeCharacter(
  30544. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30545. {
  30546. front: {
  30547. height: math.unit(6 + 3/12, "feet"),
  30548. weight: math.unit(190, "lb"),
  30549. name: "Front",
  30550. image: {
  30551. source: "./media/characters/gawain/front.svg",
  30552. extra: 2222/2139,
  30553. bottom: 90/2312
  30554. }
  30555. },
  30556. back: {
  30557. height: math.unit(6 + 3/12, "feet"),
  30558. weight: math.unit(190, "lb"),
  30559. name: "Back",
  30560. image: {
  30561. source: "./media/characters/gawain/back.svg",
  30562. extra: 2199/2111,
  30563. bottom: 73/2272
  30564. }
  30565. },
  30566. },
  30567. [
  30568. {
  30569. name: "Normal",
  30570. height: math.unit(6 + 3/12, "feet"),
  30571. default: true
  30572. },
  30573. ]
  30574. ))
  30575. characterMakers.push(() => makeCharacter(
  30576. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30577. {
  30578. side: {
  30579. height: math.unit(3.5, "meters"),
  30580. weight: math.unit(16000, "lb"),
  30581. name: "Side",
  30582. image: {
  30583. source: "./media/characters/dascalti/side.svg",
  30584. extra: 392/273,
  30585. bottom: 47/439
  30586. }
  30587. },
  30588. breath: {
  30589. height: math.unit(7.4, "feet"),
  30590. name: "Breath",
  30591. image: {
  30592. source: "./media/characters/dascalti/breath.svg"
  30593. }
  30594. },
  30595. fed: {
  30596. height: math.unit(3.6, "meters"),
  30597. weight: math.unit(16000, "lb"),
  30598. name: "Fed",
  30599. image: {
  30600. source: "./media/characters/dascalti/fed.svg",
  30601. extra: 1419/820,
  30602. bottom: 95/1514
  30603. }
  30604. },
  30605. },
  30606. [
  30607. {
  30608. name: "Normal",
  30609. height: math.unit(3.5, "meters"),
  30610. default: true
  30611. },
  30612. ]
  30613. ))
  30614. characterMakers.push(() => makeCharacter(
  30615. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30616. {
  30617. front: {
  30618. height: math.unit(3 + 5/12, "feet"),
  30619. name: "Front",
  30620. image: {
  30621. source: "./media/characters/mauve/front.svg",
  30622. extra: 1126/1033,
  30623. bottom: 65/1191
  30624. }
  30625. },
  30626. side: {
  30627. height: math.unit(3 + 5/12, "feet"),
  30628. name: "Side",
  30629. image: {
  30630. source: "./media/characters/mauve/side.svg",
  30631. extra: 1089/1001,
  30632. bottom: 29/1118
  30633. }
  30634. },
  30635. back: {
  30636. height: math.unit(3 + 5/12, "feet"),
  30637. name: "Back",
  30638. image: {
  30639. source: "./media/characters/mauve/back.svg",
  30640. extra: 1173/1053,
  30641. bottom: 109/1282
  30642. }
  30643. },
  30644. },
  30645. [
  30646. {
  30647. name: "Normal",
  30648. height: math.unit(3 + 5/12, "feet"),
  30649. default: true
  30650. },
  30651. ]
  30652. ))
  30653. characterMakers.push(() => makeCharacter(
  30654. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30655. {
  30656. front: {
  30657. height: math.unit(6 + 3/12, "feet"),
  30658. weight: math.unit(430, "lb"),
  30659. name: "Front",
  30660. image: {
  30661. source: "./media/characters/carlos/front.svg",
  30662. extra: 1964/1913,
  30663. bottom: 70/2034
  30664. }
  30665. },
  30666. },
  30667. [
  30668. {
  30669. name: "Normal",
  30670. height: math.unit(6 + 3/12, "feet"),
  30671. default: true
  30672. },
  30673. ]
  30674. ))
  30675. characterMakers.push(() => makeCharacter(
  30676. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30677. {
  30678. back: {
  30679. height: math.unit(5 + 10/12, "feet"),
  30680. weight: math.unit(200, "lb"),
  30681. name: "Back",
  30682. image: {
  30683. source: "./media/characters/jax/back.svg",
  30684. extra: 764/739,
  30685. bottom: 25/789
  30686. }
  30687. },
  30688. },
  30689. [
  30690. {
  30691. name: "Normal",
  30692. height: math.unit(5 + 10/12, "feet"),
  30693. default: true
  30694. },
  30695. ]
  30696. ))
  30697. characterMakers.push(() => makeCharacter(
  30698. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30699. {
  30700. front: {
  30701. height: math.unit(8, "feet"),
  30702. weight: math.unit(250, "lb"),
  30703. name: "Front",
  30704. image: {
  30705. source: "./media/characters/eikthynir/front.svg",
  30706. extra: 1332/1166,
  30707. bottom: 82/1414
  30708. }
  30709. },
  30710. back: {
  30711. height: math.unit(8, "feet"),
  30712. weight: math.unit(250, "lb"),
  30713. name: "Back",
  30714. image: {
  30715. source: "./media/characters/eikthynir/back.svg",
  30716. extra: 1342/1190,
  30717. bottom: 19/1361
  30718. }
  30719. },
  30720. dick: {
  30721. height: math.unit(2.35, "feet"),
  30722. name: "Dick",
  30723. image: {
  30724. source: "./media/characters/eikthynir/dick.svg"
  30725. }
  30726. },
  30727. },
  30728. [
  30729. {
  30730. name: "Normal",
  30731. height: math.unit(8, "feet"),
  30732. default: true
  30733. },
  30734. ]
  30735. ))
  30736. characterMakers.push(() => makeCharacter(
  30737. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30738. {
  30739. front: {
  30740. height: math.unit(99, "meters"),
  30741. weight: math.unit(13000, "tons"),
  30742. name: "Front",
  30743. image: {
  30744. source: "./media/characters/zlmos/front.svg",
  30745. extra: 2202/1992,
  30746. bottom: 315/2517
  30747. }
  30748. },
  30749. },
  30750. [
  30751. {
  30752. name: "Macro",
  30753. height: math.unit(99, "meters"),
  30754. default: true
  30755. },
  30756. ]
  30757. ))
  30758. characterMakers.push(() => makeCharacter(
  30759. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30760. {
  30761. front: {
  30762. height: math.unit(6 + 5/12, "feet"),
  30763. name: "Front",
  30764. image: {
  30765. source: "./media/characters/purri/front.svg",
  30766. extra: 1698/1610,
  30767. bottom: 32/1730
  30768. }
  30769. },
  30770. frontAlt: {
  30771. height: math.unit(6 + 5/12, "feet"),
  30772. name: "Front (Alt)",
  30773. image: {
  30774. source: "./media/characters/purri/front-alt.svg",
  30775. extra: 450/420,
  30776. bottom: 26/476
  30777. }
  30778. },
  30779. boots: {
  30780. height: math.unit(5.5, "feet"),
  30781. name: "Boots",
  30782. image: {
  30783. source: "./media/characters/purri/boots.svg",
  30784. extra: 905/853,
  30785. bottom: 18/923
  30786. }
  30787. },
  30788. lying: {
  30789. height: math.unit(2, "feet"),
  30790. name: "Lying",
  30791. image: {
  30792. source: "./media/characters/purri/lying.svg",
  30793. extra: 940/843,
  30794. bottom: 146/1086
  30795. }
  30796. },
  30797. devious: {
  30798. height: math.unit(1.77, "feet"),
  30799. name: "Devious",
  30800. image: {
  30801. source: "./media/characters/purri/devious.svg",
  30802. extra: 1440/1155,
  30803. bottom: 147/1587
  30804. }
  30805. },
  30806. bean: {
  30807. height: math.unit(1.94, "feet"),
  30808. name: "Bean",
  30809. image: {
  30810. source: "./media/characters/purri/bean.svg"
  30811. }
  30812. },
  30813. },
  30814. [
  30815. {
  30816. name: "Micro",
  30817. height: math.unit(1, "mm")
  30818. },
  30819. {
  30820. name: "Normal",
  30821. height: math.unit(6 + 5/12, "feet"),
  30822. default: true
  30823. },
  30824. {
  30825. name: "Macro :3c",
  30826. height: math.unit(2, "miles")
  30827. },
  30828. ]
  30829. ))
  30830. characterMakers.push(() => makeCharacter(
  30831. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30832. {
  30833. front: {
  30834. height: math.unit(6 + 2/12, "feet"),
  30835. weight: math.unit(250, "lb"),
  30836. name: "Front",
  30837. image: {
  30838. source: "./media/characters/moonlight/front.svg",
  30839. extra: 1044/908,
  30840. bottom: 56/1100
  30841. }
  30842. },
  30843. feral: {
  30844. height: math.unit(3 + 1/12, "feet"),
  30845. weight: math.unit(50, "kg"),
  30846. name: "Feral",
  30847. image: {
  30848. source: "./media/characters/moonlight/feral.svg",
  30849. extra: 3705/2791,
  30850. bottom: 145/3850
  30851. }
  30852. },
  30853. paw: {
  30854. height: math.unit(1, "feet"),
  30855. name: "Paw",
  30856. image: {
  30857. source: "./media/characters/moonlight/paw.svg"
  30858. }
  30859. },
  30860. paws: {
  30861. height: math.unit(0.98, "feet"),
  30862. name: "Paws",
  30863. image: {
  30864. source: "./media/characters/moonlight/paws.svg",
  30865. extra: 939/939,
  30866. bottom: 50/989
  30867. }
  30868. },
  30869. mouth: {
  30870. height: math.unit(0.48, "feet"),
  30871. name: "Mouth",
  30872. image: {
  30873. source: "./media/characters/moonlight/mouth.svg"
  30874. }
  30875. },
  30876. dick: {
  30877. height: math.unit(1.46, "feet"),
  30878. name: "Dick",
  30879. image: {
  30880. source: "./media/characters/moonlight/dick.svg"
  30881. }
  30882. },
  30883. },
  30884. [
  30885. {
  30886. name: "Normal",
  30887. height: math.unit(6 + 2/12, "feet"),
  30888. default: true
  30889. },
  30890. {
  30891. name: "Macro",
  30892. height: math.unit(300, "feet")
  30893. },
  30894. {
  30895. name: "Macro+",
  30896. height: math.unit(1, "mile")
  30897. },
  30898. {
  30899. name: "Mt. Moon",
  30900. height: math.unit(5, "miles")
  30901. },
  30902. {
  30903. name: "Megamacro",
  30904. height: math.unit(15, "miles")
  30905. },
  30906. ]
  30907. ))
  30908. characterMakers.push(() => makeCharacter(
  30909. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30910. {
  30911. back: {
  30912. height: math.unit(6, "feet"),
  30913. weight: math.unit(150, "lb"),
  30914. name: "Back",
  30915. image: {
  30916. source: "./media/characters/sylen/back.svg",
  30917. extra: 1335/1273,
  30918. bottom: 107/1442
  30919. }
  30920. },
  30921. },
  30922. [
  30923. {
  30924. name: "Normal",
  30925. height: math.unit(5 + 5/12, "feet")
  30926. },
  30927. {
  30928. name: "Megamacro",
  30929. height: math.unit(3, "miles"),
  30930. default: true
  30931. },
  30932. ]
  30933. ))
  30934. characterMakers.push(() => makeCharacter(
  30935. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30936. {
  30937. front: {
  30938. height: math.unit(6, "feet"),
  30939. weight: math.unit(190, "lb"),
  30940. name: "Front",
  30941. image: {
  30942. source: "./media/characters/huttser/front.svg",
  30943. extra: 1152/1058,
  30944. bottom: 23/1175
  30945. }
  30946. },
  30947. side: {
  30948. height: math.unit(6, "feet"),
  30949. weight: math.unit(190, "lb"),
  30950. name: "Side",
  30951. image: {
  30952. source: "./media/characters/huttser/side.svg",
  30953. extra: 1174/1065,
  30954. bottom: 18/1192
  30955. }
  30956. },
  30957. back: {
  30958. height: math.unit(6, "feet"),
  30959. weight: math.unit(190, "lb"),
  30960. name: "Back",
  30961. image: {
  30962. source: "./media/characters/huttser/back.svg",
  30963. extra: 1158/1056,
  30964. bottom: 12/1170
  30965. }
  30966. },
  30967. },
  30968. [
  30969. ]
  30970. ))
  30971. characterMakers.push(() => makeCharacter(
  30972. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30973. {
  30974. side: {
  30975. height: math.unit(12 + 9/12, "feet"),
  30976. weight: math.unit(15000, "lb"),
  30977. name: "Side",
  30978. image: {
  30979. source: "./media/characters/faan/side.svg",
  30980. extra: 2747/2697,
  30981. bottom: 0/2747
  30982. }
  30983. },
  30984. front: {
  30985. height: math.unit(12 + 9/12, "feet"),
  30986. weight: math.unit(15000, "lb"),
  30987. name: "Front",
  30988. image: {
  30989. source: "./media/characters/faan/front.svg",
  30990. extra: 607/571,
  30991. bottom: 24/631
  30992. }
  30993. },
  30994. head: {
  30995. height: math.unit(2.85, "feet"),
  30996. name: "Head",
  30997. image: {
  30998. source: "./media/characters/faan/head.svg"
  30999. }
  31000. },
  31001. headAlt: {
  31002. height: math.unit(3.13, "feet"),
  31003. name: "Head-alt",
  31004. image: {
  31005. source: "./media/characters/faan/head-alt.svg"
  31006. }
  31007. },
  31008. },
  31009. [
  31010. {
  31011. name: "Normal",
  31012. height: math.unit(12 + 9/12, "feet"),
  31013. default: true
  31014. },
  31015. ]
  31016. ))
  31017. characterMakers.push(() => makeCharacter(
  31018. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31019. {
  31020. front: {
  31021. height: math.unit(6, "feet"),
  31022. weight: math.unit(300, "lb"),
  31023. name: "Front",
  31024. image: {
  31025. source: "./media/characters/tanio/front.svg",
  31026. extra: 711/673,
  31027. bottom: 25/736
  31028. }
  31029. },
  31030. },
  31031. [
  31032. {
  31033. name: "Normal",
  31034. height: math.unit(6, "feet"),
  31035. default: true
  31036. },
  31037. ]
  31038. ))
  31039. characterMakers.push(() => makeCharacter(
  31040. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31041. {
  31042. front: {
  31043. height: math.unit(3, "inches"),
  31044. name: "Front",
  31045. image: {
  31046. source: "./media/characters/noboru/front.svg",
  31047. extra: 1039/932,
  31048. bottom: 18/1057
  31049. }
  31050. },
  31051. },
  31052. [
  31053. {
  31054. name: "Micro",
  31055. height: math.unit(3, "inches"),
  31056. default: true
  31057. },
  31058. ]
  31059. ))
  31060. characterMakers.push(() => makeCharacter(
  31061. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31062. {
  31063. front: {
  31064. height: math.unit(1.85, "meters"),
  31065. weight: math.unit(80, "kg"),
  31066. name: "Front",
  31067. image: {
  31068. source: "./media/characters/daniel-barrett/front.svg",
  31069. extra: 355/337,
  31070. bottom: 9/364
  31071. }
  31072. },
  31073. },
  31074. [
  31075. {
  31076. name: "Pico",
  31077. height: math.unit(0.0433, "mm")
  31078. },
  31079. {
  31080. name: "Nano",
  31081. height: math.unit(1.5, "mm")
  31082. },
  31083. {
  31084. name: "Micro",
  31085. height: math.unit(5.3, "cm"),
  31086. default: true
  31087. },
  31088. {
  31089. name: "Normal",
  31090. height: math.unit(1.85, "meters")
  31091. },
  31092. {
  31093. name: "Macro",
  31094. height: math.unit(64.7, "meters")
  31095. },
  31096. {
  31097. name: "Megamacro",
  31098. height: math.unit(2.26, "km")
  31099. },
  31100. {
  31101. name: "Gigamacro",
  31102. height: math.unit(79, "km")
  31103. },
  31104. {
  31105. name: "Teramacro",
  31106. height: math.unit(2765, "km")
  31107. },
  31108. {
  31109. name: "Petamacro",
  31110. height: math.unit(96678, "km")
  31111. },
  31112. ]
  31113. ))
  31114. characterMakers.push(() => makeCharacter(
  31115. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31116. {
  31117. front: {
  31118. height: math.unit(30, "meters"),
  31119. weight: math.unit(400, "tons"),
  31120. name: "Front",
  31121. image: {
  31122. source: "./media/characters/zeel/front.svg",
  31123. extra: 2599/2599,
  31124. bottom: 226/2825
  31125. }
  31126. },
  31127. },
  31128. [
  31129. {
  31130. name: "Macro",
  31131. height: math.unit(30, "meters"),
  31132. default: true
  31133. },
  31134. ]
  31135. ))
  31136. characterMakers.push(() => makeCharacter(
  31137. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31138. {
  31139. front: {
  31140. height: math.unit(6 + 7/12, "feet"),
  31141. weight: math.unit(210, "lb"),
  31142. name: "Front",
  31143. image: {
  31144. source: "./media/characters/tarn/front.svg",
  31145. extra: 3517/3220,
  31146. bottom: 91/3608
  31147. }
  31148. },
  31149. back: {
  31150. height: math.unit(6 + 7/12, "feet"),
  31151. weight: math.unit(210, "lb"),
  31152. name: "Back",
  31153. image: {
  31154. source: "./media/characters/tarn/back.svg",
  31155. extra: 3566/3241,
  31156. bottom: 34/3600
  31157. }
  31158. },
  31159. dick: {
  31160. height: math.unit(1.65, "feet"),
  31161. name: "Dick",
  31162. image: {
  31163. source: "./media/characters/tarn/dick.svg"
  31164. }
  31165. },
  31166. paw: {
  31167. height: math.unit(1.80, "feet"),
  31168. name: "Paw",
  31169. image: {
  31170. source: "./media/characters/tarn/paw.svg"
  31171. }
  31172. },
  31173. tongue: {
  31174. height: math.unit(0.97, "feet"),
  31175. name: "Tongue",
  31176. image: {
  31177. source: "./media/characters/tarn/tongue.svg"
  31178. }
  31179. },
  31180. },
  31181. [
  31182. {
  31183. name: "Micro",
  31184. height: math.unit(4, "inches")
  31185. },
  31186. {
  31187. name: "Normal",
  31188. height: math.unit(6 + 7/12, "feet"),
  31189. default: true
  31190. },
  31191. {
  31192. name: "Macro",
  31193. height: math.unit(300, "feet")
  31194. },
  31195. ]
  31196. ))
  31197. characterMakers.push(() => makeCharacter(
  31198. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31199. {
  31200. front: {
  31201. height: math.unit(5 + 7/12, "feet"),
  31202. weight: math.unit(80, "kg"),
  31203. name: "Front",
  31204. image: {
  31205. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31206. extra: 3023/2865,
  31207. bottom: 33/3056
  31208. }
  31209. },
  31210. back: {
  31211. height: math.unit(5 + 7/12, "feet"),
  31212. weight: math.unit(80, "kg"),
  31213. name: "Back",
  31214. image: {
  31215. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31216. extra: 3020/2886,
  31217. bottom: 30/3050
  31218. }
  31219. },
  31220. dick: {
  31221. height: math.unit(0.98, "feet"),
  31222. name: "Dick",
  31223. image: {
  31224. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31225. }
  31226. },
  31227. anatomy: {
  31228. height: math.unit(2.86, "feet"),
  31229. name: "Anatomy",
  31230. image: {
  31231. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31232. }
  31233. },
  31234. },
  31235. [
  31236. {
  31237. name: "Really Small",
  31238. height: math.unit(2, "inches")
  31239. },
  31240. {
  31241. name: "Micro",
  31242. height: math.unit(5.583, "inches")
  31243. },
  31244. {
  31245. name: "Normal",
  31246. height: math.unit(5 + 7/12, "feet"),
  31247. default: true
  31248. },
  31249. {
  31250. name: "Macro",
  31251. height: math.unit(67, "feet")
  31252. },
  31253. {
  31254. name: "Megamacro",
  31255. height: math.unit(134, "feet")
  31256. },
  31257. ]
  31258. ))
  31259. characterMakers.push(() => makeCharacter(
  31260. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31261. {
  31262. front: {
  31263. height: math.unit(9, "feet"),
  31264. weight: math.unit(120, "lb"),
  31265. name: "Front",
  31266. image: {
  31267. source: "./media/characters/sally/front.svg",
  31268. extra: 1506/1349,
  31269. bottom: 66/1572
  31270. }
  31271. },
  31272. },
  31273. [
  31274. {
  31275. name: "Normal",
  31276. height: math.unit(9, "feet"),
  31277. default: true
  31278. },
  31279. ]
  31280. ))
  31281. characterMakers.push(() => makeCharacter(
  31282. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31283. {
  31284. front: {
  31285. height: math.unit(8, "feet"),
  31286. weight: math.unit(900, "lb"),
  31287. name: "Front",
  31288. image: {
  31289. source: "./media/characters/owen/front.svg",
  31290. extra: 1761/1657,
  31291. bottom: 74/1835
  31292. }
  31293. },
  31294. side: {
  31295. height: math.unit(8, "feet"),
  31296. weight: math.unit(900, "lb"),
  31297. name: "Side",
  31298. image: {
  31299. source: "./media/characters/owen/side.svg",
  31300. extra: 1797/1734,
  31301. bottom: 30/1827
  31302. }
  31303. },
  31304. back: {
  31305. height: math.unit(8, "feet"),
  31306. weight: math.unit(900, "lb"),
  31307. name: "Back",
  31308. image: {
  31309. source: "./media/characters/owen/back.svg",
  31310. extra: 1796/1706,
  31311. bottom: 59/1855
  31312. }
  31313. },
  31314. maw: {
  31315. height: math.unit(1.76, "feet"),
  31316. name: "Maw",
  31317. image: {
  31318. source: "./media/characters/owen/maw.svg"
  31319. }
  31320. },
  31321. },
  31322. [
  31323. {
  31324. name: "Normal",
  31325. height: math.unit(8, "feet"),
  31326. default: true
  31327. },
  31328. ]
  31329. ))
  31330. characterMakers.push(() => makeCharacter(
  31331. { name: "Ryth", species: ["gremlin"], tags: ["anthro"] },
  31332. {
  31333. front: {
  31334. height: math.unit(4, "feet"),
  31335. weight: math.unit(400, "lb"),
  31336. name: "Front",
  31337. image: {
  31338. source: "./media/characters/ryth/front.svg",
  31339. extra: 876/691,
  31340. bottom: 25/901
  31341. }
  31342. },
  31343. },
  31344. [
  31345. {
  31346. name: "Normal",
  31347. height: math.unit(4, "feet"),
  31348. default: true
  31349. },
  31350. ]
  31351. ))
  31352. characterMakers.push(() => makeCharacter(
  31353. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31354. {
  31355. front: {
  31356. height: math.unit(7, "feet"),
  31357. weight: math.unit(180, "lb"),
  31358. name: "Front",
  31359. image: {
  31360. source: "./media/characters/necrolance/front.svg",
  31361. extra: 1062/947,
  31362. bottom: 41/1103
  31363. }
  31364. },
  31365. back: {
  31366. height: math.unit(7, "feet"),
  31367. weight: math.unit(180, "lb"),
  31368. name: "Back",
  31369. image: {
  31370. source: "./media/characters/necrolance/back.svg",
  31371. extra: 1045/984,
  31372. bottom: 14/1059
  31373. }
  31374. },
  31375. wing: {
  31376. height: math.unit(2.67, "feet"),
  31377. name: "Wing",
  31378. image: {
  31379. source: "./media/characters/necrolance/wing.svg"
  31380. }
  31381. },
  31382. },
  31383. [
  31384. {
  31385. name: "Normal",
  31386. height: math.unit(7, "feet"),
  31387. default: true
  31388. },
  31389. ]
  31390. ))
  31391. characterMakers.push(() => makeCharacter(
  31392. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31393. {
  31394. front: {
  31395. height: math.unit(76, "meters"),
  31396. weight: math.unit(30000, "tons"),
  31397. name: "Front",
  31398. image: {
  31399. source: "./media/characters/tyler/front.svg",
  31400. extra: 1640/1640,
  31401. bottom: 114/1754
  31402. }
  31403. },
  31404. },
  31405. [
  31406. {
  31407. name: "Macro",
  31408. height: math.unit(76, "meters"),
  31409. default: true
  31410. },
  31411. ]
  31412. ))
  31413. characterMakers.push(() => makeCharacter(
  31414. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31415. {
  31416. front: {
  31417. height: math.unit(4 + 11/12, "feet"),
  31418. weight: math.unit(132, "lb"),
  31419. name: "Front",
  31420. image: {
  31421. source: "./media/characters/icey/front.svg",
  31422. extra: 2750/2550,
  31423. bottom: 33/2783
  31424. }
  31425. },
  31426. back: {
  31427. height: math.unit(4 + 11/12, "feet"),
  31428. weight: math.unit(132, "lb"),
  31429. name: "Back",
  31430. image: {
  31431. source: "./media/characters/icey/back.svg",
  31432. extra: 2624/2481,
  31433. bottom: 35/2659
  31434. }
  31435. },
  31436. },
  31437. [
  31438. {
  31439. name: "Normal",
  31440. height: math.unit(4 + 11/12, "feet"),
  31441. default: true
  31442. },
  31443. ]
  31444. ))
  31445. characterMakers.push(() => makeCharacter(
  31446. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31447. {
  31448. front: {
  31449. height: math.unit(100, "feet"),
  31450. weight: math.unit(0, "lb"),
  31451. name: "Front",
  31452. image: {
  31453. source: "./media/characters/smile/front.svg",
  31454. extra: 2983/2912,
  31455. bottom: 162/3145
  31456. }
  31457. },
  31458. back: {
  31459. height: math.unit(100, "feet"),
  31460. weight: math.unit(0, "lb"),
  31461. name: "Back",
  31462. image: {
  31463. source: "./media/characters/smile/back.svg",
  31464. extra: 3143/3031,
  31465. bottom: 91/3234
  31466. }
  31467. },
  31468. head: {
  31469. height: math.unit(26.3, "feet"),
  31470. weight: math.unit(0, "lb"),
  31471. name: "Head",
  31472. image: {
  31473. source: "./media/characters/smile/head.svg"
  31474. }
  31475. },
  31476. collar: {
  31477. height: math.unit(5.3, "feet"),
  31478. weight: math.unit(0, "lb"),
  31479. name: "Collar",
  31480. image: {
  31481. source: "./media/characters/smile/collar.svg"
  31482. }
  31483. },
  31484. },
  31485. [
  31486. {
  31487. name: "Macro",
  31488. height: math.unit(100, "feet"),
  31489. default: true
  31490. },
  31491. ]
  31492. ))
  31493. characterMakers.push(() => makeCharacter(
  31494. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31495. {
  31496. dragon: {
  31497. height: math.unit(26, "feet"),
  31498. weight: math.unit(36, "tons"),
  31499. name: "Dragon",
  31500. image: {
  31501. source: "./media/characters/arimphae/dragon.svg",
  31502. extra: 1574/983,
  31503. bottom: 357/1931
  31504. }
  31505. },
  31506. drake: {
  31507. height: math.unit(9, "feet"),
  31508. weight: math.unit(1.5, "tons"),
  31509. name: "Drake",
  31510. image: {
  31511. source: "./media/characters/arimphae/drake.svg",
  31512. extra: 1120/925,
  31513. bottom: 435/1555
  31514. }
  31515. },
  31516. },
  31517. [
  31518. {
  31519. name: "Small",
  31520. height: math.unit(26*5/9, "feet")
  31521. },
  31522. {
  31523. name: "Normal",
  31524. height: math.unit(26, "feet"),
  31525. default: true
  31526. },
  31527. ]
  31528. ))
  31529. characterMakers.push(() => makeCharacter(
  31530. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31531. {
  31532. front: {
  31533. height: math.unit(8 + 9/12, "feet"),
  31534. name: "Front",
  31535. image: {
  31536. source: "./media/characters/xander/front.svg",
  31537. extra: 848/673,
  31538. bottom: 62/910
  31539. }
  31540. },
  31541. },
  31542. [
  31543. {
  31544. name: "Normal",
  31545. height: math.unit(8 + 9/12, "feet"),
  31546. default: true
  31547. },
  31548. {
  31549. name: "Gaze Grabber",
  31550. height: math.unit(13 + 8/12, "feet")
  31551. },
  31552. {
  31553. name: "Jaw Dropper",
  31554. height: math.unit(27, "feet")
  31555. },
  31556. {
  31557. name: "Show Stopper",
  31558. height: math.unit(136, "feet")
  31559. },
  31560. {
  31561. name: "Superstar",
  31562. height: math.unit(1.9e6, "miles")
  31563. },
  31564. ]
  31565. ))
  31566. characterMakers.push(() => makeCharacter(
  31567. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31568. {
  31569. side: {
  31570. height: math.unit(2100, "feet"),
  31571. name: "Side",
  31572. image: {
  31573. source: "./media/characters/osiris/side.svg",
  31574. extra: 1105/939,
  31575. bottom: 167/1272
  31576. }
  31577. },
  31578. },
  31579. [
  31580. {
  31581. name: "Macro",
  31582. height: math.unit(2100, "feet"),
  31583. default: true
  31584. },
  31585. ]
  31586. ))
  31587. characterMakers.push(() => makeCharacter(
  31588. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31589. {
  31590. front: {
  31591. height: math.unit(6 + 8/12, "feet"),
  31592. weight: math.unit(225, "lb"),
  31593. name: "Front",
  31594. image: {
  31595. source: "./media/characters/rhys-londe/front.svg",
  31596. extra: 2258/2141,
  31597. bottom: 188/2446
  31598. }
  31599. },
  31600. back: {
  31601. height: math.unit(6 + 8/12, "feet"),
  31602. weight: math.unit(225, "lb"),
  31603. name: "Back",
  31604. image: {
  31605. source: "./media/characters/rhys-londe/back.svg",
  31606. extra: 2237/2137,
  31607. bottom: 63/2300
  31608. }
  31609. },
  31610. frontNsfw: {
  31611. height: math.unit(6 + 8/12, "feet"),
  31612. weight: math.unit(225, "lb"),
  31613. name: "Front (NSFW)",
  31614. image: {
  31615. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31616. extra: 2258/2141,
  31617. bottom: 188/2446
  31618. }
  31619. },
  31620. backNsfw: {
  31621. height: math.unit(6 + 8/12, "feet"),
  31622. weight: math.unit(225, "lb"),
  31623. name: "Back (NSFW)",
  31624. image: {
  31625. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31626. extra: 2237/2137,
  31627. bottom: 63/2300
  31628. }
  31629. },
  31630. dick: {
  31631. height: math.unit(30, "inches"),
  31632. name: "Dick",
  31633. image: {
  31634. source: "./media/characters/rhys-londe/dick.svg"
  31635. }
  31636. },
  31637. maw: {
  31638. height: math.unit(1.6, "feet"),
  31639. name: "Maw",
  31640. image: {
  31641. source: "./media/characters/rhys-londe/maw.svg"
  31642. }
  31643. },
  31644. },
  31645. [
  31646. {
  31647. name: "Normal",
  31648. height: math.unit(6 + 8/12, "feet"),
  31649. default: true
  31650. },
  31651. ]
  31652. ))
  31653. characterMakers.push(() => makeCharacter(
  31654. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31655. {
  31656. front: {
  31657. height: math.unit(3 + 10/12, "feet"),
  31658. weight: math.unit(90, "lb"),
  31659. name: "Front",
  31660. image: {
  31661. source: "./media/characters/taivas-ensim/front.svg",
  31662. extra: 1327/1216,
  31663. bottom: 96/1423
  31664. }
  31665. },
  31666. back: {
  31667. height: math.unit(3 + 10/12, "feet"),
  31668. weight: math.unit(90, "lb"),
  31669. name: "Back",
  31670. image: {
  31671. source: "./media/characters/taivas-ensim/back.svg",
  31672. extra: 1355/1247,
  31673. bottom: 11/1366
  31674. }
  31675. },
  31676. frontNsfw: {
  31677. height: math.unit(3 + 10/12, "feet"),
  31678. weight: math.unit(90, "lb"),
  31679. name: "Front (NSFW)",
  31680. image: {
  31681. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31682. extra: 1327/1216,
  31683. bottom: 96/1423
  31684. }
  31685. },
  31686. backNsfw: {
  31687. height: math.unit(3 + 10/12, "feet"),
  31688. weight: math.unit(90, "lb"),
  31689. name: "Back (NSFW)",
  31690. image: {
  31691. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31692. extra: 1355/1247,
  31693. bottom: 11/1366
  31694. }
  31695. },
  31696. },
  31697. [
  31698. {
  31699. name: "Normal",
  31700. height: math.unit(3 + 10/12, "feet"),
  31701. default: true
  31702. },
  31703. ]
  31704. ))
  31705. characterMakers.push(() => makeCharacter(
  31706. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31707. {
  31708. front: {
  31709. height: math.unit(9 + 6/12, "feet"),
  31710. weight: math.unit(940, "lb"),
  31711. name: "Front",
  31712. image: {
  31713. source: "./media/characters/byliss/front.svg",
  31714. extra: 1327/1290,
  31715. bottom: 82/1409
  31716. }
  31717. },
  31718. back: {
  31719. height: math.unit(9 + 6/12, "feet"),
  31720. weight: math.unit(940, "lb"),
  31721. name: "Back",
  31722. image: {
  31723. source: "./media/characters/byliss/back.svg",
  31724. extra: 1376/1349,
  31725. bottom: 9/1385
  31726. }
  31727. },
  31728. frontNsfw: {
  31729. height: math.unit(9 + 6/12, "feet"),
  31730. weight: math.unit(940, "lb"),
  31731. name: "Front (NSFW)",
  31732. image: {
  31733. source: "./media/characters/byliss/front-nsfw.svg",
  31734. extra: 1327/1290,
  31735. bottom: 82/1409
  31736. }
  31737. },
  31738. backNsfw: {
  31739. height: math.unit(9 + 6/12, "feet"),
  31740. weight: math.unit(940, "lb"),
  31741. name: "Back (NSFW)",
  31742. image: {
  31743. source: "./media/characters/byliss/back-nsfw.svg",
  31744. extra: 1376/1349,
  31745. bottom: 9/1385
  31746. }
  31747. },
  31748. },
  31749. [
  31750. {
  31751. name: "Normal",
  31752. height: math.unit(9 + 6/12, "feet"),
  31753. default: true
  31754. },
  31755. ]
  31756. ))
  31757. characterMakers.push(() => makeCharacter(
  31758. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31759. {
  31760. front: {
  31761. height: math.unit(5 + 2/12, "feet"),
  31762. weight: math.unit(200, "lb"),
  31763. name: "Front",
  31764. image: {
  31765. source: "./media/characters/noraly/front.svg",
  31766. extra: 4985/4773,
  31767. bottom: 150/5135
  31768. }
  31769. },
  31770. full: {
  31771. height: math.unit(5 + 2/12, "feet"),
  31772. weight: math.unit(164, "lb"),
  31773. name: "Full",
  31774. image: {
  31775. source: "./media/characters/noraly/full.svg",
  31776. extra: 1114/1059,
  31777. bottom: 35/1149
  31778. }
  31779. },
  31780. fuller: {
  31781. height: math.unit(5 + 2/12, "feet"),
  31782. weight: math.unit(230, "lb"),
  31783. name: "Fuller",
  31784. image: {
  31785. source: "./media/characters/noraly/fuller.svg",
  31786. extra: 1114/1059,
  31787. bottom: 35/1149
  31788. }
  31789. },
  31790. fullest: {
  31791. height: math.unit(5 + 2/12, "feet"),
  31792. weight: math.unit(300, "lb"),
  31793. name: "Fullest",
  31794. image: {
  31795. source: "./media/characters/noraly/fullest.svg",
  31796. extra: 1114/1059,
  31797. bottom: 35/1149
  31798. }
  31799. },
  31800. },
  31801. [
  31802. {
  31803. name: "Normal",
  31804. height: math.unit(5 + 2/12, "feet"),
  31805. default: true
  31806. },
  31807. ]
  31808. ))
  31809. characterMakers.push(() => makeCharacter(
  31810. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31811. {
  31812. front: {
  31813. height: math.unit(5 + 2/12, "feet"),
  31814. weight: math.unit(210, "lb"),
  31815. name: "Front",
  31816. image: {
  31817. source: "./media/characters/pera/front.svg",
  31818. extra: 1560/1531,
  31819. bottom: 165/1725
  31820. }
  31821. },
  31822. back: {
  31823. height: math.unit(5 + 2/12, "feet"),
  31824. weight: math.unit(210, "lb"),
  31825. name: "Back",
  31826. image: {
  31827. source: "./media/characters/pera/back.svg",
  31828. extra: 1523/1493,
  31829. bottom: 152/1675
  31830. }
  31831. },
  31832. dick: {
  31833. height: math.unit(2.4, "feet"),
  31834. name: "Dick",
  31835. image: {
  31836. source: "./media/characters/pera/dick.svg"
  31837. }
  31838. },
  31839. },
  31840. [
  31841. {
  31842. name: "Normal",
  31843. height: math.unit(5 + 2/12, "feet"),
  31844. default: true
  31845. },
  31846. ]
  31847. ))
  31848. characterMakers.push(() => makeCharacter(
  31849. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31850. {
  31851. front: {
  31852. height: math.unit(12, "feet"),
  31853. weight: math.unit(3200, "lb"),
  31854. name: "Front",
  31855. image: {
  31856. source: "./media/characters/julian/front.svg",
  31857. extra: 2962/2701,
  31858. bottom: 184/3146
  31859. }
  31860. },
  31861. maw: {
  31862. height: math.unit(5.35, "feet"),
  31863. name: "Maw",
  31864. image: {
  31865. source: "./media/characters/julian/maw.svg"
  31866. }
  31867. },
  31868. paw: {
  31869. height: math.unit(3.07, "feet"),
  31870. name: "Paw",
  31871. image: {
  31872. source: "./media/characters/julian/paw.svg"
  31873. }
  31874. },
  31875. },
  31876. [
  31877. {
  31878. name: "Default",
  31879. height: math.unit(12, "feet"),
  31880. default: true
  31881. },
  31882. {
  31883. name: "Big",
  31884. height: math.unit(50, "feet")
  31885. },
  31886. {
  31887. name: "Really Big",
  31888. height: math.unit(1, "mile")
  31889. },
  31890. {
  31891. name: "Extremely Big",
  31892. height: math.unit(100, "miles")
  31893. },
  31894. {
  31895. name: "Planet Hugger",
  31896. height: math.unit(200, "megameters")
  31897. },
  31898. {
  31899. name: "Unreasonably Big",
  31900. height: math.unit(1e300, "meters")
  31901. },
  31902. ]
  31903. ))
  31904. characterMakers.push(() => makeCharacter(
  31905. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  31906. {
  31907. solgooleo: {
  31908. height: math.unit(4, "meters"),
  31909. weight: math.unit(6000*1.5, "kg"),
  31910. volume: math.unit(6000, "liters"),
  31911. name: "Solgooleo",
  31912. image: {
  31913. source: "./media/characters/pi/solgooleo.svg",
  31914. extra: 388/331,
  31915. bottom: 29/417
  31916. }
  31917. },
  31918. },
  31919. [
  31920. {
  31921. name: "Normal",
  31922. height: math.unit(4, "meters"),
  31923. default: true
  31924. },
  31925. ]
  31926. ))
  31927. characterMakers.push(() => makeCharacter(
  31928. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  31929. {
  31930. front: {
  31931. height: math.unit(8 + 2/12, "feet"),
  31932. weight: math.unit(4, "tons"),
  31933. name: "Front",
  31934. image: {
  31935. source: "./media/characters/shaun/front.svg",
  31936. extra: 1550/1505,
  31937. bottom: 353/1903
  31938. }
  31939. },
  31940. },
  31941. [
  31942. {
  31943. name: "Lorg",
  31944. height: math.unit(8 + 2/12, "feet"),
  31945. default: true
  31946. },
  31947. ]
  31948. ))
  31949. characterMakers.push(() => makeCharacter(
  31950. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  31951. {
  31952. front: {
  31953. height: math.unit(7, "feet"),
  31954. name: "Front",
  31955. image: {
  31956. source: "./media/characters/sini/front.svg",
  31957. extra: 726/678,
  31958. bottom: 35/761
  31959. }
  31960. },
  31961. back: {
  31962. height: math.unit(7, "feet"),
  31963. name: "Back",
  31964. image: {
  31965. source: "./media/characters/sini/back.svg",
  31966. extra: 743/701,
  31967. bottom: 12/755
  31968. }
  31969. },
  31970. mawAnthro: {
  31971. height: math.unit(2.14, "feet"),
  31972. name: "Maw (Anthro)",
  31973. image: {
  31974. source: "./media/characters/sini/maw-anthro.svg"
  31975. }
  31976. },
  31977. dick: {
  31978. height: math.unit(1.45, "feet"),
  31979. name: "Dick (Anthro)",
  31980. image: {
  31981. source: "./media/characters/sini/dick-anthro.svg"
  31982. }
  31983. },
  31984. feral: {
  31985. height: math.unit(13, "feet"),
  31986. name: "Feral",
  31987. image: {
  31988. source: "./media/characters/sini/feral.svg",
  31989. extra: 814/605,
  31990. bottom: 11/825
  31991. }
  31992. },
  31993. mawFeral: {
  31994. height: math.unit(4.6, "feet"),
  31995. name: "Maw-feral",
  31996. image: {
  31997. source: "./media/characters/sini/maw-feral.svg"
  31998. }
  31999. },
  32000. footFeral: {
  32001. height: math.unit(4.2, "feet"),
  32002. name: "Foot-feral",
  32003. image: {
  32004. source: "./media/characters/sini/foot-feral.svg"
  32005. }
  32006. },
  32007. },
  32008. [
  32009. {
  32010. name: "Normal",
  32011. height: math.unit(7, "feet"),
  32012. default: true
  32013. },
  32014. ]
  32015. ))
  32016. characterMakers.push(() => makeCharacter(
  32017. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32018. {
  32019. side: {
  32020. height: math.unit(13, "meters"),
  32021. weight: math.unit(9072, "kg"),
  32022. name: "Side",
  32023. image: {
  32024. source: "./media/characters/raylldo/side.svg",
  32025. extra: 403/344,
  32026. bottom: 42/445
  32027. }
  32028. },
  32029. leaping: {
  32030. height: math.unit(12.3, "meters"),
  32031. weight: math.unit(9072, "kg"),
  32032. name: "Leaping",
  32033. image: {
  32034. source: "./media/characters/raylldo/leaping.svg",
  32035. extra: 470/249,
  32036. bottom: 13/483
  32037. }
  32038. },
  32039. flying: {
  32040. height: math.unit(18, "meters"),
  32041. weight: math.unit(9072, "kg"),
  32042. name: "Flying",
  32043. image: {
  32044. source: "./media/characters/raylldo/flying.svg"
  32045. }
  32046. },
  32047. head: {
  32048. height: math.unit(5.85, "meters"),
  32049. name: "Head",
  32050. image: {
  32051. source: "./media/characters/raylldo/head.svg"
  32052. }
  32053. },
  32054. maw: {
  32055. height: math.unit(5.32, "meters"),
  32056. name: "Maw",
  32057. image: {
  32058. source: "./media/characters/raylldo/maw.svg"
  32059. }
  32060. },
  32061. eye: {
  32062. height: math.unit(0.54, "meters"),
  32063. name: "Eye",
  32064. image: {
  32065. source: "./media/characters/raylldo/eye.svg"
  32066. }
  32067. },
  32068. },
  32069. [
  32070. {
  32071. name: "Normal",
  32072. height: math.unit(13, "meters"),
  32073. default: true
  32074. },
  32075. ]
  32076. ))
  32077. characterMakers.push(() => makeCharacter(
  32078. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32079. {
  32080. anthroFront: {
  32081. height: math.unit(9, "feet"),
  32082. weight: math.unit(600, "lb"),
  32083. name: "Anthro (Front)",
  32084. image: {
  32085. source: "./media/characters/glint/anthro-front.svg",
  32086. extra: 1097/1018,
  32087. bottom: 28/1125
  32088. }
  32089. },
  32090. anthroBack: {
  32091. height: math.unit(9, "feet"),
  32092. weight: math.unit(600, "lb"),
  32093. name: "Anthro (Back)",
  32094. image: {
  32095. source: "./media/characters/glint/anthro-back.svg",
  32096. extra: 1154/997,
  32097. bottom: 36/1190
  32098. }
  32099. },
  32100. feral: {
  32101. height: math.unit(11, "feet"),
  32102. weight: math.unit(50000, "lb"),
  32103. name: "Feral",
  32104. image: {
  32105. source: "./media/characters/glint/feral.svg",
  32106. extra: 3035/1585,
  32107. bottom: 1169/4204
  32108. }
  32109. },
  32110. dickAnthro: {
  32111. height: math.unit(0.7, "meters"),
  32112. name: "Dick (Anthro)",
  32113. image: {
  32114. source: "./media/characters/glint/dick-anthro.svg"
  32115. }
  32116. },
  32117. dickFeral: {
  32118. height: math.unit(2.65, "meters"),
  32119. name: "Dick (Feral)",
  32120. image: {
  32121. source: "./media/characters/glint/dick-feral.svg"
  32122. }
  32123. },
  32124. slitHidden: {
  32125. height: math.unit(5.85, "meters"),
  32126. name: "Slit (Hidden)",
  32127. image: {
  32128. source: "./media/characters/glint/slit-hidden.svg"
  32129. }
  32130. },
  32131. slitErect: {
  32132. height: math.unit(5.85, "meters"),
  32133. name: "Slit (Erect)",
  32134. image: {
  32135. source: "./media/characters/glint/slit-erect.svg"
  32136. }
  32137. },
  32138. mawAnthro: {
  32139. height: math.unit(0.63, "meters"),
  32140. name: "Maw (Anthro)",
  32141. image: {
  32142. source: "./media/characters/glint/maw.svg"
  32143. }
  32144. },
  32145. mawFeral: {
  32146. height: math.unit(2.89, "meters"),
  32147. name: "Maw (Feral)",
  32148. image: {
  32149. source: "./media/characters/glint/maw.svg"
  32150. }
  32151. },
  32152. },
  32153. [
  32154. {
  32155. name: "Normal",
  32156. height: math.unit(9, "feet"),
  32157. default: true
  32158. },
  32159. ]
  32160. ))
  32161. characterMakers.push(() => makeCharacter(
  32162. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32163. {
  32164. side: {
  32165. height: math.unit(15, "feet"),
  32166. weight: math.unit(5000, "kg"),
  32167. name: "Side",
  32168. image: {
  32169. source: "./media/characters/kairne/side.svg",
  32170. extra: 979/811,
  32171. bottom: 13/992
  32172. }
  32173. },
  32174. front: {
  32175. height: math.unit(15, "feet"),
  32176. weight: math.unit(5000, "kg"),
  32177. name: "Front",
  32178. image: {
  32179. source: "./media/characters/kairne/front.svg",
  32180. extra: 908/814,
  32181. bottom: 26/934
  32182. }
  32183. },
  32184. sideNsfw: {
  32185. height: math.unit(15, "feet"),
  32186. weight: math.unit(5000, "kg"),
  32187. name: "Side (NSFW)",
  32188. image: {
  32189. source: "./media/characters/kairne/side-nsfw.svg",
  32190. extra: 979/811,
  32191. bottom: 13/992
  32192. }
  32193. },
  32194. frontNsfw: {
  32195. height: math.unit(15, "feet"),
  32196. weight: math.unit(5000, "kg"),
  32197. name: "Front (NSFW)",
  32198. image: {
  32199. source: "./media/characters/kairne/front-nsfw.svg",
  32200. extra: 908/814,
  32201. bottom: 26/934
  32202. }
  32203. },
  32204. dickCaged: {
  32205. height: math.unit(0.65, "meters"),
  32206. name: "Dick-caged",
  32207. image: {
  32208. source: "./media/characters/kairne/dick-caged.svg"
  32209. }
  32210. },
  32211. dick: {
  32212. height: math.unit(0.79, "meters"),
  32213. name: "Dick",
  32214. image: {
  32215. source: "./media/characters/kairne/dick.svg"
  32216. }
  32217. },
  32218. genitals: {
  32219. height: math.unit(1.29, "meters"),
  32220. name: "Genitals",
  32221. image: {
  32222. source: "./media/characters/kairne/genitals.svg"
  32223. }
  32224. },
  32225. maw: {
  32226. height: math.unit(1.73, "meters"),
  32227. name: "Maw",
  32228. image: {
  32229. source: "./media/characters/kairne/maw.svg"
  32230. }
  32231. },
  32232. },
  32233. [
  32234. {
  32235. name: "Normal",
  32236. height: math.unit(15, "feet"),
  32237. default: true
  32238. },
  32239. ]
  32240. ))
  32241. characterMakers.push(() => makeCharacter(
  32242. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32243. {
  32244. front: {
  32245. height: math.unit(5 + 8/12, "feet"),
  32246. weight: math.unit(139, "lb"),
  32247. name: "Front",
  32248. image: {
  32249. source: "./media/characters/biscuit-jackal/front.svg",
  32250. extra: 2106/1961,
  32251. bottom: 58/2164
  32252. }
  32253. },
  32254. back: {
  32255. height: math.unit(5 + 8/12, "feet"),
  32256. weight: math.unit(139, "lb"),
  32257. name: "Back",
  32258. image: {
  32259. source: "./media/characters/biscuit-jackal/back.svg",
  32260. extra: 2132/1976,
  32261. bottom: 57/2189
  32262. }
  32263. },
  32264. werejackal: {
  32265. height: math.unit(6 + 3/12, "feet"),
  32266. weight: math.unit(188, "lb"),
  32267. name: "Werejackal",
  32268. image: {
  32269. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32270. extra: 2373/2178,
  32271. bottom: 53/2426
  32272. }
  32273. },
  32274. },
  32275. [
  32276. {
  32277. name: "Normal",
  32278. height: math.unit(5 + 8/12, "feet"),
  32279. default: true
  32280. },
  32281. ]
  32282. ))
  32283. characterMakers.push(() => makeCharacter(
  32284. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32285. {
  32286. front: {
  32287. height: math.unit(140, "cm"),
  32288. weight: math.unit(45, "kg"),
  32289. name: "Front",
  32290. image: {
  32291. source: "./media/characters/tayra-white/front.svg",
  32292. extra: 2229/2192,
  32293. bottom: 75/2304
  32294. }
  32295. },
  32296. },
  32297. [
  32298. {
  32299. name: "Normal",
  32300. height: math.unit(140, "cm"),
  32301. default: true
  32302. },
  32303. ]
  32304. ))
  32305. characterMakers.push(() => makeCharacter(
  32306. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32307. {
  32308. front: {
  32309. height: math.unit(4 + 5/12, "feet"),
  32310. name: "Front",
  32311. image: {
  32312. source: "./media/characters/scoop/front.svg",
  32313. extra: 1257/1136,
  32314. bottom: 69/1326
  32315. }
  32316. },
  32317. back: {
  32318. height: math.unit(4 + 5/12, "feet"),
  32319. name: "Back",
  32320. image: {
  32321. source: "./media/characters/scoop/back.svg",
  32322. extra: 1321/1152,
  32323. bottom: 32/1353
  32324. }
  32325. },
  32326. maw: {
  32327. height: math.unit(0.68, "feet"),
  32328. name: "Maw",
  32329. image: {
  32330. source: "./media/characters/scoop/maw.svg"
  32331. }
  32332. },
  32333. },
  32334. [
  32335. {
  32336. name: "Really Small",
  32337. height: math.unit(1, "mm")
  32338. },
  32339. {
  32340. name: "Micro",
  32341. height: math.unit(1, "inch")
  32342. },
  32343. {
  32344. name: "Normal",
  32345. height: math.unit(4 + 5/12, "feet"),
  32346. default: true
  32347. },
  32348. {
  32349. name: "Macro",
  32350. height: math.unit(200, "feet")
  32351. },
  32352. {
  32353. name: "Megamacro",
  32354. height: math.unit(3240, "feet")
  32355. },
  32356. {
  32357. name: "Teramacro",
  32358. height: math.unit(2500, "miles")
  32359. },
  32360. ]
  32361. ))
  32362. characterMakers.push(() => makeCharacter(
  32363. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32364. {
  32365. front: {
  32366. height: math.unit(15 + 7/12, "feet"),
  32367. name: "Front",
  32368. image: {
  32369. source: "./media/characters/saphinara/front.svg",
  32370. extra: 604/546,
  32371. bottom: 19/623
  32372. }
  32373. },
  32374. side: {
  32375. height: math.unit(15 + 7/12, "feet"),
  32376. name: "Side",
  32377. image: {
  32378. source: "./media/characters/saphinara/side.svg",
  32379. extra: 605/547,
  32380. bottom: 6/611
  32381. }
  32382. },
  32383. back: {
  32384. height: math.unit(15 + 7/12, "feet"),
  32385. name: "Back",
  32386. image: {
  32387. source: "./media/characters/saphinara/back.svg",
  32388. extra: 591/531,
  32389. bottom: 13/604
  32390. }
  32391. },
  32392. frontTail: {
  32393. height: math.unit(15 + 7/12, "feet"),
  32394. name: "Front (Full Tail)",
  32395. image: {
  32396. source: "./media/characters/saphinara/front-tail.svg",
  32397. extra: 748/547,
  32398. bottom: 66/814
  32399. }
  32400. },
  32401. },
  32402. [
  32403. {
  32404. name: "Normal",
  32405. height: math.unit(15 + 7/12, "feet"),
  32406. default: true
  32407. },
  32408. {
  32409. name: "Angry",
  32410. height: math.unit(30 + 6/12, "feet")
  32411. },
  32412. {
  32413. name: "Enraged",
  32414. height: math.unit(102 + 1/12, "feet")
  32415. },
  32416. ]
  32417. ))
  32418. characterMakers.push(() => makeCharacter(
  32419. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32420. {
  32421. front: {
  32422. height: math.unit(6 + 8/12, "feet"),
  32423. weight: math.unit(300, "lb"),
  32424. name: "Front",
  32425. image: {
  32426. source: "./media/characters/jrain/front.svg",
  32427. extra: 3039/2865,
  32428. bottom: 399/3438
  32429. }
  32430. },
  32431. back: {
  32432. height: math.unit(6 + 8/12, "feet"),
  32433. weight: math.unit(300, "lb"),
  32434. name: "Back",
  32435. image: {
  32436. source: "./media/characters/jrain/back.svg",
  32437. extra: 3089/2938,
  32438. bottom: 172/3261
  32439. }
  32440. },
  32441. head: {
  32442. height: math.unit(2.14, "feet"),
  32443. name: "Head",
  32444. image: {
  32445. source: "./media/characters/jrain/head.svg"
  32446. }
  32447. },
  32448. maw: {
  32449. height: math.unit(1.77, "feet"),
  32450. name: "Maw",
  32451. image: {
  32452. source: "./media/characters/jrain/maw.svg"
  32453. }
  32454. },
  32455. leftHand: {
  32456. height: math.unit(1.1, "feet"),
  32457. name: "Left Hand",
  32458. image: {
  32459. source: "./media/characters/jrain/left-hand.svg"
  32460. }
  32461. },
  32462. rightHand: {
  32463. height: math.unit(1.1, "feet"),
  32464. name: "Right Hand",
  32465. image: {
  32466. source: "./media/characters/jrain/right-hand.svg"
  32467. }
  32468. },
  32469. eye: {
  32470. height: math.unit(0.35, "feet"),
  32471. name: "Eye",
  32472. image: {
  32473. source: "./media/characters/jrain/eye.svg"
  32474. }
  32475. },
  32476. },
  32477. [
  32478. {
  32479. name: "Normal",
  32480. height: math.unit(6 + 8/12, "feet"),
  32481. default: true
  32482. },
  32483. {
  32484. name: "Casually Large",
  32485. height: math.unit(25, "feet")
  32486. },
  32487. {
  32488. name: "Giant",
  32489. height: math.unit(100, "feet")
  32490. },
  32491. {
  32492. name: "Kaiju",
  32493. height: math.unit(300, "feet")
  32494. },
  32495. ]
  32496. ))
  32497. characterMakers.push(() => makeCharacter(
  32498. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32499. {
  32500. dragon: {
  32501. height: math.unit(5, "meters"),
  32502. name: "Dragon",
  32503. image: {
  32504. source: "./media/characters/sabrina/dragon.svg",
  32505. extra: 3670 / 2365,
  32506. bottom: 333 / 4003
  32507. }
  32508. },
  32509. gryphon: {
  32510. height: math.unit(3, "meters"),
  32511. name: "Gryphon",
  32512. image: {
  32513. source: "./media/characters/sabrina/gryphon.svg",
  32514. extra: 1576 / 945,
  32515. bottom: 71 / 1647
  32516. }
  32517. },
  32518. snake: {
  32519. height: math.unit(12, "meters"),
  32520. name: "Snake",
  32521. image: {
  32522. source: "./media/characters/sabrina/snake.svg",
  32523. extra: 1758 / 1320,
  32524. bottom: 186 / 1944
  32525. }
  32526. },
  32527. collar: {
  32528. height: math.unit(1.86, "meters"),
  32529. name: "Collar",
  32530. image: {
  32531. source: "./media/characters/sabrina/collar.svg"
  32532. }
  32533. },
  32534. eye: {
  32535. height: math.unit(0.53, "meters"),
  32536. name: "Eye",
  32537. image: {
  32538. source: "./media/characters/sabrina/eye.svg"
  32539. }
  32540. },
  32541. foot: {
  32542. height: math.unit(1.86, "meters"),
  32543. name: "Foot",
  32544. image: {
  32545. source: "./media/characters/sabrina/foot.svg"
  32546. }
  32547. },
  32548. hand: {
  32549. height: math.unit(1.32, "meters"),
  32550. name: "Hand",
  32551. image: {
  32552. source: "./media/characters/sabrina/hand.svg"
  32553. }
  32554. },
  32555. head: {
  32556. height: math.unit(2.44, "meters"),
  32557. name: "Head",
  32558. image: {
  32559. source: "./media/characters/sabrina/head.svg"
  32560. }
  32561. },
  32562. headAngry: {
  32563. height: math.unit(2.44, "meters"),
  32564. name: "Head (Angry))",
  32565. image: {
  32566. source: "./media/characters/sabrina/head-angry.svg"
  32567. }
  32568. },
  32569. maw: {
  32570. height: math.unit(1.65, "meters"),
  32571. name: "Maw",
  32572. image: {
  32573. source: "./media/characters/sabrina/maw.svg"
  32574. }
  32575. },
  32576. spikes: {
  32577. height: math.unit(1.69, "meters"),
  32578. name: "Spikes",
  32579. image: {
  32580. source: "./media/characters/sabrina/spikes.svg"
  32581. }
  32582. },
  32583. stomach: {
  32584. height: math.unit(1.15, "meters"),
  32585. name: "Stomach",
  32586. image: {
  32587. source: "./media/characters/sabrina/stomach.svg"
  32588. }
  32589. },
  32590. tongue: {
  32591. height: math.unit(1.27, "meters"),
  32592. name: "Tongue",
  32593. image: {
  32594. source: "./media/characters/sabrina/tongue.svg"
  32595. }
  32596. },
  32597. wingDorsal: {
  32598. height: math.unit(4.85, "meters"),
  32599. name: "Wing (Dorsal)",
  32600. image: {
  32601. source: "./media/characters/sabrina/wing-dorsal.svg"
  32602. }
  32603. },
  32604. wingVentral: {
  32605. height: math.unit(4.85, "meters"),
  32606. name: "Wing (Ventral)",
  32607. image: {
  32608. source: "./media/characters/sabrina/wing-ventral.svg"
  32609. }
  32610. },
  32611. },
  32612. [
  32613. {
  32614. name: "Normal",
  32615. height: math.unit(5, "meters"),
  32616. default: true
  32617. },
  32618. ]
  32619. ))
  32620. characterMakers.push(() => makeCharacter(
  32621. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32622. {
  32623. frontMaid: {
  32624. height: math.unit(5 + 5/12, "feet"),
  32625. weight: math.unit(130, "lb"),
  32626. name: "Front (Maid)",
  32627. image: {
  32628. source: "./media/characters/midnight-tales/front-maid.svg",
  32629. extra: 489/454,
  32630. bottom: 61/550
  32631. }
  32632. },
  32633. frontFormal: {
  32634. height: math.unit(5 + 5/12, "feet"),
  32635. weight: math.unit(130, "lb"),
  32636. name: "Front (Formal)",
  32637. image: {
  32638. source: "./media/characters/midnight-tales/front-formal.svg",
  32639. extra: 489/454,
  32640. bottom: 61/550
  32641. }
  32642. },
  32643. back: {
  32644. height: math.unit(5 + 5/12, "feet"),
  32645. weight: math.unit(130, "lb"),
  32646. name: "Back",
  32647. image: {
  32648. source: "./media/characters/midnight-tales/back.svg",
  32649. extra: 498/456,
  32650. bottom: 33/531
  32651. }
  32652. },
  32653. frontBeast: {
  32654. height: math.unit(40, "feet"),
  32655. weight: math.unit(64000, "lb"),
  32656. name: "Front (Beast)",
  32657. image: {
  32658. source: "./media/characters/midnight-tales/front-beast.svg",
  32659. extra: 927/860,
  32660. bottom: 53/980
  32661. }
  32662. },
  32663. backBeast: {
  32664. height: math.unit(40, "feet"),
  32665. weight: math.unit(64000, "lb"),
  32666. name: "Back (Beast)",
  32667. image: {
  32668. source: "./media/characters/midnight-tales/back-beast.svg",
  32669. extra: 929/855,
  32670. bottom: 16/945
  32671. }
  32672. },
  32673. footBeast: {
  32674. height: math.unit(6.7, "feet"),
  32675. name: "Foot (Beast)",
  32676. image: {
  32677. source: "./media/characters/midnight-tales/foot-beast.svg"
  32678. }
  32679. },
  32680. headBeast: {
  32681. height: math.unit(8, "feet"),
  32682. name: "Head (Beast)",
  32683. image: {
  32684. source: "./media/characters/midnight-tales/head-beast.svg"
  32685. }
  32686. },
  32687. },
  32688. [
  32689. {
  32690. name: "Normal",
  32691. height: math.unit(5 + 5 / 12, "feet"),
  32692. default: true
  32693. },
  32694. {
  32695. name: "Macro",
  32696. height: math.unit(25, "feet")
  32697. },
  32698. ]
  32699. ))
  32700. characterMakers.push(() => makeCharacter(
  32701. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32702. {
  32703. front: {
  32704. height: math.unit(5 + 10/12, "feet"),
  32705. name: "Front",
  32706. image: {
  32707. source: "./media/characters/argon/front.svg",
  32708. extra: 2009/1935,
  32709. bottom: 118/2127
  32710. }
  32711. },
  32712. back: {
  32713. height: math.unit(5 + 10/12, "feet"),
  32714. name: "Back",
  32715. image: {
  32716. source: "./media/characters/argon/back.svg",
  32717. extra: 2047/1992,
  32718. bottom: 20/2067
  32719. }
  32720. },
  32721. frontDressed: {
  32722. height: math.unit(5 + 10/12, "feet"),
  32723. name: "Front (Dressed)",
  32724. image: {
  32725. source: "./media/characters/argon/front-dressed.svg",
  32726. extra: 2009/1935,
  32727. bottom: 118/2127
  32728. }
  32729. },
  32730. },
  32731. [
  32732. {
  32733. name: "Normal",
  32734. height: math.unit(5 + 10/12, "feet"),
  32735. default: true
  32736. },
  32737. ]
  32738. ))
  32739. characterMakers.push(() => makeCharacter(
  32740. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32741. {
  32742. front: {
  32743. height: math.unit(8 + 6/12, "feet"),
  32744. weight: math.unit(1150, "lb"),
  32745. name: "Front",
  32746. image: {
  32747. source: "./media/characters/kichi/front.svg",
  32748. extra: 1267/1164,
  32749. bottom: 61/1328
  32750. }
  32751. },
  32752. back: {
  32753. height: math.unit(8 + 6/12, "feet"),
  32754. weight: math.unit(1150, "lb"),
  32755. name: "Back",
  32756. image: {
  32757. source: "./media/characters/kichi/back.svg",
  32758. extra: 1273/1166,
  32759. bottom: 33/1306
  32760. }
  32761. },
  32762. },
  32763. [
  32764. {
  32765. name: "Normal",
  32766. height: math.unit(8 + 6/12, "feet"),
  32767. default: true
  32768. },
  32769. ]
  32770. ))
  32771. characterMakers.push(() => makeCharacter(
  32772. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32773. {
  32774. front: {
  32775. height: math.unit(6, "feet"),
  32776. weight: math.unit(210, "lb"),
  32777. name: "Front",
  32778. image: {
  32779. source: "./media/characters/manetel-greyscale/front.svg",
  32780. extra: 350/312,
  32781. bottom: 8/358
  32782. }
  32783. },
  32784. },
  32785. [
  32786. {
  32787. name: "Micro",
  32788. height: math.unit(2, "inches")
  32789. },
  32790. {
  32791. name: "Normal",
  32792. height: math.unit(6, "feet"),
  32793. default: true
  32794. },
  32795. {
  32796. name: "Minimacro",
  32797. height: math.unit(17, "feet")
  32798. },
  32799. {
  32800. name: "Macro",
  32801. height: math.unit(117, "feet")
  32802. },
  32803. ]
  32804. ))
  32805. characterMakers.push(() => makeCharacter(
  32806. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32807. {
  32808. side: {
  32809. height: math.unit(5 + 1/12, "feet"),
  32810. weight: math.unit(418, "lb"),
  32811. name: "Side",
  32812. image: {
  32813. source: "./media/characters/softpurr/side.svg",
  32814. extra: 1993/1945,
  32815. bottom: 134/2127
  32816. }
  32817. },
  32818. front: {
  32819. height: math.unit(5 + 1/12, "feet"),
  32820. weight: math.unit(418, "lb"),
  32821. name: "Front",
  32822. image: {
  32823. source: "./media/characters/softpurr/front.svg",
  32824. extra: 1950/1856,
  32825. bottom: 174/2124
  32826. }
  32827. },
  32828. paw: {
  32829. height: math.unit(1, "feet"),
  32830. name: "Paw",
  32831. image: {
  32832. source: "./media/characters/softpurr/paw.svg"
  32833. }
  32834. },
  32835. },
  32836. [
  32837. {
  32838. name: "Normal",
  32839. height: math.unit(5 + 1/12, "feet"),
  32840. default: true
  32841. },
  32842. ]
  32843. ))
  32844. characterMakers.push(() => makeCharacter(
  32845. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32846. {
  32847. front: {
  32848. height: math.unit(260, "meters"),
  32849. name: "Front",
  32850. image: {
  32851. source: "./media/characters/anahita/front.svg",
  32852. extra: 665/635,
  32853. bottom: 89/754
  32854. }
  32855. },
  32856. },
  32857. [
  32858. {
  32859. name: "Macro",
  32860. height: math.unit(260, "meters"),
  32861. default: true
  32862. },
  32863. ]
  32864. ))
  32865. characterMakers.push(() => makeCharacter(
  32866. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32867. {
  32868. front: {
  32869. height: math.unit(4 + 10/12, "feet"),
  32870. weight: math.unit(160, "lb"),
  32871. name: "Front",
  32872. image: {
  32873. source: "./media/characters/chip-mouse/front.svg",
  32874. extra: 3528/3408,
  32875. bottom: 0/3528
  32876. }
  32877. },
  32878. frontNsfw: {
  32879. height: math.unit(4 + 10/12, "feet"),
  32880. weight: math.unit(160, "lb"),
  32881. name: "Front (NSFW)",
  32882. image: {
  32883. source: "./media/characters/chip-mouse/front-nsfw.svg",
  32884. extra: 3528/3408,
  32885. bottom: 0/3528
  32886. }
  32887. },
  32888. },
  32889. [
  32890. {
  32891. name: "Normal",
  32892. height: math.unit(4 + 10/12, "feet"),
  32893. default: true
  32894. },
  32895. ]
  32896. ))
  32897. characterMakers.push(() => makeCharacter(
  32898. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  32899. {
  32900. side: {
  32901. height: math.unit(10, "feet"),
  32902. weight: math.unit(14000, "lb"),
  32903. name: "Side",
  32904. image: {
  32905. source: "./media/characters/kremm/side.svg",
  32906. extra: 1390/1053,
  32907. bottom: 90/1480
  32908. }
  32909. },
  32910. gut: {
  32911. height: math.unit(5.8, "feet"),
  32912. name: "Gut",
  32913. image: {
  32914. source: "./media/characters/kremm/gut.svg"
  32915. }
  32916. },
  32917. ass: {
  32918. height: math.unit(6.1, "feet"),
  32919. name: "Ass",
  32920. image: {
  32921. source: "./media/characters/kremm/ass.svg"
  32922. }
  32923. },
  32924. jaws: {
  32925. height: math.unit(2.2, "feet"),
  32926. name: "Jaws",
  32927. image: {
  32928. source: "./media/characters/kremm/jaws.svg"
  32929. }
  32930. },
  32931. dick: {
  32932. height: math.unit(4.26, "feet"),
  32933. name: "Dick",
  32934. image: {
  32935. source: "./media/characters/kremm/dick.svg"
  32936. }
  32937. },
  32938. },
  32939. [
  32940. {
  32941. name: "Normal",
  32942. height: math.unit(10, "feet"),
  32943. default: true
  32944. },
  32945. ]
  32946. ))
  32947. characterMakers.push(() => makeCharacter(
  32948. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  32949. {
  32950. front: {
  32951. height: math.unit(30, "stories"),
  32952. name: "Front",
  32953. image: {
  32954. source: "./media/characters/kai/front.svg",
  32955. extra: 1892/1718,
  32956. bottom: 162/2054
  32957. }
  32958. },
  32959. },
  32960. [
  32961. {
  32962. name: "Macro",
  32963. height: math.unit(30, "stories"),
  32964. default: true
  32965. },
  32966. ]
  32967. ))
  32968. characterMakers.push(() => makeCharacter(
  32969. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  32970. {
  32971. front: {
  32972. height: math.unit(6 + 4/12, "feet"),
  32973. weight: math.unit(145, "lb"),
  32974. name: "Front",
  32975. image: {
  32976. source: "./media/characters/sykes/front.svg",
  32977. extra: 1321 / 1187,
  32978. bottom: 66 / 1387
  32979. }
  32980. },
  32981. back: {
  32982. height: math.unit(6 + 4/12, "feet"),
  32983. weight: math.unit(145, "lb"),
  32984. name: "Back",
  32985. image: {
  32986. source: "./media/characters/sykes/back.svg",
  32987. extra: 1326/1181,
  32988. bottom: 31/1357
  32989. }
  32990. },
  32991. handBack: {
  32992. height: math.unit(0.9, "feet"),
  32993. name: "Hand (Back)",
  32994. image: {
  32995. source: "./media/characters/sykes/hand-back.svg"
  32996. }
  32997. },
  32998. handFront: {
  32999. height: math.unit(0.839, "feet"),
  33000. name: "Hand (Front)",
  33001. image: {
  33002. source: "./media/characters/sykes/hand-front.svg"
  33003. }
  33004. },
  33005. leftFoot: {
  33006. height: math.unit(1.2, "feet"),
  33007. name: "Foot (Left)",
  33008. image: {
  33009. source: "./media/characters/sykes/foot-left.svg"
  33010. }
  33011. },
  33012. rightFoot: {
  33013. height: math.unit(1.2, "feet"),
  33014. name: "Foot (Right)",
  33015. image: {
  33016. source: "./media/characters/sykes/foot-right.svg"
  33017. }
  33018. },
  33019. maw: {
  33020. height: math.unit(1.93, "feet"),
  33021. name: "Maw",
  33022. image: {
  33023. source: "./media/characters/sykes/maw.svg"
  33024. }
  33025. },
  33026. teeth: {
  33027. height: math.unit(0.51, "feet"),
  33028. name: "Teeth",
  33029. image: {
  33030. source: "./media/characters/sykes/teeth.svg"
  33031. }
  33032. },
  33033. tongue: {
  33034. height: math.unit(2.13, "feet"),
  33035. name: "Tongue",
  33036. image: {
  33037. source: "./media/characters/sykes/tongue.svg"
  33038. }
  33039. },
  33040. uvula: {
  33041. height: math.unit(0.16, "feet"),
  33042. name: "Uvula",
  33043. image: {
  33044. source: "./media/characters/sykes/uvula.svg"
  33045. }
  33046. },
  33047. collar: {
  33048. height: math.unit(0.287, "feet"),
  33049. name: "Collar",
  33050. image: {
  33051. source: "./media/characters/sykes/collar.svg"
  33052. }
  33053. },
  33054. },
  33055. [
  33056. {
  33057. name: "Shrunken",
  33058. height: math.unit(5, "inches")
  33059. },
  33060. {
  33061. name: "Normal",
  33062. height: math.unit(6 + 4 / 12, "feet"),
  33063. default: true
  33064. },
  33065. {
  33066. name: "Big",
  33067. height: math.unit(15, "feet")
  33068. },
  33069. ]
  33070. ))
  33071. characterMakers.push(() => makeCharacter(
  33072. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33073. {
  33074. front: {
  33075. height: math.unit(5 + 8/12, "feet"),
  33076. weight: math.unit(190, "lb"),
  33077. name: "Front",
  33078. image: {
  33079. source: "./media/characters/oven-otter/front.svg",
  33080. extra: 1809/1740,
  33081. bottom: 181/1990
  33082. }
  33083. },
  33084. back: {
  33085. height: math.unit(5 + 8/12, "feet"),
  33086. weight: math.unit(190, "lb"),
  33087. name: "Back",
  33088. image: {
  33089. source: "./media/characters/oven-otter/back.svg",
  33090. extra: 1709/1635,
  33091. bottom: 118/1827
  33092. }
  33093. },
  33094. hand: {
  33095. height: math.unit(1.07, "feet"),
  33096. name: "Hand",
  33097. image: {
  33098. source: "./media/characters/oven-otter/hand.svg"
  33099. }
  33100. },
  33101. beans: {
  33102. height: math.unit(1.74, "feet"),
  33103. name: "Beans",
  33104. image: {
  33105. source: "./media/characters/oven-otter/beans.svg"
  33106. }
  33107. },
  33108. },
  33109. [
  33110. {
  33111. name: "Micro",
  33112. height: math.unit(0.5, "inches")
  33113. },
  33114. {
  33115. name: "Normal",
  33116. height: math.unit(5 + 8/12, "feet"),
  33117. default: true
  33118. },
  33119. {
  33120. name: "Macro",
  33121. height: math.unit(250, "feet")
  33122. },
  33123. {
  33124. name: "Really High",
  33125. height: math.unit(420, "feet")
  33126. },
  33127. ]
  33128. ))
  33129. characterMakers.push(() => makeCharacter(
  33130. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33131. {
  33132. front: {
  33133. height: math.unit(5, "meters"),
  33134. weight: math.unit(292000000000000, "kg"),
  33135. name: "Front",
  33136. image: {
  33137. source: "./media/characters/devourer/front.svg",
  33138. extra: 1800/1733,
  33139. bottom: 211/2011
  33140. }
  33141. },
  33142. maw: {
  33143. height: math.unit(1.1, "meter"),
  33144. name: "Maw",
  33145. image: {
  33146. source: "./media/characters/devourer/maw.svg"
  33147. }
  33148. },
  33149. },
  33150. [
  33151. {
  33152. name: "Small",
  33153. height: math.unit(3, "meters")
  33154. },
  33155. {
  33156. name: "Large",
  33157. height: math.unit(5, "meters"),
  33158. default: true
  33159. },
  33160. ]
  33161. ))
  33162. characterMakers.push(() => makeCharacter(
  33163. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33164. {
  33165. front: {
  33166. height: math.unit(6, "feet"),
  33167. weight: math.unit(400, "lb"),
  33168. name: "Front",
  33169. image: {
  33170. source: "./media/characters/ellarby/front.svg",
  33171. extra: 1909/1763,
  33172. bottom: 80/1989
  33173. }
  33174. },
  33175. back: {
  33176. height: math.unit(6, "feet"),
  33177. weight: math.unit(400, "lb"),
  33178. name: "Back",
  33179. image: {
  33180. source: "./media/characters/ellarby/back.svg",
  33181. extra: 1914/1784,
  33182. bottom: 172/2086
  33183. }
  33184. },
  33185. },
  33186. [
  33187. {
  33188. name: "Mischief",
  33189. height: math.unit(18, "inches")
  33190. },
  33191. {
  33192. name: "Trouble",
  33193. height: math.unit(12, "feet")
  33194. },
  33195. {
  33196. name: "Havoc",
  33197. height: math.unit(200, "feet"),
  33198. default: true
  33199. },
  33200. {
  33201. name: "Pandemonium",
  33202. height: math.unit(1, "mile")
  33203. },
  33204. {
  33205. name: "Catastrophe",
  33206. height: math.unit(100, "miles")
  33207. },
  33208. ]
  33209. ))
  33210. characterMakers.push(() => makeCharacter(
  33211. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33212. {
  33213. front: {
  33214. height: math.unit(4.7, "meters"),
  33215. weight: math.unit(6500, "kg"),
  33216. name: "Front",
  33217. image: {
  33218. source: "./media/characters/vex/front.svg",
  33219. extra: 1288/1140,
  33220. bottom: 100/1388
  33221. }
  33222. },
  33223. },
  33224. [
  33225. {
  33226. name: "Normal",
  33227. height: math.unit(4.7, "meters"),
  33228. default: true
  33229. },
  33230. ]
  33231. ))
  33232. characterMakers.push(() => makeCharacter(
  33233. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33234. {
  33235. normal: {
  33236. height: math.unit(6, "feet"),
  33237. weight: math.unit(350, "lb"),
  33238. name: "Normal",
  33239. image: {
  33240. source: "./media/characters/teshy/normal.svg",
  33241. extra: 1795/1735,
  33242. bottom: 16/1811
  33243. }
  33244. },
  33245. monsterFront: {
  33246. height: math.unit(12, "feet"),
  33247. weight: math.unit(4700, "lb"),
  33248. name: "Monster (Front)",
  33249. image: {
  33250. source: "./media/characters/teshy/monster-front.svg",
  33251. extra: 2042/2034,
  33252. bottom: 128/2170
  33253. }
  33254. },
  33255. monsterSide: {
  33256. height: math.unit(12, "feet"),
  33257. weight: math.unit(4700, "lb"),
  33258. name: "Monster (Side)",
  33259. image: {
  33260. source: "./media/characters/teshy/monster-side.svg",
  33261. extra: 2067/2056,
  33262. bottom: 70/2137
  33263. }
  33264. },
  33265. monsterBack: {
  33266. height: math.unit(12, "feet"),
  33267. weight: math.unit(4700, "lb"),
  33268. name: "Monster (Back)",
  33269. image: {
  33270. source: "./media/characters/teshy/monster-back.svg",
  33271. extra: 1921/1914,
  33272. bottom: 171/2092
  33273. }
  33274. },
  33275. },
  33276. [
  33277. {
  33278. name: "Normal",
  33279. height: math.unit(6, "feet"),
  33280. default: true
  33281. },
  33282. ]
  33283. ))
  33284. characterMakers.push(() => makeCharacter(
  33285. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33286. {
  33287. front: {
  33288. height: math.unit(6, "feet"),
  33289. name: "Front",
  33290. image: {
  33291. source: "./media/characters/ramey/front.svg",
  33292. extra: 790/787,
  33293. bottom: 27/817
  33294. }
  33295. },
  33296. },
  33297. [
  33298. {
  33299. name: "Normal",
  33300. height: math.unit(6, "feet"),
  33301. default: true
  33302. },
  33303. ]
  33304. ))
  33305. characterMakers.push(() => makeCharacter(
  33306. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33307. {
  33308. front: {
  33309. height: math.unit(5 + 5/12, "feet"),
  33310. weight: math.unit(120, "lb"),
  33311. name: "Front",
  33312. image: {
  33313. source: "./media/characters/phirae/front.svg",
  33314. extra: 2491/2436,
  33315. bottom: 38/2529
  33316. }
  33317. },
  33318. },
  33319. [
  33320. {
  33321. name: "Normal",
  33322. height: math.unit(5 + 5/12, "feet"),
  33323. default: true
  33324. },
  33325. ]
  33326. ))
  33327. characterMakers.push(() => makeCharacter(
  33328. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33329. {
  33330. front: {
  33331. height: math.unit(6, "feet"),
  33332. weight: math.unit(150, "lb"),
  33333. name: "Front",
  33334. image: {
  33335. source: "./media/characters/stagglas/front.svg",
  33336. extra: 962/882,
  33337. bottom: 53/1015
  33338. }
  33339. },
  33340. },
  33341. [
  33342. {
  33343. name: "Normal",
  33344. height: math.unit(5 + 3/12, "feet"),
  33345. default: true
  33346. },
  33347. ]
  33348. ))
  33349. characterMakers.push(() => makeCharacter(
  33350. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33351. {
  33352. front: {
  33353. height: math.unit(5 + 4/12, "feet"),
  33354. weight: math.unit(145, "lb"),
  33355. name: "Front",
  33356. image: {
  33357. source: "./media/characters/starra/front.svg",
  33358. extra: 1790/1691,
  33359. bottom: 91/1881
  33360. }
  33361. },
  33362. },
  33363. [
  33364. {
  33365. name: "Normal",
  33366. height: math.unit(5 + 4/12, "feet"),
  33367. default: true
  33368. },
  33369. ]
  33370. ))
  33371. characterMakers.push(() => makeCharacter(
  33372. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33373. {
  33374. front: {
  33375. height: math.unit(2.2, "meters"),
  33376. name: "Front",
  33377. image: {
  33378. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33379. extra: 1194/1005,
  33380. bottom: 25/1219
  33381. }
  33382. },
  33383. },
  33384. [
  33385. {
  33386. name: "Normal",
  33387. height: math.unit(2.2, "meters"),
  33388. default: true
  33389. },
  33390. ]
  33391. ))
  33392. characterMakers.push(() => makeCharacter(
  33393. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33394. {
  33395. side: {
  33396. height: math.unit(8 + 2/12, "feet"),
  33397. weight: math.unit(1240, "lb"),
  33398. name: "Side",
  33399. image: {
  33400. source: "./media/characters/mika-valentine/side.svg",
  33401. extra: 2670/2501,
  33402. bottom: 250/2920
  33403. }
  33404. },
  33405. },
  33406. [
  33407. {
  33408. name: "Normal",
  33409. height: math.unit(8 + 2/12, "feet"),
  33410. default: true
  33411. },
  33412. ]
  33413. ))
  33414. characterMakers.push(() => makeCharacter(
  33415. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33416. {
  33417. front: {
  33418. height: math.unit(7 + 2/12, "feet"),
  33419. name: "Front",
  33420. image: {
  33421. source: "./media/characters/xoltol/front.svg",
  33422. extra: 2212/2124,
  33423. bottom: 84/2296
  33424. }
  33425. },
  33426. side: {
  33427. height: math.unit(7 + 2/12, "feet"),
  33428. name: "Side",
  33429. image: {
  33430. source: "./media/characters/xoltol/side.svg",
  33431. extra: 2273/2197,
  33432. bottom: 26/2299
  33433. }
  33434. },
  33435. hand: {
  33436. height: math.unit(2.5, "feet"),
  33437. name: "Hand",
  33438. image: {
  33439. source: "./media/characters/xoltol/hand.svg"
  33440. }
  33441. },
  33442. },
  33443. [
  33444. {
  33445. name: "Small-ish",
  33446. height: math.unit(5 + 11/12, "feet")
  33447. },
  33448. {
  33449. name: "Normal",
  33450. height: math.unit(7 + 2/12, "feet")
  33451. },
  33452. {
  33453. name: "\"Macro\"",
  33454. height: math.unit(14 + 9/12, "feet"),
  33455. default: true
  33456. },
  33457. {
  33458. name: "Alternate Height",
  33459. height: math.unit(20, "feet")
  33460. },
  33461. {
  33462. name: "Actually Macro",
  33463. height: math.unit(100, "feet")
  33464. },
  33465. ]
  33466. ))
  33467. characterMakers.push(() => makeCharacter(
  33468. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33469. {
  33470. front: {
  33471. height: math.unit(5 + 2/12, "feet"),
  33472. name: "Front",
  33473. image: {
  33474. source: "./media/characters/kotetsu-redwood/front.svg",
  33475. extra: 1053/942,
  33476. bottom: 60/1113
  33477. }
  33478. },
  33479. },
  33480. [
  33481. {
  33482. name: "Normal",
  33483. height: math.unit(5 + 2/12, "feet"),
  33484. default: true
  33485. },
  33486. ]
  33487. ))
  33488. characterMakers.push(() => makeCharacter(
  33489. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33490. {
  33491. front: {
  33492. height: math.unit(2.4, "meters"),
  33493. weight: math.unit(125, "kg"),
  33494. name: "Front",
  33495. image: {
  33496. source: "./media/characters/lilith/front.svg",
  33497. extra: 1590/1513,
  33498. bottom: 203/1793
  33499. }
  33500. },
  33501. },
  33502. [
  33503. {
  33504. name: "Humanoid",
  33505. height: math.unit(2.4, "meters")
  33506. },
  33507. {
  33508. name: "Normal",
  33509. height: math.unit(6, "meters"),
  33510. default: true
  33511. },
  33512. {
  33513. name: "Largest",
  33514. height: math.unit(55, "meters")
  33515. },
  33516. ]
  33517. ))
  33518. characterMakers.push(() => makeCharacter(
  33519. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33520. {
  33521. front: {
  33522. height: math.unit(8 + 4/12, "feet"),
  33523. weight: math.unit(535, "lb"),
  33524. name: "Front",
  33525. image: {
  33526. source: "./media/characters/beh'kah-bolger/front.svg",
  33527. extra: 1660/1603,
  33528. bottom: 37/1697
  33529. }
  33530. },
  33531. },
  33532. [
  33533. {
  33534. name: "Normal",
  33535. height: math.unit(8 + 4/12, "feet"),
  33536. default: true
  33537. },
  33538. {
  33539. name: "Kaiju",
  33540. height: math.unit(250, "feet")
  33541. },
  33542. {
  33543. name: "Still Growing",
  33544. height: math.unit(10, "miles")
  33545. },
  33546. {
  33547. name: "Continental",
  33548. height: math.unit(5000, "miles")
  33549. },
  33550. {
  33551. name: "Final Form",
  33552. height: math.unit(2500000, "miles")
  33553. },
  33554. ]
  33555. ))
  33556. characterMakers.push(() => makeCharacter(
  33557. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33558. {
  33559. front: {
  33560. height: math.unit(7 + 2/12, "feet"),
  33561. weight: math.unit(230, "kg"),
  33562. name: "Front",
  33563. image: {
  33564. source: "./media/characters/tatyana-milewska/front.svg",
  33565. extra: 1199/1150,
  33566. bottom: 86/1285
  33567. }
  33568. },
  33569. },
  33570. [
  33571. {
  33572. name: "Normal",
  33573. height: math.unit(7 + 2/12, "feet"),
  33574. default: true
  33575. },
  33576. {
  33577. name: "Big",
  33578. height: math.unit(12, "feet")
  33579. },
  33580. {
  33581. name: "Minimacro",
  33582. height: math.unit(20, "feet")
  33583. },
  33584. {
  33585. name: "Macro",
  33586. height: math.unit(120, "feet")
  33587. },
  33588. ]
  33589. ))
  33590. characterMakers.push(() => makeCharacter(
  33591. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33592. {
  33593. front: {
  33594. height: math.unit(7 + 8/12, "feet"),
  33595. weight: math.unit(152, "kg"),
  33596. name: "Front",
  33597. image: {
  33598. source: "./media/characters/helen-arri/front.svg",
  33599. extra: 440/423,
  33600. bottom: 14/454
  33601. }
  33602. },
  33603. back: {
  33604. height: math.unit(7 + 8/12, "feet"),
  33605. weight: math.unit(152, "kg"),
  33606. name: "Back",
  33607. image: {
  33608. source: "./media/characters/helen-arri/back.svg",
  33609. extra: 443/426,
  33610. bottom: 8/451
  33611. }
  33612. },
  33613. },
  33614. [
  33615. {
  33616. name: "Normal",
  33617. height: math.unit(7 + 8/12, "feet"),
  33618. default: true
  33619. },
  33620. {
  33621. name: "Big",
  33622. height: math.unit(14, "feet")
  33623. },
  33624. {
  33625. name: "Minimacro",
  33626. height: math.unit(24, "feet")
  33627. },
  33628. {
  33629. name: "Macro",
  33630. height: math.unit(140, "feet")
  33631. },
  33632. ]
  33633. ))
  33634. characterMakers.push(() => makeCharacter(
  33635. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33636. {
  33637. front: {
  33638. height: math.unit(6, "meters"),
  33639. name: "Front",
  33640. image: {
  33641. source: "./media/characters/ehanu-rehu/front.svg",
  33642. extra: 1800/1800,
  33643. bottom: 59/1859
  33644. }
  33645. },
  33646. },
  33647. [
  33648. {
  33649. name: "Normal",
  33650. height: math.unit(6, "meters"),
  33651. default: true
  33652. },
  33653. ]
  33654. ))
  33655. characterMakers.push(() => makeCharacter(
  33656. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33657. {
  33658. front: {
  33659. height: math.unit(7 + 3/12, "feet"),
  33660. name: "Front",
  33661. image: {
  33662. source: "./media/characters/renholder/front.svg",
  33663. extra: 3096/2960,
  33664. bottom: 250/3346
  33665. }
  33666. },
  33667. },
  33668. [
  33669. {
  33670. name: "Normal Bat",
  33671. height: math.unit(7 + 3/12, "feet"),
  33672. default: true
  33673. },
  33674. {
  33675. name: "Slightly Tall Bat",
  33676. height: math.unit(100, "feet")
  33677. },
  33678. {
  33679. name: "Big Bat",
  33680. height: math.unit(1000, "feet")
  33681. },
  33682. {
  33683. name: "City-Sized Bat",
  33684. height: math.unit(200000, "feet")
  33685. },
  33686. {
  33687. name: "Bigger Bat",
  33688. height: math.unit(10000, "miles")
  33689. },
  33690. {
  33691. name: "Solar Sized Bat",
  33692. height: math.unit(100, "AU")
  33693. },
  33694. {
  33695. name: "Galactic Bat",
  33696. height: math.unit(200000, "lightyears")
  33697. },
  33698. {
  33699. name: "Universally Known Bat",
  33700. height: math.unit(1, "universe")
  33701. },
  33702. ]
  33703. ))
  33704. characterMakers.push(() => makeCharacter(
  33705. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33706. {
  33707. front: {
  33708. height: math.unit(6 + 11/12, "feet"),
  33709. weight: math.unit(250, "lb"),
  33710. name: "Front",
  33711. image: {
  33712. source: "./media/characters/cookiecat/front.svg",
  33713. extra: 893/827,
  33714. bottom: 14/907
  33715. }
  33716. },
  33717. },
  33718. [
  33719. {
  33720. name: "Micro",
  33721. height: math.unit(3, "inches")
  33722. },
  33723. {
  33724. name: "Normal",
  33725. height: math.unit(6 + 11/12, "feet"),
  33726. default: true
  33727. },
  33728. {
  33729. name: "Macro",
  33730. height: math.unit(100, "feet")
  33731. },
  33732. {
  33733. name: "Macro+",
  33734. height: math.unit(404, "feet")
  33735. },
  33736. {
  33737. name: "Megamacro",
  33738. height: math.unit(165, "miles")
  33739. },
  33740. {
  33741. name: "Planetary",
  33742. height: math.unit(4600, "miles")
  33743. },
  33744. ]
  33745. ))
  33746. characterMakers.push(() => makeCharacter(
  33747. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33748. {
  33749. front: {
  33750. height: math.unit(10 + 3/12, "feet"),
  33751. weight: math.unit(1500, "lb"),
  33752. name: "Front",
  33753. image: {
  33754. source: "./media/characters/tux-kusanagi/front.svg",
  33755. extra: 944/840,
  33756. bottom: 39/983
  33757. }
  33758. },
  33759. back: {
  33760. height: math.unit(10 + 3/12, "feet"),
  33761. weight: math.unit(1500, "lb"),
  33762. name: "Back",
  33763. image: {
  33764. source: "./media/characters/tux-kusanagi/back.svg",
  33765. extra: 941/842,
  33766. bottom: 28/969
  33767. }
  33768. },
  33769. rump: {
  33770. height: math.unit(5.25, "feet"),
  33771. name: "Rump",
  33772. image: {
  33773. source: "./media/characters/tux-kusanagi/rump.svg"
  33774. }
  33775. },
  33776. beak: {
  33777. height: math.unit(1.54, "feet"),
  33778. name: "Beak",
  33779. image: {
  33780. source: "./media/characters/tux-kusanagi/beak.svg"
  33781. }
  33782. },
  33783. },
  33784. [
  33785. {
  33786. name: "Normal",
  33787. height: math.unit(10 + 3/12, "feet"),
  33788. default: true
  33789. },
  33790. ]
  33791. ))
  33792. characterMakers.push(() => makeCharacter(
  33793. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33794. {
  33795. front: {
  33796. height: math.unit(58, "feet"),
  33797. weight: math.unit(200, "tons"),
  33798. name: "Front",
  33799. image: {
  33800. source: "./media/characters/uzarmazari/front.svg",
  33801. extra: 1575/1455,
  33802. bottom: 152/1727
  33803. }
  33804. },
  33805. back: {
  33806. height: math.unit(58, "feet"),
  33807. weight: math.unit(200, "tons"),
  33808. name: "Back",
  33809. image: {
  33810. source: "./media/characters/uzarmazari/back.svg",
  33811. extra: 1585/1510,
  33812. bottom: 157/1742
  33813. }
  33814. },
  33815. head: {
  33816. height: math.unit(26, "feet"),
  33817. name: "Head",
  33818. image: {
  33819. source: "./media/characters/uzarmazari/head.svg"
  33820. }
  33821. },
  33822. },
  33823. [
  33824. {
  33825. name: "Normal",
  33826. height: math.unit(58, "feet"),
  33827. default: true
  33828. },
  33829. ]
  33830. ))
  33831. characterMakers.push(() => makeCharacter(
  33832. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33833. {
  33834. side: {
  33835. height: math.unit(12, "feet"),
  33836. name: "Side",
  33837. image: {
  33838. source: "./media/characters/akitu/side.svg",
  33839. extra: 1421/1321,
  33840. bottom: 157/1578
  33841. }
  33842. },
  33843. front: {
  33844. height: math.unit(12, "feet"),
  33845. name: "Front",
  33846. image: {
  33847. source: "./media/characters/akitu/front.svg",
  33848. extra: 1435/1326,
  33849. bottom: 232/1667
  33850. }
  33851. },
  33852. },
  33853. [
  33854. {
  33855. name: "Normal",
  33856. height: math.unit(12, "feet"),
  33857. default: true
  33858. },
  33859. ]
  33860. ))
  33861. //characters
  33862. function makeCharacters() {
  33863. const results = [];
  33864. characterMakers.forEach(character => {
  33865. results.push(character());
  33866. });
  33867. return results;
  33868. }