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

34691 строка
872 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. }
  1516. //species
  1517. function getSpeciesInfo(speciesList) {
  1518. let result = new Set();
  1519. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1520. result.add(entry)
  1521. });
  1522. return Array.from(result);
  1523. };
  1524. function getSpeciesInfoHelper(species) {
  1525. if (!speciesData[species]) {
  1526. console.warn(species + " doesn't exist");
  1527. return [];
  1528. }
  1529. if (speciesData[species].parents) {
  1530. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1531. } else {
  1532. return [species];
  1533. }
  1534. }
  1535. characterMakers.push(() => makeCharacter(
  1536. {
  1537. name: "Fen",
  1538. species: ["crux"],
  1539. description: {
  1540. title: "Bio",
  1541. text: "Very furry. Sheds on everything."
  1542. },
  1543. tags: [
  1544. "anthro",
  1545. "goo"
  1546. ]
  1547. },
  1548. {
  1549. back: {
  1550. height: math.unit(2.2428, "meter"),
  1551. weight: math.unit(124.738, "kg"),
  1552. name: "Back",
  1553. image: {
  1554. source: "./media/characters/fen/back.svg",
  1555. extra: 2024 / 1867,
  1556. bottom: 13 / 2037
  1557. },
  1558. info: {
  1559. description: {
  1560. mode: "append",
  1561. text: "\n\nHe is not currently looking at you."
  1562. }
  1563. }
  1564. },
  1565. full: {
  1566. height: math.unit(1.34, "meter"),
  1567. weight: math.unit(225, "kg"),
  1568. name: "Full",
  1569. image: {
  1570. source: "./media/characters/fen/full.svg"
  1571. },
  1572. info: {
  1573. description: {
  1574. mode: "append",
  1575. text: "\n\nMunch."
  1576. }
  1577. }
  1578. },
  1579. kneeling: {
  1580. height: math.unit(5.4, "feet"),
  1581. weight: math.unit(124.738, "kg"),
  1582. name: "Kneeling",
  1583. image: {
  1584. source: "./media/characters/fen/kneeling.svg",
  1585. extra: 563 / 507
  1586. }
  1587. },
  1588. goo: {
  1589. height: math.unit(2.8, "feet"),
  1590. weight: math.unit(125, "kg"),
  1591. capacity: math.unit(1, "people"),
  1592. name: "Goo",
  1593. image: {
  1594. source: "./media/characters/fen/goo.svg",
  1595. bottom: 116 / 613
  1596. }
  1597. },
  1598. lounging: {
  1599. height: math.unit(6.5, "feet"),
  1600. weight: math.unit(125, "kg"),
  1601. name: "Lounging",
  1602. image: {
  1603. source: "./media/characters/fen/lounging.svg"
  1604. }
  1605. },
  1606. },
  1607. [
  1608. {
  1609. name: "Normal",
  1610. height: math.unit(2.2428, "meter")
  1611. },
  1612. {
  1613. name: "Big",
  1614. height: math.unit(12, "feet")
  1615. },
  1616. {
  1617. name: "Minimacro",
  1618. height: math.unit(40, "feet"),
  1619. default: true,
  1620. info: {
  1621. description: {
  1622. mode: "append",
  1623. text: "\n\nTOO DAMN BIG"
  1624. }
  1625. }
  1626. },
  1627. {
  1628. name: "Macro",
  1629. height: math.unit(100, "feet"),
  1630. info: {
  1631. description: {
  1632. mode: "append",
  1633. text: "\n\nTOO DAMN BIG"
  1634. }
  1635. }
  1636. },
  1637. {
  1638. name: "Macro+",
  1639. height: math.unit(300, "feet")
  1640. },
  1641. {
  1642. name: "Megamacro",
  1643. height: math.unit(2, "miles")
  1644. }
  1645. ]
  1646. ))
  1647. characterMakers.push(() => makeCharacter(
  1648. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1649. {
  1650. front: {
  1651. height: math.unit(183, "cm"),
  1652. weight: math.unit(80, "kg"),
  1653. name: "Front",
  1654. image: {
  1655. source: "./media/characters/sofia-fluttertail/front.svg",
  1656. bottom: 0.01,
  1657. extra: 2154 / 2081
  1658. }
  1659. },
  1660. frontAlt: {
  1661. height: math.unit(183, "cm"),
  1662. weight: math.unit(80, "kg"),
  1663. name: "Front (alt)",
  1664. image: {
  1665. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1666. }
  1667. },
  1668. back: {
  1669. height: math.unit(183, "cm"),
  1670. weight: math.unit(80, "kg"),
  1671. name: "Back",
  1672. image: {
  1673. source: "./media/characters/sofia-fluttertail/back.svg"
  1674. }
  1675. },
  1676. kneeling: {
  1677. height: math.unit(125, "cm"),
  1678. weight: math.unit(80, "kg"),
  1679. name: "Kneeling",
  1680. image: {
  1681. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1682. extra: 1033 / 977,
  1683. bottom: 23.7 / 1057
  1684. }
  1685. },
  1686. maw: {
  1687. height: math.unit(183 / 5, "cm"),
  1688. name: "Maw",
  1689. image: {
  1690. source: "./media/characters/sofia-fluttertail/maw.svg"
  1691. }
  1692. },
  1693. mawcloseup: {
  1694. height: math.unit(183 / 5 * 0.41, "cm"),
  1695. name: "Maw (Closeup)",
  1696. image: {
  1697. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1698. }
  1699. },
  1700. paws: {
  1701. height: math.unit(1.17, "feet"),
  1702. name: "Paws",
  1703. image: {
  1704. source: "./media/characters/sofia-fluttertail/paws.svg",
  1705. extra: 851 / 851,
  1706. bottom: 17 / 868
  1707. }
  1708. },
  1709. },
  1710. [
  1711. {
  1712. name: "Normal",
  1713. height: math.unit(1.83, "meter")
  1714. },
  1715. {
  1716. name: "Size Thief",
  1717. height: math.unit(18, "feet")
  1718. },
  1719. {
  1720. name: "50 Foot Collie",
  1721. height: math.unit(50, "feet")
  1722. },
  1723. {
  1724. name: "Macro",
  1725. height: math.unit(96, "feet"),
  1726. default: true
  1727. },
  1728. {
  1729. name: "Megamerger",
  1730. height: math.unit(650, "feet")
  1731. },
  1732. ]
  1733. ))
  1734. characterMakers.push(() => makeCharacter(
  1735. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1736. {
  1737. front: {
  1738. height: math.unit(7, "feet"),
  1739. weight: math.unit(100, "kg"),
  1740. name: "Front",
  1741. image: {
  1742. source: "./media/characters/march/front.svg",
  1743. extra: 1,
  1744. bottom: 0.015
  1745. }
  1746. },
  1747. foot: {
  1748. height: math.unit(0.9, "feet"),
  1749. name: "Foot",
  1750. image: {
  1751. source: "./media/characters/march/foot.svg"
  1752. }
  1753. },
  1754. },
  1755. [
  1756. {
  1757. name: "Normal",
  1758. height: math.unit(7.9, "feet")
  1759. },
  1760. {
  1761. name: "Macro",
  1762. height: math.unit(220, "meters")
  1763. },
  1764. {
  1765. name: "Megamacro",
  1766. height: math.unit(2.98, "km"),
  1767. default: true
  1768. },
  1769. {
  1770. name: "Gigamacro",
  1771. height: math.unit(15963, "km")
  1772. },
  1773. {
  1774. name: "Teramacro",
  1775. height: math.unit(2980000000, "km")
  1776. },
  1777. {
  1778. name: "Examacro",
  1779. height: math.unit(250, "parsecs")
  1780. },
  1781. ]
  1782. ))
  1783. characterMakers.push(() => makeCharacter(
  1784. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1785. {
  1786. front: {
  1787. height: math.unit(6, "feet"),
  1788. weight: math.unit(60, "kg"),
  1789. name: "Front",
  1790. image: {
  1791. source: "./media/characters/noir/front.svg",
  1792. extra: 1,
  1793. bottom: 0.032
  1794. }
  1795. },
  1796. },
  1797. [
  1798. {
  1799. name: "Normal",
  1800. height: math.unit(6.6, "feet")
  1801. },
  1802. {
  1803. name: "Macro",
  1804. height: math.unit(500, "feet")
  1805. },
  1806. {
  1807. name: "Megamacro",
  1808. height: math.unit(2.5, "km"),
  1809. default: true
  1810. },
  1811. {
  1812. name: "Gigamacro",
  1813. height: math.unit(22500, "km")
  1814. },
  1815. {
  1816. name: "Teramacro",
  1817. height: math.unit(2500000000, "km")
  1818. },
  1819. {
  1820. name: "Examacro",
  1821. height: math.unit(200, "parsecs")
  1822. },
  1823. ]
  1824. ))
  1825. characterMakers.push(() => makeCharacter(
  1826. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1827. {
  1828. front: {
  1829. height: math.unit(7, "feet"),
  1830. weight: math.unit(100, "kg"),
  1831. name: "Front",
  1832. image: {
  1833. source: "./media/characters/okuri/front.svg",
  1834. extra: 1,
  1835. bottom: 0.037
  1836. }
  1837. },
  1838. back: {
  1839. height: math.unit(7, "feet"),
  1840. weight: math.unit(100, "kg"),
  1841. name: "Back",
  1842. image: {
  1843. source: "./media/characters/okuri/back.svg",
  1844. extra: 1,
  1845. bottom: 0.007
  1846. }
  1847. },
  1848. },
  1849. [
  1850. {
  1851. name: "Megamacro",
  1852. height: math.unit(100, "miles"),
  1853. default: true
  1854. },
  1855. ]
  1856. ))
  1857. characterMakers.push(() => makeCharacter(
  1858. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1859. {
  1860. front: {
  1861. height: math.unit(7, "feet"),
  1862. weight: math.unit(100, "kg"),
  1863. name: "Front",
  1864. image: {
  1865. source: "./media/characters/manny/front.svg",
  1866. extra: 1,
  1867. bottom: 0.06
  1868. }
  1869. },
  1870. back: {
  1871. height: math.unit(7, "feet"),
  1872. weight: math.unit(100, "kg"),
  1873. name: "Back",
  1874. image: {
  1875. source: "./media/characters/manny/back.svg",
  1876. extra: 1,
  1877. bottom: 0.014
  1878. }
  1879. },
  1880. },
  1881. [
  1882. {
  1883. name: "Normal",
  1884. height: math.unit(7, "feet"),
  1885. },
  1886. {
  1887. name: "Macro",
  1888. height: math.unit(78, "feet"),
  1889. default: true
  1890. },
  1891. {
  1892. name: "Macro+",
  1893. height: math.unit(300, "meters")
  1894. },
  1895. {
  1896. name: "Macro++",
  1897. height: math.unit(2400, "meters")
  1898. },
  1899. {
  1900. name: "Megamacro",
  1901. height: math.unit(5167, "meters")
  1902. },
  1903. {
  1904. name: "Gigamacro",
  1905. height: math.unit(41769, "miles")
  1906. },
  1907. ]
  1908. ))
  1909. characterMakers.push(() => makeCharacter(
  1910. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1911. {
  1912. front: {
  1913. height: math.unit(7, "feet"),
  1914. weight: math.unit(100, "kg"),
  1915. name: "Front",
  1916. image: {
  1917. source: "./media/characters/adake/front-1.svg"
  1918. }
  1919. },
  1920. frontAlt: {
  1921. height: math.unit(7, "feet"),
  1922. weight: math.unit(100, "kg"),
  1923. name: "Front (Alt)",
  1924. image: {
  1925. source: "./media/characters/adake/front-2.svg",
  1926. extra: 1,
  1927. bottom: 0.01
  1928. }
  1929. },
  1930. back: {
  1931. height: math.unit(7, "feet"),
  1932. weight: math.unit(100, "kg"),
  1933. name: "Back",
  1934. image: {
  1935. source: "./media/characters/adake/back.svg",
  1936. }
  1937. },
  1938. kneel: {
  1939. height: math.unit(5.385, "feet"),
  1940. weight: math.unit(100, "kg"),
  1941. name: "Kneeling",
  1942. image: {
  1943. source: "./media/characters/adake/kneel.svg",
  1944. bottom: 0.052
  1945. }
  1946. },
  1947. },
  1948. [
  1949. {
  1950. name: "Normal",
  1951. height: math.unit(7, "feet"),
  1952. },
  1953. {
  1954. name: "Macro",
  1955. height: math.unit(78, "feet"),
  1956. default: true
  1957. },
  1958. {
  1959. name: "Macro+",
  1960. height: math.unit(300, "meters")
  1961. },
  1962. {
  1963. name: "Macro++",
  1964. height: math.unit(2400, "meters")
  1965. },
  1966. {
  1967. name: "Megamacro",
  1968. height: math.unit(5167, "meters")
  1969. },
  1970. {
  1971. name: "Gigamacro",
  1972. height: math.unit(41769, "miles")
  1973. },
  1974. ]
  1975. ))
  1976. characterMakers.push(() => makeCharacter(
  1977. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1978. {
  1979. front: {
  1980. height: math.unit(1.65, "meters"),
  1981. weight: math.unit(50, "kg"),
  1982. name: "Front",
  1983. image: {
  1984. source: "./media/characters/elijah/front.svg",
  1985. extra: 858 / 830,
  1986. bottom: 95.5 / 953.8559
  1987. }
  1988. },
  1989. back: {
  1990. height: math.unit(1.65, "meters"),
  1991. weight: math.unit(50, "kg"),
  1992. name: "Back",
  1993. image: {
  1994. source: "./media/characters/elijah/back.svg",
  1995. extra: 895 / 850,
  1996. bottom: 5.3 / 897.956
  1997. }
  1998. },
  1999. frontNsfw: {
  2000. height: math.unit(1.65, "meters"),
  2001. weight: math.unit(50, "kg"),
  2002. name: "Front (NSFW)",
  2003. image: {
  2004. source: "./media/characters/elijah/front-nsfw.svg",
  2005. extra: 858 / 830,
  2006. bottom: 95.5 / 953.8559
  2007. }
  2008. },
  2009. backNsfw: {
  2010. height: math.unit(1.65, "meters"),
  2011. weight: math.unit(50, "kg"),
  2012. name: "Back (NSFW)",
  2013. image: {
  2014. source: "./media/characters/elijah/back-nsfw.svg",
  2015. extra: 895 / 850,
  2016. bottom: 5.3 / 897.956
  2017. }
  2018. },
  2019. dick: {
  2020. height: math.unit(1, "feet"),
  2021. name: "Dick",
  2022. image: {
  2023. source: "./media/characters/elijah/dick.svg"
  2024. }
  2025. },
  2026. beakOpen: {
  2027. height: math.unit(1.25, "feet"),
  2028. name: "Beak (Open)",
  2029. image: {
  2030. source: "./media/characters/elijah/beak-open.svg"
  2031. }
  2032. },
  2033. beakShut: {
  2034. height: math.unit(1.25, "feet"),
  2035. name: "Beak (Shut)",
  2036. image: {
  2037. source: "./media/characters/elijah/beak-shut.svg"
  2038. }
  2039. },
  2040. footFlexing: {
  2041. height: math.unit(1.61, "feet"),
  2042. name: "Foot (Flexing)",
  2043. image: {
  2044. source: "./media/characters/elijah/foot-flexing.svg"
  2045. }
  2046. },
  2047. footStepping: {
  2048. height: math.unit(1.44, "feet"),
  2049. name: "Foot (Stepping)",
  2050. image: {
  2051. source: "./media/characters/elijah/foot-stepping.svg"
  2052. }
  2053. },
  2054. plantigradeLeg: {
  2055. height: math.unit(2.34, "feet"),
  2056. name: "Plantigrade Leg",
  2057. image: {
  2058. source: "./media/characters/elijah/plantigrade-leg.svg"
  2059. }
  2060. },
  2061. plantigradeFootLeft: {
  2062. height: math.unit(0.9, "feet"),
  2063. name: "Plantigrade Foot (Left)",
  2064. image: {
  2065. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2066. }
  2067. },
  2068. plantigradeFootRight: {
  2069. height: math.unit(0.9, "feet"),
  2070. name: "Plantigrade Foot (Right)",
  2071. image: {
  2072. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2073. }
  2074. },
  2075. },
  2076. [
  2077. {
  2078. name: "Normal",
  2079. height: math.unit(1.65, "meters")
  2080. },
  2081. {
  2082. name: "Macro",
  2083. height: math.unit(55, "meters"),
  2084. default: true
  2085. },
  2086. {
  2087. name: "Macro+",
  2088. height: math.unit(105, "meters")
  2089. },
  2090. ]
  2091. ))
  2092. characterMakers.push(() => makeCharacter(
  2093. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2094. {
  2095. front: {
  2096. height: math.unit(11, "feet"),
  2097. weight: math.unit(80, "kg"),
  2098. name: "Front",
  2099. image: {
  2100. source: "./media/characters/rai/front.svg",
  2101. extra: 1,
  2102. bottom: 0.03
  2103. }
  2104. },
  2105. side: {
  2106. height: math.unit(11, "feet"),
  2107. weight: math.unit(80, "kg"),
  2108. name: "Side",
  2109. image: {
  2110. source: "./media/characters/rai/side.svg"
  2111. }
  2112. },
  2113. back: {
  2114. height: math.unit(11, "feet"),
  2115. weight: math.unit(80, "lb"),
  2116. name: "Back",
  2117. image: {
  2118. source: "./media/characters/rai/back.svg",
  2119. extra: 1,
  2120. bottom: 0.01
  2121. }
  2122. },
  2123. feral: {
  2124. height: math.unit(11, "feet"),
  2125. weight: math.unit(800, "lb"),
  2126. name: "Feral",
  2127. image: {
  2128. source: "./media/characters/rai/feral.svg",
  2129. extra: 1050 / 659,
  2130. bottom: 0.07
  2131. }
  2132. },
  2133. dragon: {
  2134. height: math.unit(23, "feet"),
  2135. weight: math.unit(50000, "lb"),
  2136. name: "Dragon",
  2137. image: {
  2138. source: "./media/characters/rai/dragon.svg",
  2139. extra: 2498 / 2030,
  2140. bottom: 85.2 / 2584
  2141. }
  2142. },
  2143. maw: {
  2144. height: math.unit(6 / 3.81416, "feet"),
  2145. name: "Maw",
  2146. image: {
  2147. source: "./media/characters/rai/maw.svg"
  2148. }
  2149. },
  2150. },
  2151. [
  2152. {
  2153. name: "Normal",
  2154. height: math.unit(11, "feet")
  2155. },
  2156. {
  2157. name: "Macro",
  2158. height: math.unit(302, "feet"),
  2159. default: true
  2160. },
  2161. ]
  2162. ))
  2163. characterMakers.push(() => makeCharacter(
  2164. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2165. {
  2166. frontDressed: {
  2167. height: math.unit(216, "feet"),
  2168. weight: math.unit(7000000, "lb"),
  2169. name: "Front (Dressed)",
  2170. image: {
  2171. source: "./media/characters/jazzy/front-dressed.svg",
  2172. extra: 2738 / 2651,
  2173. bottom: 41.8 / 2786
  2174. }
  2175. },
  2176. backDressed: {
  2177. height: math.unit(216, "feet"),
  2178. weight: math.unit(7000000, "lb"),
  2179. name: "Back (Dressed)",
  2180. image: {
  2181. source: "./media/characters/jazzy/back-dressed.svg",
  2182. extra: 2775 / 2673,
  2183. bottom: 36.8 / 2817
  2184. }
  2185. },
  2186. front: {
  2187. height: math.unit(216, "feet"),
  2188. weight: math.unit(7000000, "lb"),
  2189. name: "Front",
  2190. image: {
  2191. source: "./media/characters/jazzy/front.svg",
  2192. extra: 2738 / 2651,
  2193. bottom: 41.8 / 2786
  2194. }
  2195. },
  2196. back: {
  2197. height: math.unit(216, "feet"),
  2198. weight: math.unit(7000000, "lb"),
  2199. name: "Back",
  2200. image: {
  2201. source: "./media/characters/jazzy/back.svg",
  2202. extra: 2775 / 2673,
  2203. bottom: 36.8 / 2817
  2204. }
  2205. },
  2206. maw: {
  2207. height: math.unit(20, "feet"),
  2208. name: "Maw",
  2209. image: {
  2210. source: "./media/characters/jazzy/maw.svg"
  2211. }
  2212. },
  2213. paws: {
  2214. height: math.unit(27.5, "feet"),
  2215. name: "Paws",
  2216. image: {
  2217. source: "./media/characters/jazzy/paws.svg"
  2218. }
  2219. },
  2220. eye: {
  2221. height: math.unit(4.4, "feet"),
  2222. name: "Eye",
  2223. image: {
  2224. source: "./media/characters/jazzy/eye.svg"
  2225. }
  2226. },
  2227. droneOffense: {
  2228. height: math.unit(9.5, "inches"),
  2229. name: "Drone (Offense)",
  2230. image: {
  2231. source: "./media/characters/jazzy/drone-offense.svg"
  2232. }
  2233. },
  2234. droneRecon: {
  2235. height: math.unit(9.5, "inches"),
  2236. name: "Drone (Recon)",
  2237. image: {
  2238. source: "./media/characters/jazzy/drone-recon.svg"
  2239. }
  2240. },
  2241. droneDefense: {
  2242. height: math.unit(9.5, "inches"),
  2243. name: "Drone (Defense)",
  2244. image: {
  2245. source: "./media/characters/jazzy/drone-defense.svg"
  2246. }
  2247. },
  2248. },
  2249. [
  2250. {
  2251. name: "Macro",
  2252. height: math.unit(216, "feet"),
  2253. default: true
  2254. },
  2255. ]
  2256. ))
  2257. characterMakers.push(() => makeCharacter(
  2258. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2259. {
  2260. front: {
  2261. height: math.unit(7, "feet"),
  2262. weight: math.unit(80, "kg"),
  2263. name: "Front",
  2264. image: {
  2265. source: "./media/characters/flamm/front.svg",
  2266. extra: 1794 / 1677,
  2267. bottom: 31.7 / 1828.5
  2268. }
  2269. },
  2270. },
  2271. [
  2272. {
  2273. name: "Normal",
  2274. height: math.unit(9.5, "feet")
  2275. },
  2276. {
  2277. name: "Macro",
  2278. height: math.unit(200, "feet"),
  2279. default: true
  2280. },
  2281. ]
  2282. ))
  2283. characterMakers.push(() => makeCharacter(
  2284. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2285. {
  2286. front: {
  2287. height: math.unit(5 + 3/12, "feet"),
  2288. weight: math.unit(60, "kg"),
  2289. name: "Front",
  2290. image: {
  2291. source: "./media/characters/zephiro/front.svg",
  2292. extra: 2309 / 2162,
  2293. bottom: 0.069
  2294. }
  2295. },
  2296. side: {
  2297. height: math.unit(5 + 3/12, "feet"),
  2298. weight: math.unit(60, "kg"),
  2299. name: "Side",
  2300. image: {
  2301. source: "./media/characters/zephiro/side.svg",
  2302. extra: 2403 / 2279,
  2303. bottom: 0.015
  2304. }
  2305. },
  2306. back: {
  2307. height: math.unit(5 + 3/12, "feet"),
  2308. weight: math.unit(60, "kg"),
  2309. name: "Back",
  2310. image: {
  2311. source: "./media/characters/zephiro/back.svg",
  2312. extra: 2373 / 2244,
  2313. bottom: 0.013
  2314. }
  2315. },
  2316. hand: {
  2317. height: math.unit(0.68, "feet"),
  2318. name: "Hand",
  2319. image: {
  2320. source: "./media/characters/zephiro/hand.svg"
  2321. }
  2322. },
  2323. paw: {
  2324. height: math.unit(1, "feet"),
  2325. name: "Paw",
  2326. image: {
  2327. source: "./media/characters/zephiro/paw.svg"
  2328. }
  2329. },
  2330. beans: {
  2331. height: math.unit(0.93, "feet"),
  2332. name: "Beans",
  2333. image: {
  2334. source: "./media/characters/zephiro/beans.svg"
  2335. }
  2336. },
  2337. },
  2338. [
  2339. {
  2340. name: "Micro",
  2341. height: math.unit(3, "inches")
  2342. },
  2343. {
  2344. name: "Normal",
  2345. height: math.unit(5 + 3 / 12, "feet"),
  2346. default: true
  2347. },
  2348. {
  2349. name: "Macro",
  2350. height: math.unit(118, "feet")
  2351. },
  2352. ]
  2353. ))
  2354. characterMakers.push(() => makeCharacter(
  2355. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2356. {
  2357. front: {
  2358. height: math.unit(5, "feet"),
  2359. weight: math.unit(90, "kg"),
  2360. name: "Front",
  2361. image: {
  2362. source: "./media/characters/fory/front.svg",
  2363. extra: 2862 / 2674,
  2364. bottom: 180 / 3043.8
  2365. }
  2366. },
  2367. back: {
  2368. height: math.unit(5, "feet"),
  2369. weight: math.unit(90, "kg"),
  2370. name: "Back",
  2371. image: {
  2372. source: "./media/characters/fory/back.svg",
  2373. extra: 2962 / 2791,
  2374. bottom: 106 / 3071.8
  2375. }
  2376. },
  2377. foot: {
  2378. height: math.unit(2.14, "feet"),
  2379. name: "Foot",
  2380. image: {
  2381. source: "./media/characters/fory/foot.svg"
  2382. }
  2383. },
  2384. },
  2385. [
  2386. {
  2387. name: "Normal",
  2388. height: math.unit(5, "feet")
  2389. },
  2390. {
  2391. name: "Macro",
  2392. height: math.unit(50, "feet"),
  2393. default: true
  2394. },
  2395. {
  2396. name: "Megamacro",
  2397. height: math.unit(10, "miles")
  2398. },
  2399. {
  2400. name: "Gigamacro",
  2401. height: math.unit(5, "earths")
  2402. },
  2403. ]
  2404. ))
  2405. characterMakers.push(() => makeCharacter(
  2406. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2407. {
  2408. front: {
  2409. height: math.unit(7, "feet"),
  2410. weight: math.unit(90, "kg"),
  2411. name: "Front",
  2412. image: {
  2413. source: "./media/characters/kurrikage/front.svg",
  2414. extra: 1,
  2415. bottom: 0.035
  2416. }
  2417. },
  2418. back: {
  2419. height: math.unit(7, "feet"),
  2420. weight: math.unit(90, "lb"),
  2421. name: "Back",
  2422. image: {
  2423. source: "./media/characters/kurrikage/back.svg"
  2424. }
  2425. },
  2426. paw: {
  2427. height: math.unit(1.5, "feet"),
  2428. name: "Paw",
  2429. image: {
  2430. source: "./media/characters/kurrikage/paw.svg"
  2431. }
  2432. },
  2433. staff: {
  2434. height: math.unit(6.7, "feet"),
  2435. name: "Staff",
  2436. image: {
  2437. source: "./media/characters/kurrikage/staff.svg"
  2438. }
  2439. },
  2440. peek: {
  2441. height: math.unit(1.05, "feet"),
  2442. name: "Peeking",
  2443. image: {
  2444. source: "./media/characters/kurrikage/peek.svg",
  2445. bottom: 0.08
  2446. }
  2447. },
  2448. },
  2449. [
  2450. {
  2451. name: "Normal",
  2452. height: math.unit(12, "feet"),
  2453. default: true
  2454. },
  2455. {
  2456. name: "Big",
  2457. height: math.unit(20, "feet")
  2458. },
  2459. {
  2460. name: "Macro",
  2461. height: math.unit(500, "feet")
  2462. },
  2463. {
  2464. name: "Megamacro",
  2465. height: math.unit(20, "miles")
  2466. },
  2467. ]
  2468. ))
  2469. characterMakers.push(() => makeCharacter(
  2470. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2471. {
  2472. front: {
  2473. height: math.unit(6, "feet"),
  2474. weight: math.unit(75, "kg"),
  2475. name: "Front",
  2476. image: {
  2477. source: "./media/characters/shingo/front.svg",
  2478. extra: 706/681,
  2479. bottom: 11/717
  2480. }
  2481. },
  2482. frontAlt: {
  2483. height: math.unit(6, "feet"),
  2484. weight: math.unit(75, "kg"),
  2485. name: "Front (Alt)",
  2486. image: {
  2487. source: "./media/characters/shingo/front-alt.svg",
  2488. extra: 3511 / 3338,
  2489. bottom: 0.005
  2490. }
  2491. },
  2492. paw: {
  2493. height: math.unit(1, "feet"),
  2494. name: "Paw",
  2495. image: {
  2496. source: "./media/characters/shingo/paw.svg"
  2497. }
  2498. },
  2499. },
  2500. [
  2501. {
  2502. name: "Micro",
  2503. height: math.unit(4, "inches")
  2504. },
  2505. {
  2506. name: "Normal",
  2507. height: math.unit(6, "feet"),
  2508. default: true
  2509. },
  2510. {
  2511. name: "Macro",
  2512. height: math.unit(108, "feet")
  2513. },
  2514. {
  2515. name: "Macro+",
  2516. height: math.unit(1500, "feet")
  2517. },
  2518. ]
  2519. ))
  2520. characterMakers.push(() => makeCharacter(
  2521. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2522. {
  2523. side: {
  2524. height: math.unit(6, "feet"),
  2525. weight: math.unit(75, "kg"),
  2526. name: "Side",
  2527. image: {
  2528. source: "./media/characters/aigey/side.svg"
  2529. }
  2530. },
  2531. },
  2532. [
  2533. {
  2534. name: "Macro",
  2535. height: math.unit(200, "feet"),
  2536. default: true
  2537. },
  2538. {
  2539. name: "Megamacro",
  2540. height: math.unit(100, "miles")
  2541. },
  2542. ]
  2543. )
  2544. )
  2545. characterMakers.push(() => makeCharacter(
  2546. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2547. {
  2548. front: {
  2549. height: math.unit(5 + 5 / 12, "feet"),
  2550. weight: math.unit(75, "kg"),
  2551. name: "Front",
  2552. image: {
  2553. source: "./media/characters/natasha/front.svg",
  2554. extra: 859 / 824,
  2555. bottom: 23 / 879.6
  2556. }
  2557. },
  2558. frontNsfw: {
  2559. height: math.unit(5 + 5 / 12, "feet"),
  2560. weight: math.unit(75, "kg"),
  2561. name: "Front (NSFW)",
  2562. image: {
  2563. source: "./media/characters/natasha/front-nsfw.svg",
  2564. extra: 859 / 824,
  2565. bottom: 23 / 879.6
  2566. }
  2567. },
  2568. frontErect: {
  2569. height: math.unit(5 + 5 / 12, "feet"),
  2570. weight: math.unit(75, "kg"),
  2571. name: "Front (Erect)",
  2572. image: {
  2573. source: "./media/characters/natasha/front-erect.svg",
  2574. extra: 859 / 824,
  2575. bottom: 23 / 879.6
  2576. }
  2577. },
  2578. back: {
  2579. height: math.unit(5 + 5 / 12, "feet"),
  2580. weight: math.unit(75, "kg"),
  2581. name: "Back",
  2582. image: {
  2583. source: "./media/characters/natasha/back.svg",
  2584. extra: 887.9 / 852.6,
  2585. bottom: 9.7 / 896.4
  2586. }
  2587. },
  2588. backAlt: {
  2589. height: math.unit(5 + 5 / 12, "feet"),
  2590. weight: math.unit(75, "kg"),
  2591. name: "Back (Alt)",
  2592. image: {
  2593. source: "./media/characters/natasha/back-alt.svg",
  2594. extra: 1236.7 / 1192,
  2595. bottom: 22.3 / 1258.2
  2596. }
  2597. },
  2598. dick: {
  2599. height: math.unit(1.772, "feet"),
  2600. name: "Dick",
  2601. image: {
  2602. source: "./media/characters/natasha/dick.svg"
  2603. }
  2604. },
  2605. paw: {
  2606. height: math.unit(0.250, "meters"),
  2607. name: "Paw",
  2608. image: {
  2609. source: "./media/characters/natasha/paw.svg"
  2610. }
  2611. },
  2612. },
  2613. [
  2614. {
  2615. name: "Normal",
  2616. height: math.unit(5 + 5 / 12, "feet")
  2617. },
  2618. {
  2619. name: "Large",
  2620. height: math.unit(12, "feet")
  2621. },
  2622. {
  2623. name: "Macro",
  2624. height: math.unit(100, "feet"),
  2625. default: true
  2626. },
  2627. {
  2628. name: "Macro+",
  2629. height: math.unit(260, "feet")
  2630. },
  2631. {
  2632. name: "Macro++",
  2633. height: math.unit(1, "mile")
  2634. },
  2635. ]
  2636. ))
  2637. characterMakers.push(() => makeCharacter(
  2638. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2639. {
  2640. front: {
  2641. height: math.unit(6, "feet"),
  2642. weight: math.unit(75, "kg"),
  2643. name: "Front",
  2644. image: {
  2645. source: "./media/characters/malik/front.svg"
  2646. }
  2647. },
  2648. side: {
  2649. height: math.unit(6, "feet"),
  2650. weight: math.unit(75, "kg"),
  2651. name: "Side",
  2652. image: {
  2653. source: "./media/characters/malik/side.svg",
  2654. extra: 1.1539
  2655. }
  2656. },
  2657. back: {
  2658. height: math.unit(6, "feet"),
  2659. weight: math.unit(75, "kg"),
  2660. name: "Back",
  2661. image: {
  2662. source: "./media/characters/malik/back.svg"
  2663. }
  2664. },
  2665. },
  2666. [
  2667. {
  2668. name: "Macro",
  2669. height: math.unit(156, "feet"),
  2670. default: true
  2671. },
  2672. {
  2673. name: "Macro+",
  2674. height: math.unit(1188, "feet")
  2675. },
  2676. ]
  2677. ))
  2678. characterMakers.push(() => makeCharacter(
  2679. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2680. {
  2681. front: {
  2682. height: math.unit(6, "feet"),
  2683. weight: math.unit(75, "kg"),
  2684. name: "Front",
  2685. image: {
  2686. source: "./media/characters/sefer/front.svg",
  2687. extra: 848 / 659,
  2688. bottom: 28.3 / 876.442
  2689. }
  2690. },
  2691. back: {
  2692. height: math.unit(6, "feet"),
  2693. weight: math.unit(75, "kg"),
  2694. name: "Back",
  2695. image: {
  2696. source: "./media/characters/sefer/back.svg",
  2697. extra: 864 / 695,
  2698. bottom: 10 / 871
  2699. }
  2700. },
  2701. frontDressed: {
  2702. height: math.unit(6, "feet"),
  2703. weight: math.unit(75, "kg"),
  2704. name: "Front (Dressed)",
  2705. image: {
  2706. source: "./media/characters/sefer/front-dressed.svg",
  2707. extra: 839 / 653,
  2708. bottom: 37.6 / 878
  2709. }
  2710. },
  2711. },
  2712. [
  2713. {
  2714. name: "Normal",
  2715. height: math.unit(6, "feet"),
  2716. default: true
  2717. },
  2718. ]
  2719. ))
  2720. characterMakers.push(() => makeCharacter(
  2721. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2722. {
  2723. body: {
  2724. height: math.unit(2.2428, "meter"),
  2725. weight: math.unit(124.738, "kg"),
  2726. name: "Body",
  2727. image: {
  2728. extra: 1225 / 1050,
  2729. source: "./media/characters/north/front.svg"
  2730. }
  2731. }
  2732. },
  2733. [
  2734. {
  2735. name: "Micro",
  2736. height: math.unit(4, "inches")
  2737. },
  2738. {
  2739. name: "Macro",
  2740. height: math.unit(63, "meters")
  2741. },
  2742. {
  2743. name: "Megamacro",
  2744. height: math.unit(101, "miles"),
  2745. default: true
  2746. }
  2747. ]
  2748. ))
  2749. characterMakers.push(() => makeCharacter(
  2750. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2751. {
  2752. angled: {
  2753. height: math.unit(4, "meter"),
  2754. weight: math.unit(150, "kg"),
  2755. name: "Angled",
  2756. image: {
  2757. source: "./media/characters/talan/angled-sfw.svg",
  2758. bottom: 29 / 3734
  2759. }
  2760. },
  2761. angledNsfw: {
  2762. height: math.unit(4, "meter"),
  2763. weight: math.unit(150, "kg"),
  2764. name: "Angled (NSFW)",
  2765. image: {
  2766. source: "./media/characters/talan/angled-nsfw.svg",
  2767. bottom: 29 / 3734
  2768. }
  2769. },
  2770. frontNsfw: {
  2771. height: math.unit(4, "meter"),
  2772. weight: math.unit(150, "kg"),
  2773. name: "Front (NSFW)",
  2774. image: {
  2775. source: "./media/characters/talan/front-nsfw.svg",
  2776. bottom: 29 / 3734
  2777. }
  2778. },
  2779. sideNsfw: {
  2780. height: math.unit(4, "meter"),
  2781. weight: math.unit(150, "kg"),
  2782. name: "Side (NSFW)",
  2783. image: {
  2784. source: "./media/characters/talan/side-nsfw.svg",
  2785. bottom: 29 / 3734
  2786. }
  2787. },
  2788. back: {
  2789. height: math.unit(4, "meter"),
  2790. weight: math.unit(150, "kg"),
  2791. name: "Back",
  2792. image: {
  2793. source: "./media/characters/talan/back.svg"
  2794. }
  2795. },
  2796. dickBottom: {
  2797. height: math.unit(0.621, "meter"),
  2798. name: "Dick (Bottom)",
  2799. image: {
  2800. source: "./media/characters/talan/dick-bottom.svg"
  2801. }
  2802. },
  2803. dickTop: {
  2804. height: math.unit(0.621, "meter"),
  2805. name: "Dick (Top)",
  2806. image: {
  2807. source: "./media/characters/talan/dick-top.svg"
  2808. }
  2809. },
  2810. dickSide: {
  2811. height: math.unit(0.305, "meter"),
  2812. name: "Dick (Side)",
  2813. image: {
  2814. source: "./media/characters/talan/dick-side.svg"
  2815. }
  2816. },
  2817. dickFront: {
  2818. height: math.unit(0.305, "meter"),
  2819. name: "Dick (Front)",
  2820. image: {
  2821. source: "./media/characters/talan/dick-front.svg"
  2822. }
  2823. },
  2824. },
  2825. [
  2826. {
  2827. name: "Normal",
  2828. height: math.unit(4, "meters")
  2829. },
  2830. {
  2831. name: "Macro",
  2832. height: math.unit(100, "meters")
  2833. },
  2834. {
  2835. name: "Megamacro",
  2836. height: math.unit(2, "miles"),
  2837. default: true
  2838. },
  2839. {
  2840. name: "Gigamacro",
  2841. height: math.unit(5000, "miles")
  2842. },
  2843. {
  2844. name: "Teramacro",
  2845. height: math.unit(100, "parsecs")
  2846. }
  2847. ]
  2848. ))
  2849. characterMakers.push(() => makeCharacter(
  2850. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2851. {
  2852. front: {
  2853. height: math.unit(2, "meter"),
  2854. weight: math.unit(90, "kg"),
  2855. name: "Front",
  2856. image: {
  2857. source: "./media/characters/gael'rathus/front.svg"
  2858. }
  2859. },
  2860. frontAlt: {
  2861. height: math.unit(2, "meter"),
  2862. weight: math.unit(90, "kg"),
  2863. name: "Front (alt)",
  2864. image: {
  2865. source: "./media/characters/gael'rathus/front-alt.svg"
  2866. }
  2867. },
  2868. frontAlt2: {
  2869. height: math.unit(2, "meter"),
  2870. weight: math.unit(90, "kg"),
  2871. name: "Front (alt 2)",
  2872. image: {
  2873. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2874. }
  2875. }
  2876. },
  2877. [
  2878. {
  2879. name: "Normal",
  2880. height: math.unit(9, "feet"),
  2881. default: true
  2882. },
  2883. {
  2884. name: "Large",
  2885. height: math.unit(25, "feet")
  2886. },
  2887. {
  2888. name: "Macro",
  2889. height: math.unit(0.25, "miles")
  2890. },
  2891. {
  2892. name: "Megamacro",
  2893. height: math.unit(10, "miles")
  2894. }
  2895. ]
  2896. ))
  2897. characterMakers.push(() => makeCharacter(
  2898. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2899. {
  2900. side: {
  2901. height: math.unit(2, "meter"),
  2902. weight: math.unit(140, "kg"),
  2903. name: "Side",
  2904. image: {
  2905. source: "./media/characters/sosha/side.svg",
  2906. bottom: 0.042
  2907. }
  2908. },
  2909. },
  2910. [
  2911. {
  2912. name: "Normal",
  2913. height: math.unit(12, "feet"),
  2914. default: true
  2915. }
  2916. ]
  2917. ))
  2918. characterMakers.push(() => makeCharacter(
  2919. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2920. {
  2921. side: {
  2922. height: math.unit(5 + 5 / 12, "feet"),
  2923. weight: math.unit(170, "kg"),
  2924. name: "Side",
  2925. image: {
  2926. source: "./media/characters/runnola/side.svg",
  2927. extra: 741 / 448,
  2928. bottom: 0.05
  2929. }
  2930. },
  2931. },
  2932. [
  2933. {
  2934. name: "Small",
  2935. height: math.unit(3, "feet")
  2936. },
  2937. {
  2938. name: "Normal",
  2939. height: math.unit(5 + 5 / 12, "feet"),
  2940. default: true
  2941. },
  2942. {
  2943. name: "Big",
  2944. height: math.unit(10, "feet")
  2945. },
  2946. ]
  2947. ))
  2948. characterMakers.push(() => makeCharacter(
  2949. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2950. {
  2951. front: {
  2952. height: math.unit(2, "meter"),
  2953. weight: math.unit(50, "kg"),
  2954. name: "Front",
  2955. image: {
  2956. source: "./media/characters/kurribird/front.svg",
  2957. bottom: 0.015
  2958. }
  2959. },
  2960. frontAlt: {
  2961. height: math.unit(1.5, "meter"),
  2962. weight: math.unit(50, "kg"),
  2963. name: "Front (Alt)",
  2964. image: {
  2965. source: "./media/characters/kurribird/front-alt.svg",
  2966. extra: 1.45
  2967. }
  2968. },
  2969. },
  2970. [
  2971. {
  2972. name: "Normal",
  2973. height: math.unit(7, "feet")
  2974. },
  2975. {
  2976. name: "Big",
  2977. height: math.unit(12, "feet"),
  2978. default: true
  2979. },
  2980. {
  2981. name: "Macro",
  2982. height: math.unit(1500, "feet")
  2983. },
  2984. {
  2985. name: "Megamacro",
  2986. height: math.unit(2, "miles")
  2987. }
  2988. ]
  2989. ))
  2990. characterMakers.push(() => makeCharacter(
  2991. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2992. {
  2993. front: {
  2994. height: math.unit(2, "meter"),
  2995. weight: math.unit(80, "kg"),
  2996. name: "Front",
  2997. image: {
  2998. source: "./media/characters/elbial/front.svg",
  2999. extra: 1643 / 1556,
  3000. bottom: 60.2 / 1696
  3001. }
  3002. },
  3003. side: {
  3004. height: math.unit(2, "meter"),
  3005. weight: math.unit(80, "kg"),
  3006. name: "Side",
  3007. image: {
  3008. source: "./media/characters/elbial/side.svg",
  3009. extra: 1630 / 1565,
  3010. bottom: 71.5 / 1697
  3011. }
  3012. },
  3013. back: {
  3014. height: math.unit(2, "meter"),
  3015. weight: math.unit(80, "kg"),
  3016. name: "Back",
  3017. image: {
  3018. source: "./media/characters/elbial/back.svg",
  3019. extra: 1668 / 1595,
  3020. bottom: 5.6 / 1672
  3021. }
  3022. },
  3023. frontDressed: {
  3024. height: math.unit(2, "meter"),
  3025. weight: math.unit(80, "kg"),
  3026. name: "Front (Dressed)",
  3027. image: {
  3028. source: "./media/characters/elbial/front-dressed.svg",
  3029. extra: 1653 / 1584,
  3030. bottom: 57 / 1708
  3031. }
  3032. },
  3033. genitals: {
  3034. height: math.unit(2 / 3.367, "meter"),
  3035. name: "Genitals",
  3036. image: {
  3037. source: "./media/characters/elbial/genitals.svg"
  3038. }
  3039. },
  3040. },
  3041. [
  3042. {
  3043. name: "Large",
  3044. height: math.unit(100, "feet")
  3045. },
  3046. {
  3047. name: "Macro",
  3048. height: math.unit(500, "feet"),
  3049. default: true
  3050. },
  3051. {
  3052. name: "Megamacro",
  3053. height: math.unit(10, "miles")
  3054. },
  3055. {
  3056. name: "Gigamacro",
  3057. height: math.unit(25000, "miles")
  3058. },
  3059. {
  3060. name: "Full-Size",
  3061. height: math.unit(8000000, "gigaparsecs")
  3062. }
  3063. ]
  3064. ))
  3065. characterMakers.push(() => makeCharacter(
  3066. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3067. {
  3068. front: {
  3069. height: math.unit(2, "meter"),
  3070. weight: math.unit(60, "kg"),
  3071. name: "Front",
  3072. image: {
  3073. source: "./media/characters/noah/front.svg"
  3074. }
  3075. },
  3076. talons: {
  3077. height: math.unit(0.315, "meter"),
  3078. name: "Talons",
  3079. image: {
  3080. source: "./media/characters/noah/talons.svg"
  3081. }
  3082. }
  3083. },
  3084. [
  3085. {
  3086. name: "Large",
  3087. height: math.unit(50, "feet")
  3088. },
  3089. {
  3090. name: "Macro",
  3091. height: math.unit(750, "feet"),
  3092. default: true
  3093. },
  3094. {
  3095. name: "Megamacro",
  3096. height: math.unit(50, "miles")
  3097. },
  3098. {
  3099. name: "Gigamacro",
  3100. height: math.unit(100000, "miles")
  3101. },
  3102. {
  3103. name: "Full-Size",
  3104. height: math.unit(3000000000, "miles")
  3105. }
  3106. ]
  3107. ))
  3108. characterMakers.push(() => makeCharacter(
  3109. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3110. {
  3111. front: {
  3112. height: math.unit(2, "meter"),
  3113. weight: math.unit(80, "kg"),
  3114. name: "Front",
  3115. image: {
  3116. source: "./media/characters/natalya/front.svg"
  3117. }
  3118. },
  3119. back: {
  3120. height: math.unit(2, "meter"),
  3121. weight: math.unit(80, "kg"),
  3122. name: "Back",
  3123. image: {
  3124. source: "./media/characters/natalya/back.svg"
  3125. }
  3126. }
  3127. },
  3128. [
  3129. {
  3130. name: "Normal",
  3131. height: math.unit(150, "feet"),
  3132. default: true
  3133. },
  3134. {
  3135. name: "Megamacro",
  3136. height: math.unit(5, "miles")
  3137. },
  3138. {
  3139. name: "Full-Size",
  3140. height: math.unit(600, "kiloparsecs")
  3141. }
  3142. ]
  3143. ))
  3144. characterMakers.push(() => makeCharacter(
  3145. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3146. {
  3147. front: {
  3148. height: math.unit(2, "meter"),
  3149. weight: math.unit(50, "kg"),
  3150. name: "Front",
  3151. image: {
  3152. source: "./media/characters/erestrebah/front.svg",
  3153. extra: 208 / 193,
  3154. bottom: 0.055
  3155. }
  3156. },
  3157. back: {
  3158. height: math.unit(2, "meter"),
  3159. weight: math.unit(50, "kg"),
  3160. name: "Back",
  3161. image: {
  3162. source: "./media/characters/erestrebah/back.svg",
  3163. extra: 1.3
  3164. }
  3165. }
  3166. },
  3167. [
  3168. {
  3169. name: "Normal",
  3170. height: math.unit(10, "feet")
  3171. },
  3172. {
  3173. name: "Large",
  3174. height: math.unit(50, "feet"),
  3175. default: true
  3176. },
  3177. {
  3178. name: "Macro",
  3179. height: math.unit(300, "feet")
  3180. },
  3181. {
  3182. name: "Macro+",
  3183. height: math.unit(750, "feet")
  3184. },
  3185. {
  3186. name: "Megamacro",
  3187. height: math.unit(3, "miles")
  3188. }
  3189. ]
  3190. ))
  3191. characterMakers.push(() => makeCharacter(
  3192. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3193. {
  3194. front: {
  3195. height: math.unit(2, "meter"),
  3196. weight: math.unit(80, "kg"),
  3197. name: "Front",
  3198. image: {
  3199. source: "./media/characters/jennifer/front.svg",
  3200. bottom: 0.11,
  3201. extra: 1.16
  3202. }
  3203. },
  3204. frontAlt: {
  3205. height: math.unit(2, "meter"),
  3206. weight: math.unit(80, "kg"),
  3207. name: "Front (Alt)",
  3208. image: {
  3209. source: "./media/characters/jennifer/front-alt.svg"
  3210. }
  3211. }
  3212. },
  3213. [
  3214. {
  3215. name: "Canon Height",
  3216. height: math.unit(120, "feet"),
  3217. default: true
  3218. },
  3219. {
  3220. name: "Macro+",
  3221. height: math.unit(300, "feet")
  3222. },
  3223. {
  3224. name: "Megamacro",
  3225. height: math.unit(20000, "feet")
  3226. }
  3227. ]
  3228. ))
  3229. characterMakers.push(() => makeCharacter(
  3230. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3231. {
  3232. front: {
  3233. height: math.unit(2, "meter"),
  3234. weight: math.unit(50, "kg"),
  3235. name: "Front",
  3236. image: {
  3237. source: "./media/characters/kalista/front.svg",
  3238. extra: 1947 / 1700,
  3239. bottom: 76.6 / 1412.98
  3240. }
  3241. },
  3242. back: {
  3243. height: math.unit(2, "meter"),
  3244. weight: math.unit(50, "kg"),
  3245. name: "Back",
  3246. image: {
  3247. source: "./media/characters/kalista/back.svg",
  3248. extra: 1366 / 1156,
  3249. bottom: 33.9 / 1362.78
  3250. }
  3251. }
  3252. },
  3253. [
  3254. {
  3255. name: "Uncomfortably Small",
  3256. height: math.unit(10, "feet")
  3257. },
  3258. {
  3259. name: "Small",
  3260. height: math.unit(30, "feet")
  3261. },
  3262. {
  3263. name: "Macro",
  3264. height: math.unit(100, "feet"),
  3265. default: true
  3266. },
  3267. {
  3268. name: "Macro+",
  3269. height: math.unit(2000, "feet")
  3270. },
  3271. {
  3272. name: "True Form",
  3273. height: math.unit(8924, "miles")
  3274. }
  3275. ]
  3276. ))
  3277. characterMakers.push(() => makeCharacter(
  3278. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3279. {
  3280. front: {
  3281. height: math.unit(2, "meter"),
  3282. weight: math.unit(120, "kg"),
  3283. name: "Front",
  3284. image: {
  3285. source: "./media/characters/ggv/front.svg"
  3286. }
  3287. },
  3288. side: {
  3289. height: math.unit(2, "meter"),
  3290. weight: math.unit(120, "kg"),
  3291. name: "Side",
  3292. image: {
  3293. source: "./media/characters/ggv/side.svg"
  3294. }
  3295. }
  3296. },
  3297. [
  3298. {
  3299. name: "Extremely Puny",
  3300. height: math.unit(9 + 5 / 12, "feet")
  3301. },
  3302. {
  3303. name: "Horribly Small",
  3304. height: math.unit(47.7, "miles"),
  3305. default: true
  3306. },
  3307. {
  3308. name: "Reasonably Sized",
  3309. height: math.unit(25000, "parsecs")
  3310. },
  3311. {
  3312. name: "Slightly Uncompressed",
  3313. height: math.unit(7.77e31, "parsecs")
  3314. },
  3315. {
  3316. name: "Omniversal",
  3317. height: math.unit(1e300, "meters")
  3318. },
  3319. ]
  3320. ))
  3321. characterMakers.push(() => makeCharacter(
  3322. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3323. {
  3324. front: {
  3325. height: math.unit(2, "meter"),
  3326. weight: math.unit(75, "lb"),
  3327. name: "Front",
  3328. image: {
  3329. source: "./media/characters/napalm/front.svg"
  3330. }
  3331. },
  3332. back: {
  3333. height: math.unit(2, "meter"),
  3334. weight: math.unit(75, "lb"),
  3335. name: "Back",
  3336. image: {
  3337. source: "./media/characters/napalm/back.svg"
  3338. }
  3339. }
  3340. },
  3341. [
  3342. {
  3343. name: "Standard",
  3344. height: math.unit(55, "feet"),
  3345. default: true
  3346. }
  3347. ]
  3348. ))
  3349. characterMakers.push(() => makeCharacter(
  3350. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3351. {
  3352. front: {
  3353. height: math.unit(7 + 5 / 6, "feet"),
  3354. weight: math.unit(325, "lb"),
  3355. name: "Front",
  3356. image: {
  3357. source: "./media/characters/asana/front.svg",
  3358. extra: 1133 / 1060,
  3359. bottom: 15.2 / 1148.6
  3360. }
  3361. },
  3362. back: {
  3363. height: math.unit(7 + 5 / 6, "feet"),
  3364. weight: math.unit(325, "lb"),
  3365. name: "Back",
  3366. image: {
  3367. source: "./media/characters/asana/back.svg",
  3368. extra: 1114 / 1043,
  3369. bottom: 5 / 1120
  3370. }
  3371. },
  3372. dressedDark: {
  3373. height: math.unit(7 + 5 / 6, "feet"),
  3374. weight: math.unit(325, "lb"),
  3375. name: "Dressed (Dark)",
  3376. image: {
  3377. source: "./media/characters/asana/dressed-dark.svg",
  3378. extra: 1133 / 1060,
  3379. bottom: 15.2 / 1148.6
  3380. }
  3381. },
  3382. dressedLight: {
  3383. height: math.unit(7 + 5 / 6, "feet"),
  3384. weight: math.unit(325, "lb"),
  3385. name: "Dressed (Light)",
  3386. image: {
  3387. source: "./media/characters/asana/dressed-light.svg",
  3388. extra: 1133 / 1060,
  3389. bottom: 15.2 / 1148.6
  3390. }
  3391. },
  3392. },
  3393. [
  3394. {
  3395. name: "Standard",
  3396. height: math.unit(7 + 5 / 6, "feet"),
  3397. default: true
  3398. },
  3399. {
  3400. name: "Large",
  3401. height: math.unit(10, "meters")
  3402. },
  3403. {
  3404. name: "Macro",
  3405. height: math.unit(2500, "meters")
  3406. },
  3407. {
  3408. name: "Megamacro",
  3409. height: math.unit(5e6, "meters")
  3410. },
  3411. {
  3412. name: "Examacro",
  3413. height: math.unit(5e12, "lightyears")
  3414. },
  3415. {
  3416. name: "Max Size",
  3417. height: math.unit(1e31, "lightyears")
  3418. }
  3419. ]
  3420. ))
  3421. characterMakers.push(() => makeCharacter(
  3422. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3423. {
  3424. front: {
  3425. height: math.unit(2, "meter"),
  3426. weight: math.unit(60, "kg"),
  3427. name: "Front",
  3428. image: {
  3429. source: "./media/characters/ebony/front.svg",
  3430. bottom: 0.03,
  3431. extra: 1045 / 810 + 0.03
  3432. }
  3433. },
  3434. side: {
  3435. height: math.unit(2, "meter"),
  3436. weight: math.unit(60, "kg"),
  3437. name: "Side",
  3438. image: {
  3439. source: "./media/characters/ebony/side.svg",
  3440. bottom: 0.03,
  3441. extra: 1045 / 810 + 0.03
  3442. }
  3443. },
  3444. back: {
  3445. height: math.unit(2, "meter"),
  3446. weight: math.unit(60, "kg"),
  3447. name: "Back",
  3448. image: {
  3449. source: "./media/characters/ebony/back.svg",
  3450. bottom: 0.01,
  3451. extra: 1045 / 810 + 0.01
  3452. }
  3453. },
  3454. },
  3455. [
  3456. // TODO check why I did this lol
  3457. {
  3458. name: "Standard",
  3459. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3460. default: true
  3461. },
  3462. {
  3463. name: "Macro",
  3464. height: math.unit(200, "feet")
  3465. },
  3466. {
  3467. name: "Gigamacro",
  3468. height: math.unit(13000, "km")
  3469. }
  3470. ]
  3471. ))
  3472. characterMakers.push(() => makeCharacter(
  3473. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3474. {
  3475. front: {
  3476. height: math.unit(6, "feet"),
  3477. weight: math.unit(175, "lb"),
  3478. name: "Front",
  3479. image: {
  3480. source: "./media/characters/mountain/front.svg",
  3481. extra: 972 / 955,
  3482. bottom: 64 / 1036.6
  3483. }
  3484. },
  3485. back: {
  3486. height: math.unit(6, "feet"),
  3487. weight: math.unit(175, "lb"),
  3488. name: "Back",
  3489. image: {
  3490. source: "./media/characters/mountain/back.svg",
  3491. extra: 970 / 950,
  3492. bottom: 28.25 / 999
  3493. }
  3494. },
  3495. },
  3496. [
  3497. {
  3498. name: "Large",
  3499. height: math.unit(20, "meters")
  3500. },
  3501. {
  3502. name: "Macro",
  3503. height: math.unit(300, "meters")
  3504. },
  3505. {
  3506. name: "Gigamacro",
  3507. height: math.unit(10000, "km"),
  3508. default: true
  3509. },
  3510. {
  3511. name: "Examacro",
  3512. height: math.unit(10e9, "lightyears")
  3513. }
  3514. ]
  3515. ))
  3516. characterMakers.push(() => makeCharacter(
  3517. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3518. {
  3519. front: {
  3520. height: math.unit(8, "feet"),
  3521. weight: math.unit(500, "lb"),
  3522. name: "Front",
  3523. image: {
  3524. source: "./media/characters/rick/front.svg"
  3525. }
  3526. }
  3527. },
  3528. [
  3529. {
  3530. name: "Normal",
  3531. height: math.unit(8, "feet"),
  3532. default: true
  3533. },
  3534. {
  3535. name: "Macro",
  3536. height: math.unit(5, "km")
  3537. }
  3538. ]
  3539. ))
  3540. characterMakers.push(() => makeCharacter(
  3541. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3542. {
  3543. front: {
  3544. height: math.unit(8, "feet"),
  3545. weight: math.unit(120, "lb"),
  3546. name: "Front",
  3547. image: {
  3548. source: "./media/characters/ona/front.svg"
  3549. }
  3550. },
  3551. frontAlt: {
  3552. height: math.unit(8, "feet"),
  3553. weight: math.unit(120, "lb"),
  3554. name: "Front (Alt)",
  3555. image: {
  3556. source: "./media/characters/ona/front-alt.svg"
  3557. }
  3558. },
  3559. back: {
  3560. height: math.unit(8, "feet"),
  3561. weight: math.unit(120, "lb"),
  3562. name: "Back",
  3563. image: {
  3564. source: "./media/characters/ona/back.svg"
  3565. }
  3566. },
  3567. foot: {
  3568. height: math.unit(1.1, "feet"),
  3569. name: "Foot",
  3570. image: {
  3571. source: "./media/characters/ona/foot.svg"
  3572. }
  3573. }
  3574. },
  3575. [
  3576. {
  3577. name: "Megamacro",
  3578. height: math.unit(70, "km"),
  3579. default: true
  3580. },
  3581. {
  3582. name: "Gigamacro",
  3583. height: math.unit(681818, "miles")
  3584. },
  3585. {
  3586. name: "Examacro",
  3587. height: math.unit(3800000, "lightyears")
  3588. },
  3589. ]
  3590. ))
  3591. characterMakers.push(() => makeCharacter(
  3592. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3593. {
  3594. front: {
  3595. height: math.unit(12, "feet"),
  3596. weight: math.unit(3000, "lb"),
  3597. name: "Front",
  3598. image: {
  3599. source: "./media/characters/mech/front.svg",
  3600. extra: 2900 / 2770,
  3601. bottom: 110 / 3010
  3602. }
  3603. },
  3604. back: {
  3605. height: math.unit(12, "feet"),
  3606. weight: math.unit(3000, "lb"),
  3607. name: "Back",
  3608. image: {
  3609. source: "./media/characters/mech/back.svg",
  3610. extra: 3011 / 2890,
  3611. bottom: 94 / 3105
  3612. }
  3613. },
  3614. maw: {
  3615. height: math.unit(3.07, "feet"),
  3616. name: "Maw",
  3617. image: {
  3618. source: "./media/characters/mech/maw.svg"
  3619. }
  3620. },
  3621. head: {
  3622. height: math.unit(2.82, "feet"),
  3623. name: "Head",
  3624. image: {
  3625. source: "./media/characters/mech/head.svg"
  3626. }
  3627. },
  3628. dick: {
  3629. height: math.unit(1.43, "feet"),
  3630. name: "Dick",
  3631. image: {
  3632. source: "./media/characters/mech/dick.svg"
  3633. }
  3634. },
  3635. },
  3636. [
  3637. {
  3638. name: "Normal",
  3639. height: math.unit(12, "feet")
  3640. },
  3641. {
  3642. name: "Macro",
  3643. height: math.unit(300, "feet"),
  3644. default: true
  3645. },
  3646. {
  3647. name: "Macro+",
  3648. height: math.unit(1500, "feet")
  3649. },
  3650. ]
  3651. ))
  3652. characterMakers.push(() => makeCharacter(
  3653. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3654. {
  3655. front: {
  3656. height: math.unit(1.3, "meter"),
  3657. weight: math.unit(30, "kg"),
  3658. name: "Front",
  3659. image: {
  3660. source: "./media/characters/gregory/front.svg",
  3661. }
  3662. }
  3663. },
  3664. [
  3665. {
  3666. name: "Normal",
  3667. height: math.unit(1.3, "meter"),
  3668. default: true
  3669. },
  3670. {
  3671. name: "Macro",
  3672. height: math.unit(20, "meter")
  3673. }
  3674. ]
  3675. ))
  3676. characterMakers.push(() => makeCharacter(
  3677. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3678. {
  3679. front: {
  3680. height: math.unit(2.8, "meter"),
  3681. weight: math.unit(200, "kg"),
  3682. name: "Front",
  3683. image: {
  3684. source: "./media/characters/elory/front.svg",
  3685. }
  3686. }
  3687. },
  3688. [
  3689. {
  3690. name: "Normal",
  3691. height: math.unit(2.8, "meter"),
  3692. default: true
  3693. },
  3694. {
  3695. name: "Macro",
  3696. height: math.unit(38, "meter")
  3697. }
  3698. ]
  3699. ))
  3700. characterMakers.push(() => makeCharacter(
  3701. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3702. {
  3703. front: {
  3704. height: math.unit(470, "feet"),
  3705. weight: math.unit(924, "tons"),
  3706. name: "Front",
  3707. image: {
  3708. source: "./media/characters/angelpatamon/front.svg",
  3709. }
  3710. }
  3711. },
  3712. [
  3713. {
  3714. name: "Normal",
  3715. height: math.unit(470, "feet"),
  3716. default: true
  3717. },
  3718. {
  3719. name: "Deity Size I",
  3720. height: math.unit(28651.2, "km")
  3721. },
  3722. {
  3723. name: "Deity Size II",
  3724. height: math.unit(171907.2, "km")
  3725. }
  3726. ]
  3727. ))
  3728. characterMakers.push(() => makeCharacter(
  3729. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3730. {
  3731. side: {
  3732. height: math.unit(7.2, "meter"),
  3733. weight: math.unit(8.2, "tons"),
  3734. name: "Side",
  3735. image: {
  3736. source: "./media/characters/cryae/side.svg",
  3737. extra: 3500 / 1500
  3738. }
  3739. }
  3740. },
  3741. [
  3742. {
  3743. name: "Normal",
  3744. height: math.unit(7.2, "meter"),
  3745. default: true
  3746. }
  3747. ]
  3748. ))
  3749. characterMakers.push(() => makeCharacter(
  3750. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3751. {
  3752. front: {
  3753. height: math.unit(6, "feet"),
  3754. weight: math.unit(175, "lb"),
  3755. name: "Front",
  3756. image: {
  3757. source: "./media/characters/xera/front.svg",
  3758. extra: 2377 / 1972,
  3759. bottom: 75.5 / 2452
  3760. }
  3761. },
  3762. side: {
  3763. height: math.unit(6, "feet"),
  3764. weight: math.unit(175, "lb"),
  3765. name: "Side",
  3766. image: {
  3767. source: "./media/characters/xera/side.svg",
  3768. extra: 2345 / 2019,
  3769. bottom: 39.7 / 2384
  3770. }
  3771. },
  3772. back: {
  3773. height: math.unit(6, "feet"),
  3774. weight: math.unit(175, "lb"),
  3775. name: "Back",
  3776. image: {
  3777. source: "./media/characters/xera/back.svg",
  3778. extra: 2095 / 1984,
  3779. bottom: 67 / 2166
  3780. }
  3781. },
  3782. },
  3783. [
  3784. {
  3785. name: "Small",
  3786. height: math.unit(10, "feet")
  3787. },
  3788. {
  3789. name: "Macro",
  3790. height: math.unit(500, "meters"),
  3791. default: true
  3792. },
  3793. {
  3794. name: "Macro+",
  3795. height: math.unit(10, "km")
  3796. },
  3797. {
  3798. name: "Gigamacro",
  3799. height: math.unit(25000, "km")
  3800. },
  3801. {
  3802. name: "Teramacro",
  3803. height: math.unit(3e6, "km")
  3804. }
  3805. ]
  3806. ))
  3807. characterMakers.push(() => makeCharacter(
  3808. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3809. {
  3810. front: {
  3811. height: math.unit(6, "feet"),
  3812. weight: math.unit(175, "lb"),
  3813. name: "Front",
  3814. image: {
  3815. source: "./media/characters/nebula/front.svg",
  3816. extra: 2566 / 2362,
  3817. bottom: 81 / 2644
  3818. }
  3819. }
  3820. },
  3821. [
  3822. {
  3823. name: "Small",
  3824. height: math.unit(4.5, "meters")
  3825. },
  3826. {
  3827. name: "Macro",
  3828. height: math.unit(1500, "meters"),
  3829. default: true
  3830. },
  3831. {
  3832. name: "Megamacro",
  3833. height: math.unit(150, "km")
  3834. },
  3835. {
  3836. name: "Gigamacro",
  3837. height: math.unit(27000, "km")
  3838. }
  3839. ]
  3840. ))
  3841. characterMakers.push(() => makeCharacter(
  3842. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3843. {
  3844. front: {
  3845. height: math.unit(6, "feet"),
  3846. weight: math.unit(225, "lb"),
  3847. name: "Front",
  3848. image: {
  3849. source: "./media/characters/abysgar/front.svg"
  3850. }
  3851. }
  3852. },
  3853. [
  3854. {
  3855. name: "Small",
  3856. height: math.unit(4.5, "meters")
  3857. },
  3858. {
  3859. name: "Macro",
  3860. height: math.unit(1250, "meters"),
  3861. default: true
  3862. },
  3863. {
  3864. name: "Megamacro",
  3865. height: math.unit(125, "km")
  3866. },
  3867. {
  3868. name: "Gigamacro",
  3869. height: math.unit(26000, "km")
  3870. }
  3871. ]
  3872. ))
  3873. characterMakers.push(() => makeCharacter(
  3874. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3875. {
  3876. front: {
  3877. height: math.unit(6, "feet"),
  3878. weight: math.unit(180, "lb"),
  3879. name: "Front",
  3880. image: {
  3881. source: "./media/characters/yakuz/front.svg"
  3882. }
  3883. }
  3884. },
  3885. [
  3886. {
  3887. name: "Small",
  3888. height: math.unit(5, "meters")
  3889. },
  3890. {
  3891. name: "Macro",
  3892. height: math.unit(1500, "meters"),
  3893. default: true
  3894. },
  3895. {
  3896. name: "Megamacro",
  3897. height: math.unit(200, "km")
  3898. },
  3899. {
  3900. name: "Gigamacro",
  3901. height: math.unit(100000, "km")
  3902. }
  3903. ]
  3904. ))
  3905. characterMakers.push(() => makeCharacter(
  3906. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3907. {
  3908. front: {
  3909. height: math.unit(6, "feet"),
  3910. weight: math.unit(175, "lb"),
  3911. name: "Front",
  3912. image: {
  3913. source: "./media/characters/mirova/front.svg",
  3914. extra: 3334 / 3071,
  3915. bottom: 42 / 3375.6
  3916. }
  3917. }
  3918. },
  3919. [
  3920. {
  3921. name: "Small",
  3922. height: math.unit(5, "meters")
  3923. },
  3924. {
  3925. name: "Macro",
  3926. height: math.unit(900, "meters"),
  3927. default: true
  3928. },
  3929. {
  3930. name: "Megamacro",
  3931. height: math.unit(135, "km")
  3932. },
  3933. {
  3934. name: "Gigamacro",
  3935. height: math.unit(20000, "km")
  3936. }
  3937. ]
  3938. ))
  3939. characterMakers.push(() => makeCharacter(
  3940. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3941. {
  3942. side: {
  3943. height: math.unit(28.35, "feet"),
  3944. weight: math.unit(99.75, "tons"),
  3945. name: "Side",
  3946. image: {
  3947. source: "./media/characters/asana-mech/side.svg",
  3948. extra: 923 / 699,
  3949. bottom: 50 / 975
  3950. }
  3951. },
  3952. chaingun: {
  3953. height: math.unit(7, "feet"),
  3954. weight: math.unit(2400, "lb"),
  3955. name: "Chaingun",
  3956. image: {
  3957. source: "./media/characters/asana-mech/chaingun.svg"
  3958. }
  3959. },
  3960. laser: {
  3961. height: math.unit(7.12, "feet"),
  3962. weight: math.unit(2000, "lb"),
  3963. name: "Laser",
  3964. image: {
  3965. source: "./media/characters/asana-mech/laser.svg"
  3966. }
  3967. },
  3968. },
  3969. [
  3970. {
  3971. name: "Normal",
  3972. height: math.unit(28.35, "feet"),
  3973. default: true
  3974. },
  3975. {
  3976. name: "Macro",
  3977. height: math.unit(2500, "feet")
  3978. },
  3979. {
  3980. name: "Megamacro",
  3981. height: math.unit(25, "miles")
  3982. },
  3983. {
  3984. name: "Examacro",
  3985. height: math.unit(6e8, "lightyears")
  3986. },
  3987. ]
  3988. ))
  3989. characterMakers.push(() => makeCharacter(
  3990. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3991. {
  3992. front: {
  3993. height: math.unit(5, "meters"),
  3994. weight: math.unit(1000, "kg"),
  3995. name: "Front",
  3996. image: {
  3997. source: "./media/characters/asche/front.svg",
  3998. extra: 1258 / 1190,
  3999. bottom: 47 / 1305
  4000. }
  4001. },
  4002. frontUnderwear: {
  4003. height: math.unit(5, "meters"),
  4004. weight: math.unit(1000, "kg"),
  4005. name: "Front (Underwear)",
  4006. image: {
  4007. source: "./media/characters/asche/front-underwear.svg",
  4008. extra: 1258 / 1190,
  4009. bottom: 47 / 1305
  4010. }
  4011. },
  4012. frontDressed: {
  4013. height: math.unit(5, "meters"),
  4014. weight: math.unit(1000, "kg"),
  4015. name: "Front (Dressed)",
  4016. image: {
  4017. source: "./media/characters/asche/front-dressed.svg",
  4018. extra: 1258 / 1190,
  4019. bottom: 47 / 1305
  4020. }
  4021. },
  4022. frontArmor: {
  4023. height: math.unit(5, "meters"),
  4024. weight: math.unit(1000, "kg"),
  4025. name: "Front (Armored)",
  4026. image: {
  4027. source: "./media/characters/asche/front-armored.svg",
  4028. extra: 1374 / 1308,
  4029. bottom: 23 / 1397
  4030. }
  4031. },
  4032. mp724: {
  4033. height: math.unit(0.96, "meters"),
  4034. weight: math.unit(38, "kg"),
  4035. name: "H&K MP724",
  4036. image: {
  4037. source: "./media/characters/asche/h&k-mp724.svg"
  4038. }
  4039. },
  4040. side: {
  4041. height: math.unit(5, "meters"),
  4042. weight: math.unit(1000, "kg"),
  4043. name: "Side",
  4044. image: {
  4045. source: "./media/characters/asche/side.svg",
  4046. extra: 1717 / 1609,
  4047. bottom: 0.005
  4048. }
  4049. },
  4050. back: {
  4051. height: math.unit(5, "meters"),
  4052. weight: math.unit(1000, "kg"),
  4053. name: "Back",
  4054. image: {
  4055. source: "./media/characters/asche/back.svg",
  4056. extra: 1570 / 1501
  4057. }
  4058. },
  4059. },
  4060. [
  4061. {
  4062. name: "DEFCON 5",
  4063. height: math.unit(5, "meters")
  4064. },
  4065. {
  4066. name: "DEFCON 4",
  4067. height: math.unit(500, "meters"),
  4068. default: true
  4069. },
  4070. {
  4071. name: "DEFCON 3",
  4072. height: math.unit(5, "km")
  4073. },
  4074. {
  4075. name: "DEFCON 2",
  4076. height: math.unit(500, "km")
  4077. },
  4078. {
  4079. name: "DEFCON 1",
  4080. height: math.unit(500000, "km")
  4081. },
  4082. {
  4083. name: "DEFCON 0",
  4084. height: math.unit(3, "gigaparsecs")
  4085. },
  4086. ]
  4087. ))
  4088. characterMakers.push(() => makeCharacter(
  4089. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4090. {
  4091. front: {
  4092. height: math.unit(2, "meters"),
  4093. weight: math.unit(76, "kg"),
  4094. name: "Front",
  4095. image: {
  4096. source: "./media/characters/gale/front.svg"
  4097. }
  4098. },
  4099. frontAlt1: {
  4100. height: math.unit(2, "meters"),
  4101. weight: math.unit(76, "kg"),
  4102. name: "Front (Alt 1)",
  4103. image: {
  4104. source: "./media/characters/gale/front-alt-1.svg"
  4105. }
  4106. },
  4107. frontAlt2: {
  4108. height: math.unit(2, "meters"),
  4109. weight: math.unit(76, "kg"),
  4110. name: "Front (Alt 2)",
  4111. image: {
  4112. source: "./media/characters/gale/front-alt-2.svg"
  4113. }
  4114. },
  4115. },
  4116. [
  4117. {
  4118. name: "Normal",
  4119. height: math.unit(7, "feet")
  4120. },
  4121. {
  4122. name: "Macro",
  4123. height: math.unit(150, "feet"),
  4124. default: true
  4125. },
  4126. {
  4127. name: "Macro+",
  4128. height: math.unit(300, "feet")
  4129. },
  4130. ]
  4131. ))
  4132. characterMakers.push(() => makeCharacter(
  4133. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4134. {
  4135. front: {
  4136. height: math.unit(2, "meters"),
  4137. weight: math.unit(76, "kg"),
  4138. name: "Front",
  4139. image: {
  4140. source: "./media/characters/draylen/front.svg"
  4141. }
  4142. }
  4143. },
  4144. [
  4145. {
  4146. name: "Macro",
  4147. height: math.unit(150, "feet"),
  4148. default: true
  4149. }
  4150. ]
  4151. ))
  4152. characterMakers.push(() => makeCharacter(
  4153. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4154. {
  4155. front: {
  4156. height: math.unit(7 + 9 / 12, "feet"),
  4157. weight: math.unit(379, "lbs"),
  4158. name: "Front",
  4159. image: {
  4160. source: "./media/characters/chez/front.svg"
  4161. }
  4162. },
  4163. side: {
  4164. height: math.unit(7 + 9 / 12, "feet"),
  4165. weight: math.unit(379, "lbs"),
  4166. name: "Side",
  4167. image: {
  4168. source: "./media/characters/chez/side.svg"
  4169. }
  4170. }
  4171. },
  4172. [
  4173. {
  4174. name: "Normal",
  4175. height: math.unit(7 + 9 / 12, "feet"),
  4176. default: true
  4177. },
  4178. {
  4179. name: "God King",
  4180. height: math.unit(9750000, "meters")
  4181. }
  4182. ]
  4183. ))
  4184. characterMakers.push(() => makeCharacter(
  4185. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4186. {
  4187. front: {
  4188. height: math.unit(6, "feet"),
  4189. weight: math.unit(275, "lbs"),
  4190. name: "Front",
  4191. image: {
  4192. source: "./media/characters/kaylum/front.svg",
  4193. bottom: 0.01,
  4194. extra: 1166 / 1031
  4195. }
  4196. },
  4197. frontWingless: {
  4198. height: math.unit(6, "feet"),
  4199. weight: math.unit(275, "lbs"),
  4200. name: "Front (Wingless)",
  4201. image: {
  4202. source: "./media/characters/kaylum/front-wingless.svg",
  4203. bottom: 0.01,
  4204. extra: 1117 / 1031
  4205. }
  4206. }
  4207. },
  4208. [
  4209. {
  4210. name: "Normal",
  4211. height: math.unit(3.05, "meters")
  4212. },
  4213. {
  4214. name: "Master",
  4215. height: math.unit(5.5, "meters")
  4216. },
  4217. {
  4218. name: "Rampage",
  4219. height: math.unit(19, "meters")
  4220. },
  4221. {
  4222. name: "Macro Lite",
  4223. height: math.unit(37, "meters")
  4224. },
  4225. {
  4226. name: "Hyper Predator",
  4227. height: math.unit(61, "meters")
  4228. },
  4229. {
  4230. name: "Macro",
  4231. height: math.unit(138, "meters"),
  4232. default: true
  4233. }
  4234. ]
  4235. ))
  4236. characterMakers.push(() => makeCharacter(
  4237. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4238. {
  4239. front: {
  4240. height: math.unit(6, "feet"),
  4241. weight: math.unit(150, "lbs"),
  4242. name: "Front",
  4243. image: {
  4244. source: "./media/characters/geta/front.svg"
  4245. }
  4246. }
  4247. },
  4248. [
  4249. {
  4250. name: "Micro",
  4251. height: math.unit(3, "inches"),
  4252. default: true
  4253. },
  4254. {
  4255. name: "Normal",
  4256. height: math.unit(5 + 5 / 12, "feet")
  4257. }
  4258. ]
  4259. ))
  4260. characterMakers.push(() => makeCharacter(
  4261. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4262. {
  4263. front: {
  4264. height: math.unit(6, "feet"),
  4265. weight: math.unit(300, "lbs"),
  4266. name: "Front",
  4267. image: {
  4268. source: "./media/characters/tyrnn/front.svg"
  4269. }
  4270. }
  4271. },
  4272. [
  4273. {
  4274. name: "Main Height",
  4275. height: math.unit(355, "feet"),
  4276. default: true
  4277. },
  4278. {
  4279. name: "Fave. Height",
  4280. height: math.unit(2400, "feet")
  4281. }
  4282. ]
  4283. ))
  4284. characterMakers.push(() => makeCharacter(
  4285. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4286. {
  4287. front: {
  4288. height: math.unit(6, "feet"),
  4289. weight: math.unit(300, "lbs"),
  4290. name: "Front",
  4291. image: {
  4292. source: "./media/characters/appledectomy/front.svg"
  4293. }
  4294. }
  4295. },
  4296. [
  4297. {
  4298. name: "Macro",
  4299. height: math.unit(2500, "feet")
  4300. },
  4301. {
  4302. name: "Megamacro",
  4303. height: math.unit(50, "miles"),
  4304. default: true
  4305. },
  4306. {
  4307. name: "Gigamacro",
  4308. height: math.unit(5000, "miles")
  4309. },
  4310. {
  4311. name: "Teramacro",
  4312. height: math.unit(250000, "miles")
  4313. },
  4314. ]
  4315. ))
  4316. characterMakers.push(() => makeCharacter(
  4317. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4318. {
  4319. front: {
  4320. height: math.unit(6, "feet"),
  4321. weight: math.unit(200, "lbs"),
  4322. name: "Front",
  4323. image: {
  4324. source: "./media/characters/vulpes/front.svg",
  4325. extra: 573 / 543,
  4326. bottom: 0.033
  4327. }
  4328. },
  4329. side: {
  4330. height: math.unit(6, "feet"),
  4331. weight: math.unit(200, "lbs"),
  4332. name: "Side",
  4333. image: {
  4334. source: "./media/characters/vulpes/side.svg",
  4335. extra: 577 / 549,
  4336. bottom: 11 / 588
  4337. }
  4338. },
  4339. back: {
  4340. height: math.unit(6, "feet"),
  4341. weight: math.unit(200, "lbs"),
  4342. name: "Back",
  4343. image: {
  4344. source: "./media/characters/vulpes/back.svg",
  4345. extra: 573 / 549,
  4346. bottom: 20 / 593
  4347. }
  4348. },
  4349. feet: {
  4350. height: math.unit(1.276, "feet"),
  4351. name: "Feet",
  4352. image: {
  4353. source: "./media/characters/vulpes/feet.svg"
  4354. }
  4355. },
  4356. maw: {
  4357. height: math.unit(1.18, "feet"),
  4358. name: "Maw",
  4359. image: {
  4360. source: "./media/characters/vulpes/maw.svg"
  4361. }
  4362. },
  4363. },
  4364. [
  4365. {
  4366. name: "Micro",
  4367. height: math.unit(2, "inches")
  4368. },
  4369. {
  4370. name: "Normal",
  4371. height: math.unit(6.3, "feet")
  4372. },
  4373. {
  4374. name: "Macro",
  4375. height: math.unit(850, "feet")
  4376. },
  4377. {
  4378. name: "Megamacro",
  4379. height: math.unit(7500, "feet"),
  4380. default: true
  4381. },
  4382. {
  4383. name: "Gigamacro",
  4384. height: math.unit(570000, "miles")
  4385. }
  4386. ]
  4387. ))
  4388. characterMakers.push(() => makeCharacter(
  4389. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4390. {
  4391. front: {
  4392. height: math.unit(6, "feet"),
  4393. weight: math.unit(210, "lbs"),
  4394. name: "Front",
  4395. image: {
  4396. source: "./media/characters/rain-fallen/front.svg"
  4397. }
  4398. },
  4399. side: {
  4400. height: math.unit(6, "feet"),
  4401. weight: math.unit(210, "lbs"),
  4402. name: "Side",
  4403. image: {
  4404. source: "./media/characters/rain-fallen/side.svg"
  4405. }
  4406. },
  4407. back: {
  4408. height: math.unit(6, "feet"),
  4409. weight: math.unit(210, "lbs"),
  4410. name: "Back",
  4411. image: {
  4412. source: "./media/characters/rain-fallen/back.svg"
  4413. }
  4414. },
  4415. feral: {
  4416. height: math.unit(9, "feet"),
  4417. weight: math.unit(700, "lbs"),
  4418. name: "Feral",
  4419. image: {
  4420. source: "./media/characters/rain-fallen/feral.svg"
  4421. }
  4422. },
  4423. },
  4424. [
  4425. {
  4426. name: "Meddling with Mortals",
  4427. height: math.unit(8 + 8/12, "feet")
  4428. },
  4429. {
  4430. name: "Normal",
  4431. height: math.unit(5, "meter")
  4432. },
  4433. {
  4434. name: "Macro",
  4435. height: math.unit(150, "meter"),
  4436. default: true
  4437. },
  4438. {
  4439. name: "Megamacro",
  4440. height: math.unit(278e6, "meter")
  4441. },
  4442. {
  4443. name: "Gigamacro",
  4444. height: math.unit(2e9, "meter")
  4445. },
  4446. {
  4447. name: "Teramacro",
  4448. height: math.unit(8e12, "meter")
  4449. },
  4450. {
  4451. name: "Devourer",
  4452. height: math.unit(14, "zettameters")
  4453. },
  4454. {
  4455. name: "Scarlet King",
  4456. height: math.unit(18, "yottameters")
  4457. },
  4458. {
  4459. name: "Void",
  4460. height: math.unit(1e88, "yottameters")
  4461. }
  4462. ]
  4463. ))
  4464. characterMakers.push(() => makeCharacter(
  4465. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4466. {
  4467. standing: {
  4468. height: math.unit(6, "feet"),
  4469. weight: math.unit(180, "lbs"),
  4470. name: "Standing",
  4471. image: {
  4472. source: "./media/characters/zaakira/standing.svg"
  4473. }
  4474. },
  4475. laying: {
  4476. height: math.unit(3, "feet"),
  4477. weight: math.unit(180, "lbs"),
  4478. name: "Laying",
  4479. image: {
  4480. source: "./media/characters/zaakira/laying.svg"
  4481. }
  4482. },
  4483. },
  4484. [
  4485. {
  4486. name: "Normal",
  4487. height: math.unit(12, "feet")
  4488. },
  4489. {
  4490. name: "Macro",
  4491. height: math.unit(279, "feet"),
  4492. default: true
  4493. }
  4494. ]
  4495. ))
  4496. characterMakers.push(() => makeCharacter(
  4497. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4498. {
  4499. femSfw: {
  4500. height: math.unit(8, "feet"),
  4501. weight: math.unit(350, "lb"),
  4502. name: "Fem",
  4503. image: {
  4504. source: "./media/characters/sigvald/fem-sfw.svg",
  4505. extra: 182 / 164,
  4506. bottom: 8.7 / 190.5
  4507. }
  4508. },
  4509. femNsfw: {
  4510. height: math.unit(8, "feet"),
  4511. weight: math.unit(350, "lb"),
  4512. name: "Fem (NSFW)",
  4513. image: {
  4514. source: "./media/characters/sigvald/fem-nsfw.svg",
  4515. extra: 182 / 164,
  4516. bottom: 8.7 / 190.5
  4517. }
  4518. },
  4519. maleNsfw: {
  4520. height: math.unit(8, "feet"),
  4521. weight: math.unit(350, "lb"),
  4522. name: "Male (NSFW)",
  4523. image: {
  4524. source: "./media/characters/sigvald/male-nsfw.svg",
  4525. extra: 182 / 164,
  4526. bottom: 8.7 / 190.5
  4527. }
  4528. },
  4529. hermNsfw: {
  4530. height: math.unit(8, "feet"),
  4531. weight: math.unit(350, "lb"),
  4532. name: "Herm (NSFW)",
  4533. image: {
  4534. source: "./media/characters/sigvald/herm-nsfw.svg",
  4535. extra: 182 / 164,
  4536. bottom: 8.7 / 190.5
  4537. }
  4538. },
  4539. dick: {
  4540. height: math.unit(2.36, "feet"),
  4541. name: "Dick",
  4542. image: {
  4543. source: "./media/characters/sigvald/dick.svg"
  4544. }
  4545. },
  4546. eye: {
  4547. height: math.unit(0.31, "feet"),
  4548. name: "Eye",
  4549. image: {
  4550. source: "./media/characters/sigvald/eye.svg"
  4551. }
  4552. },
  4553. mouth: {
  4554. height: math.unit(0.92, "feet"),
  4555. name: "Mouth",
  4556. image: {
  4557. source: "./media/characters/sigvald/mouth.svg"
  4558. }
  4559. },
  4560. paws: {
  4561. height: math.unit(2.2, "feet"),
  4562. name: "Paws",
  4563. image: {
  4564. source: "./media/characters/sigvald/paws.svg"
  4565. }
  4566. }
  4567. },
  4568. [
  4569. {
  4570. name: "Normal",
  4571. height: math.unit(8, "feet")
  4572. },
  4573. {
  4574. name: "Large",
  4575. height: math.unit(12, "feet")
  4576. },
  4577. {
  4578. name: "Larger",
  4579. height: math.unit(20, "feet")
  4580. },
  4581. {
  4582. name: "Macro",
  4583. height: math.unit(150, "feet")
  4584. },
  4585. {
  4586. name: "Macro+",
  4587. height: math.unit(200, "feet"),
  4588. default: true
  4589. },
  4590. ]
  4591. ))
  4592. characterMakers.push(() => makeCharacter(
  4593. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4594. {
  4595. side: {
  4596. height: math.unit(12, "feet"),
  4597. weight: math.unit(2000, "kg"),
  4598. name: "Side",
  4599. image: {
  4600. source: "./media/characters/scott/side.svg",
  4601. extra: 754 / 724,
  4602. bottom: 0.069
  4603. }
  4604. },
  4605. upright: {
  4606. height: math.unit(12, "feet"),
  4607. weight: math.unit(2000, "kg"),
  4608. name: "Upright",
  4609. image: {
  4610. source: "./media/characters/scott/upright.svg",
  4611. extra: 3881 / 3722,
  4612. bottom: 0.05
  4613. }
  4614. },
  4615. },
  4616. [
  4617. {
  4618. name: "Normal",
  4619. height: math.unit(12, "feet"),
  4620. default: true
  4621. },
  4622. ]
  4623. ))
  4624. characterMakers.push(() => makeCharacter(
  4625. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4626. {
  4627. side: {
  4628. height: math.unit(8, "meters"),
  4629. weight: math.unit(84755, "lbs"),
  4630. name: "Side",
  4631. image: {
  4632. source: "./media/characters/tobias/side.svg",
  4633. extra: 1474 / 1096,
  4634. bottom: 38.9 / 1513.1235
  4635. }
  4636. },
  4637. },
  4638. [
  4639. {
  4640. name: "Normal",
  4641. height: math.unit(8, "meters"),
  4642. default: true
  4643. },
  4644. ]
  4645. ))
  4646. characterMakers.push(() => makeCharacter(
  4647. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4648. {
  4649. front: {
  4650. height: math.unit(5.5, "feet"),
  4651. weight: math.unit(400, "lbs"),
  4652. name: "Front",
  4653. image: {
  4654. source: "./media/characters/kieran/front.svg",
  4655. extra: 2694 / 2364,
  4656. bottom: 217 / 2908
  4657. }
  4658. },
  4659. side: {
  4660. height: math.unit(5.5, "feet"),
  4661. weight: math.unit(400, "lbs"),
  4662. name: "Side",
  4663. image: {
  4664. source: "./media/characters/kieran/side.svg",
  4665. extra: 875 / 777,
  4666. bottom: 84.6 / 959
  4667. }
  4668. },
  4669. },
  4670. [
  4671. {
  4672. name: "Normal",
  4673. height: math.unit(5.5, "feet"),
  4674. default: true
  4675. },
  4676. ]
  4677. ))
  4678. characterMakers.push(() => makeCharacter(
  4679. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4680. {
  4681. side: {
  4682. height: math.unit(2, "meters"),
  4683. weight: math.unit(70, "kg"),
  4684. name: "Side",
  4685. image: {
  4686. source: "./media/characters/sanya/side.svg",
  4687. bottom: 0.02,
  4688. extra: 1.02
  4689. }
  4690. },
  4691. },
  4692. [
  4693. {
  4694. name: "Small",
  4695. height: math.unit(2, "meters")
  4696. },
  4697. {
  4698. name: "Normal",
  4699. height: math.unit(3, "meters")
  4700. },
  4701. {
  4702. name: "Macro",
  4703. height: math.unit(16, "meters"),
  4704. default: true
  4705. },
  4706. ]
  4707. ))
  4708. characterMakers.push(() => makeCharacter(
  4709. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4710. {
  4711. front: {
  4712. height: math.unit(2, "meters"),
  4713. weight: math.unit(120, "kg"),
  4714. name: "Front",
  4715. image: {
  4716. source: "./media/characters/miranda/front.svg",
  4717. extra: 195 / 185,
  4718. bottom: 10.9 / 206.5
  4719. }
  4720. },
  4721. back: {
  4722. height: math.unit(2, "meters"),
  4723. weight: math.unit(120, "kg"),
  4724. name: "Back",
  4725. image: {
  4726. source: "./media/characters/miranda/back.svg",
  4727. extra: 201 / 193,
  4728. bottom: 2.3 / 203.7
  4729. }
  4730. },
  4731. },
  4732. [
  4733. {
  4734. name: "Normal",
  4735. height: math.unit(10, "feet"),
  4736. default: true
  4737. }
  4738. ]
  4739. ))
  4740. characterMakers.push(() => makeCharacter(
  4741. { name: "James", species: ["deer"], tags: ["anthro"] },
  4742. {
  4743. side: {
  4744. height: math.unit(2, "meters"),
  4745. weight: math.unit(100, "kg"),
  4746. name: "Front",
  4747. image: {
  4748. source: "./media/characters/james/front.svg",
  4749. extra: 10 / 8.5
  4750. }
  4751. },
  4752. },
  4753. [
  4754. {
  4755. name: "Normal",
  4756. height: math.unit(8.5, "feet"),
  4757. default: true
  4758. }
  4759. ]
  4760. ))
  4761. characterMakers.push(() => makeCharacter(
  4762. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4763. {
  4764. side: {
  4765. height: math.unit(9.5, "feet"),
  4766. weight: math.unit(2500, "lbs"),
  4767. name: "Side",
  4768. image: {
  4769. source: "./media/characters/heather/side.svg"
  4770. }
  4771. },
  4772. },
  4773. [
  4774. {
  4775. name: "Normal",
  4776. height: math.unit(9.5, "feet"),
  4777. default: true
  4778. }
  4779. ]
  4780. ))
  4781. characterMakers.push(() => makeCharacter(
  4782. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4783. {
  4784. side: {
  4785. height: math.unit(6.5, "feet"),
  4786. weight: math.unit(400, "lbs"),
  4787. name: "Side",
  4788. image: {
  4789. source: "./media/characters/lukas/side.svg",
  4790. extra: 7.25 / 6.5
  4791. }
  4792. },
  4793. },
  4794. [
  4795. {
  4796. name: "Normal",
  4797. height: math.unit(6.5, "feet"),
  4798. default: true
  4799. }
  4800. ]
  4801. ))
  4802. characterMakers.push(() => makeCharacter(
  4803. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4804. {
  4805. side: {
  4806. height: math.unit(5, "feet"),
  4807. weight: math.unit(3000, "lbs"),
  4808. name: "Side",
  4809. image: {
  4810. source: "./media/characters/louise/side.svg"
  4811. }
  4812. },
  4813. },
  4814. [
  4815. {
  4816. name: "Normal",
  4817. height: math.unit(5, "feet"),
  4818. default: true
  4819. }
  4820. ]
  4821. ))
  4822. characterMakers.push(() => makeCharacter(
  4823. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4824. {
  4825. side: {
  4826. height: math.unit(6, "feet"),
  4827. weight: math.unit(150, "lbs"),
  4828. name: "Side",
  4829. image: {
  4830. source: "./media/characters/ramona/side.svg"
  4831. }
  4832. },
  4833. },
  4834. [
  4835. {
  4836. name: "Normal",
  4837. height: math.unit(5.3, "meters"),
  4838. default: true
  4839. },
  4840. {
  4841. name: "Macro",
  4842. height: math.unit(20, "stories")
  4843. },
  4844. {
  4845. name: "Macro+",
  4846. height: math.unit(50, "stories")
  4847. },
  4848. ]
  4849. ))
  4850. characterMakers.push(() => makeCharacter(
  4851. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4852. {
  4853. standing: {
  4854. height: math.unit(5.75, "feet"),
  4855. weight: math.unit(160, "lbs"),
  4856. name: "Standing",
  4857. image: {
  4858. source: "./media/characters/deerpuff/standing.svg",
  4859. extra: 682 / 624
  4860. }
  4861. },
  4862. sitting: {
  4863. height: math.unit(5.75 / 1.79, "feet"),
  4864. weight: math.unit(160, "lbs"),
  4865. name: "Sitting",
  4866. image: {
  4867. source: "./media/characters/deerpuff/sitting.svg",
  4868. bottom: 44 / 400,
  4869. extra: 1
  4870. }
  4871. },
  4872. taurLaying: {
  4873. height: math.unit(6, "feet"),
  4874. weight: math.unit(400, "lbs"),
  4875. name: "Taur (Laying)",
  4876. image: {
  4877. source: "./media/characters/deerpuff/taur-laying.svg"
  4878. }
  4879. },
  4880. },
  4881. [
  4882. {
  4883. name: "Puffball",
  4884. height: math.unit(6, "inches")
  4885. },
  4886. {
  4887. name: "Normalpuff",
  4888. height: math.unit(5.75, "feet")
  4889. },
  4890. {
  4891. name: "Macropuff",
  4892. height: math.unit(1500, "feet"),
  4893. default: true
  4894. },
  4895. {
  4896. name: "Megapuff",
  4897. height: math.unit(500, "miles")
  4898. },
  4899. {
  4900. name: "Gigapuff",
  4901. height: math.unit(250000, "miles")
  4902. },
  4903. {
  4904. name: "Omegapuff",
  4905. height: math.unit(1000, "lightyears")
  4906. },
  4907. ]
  4908. ))
  4909. characterMakers.push(() => makeCharacter(
  4910. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4911. {
  4912. stomping: {
  4913. height: math.unit(6, "feet"),
  4914. weight: math.unit(170, "lbs"),
  4915. name: "Stomping",
  4916. image: {
  4917. source: "./media/characters/vivian/stomping.svg"
  4918. }
  4919. },
  4920. sitting: {
  4921. height: math.unit(6 / 1.75, "feet"),
  4922. weight: math.unit(170, "lbs"),
  4923. name: "Sitting",
  4924. image: {
  4925. source: "./media/characters/vivian/sitting.svg",
  4926. bottom: 1 / 6.4,
  4927. extra: 1,
  4928. }
  4929. },
  4930. },
  4931. [
  4932. {
  4933. name: "Normal",
  4934. height: math.unit(7, "feet"),
  4935. default: true
  4936. },
  4937. {
  4938. name: "Macro",
  4939. height: math.unit(10, "stories")
  4940. },
  4941. {
  4942. name: "Macro+",
  4943. height: math.unit(30, "stories")
  4944. },
  4945. {
  4946. name: "Megamacro",
  4947. height: math.unit(10, "miles")
  4948. },
  4949. {
  4950. name: "Megamacro+",
  4951. height: math.unit(2750000, "meters")
  4952. },
  4953. ]
  4954. ))
  4955. characterMakers.push(() => makeCharacter(
  4956. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4957. {
  4958. front: {
  4959. height: math.unit(6, "feet"),
  4960. weight: math.unit(160, "lbs"),
  4961. name: "Front",
  4962. image: {
  4963. source: "./media/characters/prince/front.svg",
  4964. extra: 3400 / 3000
  4965. }
  4966. },
  4967. jumping: {
  4968. height: math.unit(6, "feet"),
  4969. weight: math.unit(160, "lbs"),
  4970. name: "Jumping",
  4971. image: {
  4972. source: "./media/characters/prince/jump.svg",
  4973. extra: 2555 / 2134
  4974. }
  4975. },
  4976. },
  4977. [
  4978. {
  4979. name: "Normal",
  4980. height: math.unit(7.75, "feet"),
  4981. default: true
  4982. },
  4983. {
  4984. name: "Not cute",
  4985. height: math.unit(17, "feet")
  4986. },
  4987. {
  4988. name: "I said NOT",
  4989. height: math.unit(91, "feet")
  4990. },
  4991. {
  4992. name: "Please stop",
  4993. height: math.unit(560, "feet")
  4994. },
  4995. {
  4996. name: "What have you done",
  4997. height: math.unit(2200, "feet")
  4998. },
  4999. {
  5000. name: "Deer God",
  5001. height: math.unit(3.6, "miles")
  5002. },
  5003. ]
  5004. ))
  5005. characterMakers.push(() => makeCharacter(
  5006. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5007. {
  5008. standing: {
  5009. height: math.unit(6, "feet"),
  5010. weight: math.unit(300, "lbs"),
  5011. name: "Standing",
  5012. image: {
  5013. source: "./media/characters/psymon/standing.svg",
  5014. extra: 1888 / 1810,
  5015. bottom: 0.05
  5016. }
  5017. },
  5018. slithering: {
  5019. height: math.unit(6, "feet"),
  5020. weight: math.unit(300, "lbs"),
  5021. name: "Slithering",
  5022. image: {
  5023. source: "./media/characters/psymon/slithering.svg",
  5024. extra: 1330 / 1224
  5025. }
  5026. },
  5027. slitheringAlt: {
  5028. height: math.unit(6, "feet"),
  5029. weight: math.unit(300, "lbs"),
  5030. name: "Slithering (Alt)",
  5031. image: {
  5032. source: "./media/characters/psymon/slithering-alt.svg",
  5033. extra: 1330 / 1224
  5034. }
  5035. },
  5036. },
  5037. [
  5038. {
  5039. name: "Normal",
  5040. height: math.unit(11.25, "feet"),
  5041. default: true
  5042. },
  5043. {
  5044. name: "Large",
  5045. height: math.unit(27, "feet")
  5046. },
  5047. {
  5048. name: "Giant",
  5049. height: math.unit(87, "feet")
  5050. },
  5051. {
  5052. name: "Macro",
  5053. height: math.unit(365, "feet")
  5054. },
  5055. {
  5056. name: "Megamacro",
  5057. height: math.unit(3, "miles")
  5058. },
  5059. {
  5060. name: "World Serpent",
  5061. height: math.unit(8000, "miles")
  5062. },
  5063. ]
  5064. ))
  5065. characterMakers.push(() => makeCharacter(
  5066. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5067. {
  5068. front: {
  5069. height: math.unit(6, "feet"),
  5070. weight: math.unit(180, "lbs"),
  5071. name: "Front",
  5072. image: {
  5073. source: "./media/characters/daimos/front.svg",
  5074. extra: 4160 / 3897,
  5075. bottom: 0.021
  5076. }
  5077. }
  5078. },
  5079. [
  5080. {
  5081. name: "Normal",
  5082. height: math.unit(8, "feet"),
  5083. default: true
  5084. },
  5085. {
  5086. name: "Big Dog",
  5087. height: math.unit(22, "feet")
  5088. },
  5089. {
  5090. name: "Macro",
  5091. height: math.unit(127, "feet")
  5092. },
  5093. {
  5094. name: "Megamacro",
  5095. height: math.unit(3600, "feet")
  5096. },
  5097. ]
  5098. ))
  5099. characterMakers.push(() => makeCharacter(
  5100. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5101. {
  5102. side: {
  5103. height: math.unit(6, "feet"),
  5104. weight: math.unit(180, "lbs"),
  5105. name: "Side",
  5106. image: {
  5107. source: "./media/characters/blake/side.svg",
  5108. extra: 1212 / 1120,
  5109. bottom: 0.05
  5110. }
  5111. },
  5112. crouched: {
  5113. height: math.unit(6 * 0.57, "feet"),
  5114. weight: math.unit(180, "lbs"),
  5115. name: "Crouched",
  5116. image: {
  5117. source: "./media/characters/blake/crouched.svg",
  5118. extra: 840 / 587,
  5119. bottom: 0.04
  5120. }
  5121. },
  5122. bent: {
  5123. height: math.unit(6 * 0.75, "feet"),
  5124. weight: math.unit(180, "lbs"),
  5125. name: "Bent",
  5126. image: {
  5127. source: "./media/characters/blake/bent.svg",
  5128. extra: 592 / 544,
  5129. bottom: 0.035
  5130. }
  5131. },
  5132. },
  5133. [
  5134. {
  5135. name: "Normal",
  5136. height: math.unit(8 + 1 / 6, "feet"),
  5137. default: true
  5138. },
  5139. {
  5140. name: "Big Backside",
  5141. height: math.unit(37, "feet")
  5142. },
  5143. {
  5144. name: "Subway Shredder",
  5145. height: math.unit(72, "feet")
  5146. },
  5147. {
  5148. name: "City Carver",
  5149. height: math.unit(1675, "feet")
  5150. },
  5151. {
  5152. name: "Tectonic Tweaker",
  5153. height: math.unit(2300, "miles")
  5154. },
  5155. ]
  5156. ))
  5157. characterMakers.push(() => makeCharacter(
  5158. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5159. {
  5160. front: {
  5161. height: math.unit(6, "feet"),
  5162. weight: math.unit(180, "lbs"),
  5163. name: "Front",
  5164. image: {
  5165. source: "./media/characters/guisetto/front.svg",
  5166. extra: 856 / 817,
  5167. bottom: 0.06
  5168. }
  5169. },
  5170. airborne: {
  5171. height: math.unit(6, "feet"),
  5172. weight: math.unit(180, "lbs"),
  5173. name: "Airborne",
  5174. image: {
  5175. source: "./media/characters/guisetto/airborne.svg",
  5176. extra: 584 / 525
  5177. }
  5178. },
  5179. },
  5180. [
  5181. {
  5182. name: "Normal",
  5183. height: math.unit(10 + 11 / 12, "feet"),
  5184. default: true
  5185. },
  5186. {
  5187. name: "Large",
  5188. height: math.unit(35, "feet")
  5189. },
  5190. {
  5191. name: "Macro",
  5192. height: math.unit(475, "feet")
  5193. },
  5194. ]
  5195. ))
  5196. characterMakers.push(() => makeCharacter(
  5197. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5198. {
  5199. front: {
  5200. height: math.unit(6, "feet"),
  5201. weight: math.unit(180, "lbs"),
  5202. name: "Front",
  5203. image: {
  5204. source: "./media/characters/luxor/front.svg",
  5205. extra: 2940 / 2152
  5206. }
  5207. },
  5208. back: {
  5209. height: math.unit(6, "feet"),
  5210. weight: math.unit(180, "lbs"),
  5211. name: "Back",
  5212. image: {
  5213. source: "./media/characters/luxor/back.svg",
  5214. extra: 1083 / 960
  5215. }
  5216. },
  5217. },
  5218. [
  5219. {
  5220. name: "Normal",
  5221. height: math.unit(5 + 5 / 6, "feet"),
  5222. default: true
  5223. },
  5224. {
  5225. name: "Lamp",
  5226. height: math.unit(50, "feet")
  5227. },
  5228. {
  5229. name: "Lämp",
  5230. height: math.unit(300, "feet")
  5231. },
  5232. {
  5233. name: "The sun is a lamp",
  5234. height: math.unit(250000, "miles")
  5235. },
  5236. ]
  5237. ))
  5238. characterMakers.push(() => makeCharacter(
  5239. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5240. {
  5241. front: {
  5242. height: math.unit(6, "feet"),
  5243. weight: math.unit(50, "lbs"),
  5244. name: "Front",
  5245. image: {
  5246. source: "./media/characters/huoyan/front.svg"
  5247. }
  5248. },
  5249. side: {
  5250. height: math.unit(6, "feet"),
  5251. weight: math.unit(180, "lbs"),
  5252. name: "Side",
  5253. image: {
  5254. source: "./media/characters/huoyan/side.svg"
  5255. }
  5256. },
  5257. },
  5258. [
  5259. {
  5260. name: "Chef",
  5261. height: math.unit(9, "feet")
  5262. },
  5263. {
  5264. name: "Normal",
  5265. height: math.unit(65, "feet"),
  5266. default: true
  5267. },
  5268. {
  5269. name: "Macro",
  5270. height: math.unit(780, "feet")
  5271. },
  5272. {
  5273. name: "Flaming Mountain",
  5274. height: math.unit(4.8, "miles")
  5275. },
  5276. {
  5277. name: "Celestial",
  5278. height: math.unit(765000, "miles")
  5279. },
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5284. {
  5285. front: {
  5286. height: math.unit(5 + 3 / 4, "feet"),
  5287. weight: math.unit(120, "lbs"),
  5288. name: "Front",
  5289. image: {
  5290. source: "./media/characters/tails/front.svg"
  5291. }
  5292. }
  5293. },
  5294. [
  5295. {
  5296. name: "Normal",
  5297. height: math.unit(5 + 3 / 4, "feet"),
  5298. default: true
  5299. }
  5300. ]
  5301. ))
  5302. characterMakers.push(() => makeCharacter(
  5303. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5304. {
  5305. front: {
  5306. height: math.unit(4, "feet"),
  5307. weight: math.unit(50, "lbs"),
  5308. name: "Front",
  5309. image: {
  5310. source: "./media/characters/rainy/front.svg"
  5311. }
  5312. }
  5313. },
  5314. [
  5315. {
  5316. name: "Macro",
  5317. height: math.unit(800, "feet"),
  5318. default: true
  5319. }
  5320. ]
  5321. ))
  5322. characterMakers.push(() => makeCharacter(
  5323. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5324. {
  5325. front: {
  5326. height: math.unit(6, "feet"),
  5327. weight: math.unit(150, "lbs"),
  5328. name: "Front",
  5329. image: {
  5330. source: "./media/characters/rainier/front.svg"
  5331. }
  5332. }
  5333. },
  5334. [
  5335. {
  5336. name: "Micro",
  5337. height: math.unit(2, "mm"),
  5338. default: true
  5339. }
  5340. ]
  5341. ))
  5342. characterMakers.push(() => makeCharacter(
  5343. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5344. {
  5345. front: {
  5346. height: math.unit(6, "feet"),
  5347. weight: math.unit(180, "lbs"),
  5348. name: "Front",
  5349. image: {
  5350. source: "./media/characters/andy/front.svg"
  5351. }
  5352. }
  5353. },
  5354. [
  5355. {
  5356. name: "Normal",
  5357. height: math.unit(8, "feet"),
  5358. default: true
  5359. },
  5360. {
  5361. name: "Macro",
  5362. height: math.unit(1000, "feet")
  5363. },
  5364. {
  5365. name: "Megamacro",
  5366. height: math.unit(5, "miles")
  5367. },
  5368. {
  5369. name: "Gigamacro",
  5370. height: math.unit(5000, "miles")
  5371. },
  5372. ]
  5373. ))
  5374. characterMakers.push(() => makeCharacter(
  5375. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5376. {
  5377. front: {
  5378. height: math.unit(6, "feet"),
  5379. weight: math.unit(210, "lbs"),
  5380. name: "Front",
  5381. image: {
  5382. source: "./media/characters/cimmaron/front-sfw.svg",
  5383. extra: 701 / 676,
  5384. bottom: 0.046
  5385. }
  5386. },
  5387. back: {
  5388. height: math.unit(6, "feet"),
  5389. weight: math.unit(210, "lbs"),
  5390. name: "Back",
  5391. image: {
  5392. source: "./media/characters/cimmaron/back-sfw.svg",
  5393. extra: 701 / 676,
  5394. bottom: 0.046
  5395. }
  5396. },
  5397. frontNsfw: {
  5398. height: math.unit(6, "feet"),
  5399. weight: math.unit(210, "lbs"),
  5400. name: "Front (NSFW)",
  5401. image: {
  5402. source: "./media/characters/cimmaron/front-nsfw.svg",
  5403. extra: 701 / 676,
  5404. bottom: 0.046
  5405. }
  5406. },
  5407. backNsfw: {
  5408. height: math.unit(6, "feet"),
  5409. weight: math.unit(210, "lbs"),
  5410. name: "Back (NSFW)",
  5411. image: {
  5412. source: "./media/characters/cimmaron/back-nsfw.svg",
  5413. extra: 701 / 676,
  5414. bottom: 0.046
  5415. }
  5416. },
  5417. dick: {
  5418. height: math.unit(1.714, "feet"),
  5419. name: "Dick",
  5420. image: {
  5421. source: "./media/characters/cimmaron/dick.svg"
  5422. }
  5423. },
  5424. },
  5425. [
  5426. {
  5427. name: "Normal",
  5428. height: math.unit(6, "feet"),
  5429. default: true
  5430. },
  5431. {
  5432. name: "Macro Mayor",
  5433. height: math.unit(350, "meters")
  5434. },
  5435. ]
  5436. ))
  5437. characterMakers.push(() => makeCharacter(
  5438. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5439. {
  5440. front: {
  5441. height: math.unit(6, "feet"),
  5442. weight: math.unit(200, "lbs"),
  5443. name: "Front",
  5444. image: {
  5445. source: "./media/characters/akari/front.svg",
  5446. extra: 962 / 901,
  5447. bottom: 0.04
  5448. }
  5449. }
  5450. },
  5451. [
  5452. {
  5453. name: "Micro",
  5454. height: math.unit(5, "inches"),
  5455. default: true
  5456. },
  5457. {
  5458. name: "Normal",
  5459. height: math.unit(7, "feet")
  5460. },
  5461. ]
  5462. ))
  5463. characterMakers.push(() => makeCharacter(
  5464. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5465. {
  5466. front: {
  5467. height: math.unit(6, "feet"),
  5468. weight: math.unit(140, "lbs"),
  5469. name: "Front",
  5470. image: {
  5471. source: "./media/characters/cynosura/front.svg",
  5472. extra: 896 / 847
  5473. }
  5474. },
  5475. back: {
  5476. height: math.unit(6, "feet"),
  5477. weight: math.unit(140, "lbs"),
  5478. name: "Back",
  5479. image: {
  5480. source: "./media/characters/cynosura/back.svg",
  5481. extra: 1365 / 1250
  5482. }
  5483. },
  5484. },
  5485. [
  5486. {
  5487. name: "Micro",
  5488. height: math.unit(4, "inches")
  5489. },
  5490. {
  5491. name: "Normal",
  5492. height: math.unit(5.75, "feet"),
  5493. default: true
  5494. },
  5495. {
  5496. name: "Tall",
  5497. height: math.unit(10, "feet")
  5498. },
  5499. {
  5500. name: "Big",
  5501. height: math.unit(20, "feet")
  5502. },
  5503. {
  5504. name: "Macro",
  5505. height: math.unit(50, "feet")
  5506. },
  5507. ]
  5508. ))
  5509. characterMakers.push(() => makeCharacter(
  5510. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5511. {
  5512. front: {
  5513. height: math.unit(6, "feet"),
  5514. weight: math.unit(170, "lbs"),
  5515. name: "Front",
  5516. image: {
  5517. source: "./media/characters/gin/front.svg",
  5518. extra: 1.053,
  5519. bottom: 0.025
  5520. }
  5521. },
  5522. foot: {
  5523. height: math.unit(6 / 4.25, "feet"),
  5524. name: "Foot",
  5525. image: {
  5526. source: "./media/characters/gin/foot.svg"
  5527. }
  5528. },
  5529. sole: {
  5530. height: math.unit(6 / 4.40, "feet"),
  5531. name: "Sole",
  5532. image: {
  5533. source: "./media/characters/gin/sole.svg"
  5534. }
  5535. },
  5536. },
  5537. [
  5538. {
  5539. name: "Normal",
  5540. height: math.unit(13 + 2 / 12, "feet")
  5541. },
  5542. {
  5543. name: "Macro",
  5544. height: math.unit(1500, "feet")
  5545. },
  5546. {
  5547. name: "Megamacro",
  5548. height: math.unit(200, "miles"),
  5549. default: true
  5550. },
  5551. {
  5552. name: "Gigamacro",
  5553. height: math.unit(500, "megameters")
  5554. },
  5555. {
  5556. name: "Teramacro",
  5557. height: math.unit(15, "lightyears")
  5558. }
  5559. ]
  5560. ))
  5561. characterMakers.push(() => makeCharacter(
  5562. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5563. {
  5564. front: {
  5565. height: math.unit(6 + 1 / 6, "feet"),
  5566. weight: math.unit(178, "lbs"),
  5567. name: "Front",
  5568. image: {
  5569. source: "./media/characters/guy/front.svg"
  5570. }
  5571. }
  5572. },
  5573. [
  5574. {
  5575. name: "Normal",
  5576. height: math.unit(6 + 1 / 6, "feet"),
  5577. default: true
  5578. },
  5579. {
  5580. name: "Large",
  5581. height: math.unit(25 + 7 / 12, "feet")
  5582. },
  5583. {
  5584. name: "Macro",
  5585. height: math.unit(60 + 9 / 12, "feet")
  5586. },
  5587. {
  5588. name: "Macro+",
  5589. height: math.unit(246, "feet")
  5590. },
  5591. {
  5592. name: "Macro++",
  5593. height: math.unit(878, "feet")
  5594. }
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5599. {
  5600. front: {
  5601. height: math.unit(9, "feet"),
  5602. weight: math.unit(800, "lbs"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/tiberius/front.svg",
  5606. extra: 2295 / 2071
  5607. }
  5608. },
  5609. back: {
  5610. height: math.unit(9, "feet"),
  5611. weight: math.unit(800, "lbs"),
  5612. name: "Back",
  5613. image: {
  5614. source: "./media/characters/tiberius/back.svg",
  5615. extra: 2373 / 2160
  5616. }
  5617. },
  5618. },
  5619. [
  5620. {
  5621. name: "Normal",
  5622. height: math.unit(9, "feet"),
  5623. default: true
  5624. }
  5625. ]
  5626. ))
  5627. characterMakers.push(() => makeCharacter(
  5628. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5629. {
  5630. front: {
  5631. height: math.unit(6, "feet"),
  5632. weight: math.unit(600, "lbs"),
  5633. name: "Front",
  5634. image: {
  5635. source: "./media/characters/surgo/front.svg",
  5636. extra: 3591 / 2227
  5637. }
  5638. },
  5639. back: {
  5640. height: math.unit(6, "feet"),
  5641. weight: math.unit(600, "lbs"),
  5642. name: "Back",
  5643. image: {
  5644. source: "./media/characters/surgo/back.svg",
  5645. extra: 3557 / 2228
  5646. }
  5647. },
  5648. laying: {
  5649. height: math.unit(6 * 0.85, "feet"),
  5650. weight: math.unit(600, "lbs"),
  5651. name: "Laying",
  5652. image: {
  5653. source: "./media/characters/surgo/laying.svg"
  5654. }
  5655. },
  5656. },
  5657. [
  5658. {
  5659. name: "Normal",
  5660. height: math.unit(6, "feet"),
  5661. default: true
  5662. }
  5663. ]
  5664. ))
  5665. characterMakers.push(() => makeCharacter(
  5666. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5667. {
  5668. side: {
  5669. height: math.unit(6, "feet"),
  5670. weight: math.unit(150, "lbs"),
  5671. name: "Side",
  5672. image: {
  5673. source: "./media/characters/cibus/side.svg",
  5674. extra: 800 / 400
  5675. }
  5676. },
  5677. },
  5678. [
  5679. {
  5680. name: "Normal",
  5681. height: math.unit(6, "feet"),
  5682. default: true
  5683. }
  5684. ]
  5685. ))
  5686. characterMakers.push(() => makeCharacter(
  5687. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5688. {
  5689. front: {
  5690. height: math.unit(6, "feet"),
  5691. weight: math.unit(240, "lbs"),
  5692. name: "Front",
  5693. image: {
  5694. source: "./media/characters/nibbles/front.svg"
  5695. }
  5696. },
  5697. side: {
  5698. height: math.unit(6, "feet"),
  5699. weight: math.unit(240, "lbs"),
  5700. name: "Side",
  5701. image: {
  5702. source: "./media/characters/nibbles/side.svg"
  5703. }
  5704. },
  5705. },
  5706. [
  5707. {
  5708. name: "Normal",
  5709. height: math.unit(9, "feet"),
  5710. default: true
  5711. }
  5712. ]
  5713. ))
  5714. characterMakers.push(() => makeCharacter(
  5715. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5716. {
  5717. side: {
  5718. height: math.unit(5 + 1 / 6, "feet"),
  5719. weight: math.unit(130, "lbs"),
  5720. name: "Side",
  5721. image: {
  5722. source: "./media/characters/rikky/side.svg",
  5723. extra: 851 / 801
  5724. }
  5725. },
  5726. },
  5727. [
  5728. {
  5729. name: "Normal",
  5730. height: math.unit(5 + 1 / 6, "feet")
  5731. },
  5732. {
  5733. name: "Macro",
  5734. height: math.unit(152, "feet"),
  5735. default: true
  5736. },
  5737. {
  5738. name: "Megamacro",
  5739. height: math.unit(7, "miles")
  5740. }
  5741. ]
  5742. ))
  5743. characterMakers.push(() => makeCharacter(
  5744. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5745. {
  5746. side: {
  5747. height: math.unit(370, "cm"),
  5748. weight: math.unit(350, "lbs"),
  5749. name: "Side",
  5750. image: {
  5751. source: "./media/characters/malfressa/side.svg"
  5752. }
  5753. },
  5754. walking: {
  5755. height: math.unit(370, "cm"),
  5756. weight: math.unit(350, "lbs"),
  5757. name: "Walking",
  5758. image: {
  5759. source: "./media/characters/malfressa/walking.svg"
  5760. }
  5761. },
  5762. feral: {
  5763. height: math.unit(2500, "cm"),
  5764. weight: math.unit(100000, "lbs"),
  5765. name: "Feral",
  5766. image: {
  5767. source: "./media/characters/malfressa/feral.svg",
  5768. extra: 2108 / 837,
  5769. bottom: 0.02
  5770. }
  5771. },
  5772. },
  5773. [
  5774. {
  5775. name: "Normal",
  5776. height: math.unit(370, "cm")
  5777. },
  5778. {
  5779. name: "Macro",
  5780. height: math.unit(300, "meters"),
  5781. default: true
  5782. }
  5783. ]
  5784. ))
  5785. characterMakers.push(() => makeCharacter(
  5786. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5787. {
  5788. front: {
  5789. height: math.unit(6, "feet"),
  5790. weight: math.unit(60, "kg"),
  5791. name: "Front",
  5792. image: {
  5793. source: "./media/characters/jaro/front.svg"
  5794. }
  5795. },
  5796. back: {
  5797. height: math.unit(6, "feet"),
  5798. weight: math.unit(60, "kg"),
  5799. name: "Back",
  5800. image: {
  5801. source: "./media/characters/jaro/back.svg"
  5802. }
  5803. },
  5804. },
  5805. [
  5806. {
  5807. name: "Micro",
  5808. height: math.unit(7, "inches")
  5809. },
  5810. {
  5811. name: "Normal",
  5812. height: math.unit(5.5, "feet"),
  5813. default: true
  5814. },
  5815. {
  5816. name: "Minimacro",
  5817. height: math.unit(20, "feet")
  5818. },
  5819. {
  5820. name: "Macro",
  5821. height: math.unit(200, "meters")
  5822. }
  5823. ]
  5824. ))
  5825. characterMakers.push(() => makeCharacter(
  5826. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5827. {
  5828. front: {
  5829. height: math.unit(6, "feet"),
  5830. weight: math.unit(195, "lb"),
  5831. name: "Front",
  5832. image: {
  5833. source: "./media/characters/rogue/front.svg"
  5834. }
  5835. },
  5836. },
  5837. [
  5838. {
  5839. name: "Macro",
  5840. height: math.unit(90, "feet"),
  5841. default: true
  5842. },
  5843. ]
  5844. ))
  5845. characterMakers.push(() => makeCharacter(
  5846. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5847. {
  5848. front: {
  5849. height: math.unit(5 + 8 / 12, "feet"),
  5850. weight: math.unit(140, "lb"),
  5851. name: "Front",
  5852. image: {
  5853. source: "./media/characters/piper/front.svg",
  5854. extra: 3948/3655,
  5855. bottom: 0/3948
  5856. }
  5857. },
  5858. },
  5859. [
  5860. {
  5861. name: "Micro",
  5862. height: math.unit(2, "inches")
  5863. },
  5864. {
  5865. name: "Normal",
  5866. height: math.unit(5 + 8 / 12, "feet")
  5867. },
  5868. {
  5869. name: "Macro",
  5870. height: math.unit(250, "feet"),
  5871. default: true
  5872. },
  5873. {
  5874. name: "Megamacro",
  5875. height: math.unit(7, "miles")
  5876. },
  5877. ]
  5878. ))
  5879. characterMakers.push(() => makeCharacter(
  5880. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5881. {
  5882. front: {
  5883. height: math.unit(6, "feet"),
  5884. weight: math.unit(220, "lb"),
  5885. name: "Front",
  5886. image: {
  5887. source: "./media/characters/gemini/front.svg"
  5888. }
  5889. },
  5890. back: {
  5891. height: math.unit(6, "feet"),
  5892. weight: math.unit(220, "lb"),
  5893. name: "Back",
  5894. image: {
  5895. source: "./media/characters/gemini/back.svg"
  5896. }
  5897. },
  5898. kneeling: {
  5899. height: math.unit(6 / 1.5, "feet"),
  5900. weight: math.unit(220, "lb"),
  5901. name: "Kneeling",
  5902. image: {
  5903. source: "./media/characters/gemini/kneeling.svg",
  5904. bottom: 0.02
  5905. }
  5906. },
  5907. },
  5908. [
  5909. {
  5910. name: "Macro",
  5911. height: math.unit(300, "meters"),
  5912. default: true
  5913. },
  5914. {
  5915. name: "Megamacro",
  5916. height: math.unit(6900, "meters")
  5917. },
  5918. ]
  5919. ))
  5920. characterMakers.push(() => makeCharacter(
  5921. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5922. {
  5923. anthro: {
  5924. height: math.unit(2.35, "meters"),
  5925. weight: math.unit(73, "kg"),
  5926. name: "Anthro",
  5927. image: {
  5928. source: "./media/characters/alicia/anthro.svg",
  5929. extra: 2571 / 2385,
  5930. bottom: 75 / 2648
  5931. }
  5932. },
  5933. paw: {
  5934. height: math.unit(1.32, "feet"),
  5935. name: "Paw",
  5936. image: {
  5937. source: "./media/characters/alicia/paw.svg"
  5938. }
  5939. },
  5940. feral: {
  5941. height: math.unit(1.69, "meters"),
  5942. weight: math.unit(73, "kg"),
  5943. name: "Feral",
  5944. image: {
  5945. source: "./media/characters/alicia/feral.svg",
  5946. extra: 2123 / 1715,
  5947. bottom: 222 / 2349
  5948. }
  5949. },
  5950. },
  5951. [
  5952. {
  5953. name: "Normal",
  5954. height: math.unit(2.35, "meters")
  5955. },
  5956. {
  5957. name: "Macro",
  5958. height: math.unit(60, "meters"),
  5959. default: true
  5960. },
  5961. {
  5962. name: "Megamacro",
  5963. height: math.unit(10000, "kilometers")
  5964. },
  5965. ]
  5966. ))
  5967. characterMakers.push(() => makeCharacter(
  5968. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5969. {
  5970. front: {
  5971. height: math.unit(7, "feet"),
  5972. weight: math.unit(250, "lbs"),
  5973. name: "Front",
  5974. image: {
  5975. source: "./media/characters/archy/front.svg"
  5976. }
  5977. }
  5978. },
  5979. [
  5980. {
  5981. name: "Micro",
  5982. height: math.unit(1, "inch")
  5983. },
  5984. {
  5985. name: "Shorty",
  5986. height: math.unit(5, "feet")
  5987. },
  5988. {
  5989. name: "Normal",
  5990. height: math.unit(7, "feet")
  5991. },
  5992. {
  5993. name: "Macro",
  5994. height: math.unit(600, "meters"),
  5995. default: true
  5996. },
  5997. {
  5998. name: "Megamacro",
  5999. height: math.unit(1, "mile")
  6000. },
  6001. ]
  6002. ))
  6003. characterMakers.push(() => makeCharacter(
  6004. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6005. {
  6006. front: {
  6007. height: math.unit(1.65, "meters"),
  6008. weight: math.unit(74, "kg"),
  6009. name: "Front",
  6010. image: {
  6011. source: "./media/characters/berri/front.svg",
  6012. extra: 857 / 837,
  6013. bottom: 18 / 877
  6014. }
  6015. },
  6016. bum: {
  6017. height: math.unit(1.46, "feet"),
  6018. name: "Bum",
  6019. image: {
  6020. source: "./media/characters/berri/bum.svg"
  6021. }
  6022. },
  6023. mouth: {
  6024. height: math.unit(0.44, "feet"),
  6025. name: "Mouth",
  6026. image: {
  6027. source: "./media/characters/berri/mouth.svg"
  6028. }
  6029. },
  6030. paw: {
  6031. height: math.unit(0.826, "feet"),
  6032. name: "Paw",
  6033. image: {
  6034. source: "./media/characters/berri/paw.svg"
  6035. }
  6036. },
  6037. },
  6038. [
  6039. {
  6040. name: "Normal",
  6041. height: math.unit(1.65, "meters")
  6042. },
  6043. {
  6044. name: "Macro",
  6045. height: math.unit(60, "m"),
  6046. default: true
  6047. },
  6048. {
  6049. name: "Megamacro",
  6050. height: math.unit(9.213, "km")
  6051. },
  6052. {
  6053. name: "Planet Eater",
  6054. height: math.unit(489, "megameters")
  6055. },
  6056. {
  6057. name: "Teramacro",
  6058. height: math.unit(2471635000000, "meters")
  6059. },
  6060. {
  6061. name: "Examacro",
  6062. height: math.unit(8.0624e+26, "meters")
  6063. }
  6064. ]
  6065. ))
  6066. characterMakers.push(() => makeCharacter(
  6067. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6068. {
  6069. front: {
  6070. height: math.unit(1.72, "meters"),
  6071. weight: math.unit(68, "kg"),
  6072. name: "Front",
  6073. image: {
  6074. source: "./media/characters/lexi/front.svg"
  6075. }
  6076. }
  6077. },
  6078. [
  6079. {
  6080. name: "Very Smol",
  6081. height: math.unit(10, "mm")
  6082. },
  6083. {
  6084. name: "Micro",
  6085. height: math.unit(6.8, "cm"),
  6086. default: true
  6087. },
  6088. {
  6089. name: "Normal",
  6090. height: math.unit(1.72, "m")
  6091. }
  6092. ]
  6093. ))
  6094. characterMakers.push(() => makeCharacter(
  6095. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6096. {
  6097. front: {
  6098. height: math.unit(1.69, "meters"),
  6099. weight: math.unit(68, "kg"),
  6100. name: "Front",
  6101. image: {
  6102. source: "./media/characters/martin/front.svg",
  6103. extra: 596 / 581
  6104. }
  6105. }
  6106. },
  6107. [
  6108. {
  6109. name: "Micro",
  6110. height: math.unit(6.85, "cm"),
  6111. default: true
  6112. },
  6113. {
  6114. name: "Normal",
  6115. height: math.unit(1.69, "m")
  6116. }
  6117. ]
  6118. ))
  6119. characterMakers.push(() => makeCharacter(
  6120. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6121. {
  6122. front: {
  6123. height: math.unit(1.69, "meters"),
  6124. weight: math.unit(68, "kg"),
  6125. name: "Front",
  6126. image: {
  6127. source: "./media/characters/juno/front.svg"
  6128. }
  6129. }
  6130. },
  6131. [
  6132. {
  6133. name: "Micro",
  6134. height: math.unit(7, "cm")
  6135. },
  6136. {
  6137. name: "Normal",
  6138. height: math.unit(1.89, "m")
  6139. },
  6140. {
  6141. name: "Macro",
  6142. height: math.unit(353, "meters"),
  6143. default: true
  6144. }
  6145. ]
  6146. ))
  6147. characterMakers.push(() => makeCharacter(
  6148. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6149. {
  6150. front: {
  6151. height: math.unit(1.93, "meters"),
  6152. weight: math.unit(83, "kg"),
  6153. name: "Front",
  6154. image: {
  6155. source: "./media/characters/samantha/front.svg"
  6156. }
  6157. },
  6158. frontClothed: {
  6159. height: math.unit(1.93, "meters"),
  6160. weight: math.unit(83, "kg"),
  6161. name: "Front (Clothed)",
  6162. image: {
  6163. source: "./media/characters/samantha/front-clothed.svg"
  6164. }
  6165. },
  6166. back: {
  6167. height: math.unit(1.93, "meters"),
  6168. weight: math.unit(83, "kg"),
  6169. name: "Back",
  6170. image: {
  6171. source: "./media/characters/samantha/back.svg"
  6172. }
  6173. },
  6174. },
  6175. [
  6176. {
  6177. name: "Normal",
  6178. height: math.unit(1.93, "m")
  6179. },
  6180. {
  6181. name: "Macro",
  6182. height: math.unit(74, "meters"),
  6183. default: true
  6184. },
  6185. {
  6186. name: "Macro+",
  6187. height: math.unit(223, "meters"),
  6188. },
  6189. {
  6190. name: "Megamacro",
  6191. height: math.unit(8381, "meters"),
  6192. },
  6193. {
  6194. name: "Megamacro+",
  6195. height: math.unit(12000, "kilometers")
  6196. },
  6197. ]
  6198. ))
  6199. characterMakers.push(() => makeCharacter(
  6200. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6201. {
  6202. front: {
  6203. height: math.unit(1.92, "meters"),
  6204. weight: math.unit(80, "kg"),
  6205. name: "Front",
  6206. image: {
  6207. source: "./media/characters/dr-clay/front.svg"
  6208. }
  6209. },
  6210. frontClothed: {
  6211. height: math.unit(1.92, "meters"),
  6212. weight: math.unit(80, "kg"),
  6213. name: "Front (Clothed)",
  6214. image: {
  6215. source: "./media/characters/dr-clay/front-clothed.svg"
  6216. }
  6217. }
  6218. },
  6219. [
  6220. {
  6221. name: "Normal",
  6222. height: math.unit(1.92, "m")
  6223. },
  6224. {
  6225. name: "Macro",
  6226. height: math.unit(214, "meters"),
  6227. default: true
  6228. },
  6229. {
  6230. name: "Macro+",
  6231. height: math.unit(12.237, "meters"),
  6232. },
  6233. {
  6234. name: "Megamacro",
  6235. height: math.unit(557, "megameters"),
  6236. },
  6237. {
  6238. name: "Unimaginable",
  6239. height: math.unit(120e9, "lightyears")
  6240. },
  6241. ]
  6242. ))
  6243. characterMakers.push(() => makeCharacter(
  6244. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6245. {
  6246. front: {
  6247. height: math.unit(2, "meters"),
  6248. weight: math.unit(80, "kg"),
  6249. name: "Front",
  6250. image: {
  6251. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6252. }
  6253. }
  6254. },
  6255. [
  6256. {
  6257. name: "Teramacro",
  6258. height: math.unit(500000, "lightyears"),
  6259. default: true
  6260. },
  6261. ]
  6262. ))
  6263. characterMakers.push(() => makeCharacter(
  6264. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6265. {
  6266. front: {
  6267. height: math.unit(2, "meters"),
  6268. weight: math.unit(150, "kg"),
  6269. name: "Front",
  6270. image: {
  6271. source: "./media/characters/vemus/front.svg",
  6272. extra: 2384 / 2084,
  6273. bottom: 0.0123
  6274. }
  6275. }
  6276. },
  6277. [
  6278. {
  6279. name: "Normal",
  6280. height: math.unit(3.75, "meters"),
  6281. default: true
  6282. },
  6283. {
  6284. name: "Big",
  6285. height: math.unit(8, "meters")
  6286. },
  6287. {
  6288. name: "Macro",
  6289. height: math.unit(100, "meters")
  6290. },
  6291. {
  6292. name: "Macro+",
  6293. height: math.unit(1500, "meters")
  6294. },
  6295. {
  6296. name: "Stellar",
  6297. height: math.unit(14e8, "meters")
  6298. },
  6299. ]
  6300. ))
  6301. characterMakers.push(() => makeCharacter(
  6302. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6303. {
  6304. front: {
  6305. height: math.unit(2, "meters"),
  6306. weight: math.unit(70, "kg"),
  6307. name: "Front",
  6308. image: {
  6309. source: "./media/characters/beherit/front.svg",
  6310. extra: 1408 / 1242
  6311. }
  6312. }
  6313. },
  6314. [
  6315. {
  6316. name: "Normal",
  6317. height: math.unit(6, "feet")
  6318. },
  6319. {
  6320. name: "Lorg",
  6321. height: math.unit(25, "feet"),
  6322. default: true
  6323. },
  6324. {
  6325. name: "Lorger",
  6326. height: math.unit(75, "feet")
  6327. },
  6328. {
  6329. name: "Macro",
  6330. height: math.unit(200, "meters")
  6331. },
  6332. ]
  6333. ))
  6334. characterMakers.push(() => makeCharacter(
  6335. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6336. {
  6337. front: {
  6338. height: math.unit(2, "meters"),
  6339. weight: math.unit(150, "kg"),
  6340. name: "Front",
  6341. image: {
  6342. source: "./media/characters/everett/front.svg",
  6343. extra: 2038 / 1737,
  6344. bottom: 0.03
  6345. }
  6346. },
  6347. paw: {
  6348. height: math.unit(2 / 3.6, "meters"),
  6349. name: "Paw",
  6350. image: {
  6351. source: "./media/characters/everett/paw.svg"
  6352. }
  6353. },
  6354. },
  6355. [
  6356. {
  6357. name: "Normal",
  6358. height: math.unit(15, "feet"),
  6359. default: true
  6360. },
  6361. {
  6362. name: "Lorg",
  6363. height: math.unit(70, "feet"),
  6364. default: true
  6365. },
  6366. {
  6367. name: "Lorger",
  6368. height: math.unit(250, "feet")
  6369. },
  6370. {
  6371. name: "Macro",
  6372. height: math.unit(500, "meters")
  6373. },
  6374. ]
  6375. ))
  6376. characterMakers.push(() => makeCharacter(
  6377. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6378. {
  6379. front: {
  6380. height: math.unit(2, "meters"),
  6381. weight: math.unit(86, "kg"),
  6382. name: "Front",
  6383. image: {
  6384. source: "./media/characters/rose/front.svg",
  6385. extra: 350/335,
  6386. bottom: 10/360
  6387. }
  6388. },
  6389. frontAlt: {
  6390. height: math.unit(1.6, "meters"),
  6391. weight: math.unit(86, "kg"),
  6392. name: "Front (Alt)",
  6393. image: {
  6394. source: "./media/characters/rose/front-alt.svg",
  6395. extra: 299/283,
  6396. bottom: 3/302
  6397. }
  6398. },
  6399. plush: {
  6400. height: math.unit(2, "meters"),
  6401. weight: math.unit(86/3, "kg"),
  6402. name: "Plush",
  6403. image: {
  6404. source: "./media/characters/rose/plush.svg",
  6405. extra: 361/337,
  6406. bottom: 11/372
  6407. }
  6408. },
  6409. },
  6410. [
  6411. {
  6412. name: "Mini-Micro",
  6413. height: math.unit(1, "cm")
  6414. },
  6415. {
  6416. name: "Micro",
  6417. height: math.unit(3.5, "inches"),
  6418. default: true
  6419. },
  6420. {
  6421. name: "Normal",
  6422. height: math.unit(6 + 1 / 6, "feet")
  6423. },
  6424. {
  6425. name: "Mini-Macro",
  6426. height: math.unit(9 + 10 / 12, "feet")
  6427. },
  6428. ]
  6429. ))
  6430. characterMakers.push(() => makeCharacter(
  6431. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6432. {
  6433. front: {
  6434. height: math.unit(2, "meters"),
  6435. weight: math.unit(350, "lbs"),
  6436. name: "Front",
  6437. image: {
  6438. source: "./media/characters/regal/front.svg"
  6439. }
  6440. },
  6441. back: {
  6442. height: math.unit(2, "meters"),
  6443. weight: math.unit(350, "lbs"),
  6444. name: "Back",
  6445. image: {
  6446. source: "./media/characters/regal/back.svg"
  6447. }
  6448. },
  6449. },
  6450. [
  6451. {
  6452. name: "Macro",
  6453. height: math.unit(350, "feet"),
  6454. default: true
  6455. }
  6456. ]
  6457. ))
  6458. characterMakers.push(() => makeCharacter(
  6459. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6460. {
  6461. front: {
  6462. height: math.unit(4 + 11 / 12, "feet"),
  6463. weight: math.unit(100, "lbs"),
  6464. name: "Front",
  6465. image: {
  6466. source: "./media/characters/opal/front.svg"
  6467. }
  6468. },
  6469. frontAlt: {
  6470. height: math.unit(4 + 11 / 12, "feet"),
  6471. weight: math.unit(100, "lbs"),
  6472. name: "Front (Alt)",
  6473. image: {
  6474. source: "./media/characters/opal/front-alt.svg"
  6475. }
  6476. },
  6477. },
  6478. [
  6479. {
  6480. name: "Small",
  6481. height: math.unit(4 + 11 / 12, "feet")
  6482. },
  6483. {
  6484. name: "Normal",
  6485. height: math.unit(20, "feet"),
  6486. default: true
  6487. },
  6488. {
  6489. name: "Macro",
  6490. height: math.unit(120, "feet")
  6491. },
  6492. {
  6493. name: "Megamacro",
  6494. height: math.unit(80, "miles")
  6495. },
  6496. {
  6497. name: "True Size",
  6498. height: math.unit(100000, "lightyears")
  6499. },
  6500. ]
  6501. ))
  6502. characterMakers.push(() => makeCharacter(
  6503. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6504. {
  6505. front: {
  6506. height: math.unit(6, "feet"),
  6507. weight: math.unit(200, "lbs"),
  6508. name: "Front",
  6509. image: {
  6510. source: "./media/characters/vector-wuff/front.svg"
  6511. }
  6512. }
  6513. },
  6514. [
  6515. {
  6516. name: "Normal",
  6517. height: math.unit(2.8, "meters")
  6518. },
  6519. {
  6520. name: "Macro",
  6521. height: math.unit(450, "meters"),
  6522. default: true
  6523. },
  6524. {
  6525. name: "Megamacro",
  6526. height: math.unit(15, "kilometers")
  6527. }
  6528. ]
  6529. ))
  6530. characterMakers.push(() => makeCharacter(
  6531. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6532. {
  6533. front: {
  6534. height: math.unit(6, "feet"),
  6535. weight: math.unit(256, "lbs"),
  6536. name: "Front",
  6537. image: {
  6538. source: "./media/characters/dannik/front.svg"
  6539. }
  6540. }
  6541. },
  6542. [
  6543. {
  6544. name: "Macro",
  6545. height: math.unit(69.57, "meters"),
  6546. default: true
  6547. },
  6548. ]
  6549. ))
  6550. characterMakers.push(() => makeCharacter(
  6551. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6552. {
  6553. front: {
  6554. height: math.unit(6, "feet"),
  6555. weight: math.unit(120, "lbs"),
  6556. name: "Front",
  6557. image: {
  6558. source: "./media/characters/azura-saharah/front.svg"
  6559. }
  6560. },
  6561. back: {
  6562. height: math.unit(6, "feet"),
  6563. weight: math.unit(120, "lbs"),
  6564. name: "Back",
  6565. image: {
  6566. source: "./media/characters/azura-saharah/back.svg"
  6567. }
  6568. },
  6569. },
  6570. [
  6571. {
  6572. name: "Macro",
  6573. height: math.unit(100, "feet"),
  6574. default: true
  6575. },
  6576. ]
  6577. ))
  6578. characterMakers.push(() => makeCharacter(
  6579. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6580. {
  6581. side: {
  6582. height: math.unit(5 + 4 / 12, "feet"),
  6583. weight: math.unit(163, "lbs"),
  6584. name: "Side",
  6585. image: {
  6586. source: "./media/characters/kennedy/side.svg"
  6587. }
  6588. }
  6589. },
  6590. [
  6591. {
  6592. name: "Standard Doggo",
  6593. height: math.unit(5 + 4 / 12, "feet")
  6594. },
  6595. {
  6596. name: "Big Doggo",
  6597. height: math.unit(25 + 3 / 12, "feet"),
  6598. default: true
  6599. },
  6600. ]
  6601. ))
  6602. characterMakers.push(() => makeCharacter(
  6603. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6604. {
  6605. front: {
  6606. height: math.unit(6, "feet"),
  6607. weight: math.unit(90, "lbs"),
  6608. name: "Front",
  6609. image: {
  6610. source: "./media/characters/odi-lunar/front.svg"
  6611. }
  6612. }
  6613. },
  6614. [
  6615. {
  6616. name: "Micro",
  6617. height: math.unit(3, "inches"),
  6618. default: true
  6619. },
  6620. {
  6621. name: "Normal",
  6622. height: math.unit(5.5, "feet")
  6623. }
  6624. ]
  6625. ))
  6626. characterMakers.push(() => makeCharacter(
  6627. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6628. {
  6629. back: {
  6630. height: math.unit(6, "feet"),
  6631. weight: math.unit(220, "lbs"),
  6632. name: "Back",
  6633. image: {
  6634. source: "./media/characters/mandake/back.svg"
  6635. }
  6636. }
  6637. },
  6638. [
  6639. {
  6640. name: "Normal",
  6641. height: math.unit(7, "feet"),
  6642. default: true
  6643. },
  6644. {
  6645. name: "Macro",
  6646. height: math.unit(78, "feet")
  6647. },
  6648. {
  6649. name: "Macro+",
  6650. height: math.unit(300, "meters")
  6651. },
  6652. {
  6653. name: "Macro++",
  6654. height: math.unit(2400, "feet")
  6655. },
  6656. {
  6657. name: "Megamacro",
  6658. height: math.unit(5167, "meters")
  6659. },
  6660. {
  6661. name: "Gigamacro",
  6662. height: math.unit(41769, "miles")
  6663. },
  6664. ]
  6665. ))
  6666. characterMakers.push(() => makeCharacter(
  6667. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6668. {
  6669. front: {
  6670. height: math.unit(6, "feet"),
  6671. weight: math.unit(120, "lbs"),
  6672. name: "Front",
  6673. image: {
  6674. source: "./media/characters/yozey/front.svg"
  6675. }
  6676. },
  6677. frontAlt: {
  6678. height: math.unit(6, "feet"),
  6679. weight: math.unit(120, "lbs"),
  6680. name: "Front (Alt)",
  6681. image: {
  6682. source: "./media/characters/yozey/front-alt.svg"
  6683. }
  6684. },
  6685. side: {
  6686. height: math.unit(6, "feet"),
  6687. weight: math.unit(120, "lbs"),
  6688. name: "Side",
  6689. image: {
  6690. source: "./media/characters/yozey/side.svg"
  6691. }
  6692. },
  6693. },
  6694. [
  6695. {
  6696. name: "Micro",
  6697. height: math.unit(3, "inches"),
  6698. default: true
  6699. },
  6700. {
  6701. name: "Normal",
  6702. height: math.unit(6, "feet")
  6703. }
  6704. ]
  6705. ))
  6706. characterMakers.push(() => makeCharacter(
  6707. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6708. {
  6709. front: {
  6710. height: math.unit(6, "feet"),
  6711. weight: math.unit(103, "lbs"),
  6712. name: "Front",
  6713. image: {
  6714. source: "./media/characters/valeska-voss/front.svg"
  6715. }
  6716. }
  6717. },
  6718. [
  6719. {
  6720. name: "Mini-Sized Sub",
  6721. height: math.unit(3.1, "inches")
  6722. },
  6723. {
  6724. name: "Mid-Sized Sub",
  6725. height: math.unit(6.2, "inches")
  6726. },
  6727. {
  6728. name: "Full-Sized Sub",
  6729. height: math.unit(9.3, "inches")
  6730. },
  6731. {
  6732. name: "Normal",
  6733. height: math.unit(5 + 2 / 12, "foot"),
  6734. default: true
  6735. },
  6736. ]
  6737. ))
  6738. characterMakers.push(() => makeCharacter(
  6739. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6740. {
  6741. front: {
  6742. height: math.unit(6, "feet"),
  6743. weight: math.unit(160, "lbs"),
  6744. name: "Front",
  6745. image: {
  6746. source: "./media/characters/gene-zeta/front.svg",
  6747. extra: 3006 / 2826,
  6748. bottom: 182 / 3188
  6749. }
  6750. }
  6751. },
  6752. [
  6753. {
  6754. name: "Micro",
  6755. height: math.unit(6, "inches")
  6756. },
  6757. {
  6758. name: "Normal",
  6759. height: math.unit(5 + 11 / 12, "foot"),
  6760. default: true
  6761. },
  6762. {
  6763. name: "Macro",
  6764. height: math.unit(140, "feet")
  6765. },
  6766. {
  6767. name: "Supercharged",
  6768. height: math.unit(2500, "feet")
  6769. },
  6770. ]
  6771. ))
  6772. characterMakers.push(() => makeCharacter(
  6773. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6774. {
  6775. front: {
  6776. height: math.unit(6, "feet"),
  6777. weight: math.unit(350, "lbs"),
  6778. name: "Front",
  6779. image: {
  6780. source: "./media/characters/razinox/front.svg",
  6781. extra: 1686 / 1548,
  6782. bottom: 28.2 / 1868
  6783. }
  6784. },
  6785. back: {
  6786. height: math.unit(6, "feet"),
  6787. weight: math.unit(350, "lbs"),
  6788. name: "Back",
  6789. image: {
  6790. source: "./media/characters/razinox/back.svg",
  6791. extra: 1660 / 1590,
  6792. bottom: 15 / 1665
  6793. }
  6794. },
  6795. },
  6796. [
  6797. {
  6798. name: "Normal",
  6799. height: math.unit(10 + 8 / 12, "foot")
  6800. },
  6801. {
  6802. name: "Minimacro",
  6803. height: math.unit(15, "foot")
  6804. },
  6805. {
  6806. name: "Macro",
  6807. height: math.unit(60, "foot"),
  6808. default: true
  6809. },
  6810. {
  6811. name: "Megamacro",
  6812. height: math.unit(5, "miles")
  6813. },
  6814. {
  6815. name: "Gigamacro",
  6816. height: math.unit(6000, "miles")
  6817. },
  6818. ]
  6819. ))
  6820. characterMakers.push(() => makeCharacter(
  6821. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6822. {
  6823. front: {
  6824. height: math.unit(6, "feet"),
  6825. weight: math.unit(150, "lbs"),
  6826. name: "Front",
  6827. image: {
  6828. source: "./media/characters/cobalt/front.svg"
  6829. }
  6830. }
  6831. },
  6832. [
  6833. {
  6834. name: "Normal",
  6835. height: math.unit(8 + 1 / 12, "foot")
  6836. },
  6837. {
  6838. name: "Macro",
  6839. height: math.unit(111, "foot"),
  6840. default: true
  6841. },
  6842. {
  6843. name: "Supracosmic",
  6844. height: math.unit(1e42, "feet")
  6845. },
  6846. ]
  6847. ))
  6848. characterMakers.push(() => makeCharacter(
  6849. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6850. {
  6851. front: {
  6852. height: math.unit(6, "feet"),
  6853. weight: math.unit(140, "lbs"),
  6854. name: "Front",
  6855. image: {
  6856. source: "./media/characters/amanda/front.svg"
  6857. }
  6858. }
  6859. },
  6860. [
  6861. {
  6862. name: "Micro",
  6863. height: math.unit(5, "inches"),
  6864. default: true
  6865. },
  6866. ]
  6867. ))
  6868. characterMakers.push(() => makeCharacter(
  6869. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6870. {
  6871. front: {
  6872. height: math.unit(2.75, "meters"),
  6873. weight: math.unit(1200, "lb"),
  6874. name: "Front",
  6875. image: {
  6876. source: "./media/characters/teal/front.svg",
  6877. extra: 2463 / 2320,
  6878. bottom: 166 / 2629
  6879. }
  6880. },
  6881. back: {
  6882. height: math.unit(2.75, "meters"),
  6883. weight: math.unit(1200, "lb"),
  6884. name: "Back",
  6885. image: {
  6886. source: "./media/characters/teal/back.svg",
  6887. extra: 2580 / 2489,
  6888. bottom: 151 / 2731
  6889. }
  6890. },
  6891. sitting: {
  6892. height: math.unit(1.9, "meters"),
  6893. weight: math.unit(1200, "lb"),
  6894. name: "Sitting",
  6895. image: {
  6896. source: "./media/characters/teal/sitting.svg",
  6897. extra: 623 / 590,
  6898. bottom: 121 / 744
  6899. }
  6900. },
  6901. standing: {
  6902. height: math.unit(2.75, "meters"),
  6903. weight: math.unit(1200, "lb"),
  6904. name: "Standing",
  6905. image: {
  6906. source: "./media/characters/teal/standing.svg",
  6907. extra: 923 / 893,
  6908. bottom: 60 / 983
  6909. }
  6910. },
  6911. stretching: {
  6912. height: math.unit(3.65, "meters"),
  6913. weight: math.unit(1200, "lb"),
  6914. name: "Stretching",
  6915. image: {
  6916. source: "./media/characters/teal/stretching.svg",
  6917. extra: 1276 / 1244,
  6918. bottom: 0 / 1276
  6919. }
  6920. },
  6921. legged: {
  6922. height: math.unit(1.3, "meters"),
  6923. weight: math.unit(100, "lb"),
  6924. name: "Legged",
  6925. image: {
  6926. source: "./media/characters/teal/legged.svg",
  6927. extra: 462 / 437,
  6928. bottom: 24 / 486
  6929. }
  6930. },
  6931. naga: {
  6932. height: math.unit(5.4, "meters"),
  6933. weight: math.unit(4000, "lb"),
  6934. name: "Naga",
  6935. image: {
  6936. source: "./media/characters/teal/naga.svg",
  6937. extra: 1902 / 1858,
  6938. bottom: 0 / 1902
  6939. }
  6940. },
  6941. hand: {
  6942. height: math.unit(0.52, "meters"),
  6943. name: "Hand",
  6944. image: {
  6945. source: "./media/characters/teal/hand.svg"
  6946. }
  6947. },
  6948. maw: {
  6949. height: math.unit(0.43, "meters"),
  6950. name: "Maw",
  6951. image: {
  6952. source: "./media/characters/teal/maw.svg"
  6953. }
  6954. },
  6955. slit: {
  6956. height: math.unit(0.25, "meters"),
  6957. name: "Slit",
  6958. image: {
  6959. source: "./media/characters/teal/slit.svg"
  6960. }
  6961. },
  6962. },
  6963. [
  6964. {
  6965. name: "Normal",
  6966. height: math.unit(2.75, "meters"),
  6967. default: true
  6968. },
  6969. {
  6970. name: "Macro",
  6971. height: math.unit(300, "feet")
  6972. },
  6973. {
  6974. name: "Macro+",
  6975. height: math.unit(2000, "feet")
  6976. },
  6977. ]
  6978. ))
  6979. characterMakers.push(() => makeCharacter(
  6980. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6981. {
  6982. frontCat: {
  6983. height: math.unit(6, "feet"),
  6984. weight: math.unit(180, "lbs"),
  6985. name: "Front (Cat)",
  6986. image: {
  6987. source: "./media/characters/ravin-amulet/front-cat.svg"
  6988. }
  6989. },
  6990. frontCatAlt: {
  6991. height: math.unit(6, "feet"),
  6992. weight: math.unit(180, "lbs"),
  6993. name: "Front (Alt, Cat)",
  6994. image: {
  6995. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6996. }
  6997. },
  6998. frontWerewolf: {
  6999. height: math.unit(6 * 1.2, "feet"),
  7000. weight: math.unit(225, "lbs"),
  7001. name: "Front (Werewolf)",
  7002. image: {
  7003. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7004. }
  7005. },
  7006. backWerewolf: {
  7007. height: math.unit(6 * 1.2, "feet"),
  7008. weight: math.unit(225, "lbs"),
  7009. name: "Back (Werewolf)",
  7010. image: {
  7011. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7012. }
  7013. },
  7014. },
  7015. [
  7016. {
  7017. name: "Nano",
  7018. height: math.unit(1, "micrometer")
  7019. },
  7020. {
  7021. name: "Micro",
  7022. height: math.unit(1, "inch")
  7023. },
  7024. {
  7025. name: "Normal",
  7026. height: math.unit(6, "feet"),
  7027. default: true
  7028. },
  7029. {
  7030. name: "Macro",
  7031. height: math.unit(60, "feet")
  7032. }
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7037. {
  7038. front: {
  7039. height: math.unit(6, "feet"),
  7040. weight: math.unit(165, "lbs"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/fluoresce/front.svg"
  7044. }
  7045. }
  7046. },
  7047. [
  7048. {
  7049. name: "Micro",
  7050. height: math.unit(6, "cm")
  7051. },
  7052. {
  7053. name: "Normal",
  7054. height: math.unit(5 + 7 / 12, "feet"),
  7055. default: true
  7056. },
  7057. {
  7058. name: "Macro",
  7059. height: math.unit(56, "feet")
  7060. },
  7061. {
  7062. name: "Megamacro",
  7063. height: math.unit(1.9, "miles")
  7064. },
  7065. ]
  7066. ))
  7067. characterMakers.push(() => makeCharacter(
  7068. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7069. {
  7070. front: {
  7071. height: math.unit(9 + 6 / 12, "feet"),
  7072. weight: math.unit(523, "lbs"),
  7073. name: "Side",
  7074. image: {
  7075. source: "./media/characters/aurora/side.svg"
  7076. }
  7077. }
  7078. },
  7079. [
  7080. {
  7081. name: "Normal",
  7082. height: math.unit(9 + 6 / 12, "feet")
  7083. },
  7084. {
  7085. name: "Macro",
  7086. height: math.unit(96, "feet"),
  7087. default: true
  7088. },
  7089. {
  7090. name: "Macro+",
  7091. height: math.unit(243, "feet")
  7092. },
  7093. ]
  7094. ))
  7095. characterMakers.push(() => makeCharacter(
  7096. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7097. {
  7098. front: {
  7099. height: math.unit(194, "cm"),
  7100. weight: math.unit(90, "kg"),
  7101. name: "Front",
  7102. image: {
  7103. source: "./media/characters/ranek/front.svg"
  7104. }
  7105. },
  7106. side: {
  7107. height: math.unit(194, "cm"),
  7108. weight: math.unit(90, "kg"),
  7109. name: "Side",
  7110. image: {
  7111. source: "./media/characters/ranek/side.svg"
  7112. }
  7113. },
  7114. back: {
  7115. height: math.unit(194, "cm"),
  7116. weight: math.unit(90, "kg"),
  7117. name: "Back",
  7118. image: {
  7119. source: "./media/characters/ranek/back.svg"
  7120. }
  7121. },
  7122. feral: {
  7123. height: math.unit(30, "cm"),
  7124. weight: math.unit(1.6, "lbs"),
  7125. name: "Feral",
  7126. image: {
  7127. source: "./media/characters/ranek/feral.svg"
  7128. }
  7129. },
  7130. },
  7131. [
  7132. {
  7133. name: "Normal",
  7134. height: math.unit(194, "cm"),
  7135. default: true
  7136. },
  7137. {
  7138. name: "Macro",
  7139. height: math.unit(100, "meters")
  7140. },
  7141. ]
  7142. ))
  7143. characterMakers.push(() => makeCharacter(
  7144. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7145. {
  7146. front: {
  7147. height: math.unit(5 + 6 / 12, "feet"),
  7148. weight: math.unit(153, "lbs"),
  7149. name: "Front",
  7150. image: {
  7151. source: "./media/characters/andrew-cooper/front.svg"
  7152. }
  7153. },
  7154. },
  7155. [
  7156. {
  7157. name: "Nano",
  7158. height: math.unit(1, "mm")
  7159. },
  7160. {
  7161. name: "Micro",
  7162. height: math.unit(2, "inches")
  7163. },
  7164. {
  7165. name: "Normal",
  7166. height: math.unit(5 + 6 / 12, "feet"),
  7167. default: true
  7168. }
  7169. ]
  7170. ))
  7171. characterMakers.push(() => makeCharacter(
  7172. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7173. {
  7174. front: {
  7175. height: math.unit(6, "feet"),
  7176. weight: math.unit(180, "lbs"),
  7177. name: "Front",
  7178. image: {
  7179. source: "./media/characters/akane-sato/front.svg",
  7180. extra: 1219 / 1140
  7181. }
  7182. },
  7183. back: {
  7184. height: math.unit(6, "feet"),
  7185. weight: math.unit(180, "lbs"),
  7186. name: "Back",
  7187. image: {
  7188. source: "./media/characters/akane-sato/back.svg",
  7189. extra: 1219 / 1170
  7190. }
  7191. },
  7192. },
  7193. [
  7194. {
  7195. name: "Normal",
  7196. height: math.unit(2.5, "meters")
  7197. },
  7198. {
  7199. name: "Macro",
  7200. height: math.unit(250, "meters"),
  7201. default: true
  7202. },
  7203. {
  7204. name: "Megamacro",
  7205. height: math.unit(25, "km")
  7206. },
  7207. ]
  7208. ))
  7209. characterMakers.push(() => makeCharacter(
  7210. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7211. {
  7212. front: {
  7213. height: math.unit(6, "feet"),
  7214. weight: math.unit(65, "kg"),
  7215. name: "Front",
  7216. image: {
  7217. source: "./media/characters/rook/front.svg",
  7218. extra: 960 / 950
  7219. }
  7220. }
  7221. },
  7222. [
  7223. {
  7224. name: "Normal",
  7225. height: math.unit(8.8, "feet")
  7226. },
  7227. {
  7228. name: "Macro",
  7229. height: math.unit(88, "feet"),
  7230. default: true
  7231. },
  7232. {
  7233. name: "Megamacro",
  7234. height: math.unit(8, "miles")
  7235. },
  7236. ]
  7237. ))
  7238. characterMakers.push(() => makeCharacter(
  7239. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7240. {
  7241. front: {
  7242. height: math.unit(12 + 2 / 12, "feet"),
  7243. weight: math.unit(808, "lbs"),
  7244. name: "Front",
  7245. image: {
  7246. source: "./media/characters/prodigy/front.svg"
  7247. }
  7248. }
  7249. },
  7250. [
  7251. {
  7252. name: "Normal",
  7253. height: math.unit(12 + 2 / 12, "feet"),
  7254. default: true
  7255. },
  7256. {
  7257. name: "Macro",
  7258. height: math.unit(143, "feet")
  7259. },
  7260. {
  7261. name: "Macro+",
  7262. height: math.unit(400, "feet")
  7263. },
  7264. ]
  7265. ))
  7266. characterMakers.push(() => makeCharacter(
  7267. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7268. {
  7269. front: {
  7270. height: math.unit(6, "feet"),
  7271. weight: math.unit(225, "lbs"),
  7272. name: "Front",
  7273. image: {
  7274. source: "./media/characters/daniel/front.svg"
  7275. }
  7276. },
  7277. leaning: {
  7278. height: math.unit(6, "feet"),
  7279. weight: math.unit(225, "lbs"),
  7280. name: "Leaning",
  7281. image: {
  7282. source: "./media/characters/daniel/leaning.svg"
  7283. }
  7284. },
  7285. },
  7286. [
  7287. {
  7288. name: "Macro",
  7289. height: math.unit(1000, "feet"),
  7290. default: true
  7291. },
  7292. ]
  7293. ))
  7294. characterMakers.push(() => makeCharacter(
  7295. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7296. {
  7297. front: {
  7298. height: math.unit(6, "feet"),
  7299. weight: math.unit(88, "lbs"),
  7300. name: "Front",
  7301. image: {
  7302. source: "./media/characters/chiros/front.svg",
  7303. extra: 306 / 226
  7304. }
  7305. },
  7306. side: {
  7307. height: math.unit(6, "feet"),
  7308. weight: math.unit(88, "lbs"),
  7309. name: "Side",
  7310. image: {
  7311. source: "./media/characters/chiros/side.svg",
  7312. extra: 306 / 226
  7313. }
  7314. },
  7315. },
  7316. [
  7317. {
  7318. name: "Normal",
  7319. height: math.unit(6, "cm"),
  7320. default: true
  7321. },
  7322. ]
  7323. ))
  7324. characterMakers.push(() => makeCharacter(
  7325. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7326. {
  7327. front: {
  7328. height: math.unit(6, "feet"),
  7329. weight: math.unit(100, "lbs"),
  7330. name: "Front",
  7331. image: {
  7332. source: "./media/characters/selka/front.svg",
  7333. extra: 947 / 887
  7334. }
  7335. }
  7336. },
  7337. [
  7338. {
  7339. name: "Normal",
  7340. height: math.unit(5, "cm"),
  7341. default: true
  7342. },
  7343. ]
  7344. ))
  7345. characterMakers.push(() => makeCharacter(
  7346. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7347. {
  7348. front: {
  7349. height: math.unit(8 + 3 / 12, "feet"),
  7350. weight: math.unit(424, "lbs"),
  7351. name: "Front",
  7352. image: {
  7353. source: "./media/characters/verin/front.svg",
  7354. extra: 1845 / 1550
  7355. }
  7356. },
  7357. frontArmored: {
  7358. height: math.unit(8 + 3 / 12, "feet"),
  7359. weight: math.unit(424, "lbs"),
  7360. name: "Front (Armored)",
  7361. image: {
  7362. source: "./media/characters/verin/front-armor.svg",
  7363. extra: 1845 / 1550,
  7364. bottom: 0.01
  7365. }
  7366. },
  7367. back: {
  7368. height: math.unit(8 + 3 / 12, "feet"),
  7369. weight: math.unit(424, "lbs"),
  7370. name: "Back",
  7371. image: {
  7372. source: "./media/characters/verin/back.svg",
  7373. bottom: 0.1,
  7374. extra: 1
  7375. }
  7376. },
  7377. foot: {
  7378. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7379. name: "Foot",
  7380. image: {
  7381. source: "./media/characters/verin/foot.svg"
  7382. }
  7383. },
  7384. },
  7385. [
  7386. {
  7387. name: "Normal",
  7388. height: math.unit(8 + 3 / 12, "feet")
  7389. },
  7390. {
  7391. name: "Minimacro",
  7392. height: math.unit(21, "feet"),
  7393. default: true
  7394. },
  7395. {
  7396. name: "Macro",
  7397. height: math.unit(626, "feet")
  7398. },
  7399. ]
  7400. ))
  7401. characterMakers.push(() => makeCharacter(
  7402. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7403. {
  7404. front: {
  7405. height: math.unit(2.718, "meters"),
  7406. weight: math.unit(150, "lbs"),
  7407. name: "Front",
  7408. image: {
  7409. source: "./media/characters/sovrim-terraquian/front.svg"
  7410. }
  7411. },
  7412. back: {
  7413. height: math.unit(2.718, "meters"),
  7414. weight: math.unit(150, "lbs"),
  7415. name: "Back",
  7416. image: {
  7417. source: "./media/characters/sovrim-terraquian/back.svg"
  7418. }
  7419. }
  7420. },
  7421. [
  7422. {
  7423. name: "Micro",
  7424. height: math.unit(2, "inches")
  7425. },
  7426. {
  7427. name: "Small",
  7428. height: math.unit(1, "meter")
  7429. },
  7430. {
  7431. name: "Normal",
  7432. height: math.unit(Math.E, "meters"),
  7433. default: true
  7434. },
  7435. {
  7436. name: "Macro",
  7437. height: math.unit(20, "meters")
  7438. },
  7439. {
  7440. name: "Macro+",
  7441. height: math.unit(400, "meters")
  7442. },
  7443. ]
  7444. ))
  7445. characterMakers.push(() => makeCharacter(
  7446. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7447. {
  7448. front: {
  7449. height: math.unit(7, "feet"),
  7450. weight: math.unit(489, "lbs"),
  7451. name: "Front",
  7452. image: {
  7453. source: "./media/characters/reece-silvermane/front.svg",
  7454. bottom: 0.02,
  7455. extra: 1
  7456. }
  7457. },
  7458. },
  7459. [
  7460. {
  7461. name: "Macro",
  7462. height: math.unit(1.5, "miles"),
  7463. default: true
  7464. },
  7465. ]
  7466. ))
  7467. characterMakers.push(() => makeCharacter(
  7468. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7469. {
  7470. front: {
  7471. height: math.unit(6, "feet"),
  7472. weight: math.unit(78, "kg"),
  7473. name: "Front",
  7474. image: {
  7475. source: "./media/characters/kane/front.svg",
  7476. extra: 978 / 899
  7477. }
  7478. },
  7479. },
  7480. [
  7481. {
  7482. name: "Normal",
  7483. height: math.unit(2.1, "m"),
  7484. },
  7485. {
  7486. name: "Macro",
  7487. height: math.unit(1, "km"),
  7488. default: true
  7489. },
  7490. ]
  7491. ))
  7492. characterMakers.push(() => makeCharacter(
  7493. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7494. {
  7495. front: {
  7496. height: math.unit(6, "feet"),
  7497. weight: math.unit(200, "kg"),
  7498. name: "Front",
  7499. image: {
  7500. source: "./media/characters/tegon/front.svg",
  7501. bottom: 0.01,
  7502. extra: 1
  7503. }
  7504. },
  7505. },
  7506. [
  7507. {
  7508. name: "Micro",
  7509. height: math.unit(1, "inch")
  7510. },
  7511. {
  7512. name: "Normal",
  7513. height: math.unit(6 + 3 / 12, "feet"),
  7514. default: true
  7515. },
  7516. {
  7517. name: "Macro",
  7518. height: math.unit(300, "feet")
  7519. },
  7520. {
  7521. name: "Megamacro",
  7522. height: math.unit(69, "miles")
  7523. },
  7524. ]
  7525. ))
  7526. characterMakers.push(() => makeCharacter(
  7527. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7528. {
  7529. side: {
  7530. height: math.unit(6, "feet"),
  7531. weight: math.unit(2304, "lbs"),
  7532. name: "Side",
  7533. image: {
  7534. source: "./media/characters/arcturax/side.svg",
  7535. extra: 790 / 376,
  7536. bottom: 0.01
  7537. }
  7538. },
  7539. },
  7540. [
  7541. {
  7542. name: "Micro",
  7543. height: math.unit(2, "inch")
  7544. },
  7545. {
  7546. name: "Normal",
  7547. height: math.unit(6, "feet")
  7548. },
  7549. {
  7550. name: "Macro",
  7551. height: math.unit(39, "feet"),
  7552. default: true
  7553. },
  7554. {
  7555. name: "Megamacro",
  7556. height: math.unit(7, "miles")
  7557. },
  7558. ]
  7559. ))
  7560. characterMakers.push(() => makeCharacter(
  7561. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7562. {
  7563. front: {
  7564. height: math.unit(6, "feet"),
  7565. weight: math.unit(50, "lbs"),
  7566. name: "Front",
  7567. image: {
  7568. source: "./media/characters/sentri/front.svg",
  7569. extra: 1750 / 1570,
  7570. bottom: 0.025
  7571. }
  7572. },
  7573. frontAlt: {
  7574. height: math.unit(6, "feet"),
  7575. weight: math.unit(50, "lbs"),
  7576. name: "Front (Alt)",
  7577. image: {
  7578. source: "./media/characters/sentri/front-alt.svg",
  7579. extra: 1750 / 1570,
  7580. bottom: 0.025
  7581. }
  7582. },
  7583. },
  7584. [
  7585. {
  7586. name: "Normal",
  7587. height: math.unit(15, "feet"),
  7588. default: true
  7589. },
  7590. {
  7591. name: "Macro",
  7592. height: math.unit(2500, "feet")
  7593. }
  7594. ]
  7595. ))
  7596. characterMakers.push(() => makeCharacter(
  7597. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7598. {
  7599. front: {
  7600. height: math.unit(5 + 8 / 12, "feet"),
  7601. weight: math.unit(130, "lbs"),
  7602. name: "Front",
  7603. image: {
  7604. source: "./media/characters/corvin/front.svg",
  7605. extra: 1803 / 1629
  7606. }
  7607. },
  7608. frontShirt: {
  7609. height: math.unit(5 + 8 / 12, "feet"),
  7610. weight: math.unit(130, "lbs"),
  7611. name: "Front (Shirt)",
  7612. image: {
  7613. source: "./media/characters/corvin/front-shirt.svg",
  7614. extra: 1803 / 1629
  7615. }
  7616. },
  7617. frontPoncho: {
  7618. height: math.unit(5 + 8 / 12, "feet"),
  7619. weight: math.unit(130, "lbs"),
  7620. name: "Front (Poncho)",
  7621. image: {
  7622. source: "./media/characters/corvin/front-poncho.svg",
  7623. extra: 1803 / 1629
  7624. }
  7625. },
  7626. side: {
  7627. height: math.unit(5 + 8 / 12, "feet"),
  7628. weight: math.unit(130, "lbs"),
  7629. name: "Side",
  7630. image: {
  7631. source: "./media/characters/corvin/side.svg",
  7632. extra: 1012 / 945
  7633. }
  7634. },
  7635. back: {
  7636. height: math.unit(5 + 8 / 12, "feet"),
  7637. weight: math.unit(130, "lbs"),
  7638. name: "Back",
  7639. image: {
  7640. source: "./media/characters/corvin/back.svg",
  7641. extra: 1803 / 1629
  7642. }
  7643. },
  7644. },
  7645. [
  7646. {
  7647. name: "Micro",
  7648. height: math.unit(3, "inches")
  7649. },
  7650. {
  7651. name: "Normal",
  7652. height: math.unit(5 + 8 / 12, "feet")
  7653. },
  7654. {
  7655. name: "Macro",
  7656. height: math.unit(300, "feet"),
  7657. default: true
  7658. },
  7659. {
  7660. name: "Megamacro",
  7661. height: math.unit(500, "miles")
  7662. }
  7663. ]
  7664. ))
  7665. characterMakers.push(() => makeCharacter(
  7666. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7667. {
  7668. front: {
  7669. height: math.unit(6, "feet"),
  7670. weight: math.unit(135, "lbs"),
  7671. name: "Front",
  7672. image: {
  7673. source: "./media/characters/q/front.svg",
  7674. extra: 854 / 752,
  7675. bottom: 0.005
  7676. }
  7677. },
  7678. back: {
  7679. height: math.unit(6, "feet"),
  7680. weight: math.unit(130, "lbs"),
  7681. name: "Back",
  7682. image: {
  7683. source: "./media/characters/q/back.svg",
  7684. extra: 854 / 752
  7685. }
  7686. },
  7687. },
  7688. [
  7689. {
  7690. name: "Macro",
  7691. height: math.unit(90, "feet"),
  7692. default: true
  7693. },
  7694. {
  7695. name: "Extra Macro",
  7696. height: math.unit(300, "feet"),
  7697. },
  7698. {
  7699. name: "BIG WALF",
  7700. height: math.unit(750, "feet"),
  7701. },
  7702. ]
  7703. ))
  7704. characterMakers.push(() => makeCharacter(
  7705. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7706. {
  7707. front: {
  7708. height: math.unit(6, "feet"),
  7709. weight: math.unit(150, "lbs"),
  7710. name: "Front",
  7711. image: {
  7712. source: "./media/characters/carley/front.svg",
  7713. extra: 3927 / 3540,
  7714. bottom: 29.2 / 735
  7715. }
  7716. }
  7717. },
  7718. [
  7719. {
  7720. name: "Normal",
  7721. height: math.unit(6 + 3 / 12, "feet")
  7722. },
  7723. {
  7724. name: "Macro",
  7725. height: math.unit(185, "feet"),
  7726. default: true
  7727. },
  7728. {
  7729. name: "Megamacro",
  7730. height: math.unit(8, "miles"),
  7731. },
  7732. ]
  7733. ))
  7734. characterMakers.push(() => makeCharacter(
  7735. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7736. {
  7737. front: {
  7738. height: math.unit(3, "feet"),
  7739. weight: math.unit(28, "lbs"),
  7740. name: "Front",
  7741. image: {
  7742. source: "./media/characters/citrine/front.svg"
  7743. }
  7744. }
  7745. },
  7746. [
  7747. {
  7748. name: "Normal",
  7749. height: math.unit(3, "feet"),
  7750. default: true
  7751. }
  7752. ]
  7753. ))
  7754. characterMakers.push(() => makeCharacter(
  7755. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7756. {
  7757. front: {
  7758. height: math.unit(14, "feet"),
  7759. weight: math.unit(1450, "kg"),
  7760. capacity: math.unit(15, "people"),
  7761. name: "Front",
  7762. image: {
  7763. source: "./media/characters/aura-starwind/front.svg",
  7764. extra: 1455 / 1335
  7765. }
  7766. },
  7767. side: {
  7768. height: math.unit(14, "feet"),
  7769. weight: math.unit(1450, "kg"),
  7770. capacity: math.unit(15, "people"),
  7771. name: "Side",
  7772. image: {
  7773. source: "./media/characters/aura-starwind/side.svg",
  7774. extra: 1654 / 1497
  7775. }
  7776. },
  7777. taur: {
  7778. height: math.unit(18, "feet"),
  7779. weight: math.unit(5500, "kg"),
  7780. capacity: math.unit(50, "people"),
  7781. name: "Taur",
  7782. image: {
  7783. source: "./media/characters/aura-starwind/taur.svg",
  7784. extra: 1760 / 1650
  7785. }
  7786. },
  7787. feral: {
  7788. height: math.unit(46, "feet"),
  7789. weight: math.unit(25000, "kg"),
  7790. capacity: math.unit(120, "people"),
  7791. name: "Feral",
  7792. image: {
  7793. source: "./media/characters/aura-starwind/feral.svg"
  7794. }
  7795. },
  7796. },
  7797. [
  7798. {
  7799. name: "Normal",
  7800. height: math.unit(14, "feet"),
  7801. default: true
  7802. },
  7803. {
  7804. name: "Macro",
  7805. height: math.unit(50, "meters")
  7806. },
  7807. {
  7808. name: "Megamacro",
  7809. height: math.unit(5000, "meters")
  7810. },
  7811. {
  7812. name: "Gigamacro",
  7813. height: math.unit(100000, "kilometers")
  7814. },
  7815. ]
  7816. ))
  7817. characterMakers.push(() => makeCharacter(
  7818. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7819. {
  7820. front: {
  7821. height: math.unit(2 + 7 / 12, "feet"),
  7822. weight: math.unit(32, "lbs"),
  7823. name: "Front",
  7824. image: {
  7825. source: "./media/characters/rivet/front.svg",
  7826. extra: 1716 / 1658,
  7827. bottom: 0.03
  7828. }
  7829. },
  7830. foot: {
  7831. height: math.unit(0.551, "feet"),
  7832. name: "Rivet's Foot",
  7833. image: {
  7834. source: "./media/characters/rivet/foot.svg"
  7835. },
  7836. rename: true
  7837. }
  7838. },
  7839. [
  7840. {
  7841. name: "Micro",
  7842. height: math.unit(1.5, "inches"),
  7843. },
  7844. {
  7845. name: "Normal",
  7846. height: math.unit(2 + 7 / 12, "feet"),
  7847. default: true
  7848. },
  7849. {
  7850. name: "Macro",
  7851. height: math.unit(85, "feet")
  7852. },
  7853. {
  7854. name: "Megamacro",
  7855. height: math.unit(2.2, "km")
  7856. }
  7857. ]
  7858. ))
  7859. characterMakers.push(() => makeCharacter(
  7860. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7861. {
  7862. front: {
  7863. height: math.unit(5 + 9 / 12, "feet"),
  7864. weight: math.unit(150, "lbs"),
  7865. name: "Front",
  7866. image: {
  7867. source: "./media/characters/coffee/front.svg",
  7868. extra: 3666 / 3032,
  7869. bottom: 0.04
  7870. }
  7871. },
  7872. foot: {
  7873. height: math.unit(1.29, "feet"),
  7874. name: "Foot",
  7875. image: {
  7876. source: "./media/characters/coffee/foot.svg"
  7877. }
  7878. },
  7879. },
  7880. [
  7881. {
  7882. name: "Micro",
  7883. height: math.unit(2, "inches"),
  7884. },
  7885. {
  7886. name: "Normal",
  7887. height: math.unit(5 + 9 / 12, "feet"),
  7888. default: true
  7889. },
  7890. {
  7891. name: "Macro",
  7892. height: math.unit(800, "feet")
  7893. },
  7894. {
  7895. name: "Megamacro",
  7896. height: math.unit(25, "miles")
  7897. }
  7898. ]
  7899. ))
  7900. characterMakers.push(() => makeCharacter(
  7901. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7902. {
  7903. front: {
  7904. height: math.unit(6, "feet"),
  7905. weight: math.unit(200, "lbs"),
  7906. name: "Front",
  7907. image: {
  7908. source: "./media/characters/chari-gal/front.svg",
  7909. extra: 1568 / 1385,
  7910. bottom: 0.047
  7911. }
  7912. },
  7913. gigantamax: {
  7914. height: math.unit(6 * 16, "feet"),
  7915. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7916. name: "Gigantamax",
  7917. image: {
  7918. source: "./media/characters/chari-gal/gigantamax.svg",
  7919. extra: 1124 / 888,
  7920. bottom: 0.03
  7921. }
  7922. },
  7923. },
  7924. [
  7925. {
  7926. name: "Normal",
  7927. height: math.unit(5 + 7 / 12, "feet")
  7928. },
  7929. {
  7930. name: "Macro",
  7931. height: math.unit(200, "feet"),
  7932. default: true
  7933. }
  7934. ]
  7935. ))
  7936. characterMakers.push(() => makeCharacter(
  7937. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7938. {
  7939. front: {
  7940. height: math.unit(6, "feet"),
  7941. weight: math.unit(150, "lbs"),
  7942. name: "Front",
  7943. image: {
  7944. source: "./media/characters/nova/front.svg",
  7945. extra: 5000 / 4722,
  7946. bottom: 0.02
  7947. }
  7948. }
  7949. },
  7950. [
  7951. {
  7952. name: "Micro-",
  7953. height: math.unit(0.8, "inches")
  7954. },
  7955. {
  7956. name: "Micro",
  7957. height: math.unit(2, "inches"),
  7958. default: true
  7959. },
  7960. ]
  7961. ))
  7962. characterMakers.push(() => makeCharacter(
  7963. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7964. {
  7965. front: {
  7966. height: math.unit(3 + 1 / 12, "feet"),
  7967. weight: math.unit(21.7, "lbs"),
  7968. name: "Front",
  7969. image: {
  7970. source: "./media/characters/argent/front.svg",
  7971. extra: 1471 / 1331,
  7972. bottom: 100.8 / 1575.5
  7973. }
  7974. }
  7975. },
  7976. [
  7977. {
  7978. name: "Micro",
  7979. height: math.unit(2, "inches")
  7980. },
  7981. {
  7982. name: "Normal",
  7983. height: math.unit(3 + 1 / 12, "feet"),
  7984. default: true
  7985. },
  7986. {
  7987. name: "Macro",
  7988. height: math.unit(120, "feet")
  7989. },
  7990. ]
  7991. ))
  7992. characterMakers.push(() => makeCharacter(
  7993. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7994. {
  7995. lamp: {
  7996. height: math.unit(7 * 1559 / 989, "feet"),
  7997. name: "Magic Lamp",
  7998. image: {
  7999. source: "./media/characters/mira-al-cul/lamp.svg",
  8000. extra: 1617 / 1559
  8001. }
  8002. },
  8003. front: {
  8004. height: math.unit(7, "feet"),
  8005. name: "Front",
  8006. image: {
  8007. source: "./media/characters/mira-al-cul/front.svg",
  8008. extra: 1044 / 990
  8009. }
  8010. },
  8011. },
  8012. [
  8013. {
  8014. name: "Heavily Restricted",
  8015. height: math.unit(7 * 1559 / 989, "feet")
  8016. },
  8017. {
  8018. name: "Freshly Freed",
  8019. height: math.unit(50 * 1559 / 989, "feet")
  8020. },
  8021. {
  8022. name: "World Encompassing",
  8023. height: math.unit(10000 * 1559 / 989, "miles")
  8024. },
  8025. {
  8026. name: "Galactic",
  8027. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8028. },
  8029. {
  8030. name: "Palmed Universe",
  8031. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8032. default: true
  8033. },
  8034. {
  8035. name: "Multiversal Matriarch",
  8036. height: math.unit(8.87e10, "yottameters")
  8037. },
  8038. {
  8039. name: "Void Mother",
  8040. height: math.unit(3.14e110, "yottaparsecs")
  8041. },
  8042. {
  8043. name: "Toying with Transcendence",
  8044. height: math.unit(1e307, "meters")
  8045. },
  8046. ]
  8047. ))
  8048. characterMakers.push(() => makeCharacter(
  8049. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8050. {
  8051. front: {
  8052. height: math.unit(17 + 1 / 12, "feet"),
  8053. weight: math.unit(476.2 * 5, "lbs"),
  8054. name: "Front",
  8055. image: {
  8056. source: "./media/characters/kuro-shi-uchū/front.svg",
  8057. extra: 2329 / 1835,
  8058. bottom: 0.02
  8059. }
  8060. },
  8061. },
  8062. [
  8063. {
  8064. name: "Micro",
  8065. height: math.unit(2, "inches")
  8066. },
  8067. {
  8068. name: "Normal",
  8069. height: math.unit(12, "meters")
  8070. },
  8071. {
  8072. name: "Planetary",
  8073. height: math.unit(0.00929, "AU"),
  8074. default: true
  8075. },
  8076. {
  8077. name: "Universal",
  8078. height: math.unit(20, "gigaparsecs")
  8079. },
  8080. ]
  8081. ))
  8082. characterMakers.push(() => makeCharacter(
  8083. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8084. {
  8085. front: {
  8086. height: math.unit(5 + 2 / 12, "feet"),
  8087. weight: math.unit(120, "lbs"),
  8088. name: "Front",
  8089. image: {
  8090. source: "./media/characters/katherine/front.svg",
  8091. extra: 2075 / 1969
  8092. }
  8093. },
  8094. dress: {
  8095. height: math.unit(5 + 2 / 12, "feet"),
  8096. weight: math.unit(120, "lbs"),
  8097. name: "Dress",
  8098. image: {
  8099. source: "./media/characters/katherine/dress.svg",
  8100. extra: 2258 / 2064
  8101. }
  8102. },
  8103. },
  8104. [
  8105. {
  8106. name: "Micro",
  8107. height: math.unit(1, "inches"),
  8108. default: true
  8109. },
  8110. {
  8111. name: "Normal",
  8112. height: math.unit(5 + 2 / 12, "feet")
  8113. },
  8114. {
  8115. name: "Macro",
  8116. height: math.unit(100, "meters")
  8117. },
  8118. {
  8119. name: "Megamacro",
  8120. height: math.unit(80, "miles")
  8121. },
  8122. ]
  8123. ))
  8124. characterMakers.push(() => makeCharacter(
  8125. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8126. {
  8127. front: {
  8128. height: math.unit(7 + 8 / 12, "feet"),
  8129. weight: math.unit(250, "lbs"),
  8130. name: "Front",
  8131. image: {
  8132. source: "./media/characters/yevis/front.svg",
  8133. extra: 1938 / 1755
  8134. }
  8135. }
  8136. },
  8137. [
  8138. {
  8139. name: "Mortal",
  8140. height: math.unit(7 + 8 / 12, "feet")
  8141. },
  8142. {
  8143. name: "Battle",
  8144. height: math.unit(25 + 11 / 12, "feet")
  8145. },
  8146. {
  8147. name: "Wrath",
  8148. height: math.unit(1654 + 11 / 12, "feet")
  8149. },
  8150. {
  8151. name: "Planet Destroyer",
  8152. height: math.unit(12000, "miles")
  8153. },
  8154. {
  8155. name: "Galaxy Conqueror",
  8156. height: math.unit(1.45, "zettameters"),
  8157. default: true
  8158. },
  8159. {
  8160. name: "Universal War",
  8161. height: math.unit(184, "gigaparsecs")
  8162. },
  8163. {
  8164. name: "Eternity War",
  8165. height: math.unit(1.98e55, "yottaparsecs")
  8166. },
  8167. ]
  8168. ))
  8169. characterMakers.push(() => makeCharacter(
  8170. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8171. {
  8172. front: {
  8173. height: math.unit(5 + 8 / 12, "feet"),
  8174. weight: math.unit(63, "kg"),
  8175. name: "Front",
  8176. image: {
  8177. source: "./media/characters/xavier/front.svg",
  8178. extra: 944 / 883
  8179. }
  8180. },
  8181. frontStretch: {
  8182. height: math.unit(5 + 8 / 12, "feet"),
  8183. weight: math.unit(63, "kg"),
  8184. name: "Stretching",
  8185. image: {
  8186. source: "./media/characters/xavier/front-stretch.svg",
  8187. extra: 962 / 820
  8188. }
  8189. },
  8190. },
  8191. [
  8192. {
  8193. name: "Normal",
  8194. height: math.unit(5 + 8 / 12, "feet")
  8195. },
  8196. {
  8197. name: "Macro",
  8198. height: math.unit(100, "meters"),
  8199. default: true
  8200. },
  8201. {
  8202. name: "McLargeHuge",
  8203. height: math.unit(10, "miles")
  8204. },
  8205. ]
  8206. ))
  8207. characterMakers.push(() => makeCharacter(
  8208. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8209. {
  8210. front: {
  8211. height: math.unit(5 + 5 / 12, "feet"),
  8212. weight: math.unit(150, "lb"),
  8213. name: "Front",
  8214. image: {
  8215. source: "./media/characters/joshii/front.svg",
  8216. extra: 765 / 653,
  8217. bottom: 51 / 816
  8218. }
  8219. },
  8220. foot: {
  8221. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8222. name: "Foot",
  8223. image: {
  8224. source: "./media/characters/joshii/foot.svg"
  8225. }
  8226. },
  8227. },
  8228. [
  8229. {
  8230. name: "Micro",
  8231. height: math.unit(2, "inches"),
  8232. default: true
  8233. },
  8234. {
  8235. name: "Normal",
  8236. height: math.unit(5 + 5 / 12, "feet")
  8237. },
  8238. {
  8239. name: "Macro",
  8240. height: math.unit(785, "feet")
  8241. },
  8242. {
  8243. name: "Megamacro",
  8244. height: math.unit(24.5, "miles")
  8245. },
  8246. ]
  8247. ))
  8248. characterMakers.push(() => makeCharacter(
  8249. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8250. {
  8251. front: {
  8252. height: math.unit(6, "feet"),
  8253. weight: math.unit(150, "lb"),
  8254. name: "Front",
  8255. image: {
  8256. source: "./media/characters/goddess-elizabeth/front.svg",
  8257. extra: 1800 / 1525,
  8258. bottom: 0.005
  8259. }
  8260. },
  8261. foot: {
  8262. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8263. name: "Foot",
  8264. image: {
  8265. source: "./media/characters/goddess-elizabeth/foot.svg"
  8266. }
  8267. },
  8268. mouth: {
  8269. height: math.unit(6, "feet"),
  8270. name: "Mouth",
  8271. image: {
  8272. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8273. }
  8274. },
  8275. },
  8276. [
  8277. {
  8278. name: "Micro",
  8279. height: math.unit(12, "feet")
  8280. },
  8281. {
  8282. name: "Normal",
  8283. height: math.unit(80, "miles"),
  8284. default: true
  8285. },
  8286. {
  8287. name: "Macro",
  8288. height: math.unit(15000, "parsecs")
  8289. },
  8290. ]
  8291. ))
  8292. characterMakers.push(() => makeCharacter(
  8293. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8294. {
  8295. front: {
  8296. height: math.unit(5 + 9 / 12, "feet"),
  8297. weight: math.unit(144, "lb"),
  8298. name: "Front",
  8299. image: {
  8300. source: "./media/characters/kara/front.svg"
  8301. }
  8302. },
  8303. feet: {
  8304. height: math.unit(6 / 6.765, "feet"),
  8305. name: "Kara's Feet",
  8306. rename: true,
  8307. image: {
  8308. source: "./media/characters/kara/feet.svg"
  8309. }
  8310. },
  8311. },
  8312. [
  8313. {
  8314. name: "Normal",
  8315. height: math.unit(5 + 9 / 12, "feet")
  8316. },
  8317. {
  8318. name: "Macro",
  8319. height: math.unit(174, "feet"),
  8320. default: true
  8321. },
  8322. ]
  8323. ))
  8324. characterMakers.push(() => makeCharacter(
  8325. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8326. {
  8327. front: {
  8328. height: math.unit(18, "feet"),
  8329. weight: math.unit(4050, "lb"),
  8330. name: "Front",
  8331. image: {
  8332. source: "./media/characters/tyrone/front.svg",
  8333. extra: 2405 / 2270,
  8334. bottom: 182 / 2587
  8335. }
  8336. },
  8337. },
  8338. [
  8339. {
  8340. name: "Normal",
  8341. height: math.unit(18, "feet"),
  8342. default: true
  8343. },
  8344. {
  8345. name: "Macro",
  8346. height: math.unit(300, "feet")
  8347. },
  8348. {
  8349. name: "Megamacro",
  8350. height: math.unit(15, "km")
  8351. },
  8352. {
  8353. name: "Gigamacro",
  8354. height: math.unit(500, "km")
  8355. },
  8356. {
  8357. name: "Teramacro",
  8358. height: math.unit(0.5, "gigameters")
  8359. },
  8360. {
  8361. name: "Omnimacro",
  8362. height: math.unit(1e252, "yottauniverse")
  8363. },
  8364. ]
  8365. ))
  8366. characterMakers.push(() => makeCharacter(
  8367. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8368. {
  8369. front: {
  8370. height: math.unit(7 + 8 / 12, "feet"),
  8371. weight: math.unit(120, "lb"),
  8372. name: "Front",
  8373. image: {
  8374. source: "./media/characters/danny/front.svg",
  8375. extra: 1490 / 1350
  8376. }
  8377. },
  8378. back: {
  8379. height: math.unit(7 + 8 / 12, "feet"),
  8380. weight: math.unit(120, "lb"),
  8381. name: "Back",
  8382. image: {
  8383. source: "./media/characters/danny/back.svg",
  8384. extra: 1490 / 1350
  8385. }
  8386. },
  8387. },
  8388. [
  8389. {
  8390. name: "Normal",
  8391. height: math.unit(7 + 8 / 12, "feet"),
  8392. default: true
  8393. },
  8394. ]
  8395. ))
  8396. characterMakers.push(() => makeCharacter(
  8397. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8398. {
  8399. front: {
  8400. height: math.unit(3.5, "inches"),
  8401. weight: math.unit(19, "grams"),
  8402. name: "Front",
  8403. image: {
  8404. source: "./media/characters/mallow/front.svg",
  8405. extra: 471 / 431
  8406. }
  8407. },
  8408. back: {
  8409. height: math.unit(3.5, "inches"),
  8410. weight: math.unit(19, "grams"),
  8411. name: "Back",
  8412. image: {
  8413. source: "./media/characters/mallow/back.svg",
  8414. extra: 471 / 431
  8415. }
  8416. },
  8417. },
  8418. [
  8419. {
  8420. name: "Normal",
  8421. height: math.unit(3.5, "inches"),
  8422. default: true
  8423. },
  8424. ]
  8425. ))
  8426. characterMakers.push(() => makeCharacter(
  8427. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8428. {
  8429. front: {
  8430. height: math.unit(9, "feet"),
  8431. weight: math.unit(230, "kg"),
  8432. name: "Front",
  8433. image: {
  8434. source: "./media/characters/starry-aqua/front.svg"
  8435. }
  8436. },
  8437. back: {
  8438. height: math.unit(9, "feet"),
  8439. weight: math.unit(230, "kg"),
  8440. name: "Back",
  8441. image: {
  8442. source: "./media/characters/starry-aqua/back.svg"
  8443. }
  8444. },
  8445. hand: {
  8446. height: math.unit(9 * 0.1168, "feet"),
  8447. name: "Hand",
  8448. image: {
  8449. source: "./media/characters/starry-aqua/hand.svg"
  8450. }
  8451. },
  8452. foot: {
  8453. height: math.unit(9 * 0.18, "feet"),
  8454. name: "Foot",
  8455. image: {
  8456. source: "./media/characters/starry-aqua/foot.svg"
  8457. }
  8458. }
  8459. },
  8460. [
  8461. {
  8462. name: "Micro",
  8463. height: math.unit(3, "inches")
  8464. },
  8465. {
  8466. name: "Normal",
  8467. height: math.unit(9, "feet")
  8468. },
  8469. {
  8470. name: "Macro",
  8471. height: math.unit(300, "feet"),
  8472. default: true
  8473. },
  8474. {
  8475. name: "Megamacro",
  8476. height: math.unit(3200, "feet")
  8477. }
  8478. ]
  8479. ))
  8480. characterMakers.push(() => makeCharacter(
  8481. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8482. {
  8483. front: {
  8484. height: math.unit(6, "feet"),
  8485. weight: math.unit(230, "lb"),
  8486. name: "Front",
  8487. image: {
  8488. source: "./media/characters/luka/front.svg",
  8489. extra: 1,
  8490. bottom: 0.025
  8491. }
  8492. },
  8493. },
  8494. [
  8495. {
  8496. name: "Normal",
  8497. height: math.unit(12 + 8 / 12, "feet"),
  8498. default: true
  8499. },
  8500. {
  8501. name: "Minimacro",
  8502. height: math.unit(20, "feet")
  8503. },
  8504. {
  8505. name: "Macro",
  8506. height: math.unit(250, "feet")
  8507. },
  8508. {
  8509. name: "Megamacro",
  8510. height: math.unit(5, "miles")
  8511. },
  8512. {
  8513. name: "Gigamacro",
  8514. height: math.unit(8000, "miles")
  8515. },
  8516. ]
  8517. ))
  8518. characterMakers.push(() => makeCharacter(
  8519. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8520. {
  8521. front: {
  8522. height: math.unit(6, "feet"),
  8523. weight: math.unit(150, "lb"),
  8524. name: "Front",
  8525. image: {
  8526. source: "./media/characters/natalie-nightring/front.svg",
  8527. extra: 1,
  8528. bottom: 0.06
  8529. }
  8530. },
  8531. },
  8532. [
  8533. {
  8534. name: "Uh Oh",
  8535. height: math.unit(0.1, "mm")
  8536. },
  8537. {
  8538. name: "Small",
  8539. height: math.unit(3, "inches")
  8540. },
  8541. {
  8542. name: "Human Scale",
  8543. height: math.unit(6, "feet")
  8544. },
  8545. {
  8546. name: "Librarian",
  8547. height: math.unit(50, "feet"),
  8548. default: true
  8549. },
  8550. {
  8551. name: "Immense",
  8552. height: math.unit(200, "miles")
  8553. },
  8554. ]
  8555. ))
  8556. characterMakers.push(() => makeCharacter(
  8557. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8558. {
  8559. front: {
  8560. height: math.unit(6, "feet"),
  8561. weight: math.unit(180, "lbs"),
  8562. name: "Front",
  8563. image: {
  8564. source: "./media/characters/danni-rosie/front.svg",
  8565. extra: 1260 / 1128,
  8566. bottom: 0.022
  8567. }
  8568. },
  8569. },
  8570. [
  8571. {
  8572. name: "Micro",
  8573. height: math.unit(2, "inches"),
  8574. default: true
  8575. },
  8576. ]
  8577. ))
  8578. characterMakers.push(() => makeCharacter(
  8579. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8580. {
  8581. front: {
  8582. height: math.unit(5 + 9 / 12, "feet"),
  8583. weight: math.unit(220, "lb"),
  8584. name: "Front",
  8585. image: {
  8586. source: "./media/characters/samantha-kruse/front.svg",
  8587. extra: (985 / 935),
  8588. bottom: 0.03
  8589. }
  8590. },
  8591. frontUndressed: {
  8592. height: math.unit(5 + 9 / 12, "feet"),
  8593. weight: math.unit(220, "lb"),
  8594. name: "Front (Undressed)",
  8595. image: {
  8596. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8597. extra: (973 / 923),
  8598. bottom: 0.025
  8599. }
  8600. },
  8601. fat: {
  8602. height: math.unit(5 + 9 / 12, "feet"),
  8603. weight: math.unit(900, "lb"),
  8604. name: "Front (Fat)",
  8605. image: {
  8606. source: "./media/characters/samantha-kruse/fat.svg",
  8607. extra: 2688 / 2561
  8608. }
  8609. },
  8610. },
  8611. [
  8612. {
  8613. name: "Normal",
  8614. height: math.unit(5 + 9 / 12, "feet"),
  8615. default: true
  8616. }
  8617. ]
  8618. ))
  8619. characterMakers.push(() => makeCharacter(
  8620. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8621. {
  8622. back: {
  8623. height: math.unit(5 + 4 / 12, "feet"),
  8624. weight: math.unit(4963, "lb"),
  8625. name: "Back",
  8626. image: {
  8627. source: "./media/characters/amelia-rosie/back.svg",
  8628. extra: 1113 / 963,
  8629. bottom: 0.01
  8630. }
  8631. },
  8632. },
  8633. [
  8634. {
  8635. name: "Level 0",
  8636. height: math.unit(5 + 4 / 12, "feet")
  8637. },
  8638. {
  8639. name: "Level 1",
  8640. height: math.unit(164597, "feet"),
  8641. default: true
  8642. },
  8643. {
  8644. name: "Level 2",
  8645. height: math.unit(956243, "miles")
  8646. },
  8647. {
  8648. name: "Level 3",
  8649. height: math.unit(29421709423, "miles")
  8650. },
  8651. {
  8652. name: "Level 4",
  8653. height: math.unit(154, "lightyears")
  8654. },
  8655. {
  8656. name: "Level 5",
  8657. height: math.unit(4738272, "lightyears")
  8658. },
  8659. {
  8660. name: "Level 6",
  8661. height: math.unit(145787152896, "lightyears")
  8662. },
  8663. ]
  8664. ))
  8665. characterMakers.push(() => makeCharacter(
  8666. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8667. {
  8668. front: {
  8669. height: math.unit(5 + 11 / 12, "feet"),
  8670. weight: math.unit(65, "kg"),
  8671. name: "Front",
  8672. image: {
  8673. source: "./media/characters/rook-kitara/front.svg",
  8674. extra: 1347 / 1274,
  8675. bottom: 0.005
  8676. }
  8677. },
  8678. },
  8679. [
  8680. {
  8681. name: "Totally Unfair",
  8682. height: math.unit(1.8, "mm")
  8683. },
  8684. {
  8685. name: "Lap Rookie",
  8686. height: math.unit(1.4, "feet")
  8687. },
  8688. {
  8689. name: "Normal",
  8690. height: math.unit(5 + 11 / 12, "feet"),
  8691. default: true
  8692. },
  8693. {
  8694. name: "How Did This Happen",
  8695. height: math.unit(80, "miles")
  8696. }
  8697. ]
  8698. ))
  8699. characterMakers.push(() => makeCharacter(
  8700. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8701. {
  8702. front: {
  8703. height: math.unit(7, "feet"),
  8704. weight: math.unit(300, "lb"),
  8705. name: "Front",
  8706. image: {
  8707. source: "./media/characters/pisces/front.svg",
  8708. extra: 2255 / 2115,
  8709. bottom: 0.03
  8710. }
  8711. },
  8712. back: {
  8713. height: math.unit(7, "feet"),
  8714. weight: math.unit(300, "lb"),
  8715. name: "Back",
  8716. image: {
  8717. source: "./media/characters/pisces/back.svg",
  8718. extra: 2146 / 2055,
  8719. bottom: 0.04
  8720. }
  8721. },
  8722. },
  8723. [
  8724. {
  8725. name: "Normal",
  8726. height: math.unit(7, "feet"),
  8727. default: true
  8728. },
  8729. {
  8730. name: "Swimming Pool",
  8731. height: math.unit(12.2, "meters")
  8732. },
  8733. {
  8734. name: "Olympic Swimming Pool",
  8735. height: math.unit(56.3, "meters")
  8736. },
  8737. {
  8738. name: "Lake Superior",
  8739. height: math.unit(93900, "meters")
  8740. },
  8741. {
  8742. name: "Mediterranean Sea",
  8743. height: math.unit(644457, "meters")
  8744. },
  8745. {
  8746. name: "World's Oceans",
  8747. height: math.unit(4567491, "meters")
  8748. },
  8749. ]
  8750. ))
  8751. characterMakers.push(() => makeCharacter(
  8752. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8753. {
  8754. front: {
  8755. height: math.unit(2.3, "meters"),
  8756. weight: math.unit(120, "kg"),
  8757. name: "Front",
  8758. image: {
  8759. source: "./media/characters/zelas/front.svg"
  8760. }
  8761. },
  8762. side: {
  8763. height: math.unit(2.3, "meters"),
  8764. weight: math.unit(120, "kg"),
  8765. name: "Side",
  8766. image: {
  8767. source: "./media/characters/zelas/side.svg"
  8768. }
  8769. },
  8770. back: {
  8771. height: math.unit(2.3, "meters"),
  8772. weight: math.unit(120, "kg"),
  8773. name: "Back",
  8774. image: {
  8775. source: "./media/characters/zelas/back.svg"
  8776. }
  8777. },
  8778. foot: {
  8779. height: math.unit(1.116, "feet"),
  8780. name: "Foot",
  8781. image: {
  8782. source: "./media/characters/zelas/foot.svg"
  8783. }
  8784. },
  8785. },
  8786. [
  8787. {
  8788. name: "Normal",
  8789. height: math.unit(2.3, "meters")
  8790. },
  8791. {
  8792. name: "Macro",
  8793. height: math.unit(30, "meters"),
  8794. default: true
  8795. },
  8796. ]
  8797. ))
  8798. characterMakers.push(() => makeCharacter(
  8799. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8800. {
  8801. front: {
  8802. height: math.unit(1, "inch"),
  8803. weight: math.unit(0.21, "grams"),
  8804. name: "Front",
  8805. image: {
  8806. source: "./media/characters/talbot/front.svg",
  8807. extra: 594 / 544
  8808. }
  8809. },
  8810. },
  8811. [
  8812. {
  8813. name: "Micro",
  8814. height: math.unit(1, "inch"),
  8815. default: true
  8816. },
  8817. ]
  8818. ))
  8819. characterMakers.push(() => makeCharacter(
  8820. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8821. {
  8822. front: {
  8823. height: math.unit(3 + 3 / 12, "feet"),
  8824. weight: math.unit(51.8, "lb"),
  8825. name: "Front",
  8826. image: {
  8827. source: "./media/characters/fliss/front.svg",
  8828. extra: 840 / 640
  8829. }
  8830. },
  8831. },
  8832. [
  8833. {
  8834. name: "Teeny Tiny",
  8835. height: math.unit(1, "mm")
  8836. },
  8837. {
  8838. name: "Small",
  8839. height: math.unit(1, "inch"),
  8840. default: true
  8841. },
  8842. {
  8843. name: "Standard Sylveon",
  8844. height: math.unit(3 + 3 / 12, "feet")
  8845. },
  8846. {
  8847. name: "Large Nuisance",
  8848. height: math.unit(33, "feet")
  8849. },
  8850. {
  8851. name: "City Filler",
  8852. height: math.unit(3000, "feet")
  8853. },
  8854. {
  8855. name: "New Horizon",
  8856. height: math.unit(6000, "miles")
  8857. },
  8858. ]
  8859. ))
  8860. characterMakers.push(() => makeCharacter(
  8861. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8862. {
  8863. front: {
  8864. height: math.unit(5, "cm"),
  8865. weight: math.unit(1.94, "g"),
  8866. name: "Front",
  8867. image: {
  8868. source: "./media/characters/fleta/front.svg",
  8869. extra: 835 / 803
  8870. }
  8871. },
  8872. back: {
  8873. height: math.unit(5, "cm"),
  8874. weight: math.unit(1.94, "g"),
  8875. name: "Back",
  8876. image: {
  8877. source: "./media/characters/fleta/back.svg",
  8878. extra: 835 / 803
  8879. }
  8880. },
  8881. },
  8882. [
  8883. {
  8884. name: "Micro",
  8885. height: math.unit(5, "cm"),
  8886. default: true
  8887. },
  8888. ]
  8889. ))
  8890. characterMakers.push(() => makeCharacter(
  8891. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8892. {
  8893. front: {
  8894. height: math.unit(6, "feet"),
  8895. weight: math.unit(225, "lb"),
  8896. name: "Front",
  8897. image: {
  8898. source: "./media/characters/dominic/front.svg",
  8899. extra: 1770 / 1620,
  8900. bottom: 0.025
  8901. }
  8902. },
  8903. back: {
  8904. height: math.unit(6, "feet"),
  8905. weight: math.unit(225, "lb"),
  8906. name: "Back",
  8907. image: {
  8908. source: "./media/characters/dominic/back.svg",
  8909. extra: 1745 / 1620,
  8910. bottom: 0.065
  8911. }
  8912. },
  8913. },
  8914. [
  8915. {
  8916. name: "Nano",
  8917. height: math.unit(0.1, "mm")
  8918. },
  8919. {
  8920. name: "Micro-",
  8921. height: math.unit(1, "mm")
  8922. },
  8923. {
  8924. name: "Micro",
  8925. height: math.unit(4, "inches")
  8926. },
  8927. {
  8928. name: "Normal",
  8929. height: math.unit(6 + 4 / 12, "feet"),
  8930. default: true
  8931. },
  8932. {
  8933. name: "Macro",
  8934. height: math.unit(115, "feet")
  8935. },
  8936. {
  8937. name: "Macro+",
  8938. height: math.unit(955, "feet")
  8939. },
  8940. {
  8941. name: "Megamacro",
  8942. height: math.unit(8990, "feet")
  8943. },
  8944. {
  8945. name: "Gigmacro",
  8946. height: math.unit(9310, "miles")
  8947. },
  8948. {
  8949. name: "Teramacro",
  8950. height: math.unit(1567005010, "miles")
  8951. },
  8952. {
  8953. name: "Examacro",
  8954. height: math.unit(1425, "parsecs")
  8955. },
  8956. ]
  8957. ))
  8958. characterMakers.push(() => makeCharacter(
  8959. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8960. {
  8961. front: {
  8962. height: math.unit(400, "feet"),
  8963. weight: math.unit(44444444, "lb"),
  8964. name: "Front",
  8965. image: {
  8966. source: "./media/characters/major-colonel/front.svg"
  8967. }
  8968. },
  8969. back: {
  8970. height: math.unit(400, "feet"),
  8971. weight: math.unit(44444444, "lb"),
  8972. name: "Back",
  8973. image: {
  8974. source: "./media/characters/major-colonel/back.svg"
  8975. }
  8976. },
  8977. },
  8978. [
  8979. {
  8980. name: "Macro",
  8981. height: math.unit(400, "feet"),
  8982. default: true
  8983. },
  8984. ]
  8985. ))
  8986. characterMakers.push(() => makeCharacter(
  8987. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8988. {
  8989. catFront: {
  8990. height: math.unit(6, "feet"),
  8991. weight: math.unit(120, "lb"),
  8992. name: "Front (Cat Side)",
  8993. image: {
  8994. source: "./media/characters/axel-lycan/cat-front.svg",
  8995. extra: 430 / 402,
  8996. bottom: 43 / 472.35
  8997. }
  8998. },
  8999. catBack: {
  9000. height: math.unit(6, "feet"),
  9001. weight: math.unit(120, "lb"),
  9002. name: "Back (Cat Side)",
  9003. image: {
  9004. source: "./media/characters/axel-lycan/cat-back.svg",
  9005. extra: 447 / 419,
  9006. bottom: 23.3 / 469
  9007. }
  9008. },
  9009. wolfFront: {
  9010. height: math.unit(6, "feet"),
  9011. weight: math.unit(120, "lb"),
  9012. name: "Front (Wolf Side)",
  9013. image: {
  9014. source: "./media/characters/axel-lycan/wolf-front.svg",
  9015. extra: 485 / 456,
  9016. bottom: 19 / 504
  9017. }
  9018. },
  9019. wolfBack: {
  9020. height: math.unit(6, "feet"),
  9021. weight: math.unit(120, "lb"),
  9022. name: "Back (Wolf Side)",
  9023. image: {
  9024. source: "./media/characters/axel-lycan/wolf-back.svg",
  9025. extra: 475 / 438,
  9026. bottom: 39.2 / 514
  9027. }
  9028. },
  9029. },
  9030. [
  9031. {
  9032. name: "Macro",
  9033. height: math.unit(1, "km"),
  9034. default: true
  9035. },
  9036. ]
  9037. ))
  9038. characterMakers.push(() => makeCharacter(
  9039. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9040. {
  9041. front: {
  9042. height: math.unit(5 + 9 / 12, "feet"),
  9043. weight: math.unit(175, "lb"),
  9044. name: "Front",
  9045. image: {
  9046. source: "./media/characters/vanrel-hyena/front.svg",
  9047. extra: 1086 / 1010,
  9048. bottom: 0.04
  9049. }
  9050. },
  9051. },
  9052. [
  9053. {
  9054. name: "Normal",
  9055. height: math.unit(5 + 9 / 12, "feet"),
  9056. default: true
  9057. },
  9058. ]
  9059. ))
  9060. characterMakers.push(() => makeCharacter(
  9061. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9062. {
  9063. front: {
  9064. height: math.unit(6, "feet"),
  9065. weight: math.unit(103, "lb"),
  9066. name: "Front",
  9067. image: {
  9068. source: "./media/characters/abbott-absol/front.svg",
  9069. extra: 2010 / 1842
  9070. }
  9071. },
  9072. },
  9073. [
  9074. {
  9075. name: "Megamicro",
  9076. height: math.unit(0.1, "mm")
  9077. },
  9078. {
  9079. name: "Micro",
  9080. height: math.unit(1, "inch")
  9081. },
  9082. {
  9083. name: "Normal",
  9084. height: math.unit(6, "feet"),
  9085. default: true
  9086. },
  9087. ]
  9088. ))
  9089. characterMakers.push(() => makeCharacter(
  9090. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9091. {
  9092. front: {
  9093. height: math.unit(6, "feet"),
  9094. weight: math.unit(264, "lb"),
  9095. name: "Front",
  9096. image: {
  9097. source: "./media/characters/hector/front.svg",
  9098. extra: 2280 / 2130,
  9099. bottom: 0.07
  9100. }
  9101. },
  9102. },
  9103. [
  9104. {
  9105. name: "Normal",
  9106. height: math.unit(12.25, "foot"),
  9107. default: true
  9108. },
  9109. {
  9110. name: "Macro",
  9111. height: math.unit(160, "feet")
  9112. },
  9113. ]
  9114. ))
  9115. characterMakers.push(() => makeCharacter(
  9116. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9117. {
  9118. front: {
  9119. height: math.unit(6, "feet"),
  9120. weight: math.unit(150, "lb"),
  9121. name: "Front",
  9122. image: {
  9123. source: "./media/characters/sal/front.svg",
  9124. extra: 1846 / 1699,
  9125. bottom: 0.04
  9126. }
  9127. },
  9128. },
  9129. [
  9130. {
  9131. name: "Megamacro",
  9132. height: math.unit(10, "miles"),
  9133. default: true
  9134. },
  9135. ]
  9136. ))
  9137. characterMakers.push(() => makeCharacter(
  9138. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9139. {
  9140. front: {
  9141. height: math.unit(3, "meters"),
  9142. weight: math.unit(450, "kg"),
  9143. name: "front",
  9144. image: {
  9145. source: "./media/characters/ranger/front.svg",
  9146. extra: 2401 / 2243,
  9147. bottom: 0.05
  9148. }
  9149. },
  9150. },
  9151. [
  9152. {
  9153. name: "Normal",
  9154. height: math.unit(3, "meters"),
  9155. default: true
  9156. },
  9157. ]
  9158. ))
  9159. characterMakers.push(() => makeCharacter(
  9160. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9161. {
  9162. front: {
  9163. height: math.unit(14, "feet"),
  9164. weight: math.unit(800, "kg"),
  9165. name: "Front",
  9166. image: {
  9167. source: "./media/characters/theresa/front.svg",
  9168. extra: 3575 / 3346,
  9169. bottom: 0.03
  9170. }
  9171. },
  9172. },
  9173. [
  9174. {
  9175. name: "Normal",
  9176. height: math.unit(14, "feet"),
  9177. default: true
  9178. },
  9179. ]
  9180. ))
  9181. characterMakers.push(() => makeCharacter(
  9182. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9183. {
  9184. front: {
  9185. height: math.unit(6, "feet"),
  9186. weight: math.unit(3, "kg"),
  9187. name: "Front",
  9188. image: {
  9189. source: "./media/characters/ine/front.svg",
  9190. extra: 678 / 539,
  9191. bottom: 0.023
  9192. }
  9193. },
  9194. },
  9195. [
  9196. {
  9197. name: "Normal",
  9198. height: math.unit(2.265, "feet"),
  9199. default: true
  9200. },
  9201. ]
  9202. ))
  9203. characterMakers.push(() => makeCharacter(
  9204. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9205. {
  9206. front: {
  9207. height: math.unit(5, "feet"),
  9208. weight: math.unit(30, "kg"),
  9209. name: "Front",
  9210. image: {
  9211. source: "./media/characters/vial/front.svg",
  9212. extra: 1365 / 1277,
  9213. bottom: 0.04
  9214. }
  9215. },
  9216. },
  9217. [
  9218. {
  9219. name: "Normal",
  9220. height: math.unit(5, "feet"),
  9221. default: true
  9222. },
  9223. ]
  9224. ))
  9225. characterMakers.push(() => makeCharacter(
  9226. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9227. {
  9228. side: {
  9229. height: math.unit(3.4, "meters"),
  9230. weight: math.unit(1000, "lb"),
  9231. name: "Side",
  9232. image: {
  9233. source: "./media/characters/rovoska/side.svg",
  9234. extra: 4403 / 1515
  9235. }
  9236. },
  9237. },
  9238. [
  9239. {
  9240. name: "Normal",
  9241. height: math.unit(3.4, "meters"),
  9242. default: true
  9243. },
  9244. ]
  9245. ))
  9246. characterMakers.push(() => makeCharacter(
  9247. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9248. {
  9249. front: {
  9250. height: math.unit(8, "feet"),
  9251. weight: math.unit(315, "lb"),
  9252. name: "Front",
  9253. image: {
  9254. source: "./media/characters/gunner-rotthbauer/front.svg"
  9255. }
  9256. },
  9257. back: {
  9258. height: math.unit(8, "feet"),
  9259. weight: math.unit(315, "lb"),
  9260. name: "Back",
  9261. image: {
  9262. source: "./media/characters/gunner-rotthbauer/back.svg"
  9263. }
  9264. },
  9265. },
  9266. [
  9267. {
  9268. name: "Micro",
  9269. height: math.unit(3.5, "inches")
  9270. },
  9271. {
  9272. name: "Normal",
  9273. height: math.unit(8, "feet"),
  9274. default: true
  9275. },
  9276. {
  9277. name: "Macro",
  9278. height: math.unit(250, "feet")
  9279. },
  9280. {
  9281. name: "Megamacro",
  9282. height: math.unit(1, "AU")
  9283. },
  9284. ]
  9285. ))
  9286. characterMakers.push(() => makeCharacter(
  9287. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9288. {
  9289. front: {
  9290. height: math.unit(5 + 5 / 12, "feet"),
  9291. weight: math.unit(140, "lb"),
  9292. name: "Front",
  9293. image: {
  9294. source: "./media/characters/allatia/front.svg",
  9295. extra: 1227 / 1180,
  9296. bottom: 0.027
  9297. }
  9298. },
  9299. },
  9300. [
  9301. {
  9302. name: "Normal",
  9303. height: math.unit(5 + 5 / 12, "feet")
  9304. },
  9305. {
  9306. name: "Macro",
  9307. height: math.unit(250, "feet"),
  9308. default: true
  9309. },
  9310. {
  9311. name: "Megamacro",
  9312. height: math.unit(8, "miles")
  9313. }
  9314. ]
  9315. ))
  9316. characterMakers.push(() => makeCharacter(
  9317. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9318. {
  9319. front: {
  9320. height: math.unit(6, "feet"),
  9321. weight: math.unit(120, "lb"),
  9322. name: "Front",
  9323. image: {
  9324. source: "./media/characters/tene/front.svg",
  9325. extra: 1728 / 1578,
  9326. bottom: 0.022
  9327. }
  9328. },
  9329. stomping: {
  9330. height: math.unit(2.025, "meters"),
  9331. weight: math.unit(120, "lb"),
  9332. name: "Stomping",
  9333. image: {
  9334. source: "./media/characters/tene/stomping.svg",
  9335. extra: 938 / 873,
  9336. bottom: 0.01
  9337. }
  9338. },
  9339. sitting: {
  9340. height: math.unit(1, "meter"),
  9341. weight: math.unit(120, "lb"),
  9342. name: "Sitting",
  9343. image: {
  9344. source: "./media/characters/tene/sitting.svg",
  9345. extra: 437 / 415,
  9346. bottom: 0.1
  9347. }
  9348. },
  9349. feral: {
  9350. height: math.unit(3.9, "feet"),
  9351. weight: math.unit(250, "lb"),
  9352. name: "Feral",
  9353. image: {
  9354. source: "./media/characters/tene/feral.svg",
  9355. extra: 717 / 458,
  9356. bottom: 0.179
  9357. }
  9358. },
  9359. },
  9360. [
  9361. {
  9362. name: "Normal",
  9363. height: math.unit(6, "feet")
  9364. },
  9365. {
  9366. name: "Macro",
  9367. height: math.unit(300, "feet"),
  9368. default: true
  9369. },
  9370. {
  9371. name: "Megamacro",
  9372. height: math.unit(5, "miles")
  9373. },
  9374. ]
  9375. ))
  9376. characterMakers.push(() => makeCharacter(
  9377. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9378. {
  9379. side: {
  9380. height: math.unit(6, "feet"),
  9381. name: "Side",
  9382. image: {
  9383. source: "./media/characters/evander/side.svg",
  9384. extra: 877 / 477
  9385. }
  9386. },
  9387. },
  9388. [
  9389. {
  9390. name: "Normal",
  9391. height: math.unit(0.83, "meters"),
  9392. default: true
  9393. },
  9394. ]
  9395. ))
  9396. characterMakers.push(() => makeCharacter(
  9397. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9398. {
  9399. front: {
  9400. height: math.unit(12, "feet"),
  9401. weight: math.unit(1000, "lb"),
  9402. name: "Front",
  9403. image: {
  9404. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9405. extra: 1762 / 1611
  9406. }
  9407. },
  9408. back: {
  9409. height: math.unit(12, "feet"),
  9410. weight: math.unit(1000, "lb"),
  9411. name: "Back",
  9412. image: {
  9413. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9414. extra: 1762 / 1611
  9415. }
  9416. },
  9417. },
  9418. [
  9419. {
  9420. name: "Normal",
  9421. height: math.unit(12, "feet"),
  9422. default: true
  9423. },
  9424. {
  9425. name: "Kaiju",
  9426. height: math.unit(150, "feet")
  9427. },
  9428. ]
  9429. ))
  9430. characterMakers.push(() => makeCharacter(
  9431. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9432. {
  9433. front: {
  9434. height: math.unit(6, "feet"),
  9435. weight: math.unit(150, "lb"),
  9436. name: "Front",
  9437. image: {
  9438. source: "./media/characters/zero-alurus/front.svg"
  9439. }
  9440. },
  9441. back: {
  9442. height: math.unit(6, "feet"),
  9443. weight: math.unit(150, "lb"),
  9444. name: "Back",
  9445. image: {
  9446. source: "./media/characters/zero-alurus/back.svg"
  9447. }
  9448. },
  9449. },
  9450. [
  9451. {
  9452. name: "Normal",
  9453. height: math.unit(5 + 10 / 12, "feet")
  9454. },
  9455. {
  9456. name: "Macro",
  9457. height: math.unit(60, "feet"),
  9458. default: true
  9459. },
  9460. {
  9461. name: "Macro+",
  9462. height: math.unit(450, "feet")
  9463. },
  9464. ]
  9465. ))
  9466. characterMakers.push(() => makeCharacter(
  9467. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9468. {
  9469. front: {
  9470. height: math.unit(6, "feet"),
  9471. weight: math.unit(200, "lb"),
  9472. name: "Front",
  9473. image: {
  9474. source: "./media/characters/mega-shi/front.svg",
  9475. extra: 1279 / 1250,
  9476. bottom: 0.02
  9477. }
  9478. },
  9479. back: {
  9480. height: math.unit(6, "feet"),
  9481. weight: math.unit(200, "lb"),
  9482. name: "Back",
  9483. image: {
  9484. source: "./media/characters/mega-shi/back.svg",
  9485. extra: 1279 / 1250,
  9486. bottom: 0.02
  9487. }
  9488. },
  9489. },
  9490. [
  9491. {
  9492. name: "Micro",
  9493. height: math.unit(16 + 6 / 12, "feet")
  9494. },
  9495. {
  9496. name: "Third Dimension",
  9497. height: math.unit(40, "meters")
  9498. },
  9499. {
  9500. name: "Normal",
  9501. height: math.unit(660, "feet"),
  9502. default: true
  9503. },
  9504. {
  9505. name: "Megamacro",
  9506. height: math.unit(10, "miles")
  9507. },
  9508. {
  9509. name: "Planetary Launch",
  9510. height: math.unit(500, "miles")
  9511. },
  9512. {
  9513. name: "Interstellar",
  9514. height: math.unit(1e9, "miles")
  9515. },
  9516. {
  9517. name: "Leaving the Universe",
  9518. height: math.unit(1, "gigaparsec")
  9519. },
  9520. {
  9521. name: "Travelling Universes",
  9522. height: math.unit(30e15, "parsecs")
  9523. },
  9524. ]
  9525. ))
  9526. characterMakers.push(() => makeCharacter(
  9527. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9528. {
  9529. front: {
  9530. height: math.unit(6, "feet"),
  9531. weight: math.unit(150, "lb"),
  9532. name: "Front",
  9533. image: {
  9534. source: "./media/characters/odyssey/front.svg",
  9535. extra: 1782 / 1582,
  9536. bottom: 0.01
  9537. }
  9538. },
  9539. side: {
  9540. height: math.unit(5.7, "feet"),
  9541. weight: math.unit(140, "lb"),
  9542. name: "Side",
  9543. image: {
  9544. source: "./media/characters/odyssey/side.svg",
  9545. extra: 6462 / 5700
  9546. }
  9547. },
  9548. },
  9549. [
  9550. {
  9551. name: "Normal",
  9552. height: math.unit(5 + 4 / 12, "feet")
  9553. },
  9554. {
  9555. name: "Macro",
  9556. height: math.unit(1, "km")
  9557. },
  9558. {
  9559. name: "Megamacro",
  9560. height: math.unit(3000, "km")
  9561. },
  9562. {
  9563. name: "Gigamacro",
  9564. height: math.unit(1, "AU"),
  9565. default: true
  9566. },
  9567. {
  9568. name: "Omniversal",
  9569. height: math.unit(100e14, "lightyears")
  9570. },
  9571. ]
  9572. ))
  9573. characterMakers.push(() => makeCharacter(
  9574. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9575. {
  9576. front: {
  9577. height: math.unit(6, "feet"),
  9578. weight: math.unit(300, "lb"),
  9579. name: "Front",
  9580. image: {
  9581. source: "./media/characters/mekuto/front.svg",
  9582. extra: 921 / 832,
  9583. bottom: 0.03
  9584. }
  9585. },
  9586. hand: {
  9587. height: math.unit(6 / 10.24, "feet"),
  9588. name: "Hand",
  9589. image: {
  9590. source: "./media/characters/mekuto/hand.svg"
  9591. }
  9592. },
  9593. foot: {
  9594. height: math.unit(6 / 5.05, "feet"),
  9595. name: "Foot",
  9596. image: {
  9597. source: "./media/characters/mekuto/foot.svg"
  9598. }
  9599. },
  9600. },
  9601. [
  9602. {
  9603. name: "Minimicro",
  9604. height: math.unit(0.2, "inches")
  9605. },
  9606. {
  9607. name: "Micro",
  9608. height: math.unit(1.5, "inches")
  9609. },
  9610. {
  9611. name: "Normal",
  9612. height: math.unit(5 + 11 / 12, "feet"),
  9613. default: true
  9614. },
  9615. {
  9616. name: "Minimacro",
  9617. height: math.unit(17 + 9 / 12, "feet")
  9618. },
  9619. {
  9620. name: "Macro",
  9621. height: math.unit(177.5, "feet")
  9622. },
  9623. {
  9624. name: "Megamacro",
  9625. height: math.unit(152, "miles")
  9626. },
  9627. ]
  9628. ))
  9629. characterMakers.push(() => makeCharacter(
  9630. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9631. {
  9632. front: {
  9633. height: math.unit(6.5, "inches"),
  9634. weight: math.unit(13, "oz"),
  9635. name: "Front",
  9636. image: {
  9637. source: "./media/characters/dafydd-tomos/front.svg",
  9638. extra: 2990 / 2603,
  9639. bottom: 0.03
  9640. }
  9641. },
  9642. },
  9643. [
  9644. {
  9645. name: "Micro",
  9646. height: math.unit(6.5, "inches"),
  9647. default: true
  9648. },
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9653. {
  9654. front: {
  9655. height: math.unit(6, "feet"),
  9656. weight: math.unit(150, "lb"),
  9657. name: "Front",
  9658. image: {
  9659. source: "./media/characters/splinter/front.svg",
  9660. extra: 2990 / 2882,
  9661. bottom: 0.04
  9662. }
  9663. },
  9664. back: {
  9665. height: math.unit(6, "feet"),
  9666. weight: math.unit(150, "lb"),
  9667. name: "Back",
  9668. image: {
  9669. source: "./media/characters/splinter/back.svg",
  9670. extra: 2990 / 2882,
  9671. bottom: 0.04
  9672. }
  9673. },
  9674. },
  9675. [
  9676. {
  9677. name: "Normal",
  9678. height: math.unit(6, "feet")
  9679. },
  9680. {
  9681. name: "Macro",
  9682. height: math.unit(230, "meters"),
  9683. default: true
  9684. },
  9685. ]
  9686. ))
  9687. characterMakers.push(() => makeCharacter(
  9688. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9689. {
  9690. front: {
  9691. height: math.unit(4 + 10 / 12, "feet"),
  9692. weight: math.unit(480, "lb"),
  9693. name: "Front",
  9694. image: {
  9695. source: "./media/characters/snow-gabumon/front.svg",
  9696. extra: 1140 / 963,
  9697. bottom: 0.058
  9698. }
  9699. },
  9700. back: {
  9701. height: math.unit(4 + 10 / 12, "feet"),
  9702. weight: math.unit(480, "lb"),
  9703. name: "Back",
  9704. image: {
  9705. source: "./media/characters/snow-gabumon/back.svg",
  9706. extra: 1115 / 962,
  9707. bottom: 0.041
  9708. }
  9709. },
  9710. frontUndresed: {
  9711. height: math.unit(4 + 10 / 12, "feet"),
  9712. weight: math.unit(480, "lb"),
  9713. name: "Front (Undressed)",
  9714. image: {
  9715. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9716. extra: 1061 / 960,
  9717. bottom: 0.045
  9718. }
  9719. },
  9720. },
  9721. [
  9722. {
  9723. name: "Micro",
  9724. height: math.unit(1, "inch")
  9725. },
  9726. {
  9727. name: "Normal",
  9728. height: math.unit(4 + 10 / 12, "feet"),
  9729. default: true
  9730. },
  9731. {
  9732. name: "Macro",
  9733. height: math.unit(200, "feet")
  9734. },
  9735. {
  9736. name: "Megamacro",
  9737. height: math.unit(120, "miles")
  9738. },
  9739. {
  9740. name: "Gigamacro",
  9741. height: math.unit(9800, "miles")
  9742. },
  9743. ]
  9744. ))
  9745. characterMakers.push(() => makeCharacter(
  9746. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9747. {
  9748. front: {
  9749. height: math.unit(1.7, "meters"),
  9750. weight: math.unit(140, "lb"),
  9751. name: "Front",
  9752. image: {
  9753. source: "./media/characters/moody/front.svg",
  9754. extra: 3226 / 3007,
  9755. bottom: 0.087
  9756. }
  9757. },
  9758. },
  9759. [
  9760. {
  9761. name: "Micro",
  9762. height: math.unit(1, "mm")
  9763. },
  9764. {
  9765. name: "Normal",
  9766. height: math.unit(1.7, "meters"),
  9767. default: true
  9768. },
  9769. {
  9770. name: "Macro",
  9771. height: math.unit(80, "meters")
  9772. },
  9773. {
  9774. name: "Macro+",
  9775. height: math.unit(500, "meters")
  9776. },
  9777. ]
  9778. ))
  9779. characterMakers.push(() => makeCharacter(
  9780. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9781. {
  9782. front: {
  9783. height: math.unit(6, "feet"),
  9784. weight: math.unit(150, "lb"),
  9785. name: "Front",
  9786. image: {
  9787. source: "./media/characters/zyas/front.svg",
  9788. extra: 1180 / 1120,
  9789. bottom: 0.045
  9790. }
  9791. },
  9792. },
  9793. [
  9794. {
  9795. name: "Normal",
  9796. height: math.unit(10, "feet"),
  9797. default: true
  9798. },
  9799. {
  9800. name: "Macro",
  9801. height: math.unit(500, "feet")
  9802. },
  9803. {
  9804. name: "Megamacro",
  9805. height: math.unit(5, "miles")
  9806. },
  9807. {
  9808. name: "Teramacro",
  9809. height: math.unit(150000, "miles")
  9810. },
  9811. ]
  9812. ))
  9813. characterMakers.push(() => makeCharacter(
  9814. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9815. {
  9816. front: {
  9817. height: math.unit(6, "feet"),
  9818. weight: math.unit(150, "lb"),
  9819. name: "Front",
  9820. image: {
  9821. source: "./media/characters/cuon/front.svg",
  9822. extra: 1390 / 1320,
  9823. bottom: 0.008
  9824. }
  9825. },
  9826. },
  9827. [
  9828. {
  9829. name: "Micro",
  9830. height: math.unit(3, "inches")
  9831. },
  9832. {
  9833. name: "Normal",
  9834. height: math.unit(18 + 9 / 12, "feet"),
  9835. default: true
  9836. },
  9837. {
  9838. name: "Macro",
  9839. height: math.unit(360, "feet")
  9840. },
  9841. {
  9842. name: "Megamacro",
  9843. height: math.unit(360, "miles")
  9844. },
  9845. ]
  9846. ))
  9847. characterMakers.push(() => makeCharacter(
  9848. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9849. {
  9850. front: {
  9851. height: math.unit(2.4, "meters"),
  9852. weight: math.unit(70, "kg"),
  9853. name: "Front",
  9854. image: {
  9855. source: "./media/characters/nyanuxk/front.svg",
  9856. extra: 1172 / 1084,
  9857. bottom: 0.065
  9858. }
  9859. },
  9860. side: {
  9861. height: math.unit(2.4, "meters"),
  9862. weight: math.unit(70, "kg"),
  9863. name: "Side",
  9864. image: {
  9865. source: "./media/characters/nyanuxk/side.svg",
  9866. extra: 1190 / 1132,
  9867. bottom: 0.007
  9868. }
  9869. },
  9870. back: {
  9871. height: math.unit(2.4, "meters"),
  9872. weight: math.unit(70, "kg"),
  9873. name: "Back",
  9874. image: {
  9875. source: "./media/characters/nyanuxk/back.svg",
  9876. extra: 1200 / 1141,
  9877. bottom: 0.015
  9878. }
  9879. },
  9880. foot: {
  9881. height: math.unit(0.52, "meters"),
  9882. name: "Foot",
  9883. image: {
  9884. source: "./media/characters/nyanuxk/foot.svg"
  9885. }
  9886. },
  9887. },
  9888. [
  9889. {
  9890. name: "Micro",
  9891. height: math.unit(2, "cm")
  9892. },
  9893. {
  9894. name: "Normal",
  9895. height: math.unit(2.4, "meters"),
  9896. default: true
  9897. },
  9898. {
  9899. name: "Smaller Macro",
  9900. height: math.unit(120, "meters")
  9901. },
  9902. {
  9903. name: "Bigger Macro",
  9904. height: math.unit(1.2, "km")
  9905. },
  9906. {
  9907. name: "Megamacro",
  9908. height: math.unit(15, "kilometers")
  9909. },
  9910. {
  9911. name: "Gigamacro",
  9912. height: math.unit(2000, "km")
  9913. },
  9914. {
  9915. name: "Teramacro",
  9916. height: math.unit(500000, "km")
  9917. },
  9918. ]
  9919. ))
  9920. characterMakers.push(() => makeCharacter(
  9921. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9922. {
  9923. side: {
  9924. height: math.unit(6, "feet"),
  9925. name: "Side",
  9926. image: {
  9927. source: "./media/characters/ailbhe/side.svg",
  9928. extra: 757 / 464,
  9929. bottom: 0.041
  9930. }
  9931. },
  9932. },
  9933. [
  9934. {
  9935. name: "Normal",
  9936. height: math.unit(1.07, "meters"),
  9937. default: true
  9938. },
  9939. ]
  9940. ))
  9941. characterMakers.push(() => makeCharacter(
  9942. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9943. {
  9944. front: {
  9945. height: math.unit(6, "feet"),
  9946. weight: math.unit(120, "kg"),
  9947. name: "Front",
  9948. image: {
  9949. source: "./media/characters/zevulfius/front.svg",
  9950. extra: 965 / 903
  9951. }
  9952. },
  9953. side: {
  9954. height: math.unit(6, "feet"),
  9955. weight: math.unit(120, "kg"),
  9956. name: "Side",
  9957. image: {
  9958. source: "./media/characters/zevulfius/side.svg",
  9959. extra: 939 / 900
  9960. }
  9961. },
  9962. back: {
  9963. height: math.unit(6, "feet"),
  9964. weight: math.unit(120, "kg"),
  9965. name: "Back",
  9966. image: {
  9967. source: "./media/characters/zevulfius/back.svg",
  9968. extra: 918 / 854,
  9969. bottom: 0.005
  9970. }
  9971. },
  9972. foot: {
  9973. height: math.unit(6 / 3.72, "feet"),
  9974. name: "Foot",
  9975. image: {
  9976. source: "./media/characters/zevulfius/foot.svg"
  9977. }
  9978. },
  9979. },
  9980. [
  9981. {
  9982. name: "Macro",
  9983. height: math.unit(750, "meters")
  9984. },
  9985. {
  9986. name: "Megamacro",
  9987. height: math.unit(20, "km"),
  9988. default: true
  9989. },
  9990. {
  9991. name: "Gigamacro",
  9992. height: math.unit(2000, "km")
  9993. },
  9994. {
  9995. name: "Teramacro",
  9996. height: math.unit(250000, "km")
  9997. },
  9998. ]
  9999. ))
  10000. characterMakers.push(() => makeCharacter(
  10001. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10002. {
  10003. front: {
  10004. height: math.unit(100, "feet"),
  10005. weight: math.unit(350, "kg"),
  10006. name: "Front",
  10007. image: {
  10008. source: "./media/characters/rikes/front.svg",
  10009. extra: 1565 / 1483,
  10010. bottom: 0.017
  10011. }
  10012. },
  10013. },
  10014. [
  10015. {
  10016. name: "Macro",
  10017. height: math.unit(100, "feet"),
  10018. default: true
  10019. },
  10020. ]
  10021. ))
  10022. characterMakers.push(() => makeCharacter(
  10023. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10024. {
  10025. anthro: {
  10026. height: math.unit(8, "feet"),
  10027. weight: math.unit(120, "kg"),
  10028. name: "Anthro",
  10029. image: {
  10030. source: "./media/characters/adam-silver-mane/anthro.svg",
  10031. extra: 5743 / 5339,
  10032. bottom: 0.07
  10033. }
  10034. },
  10035. taur: {
  10036. height: math.unit(16, "feet"),
  10037. weight: math.unit(1500, "kg"),
  10038. name: "Taur",
  10039. image: {
  10040. source: "./media/characters/adam-silver-mane/taur.svg",
  10041. extra: 1713 / 1571,
  10042. bottom: 0.01
  10043. }
  10044. },
  10045. },
  10046. [
  10047. {
  10048. name: "Normal",
  10049. height: math.unit(8, "feet")
  10050. },
  10051. {
  10052. name: "Minimacro",
  10053. height: math.unit(80, "feet")
  10054. },
  10055. {
  10056. name: "Macro",
  10057. height: math.unit(800, "feet"),
  10058. default: true
  10059. },
  10060. {
  10061. name: "Megamacro",
  10062. height: math.unit(8000, "feet")
  10063. },
  10064. {
  10065. name: "Gigamacro",
  10066. height: math.unit(800, "miles")
  10067. },
  10068. {
  10069. name: "Teramacro",
  10070. height: math.unit(80000, "miles")
  10071. },
  10072. {
  10073. name: "Celestial",
  10074. height: math.unit(8e6, "miles")
  10075. },
  10076. {
  10077. name: "Star Dragon",
  10078. height: math.unit(800000, "parsecs")
  10079. },
  10080. {
  10081. name: "Godly",
  10082. height: math.unit(800, "teraparsecs")
  10083. },
  10084. ]
  10085. ))
  10086. characterMakers.push(() => makeCharacter(
  10087. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10088. {
  10089. front: {
  10090. height: math.unit(6, "feet"),
  10091. weight: math.unit(150, "lb"),
  10092. name: "Front",
  10093. image: {
  10094. source: "./media/characters/ky'owin/front.svg",
  10095. extra: 3888 / 3068,
  10096. bottom: 0.015
  10097. }
  10098. },
  10099. },
  10100. [
  10101. {
  10102. name: "Normal",
  10103. height: math.unit(6 + 8 / 12, "feet")
  10104. },
  10105. {
  10106. name: "Large",
  10107. height: math.unit(68, "feet")
  10108. },
  10109. {
  10110. name: "Macro",
  10111. height: math.unit(132, "feet")
  10112. },
  10113. {
  10114. name: "Macro+",
  10115. height: math.unit(340, "feet")
  10116. },
  10117. {
  10118. name: "Macro++",
  10119. height: math.unit(680, "feet"),
  10120. default: true
  10121. },
  10122. {
  10123. name: "Megamacro",
  10124. height: math.unit(1, "mile")
  10125. },
  10126. {
  10127. name: "Megamacro+",
  10128. height: math.unit(10, "miles")
  10129. },
  10130. ]
  10131. ))
  10132. characterMakers.push(() => makeCharacter(
  10133. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10134. {
  10135. front: {
  10136. height: math.unit(4, "feet"),
  10137. weight: math.unit(50, "lb"),
  10138. name: "Front",
  10139. image: {
  10140. source: "./media/characters/mal/front.svg",
  10141. extra: 785 / 724,
  10142. bottom: 0.07
  10143. }
  10144. },
  10145. },
  10146. [
  10147. {
  10148. name: "Micro",
  10149. height: math.unit(4, "inches")
  10150. },
  10151. {
  10152. name: "Normal",
  10153. height: math.unit(4, "feet"),
  10154. default: true
  10155. },
  10156. {
  10157. name: "Macro",
  10158. height: math.unit(200, "feet")
  10159. },
  10160. ]
  10161. ))
  10162. characterMakers.push(() => makeCharacter(
  10163. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10164. {
  10165. front: {
  10166. height: math.unit(6, "feet"),
  10167. weight: math.unit(150, "lb"),
  10168. name: "Front",
  10169. image: {
  10170. source: "./media/characters/jordan-deware/front.svg",
  10171. extra: 1191 / 1012
  10172. }
  10173. },
  10174. },
  10175. [
  10176. {
  10177. name: "Nano",
  10178. height: math.unit(0.01, "mm")
  10179. },
  10180. {
  10181. name: "Minimicro",
  10182. height: math.unit(1, "mm")
  10183. },
  10184. {
  10185. name: "Micro",
  10186. height: math.unit(0.5, "inches")
  10187. },
  10188. {
  10189. name: "Normal",
  10190. height: math.unit(4, "feet"),
  10191. default: true
  10192. },
  10193. {
  10194. name: "Minimacro",
  10195. height: math.unit(40, "meters")
  10196. },
  10197. {
  10198. name: "Small Macro",
  10199. height: math.unit(400, "meters")
  10200. },
  10201. {
  10202. name: "Macro",
  10203. height: math.unit(4, "miles")
  10204. },
  10205. {
  10206. name: "Megamacro",
  10207. height: math.unit(40, "miles")
  10208. },
  10209. {
  10210. name: "Megamacro+",
  10211. height: math.unit(400, "miles")
  10212. },
  10213. {
  10214. name: "Gigamacro",
  10215. height: math.unit(400000, "miles")
  10216. },
  10217. ]
  10218. ))
  10219. characterMakers.push(() => makeCharacter(
  10220. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10221. {
  10222. side: {
  10223. height: math.unit(6, "feet"),
  10224. weight: math.unit(150, "lb"),
  10225. name: "Side",
  10226. image: {
  10227. source: "./media/characters/kimiko/side.svg",
  10228. extra: 600 / 358
  10229. }
  10230. },
  10231. },
  10232. [
  10233. {
  10234. name: "Normal",
  10235. height: math.unit(15, "feet"),
  10236. default: true
  10237. },
  10238. {
  10239. name: "Macro",
  10240. height: math.unit(220, "feet")
  10241. },
  10242. {
  10243. name: "Macro+",
  10244. height: math.unit(1450, "feet")
  10245. },
  10246. {
  10247. name: "Megamacro",
  10248. height: math.unit(11500, "feet")
  10249. },
  10250. {
  10251. name: "Gigamacro",
  10252. height: math.unit(9500, "miles")
  10253. },
  10254. {
  10255. name: "Teramacro",
  10256. height: math.unit(2208005005, "miles")
  10257. },
  10258. {
  10259. name: "Examacro",
  10260. height: math.unit(2750, "parsecs")
  10261. },
  10262. {
  10263. name: "Zettamacro",
  10264. height: math.unit(101500, "parsecs")
  10265. },
  10266. ]
  10267. ))
  10268. characterMakers.push(() => makeCharacter(
  10269. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10270. {
  10271. front: {
  10272. height: math.unit(6, "feet"),
  10273. weight: math.unit(70, "kg"),
  10274. name: "Front",
  10275. image: {
  10276. source: "./media/characters/andrew-sleepy/front.svg"
  10277. }
  10278. },
  10279. side: {
  10280. height: math.unit(6, "feet"),
  10281. weight: math.unit(70, "kg"),
  10282. name: "Side",
  10283. image: {
  10284. source: "./media/characters/andrew-sleepy/side.svg"
  10285. }
  10286. },
  10287. },
  10288. [
  10289. {
  10290. name: "Micro",
  10291. height: math.unit(1, "mm"),
  10292. default: true
  10293. },
  10294. ]
  10295. ))
  10296. characterMakers.push(() => makeCharacter(
  10297. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10298. {
  10299. front: {
  10300. height: math.unit(6, "feet"),
  10301. weight: math.unit(150, "lb"),
  10302. name: "Front",
  10303. image: {
  10304. source: "./media/characters/judio/front.svg",
  10305. extra: 1258 / 1110
  10306. }
  10307. },
  10308. },
  10309. [
  10310. {
  10311. name: "Normal",
  10312. height: math.unit(5 + 6 / 12, "feet")
  10313. },
  10314. {
  10315. name: "Macro",
  10316. height: math.unit(1000, "feet"),
  10317. default: true
  10318. },
  10319. {
  10320. name: "Megamacro",
  10321. height: math.unit(10, "miles")
  10322. },
  10323. ]
  10324. ))
  10325. characterMakers.push(() => makeCharacter(
  10326. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10327. {
  10328. front: {
  10329. height: math.unit(6, "feet"),
  10330. weight: math.unit(68, "kg"),
  10331. name: "Front",
  10332. image: {
  10333. source: "./media/characters/nomaxice/front.svg",
  10334. extra: 1498 / 1073,
  10335. bottom: 0.075
  10336. }
  10337. },
  10338. foot: {
  10339. height: math.unit(1.1, "feet"),
  10340. name: "Foot",
  10341. image: {
  10342. source: "./media/characters/nomaxice/foot.svg"
  10343. }
  10344. },
  10345. },
  10346. [
  10347. {
  10348. name: "Micro",
  10349. height: math.unit(8, "cm")
  10350. },
  10351. {
  10352. name: "Norm",
  10353. height: math.unit(1.82, "m")
  10354. },
  10355. {
  10356. name: "Norm+",
  10357. height: math.unit(8.8, "feet")
  10358. },
  10359. {
  10360. name: "Big",
  10361. height: math.unit(8, "meters"),
  10362. default: true
  10363. },
  10364. {
  10365. name: "Macro",
  10366. height: math.unit(18, "meters")
  10367. },
  10368. {
  10369. name: "Macro+",
  10370. height: math.unit(88, "meters")
  10371. },
  10372. ]
  10373. ))
  10374. characterMakers.push(() => makeCharacter(
  10375. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10376. {
  10377. front: {
  10378. height: math.unit(12, "feet"),
  10379. weight: math.unit(1.5, "tons"),
  10380. name: "Front",
  10381. image: {
  10382. source: "./media/characters/dydros/front.svg",
  10383. extra: 863 / 800,
  10384. bottom: 0.015
  10385. }
  10386. },
  10387. back: {
  10388. height: math.unit(12, "feet"),
  10389. weight: math.unit(1.5, "tons"),
  10390. name: "Back",
  10391. image: {
  10392. source: "./media/characters/dydros/back.svg",
  10393. extra: 900 / 843,
  10394. bottom: 0.005
  10395. }
  10396. },
  10397. },
  10398. [
  10399. {
  10400. name: "Normal",
  10401. height: math.unit(12, "feet"),
  10402. default: true
  10403. },
  10404. ]
  10405. ))
  10406. characterMakers.push(() => makeCharacter(
  10407. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10408. {
  10409. front: {
  10410. height: math.unit(6, "feet"),
  10411. weight: math.unit(100, "kg"),
  10412. name: "Front",
  10413. image: {
  10414. source: "./media/characters/riggi/front.svg",
  10415. extra: 5787 / 5303
  10416. }
  10417. },
  10418. hyper: {
  10419. height: math.unit(6 * 5 / 3, "feet"),
  10420. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10421. name: "Hyper",
  10422. image: {
  10423. source: "./media/characters/riggi/hyper.svg",
  10424. extra: 3595 / 3485
  10425. }
  10426. },
  10427. },
  10428. [
  10429. {
  10430. name: "Small Macro",
  10431. height: math.unit(50, "feet")
  10432. },
  10433. {
  10434. name: "Default",
  10435. height: math.unit(200, "feet"),
  10436. default: true
  10437. },
  10438. {
  10439. name: "Loom",
  10440. height: math.unit(10000, "feet")
  10441. },
  10442. {
  10443. name: "Cruising Altitude",
  10444. height: math.unit(30000, "feet")
  10445. },
  10446. {
  10447. name: "Megamacro",
  10448. height: math.unit(100, "miles")
  10449. },
  10450. {
  10451. name: "Continent Sized",
  10452. height: math.unit(2800, "miles")
  10453. },
  10454. {
  10455. name: "Earth Sized",
  10456. height: math.unit(8000, "miles")
  10457. },
  10458. ]
  10459. ))
  10460. characterMakers.push(() => makeCharacter(
  10461. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10462. {
  10463. front: {
  10464. height: math.unit(6, "feet"),
  10465. weight: math.unit(250, "lb"),
  10466. name: "Front",
  10467. image: {
  10468. source: "./media/characters/alexi/front.svg",
  10469. extra: 3483 / 3291,
  10470. bottom: 0.04
  10471. }
  10472. },
  10473. back: {
  10474. height: math.unit(6, "feet"),
  10475. weight: math.unit(250, "lb"),
  10476. name: "Back",
  10477. image: {
  10478. source: "./media/characters/alexi/back.svg",
  10479. extra: 3533 / 3356,
  10480. bottom: 0.021
  10481. }
  10482. },
  10483. frontTransforming: {
  10484. height: math.unit(8.58, "feet"),
  10485. weight: math.unit(1300, "lb"),
  10486. name: "Transforming",
  10487. image: {
  10488. source: "./media/characters/alexi/front-transforming.svg",
  10489. extra: 437 / 409,
  10490. bottom: 19 / 458.66
  10491. }
  10492. },
  10493. frontTransformed: {
  10494. height: math.unit(12.5, "feet"),
  10495. weight: math.unit(4000, "lb"),
  10496. name: "Transformed",
  10497. image: {
  10498. source: "./media/characters/alexi/front-transformed.svg",
  10499. extra: 639 / 614,
  10500. bottom: 30.55 / 671
  10501. }
  10502. },
  10503. },
  10504. [
  10505. {
  10506. name: "Normal",
  10507. height: math.unit(14, "feet"),
  10508. default: true
  10509. },
  10510. {
  10511. name: "Minimacro",
  10512. height: math.unit(30, "meters")
  10513. },
  10514. {
  10515. name: "Macro",
  10516. height: math.unit(500, "meters")
  10517. },
  10518. {
  10519. name: "Megamacro",
  10520. height: math.unit(9000, "km")
  10521. },
  10522. {
  10523. name: "Teramacro",
  10524. height: math.unit(384000, "km")
  10525. },
  10526. ]
  10527. ))
  10528. characterMakers.push(() => makeCharacter(
  10529. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10530. {
  10531. front: {
  10532. height: math.unit(6, "feet"),
  10533. weight: math.unit(150, "lb"),
  10534. name: "Front",
  10535. image: {
  10536. source: "./media/characters/kayroo/front.svg",
  10537. extra: 1153 / 1038,
  10538. bottom: 0.06
  10539. }
  10540. },
  10541. foot: {
  10542. height: math.unit(6, "feet"),
  10543. weight: math.unit(150, "lb"),
  10544. name: "Foot",
  10545. image: {
  10546. source: "./media/characters/kayroo/foot.svg"
  10547. }
  10548. },
  10549. },
  10550. [
  10551. {
  10552. name: "Normal",
  10553. height: math.unit(8, "feet"),
  10554. default: true
  10555. },
  10556. {
  10557. name: "Minimacro",
  10558. height: math.unit(250, "feet")
  10559. },
  10560. {
  10561. name: "Macro",
  10562. height: math.unit(2800, "feet")
  10563. },
  10564. {
  10565. name: "Megamacro",
  10566. height: math.unit(5200, "feet")
  10567. },
  10568. {
  10569. name: "Gigamacro",
  10570. height: math.unit(27000, "feet")
  10571. },
  10572. {
  10573. name: "Omega",
  10574. height: math.unit(45000, "feet")
  10575. },
  10576. ]
  10577. ))
  10578. characterMakers.push(() => makeCharacter(
  10579. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10580. {
  10581. front: {
  10582. height: math.unit(18, "feet"),
  10583. weight: math.unit(5800, "lb"),
  10584. name: "Front",
  10585. image: {
  10586. source: "./media/characters/rhys/front.svg",
  10587. extra: 3386 / 3090,
  10588. bottom: 0.07
  10589. }
  10590. },
  10591. },
  10592. [
  10593. {
  10594. name: "Normal",
  10595. height: math.unit(18, "feet"),
  10596. default: true
  10597. },
  10598. {
  10599. name: "Working Size",
  10600. height: math.unit(200, "feet")
  10601. },
  10602. {
  10603. name: "Demolition Size",
  10604. height: math.unit(2000, "feet")
  10605. },
  10606. {
  10607. name: "Maximum Licensed Size",
  10608. height: math.unit(5, "miles")
  10609. },
  10610. {
  10611. name: "Maximum Observed Size",
  10612. height: math.unit(10, "yottameters")
  10613. },
  10614. ]
  10615. ))
  10616. characterMakers.push(() => makeCharacter(
  10617. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10618. {
  10619. front: {
  10620. height: math.unit(6, "feet"),
  10621. weight: math.unit(250, "lb"),
  10622. name: "Front",
  10623. image: {
  10624. source: "./media/characters/toto/front.svg",
  10625. extra: 527 / 479,
  10626. bottom: 0.05
  10627. }
  10628. },
  10629. },
  10630. [
  10631. {
  10632. name: "Micro",
  10633. height: math.unit(3, "feet")
  10634. },
  10635. {
  10636. name: "Normal",
  10637. height: math.unit(10, "feet")
  10638. },
  10639. {
  10640. name: "Macro",
  10641. height: math.unit(150, "feet"),
  10642. default: true
  10643. },
  10644. {
  10645. name: "Megamacro",
  10646. height: math.unit(1200, "feet")
  10647. },
  10648. ]
  10649. ))
  10650. characterMakers.push(() => makeCharacter(
  10651. { name: "King", species: ["lion"], tags: ["anthro"] },
  10652. {
  10653. back: {
  10654. height: math.unit(6, "feet"),
  10655. weight: math.unit(150, "lb"),
  10656. name: "Back",
  10657. image: {
  10658. source: "./media/characters/king/back.svg"
  10659. }
  10660. },
  10661. },
  10662. [
  10663. {
  10664. name: "Micro",
  10665. height: math.unit(2, "inches")
  10666. },
  10667. {
  10668. name: "Normal",
  10669. height: math.unit(8, "feet")
  10670. },
  10671. {
  10672. name: "Macro",
  10673. height: math.unit(200, "feet"),
  10674. default: true
  10675. },
  10676. {
  10677. name: "Megamacro",
  10678. height: math.unit(50, "miles")
  10679. },
  10680. ]
  10681. ))
  10682. characterMakers.push(() => makeCharacter(
  10683. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10684. {
  10685. anthro: {
  10686. height: math.unit(6 + 5 / 12, "feet"),
  10687. weight: math.unit(280, "lb"),
  10688. name: "Anthro",
  10689. image: {
  10690. source: "./media/characters/cordite/anthro.svg",
  10691. extra: 1986 / 1905,
  10692. bottom: 0.025
  10693. }
  10694. },
  10695. feral: {
  10696. height: math.unit(2, "feet"),
  10697. weight: math.unit(90, "lb"),
  10698. name: "Feral",
  10699. image: {
  10700. source: "./media/characters/cordite/feral.svg",
  10701. extra: 1260 / 755,
  10702. bottom: 0.05
  10703. }
  10704. },
  10705. },
  10706. [
  10707. {
  10708. name: "Normal",
  10709. height: math.unit(6 + 5 / 12, "feet"),
  10710. default: true
  10711. },
  10712. ]
  10713. ))
  10714. characterMakers.push(() => makeCharacter(
  10715. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10716. {
  10717. front: {
  10718. height: math.unit(6, "feet"),
  10719. weight: math.unit(150, "lb"),
  10720. name: "Front",
  10721. image: {
  10722. source: "./media/characters/pianostrong/front.svg",
  10723. extra: 6577 / 6254,
  10724. bottom: 0.02
  10725. }
  10726. },
  10727. side: {
  10728. height: math.unit(6, "feet"),
  10729. weight: math.unit(150, "lb"),
  10730. name: "Side",
  10731. image: {
  10732. source: "./media/characters/pianostrong/side.svg",
  10733. extra: 6106 / 5730
  10734. }
  10735. },
  10736. back: {
  10737. height: math.unit(6, "feet"),
  10738. weight: math.unit(150, "lb"),
  10739. name: "Back",
  10740. image: {
  10741. source: "./media/characters/pianostrong/back.svg",
  10742. extra: 6085 / 5733,
  10743. bottom: 0.01
  10744. }
  10745. },
  10746. },
  10747. [
  10748. {
  10749. name: "Macro",
  10750. height: math.unit(100, "feet")
  10751. },
  10752. {
  10753. name: "Macro+",
  10754. height: math.unit(300, "feet"),
  10755. default: true
  10756. },
  10757. {
  10758. name: "Macro++",
  10759. height: math.unit(1000, "feet")
  10760. },
  10761. ]
  10762. ))
  10763. characterMakers.push(() => makeCharacter(
  10764. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10765. {
  10766. front: {
  10767. height: math.unit(6, "feet"),
  10768. weight: math.unit(150, "lb"),
  10769. name: "Front",
  10770. image: {
  10771. source: "./media/characters/kona/front.svg",
  10772. extra: 2960 / 2629,
  10773. bottom: 0.005
  10774. }
  10775. },
  10776. },
  10777. [
  10778. {
  10779. name: "Normal",
  10780. height: math.unit(11 + 8 / 12, "feet")
  10781. },
  10782. {
  10783. name: "Macro",
  10784. height: math.unit(850, "feet"),
  10785. default: true
  10786. },
  10787. {
  10788. name: "Macro+",
  10789. height: math.unit(1.5, "km"),
  10790. default: true
  10791. },
  10792. {
  10793. name: "Megamacro",
  10794. height: math.unit(80, "miles")
  10795. },
  10796. {
  10797. name: "Gigamacro",
  10798. height: math.unit(3500, "miles")
  10799. },
  10800. ]
  10801. ))
  10802. characterMakers.push(() => makeCharacter(
  10803. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10804. {
  10805. side: {
  10806. height: math.unit(1.9, "meters"),
  10807. weight: math.unit(326, "kg"),
  10808. name: "Side",
  10809. image: {
  10810. source: "./media/characters/levi/side.svg",
  10811. extra: 1704 / 1334,
  10812. bottom: 0.02
  10813. }
  10814. },
  10815. },
  10816. [
  10817. {
  10818. name: "Normal",
  10819. height: math.unit(1.9, "meters"),
  10820. default: true
  10821. },
  10822. {
  10823. name: "Macro",
  10824. height: math.unit(20, "meters")
  10825. },
  10826. {
  10827. name: "Macro+",
  10828. height: math.unit(200, "meters")
  10829. },
  10830. {
  10831. name: "Megamacro",
  10832. height: math.unit(2, "km")
  10833. },
  10834. {
  10835. name: "Megamacro+",
  10836. height: math.unit(20, "km")
  10837. },
  10838. {
  10839. name: "Gigamacro",
  10840. height: math.unit(2500, "km")
  10841. },
  10842. {
  10843. name: "Gigamacro+",
  10844. height: math.unit(120000, "km")
  10845. },
  10846. {
  10847. name: "Teramacro",
  10848. height: math.unit(7.77e6, "km")
  10849. },
  10850. ]
  10851. ))
  10852. characterMakers.push(() => makeCharacter(
  10853. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10854. {
  10855. front: {
  10856. height: math.unit(6 + 4 / 12, "feet"),
  10857. weight: math.unit(188, "lb"),
  10858. name: "Front",
  10859. image: {
  10860. source: "./media/characters/bmc/front.svg",
  10861. extra: 1067 / 1022,
  10862. bottom: 0.047
  10863. }
  10864. },
  10865. },
  10866. [
  10867. {
  10868. name: "Human-sized",
  10869. height: math.unit(6 + 4 / 12, "feet")
  10870. },
  10871. {
  10872. name: "Small",
  10873. height: math.unit(250, "feet")
  10874. },
  10875. {
  10876. name: "Normal",
  10877. height: math.unit(1250, "feet"),
  10878. default: true
  10879. },
  10880. {
  10881. name: "Good Day",
  10882. height: math.unit(88, "miles")
  10883. },
  10884. {
  10885. name: "Largest Measured Size",
  10886. height: math.unit(11.2e6, "lightyears")
  10887. },
  10888. ]
  10889. ))
  10890. characterMakers.push(() => makeCharacter(
  10891. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10892. {
  10893. front: {
  10894. height: math.unit(20, "feet"),
  10895. weight: math.unit(2016, "kg"),
  10896. name: "Front",
  10897. image: {
  10898. source: "./media/characters/sven-the-kaiju/front.svg",
  10899. extra: 1479 / 1449,
  10900. bottom: 0.05
  10901. }
  10902. },
  10903. },
  10904. [
  10905. {
  10906. name: "Fairy",
  10907. height: math.unit(6, "inches")
  10908. },
  10909. {
  10910. name: "Normal",
  10911. height: math.unit(20, "feet"),
  10912. default: true
  10913. },
  10914. {
  10915. name: "Rampage",
  10916. height: math.unit(200, "feet")
  10917. },
  10918. {
  10919. name: "Archfey Forest Guardian",
  10920. height: math.unit(1, "mile")
  10921. },
  10922. ]
  10923. ))
  10924. characterMakers.push(() => makeCharacter(
  10925. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10926. {
  10927. front: {
  10928. height: math.unit(4, "meters"),
  10929. weight: math.unit(2, "tons"),
  10930. name: "Front",
  10931. image: {
  10932. source: "./media/characters/marik/front.svg",
  10933. extra: 1057 / 1003,
  10934. bottom: 0.08
  10935. }
  10936. },
  10937. },
  10938. [
  10939. {
  10940. name: "Normal",
  10941. height: math.unit(4, "meters"),
  10942. default: true
  10943. },
  10944. {
  10945. name: "Macro",
  10946. height: math.unit(20, "meters")
  10947. },
  10948. {
  10949. name: "Megamacro",
  10950. height: math.unit(50, "km")
  10951. },
  10952. {
  10953. name: "Gigamacro",
  10954. height: math.unit(100, "km")
  10955. },
  10956. {
  10957. name: "Alpha Macro",
  10958. height: math.unit(7.88e7, "yottameters")
  10959. },
  10960. ]
  10961. ))
  10962. characterMakers.push(() => makeCharacter(
  10963. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10964. {
  10965. front: {
  10966. height: math.unit(6, "feet"),
  10967. weight: math.unit(110, "lb"),
  10968. name: "Front",
  10969. image: {
  10970. source: "./media/characters/mel/front.svg",
  10971. extra: 736 / 617,
  10972. bottom: 0.017
  10973. }
  10974. },
  10975. },
  10976. [
  10977. {
  10978. name: "Pico",
  10979. height: math.unit(3, "pm")
  10980. },
  10981. {
  10982. name: "Nano",
  10983. height: math.unit(3, "nm")
  10984. },
  10985. {
  10986. name: "Micro",
  10987. height: math.unit(0.3, "mm"),
  10988. default: true
  10989. },
  10990. {
  10991. name: "Micro+",
  10992. height: math.unit(3, "mm")
  10993. },
  10994. {
  10995. name: "Normal",
  10996. height: math.unit(5 + 10.5 / 12, "feet")
  10997. },
  10998. ]
  10999. ))
  11000. characterMakers.push(() => makeCharacter(
  11001. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11002. {
  11003. kaiju: {
  11004. height: math.unit(1.75, "meters"),
  11005. weight: math.unit(55, "kg"),
  11006. name: "Kaiju",
  11007. image: {
  11008. source: "./media/characters/lykonous/kaiju.svg",
  11009. extra: 1055 / 946,
  11010. bottom: 0.135
  11011. }
  11012. },
  11013. },
  11014. [
  11015. {
  11016. name: "Normal",
  11017. height: math.unit(2.5, "meters"),
  11018. default: true
  11019. },
  11020. {
  11021. name: "Kaiju Dragon",
  11022. height: math.unit(60, "meters")
  11023. },
  11024. {
  11025. name: "Mega Kaiju",
  11026. height: math.unit(120, "km")
  11027. },
  11028. {
  11029. name: "Giga Kaiju",
  11030. height: math.unit(200, "megameters")
  11031. },
  11032. {
  11033. name: "Terra Kaiju",
  11034. height: math.unit(400, "gigameters")
  11035. },
  11036. {
  11037. name: "Kaiju Dragon God",
  11038. height: math.unit(13000, "exaparsecs")
  11039. },
  11040. ]
  11041. ))
  11042. characterMakers.push(() => makeCharacter(
  11043. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11044. {
  11045. front: {
  11046. height: math.unit(6, "feet"),
  11047. weight: math.unit(150, "lb"),
  11048. name: "Front",
  11049. image: {
  11050. source: "./media/characters/blü/front.svg",
  11051. extra: 1883 / 1564,
  11052. bottom: 0.031
  11053. }
  11054. },
  11055. },
  11056. [
  11057. {
  11058. name: "Normal",
  11059. height: math.unit(13, "feet"),
  11060. default: true
  11061. },
  11062. {
  11063. name: "Big Boi",
  11064. height: math.unit(150, "meters")
  11065. },
  11066. {
  11067. name: "Mini Stomper",
  11068. height: math.unit(300, "meters")
  11069. },
  11070. {
  11071. name: "Macro",
  11072. height: math.unit(1000, "meters")
  11073. },
  11074. {
  11075. name: "Megamacro",
  11076. height: math.unit(11000, "meters")
  11077. },
  11078. {
  11079. name: "Gigamacro",
  11080. height: math.unit(11000, "km")
  11081. },
  11082. {
  11083. name: "Teramacro",
  11084. height: math.unit(420000, "km")
  11085. },
  11086. {
  11087. name: "Examacro",
  11088. height: math.unit(120, "parsecs")
  11089. },
  11090. {
  11091. name: "God Tho",
  11092. height: math.unit(98000000000, "parsecs")
  11093. },
  11094. ]
  11095. ))
  11096. characterMakers.push(() => makeCharacter(
  11097. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11098. {
  11099. taurFront: {
  11100. height: math.unit(6, "feet"),
  11101. weight: math.unit(200, "lb"),
  11102. name: "Taur (Front)",
  11103. image: {
  11104. source: "./media/characters/scales/taur-front.svg",
  11105. extra: 1,
  11106. bottom: 0.05
  11107. }
  11108. },
  11109. taurBack: {
  11110. height: math.unit(6, "feet"),
  11111. weight: math.unit(200, "lb"),
  11112. name: "Taur (Back)",
  11113. image: {
  11114. source: "./media/characters/scales/taur-back.svg",
  11115. extra: 1,
  11116. bottom: 0.08
  11117. }
  11118. },
  11119. anthro: {
  11120. height: math.unit(6 * 7 / 12, "feet"),
  11121. weight: math.unit(100, "lb"),
  11122. name: "Anthro",
  11123. image: {
  11124. source: "./media/characters/scales/anthro.svg",
  11125. extra: 1,
  11126. bottom: 0.06
  11127. }
  11128. },
  11129. },
  11130. [
  11131. {
  11132. name: "Normal",
  11133. height: math.unit(12, "feet"),
  11134. default: true
  11135. },
  11136. ]
  11137. ))
  11138. characterMakers.push(() => makeCharacter(
  11139. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11140. {
  11141. front: {
  11142. height: math.unit(6, "feet"),
  11143. weight: math.unit(150, "lb"),
  11144. name: "Front",
  11145. image: {
  11146. source: "./media/characters/koragos/front.svg",
  11147. extra: 841 / 794,
  11148. bottom: 0.035
  11149. }
  11150. },
  11151. back: {
  11152. height: math.unit(6, "feet"),
  11153. weight: math.unit(150, "lb"),
  11154. name: "Back",
  11155. image: {
  11156. source: "./media/characters/koragos/back.svg",
  11157. extra: 841 / 810,
  11158. bottom: 0.022
  11159. }
  11160. },
  11161. },
  11162. [
  11163. {
  11164. name: "Normal",
  11165. height: math.unit(6 + 11 / 12, "feet"),
  11166. default: true
  11167. },
  11168. {
  11169. name: "Macro",
  11170. height: math.unit(490, "feet")
  11171. },
  11172. {
  11173. name: "Megamacro",
  11174. height: math.unit(10, "miles")
  11175. },
  11176. {
  11177. name: "Gigamacro",
  11178. height: math.unit(50, "miles")
  11179. },
  11180. ]
  11181. ))
  11182. characterMakers.push(() => makeCharacter(
  11183. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11184. {
  11185. front: {
  11186. height: math.unit(6, "feet"),
  11187. weight: math.unit(250, "lb"),
  11188. name: "Front",
  11189. image: {
  11190. source: "./media/characters/xylrem/front.svg",
  11191. extra: 3323 / 3050,
  11192. bottom: 0.065
  11193. }
  11194. },
  11195. },
  11196. [
  11197. {
  11198. name: "Micro",
  11199. height: math.unit(4, "feet")
  11200. },
  11201. {
  11202. name: "Normal",
  11203. height: math.unit(16, "feet"),
  11204. default: true
  11205. },
  11206. {
  11207. name: "Macro",
  11208. height: math.unit(2720, "feet")
  11209. },
  11210. {
  11211. name: "Megamacro",
  11212. height: math.unit(25000, "miles")
  11213. },
  11214. ]
  11215. ))
  11216. characterMakers.push(() => makeCharacter(
  11217. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11218. {
  11219. front: {
  11220. height: math.unit(8, "feet"),
  11221. weight: math.unit(250, "kg"),
  11222. name: "Front",
  11223. image: {
  11224. source: "./media/characters/ikideru/front.svg",
  11225. extra: 930 / 870,
  11226. bottom: 0.087
  11227. }
  11228. },
  11229. back: {
  11230. height: math.unit(8, "feet"),
  11231. weight: math.unit(250, "kg"),
  11232. name: "Back",
  11233. image: {
  11234. source: "./media/characters/ikideru/back.svg",
  11235. extra: 919 / 852,
  11236. bottom: 0.055
  11237. }
  11238. },
  11239. },
  11240. [
  11241. {
  11242. name: "Rare",
  11243. height: math.unit(8, "feet"),
  11244. default: true
  11245. },
  11246. {
  11247. name: "Playful Loom",
  11248. height: math.unit(80, "feet")
  11249. },
  11250. {
  11251. name: "City Leaner",
  11252. height: math.unit(230, "feet")
  11253. },
  11254. {
  11255. name: "Megamacro",
  11256. height: math.unit(2500, "feet")
  11257. },
  11258. {
  11259. name: "Gigamacro",
  11260. height: math.unit(26400, "feet")
  11261. },
  11262. {
  11263. name: "Tectonic Shifter",
  11264. height: math.unit(1.7, "megameters")
  11265. },
  11266. {
  11267. name: "Planet Carer",
  11268. height: math.unit(21, "megameters")
  11269. },
  11270. {
  11271. name: "God",
  11272. height: math.unit(11157.22, "parsecs")
  11273. },
  11274. ]
  11275. ))
  11276. characterMakers.push(() => makeCharacter(
  11277. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11278. {
  11279. front: {
  11280. height: math.unit(6, "feet"),
  11281. weight: math.unit(120, "lb"),
  11282. name: "Front",
  11283. image: {
  11284. source: "./media/characters/neo/front.svg"
  11285. }
  11286. },
  11287. },
  11288. [
  11289. {
  11290. name: "Micro",
  11291. height: math.unit(2, "inches"),
  11292. default: true
  11293. },
  11294. {
  11295. name: "Human Size",
  11296. height: math.unit(5 + 8 / 12, "feet")
  11297. },
  11298. ]
  11299. ))
  11300. characterMakers.push(() => makeCharacter(
  11301. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11302. {
  11303. front: {
  11304. height: math.unit(13 + 10 / 12, "feet"),
  11305. weight: math.unit(5320, "lb"),
  11306. name: "Front",
  11307. image: {
  11308. source: "./media/characters/chauncey-chantz/front.svg",
  11309. extra: 1587 / 1435,
  11310. bottom: 0.02
  11311. }
  11312. },
  11313. },
  11314. [
  11315. {
  11316. name: "Normal",
  11317. height: math.unit(13 + 10 / 12, "feet"),
  11318. default: true
  11319. },
  11320. {
  11321. name: "Macro",
  11322. height: math.unit(45, "feet")
  11323. },
  11324. {
  11325. name: "Megamacro",
  11326. height: math.unit(250, "miles")
  11327. },
  11328. {
  11329. name: "Planetary",
  11330. height: math.unit(10000, "miles")
  11331. },
  11332. {
  11333. name: "Galactic",
  11334. height: math.unit(40000, "parsecs")
  11335. },
  11336. {
  11337. name: "Universal",
  11338. height: math.unit(1, "yottameter")
  11339. },
  11340. ]
  11341. ))
  11342. characterMakers.push(() => makeCharacter(
  11343. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11344. {
  11345. front: {
  11346. height: math.unit(6, "feet"),
  11347. weight: math.unit(150, "lb"),
  11348. name: "Front",
  11349. image: {
  11350. source: "./media/characters/epifox/front.svg",
  11351. extra: 1,
  11352. bottom: 0.075
  11353. }
  11354. },
  11355. },
  11356. [
  11357. {
  11358. name: "Micro",
  11359. height: math.unit(6, "inches")
  11360. },
  11361. {
  11362. name: "Normal",
  11363. height: math.unit(12, "feet"),
  11364. default: true
  11365. },
  11366. {
  11367. name: "Macro",
  11368. height: math.unit(3810, "feet")
  11369. },
  11370. {
  11371. name: "Megamacro",
  11372. height: math.unit(500, "miles")
  11373. },
  11374. ]
  11375. ))
  11376. characterMakers.push(() => makeCharacter(
  11377. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11378. {
  11379. front: {
  11380. height: math.unit(1.8796, "m"),
  11381. weight: math.unit(230, "lb"),
  11382. name: "Front",
  11383. image: {
  11384. source: "./media/characters/colin-t/front.svg",
  11385. extra: 1272 / 1193,
  11386. bottom: 0.07
  11387. }
  11388. },
  11389. },
  11390. [
  11391. {
  11392. name: "Micro",
  11393. height: math.unit(0.571, "meters")
  11394. },
  11395. {
  11396. name: "Normal",
  11397. height: math.unit(1.8796, "meters"),
  11398. default: true
  11399. },
  11400. {
  11401. name: "Tall",
  11402. height: math.unit(4, "meters")
  11403. },
  11404. {
  11405. name: "Macro",
  11406. height: math.unit(67.241, "meters")
  11407. },
  11408. {
  11409. name: "Megamacro",
  11410. height: math.unit(371.856, "meters")
  11411. },
  11412. {
  11413. name: "Planetary",
  11414. height: math.unit(12631.5689, "km")
  11415. },
  11416. ]
  11417. ))
  11418. characterMakers.push(() => makeCharacter(
  11419. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11420. {
  11421. front: {
  11422. height: math.unit(1.85, "meters"),
  11423. weight: math.unit(80, "kg"),
  11424. name: "Front",
  11425. image: {
  11426. source: "./media/characters/matvei/front.svg",
  11427. extra: 614 / 594,
  11428. bottom: 0.01
  11429. }
  11430. },
  11431. },
  11432. [
  11433. {
  11434. name: "Normal",
  11435. height: math.unit(1.85, "meters"),
  11436. default: true
  11437. },
  11438. ]
  11439. ))
  11440. characterMakers.push(() => makeCharacter(
  11441. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11442. {
  11443. front: {
  11444. height: math.unit(5 + 9 / 12, "feet"),
  11445. weight: math.unit(70, "lb"),
  11446. name: "Front",
  11447. image: {
  11448. source: "./media/characters/quincy/front.svg",
  11449. extra: 3041 / 2751
  11450. }
  11451. },
  11452. back: {
  11453. height: math.unit(5 + 9 / 12, "feet"),
  11454. weight: math.unit(70, "lb"),
  11455. name: "Back",
  11456. image: {
  11457. source: "./media/characters/quincy/back.svg",
  11458. extra: 3041 / 2751
  11459. }
  11460. },
  11461. flying: {
  11462. height: math.unit(5 + 4 / 12, "feet"),
  11463. weight: math.unit(70, "lb"),
  11464. name: "Flying",
  11465. image: {
  11466. source: "./media/characters/quincy/flying.svg",
  11467. extra: 1044 / 930
  11468. }
  11469. },
  11470. },
  11471. [
  11472. {
  11473. name: "Micro",
  11474. height: math.unit(3, "cm")
  11475. },
  11476. {
  11477. name: "Normal",
  11478. height: math.unit(5 + 9 / 12, "feet")
  11479. },
  11480. {
  11481. name: "Macro",
  11482. height: math.unit(200, "meters"),
  11483. default: true
  11484. },
  11485. {
  11486. name: "Megamacro",
  11487. height: math.unit(1000, "meters")
  11488. },
  11489. ]
  11490. ))
  11491. characterMakers.push(() => makeCharacter(
  11492. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11493. {
  11494. front: {
  11495. height: math.unit(4 + 7 / 12, "feet"),
  11496. weight: math.unit(50, "lb"),
  11497. name: "Front",
  11498. image: {
  11499. source: "./media/characters/vanrel/front.svg",
  11500. extra: 1,
  11501. bottom: 0.02
  11502. }
  11503. },
  11504. frontAlt: {
  11505. height: math.unit(4 + 7 / 12, "feet"),
  11506. weight: math.unit(50, "lb"),
  11507. name: "Front-alt",
  11508. image: {
  11509. source: "./media/characters/vanrel/front-alt.svg",
  11510. extra: 1,
  11511. bottom: 15 / 1511
  11512. }
  11513. },
  11514. elemental: {
  11515. height: math.unit(3, "feet"),
  11516. weight: math.unit(50, "lb"),
  11517. name: "Elemental",
  11518. image: {
  11519. source: "./media/characters/vanrel/elemental.svg",
  11520. extra: 192.3 / 162.8,
  11521. bottom: 1.79 / 194.17
  11522. }
  11523. },
  11524. side: {
  11525. height: math.unit(4 + 7 / 12, "feet"),
  11526. weight: math.unit(50, "lb"),
  11527. name: "Side",
  11528. image: {
  11529. source: "./media/characters/vanrel/side.svg",
  11530. extra: 1,
  11531. bottom: 0.025
  11532. }
  11533. },
  11534. tome: {
  11535. height: math.unit(1.35, "feet"),
  11536. weight: math.unit(10, "lb"),
  11537. name: "Vanrel's Tome",
  11538. rename: true,
  11539. image: {
  11540. source: "./media/characters/vanrel/tome.svg"
  11541. }
  11542. },
  11543. beans: {
  11544. height: math.unit(0.89, "feet"),
  11545. name: "Beans",
  11546. image: {
  11547. source: "./media/characters/vanrel/beans.svg"
  11548. }
  11549. },
  11550. },
  11551. [
  11552. {
  11553. name: "Normal",
  11554. height: math.unit(4 + 7 / 12, "feet"),
  11555. default: true
  11556. },
  11557. ]
  11558. ))
  11559. characterMakers.push(() => makeCharacter(
  11560. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11561. {
  11562. front: {
  11563. height: math.unit(7 + 5 / 12, "feet"),
  11564. weight: math.unit(150, "lb"),
  11565. name: "Front",
  11566. image: {
  11567. source: "./media/characters/kuiper-vanrel/front.svg",
  11568. extra: 1118 / 1068,
  11569. bottom: 0.09
  11570. }
  11571. },
  11572. foot: {
  11573. height: math.unit(0.55, "meters"),
  11574. name: "Foot",
  11575. image: {
  11576. source: "./media/characters/kuiper-vanrel/foot.svg",
  11577. }
  11578. },
  11579. battle: {
  11580. height: math.unit(6.824, "feet"),
  11581. weight: math.unit(150, "lb"),
  11582. name: "Battle",
  11583. image: {
  11584. source: "./media/characters/kuiper-vanrel/battle.svg",
  11585. extra: 1466 / 1327,
  11586. bottom: 29 / 1492.5
  11587. }
  11588. },
  11589. battleAlt: {
  11590. height: math.unit(6.824, "feet"),
  11591. weight: math.unit(150, "lb"),
  11592. name: "Battle (Alt)",
  11593. image: {
  11594. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11595. extra: 2081 / 1965,
  11596. bottom: 40 / 2121
  11597. }
  11598. },
  11599. },
  11600. [
  11601. {
  11602. name: "Normal",
  11603. height: math.unit(7 + 5 / 12, "feet"),
  11604. default: true
  11605. },
  11606. ]
  11607. ))
  11608. characterMakers.push(() => makeCharacter(
  11609. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11610. {
  11611. front: {
  11612. height: math.unit(8 + 5 / 12, "feet"),
  11613. weight: math.unit(150, "lb"),
  11614. name: "Front",
  11615. image: {
  11616. source: "./media/characters/keset-vanrel/front.svg",
  11617. extra: 1150 / 1084,
  11618. bottom: 0.05
  11619. }
  11620. },
  11621. hand: {
  11622. height: math.unit(0.6, "meters"),
  11623. name: "Hand",
  11624. image: {
  11625. source: "./media/characters/keset-vanrel/hand.svg"
  11626. }
  11627. },
  11628. foot: {
  11629. height: math.unit(0.94978, "meters"),
  11630. name: "Foot",
  11631. image: {
  11632. source: "./media/characters/keset-vanrel/foot.svg"
  11633. }
  11634. },
  11635. battle: {
  11636. height: math.unit(7.408, "feet"),
  11637. weight: math.unit(150, "lb"),
  11638. name: "Battle",
  11639. image: {
  11640. source: "./media/characters/keset-vanrel/battle.svg",
  11641. extra: 1890 / 1386,
  11642. bottom: 73.28 / 1970
  11643. }
  11644. },
  11645. },
  11646. [
  11647. {
  11648. name: "Normal",
  11649. height: math.unit(8 + 5 / 12, "feet"),
  11650. default: true
  11651. },
  11652. ]
  11653. ))
  11654. characterMakers.push(() => makeCharacter(
  11655. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11656. {
  11657. front: {
  11658. height: math.unit(6, "feet"),
  11659. weight: math.unit(150, "lb"),
  11660. name: "Front",
  11661. image: {
  11662. source: "./media/characters/neos/front.svg",
  11663. extra: 1696 / 992,
  11664. bottom: 0.14
  11665. }
  11666. },
  11667. },
  11668. [
  11669. {
  11670. name: "Normal",
  11671. height: math.unit(54, "cm"),
  11672. default: true
  11673. },
  11674. {
  11675. name: "Macro",
  11676. height: math.unit(100, "m")
  11677. },
  11678. {
  11679. name: "Megamacro",
  11680. height: math.unit(10, "km")
  11681. },
  11682. {
  11683. name: "Megamacro+",
  11684. height: math.unit(100, "km")
  11685. },
  11686. {
  11687. name: "Gigamacro",
  11688. height: math.unit(100, "Mm")
  11689. },
  11690. {
  11691. name: "Teramacro",
  11692. height: math.unit(100, "Gm")
  11693. },
  11694. {
  11695. name: "Examacro",
  11696. height: math.unit(100, "Em")
  11697. },
  11698. {
  11699. name: "Godly",
  11700. height: math.unit(10000, "Ym")
  11701. },
  11702. {
  11703. name: "Beyond Godly",
  11704. height: math.unit(25, "multiverses")
  11705. },
  11706. ]
  11707. ))
  11708. characterMakers.push(() => makeCharacter(
  11709. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11710. {
  11711. feminine: {
  11712. height: math.unit(5, "feet"),
  11713. weight: math.unit(100, "lb"),
  11714. name: "Feminine",
  11715. image: {
  11716. source: "./media/characters/sammy-mouse/feminine.svg",
  11717. extra: 2526 / 2425,
  11718. bottom: 0.123
  11719. }
  11720. },
  11721. masculine: {
  11722. height: math.unit(5, "feet"),
  11723. weight: math.unit(100, "lb"),
  11724. name: "Masculine",
  11725. image: {
  11726. source: "./media/characters/sammy-mouse/masculine.svg",
  11727. extra: 2526 / 2425,
  11728. bottom: 0.123
  11729. }
  11730. },
  11731. },
  11732. [
  11733. {
  11734. name: "Micro",
  11735. height: math.unit(5, "inches")
  11736. },
  11737. {
  11738. name: "Normal",
  11739. height: math.unit(5, "feet"),
  11740. default: true
  11741. },
  11742. {
  11743. name: "Macro",
  11744. height: math.unit(60, "feet")
  11745. },
  11746. ]
  11747. ))
  11748. characterMakers.push(() => makeCharacter(
  11749. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11750. {
  11751. front: {
  11752. height: math.unit(4, "feet"),
  11753. weight: math.unit(50, "lb"),
  11754. name: "Front",
  11755. image: {
  11756. source: "./media/characters/kole/front.svg",
  11757. extra: 1423 / 1303,
  11758. bottom: 0.025
  11759. }
  11760. },
  11761. back: {
  11762. height: math.unit(4, "feet"),
  11763. weight: math.unit(50, "lb"),
  11764. name: "Back",
  11765. image: {
  11766. source: "./media/characters/kole/back.svg",
  11767. extra: 1426 / 1280,
  11768. bottom: 0.02
  11769. }
  11770. },
  11771. },
  11772. [
  11773. {
  11774. name: "Normal",
  11775. height: math.unit(4, "feet"),
  11776. default: true
  11777. },
  11778. ]
  11779. ))
  11780. characterMakers.push(() => makeCharacter(
  11781. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11782. {
  11783. front: {
  11784. height: math.unit(2 + 6 / 12, "feet"),
  11785. weight: math.unit(20, "lb"),
  11786. name: "Front",
  11787. image: {
  11788. source: "./media/characters/rufran/front.svg",
  11789. extra: 2041 / 1839,
  11790. bottom: 0.055
  11791. }
  11792. },
  11793. back: {
  11794. height: math.unit(2 + 6 / 12, "feet"),
  11795. weight: math.unit(20, "lb"),
  11796. name: "Back",
  11797. image: {
  11798. source: "./media/characters/rufran/back.svg",
  11799. extra: 2054 / 1839,
  11800. bottom: 0.01
  11801. }
  11802. },
  11803. hand: {
  11804. height: math.unit(0.2166, "meters"),
  11805. name: "Hand",
  11806. image: {
  11807. source: "./media/characters/rufran/hand.svg"
  11808. }
  11809. },
  11810. foot: {
  11811. height: math.unit(0.185, "meters"),
  11812. name: "Foot",
  11813. image: {
  11814. source: "./media/characters/rufran/foot.svg"
  11815. }
  11816. },
  11817. },
  11818. [
  11819. {
  11820. name: "Micro",
  11821. height: math.unit(1, "inch")
  11822. },
  11823. {
  11824. name: "Normal",
  11825. height: math.unit(2 + 6 / 12, "feet"),
  11826. default: true
  11827. },
  11828. {
  11829. name: "Big",
  11830. height: math.unit(60, "feet")
  11831. },
  11832. {
  11833. name: "Macro",
  11834. height: math.unit(325, "feet")
  11835. },
  11836. ]
  11837. ))
  11838. characterMakers.push(() => makeCharacter(
  11839. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11840. {
  11841. front: {
  11842. height: math.unit(0.3, "meters"),
  11843. weight: math.unit(3.5, "kg"),
  11844. name: "Front",
  11845. image: {
  11846. source: "./media/characters/chip/front.svg",
  11847. extra: 748 / 674
  11848. }
  11849. },
  11850. },
  11851. [
  11852. {
  11853. name: "Micro",
  11854. height: math.unit(1, "inch"),
  11855. default: true
  11856. },
  11857. ]
  11858. ))
  11859. characterMakers.push(() => makeCharacter(
  11860. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11861. {
  11862. side: {
  11863. height: math.unit(2.3, "meters"),
  11864. weight: math.unit(3500, "lb"),
  11865. name: "Side",
  11866. image: {
  11867. source: "./media/characters/torvid/side.svg",
  11868. extra: 1972 / 722,
  11869. bottom: 0.035
  11870. }
  11871. },
  11872. },
  11873. [
  11874. {
  11875. name: "Normal",
  11876. height: math.unit(2.3, "meters"),
  11877. default: true
  11878. },
  11879. ]
  11880. ))
  11881. characterMakers.push(() => makeCharacter(
  11882. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11883. {
  11884. front: {
  11885. height: math.unit(2, "meters"),
  11886. weight: math.unit(150.5, "kg"),
  11887. name: "Front",
  11888. image: {
  11889. source: "./media/characters/susan/front.svg",
  11890. extra: 693 / 635,
  11891. bottom: 0.05
  11892. }
  11893. },
  11894. },
  11895. [
  11896. {
  11897. name: "Megamacro",
  11898. height: math.unit(505, "miles"),
  11899. default: true
  11900. },
  11901. ]
  11902. ))
  11903. characterMakers.push(() => makeCharacter(
  11904. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11905. {
  11906. front: {
  11907. height: math.unit(6, "feet"),
  11908. weight: math.unit(150, "lb"),
  11909. name: "Front",
  11910. image: {
  11911. source: "./media/characters/raindrops/front.svg",
  11912. extra: 2655 / 2461,
  11913. bottom: 49 / 2705
  11914. }
  11915. },
  11916. back: {
  11917. height: math.unit(6, "feet"),
  11918. weight: math.unit(150, "lb"),
  11919. name: "Back",
  11920. image: {
  11921. source: "./media/characters/raindrops/back.svg",
  11922. extra: 2574 / 2400,
  11923. bottom: 65 / 2634
  11924. }
  11925. },
  11926. },
  11927. [
  11928. {
  11929. name: "Micro",
  11930. height: math.unit(6, "inches")
  11931. },
  11932. {
  11933. name: "Normal",
  11934. height: math.unit(6 + 2 / 12, "feet")
  11935. },
  11936. {
  11937. name: "Macro",
  11938. height: math.unit(131, "feet"),
  11939. default: true
  11940. },
  11941. {
  11942. name: "Megamacro",
  11943. height: math.unit(15, "miles")
  11944. },
  11945. {
  11946. name: "Gigamacro",
  11947. height: math.unit(4000, "miles")
  11948. },
  11949. {
  11950. name: "Teramacro",
  11951. height: math.unit(315000, "miles")
  11952. },
  11953. ]
  11954. ))
  11955. characterMakers.push(() => makeCharacter(
  11956. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11957. {
  11958. front: {
  11959. height: math.unit(2.794, "meters"),
  11960. weight: math.unit(325, "kg"),
  11961. name: "Front",
  11962. image: {
  11963. source: "./media/characters/tezwa/front.svg",
  11964. extra: 2083 / 1906,
  11965. bottom: 0.031
  11966. }
  11967. },
  11968. foot: {
  11969. height: math.unit(0.687, "meters"),
  11970. name: "Foot",
  11971. image: {
  11972. source: "./media/characters/tezwa/foot.svg"
  11973. }
  11974. },
  11975. },
  11976. [
  11977. {
  11978. name: "Normal",
  11979. height: math.unit(9 + 2 / 12, "feet"),
  11980. default: true
  11981. },
  11982. ]
  11983. ))
  11984. characterMakers.push(() => makeCharacter(
  11985. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11986. {
  11987. front: {
  11988. height: math.unit(58, "feet"),
  11989. weight: math.unit(89000, "lb"),
  11990. name: "Front",
  11991. image: {
  11992. source: "./media/characters/typhus/front.svg",
  11993. extra: 816 / 800,
  11994. bottom: 0.065
  11995. }
  11996. },
  11997. },
  11998. [
  11999. {
  12000. name: "Macro",
  12001. height: math.unit(58, "feet"),
  12002. default: true
  12003. },
  12004. ]
  12005. ))
  12006. characterMakers.push(() => makeCharacter(
  12007. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12008. {
  12009. front: {
  12010. height: math.unit(12, "feet"),
  12011. weight: math.unit(6, "tonnes"),
  12012. name: "Front",
  12013. image: {
  12014. source: "./media/characters/lyra-von-wulf/front.svg",
  12015. extra: 1,
  12016. bottom: 0.10
  12017. }
  12018. },
  12019. frontMecha: {
  12020. height: math.unit(12, "feet"),
  12021. weight: math.unit(12, "tonnes"),
  12022. name: "Front (Mecha)",
  12023. image: {
  12024. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12025. extra: 1,
  12026. bottom: 0.042
  12027. }
  12028. },
  12029. maw: {
  12030. height: math.unit(2.2, "feet"),
  12031. name: "Maw",
  12032. image: {
  12033. source: "./media/characters/lyra-von-wulf/maw.svg"
  12034. }
  12035. },
  12036. },
  12037. [
  12038. {
  12039. name: "Normal",
  12040. height: math.unit(12, "feet"),
  12041. default: true
  12042. },
  12043. {
  12044. name: "Classic",
  12045. height: math.unit(50, "feet")
  12046. },
  12047. {
  12048. name: "Macro",
  12049. height: math.unit(500, "feet")
  12050. },
  12051. {
  12052. name: "Megamacro",
  12053. height: math.unit(1, "mile")
  12054. },
  12055. {
  12056. name: "Gigamacro",
  12057. height: math.unit(400, "miles")
  12058. },
  12059. {
  12060. name: "Teramacro",
  12061. height: math.unit(22000, "miles")
  12062. },
  12063. {
  12064. name: "Solarmacro",
  12065. height: math.unit(8600000, "miles")
  12066. },
  12067. {
  12068. name: "Galactic",
  12069. height: math.unit(1057000, "lightyears")
  12070. },
  12071. ]
  12072. ))
  12073. characterMakers.push(() => makeCharacter(
  12074. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12075. {
  12076. front: {
  12077. height: math.unit(6 + 10 / 12, "feet"),
  12078. weight: math.unit(150, "lb"),
  12079. name: "Front",
  12080. image: {
  12081. source: "./media/characters/dixon/front.svg",
  12082. extra: 3361 / 3209,
  12083. bottom: 0.01
  12084. }
  12085. },
  12086. },
  12087. [
  12088. {
  12089. name: "Normal",
  12090. height: math.unit(6 + 10 / 12, "feet"),
  12091. default: true
  12092. },
  12093. {
  12094. name: "Big",
  12095. height: math.unit(12, "meters")
  12096. },
  12097. {
  12098. name: "Macro",
  12099. height: math.unit(500, "meters")
  12100. },
  12101. {
  12102. name: "Megamacro",
  12103. height: math.unit(2, "km")
  12104. },
  12105. ]
  12106. ))
  12107. characterMakers.push(() => makeCharacter(
  12108. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12109. {
  12110. front: {
  12111. height: math.unit(185, "cm"),
  12112. weight: math.unit(68, "kg"),
  12113. name: "Front",
  12114. image: {
  12115. source: "./media/characters/kauko/front.svg",
  12116. extra: 1455 / 1421,
  12117. bottom: 0.03
  12118. }
  12119. },
  12120. back: {
  12121. height: math.unit(185, "cm"),
  12122. weight: math.unit(68, "kg"),
  12123. name: "Back",
  12124. image: {
  12125. source: "./media/characters/kauko/back.svg",
  12126. extra: 1455 / 1421,
  12127. bottom: 0.004
  12128. }
  12129. },
  12130. },
  12131. [
  12132. {
  12133. name: "Normal",
  12134. height: math.unit(185, "cm"),
  12135. default: true
  12136. },
  12137. ]
  12138. ))
  12139. characterMakers.push(() => makeCharacter(
  12140. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12141. {
  12142. front: {
  12143. height: math.unit(6, "feet"),
  12144. weight: math.unit(150, "kg"),
  12145. name: "Front",
  12146. image: {
  12147. source: "./media/characters/varg/front.svg",
  12148. extra: 1108 / 1018,
  12149. bottom: 0.0375
  12150. }
  12151. },
  12152. },
  12153. [
  12154. {
  12155. name: "Normal",
  12156. height: math.unit(5, "meters")
  12157. },
  12158. {
  12159. name: "Macro",
  12160. height: math.unit(200, "meters")
  12161. },
  12162. {
  12163. name: "Megamacro",
  12164. height: math.unit(20, "kilometers")
  12165. },
  12166. {
  12167. name: "True Size",
  12168. height: math.unit(211, "km"),
  12169. default: true
  12170. },
  12171. {
  12172. name: "Gigamacro",
  12173. height: math.unit(1000, "km")
  12174. },
  12175. {
  12176. name: "Gigamacro+",
  12177. height: math.unit(8000, "km")
  12178. },
  12179. {
  12180. name: "Teramacro",
  12181. height: math.unit(1000000, "km")
  12182. },
  12183. ]
  12184. ))
  12185. characterMakers.push(() => makeCharacter(
  12186. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12187. {
  12188. front: {
  12189. height: math.unit(7 + 7 / 12, "feet"),
  12190. weight: math.unit(267, "lb"),
  12191. name: "Front",
  12192. image: {
  12193. source: "./media/characters/dayza/front.svg",
  12194. extra: 1262 / 1200,
  12195. bottom: 0.035
  12196. }
  12197. },
  12198. side: {
  12199. height: math.unit(7 + 7 / 12, "feet"),
  12200. weight: math.unit(267, "lb"),
  12201. name: "Side",
  12202. image: {
  12203. source: "./media/characters/dayza/side.svg",
  12204. extra: 1295 / 1245,
  12205. bottom: 0.05
  12206. }
  12207. },
  12208. back: {
  12209. height: math.unit(7 + 7 / 12, "feet"),
  12210. weight: math.unit(267, "lb"),
  12211. name: "Back",
  12212. image: {
  12213. source: "./media/characters/dayza/back.svg",
  12214. extra: 1241 / 1170
  12215. }
  12216. },
  12217. },
  12218. [
  12219. {
  12220. name: "Normal",
  12221. height: math.unit(7 + 7 / 12, "feet"),
  12222. default: true
  12223. },
  12224. {
  12225. name: "Macro",
  12226. height: math.unit(155, "feet")
  12227. },
  12228. ]
  12229. ))
  12230. characterMakers.push(() => makeCharacter(
  12231. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12232. {
  12233. front: {
  12234. height: math.unit(6 + 5 / 12, "feet"),
  12235. weight: math.unit(160, "lb"),
  12236. name: "Front",
  12237. image: {
  12238. source: "./media/characters/xanthos/front.svg",
  12239. extra: 1,
  12240. bottom: 0.04
  12241. }
  12242. },
  12243. back: {
  12244. height: math.unit(6 + 5 / 12, "feet"),
  12245. weight: math.unit(160, "lb"),
  12246. name: "Back",
  12247. image: {
  12248. source: "./media/characters/xanthos/back.svg",
  12249. extra: 1,
  12250. bottom: 0.03
  12251. }
  12252. },
  12253. hand: {
  12254. height: math.unit(0.928, "feet"),
  12255. name: "Hand",
  12256. image: {
  12257. source: "./media/characters/xanthos/hand.svg"
  12258. }
  12259. },
  12260. foot: {
  12261. height: math.unit(1.286, "feet"),
  12262. name: "Foot",
  12263. image: {
  12264. source: "./media/characters/xanthos/foot.svg"
  12265. }
  12266. },
  12267. },
  12268. [
  12269. {
  12270. name: "Normal",
  12271. height: math.unit(6 + 5 / 12, "feet"),
  12272. default: true
  12273. },
  12274. {
  12275. name: "Normal+",
  12276. height: math.unit(6, "meters")
  12277. },
  12278. {
  12279. name: "Macro",
  12280. height: math.unit(40, "feet")
  12281. },
  12282. {
  12283. name: "Macro+",
  12284. height: math.unit(200, "meters")
  12285. },
  12286. {
  12287. name: "Megamacro",
  12288. height: math.unit(20, "km")
  12289. },
  12290. {
  12291. name: "Megamacro+",
  12292. height: math.unit(100, "km")
  12293. },
  12294. ]
  12295. ))
  12296. characterMakers.push(() => makeCharacter(
  12297. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12298. {
  12299. front: {
  12300. height: math.unit(6 + 3 / 12, "feet"),
  12301. weight: math.unit(215, "lb"),
  12302. name: "Front",
  12303. image: {
  12304. source: "./media/characters/grynn/front.svg",
  12305. extra: 4627 / 4209,
  12306. bottom: 0.047
  12307. }
  12308. },
  12309. },
  12310. [
  12311. {
  12312. name: "Micro",
  12313. height: math.unit(6, "inches")
  12314. },
  12315. {
  12316. name: "Normal",
  12317. height: math.unit(6 + 3 / 12, "feet"),
  12318. default: true
  12319. },
  12320. {
  12321. name: "Big",
  12322. height: math.unit(104, "feet")
  12323. },
  12324. {
  12325. name: "Macro",
  12326. height: math.unit(944, "feet")
  12327. },
  12328. {
  12329. name: "Macro+",
  12330. height: math.unit(9480, "feet")
  12331. },
  12332. {
  12333. name: "Megamacro",
  12334. height: math.unit(78752, "feet")
  12335. },
  12336. {
  12337. name: "Megamacro+",
  12338. height: math.unit(630128, "feet")
  12339. },
  12340. {
  12341. name: "Megamacro++",
  12342. height: math.unit(3150695, "feet")
  12343. },
  12344. ]
  12345. ))
  12346. characterMakers.push(() => makeCharacter(
  12347. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12348. {
  12349. front: {
  12350. height: math.unit(7 + 5 / 12, "feet"),
  12351. weight: math.unit(450, "lb"),
  12352. name: "Front",
  12353. image: {
  12354. source: "./media/characters/mocha-aura/front.svg",
  12355. extra: 1907 / 1817,
  12356. bottom: 0.04
  12357. }
  12358. },
  12359. back: {
  12360. height: math.unit(7 + 5 / 12, "feet"),
  12361. weight: math.unit(450, "lb"),
  12362. name: "Back",
  12363. image: {
  12364. source: "./media/characters/mocha-aura/back.svg",
  12365. extra: 1900 / 1825,
  12366. bottom: 0.045
  12367. }
  12368. },
  12369. },
  12370. [
  12371. {
  12372. name: "Nano",
  12373. height: math.unit(1, "nm")
  12374. },
  12375. {
  12376. name: "Megamicro",
  12377. height: math.unit(1, "mm")
  12378. },
  12379. {
  12380. name: "Micro",
  12381. height: math.unit(3, "inches")
  12382. },
  12383. {
  12384. name: "Normal",
  12385. height: math.unit(7 + 5 / 12, "feet"),
  12386. default: true
  12387. },
  12388. {
  12389. name: "Macro",
  12390. height: math.unit(30, "feet")
  12391. },
  12392. {
  12393. name: "Megamacro",
  12394. height: math.unit(3500, "feet")
  12395. },
  12396. {
  12397. name: "Teramacro",
  12398. height: math.unit(500000, "miles")
  12399. },
  12400. {
  12401. name: "Petamacro",
  12402. height: math.unit(50000000000000000, "parsecs")
  12403. },
  12404. ]
  12405. ))
  12406. characterMakers.push(() => makeCharacter(
  12407. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12408. {
  12409. front: {
  12410. height: math.unit(6, "feet"),
  12411. weight: math.unit(150, "lb"),
  12412. name: "Front",
  12413. image: {
  12414. source: "./media/characters/ilisha-devya/front.svg",
  12415. extra: 1,
  12416. bottom: 0.175
  12417. }
  12418. },
  12419. back: {
  12420. height: math.unit(6, "feet"),
  12421. weight: math.unit(150, "lb"),
  12422. name: "Back",
  12423. image: {
  12424. source: "./media/characters/ilisha-devya/back.svg",
  12425. extra: 1,
  12426. bottom: 0.015
  12427. }
  12428. },
  12429. },
  12430. [
  12431. {
  12432. name: "Macro",
  12433. height: math.unit(500, "feet"),
  12434. default: true
  12435. },
  12436. {
  12437. name: "Megamacro",
  12438. height: math.unit(10, "miles")
  12439. },
  12440. {
  12441. name: "Gigamacro",
  12442. height: math.unit(100000, "miles")
  12443. },
  12444. {
  12445. name: "Examacro",
  12446. height: math.unit(1e9, "lightyears")
  12447. },
  12448. {
  12449. name: "Omniversal",
  12450. height: math.unit(1e33, "lightyears")
  12451. },
  12452. {
  12453. name: "Beyond Infinite",
  12454. height: math.unit(1e100, "lightyears")
  12455. },
  12456. ]
  12457. ))
  12458. characterMakers.push(() => makeCharacter(
  12459. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12460. {
  12461. Side: {
  12462. height: math.unit(6, "feet"),
  12463. weight: math.unit(150, "lb"),
  12464. name: "Side",
  12465. image: {
  12466. source: "./media/characters/mira/side.svg",
  12467. extra: 900 / 799,
  12468. bottom: 0.02
  12469. }
  12470. },
  12471. },
  12472. [
  12473. {
  12474. name: "Human Size",
  12475. height: math.unit(6, "feet")
  12476. },
  12477. {
  12478. name: "Macro",
  12479. height: math.unit(100, "feet"),
  12480. default: true
  12481. },
  12482. {
  12483. name: "Megamacro",
  12484. height: math.unit(10, "miles")
  12485. },
  12486. {
  12487. name: "Gigamacro",
  12488. height: math.unit(25000, "miles")
  12489. },
  12490. {
  12491. name: "Teramacro",
  12492. height: math.unit(300, "AU")
  12493. },
  12494. {
  12495. name: "Full Size",
  12496. height: math.unit(4.5e10, "lightyears")
  12497. },
  12498. ]
  12499. ))
  12500. characterMakers.push(() => makeCharacter(
  12501. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12502. {
  12503. front: {
  12504. height: math.unit(6, "feet"),
  12505. weight: math.unit(150, "lb"),
  12506. name: "Front",
  12507. image: {
  12508. source: "./media/characters/holly/front.svg",
  12509. extra: 639 / 606
  12510. }
  12511. },
  12512. back: {
  12513. height: math.unit(6, "feet"),
  12514. weight: math.unit(150, "lb"),
  12515. name: "Back",
  12516. image: {
  12517. source: "./media/characters/holly/back.svg",
  12518. extra: 623 / 598
  12519. }
  12520. },
  12521. frontWorking: {
  12522. height: math.unit(6, "feet"),
  12523. weight: math.unit(150, "lb"),
  12524. name: "Front (Working)",
  12525. image: {
  12526. source: "./media/characters/holly/front-working.svg",
  12527. extra: 607 / 577,
  12528. bottom: 0.048
  12529. }
  12530. },
  12531. },
  12532. [
  12533. {
  12534. name: "Normal",
  12535. height: math.unit(12 + 3 / 12, "feet"),
  12536. default: true
  12537. },
  12538. ]
  12539. ))
  12540. characterMakers.push(() => makeCharacter(
  12541. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12542. {
  12543. front: {
  12544. height: math.unit(6, "feet"),
  12545. weight: math.unit(150, "lb"),
  12546. name: "Front",
  12547. image: {
  12548. source: "./media/characters/porter/front.svg",
  12549. extra: 1,
  12550. bottom: 0.01
  12551. }
  12552. },
  12553. frontRobes: {
  12554. height: math.unit(6, "feet"),
  12555. weight: math.unit(150, "lb"),
  12556. name: "Front (Robes)",
  12557. image: {
  12558. source: "./media/characters/porter/front-robes.svg",
  12559. extra: 1.01,
  12560. bottom: 0.01
  12561. }
  12562. },
  12563. },
  12564. [
  12565. {
  12566. name: "Normal",
  12567. height: math.unit(11 + 9 / 12, "feet"),
  12568. default: true
  12569. },
  12570. ]
  12571. ))
  12572. characterMakers.push(() => makeCharacter(
  12573. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12574. {
  12575. legendary: {
  12576. height: math.unit(6, "feet"),
  12577. weight: math.unit(150, "lb"),
  12578. name: "Legendary",
  12579. image: {
  12580. source: "./media/characters/lucy/legendary.svg",
  12581. extra: 1355 / 1100,
  12582. bottom: 0.045
  12583. }
  12584. },
  12585. },
  12586. [
  12587. {
  12588. name: "Legendary",
  12589. height: math.unit(86882 * 2, "miles"),
  12590. default: true
  12591. },
  12592. ]
  12593. ))
  12594. characterMakers.push(() => makeCharacter(
  12595. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12596. {
  12597. front: {
  12598. height: math.unit(6, "feet"),
  12599. weight: math.unit(150, "lb"),
  12600. name: "Front",
  12601. image: {
  12602. source: "./media/characters/drusilla/front.svg",
  12603. extra: 678 / 635,
  12604. bottom: 0.03
  12605. }
  12606. },
  12607. back: {
  12608. height: math.unit(6, "feet"),
  12609. weight: math.unit(150, "lb"),
  12610. name: "Back",
  12611. image: {
  12612. source: "./media/characters/drusilla/back.svg",
  12613. extra: 678 / 635,
  12614. bottom: 0.005
  12615. }
  12616. },
  12617. },
  12618. [
  12619. {
  12620. name: "Macro",
  12621. height: math.unit(100, "feet")
  12622. },
  12623. {
  12624. name: "Canon Height",
  12625. height: math.unit(2000, "feet"),
  12626. default: true
  12627. },
  12628. ]
  12629. ))
  12630. characterMakers.push(() => makeCharacter(
  12631. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12632. {
  12633. front: {
  12634. height: math.unit(6, "feet"),
  12635. weight: math.unit(180, "lb"),
  12636. name: "Front",
  12637. image: {
  12638. source: "./media/characters/renard-thatch/front.svg",
  12639. extra: 2411 / 2275,
  12640. bottom: 0.01
  12641. }
  12642. },
  12643. frontPosing: {
  12644. height: math.unit(6, "feet"),
  12645. weight: math.unit(180, "lb"),
  12646. name: "Front (Posing)",
  12647. image: {
  12648. source: "./media/characters/renard-thatch/front-posing.svg",
  12649. extra: 2381 / 2261,
  12650. bottom: 0.01
  12651. }
  12652. },
  12653. back: {
  12654. height: math.unit(6, "feet"),
  12655. weight: math.unit(180, "lb"),
  12656. name: "Back",
  12657. image: {
  12658. source: "./media/characters/renard-thatch/back.svg",
  12659. extra: 2428 / 2288
  12660. }
  12661. },
  12662. },
  12663. [
  12664. {
  12665. name: "Micro",
  12666. height: math.unit(3, "inches")
  12667. },
  12668. {
  12669. name: "Default",
  12670. height: math.unit(6, "feet"),
  12671. default: true
  12672. },
  12673. {
  12674. name: "Macro",
  12675. height: math.unit(75, "feet")
  12676. },
  12677. ]
  12678. ))
  12679. characterMakers.push(() => makeCharacter(
  12680. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12681. {
  12682. front: {
  12683. height: math.unit(1450, "feet"),
  12684. weight: math.unit(1.21e6, "tons"),
  12685. name: "Front",
  12686. image: {
  12687. source: "./media/characters/sekvra/front.svg",
  12688. extra: 1,
  12689. bottom: 0.03
  12690. }
  12691. },
  12692. frontClothed: {
  12693. height: math.unit(1450, "feet"),
  12694. weight: math.unit(1.21e6, "tons"),
  12695. name: "Front (Clothed)",
  12696. image: {
  12697. source: "./media/characters/sekvra/front-clothed.svg",
  12698. extra: 1,
  12699. bottom: 0.03
  12700. }
  12701. },
  12702. side: {
  12703. height: math.unit(1450, "feet"),
  12704. weight: math.unit(1.21e6, "tons"),
  12705. name: "Side",
  12706. image: {
  12707. source: "./media/characters/sekvra/side.svg",
  12708. extra: 1,
  12709. bottom: 0.025
  12710. }
  12711. },
  12712. back: {
  12713. height: math.unit(1450, "feet"),
  12714. weight: math.unit(1.21e6, "tons"),
  12715. name: "Back",
  12716. image: {
  12717. source: "./media/characters/sekvra/back.svg",
  12718. extra: 1,
  12719. bottom: 0.005
  12720. }
  12721. },
  12722. },
  12723. [
  12724. {
  12725. name: "Macro",
  12726. height: math.unit(1450, "feet"),
  12727. default: true
  12728. },
  12729. {
  12730. name: "Megamacro",
  12731. height: math.unit(15000, "feet")
  12732. },
  12733. ]
  12734. ))
  12735. characterMakers.push(() => makeCharacter(
  12736. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12737. {
  12738. front: {
  12739. height: math.unit(6, "feet"),
  12740. weight: math.unit(150, "lb"),
  12741. name: "Front",
  12742. image: {
  12743. source: "./media/characters/carmine/front.svg",
  12744. extra: 1,
  12745. bottom: 0.035
  12746. }
  12747. },
  12748. frontArmor: {
  12749. height: math.unit(6, "feet"),
  12750. weight: math.unit(150, "lb"),
  12751. name: "Front (Armor)",
  12752. image: {
  12753. source: "./media/characters/carmine/front-armor.svg",
  12754. extra: 1,
  12755. bottom: 0.035
  12756. }
  12757. },
  12758. },
  12759. [
  12760. {
  12761. name: "Large",
  12762. height: math.unit(1, "mile")
  12763. },
  12764. {
  12765. name: "Huge",
  12766. height: math.unit(40, "miles"),
  12767. default: true
  12768. },
  12769. {
  12770. name: "Colossal",
  12771. height: math.unit(2500, "miles")
  12772. },
  12773. ]
  12774. ))
  12775. characterMakers.push(() => makeCharacter(
  12776. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12777. {
  12778. front: {
  12779. height: math.unit(6, "feet"),
  12780. weight: math.unit(150, "lb"),
  12781. name: "Front",
  12782. image: {
  12783. source: "./media/characters/elyssia/front.svg",
  12784. extra: 2201 / 2035,
  12785. bottom: 0.05
  12786. }
  12787. },
  12788. frontClothed: {
  12789. height: math.unit(6, "feet"),
  12790. weight: math.unit(150, "lb"),
  12791. name: "Front (Clothed)",
  12792. image: {
  12793. source: "./media/characters/elyssia/front-clothed.svg",
  12794. extra: 2201 / 2035,
  12795. bottom: 0.05
  12796. }
  12797. },
  12798. back: {
  12799. height: math.unit(6, "feet"),
  12800. weight: math.unit(150, "lb"),
  12801. name: "Back",
  12802. image: {
  12803. source: "./media/characters/elyssia/back.svg",
  12804. extra: 2201 / 2035,
  12805. bottom: 0.013
  12806. }
  12807. },
  12808. },
  12809. [
  12810. {
  12811. name: "Smaller",
  12812. height: math.unit(150, "feet")
  12813. },
  12814. {
  12815. name: "Standard",
  12816. height: math.unit(1400, "feet"),
  12817. default: true
  12818. },
  12819. {
  12820. name: "Distracted",
  12821. height: math.unit(15000, "feet")
  12822. },
  12823. ]
  12824. ))
  12825. characterMakers.push(() => makeCharacter(
  12826. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12827. {
  12828. front: {
  12829. height: math.unit(7 + 4 / 12, "feet"),
  12830. weight: math.unit(500, "lb"),
  12831. name: "Front",
  12832. image: {
  12833. source: "./media/characters/geno-maxwell/front.svg",
  12834. extra: 2207 / 2040,
  12835. bottom: 0.015
  12836. }
  12837. },
  12838. },
  12839. [
  12840. {
  12841. name: "Micro",
  12842. height: math.unit(3, "inches")
  12843. },
  12844. {
  12845. name: "Normal",
  12846. height: math.unit(7 + 4 / 12, "feet"),
  12847. default: true
  12848. },
  12849. {
  12850. name: "Macro",
  12851. height: math.unit(220, "feet")
  12852. },
  12853. {
  12854. name: "Megamacro",
  12855. height: math.unit(11, "miles")
  12856. },
  12857. ]
  12858. ))
  12859. characterMakers.push(() => makeCharacter(
  12860. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12861. {
  12862. front: {
  12863. height: math.unit(7 + 4 / 12, "feet"),
  12864. weight: math.unit(500, "lb"),
  12865. name: "Front",
  12866. image: {
  12867. source: "./media/characters/regena-maxwell/front.svg",
  12868. extra: 3115 / 2770,
  12869. bottom: 0.02
  12870. }
  12871. },
  12872. },
  12873. [
  12874. {
  12875. name: "Normal",
  12876. height: math.unit(7 + 4 / 12, "feet"),
  12877. default: true
  12878. },
  12879. {
  12880. name: "Macro",
  12881. height: math.unit(220, "feet")
  12882. },
  12883. {
  12884. name: "Megamacro",
  12885. height: math.unit(11, "miles")
  12886. },
  12887. ]
  12888. ))
  12889. characterMakers.push(() => makeCharacter(
  12890. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12891. {
  12892. front: {
  12893. height: math.unit(6, "feet"),
  12894. weight: math.unit(150, "lb"),
  12895. name: "Front",
  12896. image: {
  12897. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12898. extra: 860 / 690,
  12899. bottom: 0.03
  12900. }
  12901. },
  12902. },
  12903. [
  12904. {
  12905. name: "Normal",
  12906. height: math.unit(1.7, "meters"),
  12907. default: true
  12908. },
  12909. ]
  12910. ))
  12911. characterMakers.push(() => makeCharacter(
  12912. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12913. {
  12914. front: {
  12915. height: math.unit(6, "feet"),
  12916. weight: math.unit(150, "lb"),
  12917. name: "Front",
  12918. image: {
  12919. source: "./media/characters/quilly/front.svg",
  12920. extra: 890 / 776
  12921. }
  12922. },
  12923. },
  12924. [
  12925. {
  12926. name: "Gigamacro",
  12927. height: math.unit(404090, "miles"),
  12928. default: true
  12929. },
  12930. ]
  12931. ))
  12932. characterMakers.push(() => makeCharacter(
  12933. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12934. {
  12935. front: {
  12936. height: math.unit(7 + 8 / 12, "feet"),
  12937. weight: math.unit(350, "lb"),
  12938. name: "Front",
  12939. image: {
  12940. source: "./media/characters/tempest/front.svg",
  12941. extra: 1175 / 1086,
  12942. bottom: 0.02
  12943. }
  12944. },
  12945. },
  12946. [
  12947. {
  12948. name: "Normal",
  12949. height: math.unit(7 + 8 / 12, "feet"),
  12950. default: true
  12951. },
  12952. ]
  12953. ))
  12954. characterMakers.push(() => makeCharacter(
  12955. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12956. {
  12957. side: {
  12958. height: math.unit(4 + 5 / 12, "feet"),
  12959. weight: math.unit(80, "lb"),
  12960. name: "Side",
  12961. image: {
  12962. source: "./media/characters/rodger/side.svg",
  12963. extra: 1235 / 1118
  12964. }
  12965. },
  12966. },
  12967. [
  12968. {
  12969. name: "Micro",
  12970. height: math.unit(1, "inch")
  12971. },
  12972. {
  12973. name: "Normal",
  12974. height: math.unit(4 + 5 / 12, "feet"),
  12975. default: true
  12976. },
  12977. {
  12978. name: "Macro",
  12979. height: math.unit(120, "feet")
  12980. },
  12981. ]
  12982. ))
  12983. characterMakers.push(() => makeCharacter(
  12984. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12985. {
  12986. front: {
  12987. height: math.unit(6, "feet"),
  12988. weight: math.unit(150, "lb"),
  12989. name: "Front",
  12990. image: {
  12991. source: "./media/characters/danyel/front.svg",
  12992. extra: 1185 / 1123,
  12993. bottom: 0.05
  12994. }
  12995. },
  12996. },
  12997. [
  12998. {
  12999. name: "Shrunken",
  13000. height: math.unit(0.5, "mm")
  13001. },
  13002. {
  13003. name: "Micro",
  13004. height: math.unit(1, "mm"),
  13005. default: true
  13006. },
  13007. {
  13008. name: "Upsized",
  13009. height: math.unit(5 + 5 / 12, "feet")
  13010. },
  13011. ]
  13012. ))
  13013. characterMakers.push(() => makeCharacter(
  13014. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13015. {
  13016. front: {
  13017. height: math.unit(5 + 6 / 12, "feet"),
  13018. weight: math.unit(200, "lb"),
  13019. name: "Front",
  13020. image: {
  13021. source: "./media/characters/vivian-bijoux/front.svg",
  13022. extra: 1,
  13023. bottom: 0.072
  13024. }
  13025. },
  13026. },
  13027. [
  13028. {
  13029. name: "Normal",
  13030. height: math.unit(5 + 6 / 12, "feet"),
  13031. default: true
  13032. },
  13033. {
  13034. name: "Bad Dream",
  13035. height: math.unit(500, "feet")
  13036. },
  13037. {
  13038. name: "Nightmare",
  13039. height: math.unit(500, "miles")
  13040. },
  13041. ]
  13042. ))
  13043. characterMakers.push(() => makeCharacter(
  13044. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13045. {
  13046. front: {
  13047. height: math.unit(6 + 1 / 12, "feet"),
  13048. weight: math.unit(260, "lb"),
  13049. name: "Front",
  13050. image: {
  13051. source: "./media/characters/zeta/front.svg",
  13052. extra: 1968 / 1889,
  13053. bottom: 0.06
  13054. }
  13055. },
  13056. back: {
  13057. height: math.unit(6 + 1 / 12, "feet"),
  13058. weight: math.unit(260, "lb"),
  13059. name: "Back",
  13060. image: {
  13061. source: "./media/characters/zeta/back.svg",
  13062. extra: 1944 / 1858,
  13063. bottom: 0.03
  13064. }
  13065. },
  13066. hand: {
  13067. height: math.unit(1.112, "feet"),
  13068. name: "Hand",
  13069. image: {
  13070. source: "./media/characters/zeta/hand.svg"
  13071. }
  13072. },
  13073. foot: {
  13074. height: math.unit(1.48, "feet"),
  13075. name: "Foot",
  13076. image: {
  13077. source: "./media/characters/zeta/foot.svg"
  13078. }
  13079. },
  13080. },
  13081. [
  13082. {
  13083. name: "Micro",
  13084. height: math.unit(6, "inches")
  13085. },
  13086. {
  13087. name: "Normal",
  13088. height: math.unit(6 + 1 / 12, "feet"),
  13089. default: true
  13090. },
  13091. {
  13092. name: "Macro",
  13093. height: math.unit(20, "feet")
  13094. },
  13095. ]
  13096. ))
  13097. characterMakers.push(() => makeCharacter(
  13098. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13099. {
  13100. front: {
  13101. height: math.unit(6, "feet"),
  13102. weight: math.unit(150, "lb"),
  13103. name: "Front",
  13104. image: {
  13105. source: "./media/characters/jamie-larsen/front.svg",
  13106. extra: 962 / 933,
  13107. bottom: 0.02
  13108. }
  13109. },
  13110. back: {
  13111. height: math.unit(6, "feet"),
  13112. weight: math.unit(150, "lb"),
  13113. name: "Back",
  13114. image: {
  13115. source: "./media/characters/jamie-larsen/back.svg",
  13116. extra: 997 / 946
  13117. }
  13118. },
  13119. },
  13120. [
  13121. {
  13122. name: "Macro",
  13123. height: math.unit(28 + 7 / 12, "feet"),
  13124. default: true
  13125. },
  13126. {
  13127. name: "Macro+",
  13128. height: math.unit(180, "feet")
  13129. },
  13130. {
  13131. name: "Megamacro",
  13132. height: math.unit(10, "miles")
  13133. },
  13134. {
  13135. name: "Gigamacro",
  13136. height: math.unit(200000, "miles")
  13137. },
  13138. ]
  13139. ))
  13140. characterMakers.push(() => makeCharacter(
  13141. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13142. {
  13143. front: {
  13144. height: math.unit(6, "feet"),
  13145. weight: math.unit(120, "lb"),
  13146. name: "Front",
  13147. image: {
  13148. source: "./media/characters/vance/front.svg",
  13149. extra: 1980 / 1890,
  13150. bottom: 0.09
  13151. }
  13152. },
  13153. back: {
  13154. height: math.unit(6, "feet"),
  13155. weight: math.unit(120, "lb"),
  13156. name: "Back",
  13157. image: {
  13158. source: "./media/characters/vance/back.svg",
  13159. extra: 2081 / 1994,
  13160. bottom: 0.014
  13161. }
  13162. },
  13163. hand: {
  13164. height: math.unit(0.88, "feet"),
  13165. name: "Hand",
  13166. image: {
  13167. source: "./media/characters/vance/hand.svg"
  13168. }
  13169. },
  13170. foot: {
  13171. height: math.unit(0.64, "feet"),
  13172. name: "Foot",
  13173. image: {
  13174. source: "./media/characters/vance/foot.svg"
  13175. }
  13176. },
  13177. },
  13178. [
  13179. {
  13180. name: "Small",
  13181. height: math.unit(90, "feet"),
  13182. default: true
  13183. },
  13184. {
  13185. name: "Macro",
  13186. height: math.unit(100, "meters")
  13187. },
  13188. {
  13189. name: "Megamacro",
  13190. height: math.unit(15, "miles")
  13191. },
  13192. ]
  13193. ))
  13194. characterMakers.push(() => makeCharacter(
  13195. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13196. {
  13197. front: {
  13198. height: math.unit(6, "feet"),
  13199. weight: math.unit(180, "lb"),
  13200. name: "Front",
  13201. image: {
  13202. source: "./media/characters/xochitl/front.svg",
  13203. extra: 2297 / 2261,
  13204. bottom: 0.065
  13205. }
  13206. },
  13207. back: {
  13208. height: math.unit(6, "feet"),
  13209. weight: math.unit(180, "lb"),
  13210. name: "Back",
  13211. image: {
  13212. source: "./media/characters/xochitl/back.svg",
  13213. extra: 2386 / 2354,
  13214. bottom: 0.01
  13215. }
  13216. },
  13217. foot: {
  13218. height: math.unit(6 / 5 * 1.15, "feet"),
  13219. weight: math.unit(150, "lb"),
  13220. name: "Foot",
  13221. image: {
  13222. source: "./media/characters/xochitl/foot.svg"
  13223. }
  13224. },
  13225. },
  13226. [
  13227. {
  13228. name: "Macro",
  13229. height: math.unit(80, "feet")
  13230. },
  13231. {
  13232. name: "Macro+",
  13233. height: math.unit(400, "feet"),
  13234. default: true
  13235. },
  13236. {
  13237. name: "Gigamacro",
  13238. height: math.unit(80000, "miles")
  13239. },
  13240. {
  13241. name: "Gigamacro+",
  13242. height: math.unit(400000, "miles")
  13243. },
  13244. {
  13245. name: "Teramacro",
  13246. height: math.unit(300, "AU")
  13247. },
  13248. ]
  13249. ))
  13250. characterMakers.push(() => makeCharacter(
  13251. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13252. {
  13253. front: {
  13254. height: math.unit(6, "feet"),
  13255. weight: math.unit(150, "lb"),
  13256. name: "Front",
  13257. image: {
  13258. source: "./media/characters/vincent/front.svg",
  13259. extra: 1130 / 1080,
  13260. bottom: 0.055
  13261. }
  13262. },
  13263. beak: {
  13264. height: math.unit(6 * 0.1, "feet"),
  13265. name: "Beak",
  13266. image: {
  13267. source: "./media/characters/vincent/beak.svg"
  13268. }
  13269. },
  13270. hand: {
  13271. height: math.unit(6 * 0.85, "feet"),
  13272. weight: math.unit(150, "lb"),
  13273. name: "Hand",
  13274. image: {
  13275. source: "./media/characters/vincent/hand.svg"
  13276. }
  13277. },
  13278. foot: {
  13279. height: math.unit(6 * 0.19, "feet"),
  13280. weight: math.unit(150, "lb"),
  13281. name: "Foot",
  13282. image: {
  13283. source: "./media/characters/vincent/foot.svg"
  13284. }
  13285. },
  13286. },
  13287. [
  13288. {
  13289. name: "Base",
  13290. height: math.unit(6 + 5 / 12, "feet"),
  13291. default: true
  13292. },
  13293. {
  13294. name: "Macro",
  13295. height: math.unit(300, "feet")
  13296. },
  13297. {
  13298. name: "Megamacro",
  13299. height: math.unit(2, "miles")
  13300. },
  13301. {
  13302. name: "Gigamacro",
  13303. height: math.unit(1000, "miles")
  13304. },
  13305. ]
  13306. ))
  13307. characterMakers.push(() => makeCharacter(
  13308. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13309. {
  13310. front: {
  13311. height: math.unit(6 + 2 / 12, "feet"),
  13312. weight: math.unit(265, "lb"),
  13313. name: "Front",
  13314. image: {
  13315. source: "./media/characters/jay/front.svg",
  13316. extra: 1510 / 1430,
  13317. bottom: 0.042
  13318. }
  13319. },
  13320. back: {
  13321. height: math.unit(6 + 2 / 12, "feet"),
  13322. weight: math.unit(265, "lb"),
  13323. name: "Back",
  13324. image: {
  13325. source: "./media/characters/jay/back.svg",
  13326. extra: 1510 / 1430,
  13327. bottom: 0.025
  13328. }
  13329. },
  13330. clothed: {
  13331. height: math.unit(6 + 2 / 12, "feet"),
  13332. weight: math.unit(265, "lb"),
  13333. name: "Front (Clothed)",
  13334. image: {
  13335. source: "./media/characters/jay/clothed.svg",
  13336. extra: 744 / 699,
  13337. bottom: 0.043
  13338. }
  13339. },
  13340. head: {
  13341. height: math.unit(1.772, "feet"),
  13342. name: "Head",
  13343. image: {
  13344. source: "./media/characters/jay/head.svg"
  13345. }
  13346. },
  13347. sizeRay: {
  13348. height: math.unit(1.331, "feet"),
  13349. name: "Size Ray",
  13350. image: {
  13351. source: "./media/characters/jay/size-ray.svg"
  13352. }
  13353. },
  13354. },
  13355. [
  13356. {
  13357. name: "Micro",
  13358. height: math.unit(1, "inch")
  13359. },
  13360. {
  13361. name: "Normal",
  13362. height: math.unit(6 + 2 / 12, "feet"),
  13363. default: true
  13364. },
  13365. {
  13366. name: "Macro",
  13367. height: math.unit(1, "mile")
  13368. },
  13369. {
  13370. name: "Megamacro",
  13371. height: math.unit(100, "miles")
  13372. },
  13373. ]
  13374. ))
  13375. characterMakers.push(() => makeCharacter(
  13376. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13377. {
  13378. front: {
  13379. height: math.unit(2, "meters"),
  13380. weight: math.unit(500, "kg"),
  13381. name: "Front",
  13382. image: {
  13383. source: "./media/characters/coatl/front.svg",
  13384. extra: 3948 / 3500,
  13385. bottom: 0.082
  13386. }
  13387. },
  13388. },
  13389. [
  13390. {
  13391. name: "Normal",
  13392. height: math.unit(4, "meters")
  13393. },
  13394. {
  13395. name: "Macro",
  13396. height: math.unit(100, "meters"),
  13397. default: true
  13398. },
  13399. {
  13400. name: "Macro+",
  13401. height: math.unit(300, "meters")
  13402. },
  13403. {
  13404. name: "Megamacro",
  13405. height: math.unit(3, "gigameters")
  13406. },
  13407. {
  13408. name: "Megamacro+",
  13409. height: math.unit(300, "terameters")
  13410. },
  13411. {
  13412. name: "Megamacro++",
  13413. height: math.unit(3, "lightyears")
  13414. },
  13415. ]
  13416. ))
  13417. characterMakers.push(() => makeCharacter(
  13418. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13419. {
  13420. front: {
  13421. height: math.unit(6, "feet"),
  13422. weight: math.unit(50, "kg"),
  13423. name: "front",
  13424. image: {
  13425. source: "./media/characters/shiroryu/front.svg",
  13426. extra: 1990 / 1935
  13427. }
  13428. },
  13429. },
  13430. [
  13431. {
  13432. name: "Mortal Mingling",
  13433. height: math.unit(3, "meters")
  13434. },
  13435. {
  13436. name: "Kaiju-ish",
  13437. height: math.unit(250, "meters")
  13438. },
  13439. {
  13440. name: "Somewhat Godly",
  13441. height: math.unit(400, "km"),
  13442. default: true
  13443. },
  13444. {
  13445. name: "Planetary",
  13446. height: math.unit(300, "megameters")
  13447. },
  13448. {
  13449. name: "Galaxy-dwarfing",
  13450. height: math.unit(450, "kiloparsecs")
  13451. },
  13452. {
  13453. name: "Universe Eater",
  13454. height: math.unit(150, "gigaparsecs")
  13455. },
  13456. {
  13457. name: "Almost Immeasurable",
  13458. height: math.unit(1.3e266, "yottaparsecs")
  13459. },
  13460. ]
  13461. ))
  13462. characterMakers.push(() => makeCharacter(
  13463. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13464. {
  13465. front: {
  13466. height: math.unit(6, "feet"),
  13467. weight: math.unit(150, "lb"),
  13468. name: "Front",
  13469. image: {
  13470. source: "./media/characters/umeko/front.svg",
  13471. extra: 1,
  13472. bottom: 0.019
  13473. }
  13474. },
  13475. frontArmored: {
  13476. height: math.unit(6, "feet"),
  13477. weight: math.unit(150, "lb"),
  13478. name: "Front (Armored)",
  13479. image: {
  13480. source: "./media/characters/umeko/front-armored.svg",
  13481. extra: 1,
  13482. bottom: 0.021
  13483. }
  13484. },
  13485. },
  13486. [
  13487. {
  13488. name: "Macro",
  13489. height: math.unit(220, "feet"),
  13490. default: true
  13491. },
  13492. {
  13493. name: "Guardian Dragon",
  13494. height: math.unit(50, "miles")
  13495. },
  13496. {
  13497. name: "Cosmic",
  13498. height: math.unit(800000, "miles")
  13499. },
  13500. ]
  13501. ))
  13502. characterMakers.push(() => makeCharacter(
  13503. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13504. {
  13505. front: {
  13506. height: math.unit(6, "feet"),
  13507. weight: math.unit(150, "lb"),
  13508. name: "Front",
  13509. image: {
  13510. source: "./media/characters/cassidy/front.svg",
  13511. extra: 1,
  13512. bottom: 0.043
  13513. }
  13514. },
  13515. },
  13516. [
  13517. {
  13518. name: "Canon Height",
  13519. height: math.unit(120, "feet"),
  13520. default: true
  13521. },
  13522. {
  13523. name: "Macro+",
  13524. height: math.unit(400, "feet")
  13525. },
  13526. {
  13527. name: "Macro++",
  13528. height: math.unit(4000, "feet")
  13529. },
  13530. {
  13531. name: "Megamacro",
  13532. height: math.unit(3, "miles")
  13533. },
  13534. ]
  13535. ))
  13536. characterMakers.push(() => makeCharacter(
  13537. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13538. {
  13539. front: {
  13540. height: math.unit(6, "feet"),
  13541. weight: math.unit(150, "lb"),
  13542. name: "Front",
  13543. image: {
  13544. source: "./media/characters/isaac/front.svg",
  13545. extra: 896 / 815,
  13546. bottom: 0.11
  13547. }
  13548. },
  13549. },
  13550. [
  13551. {
  13552. name: "Human Size",
  13553. height: math.unit(8, "feet"),
  13554. default: true
  13555. },
  13556. {
  13557. name: "Macro",
  13558. height: math.unit(400, "feet")
  13559. },
  13560. {
  13561. name: "Megamacro",
  13562. height: math.unit(50, "miles")
  13563. },
  13564. {
  13565. name: "Canon Height",
  13566. height: math.unit(200, "AU")
  13567. },
  13568. ]
  13569. ))
  13570. characterMakers.push(() => makeCharacter(
  13571. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13572. {
  13573. front: {
  13574. height: math.unit(6, "feet"),
  13575. weight: math.unit(72, "kg"),
  13576. name: "Front",
  13577. image: {
  13578. source: "./media/characters/sleekit/front.svg",
  13579. extra: 4693 / 4487,
  13580. bottom: 0.012
  13581. }
  13582. },
  13583. },
  13584. [
  13585. {
  13586. name: "Minimum Height",
  13587. height: math.unit(10, "meters")
  13588. },
  13589. {
  13590. name: "Smaller",
  13591. height: math.unit(25, "meters")
  13592. },
  13593. {
  13594. name: "Larger",
  13595. height: math.unit(38, "meters"),
  13596. default: true
  13597. },
  13598. {
  13599. name: "Maximum height",
  13600. height: math.unit(100, "meters")
  13601. },
  13602. ]
  13603. ))
  13604. characterMakers.push(() => makeCharacter(
  13605. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13606. {
  13607. front: {
  13608. height: math.unit(6, "feet"),
  13609. weight: math.unit(150, "lb"),
  13610. name: "Front",
  13611. image: {
  13612. source: "./media/characters/nillia/front.svg",
  13613. extra: 2195 / 2037,
  13614. bottom: 0.005
  13615. }
  13616. },
  13617. back: {
  13618. height: math.unit(6, "feet"),
  13619. weight: math.unit(150, "lb"),
  13620. name: "Back",
  13621. image: {
  13622. source: "./media/characters/nillia/back.svg",
  13623. extra: 2195 / 2037,
  13624. bottom: 0.005
  13625. }
  13626. },
  13627. },
  13628. [
  13629. {
  13630. name: "Canon Height",
  13631. height: math.unit(489, "feet"),
  13632. default: true
  13633. }
  13634. ]
  13635. ))
  13636. characterMakers.push(() => makeCharacter(
  13637. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13638. {
  13639. front: {
  13640. height: math.unit(6, "feet"),
  13641. weight: math.unit(150, "lb"),
  13642. name: "Front",
  13643. image: {
  13644. source: "./media/characters/mesmyriza/front.svg",
  13645. extra: 2067 / 1784,
  13646. bottom: 0.035
  13647. }
  13648. },
  13649. foot: {
  13650. height: math.unit(6 / (250 / 35), "feet"),
  13651. name: "Foot",
  13652. image: {
  13653. source: "./media/characters/mesmyriza/foot.svg"
  13654. }
  13655. },
  13656. },
  13657. [
  13658. {
  13659. name: "Macro",
  13660. height: math.unit(457, "meters"),
  13661. default: true
  13662. },
  13663. {
  13664. name: "Megamacro",
  13665. height: math.unit(8, "megameters")
  13666. },
  13667. ]
  13668. ))
  13669. characterMakers.push(() => makeCharacter(
  13670. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13671. {
  13672. front: {
  13673. height: math.unit(6, "feet"),
  13674. weight: math.unit(250, "lb"),
  13675. name: "Front",
  13676. image: {
  13677. source: "./media/characters/saudade/front.svg",
  13678. extra: 1172 / 1139,
  13679. bottom: 0.035
  13680. }
  13681. },
  13682. },
  13683. [
  13684. {
  13685. name: "Micro",
  13686. height: math.unit(3, "inches")
  13687. },
  13688. {
  13689. name: "Normal",
  13690. height: math.unit(6, "feet"),
  13691. default: true
  13692. },
  13693. {
  13694. name: "Macro",
  13695. height: math.unit(50, "feet")
  13696. },
  13697. {
  13698. name: "Megamacro",
  13699. height: math.unit(2800, "feet")
  13700. },
  13701. ]
  13702. ))
  13703. characterMakers.push(() => makeCharacter(
  13704. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13705. {
  13706. front: {
  13707. height: math.unit(5 + 4 / 12, "feet"),
  13708. weight: math.unit(100, "lb"),
  13709. name: "Front",
  13710. image: {
  13711. source: "./media/characters/keireer/front.svg",
  13712. extra: 716 / 666,
  13713. bottom: 0.05
  13714. }
  13715. },
  13716. },
  13717. [
  13718. {
  13719. name: "Normal",
  13720. height: math.unit(5 + 4 / 12, "feet"),
  13721. default: true
  13722. },
  13723. ]
  13724. ))
  13725. characterMakers.push(() => makeCharacter(
  13726. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13727. {
  13728. front: {
  13729. height: math.unit(6, "feet"),
  13730. weight: math.unit(90, "kg"),
  13731. name: "Front",
  13732. image: {
  13733. source: "./media/characters/mirja/front.svg",
  13734. extra: 1789 / 1683,
  13735. bottom: 0.05
  13736. }
  13737. },
  13738. frontDressed: {
  13739. height: math.unit(6, "feet"),
  13740. weight: math.unit(90, "lb"),
  13741. name: "Front (Dressed)",
  13742. image: {
  13743. source: "./media/characters/mirja/front-dressed.svg",
  13744. extra: 1789 / 1683,
  13745. bottom: 0.05
  13746. }
  13747. },
  13748. back: {
  13749. height: math.unit(6, "feet"),
  13750. weight: math.unit(90, "lb"),
  13751. name: "Back",
  13752. image: {
  13753. source: "./media/characters/mirja/back.svg",
  13754. extra: 953 / 917,
  13755. bottom: 0.017
  13756. }
  13757. },
  13758. },
  13759. [
  13760. {
  13761. name: "\"Incognito\"",
  13762. height: math.unit(3, "meters")
  13763. },
  13764. {
  13765. name: "Strolling Size",
  13766. height: math.unit(15, "km")
  13767. },
  13768. {
  13769. name: "Larger Strolling Size",
  13770. height: math.unit(400, "km")
  13771. },
  13772. {
  13773. name: "Preferred Size",
  13774. height: math.unit(5000, "km")
  13775. },
  13776. {
  13777. name: "True Size",
  13778. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13779. default: true
  13780. },
  13781. ]
  13782. ))
  13783. characterMakers.push(() => makeCharacter(
  13784. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13785. {
  13786. front: {
  13787. height: math.unit(15, "feet"),
  13788. weight: math.unit(880, "kg"),
  13789. name: "Front",
  13790. image: {
  13791. source: "./media/characters/nightraver/front.svg",
  13792. extra: 2444 / 2160,
  13793. bottom: 0.027
  13794. }
  13795. },
  13796. back: {
  13797. height: math.unit(15, "feet"),
  13798. weight: math.unit(880, "kg"),
  13799. name: "Back",
  13800. image: {
  13801. source: "./media/characters/nightraver/back.svg",
  13802. extra: 2309 / 2180,
  13803. bottom: 0.005
  13804. }
  13805. },
  13806. sole: {
  13807. height: math.unit(2.878, "feet"),
  13808. name: "Sole",
  13809. image: {
  13810. source: "./media/characters/nightraver/sole.svg"
  13811. }
  13812. },
  13813. foot: {
  13814. height: math.unit(2.285, "feet"),
  13815. name: "Foot",
  13816. image: {
  13817. source: "./media/characters/nightraver/foot.svg"
  13818. }
  13819. },
  13820. maw: {
  13821. height: math.unit(2.67, "feet"),
  13822. name: "Maw",
  13823. image: {
  13824. source: "./media/characters/nightraver/maw.svg"
  13825. }
  13826. },
  13827. },
  13828. [
  13829. {
  13830. name: "Micro",
  13831. height: math.unit(1, "cm")
  13832. },
  13833. {
  13834. name: "Normal",
  13835. height: math.unit(15, "feet"),
  13836. default: true
  13837. },
  13838. {
  13839. name: "Macro",
  13840. height: math.unit(300, "feet")
  13841. },
  13842. {
  13843. name: "Megamacro",
  13844. height: math.unit(300, "miles")
  13845. },
  13846. {
  13847. name: "Gigamacro",
  13848. height: math.unit(10000, "miles")
  13849. },
  13850. ]
  13851. ))
  13852. characterMakers.push(() => makeCharacter(
  13853. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13854. {
  13855. side: {
  13856. height: math.unit(2, "inches"),
  13857. weight: math.unit(5, "grams"),
  13858. name: "Side",
  13859. image: {
  13860. source: "./media/characters/arc/side.svg"
  13861. }
  13862. },
  13863. },
  13864. [
  13865. {
  13866. name: "Micro",
  13867. height: math.unit(2, "inches"),
  13868. default: true
  13869. },
  13870. ]
  13871. ))
  13872. characterMakers.push(() => makeCharacter(
  13873. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13874. {
  13875. front: {
  13876. height: math.unit(1.1938, "meters"),
  13877. weight: math.unit(54, "kg"),
  13878. name: "Front",
  13879. image: {
  13880. source: "./media/characters/nebula-shahar/front.svg",
  13881. extra: 1642 / 1436,
  13882. bottom: 0.06
  13883. }
  13884. },
  13885. },
  13886. [
  13887. {
  13888. name: "Megamicro",
  13889. height: math.unit(0.3, "mm")
  13890. },
  13891. {
  13892. name: "Micro",
  13893. height: math.unit(3, "cm")
  13894. },
  13895. {
  13896. name: "Normal",
  13897. height: math.unit(138, "cm"),
  13898. default: true
  13899. },
  13900. {
  13901. name: "Macro",
  13902. height: math.unit(30, "m")
  13903. },
  13904. ]
  13905. ))
  13906. characterMakers.push(() => makeCharacter(
  13907. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13908. {
  13909. front: {
  13910. height: math.unit(5.24, "feet"),
  13911. weight: math.unit(150, "lb"),
  13912. name: "Front",
  13913. image: {
  13914. source: "./media/characters/shayla/front.svg",
  13915. extra: 1512 / 1414,
  13916. bottom: 0.01
  13917. }
  13918. },
  13919. back: {
  13920. height: math.unit(5.24, "feet"),
  13921. weight: math.unit(150, "lb"),
  13922. name: "Back",
  13923. image: {
  13924. source: "./media/characters/shayla/back.svg",
  13925. extra: 1512 / 1414
  13926. }
  13927. },
  13928. hand: {
  13929. height: math.unit(0.7781496062992126, "feet"),
  13930. name: "Hand",
  13931. image: {
  13932. source: "./media/characters/shayla/hand.svg"
  13933. }
  13934. },
  13935. foot: {
  13936. height: math.unit(1.4206036745406823, "feet"),
  13937. name: "Foot",
  13938. image: {
  13939. source: "./media/characters/shayla/foot.svg"
  13940. }
  13941. },
  13942. },
  13943. [
  13944. {
  13945. name: "Micro",
  13946. height: math.unit(0.32, "feet")
  13947. },
  13948. {
  13949. name: "Normal",
  13950. height: math.unit(5.24, "feet"),
  13951. default: true
  13952. },
  13953. {
  13954. name: "Macro",
  13955. height: math.unit(492.12, "feet")
  13956. },
  13957. {
  13958. name: "Megamacro",
  13959. height: math.unit(186.41, "miles")
  13960. },
  13961. ]
  13962. ))
  13963. characterMakers.push(() => makeCharacter(
  13964. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13965. {
  13966. front: {
  13967. height: math.unit(2.2, "m"),
  13968. weight: math.unit(120, "kg"),
  13969. name: "Front",
  13970. image: {
  13971. source: "./media/characters/pia-jr/front.svg",
  13972. extra: 1000 / 970,
  13973. bottom: 0.035
  13974. }
  13975. },
  13976. hand: {
  13977. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13978. name: "Hand",
  13979. image: {
  13980. source: "./media/characters/pia-jr/hand.svg"
  13981. }
  13982. },
  13983. paw: {
  13984. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13985. name: "Paw",
  13986. image: {
  13987. source: "./media/characters/pia-jr/paw.svg"
  13988. }
  13989. },
  13990. },
  13991. [
  13992. {
  13993. name: "Micro",
  13994. height: math.unit(1.2, "cm")
  13995. },
  13996. {
  13997. name: "Normal",
  13998. height: math.unit(2.2, "m"),
  13999. default: true
  14000. },
  14001. {
  14002. name: "Macro",
  14003. height: math.unit(180, "m")
  14004. },
  14005. {
  14006. name: "Megamacro",
  14007. height: math.unit(420, "km")
  14008. },
  14009. ]
  14010. ))
  14011. characterMakers.push(() => makeCharacter(
  14012. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14013. {
  14014. front: {
  14015. height: math.unit(2, "m"),
  14016. weight: math.unit(115, "kg"),
  14017. name: "Front",
  14018. image: {
  14019. source: "./media/characters/pia-sr/front.svg",
  14020. extra: 760 / 730,
  14021. bottom: 0.015
  14022. }
  14023. },
  14024. back: {
  14025. height: math.unit(2, "m"),
  14026. weight: math.unit(115, "kg"),
  14027. name: "Back",
  14028. image: {
  14029. source: "./media/characters/pia-sr/back.svg",
  14030. extra: 760 / 730,
  14031. bottom: 0.01
  14032. }
  14033. },
  14034. hand: {
  14035. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14036. name: "Hand",
  14037. image: {
  14038. source: "./media/characters/pia-sr/hand.svg"
  14039. }
  14040. },
  14041. foot: {
  14042. height: math.unit(1.83, "feet"),
  14043. name: "Foot",
  14044. image: {
  14045. source: "./media/characters/pia-sr/foot.svg"
  14046. }
  14047. },
  14048. },
  14049. [
  14050. {
  14051. name: "Micro",
  14052. height: math.unit(88, "mm")
  14053. },
  14054. {
  14055. name: "Normal",
  14056. height: math.unit(2, "m"),
  14057. default: true
  14058. },
  14059. {
  14060. name: "Macro",
  14061. height: math.unit(200, "m")
  14062. },
  14063. {
  14064. name: "Megamacro",
  14065. height: math.unit(420, "km")
  14066. },
  14067. ]
  14068. ))
  14069. characterMakers.push(() => makeCharacter(
  14070. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14071. {
  14072. front: {
  14073. height: math.unit(8 + 2 / 12, "feet"),
  14074. weight: math.unit(300, "lb"),
  14075. name: "Front",
  14076. image: {
  14077. source: "./media/characters/kibibyte/front.svg",
  14078. extra: 2221 / 2098,
  14079. bottom: 0.04
  14080. }
  14081. },
  14082. },
  14083. [
  14084. {
  14085. name: "Normal",
  14086. height: math.unit(8 + 2 / 12, "feet"),
  14087. default: true
  14088. },
  14089. {
  14090. name: "Socialable Macro",
  14091. height: math.unit(50, "feet")
  14092. },
  14093. {
  14094. name: "Macro",
  14095. height: math.unit(300, "feet")
  14096. },
  14097. {
  14098. name: "Megamacro",
  14099. height: math.unit(500, "miles")
  14100. },
  14101. ]
  14102. ))
  14103. characterMakers.push(() => makeCharacter(
  14104. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14105. {
  14106. front: {
  14107. height: math.unit(6, "feet"),
  14108. weight: math.unit(150, "lb"),
  14109. name: "Front",
  14110. image: {
  14111. source: "./media/characters/felix/front.svg",
  14112. extra: 762 / 722,
  14113. bottom: 0.02
  14114. }
  14115. },
  14116. frontClothed: {
  14117. height: math.unit(6, "feet"),
  14118. weight: math.unit(150, "lb"),
  14119. name: "Front (Clothed)",
  14120. image: {
  14121. source: "./media/characters/felix/front-clothed.svg",
  14122. extra: 762 / 722,
  14123. bottom: 0.02
  14124. }
  14125. },
  14126. },
  14127. [
  14128. {
  14129. name: "Normal",
  14130. height: math.unit(6 + 8 / 12, "feet"),
  14131. default: true
  14132. },
  14133. {
  14134. name: "Macro",
  14135. height: math.unit(2600, "feet")
  14136. },
  14137. {
  14138. name: "Megamacro",
  14139. height: math.unit(450, "miles")
  14140. },
  14141. ]
  14142. ))
  14143. characterMakers.push(() => makeCharacter(
  14144. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14145. {
  14146. front: {
  14147. height: math.unit(6 + 1 / 12, "feet"),
  14148. weight: math.unit(250, "lb"),
  14149. name: "Front",
  14150. image: {
  14151. source: "./media/characters/tobo/front.svg",
  14152. extra: 608 / 586,
  14153. bottom: 0.023
  14154. }
  14155. },
  14156. back: {
  14157. height: math.unit(6 + 1 / 12, "feet"),
  14158. weight: math.unit(250, "lb"),
  14159. name: "Back",
  14160. image: {
  14161. source: "./media/characters/tobo/back.svg",
  14162. extra: 608 / 586
  14163. }
  14164. },
  14165. },
  14166. [
  14167. {
  14168. name: "Nano",
  14169. height: math.unit(2, "nm")
  14170. },
  14171. {
  14172. name: "Megamicro",
  14173. height: math.unit(0.1, "mm")
  14174. },
  14175. {
  14176. name: "Micro",
  14177. height: math.unit(1, "inch"),
  14178. default: true
  14179. },
  14180. {
  14181. name: "Human-sized",
  14182. height: math.unit(6 + 1 / 12, "feet")
  14183. },
  14184. {
  14185. name: "Macro",
  14186. height: math.unit(250, "feet")
  14187. },
  14188. {
  14189. name: "Megamacro",
  14190. height: math.unit(75, "miles")
  14191. },
  14192. {
  14193. name: "Texas-sized",
  14194. height: math.unit(750, "miles")
  14195. },
  14196. {
  14197. name: "Teramacro",
  14198. height: math.unit(50000, "miles")
  14199. },
  14200. ]
  14201. ))
  14202. characterMakers.push(() => makeCharacter(
  14203. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14204. {
  14205. front: {
  14206. height: math.unit(6, "feet"),
  14207. weight: math.unit(269, "lb"),
  14208. name: "Front",
  14209. image: {
  14210. source: "./media/characters/danny-kapowsky/front.svg",
  14211. extra: 766 / 736,
  14212. bottom: 0.044
  14213. }
  14214. },
  14215. back: {
  14216. height: math.unit(6, "feet"),
  14217. weight: math.unit(269, "lb"),
  14218. name: "Back",
  14219. image: {
  14220. source: "./media/characters/danny-kapowsky/back.svg",
  14221. extra: 797 / 760,
  14222. bottom: 0.025
  14223. }
  14224. },
  14225. },
  14226. [
  14227. {
  14228. name: "Macro",
  14229. height: math.unit(150, "feet"),
  14230. default: true
  14231. },
  14232. {
  14233. name: "Macro+",
  14234. height: math.unit(200, "feet")
  14235. },
  14236. {
  14237. name: "Macro++",
  14238. height: math.unit(300, "feet")
  14239. },
  14240. {
  14241. name: "Macro+++",
  14242. height: math.unit(400, "feet")
  14243. },
  14244. ]
  14245. ))
  14246. characterMakers.push(() => makeCharacter(
  14247. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14248. {
  14249. side: {
  14250. height: math.unit(6, "feet"),
  14251. weight: math.unit(170, "lb"),
  14252. name: "Side",
  14253. image: {
  14254. source: "./media/characters/finn/side.svg",
  14255. extra: 1953 / 1807,
  14256. bottom: 0.057
  14257. }
  14258. },
  14259. },
  14260. [
  14261. {
  14262. name: "Megamacro",
  14263. height: math.unit(14445, "feet"),
  14264. default: true
  14265. },
  14266. ]
  14267. ))
  14268. characterMakers.push(() => makeCharacter(
  14269. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14270. {
  14271. front: {
  14272. height: math.unit(5 + 6 / 12, "feet"),
  14273. weight: math.unit(125, "lb"),
  14274. name: "Front",
  14275. image: {
  14276. source: "./media/characters/roy/front.svg",
  14277. extra: 1,
  14278. bottom: 0.11
  14279. }
  14280. },
  14281. },
  14282. [
  14283. {
  14284. name: "Micro",
  14285. height: math.unit(3, "inches"),
  14286. default: true
  14287. },
  14288. {
  14289. name: "Normal",
  14290. height: math.unit(5 + 6 / 12, "feet")
  14291. },
  14292. {
  14293. name: "Lesser Macro",
  14294. height: math.unit(60, "feet")
  14295. },
  14296. {
  14297. name: "Greater Macro",
  14298. height: math.unit(120, "feet")
  14299. },
  14300. ]
  14301. ))
  14302. characterMakers.push(() => makeCharacter(
  14303. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14304. {
  14305. front: {
  14306. height: math.unit(6, "feet"),
  14307. weight: math.unit(100, "lb"),
  14308. name: "Front",
  14309. image: {
  14310. source: "./media/characters/aevsivs/front.svg",
  14311. extra: 1,
  14312. bottom: 0.03
  14313. }
  14314. },
  14315. back: {
  14316. height: math.unit(6, "feet"),
  14317. weight: math.unit(100, "lb"),
  14318. name: "Back",
  14319. image: {
  14320. source: "./media/characters/aevsivs/back.svg"
  14321. }
  14322. },
  14323. },
  14324. [
  14325. {
  14326. name: "Micro",
  14327. height: math.unit(2, "inches"),
  14328. default: true
  14329. },
  14330. {
  14331. name: "Normal",
  14332. height: math.unit(5, "feet")
  14333. },
  14334. ]
  14335. ))
  14336. characterMakers.push(() => makeCharacter(
  14337. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14338. {
  14339. front: {
  14340. height: math.unit(5 + 7 / 12, "feet"),
  14341. weight: math.unit(159, "lb"),
  14342. name: "Front",
  14343. image: {
  14344. source: "./media/characters/hildegard/front.svg",
  14345. extra: 289 / 269,
  14346. bottom: 7.63 / 297.8
  14347. }
  14348. },
  14349. back: {
  14350. height: math.unit(5 + 7 / 12, "feet"),
  14351. weight: math.unit(159, "lb"),
  14352. name: "Back",
  14353. image: {
  14354. source: "./media/characters/hildegard/back.svg",
  14355. extra: 280 / 260,
  14356. bottom: 2.3 / 282
  14357. }
  14358. },
  14359. },
  14360. [
  14361. {
  14362. name: "Normal",
  14363. height: math.unit(5 + 7 / 12, "feet"),
  14364. default: true
  14365. },
  14366. ]
  14367. ))
  14368. characterMakers.push(() => makeCharacter(
  14369. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14370. {
  14371. bernard: {
  14372. height: math.unit(2 + 7 / 12, "feet"),
  14373. weight: math.unit(66, "lb"),
  14374. name: "Bernard",
  14375. rename: true,
  14376. image: {
  14377. source: "./media/characters/bernard-wilder/bernard.svg",
  14378. extra: 192 / 128,
  14379. bottom: 0.05
  14380. }
  14381. },
  14382. wilder: {
  14383. height: math.unit(5 + 8 / 12, "feet"),
  14384. weight: math.unit(143, "lb"),
  14385. name: "Wilder",
  14386. rename: true,
  14387. image: {
  14388. source: "./media/characters/bernard-wilder/wilder.svg",
  14389. extra: 361 / 312,
  14390. bottom: 0.02
  14391. }
  14392. },
  14393. },
  14394. [
  14395. {
  14396. name: "Normal",
  14397. height: math.unit(2 + 7 / 12, "feet"),
  14398. default: true
  14399. },
  14400. ]
  14401. ))
  14402. characterMakers.push(() => makeCharacter(
  14403. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14404. {
  14405. anthro: {
  14406. height: math.unit(6 + 1 / 12, "feet"),
  14407. weight: math.unit(155, "lb"),
  14408. name: "Anthro",
  14409. image: {
  14410. source: "./media/characters/hearth/anthro.svg",
  14411. extra: 260 / 250,
  14412. bottom: 0.02
  14413. }
  14414. },
  14415. feral: {
  14416. height: math.unit(3.78, "feet"),
  14417. weight: math.unit(35, "kg"),
  14418. name: "Feral",
  14419. image: {
  14420. source: "./media/characters/hearth/feral.svg",
  14421. extra: 153 / 135,
  14422. bottom: 0.03
  14423. }
  14424. },
  14425. },
  14426. [
  14427. {
  14428. name: "Normal",
  14429. height: math.unit(6 + 1 / 12, "feet"),
  14430. default: true
  14431. },
  14432. ]
  14433. ))
  14434. characterMakers.push(() => makeCharacter(
  14435. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14436. {
  14437. front: {
  14438. height: math.unit(6, "feet"),
  14439. weight: math.unit(182, "lb"),
  14440. name: "Front",
  14441. image: {
  14442. source: "./media/characters/ingrid/front.svg",
  14443. extra: 294 / 268,
  14444. bottom: 0.027
  14445. }
  14446. },
  14447. },
  14448. [
  14449. {
  14450. name: "Normal",
  14451. height: math.unit(6, "feet"),
  14452. default: true
  14453. },
  14454. ]
  14455. ))
  14456. characterMakers.push(() => makeCharacter(
  14457. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14458. {
  14459. eevee: {
  14460. height: math.unit(2 + 10 / 12, "feet"),
  14461. weight: math.unit(86, "lb"),
  14462. name: "Malgam",
  14463. image: {
  14464. source: "./media/characters/malgam/eevee.svg",
  14465. extra: 218 / 180,
  14466. bottom: 0.2
  14467. }
  14468. },
  14469. sylveon: {
  14470. height: math.unit(4, "feet"),
  14471. weight: math.unit(101, "lb"),
  14472. name: "Future Malgam",
  14473. rename: true,
  14474. image: {
  14475. source: "./media/characters/malgam/sylveon.svg",
  14476. extra: 371 / 325,
  14477. bottom: 0.015
  14478. }
  14479. },
  14480. gigantamax: {
  14481. height: math.unit(50, "feet"),
  14482. name: "Gigantamax Malgam",
  14483. rename: true,
  14484. image: {
  14485. source: "./media/characters/malgam/gigantamax.svg"
  14486. }
  14487. },
  14488. },
  14489. [
  14490. {
  14491. name: "Normal",
  14492. height: math.unit(2 + 10 / 12, "feet"),
  14493. default: true
  14494. },
  14495. ]
  14496. ))
  14497. characterMakers.push(() => makeCharacter(
  14498. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14499. {
  14500. front: {
  14501. height: math.unit(5 + 11 / 12, "feet"),
  14502. weight: math.unit(188, "lb"),
  14503. name: "Front",
  14504. image: {
  14505. source: "./media/characters/fleur/front.svg",
  14506. extra: 309 / 283,
  14507. bottom: 0.007
  14508. }
  14509. },
  14510. },
  14511. [
  14512. {
  14513. name: "Normal",
  14514. height: math.unit(5 + 11 / 12, "feet"),
  14515. default: true
  14516. },
  14517. ]
  14518. ))
  14519. characterMakers.push(() => makeCharacter(
  14520. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14521. {
  14522. front: {
  14523. height: math.unit(5 + 4 / 12, "feet"),
  14524. weight: math.unit(122, "lb"),
  14525. name: "Front",
  14526. image: {
  14527. source: "./media/characters/jude/front.svg",
  14528. extra: 288 / 273,
  14529. bottom: 0.03
  14530. }
  14531. },
  14532. },
  14533. [
  14534. {
  14535. name: "Normal",
  14536. height: math.unit(5 + 4 / 12, "feet"),
  14537. default: true
  14538. },
  14539. ]
  14540. ))
  14541. characterMakers.push(() => makeCharacter(
  14542. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14543. {
  14544. front: {
  14545. height: math.unit(5 + 11 / 12, "feet"),
  14546. weight: math.unit(190, "lb"),
  14547. name: "Front",
  14548. image: {
  14549. source: "./media/characters/seara/front.svg",
  14550. extra: 1,
  14551. bottom: 0.05
  14552. }
  14553. },
  14554. },
  14555. [
  14556. {
  14557. name: "Normal",
  14558. height: math.unit(5 + 11 / 12, "feet"),
  14559. default: true
  14560. },
  14561. ]
  14562. ))
  14563. characterMakers.push(() => makeCharacter(
  14564. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14565. {
  14566. front: {
  14567. height: math.unit(16 + 5 / 12, "feet"),
  14568. weight: math.unit(524, "lb"),
  14569. name: "Front",
  14570. image: {
  14571. source: "./media/characters/caspian/front.svg",
  14572. extra: 1,
  14573. bottom: 0.04
  14574. }
  14575. },
  14576. },
  14577. [
  14578. {
  14579. name: "Normal",
  14580. height: math.unit(16 + 5 / 12, "feet"),
  14581. default: true
  14582. },
  14583. ]
  14584. ))
  14585. characterMakers.push(() => makeCharacter(
  14586. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14587. {
  14588. front: {
  14589. height: math.unit(5 + 7 / 12, "feet"),
  14590. weight: math.unit(170, "lb"),
  14591. name: "Front",
  14592. image: {
  14593. source: "./media/characters/mika/front.svg",
  14594. extra: 1,
  14595. bottom: 0.016
  14596. }
  14597. },
  14598. },
  14599. [
  14600. {
  14601. name: "Normal",
  14602. height: math.unit(5 + 7 / 12, "feet"),
  14603. default: true
  14604. },
  14605. ]
  14606. ))
  14607. characterMakers.push(() => makeCharacter(
  14608. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14609. {
  14610. front: {
  14611. height: math.unit(6 + 2 / 12, "feet"),
  14612. weight: math.unit(268, "lb"),
  14613. name: "Front",
  14614. image: {
  14615. source: "./media/characters/sol/front.svg",
  14616. extra: 247 / 231,
  14617. bottom: 0.05
  14618. }
  14619. },
  14620. },
  14621. [
  14622. {
  14623. name: "Normal",
  14624. height: math.unit(6 + 2 / 12, "feet"),
  14625. default: true
  14626. },
  14627. ]
  14628. ))
  14629. characterMakers.push(() => makeCharacter(
  14630. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14631. {
  14632. buizel: {
  14633. height: math.unit(2 + 5 / 12, "feet"),
  14634. weight: math.unit(87, "lb"),
  14635. name: "Buizel",
  14636. image: {
  14637. source: "./media/characters/umiko/buizel.svg",
  14638. extra: 172 / 157,
  14639. bottom: 0.01
  14640. }
  14641. },
  14642. floatzel: {
  14643. height: math.unit(5 + 9 / 12, "feet"),
  14644. weight: math.unit(250, "lb"),
  14645. name: "Floatzel",
  14646. image: {
  14647. source: "./media/characters/umiko/floatzel.svg",
  14648. extra: 262 / 248
  14649. }
  14650. },
  14651. },
  14652. [
  14653. {
  14654. name: "Normal",
  14655. height: math.unit(2 + 5 / 12, "feet"),
  14656. default: true
  14657. },
  14658. ]
  14659. ))
  14660. characterMakers.push(() => makeCharacter(
  14661. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14662. {
  14663. front: {
  14664. height: math.unit(6 + 2 / 12, "feet"),
  14665. weight: math.unit(146, "lb"),
  14666. name: "Front",
  14667. image: {
  14668. source: "./media/characters/iliac/front.svg",
  14669. extra: 389 / 365,
  14670. bottom: 0.035
  14671. }
  14672. },
  14673. },
  14674. [
  14675. {
  14676. name: "Normal",
  14677. height: math.unit(6 + 2 / 12, "feet"),
  14678. default: true
  14679. },
  14680. ]
  14681. ))
  14682. characterMakers.push(() => makeCharacter(
  14683. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14684. {
  14685. front: {
  14686. height: math.unit(6, "feet"),
  14687. weight: math.unit(170, "lb"),
  14688. name: "Front",
  14689. image: {
  14690. source: "./media/characters/topaz/front.svg",
  14691. extra: 317 / 303,
  14692. bottom: 0.055
  14693. }
  14694. },
  14695. },
  14696. [
  14697. {
  14698. name: "Normal",
  14699. height: math.unit(6, "feet"),
  14700. default: true
  14701. },
  14702. ]
  14703. ))
  14704. characterMakers.push(() => makeCharacter(
  14705. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14706. {
  14707. front: {
  14708. height: math.unit(5 + 11 / 12, "feet"),
  14709. weight: math.unit(144, "lb"),
  14710. name: "Front",
  14711. image: {
  14712. source: "./media/characters/gabriel/front.svg",
  14713. extra: 285 / 262,
  14714. bottom: 0.004
  14715. }
  14716. },
  14717. },
  14718. [
  14719. {
  14720. name: "Normal",
  14721. height: math.unit(5 + 11 / 12, "feet"),
  14722. default: true
  14723. },
  14724. ]
  14725. ))
  14726. characterMakers.push(() => makeCharacter(
  14727. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14728. {
  14729. side: {
  14730. height: math.unit(6 + 5 / 12, "feet"),
  14731. weight: math.unit(300, "lb"),
  14732. name: "Side",
  14733. image: {
  14734. source: "./media/characters/tempest-suicune/side.svg",
  14735. extra: 195 / 154,
  14736. bottom: 0.04
  14737. }
  14738. },
  14739. },
  14740. [
  14741. {
  14742. name: "Normal",
  14743. height: math.unit(6 + 5 / 12, "feet"),
  14744. default: true
  14745. },
  14746. ]
  14747. ))
  14748. characterMakers.push(() => makeCharacter(
  14749. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14750. {
  14751. front: {
  14752. height: math.unit(7 + 2 / 12, "feet"),
  14753. weight: math.unit(322, "lb"),
  14754. name: "Front",
  14755. image: {
  14756. source: "./media/characters/vulcan/front.svg",
  14757. extra: 154 / 147,
  14758. bottom: 0.04
  14759. }
  14760. },
  14761. },
  14762. [
  14763. {
  14764. name: "Normal",
  14765. height: math.unit(7 + 2 / 12, "feet"),
  14766. default: true
  14767. },
  14768. ]
  14769. ))
  14770. characterMakers.push(() => makeCharacter(
  14771. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14772. {
  14773. front: {
  14774. height: math.unit(5 + 10 / 12, "feet"),
  14775. weight: math.unit(264, "lb"),
  14776. name: "Front",
  14777. image: {
  14778. source: "./media/characters/gault/front.svg",
  14779. extra: 161 / 140,
  14780. bottom: 0.028
  14781. }
  14782. },
  14783. },
  14784. [
  14785. {
  14786. name: "Normal",
  14787. height: math.unit(5 + 10 / 12, "feet"),
  14788. default: true
  14789. },
  14790. ]
  14791. ))
  14792. characterMakers.push(() => makeCharacter(
  14793. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14794. {
  14795. front: {
  14796. height: math.unit(6, "feet"),
  14797. weight: math.unit(150, "lb"),
  14798. name: "Front",
  14799. image: {
  14800. source: "./media/characters/shard/front.svg",
  14801. extra: 273 / 238,
  14802. bottom: 0.02
  14803. }
  14804. },
  14805. },
  14806. [
  14807. {
  14808. name: "Normal",
  14809. height: math.unit(3 + 6 / 12, "feet"),
  14810. default: true
  14811. },
  14812. ]
  14813. ))
  14814. characterMakers.push(() => makeCharacter(
  14815. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14816. {
  14817. front: {
  14818. height: math.unit(5 + 11 / 12, "feet"),
  14819. weight: math.unit(146, "lb"),
  14820. name: "Front",
  14821. image: {
  14822. source: "./media/characters/ashe/front.svg",
  14823. extra: 400 / 373,
  14824. bottom: 0.01
  14825. }
  14826. },
  14827. },
  14828. [
  14829. {
  14830. name: "Normal",
  14831. height: math.unit(5 + 11 / 12, "feet"),
  14832. default: true
  14833. },
  14834. ]
  14835. ))
  14836. characterMakers.push(() => makeCharacter(
  14837. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14838. {
  14839. front: {
  14840. height: math.unit(5 + 5 / 12, "feet"),
  14841. weight: math.unit(135, "lb"),
  14842. name: "Front",
  14843. image: {
  14844. source: "./media/characters/beatrix/front.svg",
  14845. extra: 392 / 379,
  14846. bottom: 0.01
  14847. }
  14848. },
  14849. },
  14850. [
  14851. {
  14852. name: "Normal",
  14853. height: math.unit(6, "feet"),
  14854. default: true
  14855. },
  14856. ]
  14857. ))
  14858. characterMakers.push(() => makeCharacter(
  14859. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14860. {
  14861. front: {
  14862. height: math.unit(6, "feet"),
  14863. weight: math.unit(150, "lb"),
  14864. name: "Front",
  14865. image: {
  14866. source: "./media/characters/ignatius/front.svg",
  14867. extra: 245 / 222,
  14868. bottom: 0.01
  14869. }
  14870. },
  14871. },
  14872. [
  14873. {
  14874. name: "Normal",
  14875. height: math.unit(5 + 5 / 12, "feet"),
  14876. default: true
  14877. },
  14878. ]
  14879. ))
  14880. characterMakers.push(() => makeCharacter(
  14881. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14882. {
  14883. front: {
  14884. height: math.unit(6 + 2 / 12, "feet"),
  14885. weight: math.unit(138, "lb"),
  14886. name: "Front",
  14887. image: {
  14888. source: "./media/characters/mei-li/front.svg",
  14889. extra: 237 / 229,
  14890. bottom: 0.03
  14891. }
  14892. },
  14893. },
  14894. [
  14895. {
  14896. name: "Normal",
  14897. height: math.unit(6 + 2 / 12, "feet"),
  14898. default: true
  14899. },
  14900. ]
  14901. ))
  14902. characterMakers.push(() => makeCharacter(
  14903. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14904. {
  14905. front: {
  14906. height: math.unit(2 + 4 / 12, "feet"),
  14907. weight: math.unit(62, "lb"),
  14908. name: "Front",
  14909. image: {
  14910. source: "./media/characters/puru/front.svg",
  14911. extra: 206 / 149,
  14912. bottom: 0.06
  14913. }
  14914. },
  14915. },
  14916. [
  14917. {
  14918. name: "Normal",
  14919. height: math.unit(2 + 4 / 12, "feet"),
  14920. default: true
  14921. },
  14922. ]
  14923. ))
  14924. characterMakers.push(() => makeCharacter(
  14925. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14926. {
  14927. taur: {
  14928. height: math.unit(11, "feet"),
  14929. weight: math.unit(500, "lb"),
  14930. name: "Taur",
  14931. image: {
  14932. source: "./media/characters/kee/taur.svg",
  14933. extra: 1,
  14934. bottom: 0.04
  14935. }
  14936. },
  14937. },
  14938. [
  14939. {
  14940. name: "Normal",
  14941. height: math.unit(11, "feet"),
  14942. default: true
  14943. },
  14944. ]
  14945. ))
  14946. characterMakers.push(() => makeCharacter(
  14947. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14948. {
  14949. anthro: {
  14950. height: math.unit(7, "feet"),
  14951. weight: math.unit(190, "lb"),
  14952. name: "Anthro",
  14953. image: {
  14954. source: "./media/characters/cobalt-dracha/anthro.svg",
  14955. extra: 231 / 225,
  14956. bottom: 0.04
  14957. }
  14958. },
  14959. feral: {
  14960. height: math.unit(9 + 7 / 12, "feet"),
  14961. weight: math.unit(294, "lb"),
  14962. name: "Feral",
  14963. image: {
  14964. source: "./media/characters/cobalt-dracha/feral.svg",
  14965. extra: 692 / 633,
  14966. bottom: 0.05
  14967. }
  14968. },
  14969. },
  14970. [
  14971. {
  14972. name: "Normal",
  14973. height: math.unit(7, "feet"),
  14974. default: true
  14975. },
  14976. ]
  14977. ))
  14978. characterMakers.push(() => makeCharacter(
  14979. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14980. {
  14981. fallen: {
  14982. height: math.unit(11 + 8 / 12, "feet"),
  14983. weight: math.unit(485, "lb"),
  14984. name: "Java (Fallen)",
  14985. rename: true,
  14986. image: {
  14987. source: "./media/characters/java/fallen.svg",
  14988. extra: 226 / 208,
  14989. bottom: 0.005
  14990. }
  14991. },
  14992. godkin: {
  14993. height: math.unit(10 + 6 / 12, "feet"),
  14994. weight: math.unit(328, "lb"),
  14995. name: "Java (Godkin)",
  14996. rename: true,
  14997. image: {
  14998. source: "./media/characters/java/godkin.svg",
  14999. extra: 270 / 262,
  15000. bottom: 0.02
  15001. }
  15002. },
  15003. },
  15004. [
  15005. {
  15006. name: "Normal",
  15007. height: math.unit(11 + 8 / 12, "feet"),
  15008. default: true
  15009. },
  15010. ]
  15011. ))
  15012. characterMakers.push(() => makeCharacter(
  15013. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15014. {
  15015. front: {
  15016. height: math.unit(7 + 8 / 12, "feet"),
  15017. weight: math.unit(320, "lb"),
  15018. name: "Front",
  15019. image: {
  15020. source: "./media/characters/skoll/front.svg",
  15021. extra: 232 / 220,
  15022. bottom: 0.02
  15023. }
  15024. },
  15025. },
  15026. [
  15027. {
  15028. name: "Normal",
  15029. height: math.unit(7 + 8 / 12, "feet"),
  15030. default: true
  15031. },
  15032. ]
  15033. ))
  15034. characterMakers.push(() => makeCharacter(
  15035. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15036. {
  15037. front: {
  15038. height: math.unit(5 + 9 / 12, "feet"),
  15039. weight: math.unit(170, "lb"),
  15040. name: "Front",
  15041. image: {
  15042. source: "./media/characters/purna/front.svg",
  15043. extra: 239 / 229,
  15044. bottom: 0.01
  15045. }
  15046. },
  15047. },
  15048. [
  15049. {
  15050. name: "Normal",
  15051. height: math.unit(5 + 9 / 12, "feet"),
  15052. default: true
  15053. },
  15054. ]
  15055. ))
  15056. characterMakers.push(() => makeCharacter(
  15057. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15058. {
  15059. front: {
  15060. height: math.unit(5 + 9 / 12, "feet"),
  15061. weight: math.unit(142, "lb"),
  15062. name: "Front",
  15063. image: {
  15064. source: "./media/characters/kuva/front.svg",
  15065. extra: 281 / 271,
  15066. bottom: 0.006
  15067. }
  15068. },
  15069. },
  15070. [
  15071. {
  15072. name: "Normal",
  15073. height: math.unit(5 + 9 / 12, "feet"),
  15074. default: true
  15075. },
  15076. ]
  15077. ))
  15078. characterMakers.push(() => makeCharacter(
  15079. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15080. {
  15081. anthro: {
  15082. height: math.unit(9 + 2 / 12, "feet"),
  15083. weight: math.unit(270, "lb"),
  15084. name: "Anthro",
  15085. image: {
  15086. source: "./media/characters/embra/anthro.svg",
  15087. extra: 200 / 187,
  15088. bottom: 0.02
  15089. }
  15090. },
  15091. feral: {
  15092. height: math.unit(18 + 8 / 12, "feet"),
  15093. weight: math.unit(576, "lb"),
  15094. name: "Feral",
  15095. image: {
  15096. source: "./media/characters/embra/feral.svg",
  15097. extra: 152 / 137,
  15098. bottom: 0.037
  15099. }
  15100. },
  15101. },
  15102. [
  15103. {
  15104. name: "Normal",
  15105. height: math.unit(9 + 2 / 12, "feet"),
  15106. default: true
  15107. },
  15108. ]
  15109. ))
  15110. characterMakers.push(() => makeCharacter(
  15111. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15112. {
  15113. anthro: {
  15114. height: math.unit(10 + 9 / 12, "feet"),
  15115. weight: math.unit(224, "lb"),
  15116. name: "Anthro",
  15117. image: {
  15118. source: "./media/characters/grottos/anthro.svg",
  15119. extra: 350 / 332,
  15120. bottom: 0.045
  15121. }
  15122. },
  15123. feral: {
  15124. height: math.unit(20 + 7 / 12, "feet"),
  15125. weight: math.unit(629, "lb"),
  15126. name: "Feral",
  15127. image: {
  15128. source: "./media/characters/grottos/feral.svg",
  15129. extra: 207 / 190,
  15130. bottom: 0.05
  15131. }
  15132. },
  15133. },
  15134. [
  15135. {
  15136. name: "Normal",
  15137. height: math.unit(10 + 9 / 12, "feet"),
  15138. default: true
  15139. },
  15140. ]
  15141. ))
  15142. characterMakers.push(() => makeCharacter(
  15143. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15144. {
  15145. anthro: {
  15146. height: math.unit(9 + 6 / 12, "feet"),
  15147. weight: math.unit(298, "lb"),
  15148. name: "Anthro",
  15149. image: {
  15150. source: "./media/characters/frifna/anthro.svg",
  15151. extra: 282 / 269,
  15152. bottom: 0.015
  15153. }
  15154. },
  15155. feral: {
  15156. height: math.unit(16 + 2 / 12, "feet"),
  15157. weight: math.unit(624, "lb"),
  15158. name: "Feral",
  15159. image: {
  15160. source: "./media/characters/frifna/feral.svg"
  15161. }
  15162. },
  15163. },
  15164. [
  15165. {
  15166. name: "Normal",
  15167. height: math.unit(9 + 6 / 12, "feet"),
  15168. default: true
  15169. },
  15170. ]
  15171. ))
  15172. characterMakers.push(() => makeCharacter(
  15173. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15174. {
  15175. front: {
  15176. height: math.unit(6 + 2 / 12, "feet"),
  15177. weight: math.unit(168, "lb"),
  15178. name: "Front",
  15179. image: {
  15180. source: "./media/characters/elise/front.svg",
  15181. extra: 276 / 271
  15182. }
  15183. },
  15184. },
  15185. [
  15186. {
  15187. name: "Normal",
  15188. height: math.unit(6 + 2 / 12, "feet"),
  15189. default: true
  15190. },
  15191. ]
  15192. ))
  15193. characterMakers.push(() => makeCharacter(
  15194. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15195. {
  15196. front: {
  15197. height: math.unit(5 + 10 / 12, "feet"),
  15198. weight: math.unit(210, "lb"),
  15199. name: "Front",
  15200. image: {
  15201. source: "./media/characters/glade/front.svg",
  15202. extra: 258 / 247,
  15203. bottom: 0.008
  15204. }
  15205. },
  15206. },
  15207. [
  15208. {
  15209. name: "Normal",
  15210. height: math.unit(5 + 10 / 12, "feet"),
  15211. default: true
  15212. },
  15213. ]
  15214. ))
  15215. characterMakers.push(() => makeCharacter(
  15216. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15217. {
  15218. front: {
  15219. height: math.unit(5 + 10 / 12, "feet"),
  15220. weight: math.unit(129, "lb"),
  15221. name: "Front",
  15222. image: {
  15223. source: "./media/characters/rina/front.svg",
  15224. extra: 266 / 255,
  15225. bottom: 0.005
  15226. }
  15227. },
  15228. },
  15229. [
  15230. {
  15231. name: "Normal",
  15232. height: math.unit(5 + 10 / 12, "feet"),
  15233. default: true
  15234. },
  15235. ]
  15236. ))
  15237. characterMakers.push(() => makeCharacter(
  15238. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15239. {
  15240. front: {
  15241. height: math.unit(6 + 1 / 12, "feet"),
  15242. weight: math.unit(192, "lb"),
  15243. name: "Front",
  15244. image: {
  15245. source: "./media/characters/veronica/front.svg",
  15246. extra: 319 / 309,
  15247. bottom: 0.005
  15248. }
  15249. },
  15250. },
  15251. [
  15252. {
  15253. name: "Normal",
  15254. height: math.unit(6 + 1 / 12, "feet"),
  15255. default: true
  15256. },
  15257. ]
  15258. ))
  15259. characterMakers.push(() => makeCharacter(
  15260. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15261. {
  15262. front: {
  15263. height: math.unit(9 + 3 / 12, "feet"),
  15264. weight: math.unit(1100, "lb"),
  15265. name: "Front",
  15266. image: {
  15267. source: "./media/characters/braxton/front.svg",
  15268. extra: 1057 / 984,
  15269. bottom: 0.05
  15270. }
  15271. },
  15272. },
  15273. [
  15274. {
  15275. name: "Normal",
  15276. height: math.unit(9 + 3 / 12, "feet")
  15277. },
  15278. {
  15279. name: "Giant",
  15280. height: math.unit(300, "feet"),
  15281. default: true
  15282. },
  15283. {
  15284. name: "Macro",
  15285. height: math.unit(700, "feet")
  15286. },
  15287. {
  15288. name: "Megamacro",
  15289. height: math.unit(6000, "feet")
  15290. },
  15291. ]
  15292. ))
  15293. characterMakers.push(() => makeCharacter(
  15294. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15295. {
  15296. front: {
  15297. height: math.unit(6 + 7 / 12, "feet"),
  15298. weight: math.unit(150, "lb"),
  15299. name: "Front",
  15300. image: {
  15301. source: "./media/characters/blue-feyonics/front.svg",
  15302. extra: 1403 / 1306,
  15303. bottom: 0.047
  15304. }
  15305. },
  15306. },
  15307. [
  15308. {
  15309. name: "Normal",
  15310. height: math.unit(6 + 7 / 12, "feet"),
  15311. default: true
  15312. },
  15313. ]
  15314. ))
  15315. characterMakers.push(() => makeCharacter(
  15316. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15317. {
  15318. front: {
  15319. height: math.unit(1.8, "meters"),
  15320. weight: math.unit(60, "kg"),
  15321. name: "Front",
  15322. image: {
  15323. source: "./media/characters/maxwell/front.svg",
  15324. extra: 2060 / 1873
  15325. }
  15326. },
  15327. },
  15328. [
  15329. {
  15330. name: "Micro",
  15331. height: math.unit(1, "mm")
  15332. },
  15333. {
  15334. name: "Normal",
  15335. height: math.unit(1.8, "meter"),
  15336. default: true
  15337. },
  15338. {
  15339. name: "Macro",
  15340. height: math.unit(30, "meters")
  15341. },
  15342. {
  15343. name: "Megamacro",
  15344. height: math.unit(10, "km")
  15345. },
  15346. ]
  15347. ))
  15348. characterMakers.push(() => makeCharacter(
  15349. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15350. {
  15351. front: {
  15352. height: math.unit(6, "feet"),
  15353. weight: math.unit(150, "lb"),
  15354. name: "Front",
  15355. image: {
  15356. source: "./media/characters/jack/front.svg",
  15357. extra: 1754 / 1640,
  15358. bottom: 0.01
  15359. }
  15360. },
  15361. },
  15362. [
  15363. {
  15364. name: "Normal",
  15365. height: math.unit(80000, "feet"),
  15366. default: true
  15367. },
  15368. {
  15369. name: "Max size",
  15370. height: math.unit(10, "lightyears")
  15371. },
  15372. ]
  15373. ))
  15374. characterMakers.push(() => makeCharacter(
  15375. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15376. {
  15377. upright: {
  15378. height: math.unit(7, "feet"),
  15379. weight: math.unit(170, "lb"),
  15380. name: "Upright",
  15381. image: {
  15382. source: "./media/characters/cafat/upright.svg",
  15383. bottom: 0.01
  15384. }
  15385. },
  15386. uprightFull: {
  15387. height: math.unit(7, "feet"),
  15388. weight: math.unit(170, "lb"),
  15389. name: "Upright (Full)",
  15390. image: {
  15391. source: "./media/characters/cafat/upright-full.svg",
  15392. bottom: 0.01
  15393. }
  15394. },
  15395. side: {
  15396. height: math.unit(5, "feet"),
  15397. weight: math.unit(150, "lb"),
  15398. name: "Side",
  15399. image: {
  15400. source: "./media/characters/cafat/side.svg"
  15401. }
  15402. },
  15403. },
  15404. [
  15405. {
  15406. name: "Small",
  15407. height: math.unit(7, "feet"),
  15408. default: true
  15409. },
  15410. {
  15411. name: "Large",
  15412. height: math.unit(15.5, "feet")
  15413. },
  15414. ]
  15415. ))
  15416. characterMakers.push(() => makeCharacter(
  15417. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15418. {
  15419. front: {
  15420. height: math.unit(6, "feet"),
  15421. weight: math.unit(150, "lb"),
  15422. name: "Front",
  15423. image: {
  15424. source: "./media/characters/verin-raharra/front.svg",
  15425. extra: 5019 / 4835,
  15426. bottom: 0.023
  15427. }
  15428. },
  15429. },
  15430. [
  15431. {
  15432. name: "Normal",
  15433. height: math.unit(7 + 5 / 12, "feet"),
  15434. default: true
  15435. },
  15436. {
  15437. name: "Upsized",
  15438. height: math.unit(20, "feet")
  15439. },
  15440. ]
  15441. ))
  15442. characterMakers.push(() => makeCharacter(
  15443. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15444. {
  15445. front: {
  15446. height: math.unit(7, "feet"),
  15447. weight: math.unit(230, "lb"),
  15448. name: "Front",
  15449. image: {
  15450. source: "./media/characters/nakata/front.svg",
  15451. extra: 1.005,
  15452. bottom: 0.01
  15453. }
  15454. },
  15455. },
  15456. [
  15457. {
  15458. name: "Normal",
  15459. height: math.unit(7, "feet"),
  15460. default: true
  15461. },
  15462. {
  15463. name: "Big",
  15464. height: math.unit(14, "feet")
  15465. },
  15466. {
  15467. name: "Macro",
  15468. height: math.unit(400, "feet")
  15469. },
  15470. ]
  15471. ))
  15472. characterMakers.push(() => makeCharacter(
  15473. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15474. {
  15475. front: {
  15476. height: math.unit(4.91, "feet"),
  15477. weight: math.unit(100, "lb"),
  15478. name: "Front",
  15479. image: {
  15480. source: "./media/characters/lily/front.svg",
  15481. extra: 1585 / 1415,
  15482. bottom: 0.02
  15483. }
  15484. },
  15485. },
  15486. [
  15487. {
  15488. name: "Normal",
  15489. height: math.unit(4.91, "feet"),
  15490. default: true
  15491. },
  15492. ]
  15493. ))
  15494. characterMakers.push(() => makeCharacter(
  15495. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15496. {
  15497. laying: {
  15498. height: math.unit(4 + 4 / 12, "feet"),
  15499. weight: math.unit(600, "lb"),
  15500. name: "Laying",
  15501. image: {
  15502. source: "./media/characters/sheila/laying.svg",
  15503. extra: 1333 / 1265,
  15504. bottom: 0.16
  15505. }
  15506. },
  15507. },
  15508. [
  15509. {
  15510. name: "Normal",
  15511. height: math.unit(4 + 4 / 12, "feet"),
  15512. default: true
  15513. },
  15514. ]
  15515. ))
  15516. characterMakers.push(() => makeCharacter(
  15517. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15518. {
  15519. front: {
  15520. height: math.unit(6, "feet"),
  15521. weight: math.unit(190, "lb"),
  15522. name: "Front",
  15523. image: {
  15524. source: "./media/characters/sax/front.svg",
  15525. extra: 1187 / 973,
  15526. bottom: 0.042
  15527. }
  15528. },
  15529. },
  15530. [
  15531. {
  15532. name: "Micro",
  15533. height: math.unit(4, "inches"),
  15534. default: true
  15535. },
  15536. ]
  15537. ))
  15538. characterMakers.push(() => makeCharacter(
  15539. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15540. {
  15541. front: {
  15542. height: math.unit(6, "feet"),
  15543. weight: math.unit(150, "lb"),
  15544. name: "Front",
  15545. image: {
  15546. source: "./media/characters/pandora/front.svg",
  15547. extra: 2720 / 2556,
  15548. bottom: 0.015
  15549. }
  15550. },
  15551. back: {
  15552. height: math.unit(6, "feet"),
  15553. weight: math.unit(150, "lb"),
  15554. name: "Back",
  15555. image: {
  15556. source: "./media/characters/pandora/back.svg",
  15557. extra: 2720 / 2556,
  15558. bottom: 0.01
  15559. }
  15560. },
  15561. beans: {
  15562. height: math.unit(6 / 8, "feet"),
  15563. name: "Beans",
  15564. image: {
  15565. source: "./media/characters/pandora/beans.svg"
  15566. }
  15567. },
  15568. skirt: {
  15569. height: math.unit(6, "feet"),
  15570. weight: math.unit(150, "lb"),
  15571. name: "Skirt",
  15572. image: {
  15573. source: "./media/characters/pandora/skirt.svg",
  15574. extra: 1622 / 1525,
  15575. bottom: 0.015
  15576. }
  15577. },
  15578. hoodie: {
  15579. height: math.unit(6, "feet"),
  15580. weight: math.unit(150, "lb"),
  15581. name: "Hoodie",
  15582. image: {
  15583. source: "./media/characters/pandora/hoodie.svg",
  15584. extra: 1622 / 1525,
  15585. bottom: 0.015
  15586. }
  15587. },
  15588. casual: {
  15589. height: math.unit(6, "feet"),
  15590. weight: math.unit(150, "lb"),
  15591. name: "Casual",
  15592. image: {
  15593. source: "./media/characters/pandora/casual.svg",
  15594. extra: 1622 / 1525,
  15595. bottom: 0.015
  15596. }
  15597. },
  15598. },
  15599. [
  15600. {
  15601. name: "Normal",
  15602. height: math.unit(6, "feet")
  15603. },
  15604. {
  15605. name: "Big Steppy",
  15606. height: math.unit(1, "km"),
  15607. default: true
  15608. },
  15609. ]
  15610. ))
  15611. characterMakers.push(() => makeCharacter(
  15612. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15613. {
  15614. side: {
  15615. height: math.unit(10, "feet"),
  15616. weight: math.unit(800, "kg"),
  15617. name: "Side",
  15618. image: {
  15619. source: "./media/characters/venio-darcony/side.svg",
  15620. extra: 1373 / 1003,
  15621. bottom: 0.037
  15622. }
  15623. },
  15624. front: {
  15625. height: math.unit(19, "feet"),
  15626. weight: math.unit(800, "kg"),
  15627. name: "Front",
  15628. image: {
  15629. source: "./media/characters/venio-darcony/front.svg"
  15630. }
  15631. },
  15632. back: {
  15633. height: math.unit(19, "feet"),
  15634. weight: math.unit(800, "kg"),
  15635. name: "Back",
  15636. image: {
  15637. source: "./media/characters/venio-darcony/back.svg"
  15638. }
  15639. },
  15640. sideNsfw: {
  15641. height: math.unit(10, "feet"),
  15642. weight: math.unit(800, "kg"),
  15643. name: "Side (NSFW)",
  15644. image: {
  15645. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15646. extra: 1373 / 1003,
  15647. bottom: 0.037
  15648. }
  15649. },
  15650. frontNsfw: {
  15651. height: math.unit(19, "feet"),
  15652. weight: math.unit(800, "kg"),
  15653. name: "Front (NSFW)",
  15654. image: {
  15655. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15656. }
  15657. },
  15658. backNsfw: {
  15659. height: math.unit(19, "feet"),
  15660. weight: math.unit(800, "kg"),
  15661. name: "Back (NSFW)",
  15662. image: {
  15663. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15664. }
  15665. },
  15666. sideArmored: {
  15667. height: math.unit(10, "feet"),
  15668. weight: math.unit(800, "kg"),
  15669. name: "Side (Armored)",
  15670. image: {
  15671. source: "./media/characters/venio-darcony/side-armored.svg",
  15672. extra: 1373 / 1003,
  15673. bottom: 0.037
  15674. }
  15675. },
  15676. frontArmored: {
  15677. height: math.unit(19, "feet"),
  15678. weight: math.unit(900, "kg"),
  15679. name: "Front (Armored)",
  15680. image: {
  15681. source: "./media/characters/venio-darcony/front-armored.svg"
  15682. }
  15683. },
  15684. backArmored: {
  15685. height: math.unit(19, "feet"),
  15686. weight: math.unit(900, "kg"),
  15687. name: "Back (Armored)",
  15688. image: {
  15689. source: "./media/characters/venio-darcony/back-armored.svg"
  15690. }
  15691. },
  15692. sword: {
  15693. height: math.unit(10, "feet"),
  15694. weight: math.unit(50, "lb"),
  15695. name: "Sword",
  15696. image: {
  15697. source: "./media/characters/venio-darcony/sword.svg"
  15698. }
  15699. },
  15700. },
  15701. [
  15702. {
  15703. name: "Normal",
  15704. height: math.unit(10, "feet")
  15705. },
  15706. {
  15707. name: "Macro",
  15708. height: math.unit(130, "feet"),
  15709. default: true
  15710. },
  15711. {
  15712. name: "Macro+",
  15713. height: math.unit(240, "feet")
  15714. },
  15715. ]
  15716. ))
  15717. characterMakers.push(() => makeCharacter(
  15718. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15719. {
  15720. front: {
  15721. height: math.unit(6, "feet"),
  15722. weight: math.unit(150, "lb"),
  15723. name: "Front",
  15724. image: {
  15725. source: "./media/characters/veski/front.svg",
  15726. extra: 1299 / 1225,
  15727. bottom: 0.04
  15728. }
  15729. },
  15730. back: {
  15731. height: math.unit(6, "feet"),
  15732. weight: math.unit(150, "lb"),
  15733. name: "Back",
  15734. image: {
  15735. source: "./media/characters/veski/back.svg",
  15736. extra: 1299 / 1225,
  15737. bottom: 0.008
  15738. }
  15739. },
  15740. maw: {
  15741. height: math.unit(1.5 * 1.21, "feet"),
  15742. name: "Maw",
  15743. image: {
  15744. source: "./media/characters/veski/maw.svg"
  15745. }
  15746. },
  15747. },
  15748. [
  15749. {
  15750. name: "Macro",
  15751. height: math.unit(2, "km"),
  15752. default: true
  15753. },
  15754. ]
  15755. ))
  15756. characterMakers.push(() => makeCharacter(
  15757. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15758. {
  15759. front: {
  15760. height: math.unit(5 + 7 / 12, "feet"),
  15761. name: "Front",
  15762. image: {
  15763. source: "./media/characters/isabelle/front.svg",
  15764. extra: 2130 / 1976,
  15765. bottom: 0.05
  15766. }
  15767. },
  15768. },
  15769. [
  15770. {
  15771. name: "Supermicro",
  15772. height: math.unit(10, "micrometers")
  15773. },
  15774. {
  15775. name: "Micro",
  15776. height: math.unit(1, "inch")
  15777. },
  15778. {
  15779. name: "Tiny",
  15780. height: math.unit(5, "inches")
  15781. },
  15782. {
  15783. name: "Standard",
  15784. height: math.unit(5 + 7 / 12, "inches")
  15785. },
  15786. {
  15787. name: "Macro",
  15788. height: math.unit(80, "meters"),
  15789. default: true
  15790. },
  15791. {
  15792. name: "Megamacro",
  15793. height: math.unit(250, "meters")
  15794. },
  15795. {
  15796. name: "Gigamacro",
  15797. height: math.unit(5, "km")
  15798. },
  15799. {
  15800. name: "Cosmic",
  15801. height: math.unit(2.5e6, "miles")
  15802. },
  15803. ]
  15804. ))
  15805. characterMakers.push(() => makeCharacter(
  15806. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15807. {
  15808. front: {
  15809. height: math.unit(6, "feet"),
  15810. weight: math.unit(150, "lb"),
  15811. name: "Front",
  15812. image: {
  15813. source: "./media/characters/hanzo/front.svg",
  15814. extra: 374 / 344,
  15815. bottom: 0.02
  15816. }
  15817. },
  15818. },
  15819. [
  15820. {
  15821. name: "Normal",
  15822. height: math.unit(8, "feet"),
  15823. default: true
  15824. },
  15825. ]
  15826. ))
  15827. characterMakers.push(() => makeCharacter(
  15828. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15829. {
  15830. front: {
  15831. height: math.unit(7, "feet"),
  15832. weight: math.unit(130, "lb"),
  15833. name: "Front",
  15834. image: {
  15835. source: "./media/characters/anna/front.svg",
  15836. extra: 169 / 145,
  15837. bottom: 0.06
  15838. }
  15839. },
  15840. full: {
  15841. height: math.unit(4.96, "feet"),
  15842. weight: math.unit(220, "lb"),
  15843. name: "Full",
  15844. image: {
  15845. source: "./media/characters/anna/full.svg",
  15846. extra: 138 / 114,
  15847. bottom: 0.15
  15848. }
  15849. },
  15850. tongue: {
  15851. height: math.unit(2.53, "feet"),
  15852. name: "Tongue",
  15853. image: {
  15854. source: "./media/characters/anna/tongue.svg"
  15855. }
  15856. },
  15857. },
  15858. [
  15859. {
  15860. name: "Normal",
  15861. height: math.unit(7, "feet"),
  15862. default: true
  15863. },
  15864. ]
  15865. ))
  15866. characterMakers.push(() => makeCharacter(
  15867. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15868. {
  15869. front: {
  15870. height: math.unit(7, "feet"),
  15871. weight: math.unit(150, "lb"),
  15872. name: "Front",
  15873. image: {
  15874. source: "./media/characters/ian-corvid/front.svg",
  15875. extra: 150 / 142,
  15876. bottom: 0.02
  15877. }
  15878. },
  15879. back: {
  15880. height: math.unit(7, "feet"),
  15881. weight: math.unit(150, "lb"),
  15882. name: "Back",
  15883. image: {
  15884. source: "./media/characters/ian-corvid/back.svg",
  15885. extra: 150 / 143,
  15886. bottom: 0.01
  15887. }
  15888. },
  15889. stomping: {
  15890. height: math.unit(7, "feet"),
  15891. weight: math.unit(150, "lb"),
  15892. name: "Stomping",
  15893. image: {
  15894. source: "./media/characters/ian-corvid/stomping.svg",
  15895. extra: 76 / 72
  15896. }
  15897. },
  15898. sitting: {
  15899. height: math.unit(7 / 1.8, "feet"),
  15900. weight: math.unit(150, "lb"),
  15901. name: "Sitting",
  15902. image: {
  15903. source: "./media/characters/ian-corvid/sitting.svg",
  15904. extra: 1400 / 1269,
  15905. bottom: 0.15
  15906. }
  15907. },
  15908. },
  15909. [
  15910. {
  15911. name: "Tiny Microw",
  15912. height: math.unit(1, "inch")
  15913. },
  15914. {
  15915. name: "Microw",
  15916. height: math.unit(6, "inches")
  15917. },
  15918. {
  15919. name: "Crow",
  15920. height: math.unit(7 + 1 / 12, "feet"),
  15921. default: true
  15922. },
  15923. {
  15924. name: "Macrow",
  15925. height: math.unit(176, "feet")
  15926. },
  15927. ]
  15928. ))
  15929. characterMakers.push(() => makeCharacter(
  15930. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15931. {
  15932. front: {
  15933. height: math.unit(5 + 7 / 12, "feet"),
  15934. weight: math.unit(147, "lb"),
  15935. name: "Front",
  15936. image: {
  15937. source: "./media/characters/natalie-kellon/front.svg",
  15938. extra: 1214 / 1141,
  15939. bottom: 0.02
  15940. }
  15941. },
  15942. },
  15943. [
  15944. {
  15945. name: "Micro",
  15946. height: math.unit(1 / 16, "inch")
  15947. },
  15948. {
  15949. name: "Tiny",
  15950. height: math.unit(4, "inches")
  15951. },
  15952. {
  15953. name: "Normal",
  15954. height: math.unit(5 + 7 / 12, "feet"),
  15955. default: true
  15956. },
  15957. {
  15958. name: "Amazon",
  15959. height: math.unit(12, "feet")
  15960. },
  15961. {
  15962. name: "Giantess",
  15963. height: math.unit(160, "meters")
  15964. },
  15965. {
  15966. name: "Titaness",
  15967. height: math.unit(800, "meters")
  15968. },
  15969. ]
  15970. ))
  15971. characterMakers.push(() => makeCharacter(
  15972. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15973. {
  15974. front: {
  15975. height: math.unit(6, "feet"),
  15976. weight: math.unit(150, "lb"),
  15977. name: "Front",
  15978. image: {
  15979. source: "./media/characters/alluria/front.svg",
  15980. extra: 806 / 738,
  15981. bottom: 0.01
  15982. }
  15983. },
  15984. side: {
  15985. height: math.unit(6, "feet"),
  15986. weight: math.unit(150, "lb"),
  15987. name: "Side",
  15988. image: {
  15989. source: "./media/characters/alluria/side.svg",
  15990. extra: 800 / 750,
  15991. }
  15992. },
  15993. back: {
  15994. height: math.unit(6, "feet"),
  15995. weight: math.unit(150, "lb"),
  15996. name: "Back",
  15997. image: {
  15998. source: "./media/characters/alluria/back.svg",
  15999. extra: 806 / 738,
  16000. }
  16001. },
  16002. frontMaid: {
  16003. height: math.unit(6, "feet"),
  16004. weight: math.unit(150, "lb"),
  16005. name: "Front (Maid)",
  16006. image: {
  16007. source: "./media/characters/alluria/front-maid.svg",
  16008. extra: 806 / 738,
  16009. bottom: 0.01
  16010. }
  16011. },
  16012. sideMaid: {
  16013. height: math.unit(6, "feet"),
  16014. weight: math.unit(150, "lb"),
  16015. name: "Side (Maid)",
  16016. image: {
  16017. source: "./media/characters/alluria/side-maid.svg",
  16018. extra: 800 / 750,
  16019. bottom: 0.005
  16020. }
  16021. },
  16022. backMaid: {
  16023. height: math.unit(6, "feet"),
  16024. weight: math.unit(150, "lb"),
  16025. name: "Back (Maid)",
  16026. image: {
  16027. source: "./media/characters/alluria/back-maid.svg",
  16028. extra: 806 / 738,
  16029. }
  16030. },
  16031. },
  16032. [
  16033. {
  16034. name: "Micro",
  16035. height: math.unit(6, "inches"),
  16036. default: true
  16037. },
  16038. ]
  16039. ))
  16040. characterMakers.push(() => makeCharacter(
  16041. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16042. {
  16043. front: {
  16044. height: math.unit(6, "feet"),
  16045. weight: math.unit(150, "lb"),
  16046. name: "Front",
  16047. image: {
  16048. source: "./media/characters/kyle/front.svg",
  16049. extra: 1069 / 962,
  16050. bottom: 77.228 / 1727.45
  16051. }
  16052. },
  16053. },
  16054. [
  16055. {
  16056. name: "Macro",
  16057. height: math.unit(150, "feet"),
  16058. default: true
  16059. },
  16060. ]
  16061. ))
  16062. characterMakers.push(() => makeCharacter(
  16063. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16064. {
  16065. front: {
  16066. height: math.unit(6, "feet"),
  16067. weight: math.unit(300, "lb"),
  16068. name: "Front",
  16069. image: {
  16070. source: "./media/characters/duncan/front.svg",
  16071. extra: 1650 / 1482,
  16072. bottom: 0.05
  16073. }
  16074. },
  16075. },
  16076. [
  16077. {
  16078. name: "Macro",
  16079. height: math.unit(100, "feet"),
  16080. default: true
  16081. },
  16082. ]
  16083. ))
  16084. characterMakers.push(() => makeCharacter(
  16085. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16086. {
  16087. front: {
  16088. height: math.unit(5 + 4 / 12, "feet"),
  16089. weight: math.unit(220, "lb"),
  16090. name: "Front",
  16091. image: {
  16092. source: "./media/characters/memory/front.svg",
  16093. extra: 3641 / 3545,
  16094. bottom: 0.03
  16095. }
  16096. },
  16097. back: {
  16098. height: math.unit(5 + 4 / 12, "feet"),
  16099. weight: math.unit(220, "lb"),
  16100. name: "Back",
  16101. image: {
  16102. source: "./media/characters/memory/back.svg",
  16103. extra: 3641 / 3545,
  16104. bottom: 0.025
  16105. }
  16106. },
  16107. frontSkirt: {
  16108. height: math.unit(5 + 4 / 12, "feet"),
  16109. weight: math.unit(220, "lb"),
  16110. name: "Front (Skirt)",
  16111. image: {
  16112. source: "./media/characters/memory/front-skirt.svg",
  16113. extra: 3641 / 3545,
  16114. bottom: 0.03
  16115. }
  16116. },
  16117. frontDress: {
  16118. height: math.unit(5 + 4 / 12, "feet"),
  16119. weight: math.unit(220, "lb"),
  16120. name: "Front (Dress)",
  16121. image: {
  16122. source: "./media/characters/memory/front-dress.svg",
  16123. extra: 3641 / 3545,
  16124. bottom: 0.03
  16125. }
  16126. },
  16127. },
  16128. [
  16129. {
  16130. name: "Micro",
  16131. height: math.unit(6, "inches"),
  16132. default: true
  16133. },
  16134. {
  16135. name: "Normal",
  16136. height: math.unit(5 + 4 / 12, "feet")
  16137. },
  16138. ]
  16139. ))
  16140. characterMakers.push(() => makeCharacter(
  16141. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16142. {
  16143. front: {
  16144. height: math.unit(4 + 11 / 12, "feet"),
  16145. weight: math.unit(100, "lb"),
  16146. name: "Front",
  16147. image: {
  16148. source: "./media/characters/luno/front.svg",
  16149. extra: 1535 / 1487,
  16150. bottom: 0.03
  16151. }
  16152. },
  16153. },
  16154. [
  16155. {
  16156. name: "Micro",
  16157. height: math.unit(3, "inches")
  16158. },
  16159. {
  16160. name: "Normal",
  16161. height: math.unit(4 + 11 / 12, "feet"),
  16162. default: true
  16163. },
  16164. {
  16165. name: "Macro",
  16166. height: math.unit(300, "feet")
  16167. },
  16168. {
  16169. name: "Megamacro",
  16170. height: math.unit(700, "miles")
  16171. },
  16172. ]
  16173. ))
  16174. characterMakers.push(() => makeCharacter(
  16175. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16176. {
  16177. front: {
  16178. height: math.unit(6 + 2 / 12, "feet"),
  16179. weight: math.unit(170, "lb"),
  16180. name: "Front",
  16181. image: {
  16182. source: "./media/characters/jamesy/front.svg",
  16183. extra: 440 / 382,
  16184. bottom: 0.005
  16185. }
  16186. },
  16187. },
  16188. [
  16189. {
  16190. name: "Micro",
  16191. height: math.unit(3, "inches")
  16192. },
  16193. {
  16194. name: "Normal",
  16195. height: math.unit(6 + 2 / 12, "feet"),
  16196. default: true
  16197. },
  16198. {
  16199. name: "Macro",
  16200. height: math.unit(300, "feet")
  16201. },
  16202. {
  16203. name: "Megamacro",
  16204. height: math.unit(700, "miles")
  16205. },
  16206. ]
  16207. ))
  16208. characterMakers.push(() => makeCharacter(
  16209. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16210. {
  16211. front: {
  16212. height: math.unit(6, "feet"),
  16213. weight: math.unit(160, "lb"),
  16214. name: "Front",
  16215. image: {
  16216. source: "./media/characters/mark/front.svg",
  16217. extra: 3300 / 3100,
  16218. bottom: 136.42 / 3440.47
  16219. }
  16220. },
  16221. },
  16222. [
  16223. {
  16224. name: "Macro",
  16225. height: math.unit(120, "meters")
  16226. },
  16227. {
  16228. name: "Bigger Macro",
  16229. height: math.unit(350, "meters")
  16230. },
  16231. {
  16232. name: "Megamacro",
  16233. height: math.unit(8, "km"),
  16234. default: true
  16235. },
  16236. {
  16237. name: "Continental",
  16238. height: math.unit(4550, "km")
  16239. },
  16240. {
  16241. name: "Planetary",
  16242. height: math.unit(65000, "km")
  16243. },
  16244. ]
  16245. ))
  16246. characterMakers.push(() => makeCharacter(
  16247. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16248. {
  16249. front: {
  16250. height: math.unit(6, "feet"),
  16251. weight: math.unit(400, "lb"),
  16252. name: "Front",
  16253. image: {
  16254. source: "./media/characters/mac/front.svg",
  16255. extra: 1048 / 987.7,
  16256. bottom: 60 / 1107.6,
  16257. }
  16258. },
  16259. },
  16260. [
  16261. {
  16262. name: "Macro",
  16263. height: math.unit(500, "feet"),
  16264. default: true
  16265. },
  16266. ]
  16267. ))
  16268. characterMakers.push(() => makeCharacter(
  16269. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16270. {
  16271. front: {
  16272. height: math.unit(5 + 2 / 12, "feet"),
  16273. weight: math.unit(190, "lb"),
  16274. name: "Front",
  16275. image: {
  16276. source: "./media/characters/bari/front.svg",
  16277. extra: 3156 / 2880,
  16278. bottom: 0.03
  16279. }
  16280. },
  16281. back: {
  16282. height: math.unit(5 + 2 / 12, "feet"),
  16283. weight: math.unit(190, "lb"),
  16284. name: "Back",
  16285. image: {
  16286. source: "./media/characters/bari/back.svg",
  16287. extra: 3260 / 2834,
  16288. bottom: 0.025
  16289. }
  16290. },
  16291. frontPlush: {
  16292. height: math.unit(5 + 2 / 12, "feet"),
  16293. weight: math.unit(190, "lb"),
  16294. name: "Front (Plush)",
  16295. image: {
  16296. source: "./media/characters/bari/front-plush.svg",
  16297. extra: 1112 / 1061,
  16298. bottom: 0.002
  16299. }
  16300. },
  16301. },
  16302. [
  16303. {
  16304. name: "Micro",
  16305. height: math.unit(3, "inches")
  16306. },
  16307. {
  16308. name: "Normal",
  16309. height: math.unit(5 + 2 / 12, "feet"),
  16310. default: true
  16311. },
  16312. {
  16313. name: "Macro",
  16314. height: math.unit(20, "feet")
  16315. },
  16316. ]
  16317. ))
  16318. characterMakers.push(() => makeCharacter(
  16319. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16320. {
  16321. front: {
  16322. height: math.unit(6 + 1 / 12, "feet"),
  16323. weight: math.unit(275, "lb"),
  16324. name: "Front",
  16325. image: {
  16326. source: "./media/characters/hunter-misha-raven/front.svg"
  16327. }
  16328. },
  16329. },
  16330. [
  16331. {
  16332. name: "Mortal",
  16333. height: math.unit(6 + 1 / 12, "feet")
  16334. },
  16335. {
  16336. name: "Divine",
  16337. height: math.unit(1.12134e34, "parsecs"),
  16338. default: true
  16339. },
  16340. ]
  16341. ))
  16342. characterMakers.push(() => makeCharacter(
  16343. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16344. {
  16345. front: {
  16346. height: math.unit(6 + 3 / 12, "feet"),
  16347. weight: math.unit(220, "lb"),
  16348. name: "Front",
  16349. image: {
  16350. source: "./media/characters/max-calore/front.svg",
  16351. extra: 1700 / 1648,
  16352. bottom: 0.01
  16353. }
  16354. },
  16355. back: {
  16356. height: math.unit(6 + 3 / 12, "feet"),
  16357. weight: math.unit(220, "lb"),
  16358. name: "Back",
  16359. image: {
  16360. source: "./media/characters/max-calore/back.svg",
  16361. extra: 1700 / 1648,
  16362. bottom: 0.01
  16363. }
  16364. },
  16365. },
  16366. [
  16367. {
  16368. name: "Normal",
  16369. height: math.unit(6 + 3 / 12, "feet"),
  16370. default: true
  16371. },
  16372. ]
  16373. ))
  16374. characterMakers.push(() => makeCharacter(
  16375. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16376. {
  16377. side: {
  16378. height: math.unit(2 + 8 / 12, "feet"),
  16379. weight: math.unit(99, "lb"),
  16380. name: "Side",
  16381. image: {
  16382. source: "./media/characters/aspen/side.svg",
  16383. extra: 152 / 138,
  16384. bottom: 0.032
  16385. }
  16386. },
  16387. },
  16388. [
  16389. {
  16390. name: "Normal",
  16391. height: math.unit(2 + 8 / 12, "feet"),
  16392. default: true
  16393. },
  16394. ]
  16395. ))
  16396. characterMakers.push(() => makeCharacter(
  16397. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16398. {
  16399. side: {
  16400. height: math.unit(3 + 2 / 12, "feet"),
  16401. weight: math.unit(224, "lb"),
  16402. name: "Side",
  16403. image: {
  16404. source: "./media/characters/sheila-feral-wolf/side.svg",
  16405. extra: 179 / 166,
  16406. bottom: 0.03
  16407. }
  16408. },
  16409. },
  16410. [
  16411. {
  16412. name: "Normal",
  16413. height: math.unit(3 + 2 / 12, "feet"),
  16414. default: true
  16415. },
  16416. ]
  16417. ))
  16418. characterMakers.push(() => makeCharacter(
  16419. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16420. {
  16421. side: {
  16422. height: math.unit(1 + 9 / 12, "feet"),
  16423. weight: math.unit(38, "lb"),
  16424. name: "Side",
  16425. image: {
  16426. source: "./media/characters/michelle/side.svg",
  16427. extra: 147 / 136.7,
  16428. bottom: 0.03
  16429. }
  16430. },
  16431. },
  16432. [
  16433. {
  16434. name: "Normal",
  16435. height: math.unit(1 + 9 / 12, "feet"),
  16436. default: true
  16437. },
  16438. ]
  16439. ))
  16440. characterMakers.push(() => makeCharacter(
  16441. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16442. {
  16443. front: {
  16444. height: math.unit(1 + 1 / 12, "feet"),
  16445. weight: math.unit(18, "lb"),
  16446. name: "Front",
  16447. image: {
  16448. source: "./media/characters/nino/front.svg"
  16449. }
  16450. },
  16451. },
  16452. [
  16453. {
  16454. name: "Normal",
  16455. height: math.unit(1 + 1 / 12, "feet"),
  16456. default: true
  16457. },
  16458. ]
  16459. ))
  16460. characterMakers.push(() => makeCharacter(
  16461. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16462. {
  16463. front: {
  16464. height: math.unit(1, "feet"),
  16465. weight: math.unit(16, "lb"),
  16466. name: "Front",
  16467. image: {
  16468. source: "./media/characters/viola/front.svg"
  16469. }
  16470. },
  16471. },
  16472. [
  16473. {
  16474. name: "Normal",
  16475. height: math.unit(1, "feet"),
  16476. default: true
  16477. },
  16478. ]
  16479. ))
  16480. characterMakers.push(() => makeCharacter(
  16481. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16482. {
  16483. front: {
  16484. height: math.unit(6 + 5 / 12, "feet"),
  16485. weight: math.unit(580, "lb"),
  16486. name: "Front",
  16487. image: {
  16488. source: "./media/characters/atlas/front.svg",
  16489. extra: 298.5 / 290,
  16490. bottom: 0.015
  16491. }
  16492. },
  16493. },
  16494. [
  16495. {
  16496. name: "Normal",
  16497. height: math.unit(6 + 5 / 12, "feet"),
  16498. default: true
  16499. },
  16500. ]
  16501. ))
  16502. characterMakers.push(() => makeCharacter(
  16503. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16504. {
  16505. side: {
  16506. height: math.unit(1 + 10 / 12, "feet"),
  16507. weight: math.unit(25, "lb"),
  16508. name: "Side",
  16509. image: {
  16510. source: "./media/characters/davy/side.svg",
  16511. extra: 200 / 170,
  16512. bottom: 0.01
  16513. }
  16514. },
  16515. },
  16516. [
  16517. {
  16518. name: "Normal",
  16519. height: math.unit(1 + 10 / 12, "feet"),
  16520. default: true
  16521. },
  16522. ]
  16523. ))
  16524. characterMakers.push(() => makeCharacter(
  16525. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16526. {
  16527. side: {
  16528. height: math.unit(4 + 8 / 12, "feet"),
  16529. weight: math.unit(166, "lb"),
  16530. name: "Side",
  16531. image: {
  16532. source: "./media/characters/fiona/side.svg",
  16533. extra: 232 / 220,
  16534. bottom: 0.03
  16535. }
  16536. },
  16537. },
  16538. [
  16539. {
  16540. name: "Normal",
  16541. height: math.unit(4 + 8 / 12, "feet"),
  16542. default: true
  16543. },
  16544. ]
  16545. ))
  16546. characterMakers.push(() => makeCharacter(
  16547. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16548. {
  16549. front: {
  16550. height: math.unit(2, "feet"),
  16551. weight: math.unit(62, "lb"),
  16552. name: "Front",
  16553. image: {
  16554. source: "./media/characters/lyla/front.svg",
  16555. bottom: 0.1
  16556. }
  16557. },
  16558. },
  16559. [
  16560. {
  16561. name: "Normal",
  16562. height: math.unit(2, "feet"),
  16563. default: true
  16564. },
  16565. ]
  16566. ))
  16567. characterMakers.push(() => makeCharacter(
  16568. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16569. {
  16570. side: {
  16571. height: math.unit(1.8, "feet"),
  16572. weight: math.unit(44, "lb"),
  16573. name: "Side",
  16574. image: {
  16575. source: "./media/characters/perseus/side.svg",
  16576. bottom: 0.21
  16577. }
  16578. },
  16579. },
  16580. [
  16581. {
  16582. name: "Normal",
  16583. height: math.unit(1.8, "feet"),
  16584. default: true
  16585. },
  16586. ]
  16587. ))
  16588. characterMakers.push(() => makeCharacter(
  16589. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16590. {
  16591. side: {
  16592. height: math.unit(4 + 2 / 12, "feet"),
  16593. weight: math.unit(20, "lb"),
  16594. name: "Side",
  16595. image: {
  16596. source: "./media/characters/remus/side.svg"
  16597. }
  16598. },
  16599. },
  16600. [
  16601. {
  16602. name: "Normal",
  16603. height: math.unit(4 + 2 / 12, "feet"),
  16604. default: true
  16605. },
  16606. ]
  16607. ))
  16608. characterMakers.push(() => makeCharacter(
  16609. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16610. {
  16611. front: {
  16612. height: math.unit(4 + 11 / 12, "feet"),
  16613. weight: math.unit(114, "lb"),
  16614. name: "Front",
  16615. image: {
  16616. source: "./media/characters/raf/front.svg",
  16617. bottom: 20.5 / 1863
  16618. }
  16619. },
  16620. side: {
  16621. height: math.unit(4 + 11 / 12, "feet"),
  16622. weight: math.unit(114, "lb"),
  16623. name: "Side",
  16624. image: {
  16625. source: "./media/characters/raf/side.svg",
  16626. bottom: 22 / 1822
  16627. }
  16628. },
  16629. },
  16630. [
  16631. {
  16632. name: "Micro",
  16633. height: math.unit(2, "inches")
  16634. },
  16635. {
  16636. name: "Normal",
  16637. height: math.unit(4 + 11 / 12, "feet"),
  16638. default: true
  16639. },
  16640. {
  16641. name: "Macro",
  16642. height: math.unit(70, "feet")
  16643. },
  16644. ]
  16645. ))
  16646. characterMakers.push(() => makeCharacter(
  16647. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16648. {
  16649. front: {
  16650. height: math.unit(1.5, "meters"),
  16651. weight: math.unit(68, "kg"),
  16652. name: "Front",
  16653. image: {
  16654. source: "./media/characters/liam-einarr/front.svg",
  16655. extra: 2822 / 2666
  16656. }
  16657. },
  16658. back: {
  16659. height: math.unit(1.5, "meters"),
  16660. weight: math.unit(68, "kg"),
  16661. name: "Back",
  16662. image: {
  16663. source: "./media/characters/liam-einarr/back.svg",
  16664. extra: 2822 / 2666,
  16665. bottom: 0.015
  16666. }
  16667. },
  16668. },
  16669. [
  16670. {
  16671. name: "Normal",
  16672. height: math.unit(1.5, "meters"),
  16673. default: true
  16674. },
  16675. {
  16676. name: "Macro",
  16677. height: math.unit(150, "meters")
  16678. },
  16679. {
  16680. name: "Megamacro",
  16681. height: math.unit(35, "km")
  16682. },
  16683. ]
  16684. ))
  16685. characterMakers.push(() => makeCharacter(
  16686. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16687. {
  16688. front: {
  16689. height: math.unit(6, "feet"),
  16690. weight: math.unit(75, "kg"),
  16691. name: "Front",
  16692. image: {
  16693. source: "./media/characters/linda/front.svg",
  16694. extra: 930 / 874,
  16695. bottom: 0.004
  16696. }
  16697. },
  16698. },
  16699. [
  16700. {
  16701. name: "Normal",
  16702. height: math.unit(6, "feet"),
  16703. default: true
  16704. },
  16705. ]
  16706. ))
  16707. characterMakers.push(() => makeCharacter(
  16708. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16709. {
  16710. front: {
  16711. height: math.unit(6 + 8 / 12, "feet"),
  16712. weight: math.unit(220, "lb"),
  16713. name: "Front",
  16714. image: {
  16715. source: "./media/characters/caylex/front.svg",
  16716. extra: 821 / 772,
  16717. bottom: 0.07
  16718. }
  16719. },
  16720. back: {
  16721. height: math.unit(6 + 8 / 12, "feet"),
  16722. weight: math.unit(220, "lb"),
  16723. name: "Back",
  16724. image: {
  16725. source: "./media/characters/caylex/back.svg",
  16726. extra: 821 / 772,
  16727. bottom: 0.022
  16728. }
  16729. },
  16730. hand: {
  16731. height: math.unit(1.25, "feet"),
  16732. name: "Hand",
  16733. image: {
  16734. source: "./media/characters/caylex/hand.svg"
  16735. }
  16736. },
  16737. foot: {
  16738. height: math.unit(1.6, "feet"),
  16739. name: "Foot",
  16740. image: {
  16741. source: "./media/characters/caylex/foot.svg"
  16742. }
  16743. },
  16744. armored: {
  16745. height: math.unit(6 + 8 / 12, "feet"),
  16746. weight: math.unit(250, "lb"),
  16747. name: "Armored",
  16748. image: {
  16749. source: "./media/characters/caylex/armored.svg",
  16750. extra: 1420 / 1310,
  16751. bottom: 0.045
  16752. }
  16753. },
  16754. },
  16755. [
  16756. {
  16757. name: "Normal",
  16758. height: math.unit(6 + 8 / 12, "feet"),
  16759. default: true
  16760. },
  16761. {
  16762. name: "Normal+",
  16763. height: math.unit(12, "feet")
  16764. },
  16765. ]
  16766. ))
  16767. characterMakers.push(() => makeCharacter(
  16768. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16769. {
  16770. front: {
  16771. height: math.unit(7 + 6 / 12, "feet"),
  16772. weight: math.unit(288, "lb"),
  16773. name: "Front",
  16774. image: {
  16775. source: "./media/characters/alana/front.svg",
  16776. extra: 679 / 653,
  16777. bottom: 22.5 / 701
  16778. }
  16779. },
  16780. },
  16781. [
  16782. {
  16783. name: "Normal",
  16784. height: math.unit(7 + 6 / 12, "feet")
  16785. },
  16786. {
  16787. name: "Large",
  16788. height: math.unit(50, "feet")
  16789. },
  16790. {
  16791. name: "Macro",
  16792. height: math.unit(100, "feet"),
  16793. default: true
  16794. },
  16795. {
  16796. name: "Macro+",
  16797. height: math.unit(200, "feet")
  16798. },
  16799. ]
  16800. ))
  16801. characterMakers.push(() => makeCharacter(
  16802. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16803. {
  16804. front: {
  16805. height: math.unit(6 + 1 / 12, "feet"),
  16806. weight: math.unit(210, "lb"),
  16807. name: "Front",
  16808. image: {
  16809. source: "./media/characters/hasani/front.svg",
  16810. extra: 244 / 232,
  16811. bottom: 0.01
  16812. }
  16813. },
  16814. back: {
  16815. height: math.unit(6 + 1 / 12, "feet"),
  16816. weight: math.unit(210, "lb"),
  16817. name: "Back",
  16818. image: {
  16819. source: "./media/characters/hasani/back.svg",
  16820. extra: 244 / 232,
  16821. bottom: 0.01
  16822. }
  16823. },
  16824. },
  16825. [
  16826. {
  16827. name: "Normal",
  16828. height: math.unit(6 + 1 / 12, "feet")
  16829. },
  16830. {
  16831. name: "Macro",
  16832. height: math.unit(175, "feet"),
  16833. default: true
  16834. },
  16835. ]
  16836. ))
  16837. characterMakers.push(() => makeCharacter(
  16838. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16839. {
  16840. front: {
  16841. height: math.unit(1.82, "meters"),
  16842. weight: math.unit(140, "lb"),
  16843. name: "Front",
  16844. image: {
  16845. source: "./media/characters/nita/front.svg",
  16846. extra: 2473 / 2363,
  16847. bottom: 0.01
  16848. }
  16849. },
  16850. },
  16851. [
  16852. {
  16853. name: "Normal",
  16854. height: math.unit(1.82, "m")
  16855. },
  16856. {
  16857. name: "Macro",
  16858. height: math.unit(300, "m")
  16859. },
  16860. {
  16861. name: "Mistake Canon",
  16862. height: math.unit(0.5, "miles"),
  16863. default: true
  16864. },
  16865. {
  16866. name: "Big Mistake",
  16867. height: math.unit(13, "miles")
  16868. },
  16869. {
  16870. name: "Playing God",
  16871. height: math.unit(2450, "miles")
  16872. },
  16873. ]
  16874. ))
  16875. characterMakers.push(() => makeCharacter(
  16876. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16877. {
  16878. front: {
  16879. height: math.unit(4, "feet"),
  16880. weight: math.unit(120, "lb"),
  16881. name: "Front",
  16882. image: {
  16883. source: "./media/characters/shiriko/front.svg",
  16884. extra: 195 / 188
  16885. }
  16886. },
  16887. },
  16888. [
  16889. {
  16890. name: "Normal",
  16891. height: math.unit(4, "feet"),
  16892. default: true
  16893. },
  16894. ]
  16895. ))
  16896. characterMakers.push(() => makeCharacter(
  16897. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16898. {
  16899. front: {
  16900. height: math.unit(6, "feet"),
  16901. name: "front",
  16902. image: {
  16903. source: "./media/characters/deja/front.svg",
  16904. extra: 926 / 840,
  16905. bottom: 0.07
  16906. }
  16907. },
  16908. },
  16909. [
  16910. {
  16911. name: "Planck Length",
  16912. height: math.unit(1.6e-35, "meters")
  16913. },
  16914. {
  16915. name: "Normal",
  16916. height: math.unit(30.48, "meters"),
  16917. default: true
  16918. },
  16919. {
  16920. name: "Universal",
  16921. height: math.unit(8.8e26, "meters")
  16922. },
  16923. ]
  16924. ))
  16925. characterMakers.push(() => makeCharacter(
  16926. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16927. {
  16928. side: {
  16929. height: math.unit(8, "feet"),
  16930. weight: math.unit(6300, "lb"),
  16931. name: "Side",
  16932. image: {
  16933. source: "./media/characters/anima/side.svg",
  16934. bottom: 0.035
  16935. }
  16936. },
  16937. },
  16938. [
  16939. {
  16940. name: "Normal",
  16941. height: math.unit(8, "feet"),
  16942. default: true
  16943. },
  16944. ]
  16945. ))
  16946. characterMakers.push(() => makeCharacter(
  16947. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16948. {
  16949. front: {
  16950. height: math.unit(8, "feet"),
  16951. weight: math.unit(350, "lb"),
  16952. name: "Front",
  16953. image: {
  16954. source: "./media/characters/bianca/front.svg",
  16955. extra: 234 / 225,
  16956. bottom: 0.03
  16957. }
  16958. },
  16959. },
  16960. [
  16961. {
  16962. name: "Normal",
  16963. height: math.unit(8, "feet"),
  16964. default: true
  16965. },
  16966. ]
  16967. ))
  16968. characterMakers.push(() => makeCharacter(
  16969. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16970. {
  16971. front: {
  16972. height: math.unit(6, "feet"),
  16973. weight: math.unit(150, "lb"),
  16974. name: "Front",
  16975. image: {
  16976. source: "./media/characters/adinia/front.svg",
  16977. extra: 1845 / 1672,
  16978. bottom: 0.02
  16979. }
  16980. },
  16981. back: {
  16982. height: math.unit(6, "feet"),
  16983. weight: math.unit(150, "lb"),
  16984. name: "Back",
  16985. image: {
  16986. source: "./media/characters/adinia/back.svg",
  16987. extra: 1845 / 1672,
  16988. bottom: 0.002
  16989. }
  16990. },
  16991. },
  16992. [
  16993. {
  16994. name: "Normal",
  16995. height: math.unit(11 + 5 / 12, "feet"),
  16996. default: true
  16997. },
  16998. ]
  16999. ))
  17000. characterMakers.push(() => makeCharacter(
  17001. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17002. {
  17003. front: {
  17004. height: math.unit(3, "meters"),
  17005. weight: math.unit(200, "kg"),
  17006. name: "Front",
  17007. image: {
  17008. source: "./media/characters/lykasa/front.svg",
  17009. extra: 1076 / 976,
  17010. bottom: 0.06
  17011. }
  17012. },
  17013. },
  17014. [
  17015. {
  17016. name: "Normal",
  17017. height: math.unit(3, "meters")
  17018. },
  17019. {
  17020. name: "Kaiju",
  17021. height: math.unit(120, "meters"),
  17022. default: true
  17023. },
  17024. {
  17025. name: "Mega Kaiju",
  17026. height: math.unit(240, "km")
  17027. },
  17028. {
  17029. name: "Giga Kaiju",
  17030. height: math.unit(400, "megameters")
  17031. },
  17032. {
  17033. name: "Tera Kaiju",
  17034. height: math.unit(800, "gigameters")
  17035. },
  17036. {
  17037. name: "Kaiju Dragon Goddess",
  17038. height: math.unit(26, "zettaparsecs")
  17039. },
  17040. ]
  17041. ))
  17042. characterMakers.push(() => makeCharacter(
  17043. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17044. {
  17045. side: {
  17046. height: math.unit(283 / 124 * 6, "feet"),
  17047. weight: math.unit(35000, "lb"),
  17048. name: "Side",
  17049. image: {
  17050. source: "./media/characters/malfaren/side.svg",
  17051. extra: 2500 / 1010,
  17052. bottom: 0.01
  17053. }
  17054. },
  17055. front: {
  17056. height: math.unit(22.36, "feet"),
  17057. weight: math.unit(35000, "lb"),
  17058. name: "Front",
  17059. image: {
  17060. source: "./media/characters/malfaren/front.svg",
  17061. extra: 1631 / 1476,
  17062. bottom: 0.01
  17063. }
  17064. },
  17065. maw: {
  17066. height: math.unit(6.9, "feet"),
  17067. name: "Maw",
  17068. image: {
  17069. source: "./media/characters/malfaren/maw.svg"
  17070. }
  17071. },
  17072. },
  17073. [
  17074. {
  17075. name: "Big",
  17076. height: math.unit(283 / 162 * 6, "feet"),
  17077. },
  17078. {
  17079. name: "Bigger",
  17080. height: math.unit(283 / 124 * 6, "feet")
  17081. },
  17082. {
  17083. name: "Massive",
  17084. height: math.unit(283 / 92 * 6, "feet"),
  17085. default: true
  17086. },
  17087. {
  17088. name: "👀💦",
  17089. height: math.unit(283 / 73 * 6, "feet"),
  17090. },
  17091. ]
  17092. ))
  17093. characterMakers.push(() => makeCharacter(
  17094. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17095. {
  17096. front: {
  17097. height: math.unit(1.7, "m"),
  17098. weight: math.unit(70, "kg"),
  17099. name: "Front",
  17100. image: {
  17101. source: "./media/characters/kernel/front.svg",
  17102. extra: 222 / 210,
  17103. bottom: 0.007
  17104. }
  17105. },
  17106. },
  17107. [
  17108. {
  17109. name: "Nano",
  17110. height: math.unit(17, "micrometers")
  17111. },
  17112. {
  17113. name: "Micro",
  17114. height: math.unit(1.7, "mm")
  17115. },
  17116. {
  17117. name: "Small",
  17118. height: math.unit(1.7, "cm")
  17119. },
  17120. {
  17121. name: "Normal",
  17122. height: math.unit(1.7, "m"),
  17123. default: true
  17124. },
  17125. ]
  17126. ))
  17127. characterMakers.push(() => makeCharacter(
  17128. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17129. {
  17130. front: {
  17131. height: math.unit(1.75, "meters"),
  17132. weight: math.unit(65, "kg"),
  17133. name: "Front",
  17134. image: {
  17135. source: "./media/characters/jayne-folest/front.svg",
  17136. extra: 2115 / 2007,
  17137. bottom: 0.02
  17138. }
  17139. },
  17140. back: {
  17141. height: math.unit(1.75, "meters"),
  17142. weight: math.unit(65, "kg"),
  17143. name: "Back",
  17144. image: {
  17145. source: "./media/characters/jayne-folest/back.svg",
  17146. extra: 2115 / 2007,
  17147. bottom: 0.005
  17148. }
  17149. },
  17150. frontClothed: {
  17151. height: math.unit(1.75, "meters"),
  17152. weight: math.unit(65, "kg"),
  17153. name: "Front (Clothed)",
  17154. image: {
  17155. source: "./media/characters/jayne-folest/front-clothed.svg",
  17156. extra: 2115 / 2007,
  17157. bottom: 0.035
  17158. }
  17159. },
  17160. hand: {
  17161. height: math.unit(1 / 1.260, "feet"),
  17162. name: "Hand",
  17163. image: {
  17164. source: "./media/characters/jayne-folest/hand.svg"
  17165. }
  17166. },
  17167. foot: {
  17168. height: math.unit(1 / 0.918, "feet"),
  17169. name: "Foot",
  17170. image: {
  17171. source: "./media/characters/jayne-folest/foot.svg"
  17172. }
  17173. },
  17174. },
  17175. [
  17176. {
  17177. name: "Micro",
  17178. height: math.unit(4, "cm")
  17179. },
  17180. {
  17181. name: "Normal",
  17182. height: math.unit(1.75, "meters")
  17183. },
  17184. {
  17185. name: "Macro",
  17186. height: math.unit(47.5, "meters"),
  17187. default: true
  17188. },
  17189. ]
  17190. ))
  17191. characterMakers.push(() => makeCharacter(
  17192. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17193. {
  17194. front: {
  17195. height: math.unit(180, "cm"),
  17196. weight: math.unit(70, "kg"),
  17197. name: "Front",
  17198. image: {
  17199. source: "./media/characters/algier/front.svg",
  17200. extra: 596 / 572,
  17201. bottom: 0.04
  17202. }
  17203. },
  17204. back: {
  17205. height: math.unit(180, "cm"),
  17206. weight: math.unit(70, "kg"),
  17207. name: "Back",
  17208. image: {
  17209. source: "./media/characters/algier/back.svg",
  17210. extra: 596 / 572,
  17211. bottom: 0.025
  17212. }
  17213. },
  17214. frontdressed: {
  17215. height: math.unit(180, "cm"),
  17216. weight: math.unit(150, "kg"),
  17217. name: "Front-dressed",
  17218. image: {
  17219. source: "./media/characters/algier/front-dressed.svg",
  17220. extra: 596 / 572,
  17221. bottom: 0.038
  17222. }
  17223. },
  17224. },
  17225. [
  17226. {
  17227. name: "Micro",
  17228. height: math.unit(5, "cm")
  17229. },
  17230. {
  17231. name: "Normal",
  17232. height: math.unit(180, "cm"),
  17233. default: true
  17234. },
  17235. {
  17236. name: "Macro",
  17237. height: math.unit(64, "m")
  17238. },
  17239. ]
  17240. ))
  17241. characterMakers.push(() => makeCharacter(
  17242. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17243. {
  17244. upright: {
  17245. height: math.unit(7, "feet"),
  17246. weight: math.unit(300, "lb"),
  17247. name: "Upright",
  17248. image: {
  17249. source: "./media/characters/pretzel/upright.svg",
  17250. extra: 534 / 522,
  17251. bottom: 0.065
  17252. }
  17253. },
  17254. sprawling: {
  17255. height: math.unit(3.75, "feet"),
  17256. weight: math.unit(300, "lb"),
  17257. name: "Sprawling",
  17258. image: {
  17259. source: "./media/characters/pretzel/sprawling.svg",
  17260. extra: 314 / 281,
  17261. bottom: 0.1
  17262. }
  17263. },
  17264. tongue: {
  17265. height: math.unit(2, "feet"),
  17266. name: "Tongue",
  17267. image: {
  17268. source: "./media/characters/pretzel/tongue.svg"
  17269. }
  17270. },
  17271. },
  17272. [
  17273. {
  17274. name: "Normal",
  17275. height: math.unit(7, "feet"),
  17276. default: true
  17277. },
  17278. {
  17279. name: "Oversized",
  17280. height: math.unit(15, "feet")
  17281. },
  17282. {
  17283. name: "Huge",
  17284. height: math.unit(30, "feet")
  17285. },
  17286. {
  17287. name: "Macro",
  17288. height: math.unit(250, "feet")
  17289. },
  17290. ]
  17291. ))
  17292. characterMakers.push(() => makeCharacter(
  17293. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17294. {
  17295. sideFront: {
  17296. height: math.unit(5 + 2 / 12, "feet"),
  17297. weight: math.unit(120, "lb"),
  17298. name: "Front Side",
  17299. image: {
  17300. source: "./media/characters/roxi/side-front.svg",
  17301. extra: 2924 / 2717,
  17302. bottom: 0.08
  17303. }
  17304. },
  17305. sideBack: {
  17306. height: math.unit(5 + 2 / 12, "feet"),
  17307. weight: math.unit(120, "lb"),
  17308. name: "Back Side",
  17309. image: {
  17310. source: "./media/characters/roxi/side-back.svg",
  17311. extra: 2904 / 2693,
  17312. bottom: 0.06
  17313. }
  17314. },
  17315. front: {
  17316. height: math.unit(5 + 2 / 12, "feet"),
  17317. weight: math.unit(120, "lb"),
  17318. name: "Front",
  17319. image: {
  17320. source: "./media/characters/roxi/front.svg",
  17321. extra: 2028 / 1907,
  17322. bottom: 0.01
  17323. }
  17324. },
  17325. frontAlt: {
  17326. height: math.unit(5 + 2 / 12, "feet"),
  17327. weight: math.unit(120, "lb"),
  17328. name: "Front (Alt)",
  17329. image: {
  17330. source: "./media/characters/roxi/front-alt.svg",
  17331. extra: 1828 / 1798,
  17332. bottom: 0.01
  17333. }
  17334. },
  17335. sitting: {
  17336. height: math.unit(2.8, "feet"),
  17337. weight: math.unit(120, "lb"),
  17338. name: "Sitting",
  17339. image: {
  17340. source: "./media/characters/roxi/sitting.svg",
  17341. extra: 2660 / 2462,
  17342. bottom: 0.1
  17343. }
  17344. },
  17345. },
  17346. [
  17347. {
  17348. name: "Normal",
  17349. height: math.unit(5 + 2 / 12, "feet"),
  17350. default: true
  17351. },
  17352. ]
  17353. ))
  17354. characterMakers.push(() => makeCharacter(
  17355. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17356. {
  17357. side: {
  17358. height: math.unit(55, "feet"),
  17359. weight: math.unit(153, "tons"),
  17360. name: "Side",
  17361. image: {
  17362. source: "./media/characters/shadow/side.svg",
  17363. extra: 701 / 628,
  17364. bottom: 0.02
  17365. }
  17366. },
  17367. flying: {
  17368. height: math.unit(145, "feet"),
  17369. weight: math.unit(153, "tons"),
  17370. name: "Flying",
  17371. image: {
  17372. source: "./media/characters/shadow/flying.svg"
  17373. }
  17374. },
  17375. },
  17376. [
  17377. {
  17378. name: "Normal",
  17379. height: math.unit(55, "feet"),
  17380. default: true
  17381. },
  17382. ]
  17383. ))
  17384. characterMakers.push(() => makeCharacter(
  17385. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17386. {
  17387. front: {
  17388. height: math.unit(6, "feet"),
  17389. weight: math.unit(200, "lb"),
  17390. name: "Front",
  17391. image: {
  17392. source: "./media/characters/marcie/front.svg",
  17393. extra: 960 / 876,
  17394. bottom: 58 / 1017.87
  17395. }
  17396. },
  17397. },
  17398. [
  17399. {
  17400. name: "Macro",
  17401. height: math.unit(1, "mile"),
  17402. default: true
  17403. },
  17404. ]
  17405. ))
  17406. characterMakers.push(() => makeCharacter(
  17407. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17408. {
  17409. front: {
  17410. height: math.unit(7, "feet"),
  17411. weight: math.unit(200, "lb"),
  17412. name: "Front",
  17413. image: {
  17414. source: "./media/characters/kachina/front.svg",
  17415. extra: 1290.68 / 1119,
  17416. bottom: 36.5 / 1327.18
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Normal",
  17423. height: math.unit(7, "feet"),
  17424. default: true
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17430. {
  17431. looking: {
  17432. height: math.unit(2, "meters"),
  17433. weight: math.unit(300, "kg"),
  17434. name: "Looking",
  17435. image: {
  17436. source: "./media/characters/kash/looking.svg",
  17437. extra: 474 / 344,
  17438. bottom: 0.03
  17439. }
  17440. },
  17441. side: {
  17442. height: math.unit(2, "meters"),
  17443. weight: math.unit(300, "kg"),
  17444. name: "Side",
  17445. image: {
  17446. source: "./media/characters/kash/side.svg",
  17447. extra: 302 / 251,
  17448. bottom: 0.03
  17449. }
  17450. },
  17451. front: {
  17452. height: math.unit(2, "meters"),
  17453. weight: math.unit(300, "kg"),
  17454. name: "Front",
  17455. image: {
  17456. source: "./media/characters/kash/front.svg",
  17457. extra: 495 / 360,
  17458. bottom: 0.015
  17459. }
  17460. },
  17461. },
  17462. [
  17463. {
  17464. name: "Normal",
  17465. height: math.unit(2, "meters"),
  17466. default: true
  17467. },
  17468. {
  17469. name: "Big",
  17470. height: math.unit(3, "meters")
  17471. },
  17472. {
  17473. name: "Large",
  17474. height: math.unit(5, "meters")
  17475. },
  17476. ]
  17477. ))
  17478. characterMakers.push(() => makeCharacter(
  17479. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17480. {
  17481. feeding: {
  17482. height: math.unit(6.7, "feet"),
  17483. weight: math.unit(350, "lb"),
  17484. name: "Feeding",
  17485. image: {
  17486. source: "./media/characters/lalim/feeding.svg",
  17487. }
  17488. },
  17489. },
  17490. [
  17491. {
  17492. name: "Normal",
  17493. height: math.unit(6.7, "feet"),
  17494. default: true
  17495. },
  17496. ]
  17497. ))
  17498. characterMakers.push(() => makeCharacter(
  17499. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17500. {
  17501. front: {
  17502. height: math.unit(9.5, "feet"),
  17503. weight: math.unit(600, "lb"),
  17504. name: "Front",
  17505. image: {
  17506. source: "./media/characters/de'vout/front.svg",
  17507. extra: 1443 / 1328,
  17508. bottom: 0.025
  17509. }
  17510. },
  17511. back: {
  17512. height: math.unit(9.5, "feet"),
  17513. weight: math.unit(600, "lb"),
  17514. name: "Back",
  17515. image: {
  17516. source: "./media/characters/de'vout/back.svg",
  17517. extra: 1443 / 1328
  17518. }
  17519. },
  17520. frontDressed: {
  17521. height: math.unit(9.5, "feet"),
  17522. weight: math.unit(600, "lb"),
  17523. name: "Front (Dressed",
  17524. image: {
  17525. source: "./media/characters/de'vout/front-dressed.svg",
  17526. extra: 1443 / 1328,
  17527. bottom: 0.025
  17528. }
  17529. },
  17530. backDressed: {
  17531. height: math.unit(9.5, "feet"),
  17532. weight: math.unit(600, "lb"),
  17533. name: "Back (Dressed",
  17534. image: {
  17535. source: "./media/characters/de'vout/back-dressed.svg",
  17536. extra: 1443 / 1328
  17537. }
  17538. },
  17539. },
  17540. [
  17541. {
  17542. name: "Normal",
  17543. height: math.unit(9.5, "feet"),
  17544. default: true
  17545. },
  17546. ]
  17547. ))
  17548. characterMakers.push(() => makeCharacter(
  17549. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17550. {
  17551. front: {
  17552. height: math.unit(8, "feet"),
  17553. weight: math.unit(225, "lb"),
  17554. name: "Front",
  17555. image: {
  17556. source: "./media/characters/talana/front.svg",
  17557. extra: 1410 / 1300,
  17558. bottom: 0.015
  17559. }
  17560. },
  17561. frontDressed: {
  17562. height: math.unit(8, "feet"),
  17563. weight: math.unit(225, "lb"),
  17564. name: "Front (Dressed",
  17565. image: {
  17566. source: "./media/characters/talana/front-dressed.svg",
  17567. extra: 1410 / 1300,
  17568. bottom: 0.015
  17569. }
  17570. },
  17571. },
  17572. [
  17573. {
  17574. name: "Normal",
  17575. height: math.unit(8, "feet"),
  17576. default: true
  17577. },
  17578. ]
  17579. ))
  17580. characterMakers.push(() => makeCharacter(
  17581. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17582. {
  17583. side: {
  17584. height: math.unit(7.2, "feet"),
  17585. weight: math.unit(150, "lb"),
  17586. name: "Side",
  17587. image: {
  17588. source: "./media/characters/xeauvok/side.svg",
  17589. extra: 1975 / 1523,
  17590. bottom: 0.07
  17591. }
  17592. },
  17593. },
  17594. [
  17595. {
  17596. name: "Normal",
  17597. height: math.unit(7.2, "feet"),
  17598. default: true
  17599. },
  17600. ]
  17601. ))
  17602. characterMakers.push(() => makeCharacter(
  17603. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17604. {
  17605. side: {
  17606. height: math.unit(10, "feet"),
  17607. weight: math.unit(900, "kg"),
  17608. name: "Side",
  17609. image: {
  17610. source: "./media/characters/zara/side.svg",
  17611. extra: 504 / 498
  17612. }
  17613. },
  17614. },
  17615. [
  17616. {
  17617. name: "Normal",
  17618. height: math.unit(10, "feet"),
  17619. default: true
  17620. },
  17621. ]
  17622. ))
  17623. characterMakers.push(() => makeCharacter(
  17624. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17625. {
  17626. side: {
  17627. height: math.unit(6, "feet"),
  17628. weight: math.unit(150, "lb"),
  17629. name: "Side",
  17630. image: {
  17631. source: "./media/characters/richard-dragon/side.svg",
  17632. extra: 845 / 340,
  17633. bottom: 0.017
  17634. }
  17635. },
  17636. maw: {
  17637. height: math.unit(2.97, "feet"),
  17638. name: "Maw",
  17639. image: {
  17640. source: "./media/characters/richard-dragon/maw.svg"
  17641. }
  17642. },
  17643. },
  17644. [
  17645. ]
  17646. ))
  17647. characterMakers.push(() => makeCharacter(
  17648. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17649. {
  17650. front: {
  17651. height: math.unit(4, "feet"),
  17652. weight: math.unit(100, "lb"),
  17653. name: "Front",
  17654. image: {
  17655. source: "./media/characters/richard-smeargle/front.svg",
  17656. extra: 2952 / 2820,
  17657. bottom: 0.028
  17658. }
  17659. },
  17660. },
  17661. [
  17662. {
  17663. name: "Normal",
  17664. height: math.unit(4, "feet"),
  17665. default: true
  17666. },
  17667. {
  17668. name: "Dynamax",
  17669. height: math.unit(20, "meters")
  17670. },
  17671. ]
  17672. ))
  17673. characterMakers.push(() => makeCharacter(
  17674. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17675. {
  17676. front: {
  17677. height: math.unit(6, "feet"),
  17678. weight: math.unit(110, "lb"),
  17679. name: "Front",
  17680. image: {
  17681. source: "./media/characters/klay/front.svg",
  17682. extra: 962 / 883,
  17683. bottom: 0.04
  17684. }
  17685. },
  17686. back: {
  17687. height: math.unit(6, "feet"),
  17688. weight: math.unit(110, "lb"),
  17689. name: "Back",
  17690. image: {
  17691. source: "./media/characters/klay/back.svg",
  17692. extra: 962 / 883
  17693. }
  17694. },
  17695. beans: {
  17696. height: math.unit(1.15, "feet"),
  17697. name: "Beans",
  17698. image: {
  17699. source: "./media/characters/klay/beans.svg"
  17700. }
  17701. },
  17702. },
  17703. [
  17704. {
  17705. name: "Micro",
  17706. height: math.unit(6, "inches")
  17707. },
  17708. {
  17709. name: "Mini",
  17710. height: math.unit(3, "feet")
  17711. },
  17712. {
  17713. name: "Normal",
  17714. height: math.unit(6, "feet"),
  17715. default: true
  17716. },
  17717. {
  17718. name: "Big",
  17719. height: math.unit(25, "feet")
  17720. },
  17721. {
  17722. name: "Macro",
  17723. height: math.unit(100, "feet")
  17724. },
  17725. {
  17726. name: "Megamacro",
  17727. height: math.unit(400, "feet")
  17728. },
  17729. ]
  17730. ))
  17731. characterMakers.push(() => makeCharacter(
  17732. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17733. {
  17734. front: {
  17735. height: math.unit(6, "feet"),
  17736. weight: math.unit(160, "lb"),
  17737. name: "Front",
  17738. image: {
  17739. source: "./media/characters/marcus/front.svg",
  17740. extra: 734 / 676,
  17741. bottom: 0.03
  17742. }
  17743. },
  17744. },
  17745. [
  17746. {
  17747. name: "Little",
  17748. height: math.unit(6, "feet")
  17749. },
  17750. {
  17751. name: "Normal",
  17752. height: math.unit(110, "feet"),
  17753. default: true
  17754. },
  17755. {
  17756. name: "Macro",
  17757. height: math.unit(250, "feet")
  17758. },
  17759. {
  17760. name: "Megamacro",
  17761. height: math.unit(1000, "feet")
  17762. },
  17763. ]
  17764. ))
  17765. characterMakers.push(() => makeCharacter(
  17766. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17767. {
  17768. front: {
  17769. height: math.unit(7, "feet"),
  17770. weight: math.unit(275, "lb"),
  17771. name: "Front",
  17772. image: {
  17773. source: "./media/characters/claude-delroute/front.svg",
  17774. extra: 230 / 214,
  17775. bottom: 0.007
  17776. }
  17777. },
  17778. side: {
  17779. height: math.unit(7, "feet"),
  17780. weight: math.unit(275, "lb"),
  17781. name: "Side",
  17782. image: {
  17783. source: "./media/characters/claude-delroute/side.svg",
  17784. extra: 222 / 214,
  17785. bottom: 0.01
  17786. }
  17787. },
  17788. back: {
  17789. height: math.unit(7, "feet"),
  17790. weight: math.unit(275, "lb"),
  17791. name: "Back",
  17792. image: {
  17793. source: "./media/characters/claude-delroute/back.svg",
  17794. extra: 230 / 214,
  17795. bottom: 0.015
  17796. }
  17797. },
  17798. maw: {
  17799. height: math.unit(0.6407, "meters"),
  17800. name: "Maw",
  17801. image: {
  17802. source: "./media/characters/claude-delroute/maw.svg"
  17803. }
  17804. },
  17805. },
  17806. [
  17807. {
  17808. name: "Normal",
  17809. height: math.unit(7, "feet"),
  17810. default: true
  17811. },
  17812. {
  17813. name: "Lorge",
  17814. height: math.unit(20, "feet")
  17815. },
  17816. ]
  17817. ))
  17818. characterMakers.push(() => makeCharacter(
  17819. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17820. {
  17821. front: {
  17822. height: math.unit(8 + 4 / 12, "feet"),
  17823. weight: math.unit(600, "lb"),
  17824. name: "Front",
  17825. image: {
  17826. source: "./media/characters/dragonien/front.svg",
  17827. extra: 100 / 94,
  17828. bottom: 3.3 / 103.3445
  17829. }
  17830. },
  17831. back: {
  17832. height: math.unit(8 + 4 / 12, "feet"),
  17833. weight: math.unit(600, "lb"),
  17834. name: "Back",
  17835. image: {
  17836. source: "./media/characters/dragonien/back.svg",
  17837. extra: 776 / 746,
  17838. bottom: 6.4 / 782.0616
  17839. }
  17840. },
  17841. foot: {
  17842. height: math.unit(1.54, "feet"),
  17843. name: "Foot",
  17844. image: {
  17845. source: "./media/characters/dragonien/foot.svg",
  17846. }
  17847. },
  17848. },
  17849. [
  17850. {
  17851. name: "Normal",
  17852. height: math.unit(8 + 4 / 12, "feet"),
  17853. default: true
  17854. },
  17855. {
  17856. name: "Macro",
  17857. height: math.unit(200, "feet")
  17858. },
  17859. {
  17860. name: "Megamacro",
  17861. height: math.unit(1, "mile")
  17862. },
  17863. {
  17864. name: "Gigamacro",
  17865. height: math.unit(1000, "miles")
  17866. },
  17867. ]
  17868. ))
  17869. characterMakers.push(() => makeCharacter(
  17870. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17871. {
  17872. front: {
  17873. height: math.unit(5 + 2 / 12, "feet"),
  17874. weight: math.unit(110, "lb"),
  17875. name: "Front",
  17876. image: {
  17877. source: "./media/characters/desta/front.svg",
  17878. extra: 767 / 726,
  17879. bottom: 11.7 / 779
  17880. }
  17881. },
  17882. back: {
  17883. height: math.unit(5 + 2 / 12, "feet"),
  17884. weight: math.unit(110, "lb"),
  17885. name: "Back",
  17886. image: {
  17887. source: "./media/characters/desta/back.svg",
  17888. extra: 777 / 728,
  17889. bottom: 6 / 784
  17890. }
  17891. },
  17892. frontAlt: {
  17893. height: math.unit(5 + 2 / 12, "feet"),
  17894. weight: math.unit(110, "lb"),
  17895. name: "Front",
  17896. image: {
  17897. source: "./media/characters/desta/front-alt.svg",
  17898. extra: 1482 / 1417
  17899. }
  17900. },
  17901. side: {
  17902. height: math.unit(5 + 2 / 12, "feet"),
  17903. weight: math.unit(110, "lb"),
  17904. name: "Side",
  17905. image: {
  17906. source: "./media/characters/desta/side.svg",
  17907. extra: 2579 / 2491,
  17908. bottom: 0.053
  17909. }
  17910. },
  17911. },
  17912. [
  17913. {
  17914. name: "Micro",
  17915. height: math.unit(6, "inches")
  17916. },
  17917. {
  17918. name: "Normal",
  17919. height: math.unit(5 + 2 / 12, "feet"),
  17920. default: true
  17921. },
  17922. {
  17923. name: "Macro",
  17924. height: math.unit(62, "feet")
  17925. },
  17926. {
  17927. name: "Megamacro",
  17928. height: math.unit(1800, "feet")
  17929. },
  17930. ]
  17931. ))
  17932. characterMakers.push(() => makeCharacter(
  17933. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17934. {
  17935. front: {
  17936. height: math.unit(10, "feet"),
  17937. weight: math.unit(700, "lb"),
  17938. name: "Front",
  17939. image: {
  17940. source: "./media/characters/storm-alystar/front.svg",
  17941. extra: 2112 / 1898,
  17942. bottom: 0.034
  17943. }
  17944. },
  17945. },
  17946. [
  17947. {
  17948. name: "Micro",
  17949. height: math.unit(3.5, "inches")
  17950. },
  17951. {
  17952. name: "Normal",
  17953. height: math.unit(10, "feet"),
  17954. default: true
  17955. },
  17956. {
  17957. name: "Macro",
  17958. height: math.unit(400, "feet")
  17959. },
  17960. {
  17961. name: "Deific",
  17962. height: math.unit(60, "miles")
  17963. },
  17964. ]
  17965. ))
  17966. characterMakers.push(() => makeCharacter(
  17967. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17968. {
  17969. front: {
  17970. height: math.unit(2.35, "meters"),
  17971. weight: math.unit(119, "kg"),
  17972. name: "Front",
  17973. image: {
  17974. source: "./media/characters/ilia/front.svg",
  17975. extra: 1285 / 1255,
  17976. bottom: 0.06
  17977. }
  17978. },
  17979. },
  17980. [
  17981. {
  17982. name: "Normal",
  17983. height: math.unit(2.35, "meters")
  17984. },
  17985. {
  17986. name: "Macro",
  17987. height: math.unit(140, "meters"),
  17988. default: true
  17989. },
  17990. {
  17991. name: "Megamacro",
  17992. height: math.unit(100, "miles")
  17993. },
  17994. ]
  17995. ))
  17996. characterMakers.push(() => makeCharacter(
  17997. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17998. {
  17999. front: {
  18000. height: math.unit(6 + 5 / 12, "feet"),
  18001. weight: math.unit(190, "lb"),
  18002. name: "Front",
  18003. image: {
  18004. source: "./media/characters/kingdead/front.svg",
  18005. extra: 1228 / 1177
  18006. }
  18007. },
  18008. },
  18009. [
  18010. {
  18011. name: "Micro",
  18012. height: math.unit(7, "inches")
  18013. },
  18014. {
  18015. name: "Normal",
  18016. height: math.unit(6 + 5 / 12, "feet")
  18017. },
  18018. {
  18019. name: "Macro",
  18020. height: math.unit(150, "feet"),
  18021. default: true
  18022. },
  18023. {
  18024. name: "Megamacro",
  18025. height: math.unit(200, "miles")
  18026. },
  18027. ]
  18028. ))
  18029. characterMakers.push(() => makeCharacter(
  18030. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18031. {
  18032. front: {
  18033. height: math.unit(8, "feet"),
  18034. weight: math.unit(600, "lb"),
  18035. name: "Front",
  18036. image: {
  18037. source: "./media/characters/kyrehx/front.svg",
  18038. extra: 1195 / 1095,
  18039. bottom: 0.034
  18040. }
  18041. },
  18042. },
  18043. [
  18044. {
  18045. name: "Micro",
  18046. height: math.unit(2, "inches")
  18047. },
  18048. {
  18049. name: "Normal",
  18050. height: math.unit(8, "feet"),
  18051. default: true
  18052. },
  18053. {
  18054. name: "Macro",
  18055. height: math.unit(255, "feet")
  18056. },
  18057. ]
  18058. ))
  18059. characterMakers.push(() => makeCharacter(
  18060. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18061. {
  18062. front: {
  18063. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18064. weight: math.unit(184, "lb"),
  18065. name: "Front",
  18066. image: {
  18067. source: "./media/characters/xang/front.svg",
  18068. extra: 845 / 755
  18069. }
  18070. },
  18071. },
  18072. [
  18073. {
  18074. name: "Normal",
  18075. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18076. default: true
  18077. },
  18078. {
  18079. name: "Macro",
  18080. height: math.unit(0.935 * 146, "feet")
  18081. },
  18082. {
  18083. name: "Megamacro",
  18084. height: math.unit(0.935 * 3, "miles")
  18085. },
  18086. ]
  18087. ))
  18088. characterMakers.push(() => makeCharacter(
  18089. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18090. {
  18091. frontDressed: {
  18092. height: math.unit(5 + 7 / 12, "feet"),
  18093. weight: math.unit(140, "lb"),
  18094. name: "Front (Dressed)",
  18095. image: {
  18096. source: "./media/characters/doc-weardno/front-dressed.svg",
  18097. extra: 263 / 234
  18098. }
  18099. },
  18100. backDressed: {
  18101. height: math.unit(5 + 7 / 12, "feet"),
  18102. weight: math.unit(140, "lb"),
  18103. name: "Back (Dressed)",
  18104. image: {
  18105. source: "./media/characters/doc-weardno/back-dressed.svg",
  18106. extra: 266 / 238
  18107. }
  18108. },
  18109. front: {
  18110. height: math.unit(5 + 7 / 12, "feet"),
  18111. weight: math.unit(140, "lb"),
  18112. name: "Front",
  18113. image: {
  18114. source: "./media/characters/doc-weardno/front.svg",
  18115. extra: 254 / 233
  18116. }
  18117. },
  18118. },
  18119. [
  18120. {
  18121. name: "Micro",
  18122. height: math.unit(3, "inches")
  18123. },
  18124. {
  18125. name: "Normal",
  18126. height: math.unit(5 + 7 / 12, "feet"),
  18127. default: true
  18128. },
  18129. {
  18130. name: "Macro",
  18131. height: math.unit(25, "feet")
  18132. },
  18133. {
  18134. name: "Megamacro",
  18135. height: math.unit(2, "miles")
  18136. },
  18137. ]
  18138. ))
  18139. characterMakers.push(() => makeCharacter(
  18140. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18141. {
  18142. front: {
  18143. height: math.unit(6 + 2 / 12, "feet"),
  18144. weight: math.unit(153, "lb"),
  18145. name: "Front",
  18146. image: {
  18147. source: "./media/characters/seth-whilst/front.svg",
  18148. bottom: 0.07
  18149. }
  18150. },
  18151. },
  18152. [
  18153. {
  18154. name: "Micro",
  18155. height: math.unit(5, "inches")
  18156. },
  18157. {
  18158. name: "Normal",
  18159. height: math.unit(6 + 2 / 12, "feet"),
  18160. default: true
  18161. },
  18162. ]
  18163. ))
  18164. characterMakers.push(() => makeCharacter(
  18165. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18166. {
  18167. front: {
  18168. height: math.unit(3, "inches"),
  18169. weight: math.unit(8, "grams"),
  18170. name: "Front",
  18171. image: {
  18172. source: "./media/characters/pocket-jabari/front.svg",
  18173. extra: 1024 / 974,
  18174. bottom: 0.039
  18175. }
  18176. },
  18177. },
  18178. [
  18179. {
  18180. name: "Minimicro",
  18181. height: math.unit(8, "mm")
  18182. },
  18183. {
  18184. name: "Micro",
  18185. height: math.unit(3, "inches"),
  18186. default: true
  18187. },
  18188. {
  18189. name: "Normal",
  18190. height: math.unit(3, "feet")
  18191. },
  18192. ]
  18193. ))
  18194. characterMakers.push(() => makeCharacter(
  18195. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18196. {
  18197. front: {
  18198. height: math.unit(15, "feet"),
  18199. weight: math.unit(3280, "lb"),
  18200. name: "Front",
  18201. image: {
  18202. source: "./media/characters/sapphy/front.svg",
  18203. extra: 671 / 577,
  18204. bottom: 0.085
  18205. }
  18206. },
  18207. back: {
  18208. height: math.unit(15, "feet"),
  18209. weight: math.unit(3280, "lb"),
  18210. name: "Back",
  18211. image: {
  18212. source: "./media/characters/sapphy/back.svg",
  18213. extra: 631 / 607,
  18214. bottom: 0.045
  18215. }
  18216. },
  18217. },
  18218. [
  18219. {
  18220. name: "Normal",
  18221. height: math.unit(15, "feet")
  18222. },
  18223. {
  18224. name: "Casual Macro",
  18225. height: math.unit(120, "feet")
  18226. },
  18227. {
  18228. name: "Macro",
  18229. height: math.unit(2150, "feet"),
  18230. default: true
  18231. },
  18232. {
  18233. name: "Megamacro",
  18234. height: math.unit(8, "miles")
  18235. },
  18236. {
  18237. name: "Galaxy Mom",
  18238. height: math.unit(6, "megalightyears")
  18239. },
  18240. ]
  18241. ))
  18242. characterMakers.push(() => makeCharacter(
  18243. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18244. {
  18245. front: {
  18246. height: math.unit(6, "feet"),
  18247. weight: math.unit(170, "lb"),
  18248. name: "Front",
  18249. image: {
  18250. source: "./media/characters/kiro/front.svg",
  18251. extra: 1064 / 1012,
  18252. bottom: 0.052
  18253. }
  18254. },
  18255. },
  18256. [
  18257. {
  18258. name: "Micro",
  18259. height: math.unit(6, "inches")
  18260. },
  18261. {
  18262. name: "Normal",
  18263. height: math.unit(6, "feet"),
  18264. default: true
  18265. },
  18266. {
  18267. name: "Macro",
  18268. height: math.unit(72, "feet")
  18269. },
  18270. ]
  18271. ))
  18272. characterMakers.push(() => makeCharacter(
  18273. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18274. {
  18275. front: {
  18276. height: math.unit(5 + 9 / 12, "feet"),
  18277. weight: math.unit(175, "lb"),
  18278. name: "Front",
  18279. image: {
  18280. source: "./media/characters/irishfox/front.svg",
  18281. extra: 1912 / 1680,
  18282. bottom: 0.02
  18283. }
  18284. },
  18285. },
  18286. [
  18287. {
  18288. name: "Nano",
  18289. height: math.unit(1, "mm")
  18290. },
  18291. {
  18292. name: "Micro",
  18293. height: math.unit(2, "inches")
  18294. },
  18295. {
  18296. name: "Normal",
  18297. height: math.unit(5 + 9 / 12, "feet"),
  18298. default: true
  18299. },
  18300. {
  18301. name: "Macro",
  18302. height: math.unit(45, "feet")
  18303. },
  18304. ]
  18305. ))
  18306. characterMakers.push(() => makeCharacter(
  18307. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18308. {
  18309. front: {
  18310. height: math.unit(6 + 1 / 12, "feet"),
  18311. weight: math.unit(75, "lb"),
  18312. name: "Front",
  18313. image: {
  18314. source: "./media/characters/aronai-sieyes/front.svg",
  18315. extra: 1556 / 1480,
  18316. bottom: 0.015
  18317. }
  18318. },
  18319. side: {
  18320. height: math.unit(6 + 1 / 12, "feet"),
  18321. weight: math.unit(75, "lb"),
  18322. name: "Side",
  18323. image: {
  18324. source: "./media/characters/aronai-sieyes/side.svg",
  18325. extra: 1433 / 1390,
  18326. bottom: 0.0393
  18327. }
  18328. },
  18329. back: {
  18330. height: math.unit(6 + 1 / 12, "feet"),
  18331. weight: math.unit(75, "lb"),
  18332. name: "Back",
  18333. image: {
  18334. source: "./media/characters/aronai-sieyes/back.svg",
  18335. extra: 1544 / 1494,
  18336. bottom: 0.02
  18337. }
  18338. },
  18339. frontClothed: {
  18340. height: math.unit(6 + 1 / 12, "feet"),
  18341. weight: math.unit(75, "lb"),
  18342. name: "Front (Clothed)",
  18343. image: {
  18344. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18345. extra: 1582 / 1527
  18346. }
  18347. },
  18348. feral: {
  18349. height: math.unit(18, "feet"),
  18350. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18351. name: "Feral",
  18352. image: {
  18353. source: "./media/characters/aronai-sieyes/feral.svg",
  18354. extra: 1530 / 1240,
  18355. bottom: 0.035
  18356. }
  18357. },
  18358. },
  18359. [
  18360. {
  18361. name: "Micro",
  18362. height: math.unit(2, "inches")
  18363. },
  18364. {
  18365. name: "Normal",
  18366. height: math.unit(6 + 1 / 12, "feet"),
  18367. default: true
  18368. }
  18369. ]
  18370. ))
  18371. characterMakers.push(() => makeCharacter(
  18372. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18373. {
  18374. front: {
  18375. height: math.unit(12, "feet"),
  18376. weight: math.unit(410, "kg"),
  18377. name: "Front",
  18378. image: {
  18379. source: "./media/characters/xuna/front.svg",
  18380. extra: 2184 / 1980
  18381. }
  18382. },
  18383. side: {
  18384. height: math.unit(12, "feet"),
  18385. weight: math.unit(410, "kg"),
  18386. name: "Side",
  18387. image: {
  18388. source: "./media/characters/xuna/side.svg",
  18389. extra: 2184 / 1980
  18390. }
  18391. },
  18392. back: {
  18393. height: math.unit(12, "feet"),
  18394. weight: math.unit(410, "kg"),
  18395. name: "Back",
  18396. image: {
  18397. source: "./media/characters/xuna/back.svg",
  18398. extra: 2184 / 1980
  18399. }
  18400. },
  18401. },
  18402. [
  18403. {
  18404. name: "Nano glow",
  18405. height: math.unit(10, "nm")
  18406. },
  18407. {
  18408. name: "Micro floof",
  18409. height: math.unit(0.3, "m")
  18410. },
  18411. {
  18412. name: "Huggable softy boi",
  18413. height: math.unit(3.6576, "m"),
  18414. default: true
  18415. },
  18416. {
  18417. name: "Admirable floof",
  18418. height: math.unit(80, "meters")
  18419. },
  18420. {
  18421. name: "Gentle macro",
  18422. height: math.unit(300, "meters")
  18423. },
  18424. {
  18425. name: "Very careful floof",
  18426. height: math.unit(3200, "meters")
  18427. },
  18428. {
  18429. name: "The mega floof",
  18430. height: math.unit(36000, "meters")
  18431. },
  18432. {
  18433. name: "Giga-fur-Wicker",
  18434. height: math.unit(4800000, "meters")
  18435. },
  18436. {
  18437. name: "Licky world",
  18438. height: math.unit(20000000, "meters")
  18439. },
  18440. {
  18441. name: "Floofy cyan sun",
  18442. height: math.unit(1500000000, "meters")
  18443. },
  18444. {
  18445. name: "Milky Wicker",
  18446. height: math.unit(1000000000000000000000, "meters")
  18447. },
  18448. {
  18449. name: "The observing Wicker",
  18450. height: math.unit(999999999999999999999999999, "meters")
  18451. },
  18452. ]
  18453. ))
  18454. characterMakers.push(() => makeCharacter(
  18455. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18456. {
  18457. front: {
  18458. height: math.unit(5 + 9 / 12, "feet"),
  18459. weight: math.unit(150, "lb"),
  18460. name: "Front",
  18461. image: {
  18462. source: "./media/characters/arokha-sieyes/front.svg",
  18463. extra: 1425 / 1284,
  18464. bottom: 0.05
  18465. }
  18466. },
  18467. },
  18468. [
  18469. {
  18470. name: "Normal",
  18471. height: math.unit(5 + 9 / 12, "feet")
  18472. },
  18473. {
  18474. name: "Macro",
  18475. height: math.unit(30, "meters"),
  18476. default: true
  18477. },
  18478. ]
  18479. ))
  18480. characterMakers.push(() => makeCharacter(
  18481. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18482. {
  18483. front: {
  18484. height: math.unit(6, "feet"),
  18485. weight: math.unit(180, "lb"),
  18486. name: "Front",
  18487. image: {
  18488. source: "./media/characters/arokh-sieyes/front.svg",
  18489. extra: 1830 / 1769,
  18490. bottom: 0.01
  18491. }
  18492. },
  18493. },
  18494. [
  18495. {
  18496. name: "Normal",
  18497. height: math.unit(6, "feet")
  18498. },
  18499. {
  18500. name: "Macro",
  18501. height: math.unit(30, "meters"),
  18502. default: true
  18503. },
  18504. ]
  18505. ))
  18506. characterMakers.push(() => makeCharacter(
  18507. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18508. {
  18509. side: {
  18510. height: math.unit(13 + 1 / 12, "feet"),
  18511. weight: math.unit(8.5, "tonnes"),
  18512. name: "Side",
  18513. image: {
  18514. source: "./media/characters/goldeneye/side.svg",
  18515. extra: 1182 / 778,
  18516. bottom: 0.067
  18517. }
  18518. },
  18519. paw: {
  18520. height: math.unit(3.4, "feet"),
  18521. name: "Paw",
  18522. image: {
  18523. source: "./media/characters/goldeneye/paw.svg"
  18524. }
  18525. },
  18526. },
  18527. [
  18528. {
  18529. name: "Normal",
  18530. height: math.unit(13 + 1 / 12, "feet"),
  18531. default: true
  18532. },
  18533. ]
  18534. ))
  18535. characterMakers.push(() => makeCharacter(
  18536. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18537. {
  18538. front: {
  18539. height: math.unit(6 + 1 / 12, "feet"),
  18540. weight: math.unit(210, "lb"),
  18541. name: "Front",
  18542. image: {
  18543. source: "./media/characters/leonardo-lycheborne/front.svg",
  18544. extra: 390 / 365,
  18545. bottom: 0.032
  18546. }
  18547. },
  18548. side: {
  18549. height: math.unit(6 + 1 / 12, "feet"),
  18550. weight: math.unit(210, "lb"),
  18551. name: "Side",
  18552. image: {
  18553. source: "./media/characters/leonardo-lycheborne/side.svg",
  18554. extra: 390 / 365,
  18555. bottom: 0.005
  18556. }
  18557. },
  18558. back: {
  18559. height: math.unit(6 + 1 / 12, "feet"),
  18560. weight: math.unit(210, "lb"),
  18561. name: "Back",
  18562. image: {
  18563. source: "./media/characters/leonardo-lycheborne/back.svg",
  18564. extra: 392 / 366,
  18565. bottom: 0.01
  18566. }
  18567. },
  18568. hand: {
  18569. height: math.unit(1.08, "feet"),
  18570. name: "Hand",
  18571. image: {
  18572. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18573. }
  18574. },
  18575. foot: {
  18576. height: math.unit(1.32, "feet"),
  18577. name: "Foot",
  18578. image: {
  18579. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18580. }
  18581. },
  18582. were: {
  18583. height: math.unit(20, "feet"),
  18584. weight: math.unit(7800, "lb"),
  18585. name: "Were",
  18586. image: {
  18587. source: "./media/characters/leonardo-lycheborne/were.svg",
  18588. extra: 308 / 294,
  18589. bottom: 0.048
  18590. }
  18591. },
  18592. feral: {
  18593. height: math.unit(7.5, "feet"),
  18594. weight: math.unit(600, "lb"),
  18595. name: "Feral",
  18596. image: {
  18597. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18598. extra: 210 / 186,
  18599. bottom: 0.108
  18600. }
  18601. },
  18602. taur: {
  18603. height: math.unit(11, "feet"),
  18604. weight: math.unit(3300, "lb"),
  18605. name: "Taur",
  18606. image: {
  18607. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18608. extra: 320 / 303,
  18609. bottom: 0.025
  18610. }
  18611. },
  18612. barghest: {
  18613. height: math.unit(11, "feet"),
  18614. weight: math.unit(1300, "lb"),
  18615. name: "Barghest",
  18616. image: {
  18617. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18618. extra: 323 / 302,
  18619. bottom: 0.027
  18620. }
  18621. },
  18622. dick: {
  18623. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18624. name: "Dick",
  18625. image: {
  18626. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18627. }
  18628. },
  18629. dickWere: {
  18630. height: math.unit((20) / 3.8, "feet"),
  18631. name: "Dick (Were)",
  18632. image: {
  18633. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18634. }
  18635. },
  18636. },
  18637. [
  18638. {
  18639. name: "Normal",
  18640. height: math.unit(6 + 1 / 12, "feet"),
  18641. default: true
  18642. },
  18643. ]
  18644. ))
  18645. characterMakers.push(() => makeCharacter(
  18646. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18647. {
  18648. front: {
  18649. height: math.unit(10, "feet"),
  18650. weight: math.unit(350, "lb"),
  18651. name: "Front",
  18652. image: {
  18653. source: "./media/characters/jet/front.svg",
  18654. extra: 2050 / 1980,
  18655. bottom: 0.013
  18656. }
  18657. },
  18658. back: {
  18659. height: math.unit(10, "feet"),
  18660. weight: math.unit(350, "lb"),
  18661. name: "Back",
  18662. image: {
  18663. source: "./media/characters/jet/back.svg",
  18664. extra: 2050 / 1980,
  18665. bottom: 0.013
  18666. }
  18667. },
  18668. },
  18669. [
  18670. {
  18671. name: "Micro",
  18672. height: math.unit(6, "inches")
  18673. },
  18674. {
  18675. name: "Normal",
  18676. height: math.unit(10, "feet"),
  18677. default: true
  18678. },
  18679. {
  18680. name: "Macro",
  18681. height: math.unit(100, "feet")
  18682. },
  18683. ]
  18684. ))
  18685. characterMakers.push(() => makeCharacter(
  18686. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18687. {
  18688. front: {
  18689. height: math.unit(15, "feet"),
  18690. weight: math.unit(2800, "lb"),
  18691. name: "Front",
  18692. image: {
  18693. source: "./media/characters/tanarath/front.svg",
  18694. extra: 2392 / 2220,
  18695. bottom: 0.03
  18696. }
  18697. },
  18698. back: {
  18699. height: math.unit(15, "feet"),
  18700. weight: math.unit(2800, "lb"),
  18701. name: "Back",
  18702. image: {
  18703. source: "./media/characters/tanarath/back.svg",
  18704. extra: 2392 / 2220,
  18705. bottom: 0.03
  18706. }
  18707. },
  18708. },
  18709. [
  18710. {
  18711. name: "Normal",
  18712. height: math.unit(15, "feet"),
  18713. default: true
  18714. },
  18715. ]
  18716. ))
  18717. characterMakers.push(() => makeCharacter(
  18718. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18719. {
  18720. front: {
  18721. height: math.unit(7 + 1 / 12, "feet"),
  18722. weight: math.unit(175, "lb"),
  18723. name: "Front",
  18724. image: {
  18725. source: "./media/characters/patty-cattybatty/front.svg",
  18726. extra: 908 / 874,
  18727. bottom: 0.025
  18728. }
  18729. },
  18730. },
  18731. [
  18732. {
  18733. name: "Micro",
  18734. height: math.unit(1, "inch")
  18735. },
  18736. {
  18737. name: "Normal",
  18738. height: math.unit(7 + 1 / 12, "feet")
  18739. },
  18740. {
  18741. name: "Mini Macro",
  18742. height: math.unit(155, "feet")
  18743. },
  18744. {
  18745. name: "Macro",
  18746. height: math.unit(1077, "feet")
  18747. },
  18748. {
  18749. name: "Mega Macro",
  18750. height: math.unit(47650, "feet"),
  18751. default: true
  18752. },
  18753. {
  18754. name: "Giga Macro",
  18755. height: math.unit(440, "miles")
  18756. },
  18757. {
  18758. name: "Tera Macro",
  18759. height: math.unit(8700, "miles")
  18760. },
  18761. {
  18762. name: "Planetary Macro",
  18763. height: math.unit(32700, "miles")
  18764. },
  18765. {
  18766. name: "Solar Macro",
  18767. height: math.unit(550000, "miles")
  18768. },
  18769. {
  18770. name: "Celestial Macro",
  18771. height: math.unit(2.5, "AU")
  18772. },
  18773. ]
  18774. ))
  18775. characterMakers.push(() => makeCharacter(
  18776. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18777. {
  18778. front: {
  18779. height: math.unit(4 + 5 / 12, "feet"),
  18780. weight: math.unit(90, "lb"),
  18781. name: "Front",
  18782. image: {
  18783. source: "./media/characters/cappu/front.svg",
  18784. extra: 1247 / 1152,
  18785. bottom: 0.012
  18786. }
  18787. },
  18788. },
  18789. [
  18790. {
  18791. name: "Normal",
  18792. height: math.unit(4 + 5 / 12, "feet"),
  18793. default: true
  18794. },
  18795. ]
  18796. ))
  18797. characterMakers.push(() => makeCharacter(
  18798. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18799. {
  18800. frontDressed: {
  18801. height: math.unit(70, "cm"),
  18802. weight: math.unit(6, "kg"),
  18803. name: "Front (Dressed)",
  18804. image: {
  18805. source: "./media/characters/sebi/front-dressed.svg",
  18806. extra: 713.5 / 686.5,
  18807. bottom: 0.003
  18808. }
  18809. },
  18810. front: {
  18811. height: math.unit(70, "cm"),
  18812. weight: math.unit(5, "kg"),
  18813. name: "Front",
  18814. image: {
  18815. source: "./media/characters/sebi/front.svg",
  18816. extra: 713.5 / 686.5,
  18817. bottom: 0.003
  18818. }
  18819. }
  18820. },
  18821. [
  18822. {
  18823. name: "Normal",
  18824. height: math.unit(70, "cm"),
  18825. default: true
  18826. },
  18827. {
  18828. name: "Macro",
  18829. height: math.unit(8, "meters")
  18830. },
  18831. ]
  18832. ))
  18833. characterMakers.push(() => makeCharacter(
  18834. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18835. {
  18836. front: {
  18837. height: math.unit(6, "feet"),
  18838. weight: math.unit(150, "lb"),
  18839. name: "Front",
  18840. image: {
  18841. source: "./media/characters/typhek/front.svg",
  18842. extra: 1948 / 1929,
  18843. bottom: 0.025
  18844. }
  18845. },
  18846. side: {
  18847. height: math.unit(6, "feet"),
  18848. weight: math.unit(150, "lb"),
  18849. name: "Side",
  18850. image: {
  18851. source: "./media/characters/typhek/side.svg",
  18852. extra: 2034 / 2010,
  18853. bottom: 0.003
  18854. }
  18855. },
  18856. back: {
  18857. height: math.unit(6, "feet"),
  18858. weight: math.unit(150, "lb"),
  18859. name: "Back",
  18860. image: {
  18861. source: "./media/characters/typhek/back.svg",
  18862. extra: 2005 / 1978,
  18863. bottom: 0.004
  18864. }
  18865. },
  18866. palm: {
  18867. height: math.unit(1.2, "feet"),
  18868. name: "Palm",
  18869. image: {
  18870. source: "./media/characters/typhek/palm.svg"
  18871. }
  18872. },
  18873. fist: {
  18874. height: math.unit(1.1, "feet"),
  18875. name: "Fist",
  18876. image: {
  18877. source: "./media/characters/typhek/fist.svg"
  18878. }
  18879. },
  18880. foot: {
  18881. height: math.unit(1.57, "feet"),
  18882. name: "Foot",
  18883. image: {
  18884. source: "./media/characters/typhek/foot.svg"
  18885. }
  18886. },
  18887. sole: {
  18888. height: math.unit(2.05, "feet"),
  18889. name: "Sole",
  18890. image: {
  18891. source: "./media/characters/typhek/sole.svg"
  18892. }
  18893. },
  18894. },
  18895. [
  18896. {
  18897. name: "Macro",
  18898. height: math.unit(40, "stories"),
  18899. default: true
  18900. },
  18901. {
  18902. name: "Megamacro",
  18903. height: math.unit(1, "mile")
  18904. },
  18905. {
  18906. name: "Gigamacro",
  18907. height: math.unit(4000, "solarradii")
  18908. },
  18909. {
  18910. name: "Universal",
  18911. height: math.unit(1.1, "universes")
  18912. }
  18913. ]
  18914. ))
  18915. characterMakers.push(() => makeCharacter(
  18916. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18917. {
  18918. side: {
  18919. height: math.unit(5 + 7 / 12, "feet"),
  18920. weight: math.unit(150, "lb"),
  18921. name: "Side",
  18922. image: {
  18923. source: "./media/characters/kassy/side.svg",
  18924. extra: 1280 / 1225,
  18925. bottom: 0.002
  18926. }
  18927. },
  18928. front: {
  18929. height: math.unit(5 + 7 / 12, "feet"),
  18930. weight: math.unit(150, "lb"),
  18931. name: "Front",
  18932. image: {
  18933. source: "./media/characters/kassy/front.svg",
  18934. extra: 1280 / 1225,
  18935. bottom: 0.025
  18936. }
  18937. },
  18938. back: {
  18939. height: math.unit(5 + 7 / 12, "feet"),
  18940. weight: math.unit(150, "lb"),
  18941. name: "Back",
  18942. image: {
  18943. source: "./media/characters/kassy/back.svg",
  18944. extra: 1280 / 1225,
  18945. bottom: 0.002
  18946. }
  18947. },
  18948. foot: {
  18949. height: math.unit(1.266, "feet"),
  18950. name: "Foot",
  18951. image: {
  18952. source: "./media/characters/kassy/foot.svg"
  18953. }
  18954. },
  18955. },
  18956. [
  18957. {
  18958. name: "Normal",
  18959. height: math.unit(5 + 7 / 12, "feet")
  18960. },
  18961. {
  18962. name: "Macro",
  18963. height: math.unit(137, "feet"),
  18964. default: true
  18965. },
  18966. {
  18967. name: "Megamacro",
  18968. height: math.unit(1, "mile")
  18969. },
  18970. ]
  18971. ))
  18972. characterMakers.push(() => makeCharacter(
  18973. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18974. {
  18975. front: {
  18976. height: math.unit(6 + 1 / 12, "feet"),
  18977. weight: math.unit(200, "lb"),
  18978. name: "Front",
  18979. image: {
  18980. source: "./media/characters/neil/front.svg",
  18981. extra: 1326 / 1250,
  18982. bottom: 0.023
  18983. }
  18984. },
  18985. },
  18986. [
  18987. {
  18988. name: "Normal",
  18989. height: math.unit(6 + 1 / 12, "feet"),
  18990. default: true
  18991. },
  18992. {
  18993. name: "Macro",
  18994. height: math.unit(200, "feet")
  18995. },
  18996. ]
  18997. ))
  18998. characterMakers.push(() => makeCharacter(
  18999. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19000. {
  19001. front: {
  19002. height: math.unit(5 + 9 / 12, "feet"),
  19003. weight: math.unit(190, "lb"),
  19004. name: "Front",
  19005. image: {
  19006. source: "./media/characters/atticus/front.svg",
  19007. extra: 2934 / 2785,
  19008. bottom: 0.025
  19009. }
  19010. },
  19011. },
  19012. [
  19013. {
  19014. name: "Normal",
  19015. height: math.unit(5 + 9 / 12, "feet"),
  19016. default: true
  19017. },
  19018. {
  19019. name: "Macro",
  19020. height: math.unit(180, "feet")
  19021. },
  19022. ]
  19023. ))
  19024. characterMakers.push(() => makeCharacter(
  19025. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19026. {
  19027. side: {
  19028. height: math.unit(9, "feet"),
  19029. weight: math.unit(650, "lb"),
  19030. name: "Side",
  19031. image: {
  19032. source: "./media/characters/milo/side.svg",
  19033. extra: 2644 / 2310,
  19034. bottom: 0.032
  19035. }
  19036. },
  19037. },
  19038. [
  19039. {
  19040. name: "Normal",
  19041. height: math.unit(9, "feet"),
  19042. default: true
  19043. },
  19044. {
  19045. name: "Macro",
  19046. height: math.unit(300, "feet")
  19047. },
  19048. ]
  19049. ))
  19050. characterMakers.push(() => makeCharacter(
  19051. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19052. {
  19053. side: {
  19054. height: math.unit(8, "meters"),
  19055. weight: math.unit(90000, "kg"),
  19056. name: "Side",
  19057. image: {
  19058. source: "./media/characters/ijzer/side.svg",
  19059. extra: 2756 / 1600,
  19060. bottom: 0.01
  19061. }
  19062. },
  19063. },
  19064. [
  19065. {
  19066. name: "Small",
  19067. height: math.unit(3, "meters")
  19068. },
  19069. {
  19070. name: "Normal",
  19071. height: math.unit(8, "meters"),
  19072. default: true
  19073. },
  19074. {
  19075. name: "Normal+",
  19076. height: math.unit(10, "meters")
  19077. },
  19078. {
  19079. name: "Bigger",
  19080. height: math.unit(24, "meters")
  19081. },
  19082. {
  19083. name: "Huge",
  19084. height: math.unit(80, "meters")
  19085. },
  19086. ]
  19087. ))
  19088. characterMakers.push(() => makeCharacter(
  19089. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19090. {
  19091. front: {
  19092. height: math.unit(6 + 2 / 12, "feet"),
  19093. weight: math.unit(153, "lb"),
  19094. name: "Front",
  19095. image: {
  19096. source: "./media/characters/luca-cervicum/front.svg",
  19097. extra: 370 / 327,
  19098. bottom: 0.015
  19099. }
  19100. },
  19101. back: {
  19102. height: math.unit(6 + 2 / 12, "feet"),
  19103. weight: math.unit(153, "lb"),
  19104. name: "Back",
  19105. image: {
  19106. source: "./media/characters/luca-cervicum/back.svg",
  19107. extra: 367 / 333,
  19108. bottom: 0.005
  19109. }
  19110. },
  19111. frontGear: {
  19112. height: math.unit(6 + 2 / 12, "feet"),
  19113. weight: math.unit(173, "lb"),
  19114. name: "Front (Gear)",
  19115. image: {
  19116. source: "./media/characters/luca-cervicum/front-gear.svg",
  19117. extra: 377 / 333,
  19118. bottom: 0.006
  19119. }
  19120. },
  19121. },
  19122. [
  19123. {
  19124. name: "Normal",
  19125. height: math.unit(6 + 2 / 12, "feet"),
  19126. default: true
  19127. },
  19128. ]
  19129. ))
  19130. characterMakers.push(() => makeCharacter(
  19131. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19132. {
  19133. front: {
  19134. height: math.unit(6 + 1 / 12, "feet"),
  19135. weight: math.unit(304, "lb"),
  19136. name: "Front",
  19137. image: {
  19138. source: "./media/characters/oliver/front.svg",
  19139. extra: 157 / 143,
  19140. bottom: 0.08
  19141. }
  19142. },
  19143. },
  19144. [
  19145. {
  19146. name: "Normal",
  19147. height: math.unit(6 + 1 / 12, "feet"),
  19148. default: true
  19149. },
  19150. ]
  19151. ))
  19152. characterMakers.push(() => makeCharacter(
  19153. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19154. {
  19155. front: {
  19156. height: math.unit(5 + 7 / 12, "feet"),
  19157. weight: math.unit(140, "lb"),
  19158. name: "Front",
  19159. image: {
  19160. source: "./media/characters/shane/front.svg",
  19161. extra: 304 / 289,
  19162. bottom: 0.005
  19163. }
  19164. },
  19165. },
  19166. [
  19167. {
  19168. name: "Normal",
  19169. height: math.unit(5 + 7 / 12, "feet"),
  19170. default: true
  19171. },
  19172. ]
  19173. ))
  19174. characterMakers.push(() => makeCharacter(
  19175. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19176. {
  19177. front: {
  19178. height: math.unit(5 + 9 / 12, "feet"),
  19179. weight: math.unit(178, "lb"),
  19180. name: "Front",
  19181. image: {
  19182. source: "./media/characters/shin/front.svg",
  19183. extra: 159 / 151,
  19184. bottom: 0.015
  19185. }
  19186. },
  19187. },
  19188. [
  19189. {
  19190. name: "Normal",
  19191. height: math.unit(5 + 9 / 12, "feet"),
  19192. default: true
  19193. },
  19194. ]
  19195. ))
  19196. characterMakers.push(() => makeCharacter(
  19197. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19198. {
  19199. front: {
  19200. height: math.unit(5 + 10 / 12, "feet"),
  19201. weight: math.unit(168, "lb"),
  19202. name: "Front",
  19203. image: {
  19204. source: "./media/characters/xerxes/front.svg",
  19205. extra: 282 / 260,
  19206. bottom: 0.045
  19207. }
  19208. },
  19209. },
  19210. [
  19211. {
  19212. name: "Normal",
  19213. height: math.unit(5 + 10 / 12, "feet"),
  19214. default: true
  19215. },
  19216. ]
  19217. ))
  19218. characterMakers.push(() => makeCharacter(
  19219. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19220. {
  19221. front: {
  19222. height: math.unit(6 + 7 / 12, "feet"),
  19223. weight: math.unit(208, "lb"),
  19224. name: "Front",
  19225. image: {
  19226. source: "./media/characters/chaska/front.svg",
  19227. extra: 332 / 319,
  19228. bottom: 0.015
  19229. }
  19230. },
  19231. },
  19232. [
  19233. {
  19234. name: "Normal",
  19235. height: math.unit(6 + 7 / 12, "feet"),
  19236. default: true
  19237. },
  19238. ]
  19239. ))
  19240. characterMakers.push(() => makeCharacter(
  19241. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19242. {
  19243. front: {
  19244. height: math.unit(5 + 8 / 12, "feet"),
  19245. weight: math.unit(208, "lb"),
  19246. name: "Front",
  19247. image: {
  19248. source: "./media/characters/enuk/front.svg",
  19249. extra: 437 / 406,
  19250. bottom: 0.02
  19251. }
  19252. },
  19253. },
  19254. [
  19255. {
  19256. name: "Normal",
  19257. height: math.unit(5 + 8 / 12, "feet"),
  19258. default: true
  19259. },
  19260. ]
  19261. ))
  19262. characterMakers.push(() => makeCharacter(
  19263. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19264. {
  19265. front: {
  19266. height: math.unit(5 + 10 / 12, "feet"),
  19267. weight: math.unit(252, "lb"),
  19268. name: "Front",
  19269. image: {
  19270. source: "./media/characters/bruun/front.svg",
  19271. extra: 197 / 187,
  19272. bottom: 0.012
  19273. }
  19274. },
  19275. },
  19276. [
  19277. {
  19278. name: "Normal",
  19279. height: math.unit(5 + 10 / 12, "feet"),
  19280. default: true
  19281. },
  19282. ]
  19283. ))
  19284. characterMakers.push(() => makeCharacter(
  19285. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19286. {
  19287. front: {
  19288. height: math.unit(6 + 10 / 12, "feet"),
  19289. weight: math.unit(255, "lb"),
  19290. name: "Front",
  19291. image: {
  19292. source: "./media/characters/alexeev/front.svg",
  19293. extra: 213 / 200,
  19294. bottom: 0.05
  19295. }
  19296. },
  19297. },
  19298. [
  19299. {
  19300. name: "Normal",
  19301. height: math.unit(6 + 10 / 12, "feet"),
  19302. default: true
  19303. },
  19304. ]
  19305. ))
  19306. characterMakers.push(() => makeCharacter(
  19307. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19308. {
  19309. front: {
  19310. height: math.unit(2 + 8 / 12, "feet"),
  19311. weight: math.unit(22, "lb"),
  19312. name: "Front",
  19313. image: {
  19314. source: "./media/characters/evelyn/front.svg",
  19315. extra: 208 / 180
  19316. }
  19317. },
  19318. },
  19319. [
  19320. {
  19321. name: "Normal",
  19322. height: math.unit(2 + 8 / 12, "feet"),
  19323. default: true
  19324. },
  19325. ]
  19326. ))
  19327. characterMakers.push(() => makeCharacter(
  19328. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19329. {
  19330. front: {
  19331. height: math.unit(5 + 9 / 12, "feet"),
  19332. weight: math.unit(139, "lb"),
  19333. name: "Front",
  19334. image: {
  19335. source: "./media/characters/inca/front.svg",
  19336. extra: 294 / 291,
  19337. bottom: 0.03
  19338. }
  19339. },
  19340. },
  19341. [
  19342. {
  19343. name: "Normal",
  19344. height: math.unit(5 + 9 / 12, "feet"),
  19345. default: true
  19346. },
  19347. ]
  19348. ))
  19349. characterMakers.push(() => makeCharacter(
  19350. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19351. {
  19352. front: {
  19353. height: math.unit(5 + 1 / 12, "feet"),
  19354. weight: math.unit(84, "lb"),
  19355. name: "Front",
  19356. image: {
  19357. source: "./media/characters/magdalene/front.svg",
  19358. extra: 293 / 273
  19359. }
  19360. },
  19361. },
  19362. [
  19363. {
  19364. name: "Normal",
  19365. height: math.unit(5 + 1 / 12, "feet"),
  19366. default: true
  19367. },
  19368. ]
  19369. ))
  19370. characterMakers.push(() => makeCharacter(
  19371. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19372. {
  19373. front: {
  19374. height: math.unit(6 + 3 / 12, "feet"),
  19375. weight: math.unit(185, "lb"),
  19376. name: "Front",
  19377. image: {
  19378. source: "./media/characters/mera/front.svg",
  19379. extra: 291 / 277,
  19380. bottom: 0.03
  19381. }
  19382. },
  19383. },
  19384. [
  19385. {
  19386. name: "Normal",
  19387. height: math.unit(6 + 3 / 12, "feet"),
  19388. default: true
  19389. },
  19390. ]
  19391. ))
  19392. characterMakers.push(() => makeCharacter(
  19393. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19394. {
  19395. front: {
  19396. height: math.unit(6 + 7 / 12, "feet"),
  19397. weight: math.unit(160, "lb"),
  19398. name: "Front",
  19399. image: {
  19400. source: "./media/characters/ceres/front.svg",
  19401. extra: 1023 / 950,
  19402. bottom: 0.027
  19403. }
  19404. },
  19405. back: {
  19406. height: math.unit(6 + 7 / 12, "feet"),
  19407. weight: math.unit(160, "lb"),
  19408. name: "Back",
  19409. image: {
  19410. source: "./media/characters/ceres/back.svg",
  19411. extra: 1023 / 950
  19412. }
  19413. },
  19414. },
  19415. [
  19416. {
  19417. name: "Normal",
  19418. height: math.unit(6 + 7 / 12, "feet"),
  19419. default: true
  19420. },
  19421. ]
  19422. ))
  19423. characterMakers.push(() => makeCharacter(
  19424. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19425. {
  19426. front: {
  19427. height: math.unit(5 + 10 / 12, "feet"),
  19428. weight: math.unit(150, "lb"),
  19429. name: "Front",
  19430. image: {
  19431. source: "./media/characters/kris/front.svg",
  19432. extra: 885 / 803,
  19433. bottom: 0.03
  19434. }
  19435. },
  19436. },
  19437. [
  19438. {
  19439. name: "Normal",
  19440. height: math.unit(5 + 10 / 12, "feet"),
  19441. default: true
  19442. },
  19443. ]
  19444. ))
  19445. characterMakers.push(() => makeCharacter(
  19446. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19447. {
  19448. front: {
  19449. height: math.unit(7, "feet"),
  19450. weight: math.unit(120, "kg"),
  19451. name: "Front",
  19452. image: {
  19453. source: "./media/characters/taluthus/front.svg",
  19454. extra: 903 / 833,
  19455. bottom: 0.015
  19456. }
  19457. },
  19458. },
  19459. [
  19460. {
  19461. name: "Normal",
  19462. height: math.unit(7, "feet"),
  19463. default: true
  19464. },
  19465. {
  19466. name: "Macro",
  19467. height: math.unit(300, "feet")
  19468. },
  19469. ]
  19470. ))
  19471. characterMakers.push(() => makeCharacter(
  19472. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19473. {
  19474. front: {
  19475. height: math.unit(5 + 9 / 12, "feet"),
  19476. weight: math.unit(145, "lb"),
  19477. name: "Front",
  19478. image: {
  19479. source: "./media/characters/dawn/front.svg",
  19480. extra: 2094 / 2016,
  19481. bottom: 0.025
  19482. }
  19483. },
  19484. back: {
  19485. height: math.unit(5 + 9 / 12, "feet"),
  19486. weight: math.unit(160, "lb"),
  19487. name: "Back",
  19488. image: {
  19489. source: "./media/characters/dawn/back.svg",
  19490. extra: 2112 / 2080,
  19491. bottom: 0.005
  19492. }
  19493. },
  19494. },
  19495. [
  19496. {
  19497. name: "Normal",
  19498. height: math.unit(6 + 7 / 12, "feet"),
  19499. default: true
  19500. },
  19501. ]
  19502. ))
  19503. characterMakers.push(() => makeCharacter(
  19504. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19505. {
  19506. anthro: {
  19507. height: math.unit(8 + 3 / 12, "feet"),
  19508. weight: math.unit(450, "lb"),
  19509. name: "Anthro",
  19510. image: {
  19511. source: "./media/characters/arador/anthro.svg",
  19512. extra: 1835 / 1718,
  19513. bottom: 0.025
  19514. }
  19515. },
  19516. feral: {
  19517. height: math.unit(4, "feet"),
  19518. weight: math.unit(200, "lb"),
  19519. name: "Feral",
  19520. image: {
  19521. source: "./media/characters/arador/feral.svg",
  19522. extra: 1683 / 1514,
  19523. bottom: 0.07
  19524. }
  19525. },
  19526. },
  19527. [
  19528. {
  19529. name: "Normal",
  19530. height: math.unit(8 + 3 / 12, "feet")
  19531. },
  19532. {
  19533. name: "Macro",
  19534. height: math.unit(82.5, "feet"),
  19535. default: true
  19536. },
  19537. ]
  19538. ))
  19539. characterMakers.push(() => makeCharacter(
  19540. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19541. {
  19542. front: {
  19543. height: math.unit(5 + 10 / 12, "feet"),
  19544. weight: math.unit(125, "lb"),
  19545. name: "Front",
  19546. image: {
  19547. source: "./media/characters/dharsi/front.svg",
  19548. extra: 716 / 630,
  19549. bottom: 0.035
  19550. }
  19551. },
  19552. },
  19553. [
  19554. {
  19555. name: "Nano",
  19556. height: math.unit(100, "nm")
  19557. },
  19558. {
  19559. name: "Micro",
  19560. height: math.unit(2, "inches")
  19561. },
  19562. {
  19563. name: "Normal",
  19564. height: math.unit(5 + 10 / 12, "feet"),
  19565. default: true
  19566. },
  19567. {
  19568. name: "Macro",
  19569. height: math.unit(1000, "feet")
  19570. },
  19571. {
  19572. name: "Megamacro",
  19573. height: math.unit(10, "miles")
  19574. },
  19575. {
  19576. name: "Gigamacro",
  19577. height: math.unit(3000, "miles")
  19578. },
  19579. {
  19580. name: "Teramacro",
  19581. height: math.unit(500000, "miles")
  19582. },
  19583. {
  19584. name: "Teramacro+",
  19585. height: math.unit(30, "galaxies")
  19586. },
  19587. ]
  19588. ))
  19589. characterMakers.push(() => makeCharacter(
  19590. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19591. {
  19592. front: {
  19593. height: math.unit(6, "feet"),
  19594. weight: math.unit(150, "lb"),
  19595. name: "Front",
  19596. image: {
  19597. source: "./media/characters/deathy/front.svg",
  19598. extra: 1552 / 1463,
  19599. bottom: 0.025
  19600. }
  19601. },
  19602. side: {
  19603. height: math.unit(6, "feet"),
  19604. weight: math.unit(150, "lb"),
  19605. name: "Side",
  19606. image: {
  19607. source: "./media/characters/deathy/side.svg",
  19608. extra: 1604 / 1455,
  19609. bottom: 0.025
  19610. }
  19611. },
  19612. back: {
  19613. height: math.unit(6, "feet"),
  19614. weight: math.unit(150, "lb"),
  19615. name: "Back",
  19616. image: {
  19617. source: "./media/characters/deathy/back.svg",
  19618. extra: 1580 / 1463,
  19619. bottom: 0.005
  19620. }
  19621. },
  19622. },
  19623. [
  19624. {
  19625. name: "Micro",
  19626. height: math.unit(5, "millimeters")
  19627. },
  19628. {
  19629. name: "Normal",
  19630. height: math.unit(6 + 5 / 12, "feet"),
  19631. default: true
  19632. },
  19633. ]
  19634. ))
  19635. characterMakers.push(() => makeCharacter(
  19636. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19637. {
  19638. front: {
  19639. height: math.unit(16, "feet"),
  19640. weight: math.unit(4000, "lb"),
  19641. name: "Front",
  19642. image: {
  19643. source: "./media/characters/juniper/front.svg",
  19644. bottom: 0.04
  19645. }
  19646. },
  19647. },
  19648. [
  19649. {
  19650. name: "Normal",
  19651. height: math.unit(16, "feet"),
  19652. default: true
  19653. },
  19654. ]
  19655. ))
  19656. characterMakers.push(() => makeCharacter(
  19657. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19658. {
  19659. front: {
  19660. height: math.unit(6, "feet"),
  19661. weight: math.unit(150, "lb"),
  19662. name: "Front",
  19663. image: {
  19664. source: "./media/characters/hipster/front.svg",
  19665. extra: 1312 / 1209,
  19666. bottom: 0.025
  19667. }
  19668. },
  19669. back: {
  19670. height: math.unit(6, "feet"),
  19671. weight: math.unit(150, "lb"),
  19672. name: "Back",
  19673. image: {
  19674. source: "./media/characters/hipster/back.svg",
  19675. extra: 1281 / 1196,
  19676. bottom: 0.01
  19677. }
  19678. },
  19679. },
  19680. [
  19681. {
  19682. name: "Micro",
  19683. height: math.unit(1, "mm")
  19684. },
  19685. {
  19686. name: "Normal",
  19687. height: math.unit(4, "inches"),
  19688. default: true
  19689. },
  19690. {
  19691. name: "Macro",
  19692. height: math.unit(500, "feet")
  19693. },
  19694. {
  19695. name: "Megamacro",
  19696. height: math.unit(1000, "miles")
  19697. },
  19698. ]
  19699. ))
  19700. characterMakers.push(() => makeCharacter(
  19701. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19702. {
  19703. front: {
  19704. height: math.unit(6, "feet"),
  19705. weight: math.unit(150, "lb"),
  19706. name: "Front",
  19707. image: {
  19708. source: "./media/characters/tendirmuldr/front.svg",
  19709. extra: 1878 / 1772,
  19710. bottom: 0.015
  19711. }
  19712. },
  19713. },
  19714. [
  19715. {
  19716. name: "Megamacro",
  19717. height: math.unit(1500, "miles"),
  19718. default: true
  19719. },
  19720. ]
  19721. ))
  19722. characterMakers.push(() => makeCharacter(
  19723. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19724. {
  19725. front: {
  19726. height: math.unit(14, "feet"),
  19727. weight: math.unit(12000, "lb"),
  19728. name: "Front",
  19729. image: {
  19730. source: "./media/characters/mort/front.svg",
  19731. extra: 365 / 318,
  19732. bottom: 0.01
  19733. }
  19734. },
  19735. side: {
  19736. height: math.unit(14, "feet"),
  19737. weight: math.unit(12000, "lb"),
  19738. name: "Side",
  19739. image: {
  19740. source: "./media/characters/mort/side.svg",
  19741. extra: 365 / 318,
  19742. bottom: 0.052
  19743. },
  19744. default: true
  19745. },
  19746. back: {
  19747. height: math.unit(14, "feet"),
  19748. weight: math.unit(12000, "lb"),
  19749. name: "Back",
  19750. image: {
  19751. source: "./media/characters/mort/back.svg",
  19752. extra: 371 / 332,
  19753. bottom: 0.18
  19754. }
  19755. },
  19756. },
  19757. [
  19758. {
  19759. name: "Normal",
  19760. height: math.unit(14, "feet"),
  19761. default: true
  19762. },
  19763. ]
  19764. ))
  19765. characterMakers.push(() => makeCharacter(
  19766. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19767. {
  19768. front: {
  19769. height: math.unit(8, "feet"),
  19770. weight: math.unit(1, "ton"),
  19771. name: "Front",
  19772. image: {
  19773. source: "./media/characters/lycoa/front.svg",
  19774. extra: 1875 / 1789,
  19775. bottom: 0.022
  19776. }
  19777. },
  19778. back: {
  19779. height: math.unit(8, "feet"),
  19780. weight: math.unit(1, "ton"),
  19781. name: "Back",
  19782. image: {
  19783. source: "./media/characters/lycoa/back.svg",
  19784. extra: 1835 / 1781,
  19785. bottom: 0.03
  19786. }
  19787. },
  19788. head: {
  19789. height: math.unit(2.1, "feet"),
  19790. name: "Head",
  19791. image: {
  19792. source: "./media/characters/lycoa/head.svg"
  19793. }
  19794. },
  19795. tailmaw: {
  19796. height: math.unit(1.9, "feet"),
  19797. name: "Tailmaw",
  19798. image: {
  19799. source: "./media/characters/lycoa/tailmaw.svg"
  19800. }
  19801. },
  19802. tentacles: {
  19803. height: math.unit(2.1, "feet"),
  19804. name: "Tentacles",
  19805. image: {
  19806. source: "./media/characters/lycoa/tentacles.svg"
  19807. }
  19808. },
  19809. dick: {
  19810. height: math.unit(1.73, "feet"),
  19811. name: "Dick",
  19812. image: {
  19813. source: "./media/characters/lycoa/dick.svg"
  19814. }
  19815. },
  19816. },
  19817. [
  19818. {
  19819. name: "Normal",
  19820. height: math.unit(8, "feet"),
  19821. default: true
  19822. },
  19823. {
  19824. name: "Macro",
  19825. height: math.unit(30, "feet")
  19826. },
  19827. ]
  19828. ))
  19829. characterMakers.push(() => makeCharacter(
  19830. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19831. {
  19832. front: {
  19833. height: math.unit(4 + 2 / 12, "feet"),
  19834. weight: math.unit(70, "lb"),
  19835. name: "Front",
  19836. image: {
  19837. source: "./media/characters/naldara/front.svg",
  19838. extra: 841 / 720,
  19839. bottom: 0.04
  19840. }
  19841. },
  19842. naga: {
  19843. height: math.unit(23, "feet"),
  19844. weight: math.unit(15000, "kg"),
  19845. name: "Naga",
  19846. image: {
  19847. source: "./media/characters/naldara/naga.svg",
  19848. extra: 3290 / 2959,
  19849. bottom: 124 / 3432
  19850. }
  19851. },
  19852. },
  19853. [
  19854. {
  19855. name: "Normal",
  19856. height: math.unit(4 + 2 / 12, "feet"),
  19857. default: true
  19858. },
  19859. ]
  19860. ))
  19861. characterMakers.push(() => makeCharacter(
  19862. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19863. {
  19864. front: {
  19865. height: math.unit(13 + 7 / 12, "feet"),
  19866. weight: math.unit(1500, "lb"),
  19867. name: "Front",
  19868. image: {
  19869. source: "./media/characters/briar/front.svg",
  19870. extra: 626 / 596,
  19871. bottom: 0.08
  19872. }
  19873. },
  19874. },
  19875. [
  19876. {
  19877. name: "Normal",
  19878. height: math.unit(13 + 7 / 12, "feet"),
  19879. default: true
  19880. },
  19881. ]
  19882. ))
  19883. characterMakers.push(() => makeCharacter(
  19884. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19885. {
  19886. side: {
  19887. height: math.unit(10, "feet"),
  19888. weight: math.unit(500, "lb"),
  19889. name: "Side",
  19890. image: {
  19891. source: "./media/characters/vanguard/side.svg",
  19892. extra: 502 / 425,
  19893. bottom: 0.087
  19894. }
  19895. },
  19896. },
  19897. [
  19898. {
  19899. name: "Normal",
  19900. height: math.unit(10, "feet"),
  19901. default: true
  19902. },
  19903. ]
  19904. ))
  19905. characterMakers.push(() => makeCharacter(
  19906. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19907. {
  19908. front: {
  19909. height: math.unit(7.5, "feet"),
  19910. weight: math.unit(2, "lb"),
  19911. name: "Front",
  19912. image: {
  19913. source: "./media/characters/artemis/front.svg",
  19914. extra: 1192 / 1075,
  19915. bottom: 0.07
  19916. }
  19917. },
  19918. frontNsfw: {
  19919. height: math.unit(7.5, "feet"),
  19920. weight: math.unit(2, "lb"),
  19921. name: "Front (NSFW)",
  19922. image: {
  19923. source: "./media/characters/artemis/front-nsfw.svg",
  19924. extra: 1192 / 1075,
  19925. bottom: 0.07
  19926. }
  19927. },
  19928. frontNsfwer: {
  19929. height: math.unit(7.5, "feet"),
  19930. weight: math.unit(2, "lb"),
  19931. name: "Front (NSFW-er)",
  19932. image: {
  19933. source: "./media/characters/artemis/front-nsfwer.svg",
  19934. extra: 1192 / 1075,
  19935. bottom: 0.07
  19936. }
  19937. },
  19938. side: {
  19939. height: math.unit(7.5, "feet"),
  19940. weight: math.unit(2, "lb"),
  19941. name: "Side",
  19942. image: {
  19943. source: "./media/characters/artemis/side.svg",
  19944. extra: 1192 / 1075,
  19945. bottom: 0.07
  19946. }
  19947. },
  19948. sideNsfw: {
  19949. height: math.unit(7.5, "feet"),
  19950. weight: math.unit(2, "lb"),
  19951. name: "Side (NSFW)",
  19952. image: {
  19953. source: "./media/characters/artemis/side-nsfw.svg",
  19954. extra: 1192 / 1075,
  19955. bottom: 0.07
  19956. }
  19957. },
  19958. sideNsfwer: {
  19959. height: math.unit(7.5, "feet"),
  19960. weight: math.unit(2, "lb"),
  19961. name: "Side (NSFW-er)",
  19962. image: {
  19963. source: "./media/characters/artemis/side-nsfwer.svg",
  19964. extra: 1192 / 1075,
  19965. bottom: 0.07
  19966. }
  19967. },
  19968. maw: {
  19969. height: math.unit(1.1, "feet"),
  19970. name: "Maw",
  19971. image: {
  19972. source: "./media/characters/artemis/maw.svg"
  19973. }
  19974. },
  19975. stomach: {
  19976. height: math.unit(0.95, "feet"),
  19977. name: "Stomach",
  19978. image: {
  19979. source: "./media/characters/artemis/stomach.svg"
  19980. }
  19981. },
  19982. dickCanine: {
  19983. height: math.unit(1, "feet"),
  19984. name: "Dick (Canine)",
  19985. image: {
  19986. source: "./media/characters/artemis/dick-canine.svg"
  19987. }
  19988. },
  19989. dickEquine: {
  19990. height: math.unit(0.85, "feet"),
  19991. name: "Dick (Equine)",
  19992. image: {
  19993. source: "./media/characters/artemis/dick-equine.svg"
  19994. }
  19995. },
  19996. dickExotic: {
  19997. height: math.unit(0.85, "feet"),
  19998. name: "Dick (Exotic)",
  19999. image: {
  20000. source: "./media/characters/artemis/dick-exotic.svg"
  20001. }
  20002. },
  20003. },
  20004. [
  20005. {
  20006. name: "Normal",
  20007. height: math.unit(7.5, "feet"),
  20008. default: true
  20009. },
  20010. {
  20011. name: "Enlarged",
  20012. height: math.unit(12, "feet")
  20013. },
  20014. ]
  20015. ))
  20016. characterMakers.push(() => makeCharacter(
  20017. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20018. {
  20019. front: {
  20020. height: math.unit(5 + 3 / 12, "feet"),
  20021. weight: math.unit(160, "lb"),
  20022. name: "Front",
  20023. image: {
  20024. source: "./media/characters/kira/front.svg",
  20025. extra: 906 / 786,
  20026. bottom: 0.01
  20027. }
  20028. },
  20029. back: {
  20030. height: math.unit(5 + 3 / 12, "feet"),
  20031. weight: math.unit(160, "lb"),
  20032. name: "Back",
  20033. image: {
  20034. source: "./media/characters/kira/back.svg",
  20035. extra: 882 / 757,
  20036. bottom: 0.005
  20037. }
  20038. },
  20039. frontDressed: {
  20040. height: math.unit(5 + 3 / 12, "feet"),
  20041. weight: math.unit(160, "lb"),
  20042. name: "Front (Dressed)",
  20043. image: {
  20044. source: "./media/characters/kira/front-dressed.svg",
  20045. extra: 906 / 786,
  20046. bottom: 0.01
  20047. }
  20048. },
  20049. beans: {
  20050. height: math.unit(0.92, "feet"),
  20051. name: "Beans",
  20052. image: {
  20053. source: "./media/characters/kira/beans.svg"
  20054. }
  20055. },
  20056. },
  20057. [
  20058. {
  20059. name: "Normal",
  20060. height: math.unit(5 + 3 / 12, "feet"),
  20061. default: true
  20062. },
  20063. ]
  20064. ))
  20065. characterMakers.push(() => makeCharacter(
  20066. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20067. {
  20068. front: {
  20069. height: math.unit(5 + 4 / 12, "feet"),
  20070. weight: math.unit(145, "lb"),
  20071. name: "Front",
  20072. image: {
  20073. source: "./media/characters/scramble/front.svg",
  20074. extra: 763 / 727,
  20075. bottom: 0.05
  20076. }
  20077. },
  20078. back: {
  20079. height: math.unit(5 + 4 / 12, "feet"),
  20080. weight: math.unit(145, "lb"),
  20081. name: "Back",
  20082. image: {
  20083. source: "./media/characters/scramble/back.svg",
  20084. extra: 826 / 737,
  20085. bottom: 0.002
  20086. }
  20087. },
  20088. },
  20089. [
  20090. {
  20091. name: "Normal",
  20092. height: math.unit(5 + 4 / 12, "feet"),
  20093. default: true
  20094. },
  20095. ]
  20096. ))
  20097. characterMakers.push(() => makeCharacter(
  20098. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20099. {
  20100. side: {
  20101. height: math.unit(6 + 2 / 12, "feet"),
  20102. weight: math.unit(190, "lb"),
  20103. name: "Side",
  20104. image: {
  20105. source: "./media/characters/biscuit/side.svg",
  20106. extra: 858 / 791,
  20107. bottom: 0.044
  20108. }
  20109. },
  20110. },
  20111. [
  20112. {
  20113. name: "Normal",
  20114. height: math.unit(6 + 2 / 12, "feet"),
  20115. default: true
  20116. },
  20117. ]
  20118. ))
  20119. characterMakers.push(() => makeCharacter(
  20120. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20121. {
  20122. front: {
  20123. height: math.unit(5 + 2 / 12, "feet"),
  20124. weight: math.unit(120, "lb"),
  20125. name: "Front",
  20126. image: {
  20127. source: "./media/characters/poffin/front.svg",
  20128. extra: 786 / 680,
  20129. bottom: 0.005
  20130. }
  20131. },
  20132. },
  20133. [
  20134. {
  20135. name: "Normal",
  20136. height: math.unit(5 + 2 / 12, "feet"),
  20137. default: true
  20138. },
  20139. ]
  20140. ))
  20141. characterMakers.push(() => makeCharacter(
  20142. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20143. {
  20144. front: {
  20145. height: math.unit(6 + 3 / 12, "feet"),
  20146. weight: math.unit(519, "lb"),
  20147. name: "Front",
  20148. image: {
  20149. source: "./media/characters/dhari/front.svg",
  20150. extra: 1048 / 946,
  20151. bottom: 0.015
  20152. }
  20153. },
  20154. back: {
  20155. height: math.unit(6 + 3 / 12, "feet"),
  20156. weight: math.unit(519, "lb"),
  20157. name: "Back",
  20158. image: {
  20159. source: "./media/characters/dhari/back.svg",
  20160. extra: 1048 / 931,
  20161. bottom: 0.005
  20162. }
  20163. },
  20164. frontDressed: {
  20165. height: math.unit(6 + 3 / 12, "feet"),
  20166. weight: math.unit(519, "lb"),
  20167. name: "Front (Dressed)",
  20168. image: {
  20169. source: "./media/characters/dhari/front-dressed.svg",
  20170. extra: 1713 / 1546,
  20171. bottom: 0.02
  20172. }
  20173. },
  20174. backDressed: {
  20175. height: math.unit(6 + 3 / 12, "feet"),
  20176. weight: math.unit(519, "lb"),
  20177. name: "Back (Dressed)",
  20178. image: {
  20179. source: "./media/characters/dhari/back-dressed.svg",
  20180. extra: 1699 / 1537,
  20181. bottom: 0.01
  20182. }
  20183. },
  20184. maw: {
  20185. height: math.unit(0.95, "feet"),
  20186. name: "Maw",
  20187. image: {
  20188. source: "./media/characters/dhari/maw.svg"
  20189. }
  20190. },
  20191. wereFront: {
  20192. height: math.unit(12 + 8 / 12, "feet"),
  20193. weight: math.unit(4000, "lb"),
  20194. name: "Front (Were)",
  20195. image: {
  20196. source: "./media/characters/dhari/were-front.svg",
  20197. extra: 1065 / 969,
  20198. bottom: 0.015
  20199. }
  20200. },
  20201. wereBack: {
  20202. height: math.unit(12 + 8 / 12, "feet"),
  20203. weight: math.unit(4000, "lb"),
  20204. name: "Back (Were)",
  20205. image: {
  20206. source: "./media/characters/dhari/were-back.svg",
  20207. extra: 1065 / 969,
  20208. bottom: 0.012
  20209. }
  20210. },
  20211. wereMaw: {
  20212. height: math.unit(0.625, "meters"),
  20213. name: "Maw (Were)",
  20214. image: {
  20215. source: "./media/characters/dhari/were-maw.svg"
  20216. }
  20217. },
  20218. },
  20219. [
  20220. {
  20221. name: "Normal",
  20222. height: math.unit(6 + 3 / 12, "feet"),
  20223. default: true
  20224. },
  20225. ]
  20226. ))
  20227. characterMakers.push(() => makeCharacter(
  20228. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20229. {
  20230. anthro: {
  20231. height: math.unit(5 + 7 / 12, "feet"),
  20232. weight: math.unit(175, "lb"),
  20233. name: "Anthro",
  20234. image: {
  20235. source: "./media/characters/rena-dyne/anthro.svg",
  20236. extra: 1849 / 1785,
  20237. bottom: 0.005
  20238. }
  20239. },
  20240. taur: {
  20241. height: math.unit(15 + 6 / 12, "feet"),
  20242. weight: math.unit(8000, "lb"),
  20243. name: "Taur",
  20244. image: {
  20245. source: "./media/characters/rena-dyne/taur.svg",
  20246. extra: 2315 / 2234,
  20247. bottom: 0.033
  20248. }
  20249. },
  20250. },
  20251. [
  20252. {
  20253. name: "Normal",
  20254. height: math.unit(5 + 7 / 12, "feet"),
  20255. default: true
  20256. },
  20257. ]
  20258. ))
  20259. characterMakers.push(() => makeCharacter(
  20260. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20261. {
  20262. front: {
  20263. height: math.unit(8, "feet"),
  20264. weight: math.unit(600, "lb"),
  20265. name: "Front",
  20266. image: {
  20267. source: "./media/characters/weremeep/front.svg",
  20268. extra: 967 / 862,
  20269. bottom: 0.01
  20270. }
  20271. },
  20272. },
  20273. [
  20274. {
  20275. name: "Normal",
  20276. height: math.unit(8, "feet"),
  20277. default: true
  20278. },
  20279. {
  20280. name: "Lorg",
  20281. height: math.unit(12, "feet")
  20282. },
  20283. {
  20284. name: "Oh Lawd She Comin'",
  20285. height: math.unit(20, "feet")
  20286. },
  20287. ]
  20288. ))
  20289. characterMakers.push(() => makeCharacter(
  20290. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20291. {
  20292. front: {
  20293. height: math.unit(4, "feet"),
  20294. weight: math.unit(90, "lb"),
  20295. name: "Front",
  20296. image: {
  20297. source: "./media/characters/reza/front.svg",
  20298. extra: 1183 / 1111,
  20299. bottom: 0.017
  20300. }
  20301. },
  20302. back: {
  20303. height: math.unit(4, "feet"),
  20304. weight: math.unit(90, "lb"),
  20305. name: "Back",
  20306. image: {
  20307. source: "./media/characters/reza/back.svg",
  20308. extra: 1183 / 1111,
  20309. bottom: 0.01
  20310. }
  20311. },
  20312. drake: {
  20313. height: math.unit(30, "feet"),
  20314. weight: math.unit(246960, "lb"),
  20315. name: "Drake",
  20316. image: {
  20317. source: "./media/characters/reza/drake.svg",
  20318. extra: 2350 / 2024,
  20319. bottom: 60.7 / 2403
  20320. }
  20321. },
  20322. },
  20323. [
  20324. {
  20325. name: "Normal",
  20326. height: math.unit(4, "feet"),
  20327. default: true
  20328. },
  20329. ]
  20330. ))
  20331. characterMakers.push(() => makeCharacter(
  20332. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20333. {
  20334. side: {
  20335. height: math.unit(15, "feet"),
  20336. weight: math.unit(14, "tons"),
  20337. name: "Side",
  20338. image: {
  20339. source: "./media/characters/athea/side.svg",
  20340. extra: 960 / 540,
  20341. bottom: 0.003
  20342. }
  20343. },
  20344. sitting: {
  20345. height: math.unit(6 * 2.85, "feet"),
  20346. weight: math.unit(14, "tons"),
  20347. name: "Sitting",
  20348. image: {
  20349. source: "./media/characters/athea/sitting.svg",
  20350. extra: 621 / 581,
  20351. bottom: 0.075
  20352. }
  20353. },
  20354. maw: {
  20355. height: math.unit(7.59498031496063, "feet"),
  20356. name: "Maw",
  20357. image: {
  20358. source: "./media/characters/athea/maw.svg"
  20359. }
  20360. },
  20361. },
  20362. [
  20363. {
  20364. name: "Lap Cat",
  20365. height: math.unit(2.5, "feet")
  20366. },
  20367. {
  20368. name: "Minimacro",
  20369. height: math.unit(15, "feet"),
  20370. default: true
  20371. },
  20372. {
  20373. name: "Macro",
  20374. height: math.unit(120, "feet")
  20375. },
  20376. {
  20377. name: "Macro+",
  20378. height: math.unit(640, "feet")
  20379. },
  20380. {
  20381. name: "Colossus",
  20382. height: math.unit(2.2, "miles")
  20383. },
  20384. ]
  20385. ))
  20386. characterMakers.push(() => makeCharacter(
  20387. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20388. {
  20389. front: {
  20390. height: math.unit(8 + 8 / 12, "feet"),
  20391. weight: math.unit(130, "kg"),
  20392. name: "Front",
  20393. image: {
  20394. source: "./media/characters/seroko/front.svg",
  20395. extra: 1385 / 1280,
  20396. bottom: 0.025
  20397. }
  20398. },
  20399. back: {
  20400. height: math.unit(8 + 8 / 12, "feet"),
  20401. weight: math.unit(130, "kg"),
  20402. name: "Back",
  20403. image: {
  20404. source: "./media/characters/seroko/back.svg",
  20405. extra: 1369 / 1238,
  20406. bottom: 0.018
  20407. }
  20408. },
  20409. frontDressed: {
  20410. height: math.unit(8 + 8 / 12, "feet"),
  20411. weight: math.unit(130, "kg"),
  20412. name: "Front (Dressed)",
  20413. image: {
  20414. source: "./media/characters/seroko/front-dressed.svg",
  20415. extra: 1366 / 1275,
  20416. bottom: 0.03
  20417. }
  20418. },
  20419. },
  20420. [
  20421. {
  20422. name: "Normal",
  20423. height: math.unit(8 + 8 / 12, "feet"),
  20424. default: true
  20425. },
  20426. ]
  20427. ))
  20428. characterMakers.push(() => makeCharacter(
  20429. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20430. {
  20431. front: {
  20432. height: math.unit(5.5, "feet"),
  20433. weight: math.unit(160, "lb"),
  20434. name: "Front",
  20435. image: {
  20436. source: "./media/characters/quatzi/front.svg",
  20437. extra: 2346 / 2242,
  20438. bottom: 0.015
  20439. }
  20440. },
  20441. },
  20442. [
  20443. {
  20444. name: "Normal",
  20445. height: math.unit(5.5, "feet"),
  20446. default: true
  20447. },
  20448. {
  20449. name: "Big",
  20450. height: math.unit(7.7, "feet")
  20451. },
  20452. ]
  20453. ))
  20454. characterMakers.push(() => makeCharacter(
  20455. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20456. {
  20457. front: {
  20458. height: math.unit(5 + 11 / 12, "feet"),
  20459. weight: math.unit(180, "lb"),
  20460. name: "Front",
  20461. image: {
  20462. source: "./media/characters/sen/front.svg",
  20463. extra: 1321 / 1254,
  20464. bottom: 0.015
  20465. }
  20466. },
  20467. side: {
  20468. height: math.unit(5 + 11 / 12, "feet"),
  20469. weight: math.unit(180, "lb"),
  20470. name: "Side",
  20471. image: {
  20472. source: "./media/characters/sen/side.svg",
  20473. extra: 1321 / 1254,
  20474. bottom: 0.007
  20475. }
  20476. },
  20477. back: {
  20478. height: math.unit(5 + 11 / 12, "feet"),
  20479. weight: math.unit(180, "lb"),
  20480. name: "Back",
  20481. image: {
  20482. source: "./media/characters/sen/back.svg",
  20483. extra: 1321 / 1254
  20484. }
  20485. },
  20486. },
  20487. [
  20488. {
  20489. name: "Normal",
  20490. height: math.unit(5 + 11 / 12, "feet"),
  20491. default: true
  20492. },
  20493. ]
  20494. ))
  20495. characterMakers.push(() => makeCharacter(
  20496. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20497. {
  20498. front: {
  20499. height: math.unit(166.6, "cm"),
  20500. weight: math.unit(66.6, "kg"),
  20501. name: "Front",
  20502. image: {
  20503. source: "./media/characters/fruity/front.svg",
  20504. extra: 1510 / 1386,
  20505. bottom: 0.04
  20506. }
  20507. },
  20508. back: {
  20509. height: math.unit(166.6, "cm"),
  20510. weight: math.unit(66.6, "lb"),
  20511. name: "Back",
  20512. image: {
  20513. source: "./media/characters/fruity/back.svg",
  20514. extra: 1563 / 1435,
  20515. bottom: 0.005
  20516. }
  20517. },
  20518. },
  20519. [
  20520. {
  20521. name: "Normal",
  20522. height: math.unit(166.6, "cm"),
  20523. default: true
  20524. },
  20525. {
  20526. name: "Demonic",
  20527. height: math.unit(166.6, "feet")
  20528. },
  20529. ]
  20530. ))
  20531. characterMakers.push(() => makeCharacter(
  20532. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20533. {
  20534. side: {
  20535. height: math.unit(10, "feet"),
  20536. weight: math.unit(500, "lb"),
  20537. name: "Side",
  20538. image: {
  20539. source: "./media/characters/zost/side.svg",
  20540. extra: 966 / 880,
  20541. bottom: 0.075
  20542. }
  20543. },
  20544. mawFront: {
  20545. height: math.unit(1.08, "meters"),
  20546. name: "Maw (Front)",
  20547. image: {
  20548. source: "./media/characters/zost/maw-front.svg"
  20549. }
  20550. },
  20551. mawSide: {
  20552. height: math.unit(2.66, "feet"),
  20553. name: "Maw (Side)",
  20554. image: {
  20555. source: "./media/characters/zost/maw-side.svg"
  20556. }
  20557. },
  20558. },
  20559. [
  20560. {
  20561. name: "Normal",
  20562. height: math.unit(10, "feet"),
  20563. default: true
  20564. },
  20565. ]
  20566. ))
  20567. characterMakers.push(() => makeCharacter(
  20568. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20569. {
  20570. front: {
  20571. height: math.unit(5 + 4 / 12, "feet"),
  20572. weight: math.unit(120, "lb"),
  20573. name: "Front",
  20574. image: {
  20575. source: "./media/characters/luci/front.svg",
  20576. extra: 1985 / 1884,
  20577. bottom: 0.04
  20578. }
  20579. },
  20580. back: {
  20581. height: math.unit(5 + 4 / 12, "feet"),
  20582. weight: math.unit(120, "lb"),
  20583. name: "Back",
  20584. image: {
  20585. source: "./media/characters/luci/back.svg",
  20586. extra: 1892 / 1791,
  20587. bottom: 0.002
  20588. }
  20589. },
  20590. },
  20591. [
  20592. {
  20593. name: "Normal",
  20594. height: math.unit(5 + 4 / 12, "feet"),
  20595. default: true
  20596. },
  20597. ]
  20598. ))
  20599. characterMakers.push(() => makeCharacter(
  20600. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20601. {
  20602. front: {
  20603. height: math.unit(1500, "feet"),
  20604. weight: math.unit(3.8e6, "tons"),
  20605. name: "Front",
  20606. image: {
  20607. source: "./media/characters/2th/front.svg",
  20608. extra: 3489 / 3350,
  20609. bottom: 0.1
  20610. }
  20611. },
  20612. foot: {
  20613. height: math.unit(461, "feet"),
  20614. name: "Foot",
  20615. image: {
  20616. source: "./media/characters/2th/foot.svg"
  20617. }
  20618. },
  20619. },
  20620. [
  20621. {
  20622. name: "\"Micro\"",
  20623. height: math.unit(15 + 7 / 12, "feet")
  20624. },
  20625. {
  20626. name: "Normal",
  20627. height: math.unit(1500, "feet"),
  20628. default: true
  20629. },
  20630. {
  20631. name: "Macro",
  20632. height: math.unit(5000, "feet")
  20633. },
  20634. {
  20635. name: "Megamacro",
  20636. height: math.unit(15, "miles")
  20637. },
  20638. {
  20639. name: "Gigamacro",
  20640. height: math.unit(4000, "miles")
  20641. },
  20642. {
  20643. name: "Galactic",
  20644. height: math.unit(50, "AU")
  20645. },
  20646. ]
  20647. ))
  20648. characterMakers.push(() => makeCharacter(
  20649. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20650. {
  20651. front: {
  20652. height: math.unit(5 + 6 / 12, "feet"),
  20653. weight: math.unit(220, "lb"),
  20654. name: "Front",
  20655. image: {
  20656. source: "./media/characters/amethyst/front.svg",
  20657. extra: 2078 / 2040,
  20658. bottom: 0.045
  20659. }
  20660. },
  20661. back: {
  20662. height: math.unit(5 + 6 / 12, "feet"),
  20663. weight: math.unit(220, "lb"),
  20664. name: "Back",
  20665. image: {
  20666. source: "./media/characters/amethyst/back.svg",
  20667. extra: 2021 / 1989,
  20668. bottom: 0.02
  20669. }
  20670. },
  20671. },
  20672. [
  20673. {
  20674. name: "Normal",
  20675. height: math.unit(5 + 6 / 12, "feet"),
  20676. default: true
  20677. },
  20678. ]
  20679. ))
  20680. characterMakers.push(() => makeCharacter(
  20681. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20682. {
  20683. front: {
  20684. height: math.unit(4 + 11 / 12, "feet"),
  20685. weight: math.unit(120, "lb"),
  20686. name: "Front",
  20687. image: {
  20688. source: "./media/characters/yumi-akiyama/front.svg",
  20689. extra: 1327 / 1235,
  20690. bottom: 0.02
  20691. }
  20692. },
  20693. back: {
  20694. height: math.unit(4 + 11 / 12, "feet"),
  20695. weight: math.unit(120, "lb"),
  20696. name: "Back",
  20697. image: {
  20698. source: "./media/characters/yumi-akiyama/back.svg",
  20699. extra: 1287 / 1245,
  20700. bottom: 0.002
  20701. }
  20702. },
  20703. },
  20704. [
  20705. {
  20706. name: "Galactic",
  20707. height: math.unit(50, "galaxies"),
  20708. default: true
  20709. },
  20710. {
  20711. name: "Universal",
  20712. height: math.unit(100, "universes")
  20713. },
  20714. ]
  20715. ))
  20716. characterMakers.push(() => makeCharacter(
  20717. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20718. {
  20719. front: {
  20720. height: math.unit(8, "feet"),
  20721. weight: math.unit(500, "lb"),
  20722. name: "Front",
  20723. image: {
  20724. source: "./media/characters/rifter-yrmori/front.svg",
  20725. extra: 1180 / 1125,
  20726. bottom: 0.02
  20727. }
  20728. },
  20729. back: {
  20730. height: math.unit(8, "feet"),
  20731. weight: math.unit(500, "lb"),
  20732. name: "Back",
  20733. image: {
  20734. source: "./media/characters/rifter-yrmori/back.svg",
  20735. extra: 1190 / 1145,
  20736. bottom: 0.001
  20737. }
  20738. },
  20739. wings: {
  20740. height: math.unit(7.75, "feet"),
  20741. weight: math.unit(500, "lb"),
  20742. name: "Wings",
  20743. image: {
  20744. source: "./media/characters/rifter-yrmori/wings.svg",
  20745. extra: 1357 / 1285
  20746. }
  20747. },
  20748. maw: {
  20749. height: math.unit(0.8, "feet"),
  20750. name: "Maw",
  20751. image: {
  20752. source: "./media/characters/rifter-yrmori/maw.svg"
  20753. }
  20754. },
  20755. mawfront: {
  20756. height: math.unit(1.45, "feet"),
  20757. name: "Maw (Front)",
  20758. image: {
  20759. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20760. }
  20761. },
  20762. },
  20763. [
  20764. {
  20765. name: "Normal",
  20766. height: math.unit(8, "feet"),
  20767. default: true
  20768. },
  20769. {
  20770. name: "Macro",
  20771. height: math.unit(42, "meters")
  20772. },
  20773. ]
  20774. ))
  20775. characterMakers.push(() => makeCharacter(
  20776. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20777. {
  20778. were: {
  20779. height: math.unit(25 + 6 / 12, "feet"),
  20780. weight: math.unit(10000, "lb"),
  20781. name: "Were",
  20782. image: {
  20783. source: "./media/characters/tahajin/were.svg",
  20784. extra: 801 / 770,
  20785. bottom: 0.042
  20786. }
  20787. },
  20788. aquatic: {
  20789. height: math.unit(6 + 4 / 12, "feet"),
  20790. weight: math.unit(160, "lb"),
  20791. name: "Aquatic",
  20792. image: {
  20793. source: "./media/characters/tahajin/aquatic.svg",
  20794. extra: 572 / 542,
  20795. bottom: 0.04
  20796. }
  20797. },
  20798. chow: {
  20799. height: math.unit(8 + 11 / 12, "feet"),
  20800. weight: math.unit(450, "lb"),
  20801. name: "Chow",
  20802. image: {
  20803. source: "./media/characters/tahajin/chow.svg",
  20804. extra: 660 / 640,
  20805. bottom: 0.015
  20806. }
  20807. },
  20808. demiNaga: {
  20809. height: math.unit(6 + 8 / 12, "feet"),
  20810. weight: math.unit(300, "lb"),
  20811. name: "Demi Naga",
  20812. image: {
  20813. source: "./media/characters/tahajin/demi-naga.svg",
  20814. extra: 643 / 615,
  20815. bottom: 0.1
  20816. }
  20817. },
  20818. data: {
  20819. height: math.unit(5, "inches"),
  20820. weight: math.unit(0.1, "lb"),
  20821. name: "Data",
  20822. image: {
  20823. source: "./media/characters/tahajin/data.svg"
  20824. }
  20825. },
  20826. fluu: {
  20827. height: math.unit(5 + 7 / 12, "feet"),
  20828. weight: math.unit(140, "lb"),
  20829. name: "Fluu",
  20830. image: {
  20831. source: "./media/characters/tahajin/fluu.svg",
  20832. extra: 628 / 592,
  20833. bottom: 0.02
  20834. }
  20835. },
  20836. starWarrior: {
  20837. height: math.unit(4 + 5 / 12, "feet"),
  20838. weight: math.unit(50, "lb"),
  20839. name: "Star Warrior",
  20840. image: {
  20841. source: "./media/characters/tahajin/star-warrior.svg"
  20842. }
  20843. },
  20844. },
  20845. [
  20846. {
  20847. name: "Normal",
  20848. height: math.unit(25 + 6 / 12, "feet"),
  20849. default: true
  20850. },
  20851. ]
  20852. ))
  20853. characterMakers.push(() => makeCharacter(
  20854. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20855. {
  20856. front: {
  20857. height: math.unit(8, "feet"),
  20858. weight: math.unit(350, "lb"),
  20859. name: "Front",
  20860. image: {
  20861. source: "./media/characters/gabira/front.svg",
  20862. extra: 608 / 580,
  20863. bottom: 0.03
  20864. }
  20865. },
  20866. back: {
  20867. height: math.unit(8, "feet"),
  20868. weight: math.unit(350, "lb"),
  20869. name: "Back",
  20870. image: {
  20871. source: "./media/characters/gabira/back.svg",
  20872. extra: 608 / 580,
  20873. bottom: 0.03
  20874. }
  20875. },
  20876. },
  20877. [
  20878. {
  20879. name: "Normal",
  20880. height: math.unit(8, "feet"),
  20881. default: true
  20882. },
  20883. ]
  20884. ))
  20885. characterMakers.push(() => makeCharacter(
  20886. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20887. {
  20888. front: {
  20889. height: math.unit(5 + 3 / 12, "feet"),
  20890. weight: math.unit(137, "lb"),
  20891. name: "Front",
  20892. image: {
  20893. source: "./media/characters/sasha-katraine/front.svg",
  20894. bottom: 0.045
  20895. }
  20896. },
  20897. },
  20898. [
  20899. {
  20900. name: "Micro",
  20901. height: math.unit(5, "inches")
  20902. },
  20903. {
  20904. name: "Normal",
  20905. height: math.unit(5 + 3 / 12, "feet"),
  20906. default: true
  20907. },
  20908. ]
  20909. ))
  20910. characterMakers.push(() => makeCharacter(
  20911. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20912. {
  20913. side: {
  20914. height: math.unit(4, "inches"),
  20915. weight: math.unit(200, "grams"),
  20916. name: "Side",
  20917. image: {
  20918. source: "./media/characters/der/side.svg",
  20919. extra: 719 / 400,
  20920. bottom: 30.6 / 749.9187
  20921. }
  20922. },
  20923. },
  20924. [
  20925. {
  20926. name: "Micro",
  20927. height: math.unit(4, "inches"),
  20928. default: true
  20929. },
  20930. ]
  20931. ))
  20932. characterMakers.push(() => makeCharacter(
  20933. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20934. {
  20935. side: {
  20936. height: math.unit(30, "meters"),
  20937. weight: math.unit(700, "tonnes"),
  20938. name: "Side",
  20939. image: {
  20940. source: "./media/characters/fixerdragon/side.svg",
  20941. extra: (1293.0514 - 116.03) / 1106.86,
  20942. bottom: 116.03 / 1293.0514
  20943. }
  20944. },
  20945. },
  20946. [
  20947. {
  20948. name: "Planck",
  20949. height: math.unit(1.6e-35, "meters")
  20950. },
  20951. {
  20952. name: "Micro",
  20953. height: math.unit(0.4, "meters")
  20954. },
  20955. {
  20956. name: "Normal",
  20957. height: math.unit(30, "meters"),
  20958. default: true
  20959. },
  20960. {
  20961. name: "Megamacro",
  20962. height: math.unit(1.2, "megameters")
  20963. },
  20964. {
  20965. name: "Teramacro",
  20966. height: math.unit(130, "terameters")
  20967. },
  20968. {
  20969. name: "Yottamacro",
  20970. height: math.unit(6200, "yottameters")
  20971. },
  20972. ]
  20973. ));
  20974. characterMakers.push(() => makeCharacter(
  20975. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20976. {
  20977. front: {
  20978. height: math.unit(8, "feet"),
  20979. weight: math.unit(250, "lb"),
  20980. name: "Front",
  20981. image: {
  20982. source: "./media/characters/kite/front.svg",
  20983. extra: 2796 / 2659,
  20984. bottom: 0.002
  20985. }
  20986. },
  20987. },
  20988. [
  20989. {
  20990. name: "Normal",
  20991. height: math.unit(8, "feet"),
  20992. default: true
  20993. },
  20994. {
  20995. name: "Macro",
  20996. height: math.unit(360, "feet")
  20997. },
  20998. {
  20999. name: "Megamacro",
  21000. height: math.unit(1500, "feet")
  21001. },
  21002. ]
  21003. ))
  21004. characterMakers.push(() => makeCharacter(
  21005. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21006. {
  21007. front: {
  21008. height: math.unit(5 + 10 / 12, "feet"),
  21009. weight: math.unit(150, "lb"),
  21010. name: "Front",
  21011. image: {
  21012. source: "./media/characters/poojawa-vynar/front.svg",
  21013. extra: (1506.1547 - 55) / 1356.6,
  21014. bottom: 55 / 1506.1547
  21015. }
  21016. },
  21017. frontTailless: {
  21018. height: math.unit(5 + 10 / 12, "feet"),
  21019. weight: math.unit(150, "lb"),
  21020. name: "Front (Tailless)",
  21021. image: {
  21022. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21023. extra: (1506.1547 - 55) / 1356.6,
  21024. bottom: 55 / 1506.1547
  21025. }
  21026. },
  21027. },
  21028. [
  21029. {
  21030. name: "Normal",
  21031. height: math.unit(5 + 10 / 12, "feet"),
  21032. default: true
  21033. },
  21034. ]
  21035. ))
  21036. characterMakers.push(() => makeCharacter(
  21037. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21038. {
  21039. front: {
  21040. height: math.unit(293, "meters"),
  21041. weight: math.unit(70400, "tons"),
  21042. name: "Front",
  21043. image: {
  21044. source: "./media/characters/violette/front.svg",
  21045. extra: 1227 / 1180,
  21046. bottom: 0.005
  21047. }
  21048. },
  21049. back: {
  21050. height: math.unit(293, "meters"),
  21051. weight: math.unit(70400, "tons"),
  21052. name: "Back",
  21053. image: {
  21054. source: "./media/characters/violette/back.svg",
  21055. extra: 1227 / 1180,
  21056. bottom: 0.005
  21057. }
  21058. },
  21059. },
  21060. [
  21061. {
  21062. name: "Macro",
  21063. height: math.unit(293, "meters"),
  21064. default: true
  21065. },
  21066. ]
  21067. ))
  21068. characterMakers.push(() => makeCharacter(
  21069. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21070. {
  21071. front: {
  21072. height: math.unit(1050, "feet"),
  21073. weight: math.unit(200000, "tons"),
  21074. name: "Front",
  21075. image: {
  21076. source: "./media/characters/alessandra/front.svg",
  21077. extra: 960 / 912,
  21078. bottom: 0.06
  21079. }
  21080. },
  21081. },
  21082. [
  21083. {
  21084. name: "Macro",
  21085. height: math.unit(1050, "feet")
  21086. },
  21087. {
  21088. name: "Macro+",
  21089. height: math.unit(900, "meters"),
  21090. default: true
  21091. },
  21092. ]
  21093. ))
  21094. characterMakers.push(() => makeCharacter(
  21095. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21096. {
  21097. front: {
  21098. height: math.unit(5, "feet"),
  21099. weight: math.unit(187, "lb"),
  21100. name: "Front",
  21101. image: {
  21102. source: "./media/characters/person/front.svg",
  21103. extra: 3087 / 2945,
  21104. bottom: 91 / 3181
  21105. }
  21106. },
  21107. },
  21108. [
  21109. {
  21110. name: "Micro",
  21111. height: math.unit(3, "inches")
  21112. },
  21113. {
  21114. name: "Normal",
  21115. height: math.unit(5, "feet"),
  21116. default: true
  21117. },
  21118. {
  21119. name: "Macro",
  21120. height: math.unit(90, "feet")
  21121. },
  21122. {
  21123. name: "Max Size",
  21124. height: math.unit(280, "feet")
  21125. },
  21126. ]
  21127. ))
  21128. characterMakers.push(() => makeCharacter(
  21129. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21130. {
  21131. front: {
  21132. height: math.unit(4.5, "meters"),
  21133. weight: math.unit(3200, "lb"),
  21134. name: "Front",
  21135. image: {
  21136. source: "./media/characters/ty/front.svg",
  21137. extra: 1038 / 960,
  21138. bottom: 31.156 / 1068
  21139. }
  21140. },
  21141. back: {
  21142. height: math.unit(4.5, "meters"),
  21143. weight: math.unit(3200, "lb"),
  21144. name: "Back",
  21145. image: {
  21146. source: "./media/characters/ty/back.svg",
  21147. extra: 1044 / 966,
  21148. bottom: 7.48 / 1049
  21149. }
  21150. },
  21151. },
  21152. [
  21153. {
  21154. name: "Normal",
  21155. height: math.unit(4.5, "meters"),
  21156. default: true
  21157. },
  21158. ]
  21159. ))
  21160. characterMakers.push(() => makeCharacter(
  21161. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21162. {
  21163. front: {
  21164. height: math.unit(5 + 4 / 12, "feet"),
  21165. weight: math.unit(115, "lb"),
  21166. name: "Front",
  21167. image: {
  21168. source: "./media/characters/rocky/front.svg",
  21169. extra: 1012 / 975,
  21170. bottom: 54 / 1066
  21171. }
  21172. },
  21173. },
  21174. [
  21175. {
  21176. name: "Normal",
  21177. height: math.unit(5 + 4 / 12, "feet"),
  21178. default: true
  21179. },
  21180. ]
  21181. ))
  21182. characterMakers.push(() => makeCharacter(
  21183. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21184. {
  21185. upright: {
  21186. height: math.unit(6, "meters"),
  21187. weight: math.unit(4000, "kg"),
  21188. name: "Upright",
  21189. image: {
  21190. source: "./media/characters/ruin/upright.svg",
  21191. extra: 668 / 661,
  21192. bottom: 42 / 799.8396
  21193. }
  21194. },
  21195. },
  21196. [
  21197. {
  21198. name: "Normal",
  21199. height: math.unit(6, "meters"),
  21200. default: true
  21201. },
  21202. ]
  21203. ))
  21204. characterMakers.push(() => makeCharacter(
  21205. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21206. {
  21207. front: {
  21208. height: math.unit(5, "feet"),
  21209. weight: math.unit(106, "lb"),
  21210. name: "Front",
  21211. image: {
  21212. source: "./media/characters/robin/front.svg",
  21213. extra: 862 / 799,
  21214. bottom: 42.4 / 914.8856
  21215. }
  21216. },
  21217. },
  21218. [
  21219. {
  21220. name: "Normal",
  21221. height: math.unit(5, "feet"),
  21222. default: true
  21223. },
  21224. ]
  21225. ))
  21226. characterMakers.push(() => makeCharacter(
  21227. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21228. {
  21229. side: {
  21230. height: math.unit(3, "feet"),
  21231. weight: math.unit(225, "lb"),
  21232. name: "Side",
  21233. image: {
  21234. source: "./media/characters/saian/side.svg",
  21235. extra: 566 / 356,
  21236. bottom: 79.7 / 643
  21237. }
  21238. },
  21239. maw: {
  21240. height: math.unit(2.85, "feet"),
  21241. name: "Maw",
  21242. image: {
  21243. source: "./media/characters/saian/maw.svg"
  21244. }
  21245. },
  21246. },
  21247. [
  21248. {
  21249. name: "Normal",
  21250. height: math.unit(3, "feet"),
  21251. default: true
  21252. },
  21253. ]
  21254. ))
  21255. characterMakers.push(() => makeCharacter(
  21256. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21257. {
  21258. side: {
  21259. height: math.unit(8, "feet"),
  21260. weight: math.unit(300, "lb"),
  21261. name: "Side",
  21262. image: {
  21263. source: "./media/characters/equus-silvermane/side.svg",
  21264. extra: 2176 / 2050,
  21265. bottom: 65.7 / 2245
  21266. }
  21267. },
  21268. front: {
  21269. height: math.unit(8, "feet"),
  21270. weight: math.unit(300, "lb"),
  21271. name: "Front",
  21272. image: {
  21273. source: "./media/characters/equus-silvermane/front.svg",
  21274. extra: 4633 / 4400,
  21275. bottom: 71.3 / 4706.915
  21276. }
  21277. },
  21278. sideStepping: {
  21279. height: math.unit(8, "feet"),
  21280. weight: math.unit(300, "lb"),
  21281. name: "Side (Stepping)",
  21282. image: {
  21283. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21284. extra: 1968 / 1860,
  21285. bottom: 16.4 / 1989
  21286. }
  21287. },
  21288. },
  21289. [
  21290. {
  21291. name: "Normal",
  21292. height: math.unit(8, "feet")
  21293. },
  21294. {
  21295. name: "Minimacro",
  21296. height: math.unit(75, "feet"),
  21297. default: true
  21298. },
  21299. {
  21300. name: "Macro",
  21301. height: math.unit(150, "feet")
  21302. },
  21303. {
  21304. name: "Macro+",
  21305. height: math.unit(1000, "feet")
  21306. },
  21307. {
  21308. name: "Megamacro",
  21309. height: math.unit(1, "mile")
  21310. },
  21311. ]
  21312. ))
  21313. characterMakers.push(() => makeCharacter(
  21314. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21315. {
  21316. side: {
  21317. height: math.unit(20, "feet"),
  21318. weight: math.unit(30000, "kg"),
  21319. name: "Side",
  21320. image: {
  21321. source: "./media/characters/windar/side.svg",
  21322. extra: 1491 / 1248,
  21323. bottom: 82.56 / 1568
  21324. }
  21325. },
  21326. },
  21327. [
  21328. {
  21329. name: "Normal",
  21330. height: math.unit(20, "feet"),
  21331. default: true
  21332. },
  21333. ]
  21334. ))
  21335. characterMakers.push(() => makeCharacter(
  21336. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21337. {
  21338. side: {
  21339. height: math.unit(15.66, "feet"),
  21340. weight: math.unit(150, "lb"),
  21341. name: "Side",
  21342. image: {
  21343. source: "./media/characters/melody/side.svg",
  21344. extra: 1097 / 944,
  21345. bottom: 11.8 / 1109
  21346. }
  21347. },
  21348. sideOutfit: {
  21349. height: math.unit(15.66, "feet"),
  21350. weight: math.unit(150, "lb"),
  21351. name: "Side (Outfit)",
  21352. image: {
  21353. source: "./media/characters/melody/side-outfit.svg",
  21354. extra: 1097 / 944,
  21355. bottom: 11.8 / 1109
  21356. }
  21357. },
  21358. },
  21359. [
  21360. {
  21361. name: "Normal",
  21362. height: math.unit(15.66, "feet"),
  21363. default: true
  21364. },
  21365. ]
  21366. ))
  21367. characterMakers.push(() => makeCharacter(
  21368. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21369. {
  21370. front: {
  21371. height: math.unit(8, "feet"),
  21372. weight: math.unit(325, "lb"),
  21373. name: "Front",
  21374. image: {
  21375. source: "./media/characters/windera/front.svg",
  21376. extra: 3180 / 2845,
  21377. bottom: 178 / 3365
  21378. }
  21379. },
  21380. },
  21381. [
  21382. {
  21383. name: "Normal",
  21384. height: math.unit(8, "feet"),
  21385. default: true
  21386. },
  21387. ]
  21388. ))
  21389. characterMakers.push(() => makeCharacter(
  21390. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21391. {
  21392. front: {
  21393. height: math.unit(28.75, "feet"),
  21394. weight: math.unit(2000, "kg"),
  21395. name: "Front",
  21396. image: {
  21397. source: "./media/characters/sonear/front.svg",
  21398. extra: 1041.1 / 964.9,
  21399. bottom: 53.7 / 1096.6
  21400. }
  21401. },
  21402. },
  21403. [
  21404. {
  21405. name: "Normal",
  21406. height: math.unit(28.75, "feet"),
  21407. default: true
  21408. },
  21409. ]
  21410. ))
  21411. characterMakers.push(() => makeCharacter(
  21412. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21413. {
  21414. side: {
  21415. height: math.unit(25.5, "feet"),
  21416. weight: math.unit(23000, "kg"),
  21417. name: "Side",
  21418. image: {
  21419. source: "./media/characters/kanara/side.svg"
  21420. }
  21421. },
  21422. },
  21423. [
  21424. {
  21425. name: "Normal",
  21426. height: math.unit(25.5, "feet"),
  21427. default: true
  21428. },
  21429. ]
  21430. ))
  21431. characterMakers.push(() => makeCharacter(
  21432. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21433. {
  21434. side: {
  21435. height: math.unit(10, "feet"),
  21436. weight: math.unit(1000, "kg"),
  21437. name: "Side",
  21438. image: {
  21439. source: "./media/characters/ereus/side.svg",
  21440. extra: 1157 / 959,
  21441. bottom: 153 / 1312.5
  21442. }
  21443. },
  21444. },
  21445. [
  21446. {
  21447. name: "Normal",
  21448. height: math.unit(10, "feet"),
  21449. default: true
  21450. },
  21451. ]
  21452. ))
  21453. characterMakers.push(() => makeCharacter(
  21454. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21455. {
  21456. side: {
  21457. height: math.unit(4.5, "feet"),
  21458. weight: math.unit(500, "lb"),
  21459. name: "Side",
  21460. image: {
  21461. source: "./media/characters/e-ter/side.svg",
  21462. extra: 1550 / 1248,
  21463. bottom: 146 / 1694
  21464. }
  21465. },
  21466. },
  21467. [
  21468. {
  21469. name: "Normal",
  21470. height: math.unit(4.5, "feet"),
  21471. default: true
  21472. },
  21473. ]
  21474. ))
  21475. characterMakers.push(() => makeCharacter(
  21476. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21477. {
  21478. side: {
  21479. height: math.unit(9.7, "feet"),
  21480. weight: math.unit(4000, "kg"),
  21481. name: "Side",
  21482. image: {
  21483. source: "./media/characters/yamie/side.svg"
  21484. }
  21485. },
  21486. },
  21487. [
  21488. {
  21489. name: "Normal",
  21490. height: math.unit(9.7, "feet"),
  21491. default: true
  21492. },
  21493. ]
  21494. ))
  21495. characterMakers.push(() => makeCharacter(
  21496. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21497. {
  21498. front: {
  21499. height: math.unit(50, "feet"),
  21500. weight: math.unit(50000, "kg"),
  21501. name: "Front",
  21502. image: {
  21503. source: "./media/characters/anders/front.svg",
  21504. extra: 570 / 539,
  21505. bottom: 14.7 / 586.7
  21506. }
  21507. },
  21508. },
  21509. [
  21510. {
  21511. name: "Large",
  21512. height: math.unit(50, "feet")
  21513. },
  21514. {
  21515. name: "Macro",
  21516. height: math.unit(2000, "feet"),
  21517. default: true
  21518. },
  21519. {
  21520. name: "Megamacro",
  21521. height: math.unit(12, "miles")
  21522. },
  21523. ]
  21524. ))
  21525. characterMakers.push(() => makeCharacter(
  21526. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21527. {
  21528. front: {
  21529. height: math.unit(7 + 2 / 12, "feet"),
  21530. weight: math.unit(300, "lb"),
  21531. name: "Front",
  21532. image: {
  21533. source: "./media/characters/reban/front.svg",
  21534. extra: 516 / 487,
  21535. bottom: 42.82 / 558.356
  21536. }
  21537. },
  21538. dick: {
  21539. height: math.unit(7 / 5, "feet"),
  21540. name: "Dick",
  21541. image: {
  21542. source: "./media/characters/reban/dick.svg"
  21543. }
  21544. },
  21545. },
  21546. [
  21547. {
  21548. name: "Natural Height",
  21549. height: math.unit(7 + 2 / 12, "feet")
  21550. },
  21551. {
  21552. name: "Macro",
  21553. height: math.unit(500, "feet"),
  21554. default: true
  21555. },
  21556. {
  21557. name: "Canon Height",
  21558. height: math.unit(50, "AU")
  21559. },
  21560. ]
  21561. ))
  21562. characterMakers.push(() => makeCharacter(
  21563. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21564. {
  21565. front: {
  21566. height: math.unit(6, "feet"),
  21567. weight: math.unit(150, "lb"),
  21568. name: "Front",
  21569. image: {
  21570. source: "./media/characters/terrance-keayes/front.svg",
  21571. extra: 1.005,
  21572. bottom: 151 / 1615
  21573. }
  21574. },
  21575. side: {
  21576. height: math.unit(6, "feet"),
  21577. weight: math.unit(150, "lb"),
  21578. name: "Side",
  21579. image: {
  21580. source: "./media/characters/terrance-keayes/side.svg",
  21581. extra: 1.005,
  21582. bottom: 129.4 / 1544
  21583. }
  21584. },
  21585. back: {
  21586. height: math.unit(6, "feet"),
  21587. weight: math.unit(150, "lb"),
  21588. name: "Back",
  21589. image: {
  21590. source: "./media/characters/terrance-keayes/back.svg",
  21591. extra: 1.005,
  21592. bottom: 58.4 / 1557.3
  21593. }
  21594. },
  21595. dick: {
  21596. height: math.unit(6 * 0.208, "feet"),
  21597. name: "Dick",
  21598. image: {
  21599. source: "./media/characters/terrance-keayes/dick.svg"
  21600. }
  21601. },
  21602. },
  21603. [
  21604. {
  21605. name: "Canon Height",
  21606. height: math.unit(35, "miles"),
  21607. default: true
  21608. },
  21609. ]
  21610. ))
  21611. characterMakers.push(() => makeCharacter(
  21612. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21613. {
  21614. front: {
  21615. height: math.unit(6, "feet"),
  21616. weight: math.unit(150, "lb"),
  21617. name: "Front",
  21618. image: {
  21619. source: "./media/characters/ofelia/front.svg",
  21620. extra: 546 / 541,
  21621. bottom: 39 / 583
  21622. }
  21623. },
  21624. back: {
  21625. height: math.unit(6, "feet"),
  21626. weight: math.unit(150, "lb"),
  21627. name: "Back",
  21628. image: {
  21629. source: "./media/characters/ofelia/back.svg",
  21630. extra: 564 / 559.5,
  21631. bottom: 8.69 / 573.02
  21632. }
  21633. },
  21634. maw: {
  21635. height: math.unit(1, "feet"),
  21636. name: "Maw",
  21637. image: {
  21638. source: "./media/characters/ofelia/maw.svg"
  21639. }
  21640. },
  21641. foot: {
  21642. height: math.unit(1.949, "feet"),
  21643. name: "Foot",
  21644. image: {
  21645. source: "./media/characters/ofelia/foot.svg"
  21646. }
  21647. },
  21648. },
  21649. [
  21650. {
  21651. name: "Canon Height",
  21652. height: math.unit(2000, "miles"),
  21653. default: true
  21654. },
  21655. ]
  21656. ))
  21657. characterMakers.push(() => makeCharacter(
  21658. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21659. {
  21660. front: {
  21661. height: math.unit(6, "feet"),
  21662. weight: math.unit(150, "lb"),
  21663. name: "Front",
  21664. image: {
  21665. source: "./media/characters/samuel/front.svg",
  21666. extra: 265 / 258,
  21667. bottom: 2 / 266.1566
  21668. }
  21669. },
  21670. },
  21671. [
  21672. {
  21673. name: "Macro",
  21674. height: math.unit(100, "feet"),
  21675. default: true
  21676. },
  21677. {
  21678. name: "Full Size",
  21679. height: math.unit(1000, "miles")
  21680. },
  21681. ]
  21682. ))
  21683. characterMakers.push(() => makeCharacter(
  21684. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21685. {
  21686. front: {
  21687. height: math.unit(6, "feet"),
  21688. weight: math.unit(300, "lb"),
  21689. name: "Front",
  21690. image: {
  21691. source: "./media/characters/beishir-kiel/front.svg",
  21692. extra: 569 / 547,
  21693. bottom: 41.9 / 609
  21694. }
  21695. },
  21696. maw: {
  21697. height: math.unit(6 * 0.202, "feet"),
  21698. name: "Maw",
  21699. image: {
  21700. source: "./media/characters/beishir-kiel/maw.svg"
  21701. }
  21702. },
  21703. },
  21704. [
  21705. {
  21706. name: "Macro",
  21707. height: math.unit(300, "feet"),
  21708. default: true
  21709. },
  21710. ]
  21711. ))
  21712. characterMakers.push(() => makeCharacter(
  21713. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21714. {
  21715. front: {
  21716. height: math.unit(5 + 8 / 12, "feet"),
  21717. weight: math.unit(120, "lb"),
  21718. name: "Front",
  21719. image: {
  21720. source: "./media/characters/logan-grey/front.svg",
  21721. extra: 2539 / 2393,
  21722. bottom: 97.6 / 2636.37
  21723. }
  21724. },
  21725. frontAlt: {
  21726. height: math.unit(5 + 8 / 12, "feet"),
  21727. weight: math.unit(120, "lb"),
  21728. name: "Front (Alt)",
  21729. image: {
  21730. source: "./media/characters/logan-grey/front-alt.svg",
  21731. extra: 958 / 893,
  21732. bottom: 15 / 970.768
  21733. }
  21734. },
  21735. back: {
  21736. height: math.unit(5 + 8 / 12, "feet"),
  21737. weight: math.unit(120, "lb"),
  21738. name: "Back",
  21739. image: {
  21740. source: "./media/characters/logan-grey/back.svg",
  21741. extra: 958 / 893,
  21742. bottom: 2.1881 / 970.9788
  21743. }
  21744. },
  21745. dick: {
  21746. height: math.unit(1.437, "feet"),
  21747. name: "Dick",
  21748. image: {
  21749. source: "./media/characters/logan-grey/dick.svg"
  21750. }
  21751. },
  21752. },
  21753. [
  21754. {
  21755. name: "Normal",
  21756. height: math.unit(5 + 8 / 12, "feet")
  21757. },
  21758. {
  21759. name: "The 500 Foot Femboy",
  21760. height: math.unit(500, "feet"),
  21761. default: true
  21762. },
  21763. {
  21764. name: "Megmacro",
  21765. height: math.unit(20, "miles")
  21766. },
  21767. ]
  21768. ))
  21769. characterMakers.push(() => makeCharacter(
  21770. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21771. {
  21772. front: {
  21773. height: math.unit(8 + 2 / 12, "feet"),
  21774. weight: math.unit(275, "lb"),
  21775. name: "Front",
  21776. image: {
  21777. source: "./media/characters/draganta/front.svg",
  21778. extra: 1177 / 1135,
  21779. bottom: 33.46 / 1212.1
  21780. }
  21781. },
  21782. },
  21783. [
  21784. {
  21785. name: "Normal",
  21786. height: math.unit(8 + 6 / 12, "feet"),
  21787. default: true
  21788. },
  21789. {
  21790. name: "Macro",
  21791. height: math.unit(150, "feet")
  21792. },
  21793. {
  21794. name: "Megamacro",
  21795. height: math.unit(1000, "miles")
  21796. },
  21797. ]
  21798. ))
  21799. characterMakers.push(() => makeCharacter(
  21800. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21801. {
  21802. front: {
  21803. height: math.unit(1.72, "m"),
  21804. weight: math.unit(80, "lb"),
  21805. name: "Front",
  21806. image: {
  21807. source: "./media/characters/voski/front.svg",
  21808. extra: 2076.22 / 2022.4,
  21809. bottom: 102.7 / 2177.3866
  21810. }
  21811. },
  21812. frontNsfw: {
  21813. height: math.unit(1.72, "m"),
  21814. weight: math.unit(80, "lb"),
  21815. name: "Front (NSFW)",
  21816. image: {
  21817. source: "./media/characters/voski/front-nsfw.svg",
  21818. extra: 2076.22 / 2022.4,
  21819. bottom: 102.7 / 2177.3866
  21820. }
  21821. },
  21822. back: {
  21823. height: math.unit(1.72, "m"),
  21824. weight: math.unit(80, "lb"),
  21825. name: "Back",
  21826. image: {
  21827. source: "./media/characters/voski/back.svg",
  21828. extra: 2104 / 2051,
  21829. bottom: 10.45 / 2113.63
  21830. }
  21831. },
  21832. },
  21833. [
  21834. {
  21835. name: "Normal",
  21836. height: math.unit(1.72, "m")
  21837. },
  21838. {
  21839. name: "Macro",
  21840. height: math.unit(55, "m"),
  21841. default: true
  21842. },
  21843. {
  21844. name: "Macro+",
  21845. height: math.unit(300, "m")
  21846. },
  21847. {
  21848. name: "Macro++",
  21849. height: math.unit(700, "m")
  21850. },
  21851. {
  21852. name: "Macro+++",
  21853. height: math.unit(4500, "m")
  21854. },
  21855. {
  21856. name: "Macro++++",
  21857. height: math.unit(45, "km")
  21858. },
  21859. {
  21860. name: "Macro+++++",
  21861. height: math.unit(1220, "km")
  21862. },
  21863. ]
  21864. ))
  21865. characterMakers.push(() => makeCharacter(
  21866. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21867. {
  21868. front: {
  21869. height: math.unit(2.3, "m"),
  21870. weight: math.unit(304, "kg"),
  21871. name: "Front",
  21872. image: {
  21873. source: "./media/characters/icowom-lee/front.svg",
  21874. extra: 985 / 955,
  21875. bottom: 25.4 / 1012
  21876. }
  21877. },
  21878. fronttentacles: {
  21879. height: math.unit(2.3, "m"),
  21880. weight: math.unit(304, "kg"),
  21881. name: "Front-tentacles",
  21882. image: {
  21883. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21884. extra: 985 / 955,
  21885. bottom: 25.4 / 1012
  21886. }
  21887. },
  21888. back: {
  21889. height: math.unit(2.3, "m"),
  21890. weight: math.unit(304, "kg"),
  21891. name: "Back",
  21892. image: {
  21893. source: "./media/characters/icowom-lee/back.svg",
  21894. extra: 975 / 954,
  21895. bottom: 9.5 / 985
  21896. }
  21897. },
  21898. backtentacles: {
  21899. height: math.unit(2.3, "m"),
  21900. weight: math.unit(304, "kg"),
  21901. name: "Back-tentacles",
  21902. image: {
  21903. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21904. extra: 975 / 954,
  21905. bottom: 9.5 / 985
  21906. }
  21907. },
  21908. frontDressed: {
  21909. height: math.unit(2.3, "m"),
  21910. weight: math.unit(304, "kg"),
  21911. name: "Front (Dressed)",
  21912. image: {
  21913. source: "./media/characters/icowom-lee/front-dressed.svg",
  21914. extra: 3076 / 2933,
  21915. bottom: 51.4 / 3125.1889
  21916. }
  21917. },
  21918. rump: {
  21919. height: math.unit(0.776, "meters"),
  21920. name: "Rump",
  21921. image: {
  21922. source: "./media/characters/icowom-lee/rump.svg"
  21923. }
  21924. },
  21925. genitals: {
  21926. height: math.unit(0.78, "meters"),
  21927. name: "Genitals",
  21928. image: {
  21929. source: "./media/characters/icowom-lee/genitals.svg"
  21930. }
  21931. },
  21932. },
  21933. [
  21934. {
  21935. name: "Normal",
  21936. height: math.unit(2.3, "meters"),
  21937. default: true
  21938. },
  21939. {
  21940. name: "Macro",
  21941. height: math.unit(94, "meters"),
  21942. default: true
  21943. },
  21944. ]
  21945. ))
  21946. characterMakers.push(() => makeCharacter(
  21947. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21948. {
  21949. front: {
  21950. height: math.unit(22, "meters"),
  21951. weight: math.unit(21000, "kg"),
  21952. name: "Front",
  21953. image: {
  21954. source: "./media/characters/shock-diamond/front.svg",
  21955. extra: 2204 / 2053,
  21956. bottom: 65 / 2239.47
  21957. }
  21958. },
  21959. frontNude: {
  21960. height: math.unit(22, "meters"),
  21961. weight: math.unit(21000, "kg"),
  21962. name: "Front (Nude)",
  21963. image: {
  21964. source: "./media/characters/shock-diamond/front-nude.svg",
  21965. extra: 2514 / 2285,
  21966. bottom: 13 / 2527.56
  21967. }
  21968. },
  21969. },
  21970. [
  21971. {
  21972. name: "Normal",
  21973. height: math.unit(3, "meters")
  21974. },
  21975. {
  21976. name: "Macro",
  21977. height: math.unit(22, "meters"),
  21978. default: true
  21979. },
  21980. ]
  21981. ))
  21982. characterMakers.push(() => makeCharacter(
  21983. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21984. {
  21985. front: {
  21986. height: math.unit(5 + 4 / 12, "feet"),
  21987. weight: math.unit(120, "lb"),
  21988. name: "Front",
  21989. image: {
  21990. source: "./media/characters/rory/front.svg",
  21991. extra: 589 / 556,
  21992. bottom: 45.7 / 635.76
  21993. }
  21994. },
  21995. frontNude: {
  21996. height: math.unit(5 + 4 / 12, "feet"),
  21997. weight: math.unit(120, "lb"),
  21998. name: "Front (Nude)",
  21999. image: {
  22000. source: "./media/characters/rory/front-nude.svg",
  22001. extra: 589 / 556,
  22002. bottom: 45.7 / 635.76
  22003. }
  22004. },
  22005. side: {
  22006. height: math.unit(5 + 4 / 12, "feet"),
  22007. weight: math.unit(120, "lb"),
  22008. name: "Side",
  22009. image: {
  22010. source: "./media/characters/rory/side.svg",
  22011. extra: 597 / 564,
  22012. bottom: 55 / 653
  22013. }
  22014. },
  22015. back: {
  22016. height: math.unit(5 + 4 / 12, "feet"),
  22017. weight: math.unit(120, "lb"),
  22018. name: "Back",
  22019. image: {
  22020. source: "./media/characters/rory/back.svg",
  22021. extra: 620 / 585,
  22022. bottom: 8.86 / 630.43
  22023. }
  22024. },
  22025. dick: {
  22026. height: math.unit(0.86, "feet"),
  22027. name: "Dick",
  22028. image: {
  22029. source: "./media/characters/rory/dick.svg"
  22030. }
  22031. },
  22032. },
  22033. [
  22034. {
  22035. name: "Normal",
  22036. height: math.unit(5 + 4 / 12, "feet"),
  22037. default: true
  22038. },
  22039. {
  22040. name: "Macro",
  22041. height: math.unit(100, "feet")
  22042. },
  22043. {
  22044. name: "Macro+",
  22045. height: math.unit(140, "feet")
  22046. },
  22047. {
  22048. name: "Macro++",
  22049. height: math.unit(300, "feet")
  22050. },
  22051. ]
  22052. ))
  22053. characterMakers.push(() => makeCharacter(
  22054. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22055. {
  22056. front: {
  22057. height: math.unit(5 + 9 / 12, "feet"),
  22058. weight: math.unit(190, "lb"),
  22059. name: "Front",
  22060. image: {
  22061. source: "./media/characters/sprisk/front.svg",
  22062. extra: 1225 / 1180,
  22063. bottom: 42.7 / 1266.4
  22064. }
  22065. },
  22066. frontNsfw: {
  22067. height: math.unit(5 + 9 / 12, "feet"),
  22068. weight: math.unit(190, "lb"),
  22069. name: "Front (NSFW)",
  22070. image: {
  22071. source: "./media/characters/sprisk/front-nsfw.svg",
  22072. extra: 1225 / 1180,
  22073. bottom: 42.7 / 1266.4
  22074. }
  22075. },
  22076. back: {
  22077. height: math.unit(5 + 9 / 12, "feet"),
  22078. weight: math.unit(190, "lb"),
  22079. name: "Back",
  22080. image: {
  22081. source: "./media/characters/sprisk/back.svg",
  22082. extra: 1247 / 1200,
  22083. bottom: 5.6 / 1253.04
  22084. }
  22085. },
  22086. },
  22087. [
  22088. {
  22089. name: "Tiny",
  22090. height: math.unit(2, "inches")
  22091. },
  22092. {
  22093. name: "Normal",
  22094. height: math.unit(5 + 9 / 12, "feet"),
  22095. default: true
  22096. },
  22097. {
  22098. name: "Mini Macro",
  22099. height: math.unit(18, "feet")
  22100. },
  22101. {
  22102. name: "Macro",
  22103. height: math.unit(100, "feet")
  22104. },
  22105. {
  22106. name: "MACRO",
  22107. height: math.unit(50, "miles")
  22108. },
  22109. {
  22110. name: "M A C R O",
  22111. height: math.unit(300, "miles")
  22112. },
  22113. ]
  22114. ))
  22115. characterMakers.push(() => makeCharacter(
  22116. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22117. {
  22118. side: {
  22119. height: math.unit(15.6, "meters"),
  22120. weight: math.unit(700000, "kg"),
  22121. name: "Side",
  22122. image: {
  22123. source: "./media/characters/bunsen/side.svg",
  22124. extra: 1644 / 358
  22125. }
  22126. },
  22127. foot: {
  22128. height: math.unit(1.611 * 1644 / 358, "meter"),
  22129. name: "Foot",
  22130. image: {
  22131. source: "./media/characters/bunsen/foot.svg"
  22132. }
  22133. },
  22134. },
  22135. [
  22136. {
  22137. name: "Small",
  22138. height: math.unit(10, "feet")
  22139. },
  22140. {
  22141. name: "Normal",
  22142. height: math.unit(15.6, "meters"),
  22143. default: true
  22144. },
  22145. ]
  22146. ))
  22147. characterMakers.push(() => makeCharacter(
  22148. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22149. {
  22150. front: {
  22151. height: math.unit(4 + 11 / 12, "feet"),
  22152. weight: math.unit(140, "lb"),
  22153. name: "Front",
  22154. image: {
  22155. source: "./media/characters/sesh/front.svg",
  22156. extra: 3420 / 3231,
  22157. bottom: 72 / 3949.5
  22158. }
  22159. },
  22160. },
  22161. [
  22162. {
  22163. name: "Normal",
  22164. height: math.unit(4 + 11 / 12, "feet")
  22165. },
  22166. {
  22167. name: "Grown",
  22168. height: math.unit(15, "feet"),
  22169. default: true
  22170. },
  22171. {
  22172. name: "Macro",
  22173. height: math.unit(1500, "feet")
  22174. },
  22175. {
  22176. name: "Megamacro",
  22177. height: math.unit(30, "miles")
  22178. },
  22179. {
  22180. name: "Continental",
  22181. height: math.unit(3000, "miles")
  22182. },
  22183. {
  22184. name: "Gravity Mass",
  22185. height: math.unit(300000, "miles")
  22186. },
  22187. {
  22188. name: "Planet Buster",
  22189. height: math.unit(30000000, "miles")
  22190. },
  22191. {
  22192. name: "Big",
  22193. height: math.unit(3000000000, "miles")
  22194. },
  22195. ]
  22196. ))
  22197. characterMakers.push(() => makeCharacter(
  22198. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22199. {
  22200. front: {
  22201. height: math.unit(9, "feet"),
  22202. weight: math.unit(350, "lb"),
  22203. name: "Front",
  22204. image: {
  22205. source: "./media/characters/pepper/front.svg",
  22206. extra: 1448 / 1312,
  22207. bottom: 9.4 / 1457.88
  22208. }
  22209. },
  22210. back: {
  22211. height: math.unit(9, "feet"),
  22212. weight: math.unit(350, "lb"),
  22213. name: "Back",
  22214. image: {
  22215. source: "./media/characters/pepper/back.svg",
  22216. extra: 1423 / 1300,
  22217. bottom: 4.6 / 1429
  22218. }
  22219. },
  22220. maw: {
  22221. height: math.unit(0.932, "feet"),
  22222. name: "Maw",
  22223. image: {
  22224. source: "./media/characters/pepper/maw.svg"
  22225. }
  22226. },
  22227. },
  22228. [
  22229. {
  22230. name: "Normal",
  22231. height: math.unit(9, "feet"),
  22232. default: true
  22233. },
  22234. ]
  22235. ))
  22236. characterMakers.push(() => makeCharacter(
  22237. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22238. {
  22239. front: {
  22240. height: math.unit(6, "feet"),
  22241. weight: math.unit(150, "lb"),
  22242. name: "Front",
  22243. image: {
  22244. source: "./media/characters/maelstrom/front.svg",
  22245. extra: 2100 / 1883,
  22246. bottom: 94 / 2196.7
  22247. }
  22248. },
  22249. },
  22250. [
  22251. {
  22252. name: "Less Kaiju",
  22253. height: math.unit(200, "feet")
  22254. },
  22255. {
  22256. name: "Kaiju",
  22257. height: math.unit(400, "feet"),
  22258. default: true
  22259. },
  22260. {
  22261. name: "Kaiju-er",
  22262. height: math.unit(600, "feet")
  22263. },
  22264. ]
  22265. ))
  22266. characterMakers.push(() => makeCharacter(
  22267. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22268. {
  22269. front: {
  22270. height: math.unit(6 + 5 / 12, "feet"),
  22271. weight: math.unit(180, "lb"),
  22272. name: "Front",
  22273. image: {
  22274. source: "./media/characters/lexir/front.svg",
  22275. extra: 180 / 172,
  22276. bottom: 12 / 192
  22277. }
  22278. },
  22279. back: {
  22280. height: math.unit(6 + 5 / 12, "feet"),
  22281. weight: math.unit(180, "lb"),
  22282. name: "Back",
  22283. image: {
  22284. source: "./media/characters/lexir/back.svg",
  22285. extra: 183.84 / 175.5,
  22286. bottom: 3.1 / 187
  22287. }
  22288. },
  22289. },
  22290. [
  22291. {
  22292. name: "Very Smal",
  22293. height: math.unit(1, "nm")
  22294. },
  22295. {
  22296. name: "Normal",
  22297. height: math.unit(6 + 5 / 12, "feet"),
  22298. default: true
  22299. },
  22300. {
  22301. name: "Macro",
  22302. height: math.unit(1, "mile")
  22303. },
  22304. {
  22305. name: "Megamacro",
  22306. height: math.unit(50, "miles")
  22307. },
  22308. ]
  22309. ))
  22310. characterMakers.push(() => makeCharacter(
  22311. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22312. {
  22313. front: {
  22314. height: math.unit(1.5, "meters"),
  22315. weight: math.unit(100, "lb"),
  22316. name: "Front",
  22317. image: {
  22318. source: "./media/characters/maksio/front.svg",
  22319. extra: 1549 / 1531,
  22320. bottom: 123.7 / 1674.5429
  22321. }
  22322. },
  22323. back: {
  22324. height: math.unit(1.5, "meters"),
  22325. weight: math.unit(100, "lb"),
  22326. name: "Back",
  22327. image: {
  22328. source: "./media/characters/maksio/back.svg",
  22329. extra: 1541 / 1509,
  22330. bottom: 97 / 1639
  22331. }
  22332. },
  22333. hand: {
  22334. height: math.unit(0.621, "feet"),
  22335. name: "Hand",
  22336. image: {
  22337. source: "./media/characters/maksio/hand.svg"
  22338. }
  22339. },
  22340. foot: {
  22341. height: math.unit(1.611, "feet"),
  22342. name: "Foot",
  22343. image: {
  22344. source: "./media/characters/maksio/foot.svg"
  22345. }
  22346. },
  22347. },
  22348. [
  22349. {
  22350. name: "Shrunken",
  22351. height: math.unit(10, "cm")
  22352. },
  22353. {
  22354. name: "Normal",
  22355. height: math.unit(150, "cm"),
  22356. default: true
  22357. },
  22358. ]
  22359. ))
  22360. characterMakers.push(() => makeCharacter(
  22361. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22362. {
  22363. front: {
  22364. height: math.unit(100, "feet"),
  22365. name: "Front",
  22366. image: {
  22367. source: "./media/characters/erza-bear/front.svg",
  22368. extra: 2449 / 2390,
  22369. bottom: 46 / 2494
  22370. }
  22371. },
  22372. back: {
  22373. height: math.unit(100, "feet"),
  22374. name: "Back",
  22375. image: {
  22376. source: "./media/characters/erza-bear/back.svg",
  22377. extra: 2489 / 2430,
  22378. bottom: 85.4 / 2480
  22379. }
  22380. },
  22381. tail: {
  22382. height: math.unit(42, "feet"),
  22383. name: "Tail",
  22384. image: {
  22385. source: "./media/characters/erza-bear/tail.svg"
  22386. }
  22387. },
  22388. tongue: {
  22389. height: math.unit(8, "feet"),
  22390. name: "Tongue",
  22391. image: {
  22392. source: "./media/characters/erza-bear/tongue.svg"
  22393. }
  22394. },
  22395. dick: {
  22396. height: math.unit(10.5, "feet"),
  22397. name: "Dick",
  22398. image: {
  22399. source: "./media/characters/erza-bear/dick.svg"
  22400. }
  22401. },
  22402. dickVertical: {
  22403. height: math.unit(16.9, "feet"),
  22404. name: "Dick (Vertical)",
  22405. image: {
  22406. source: "./media/characters/erza-bear/dick-vertical.svg"
  22407. }
  22408. },
  22409. },
  22410. [
  22411. {
  22412. name: "Macro",
  22413. height: math.unit(100, "feet"),
  22414. default: true
  22415. },
  22416. ]
  22417. ))
  22418. characterMakers.push(() => makeCharacter(
  22419. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22420. {
  22421. front: {
  22422. height: math.unit(172, "cm"),
  22423. weight: math.unit(73, "kg"),
  22424. name: "Front",
  22425. image: {
  22426. source: "./media/characters/violet-flor/front.svg",
  22427. extra: 1530 / 1442,
  22428. bottom: 61.9 / 1588.8
  22429. }
  22430. },
  22431. back: {
  22432. height: math.unit(180, "cm"),
  22433. weight: math.unit(73, "kg"),
  22434. name: "Back",
  22435. image: {
  22436. source: "./media/characters/violet-flor/back.svg",
  22437. extra: 1692 / 1630,
  22438. bottom: 20 / 1712
  22439. }
  22440. },
  22441. },
  22442. [
  22443. {
  22444. name: "Normal",
  22445. height: math.unit(172, "cm"),
  22446. default: true
  22447. },
  22448. ]
  22449. ))
  22450. characterMakers.push(() => makeCharacter(
  22451. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22452. {
  22453. front: {
  22454. height: math.unit(6, "feet"),
  22455. weight: math.unit(220, "lb"),
  22456. name: "Front",
  22457. image: {
  22458. source: "./media/characters/lynn-rhea/front.svg",
  22459. extra: 310 / 273
  22460. }
  22461. },
  22462. back: {
  22463. height: math.unit(6, "feet"),
  22464. weight: math.unit(220, "lb"),
  22465. name: "Back",
  22466. image: {
  22467. source: "./media/characters/lynn-rhea/back.svg",
  22468. extra: 310 / 273
  22469. }
  22470. },
  22471. dicks: {
  22472. height: math.unit(0.9, "feet"),
  22473. name: "Dicks",
  22474. image: {
  22475. source: "./media/characters/lynn-rhea/dicks.svg"
  22476. }
  22477. },
  22478. slit: {
  22479. height: math.unit(0.4, "feet"),
  22480. name: "Slit",
  22481. image: {
  22482. source: "./media/characters/lynn-rhea/slit.svg"
  22483. }
  22484. },
  22485. },
  22486. [
  22487. {
  22488. name: "Micro",
  22489. height: math.unit(1, "inch")
  22490. },
  22491. {
  22492. name: "Macro",
  22493. height: math.unit(60, "feet"),
  22494. default: true
  22495. },
  22496. {
  22497. name: "Megamacro",
  22498. height: math.unit(2, "miles")
  22499. },
  22500. {
  22501. name: "Gigamacro",
  22502. height: math.unit(3, "earths")
  22503. },
  22504. {
  22505. name: "Galactic",
  22506. height: math.unit(0.8, "galaxies")
  22507. },
  22508. ]
  22509. ))
  22510. characterMakers.push(() => makeCharacter(
  22511. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22512. {
  22513. front: {
  22514. height: math.unit(1600, "feet"),
  22515. weight: math.unit(85758785169, "kg"),
  22516. name: "Front",
  22517. image: {
  22518. source: "./media/characters/valathos/front.svg",
  22519. extra: 1451 / 1339
  22520. }
  22521. },
  22522. },
  22523. [
  22524. {
  22525. name: "Macro",
  22526. height: math.unit(1600, "feet"),
  22527. default: true
  22528. },
  22529. ]
  22530. ))
  22531. characterMakers.push(() => makeCharacter(
  22532. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22533. {
  22534. front: {
  22535. height: math.unit(7 + 5 / 12, "feet"),
  22536. weight: math.unit(300, "lb"),
  22537. name: "Front",
  22538. image: {
  22539. source: "./media/characters/azula/front.svg",
  22540. extra: 3208 / 2880,
  22541. bottom: 80.2 / 3277
  22542. }
  22543. },
  22544. back: {
  22545. height: math.unit(7 + 5 / 12, "feet"),
  22546. weight: math.unit(300, "lb"),
  22547. name: "Back",
  22548. image: {
  22549. source: "./media/characters/azula/back.svg",
  22550. extra: 3169 / 2822,
  22551. bottom: 150.6 / 3321
  22552. }
  22553. },
  22554. },
  22555. [
  22556. {
  22557. name: "Normal",
  22558. height: math.unit(7 + 5 / 12, "feet"),
  22559. default: true
  22560. },
  22561. {
  22562. name: "Big",
  22563. height: math.unit(20, "feet")
  22564. },
  22565. ]
  22566. ))
  22567. characterMakers.push(() => makeCharacter(
  22568. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22569. {
  22570. front: {
  22571. height: math.unit(5 + 1 / 12, "feet"),
  22572. weight: math.unit(110, "lb"),
  22573. name: "Front",
  22574. image: {
  22575. source: "./media/characters/rupert/front.svg",
  22576. extra: 1549 / 1495,
  22577. bottom: 54.2 / 1604.4
  22578. }
  22579. },
  22580. },
  22581. [
  22582. {
  22583. name: "Normal",
  22584. height: math.unit(5 + 1 / 12, "feet"),
  22585. default: true
  22586. },
  22587. ]
  22588. ))
  22589. characterMakers.push(() => makeCharacter(
  22590. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22591. {
  22592. front: {
  22593. height: math.unit(8 + 4 / 12, "feet"),
  22594. weight: math.unit(350, "lb"),
  22595. name: "Front",
  22596. image: {
  22597. source: "./media/characters/sheera-castellar/front.svg",
  22598. extra: 1957 / 1894,
  22599. bottom: 26.97 / 1975.017
  22600. }
  22601. },
  22602. side: {
  22603. height: math.unit(8 + 4 / 12, "feet"),
  22604. weight: math.unit(350, "lb"),
  22605. name: "Side",
  22606. image: {
  22607. source: "./media/characters/sheera-castellar/side.svg",
  22608. extra: 1957 / 1894
  22609. }
  22610. },
  22611. back: {
  22612. height: math.unit(8 + 4 / 12, "feet"),
  22613. weight: math.unit(350, "lb"),
  22614. name: "Back",
  22615. image: {
  22616. source: "./media/characters/sheera-castellar/back.svg",
  22617. extra: 1957 / 1894
  22618. }
  22619. },
  22620. angled: {
  22621. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22622. weight: math.unit(350, "lb"),
  22623. name: "Angled",
  22624. image: {
  22625. source: "./media/characters/sheera-castellar/angled.svg",
  22626. extra: 1807 / 1707,
  22627. bottom: 68 / 1875
  22628. }
  22629. },
  22630. genitals: {
  22631. height: math.unit(2.2, "feet"),
  22632. name: "Genitals",
  22633. image: {
  22634. source: "./media/characters/sheera-castellar/genitals.svg"
  22635. }
  22636. },
  22637. },
  22638. [
  22639. {
  22640. name: "Normal",
  22641. height: math.unit(8 + 4 / 12, "feet")
  22642. },
  22643. {
  22644. name: "Macro",
  22645. height: math.unit(150, "feet"),
  22646. default: true
  22647. },
  22648. {
  22649. name: "Macro+",
  22650. height: math.unit(800, "feet")
  22651. },
  22652. ]
  22653. ))
  22654. characterMakers.push(() => makeCharacter(
  22655. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22656. {
  22657. front: {
  22658. height: math.unit(6, "feet"),
  22659. weight: math.unit(150, "lb"),
  22660. name: "Front",
  22661. image: {
  22662. source: "./media/characters/jaipur/front.svg",
  22663. extra: 3860 / 3731,
  22664. bottom: 287 / 4140
  22665. }
  22666. },
  22667. back: {
  22668. height: math.unit(6, "feet"),
  22669. weight: math.unit(150, "lb"),
  22670. name: "Back",
  22671. image: {
  22672. source: "./media/characters/jaipur/back.svg",
  22673. extra: 4060 / 3930,
  22674. bottom: 151 / 4200
  22675. }
  22676. },
  22677. },
  22678. [
  22679. {
  22680. name: "Normal",
  22681. height: math.unit(1.85, "meters"),
  22682. default: true
  22683. },
  22684. {
  22685. name: "Macro",
  22686. height: math.unit(150, "meters")
  22687. },
  22688. {
  22689. name: "Macro+",
  22690. height: math.unit(0.5, "miles")
  22691. },
  22692. {
  22693. name: "Macro++",
  22694. height: math.unit(2.5, "miles")
  22695. },
  22696. {
  22697. name: "Macro+++",
  22698. height: math.unit(12, "miles")
  22699. },
  22700. {
  22701. name: "Macro++++",
  22702. height: math.unit(120, "miles")
  22703. },
  22704. {
  22705. name: "Macro+++++",
  22706. height: math.unit(1200, "miles")
  22707. },
  22708. ]
  22709. ))
  22710. characterMakers.push(() => makeCharacter(
  22711. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22712. {
  22713. front: {
  22714. height: math.unit(6, "feet"),
  22715. weight: math.unit(150, "lb"),
  22716. name: "Front",
  22717. image: {
  22718. source: "./media/characters/sheila-wolf/front.svg",
  22719. extra: 1931 / 1808,
  22720. bottom: 29.5 / 1960
  22721. }
  22722. },
  22723. dick: {
  22724. height: math.unit(1.464, "feet"),
  22725. name: "Dick",
  22726. image: {
  22727. source: "./media/characters/sheila-wolf/dick.svg"
  22728. }
  22729. },
  22730. muzzle: {
  22731. height: math.unit(0.513, "feet"),
  22732. name: "Muzzle",
  22733. image: {
  22734. source: "./media/characters/sheila-wolf/muzzle.svg"
  22735. }
  22736. },
  22737. },
  22738. [
  22739. {
  22740. name: "Macro",
  22741. height: math.unit(70, "feet"),
  22742. default: true
  22743. },
  22744. ]
  22745. ))
  22746. characterMakers.push(() => makeCharacter(
  22747. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22748. {
  22749. front: {
  22750. height: math.unit(32, "meters"),
  22751. weight: math.unit(300000, "kg"),
  22752. name: "Front",
  22753. image: {
  22754. source: "./media/characters/almor/front.svg",
  22755. extra: 1408 / 1322,
  22756. bottom: 94.6 / 1506.5
  22757. }
  22758. },
  22759. },
  22760. [
  22761. {
  22762. name: "Macro",
  22763. height: math.unit(32, "meters"),
  22764. default: true
  22765. },
  22766. ]
  22767. ))
  22768. characterMakers.push(() => makeCharacter(
  22769. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22770. {
  22771. front: {
  22772. height: math.unit(7, "feet"),
  22773. weight: math.unit(200, "lb"),
  22774. name: "Front",
  22775. image: {
  22776. source: "./media/characters/silver/front.svg",
  22777. extra: 472.1 / 450.5,
  22778. bottom: 26.5 / 499.424
  22779. }
  22780. },
  22781. },
  22782. [
  22783. {
  22784. name: "Normal",
  22785. height: math.unit(7, "feet"),
  22786. default: true
  22787. },
  22788. {
  22789. name: "Macro",
  22790. height: math.unit(800, "feet")
  22791. },
  22792. {
  22793. name: "Megamacro",
  22794. height: math.unit(250, "miles")
  22795. },
  22796. ]
  22797. ))
  22798. characterMakers.push(() => makeCharacter(
  22799. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22800. {
  22801. front: {
  22802. height: math.unit(6, "feet"),
  22803. weight: math.unit(150, "lb"),
  22804. name: "Front",
  22805. image: {
  22806. source: "./media/characters/pliskin/front.svg",
  22807. extra: 1469 / 1359,
  22808. bottom: 70 / 1540
  22809. }
  22810. },
  22811. },
  22812. [
  22813. {
  22814. name: "Micro",
  22815. height: math.unit(3, "inches")
  22816. },
  22817. {
  22818. name: "Normal",
  22819. height: math.unit(5 + 11 / 12, "feet"),
  22820. default: true
  22821. },
  22822. {
  22823. name: "Macro",
  22824. height: math.unit(120, "feet")
  22825. },
  22826. ]
  22827. ))
  22828. characterMakers.push(() => makeCharacter(
  22829. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22830. {
  22831. front: {
  22832. height: math.unit(6, "feet"),
  22833. weight: math.unit(150, "lb"),
  22834. name: "Front",
  22835. image: {
  22836. source: "./media/characters/sammy/front.svg",
  22837. extra: 1193 / 1089,
  22838. bottom: 30.5 / 1226
  22839. }
  22840. },
  22841. },
  22842. [
  22843. {
  22844. name: "Macro",
  22845. height: math.unit(1700, "feet"),
  22846. default: true
  22847. },
  22848. {
  22849. name: "Examacro",
  22850. height: math.unit(2.5e9, "lightyears")
  22851. },
  22852. ]
  22853. ))
  22854. characterMakers.push(() => makeCharacter(
  22855. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22856. {
  22857. front: {
  22858. height: math.unit(21, "meters"),
  22859. weight: math.unit(12, "tonnes"),
  22860. name: "Front",
  22861. image: {
  22862. source: "./media/characters/kuru/front.svg",
  22863. extra: 4301 / 3785,
  22864. bottom: 371.3 / 4691
  22865. }
  22866. },
  22867. },
  22868. [
  22869. {
  22870. name: "Macro",
  22871. height: math.unit(21, "meters"),
  22872. default: true
  22873. },
  22874. ]
  22875. ))
  22876. characterMakers.push(() => makeCharacter(
  22877. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22878. {
  22879. front: {
  22880. height: math.unit(23, "meters"),
  22881. weight: math.unit(12.2, "tonnes"),
  22882. name: "Front",
  22883. image: {
  22884. source: "./media/characters/rakka/front.svg",
  22885. extra: 4670 / 4169,
  22886. bottom: 301 / 4968.7
  22887. }
  22888. },
  22889. },
  22890. [
  22891. {
  22892. name: "Macro",
  22893. height: math.unit(23, "meters"),
  22894. default: true
  22895. },
  22896. ]
  22897. ))
  22898. characterMakers.push(() => makeCharacter(
  22899. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22900. {
  22901. front: {
  22902. height: math.unit(6, "feet"),
  22903. weight: math.unit(150, "lb"),
  22904. name: "Front",
  22905. image: {
  22906. source: "./media/characters/rhys-feline/front.svg",
  22907. extra: 2488 / 2308,
  22908. bottom: 35.67 / 2519.19
  22909. }
  22910. },
  22911. },
  22912. [
  22913. {
  22914. name: "Really Small",
  22915. height: math.unit(1, "nm")
  22916. },
  22917. {
  22918. name: "Micro",
  22919. height: math.unit(4, "inches")
  22920. },
  22921. {
  22922. name: "Normal",
  22923. height: math.unit(4 + 10 / 12, "feet"),
  22924. default: true
  22925. },
  22926. {
  22927. name: "Macro",
  22928. height: math.unit(100, "feet")
  22929. },
  22930. {
  22931. name: "Megamacto",
  22932. height: math.unit(50, "miles")
  22933. },
  22934. ]
  22935. ))
  22936. characterMakers.push(() => makeCharacter(
  22937. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22938. {
  22939. side: {
  22940. height: math.unit(30, "feet"),
  22941. weight: math.unit(35000, "kg"),
  22942. name: "Side",
  22943. image: {
  22944. source: "./media/characters/alydar/side.svg",
  22945. extra: 234 / 222,
  22946. bottom: 6.5 / 241
  22947. }
  22948. },
  22949. front: {
  22950. height: math.unit(30, "feet"),
  22951. weight: math.unit(35000, "kg"),
  22952. name: "Front",
  22953. image: {
  22954. source: "./media/characters/alydar/front.svg",
  22955. extra: 223.37 / 210.2,
  22956. bottom: 22.3 / 246.76
  22957. }
  22958. },
  22959. top: {
  22960. height: math.unit(64.54, "feet"),
  22961. weight: math.unit(35000, "kg"),
  22962. name: "Top",
  22963. image: {
  22964. source: "./media/characters/alydar/top.svg"
  22965. }
  22966. },
  22967. anthro: {
  22968. height: math.unit(30, "feet"),
  22969. weight: math.unit(9000, "kg"),
  22970. name: "Anthro",
  22971. image: {
  22972. source: "./media/characters/alydar/anthro.svg",
  22973. extra: 432 / 421,
  22974. bottom: 7.18 / 440
  22975. }
  22976. },
  22977. maw: {
  22978. height: math.unit(11.693, "feet"),
  22979. name: "Maw",
  22980. image: {
  22981. source: "./media/characters/alydar/maw.svg"
  22982. }
  22983. },
  22984. head: {
  22985. height: math.unit(11.693, "feet"),
  22986. name: "Head",
  22987. image: {
  22988. source: "./media/characters/alydar/head.svg"
  22989. }
  22990. },
  22991. headAlt: {
  22992. height: math.unit(12.861, "feet"),
  22993. name: "Head (Alt)",
  22994. image: {
  22995. source: "./media/characters/alydar/head-alt.svg"
  22996. }
  22997. },
  22998. wing: {
  22999. height: math.unit(20.712, "feet"),
  23000. name: "Wing",
  23001. image: {
  23002. source: "./media/characters/alydar/wing.svg"
  23003. }
  23004. },
  23005. wingFeather: {
  23006. height: math.unit(9.662, "feet"),
  23007. name: "Wing Feather",
  23008. image: {
  23009. source: "./media/characters/alydar/wing-feather.svg"
  23010. }
  23011. },
  23012. countourFeather: {
  23013. height: math.unit(4.154, "feet"),
  23014. name: "Contour Feather",
  23015. image: {
  23016. source: "./media/characters/alydar/contour-feather.svg"
  23017. }
  23018. },
  23019. },
  23020. [
  23021. {
  23022. name: "Diplomatic",
  23023. height: math.unit(13, "feet"),
  23024. default: true
  23025. },
  23026. {
  23027. name: "Small",
  23028. height: math.unit(30, "feet")
  23029. },
  23030. {
  23031. name: "Normal",
  23032. height: math.unit(95, "feet"),
  23033. default: true
  23034. },
  23035. {
  23036. name: "Large",
  23037. height: math.unit(285, "feet")
  23038. },
  23039. {
  23040. name: "Incomprehensible",
  23041. height: math.unit(450, "megameters")
  23042. },
  23043. ]
  23044. ))
  23045. characterMakers.push(() => makeCharacter(
  23046. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23047. {
  23048. side: {
  23049. height: math.unit(11, "feet"),
  23050. weight: math.unit(1750, "kg"),
  23051. name: "Side",
  23052. image: {
  23053. source: "./media/characters/selicia/side.svg",
  23054. extra: 440 / 396,
  23055. bottom: 24.8 / 465.979
  23056. }
  23057. },
  23058. maw: {
  23059. height: math.unit(4.665, "feet"),
  23060. name: "Maw",
  23061. image: {
  23062. source: "./media/characters/selicia/maw.svg"
  23063. }
  23064. },
  23065. },
  23066. [
  23067. {
  23068. name: "Normal",
  23069. height: math.unit(11, "feet"),
  23070. default: true
  23071. },
  23072. ]
  23073. ))
  23074. characterMakers.push(() => makeCharacter(
  23075. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23076. {
  23077. side: {
  23078. height: math.unit(2 + 6 / 12, "feet"),
  23079. weight: math.unit(30, "lb"),
  23080. name: "Side",
  23081. image: {
  23082. source: "./media/characters/layla/side.svg",
  23083. extra: 244 / 188,
  23084. bottom: 18.2 / 262.1
  23085. }
  23086. },
  23087. back: {
  23088. height: math.unit(2 + 6 / 12, "feet"),
  23089. weight: math.unit(30, "lb"),
  23090. name: "Back",
  23091. image: {
  23092. source: "./media/characters/layla/back.svg",
  23093. extra: 308 / 241.5,
  23094. bottom: 8.9 / 316.8
  23095. }
  23096. },
  23097. cumming: {
  23098. height: math.unit(2 + 6 / 12, "feet"),
  23099. weight: math.unit(30, "lb"),
  23100. name: "Cumming",
  23101. image: {
  23102. source: "./media/characters/layla/cumming.svg",
  23103. extra: 342 / 279,
  23104. bottom: 595 / 938
  23105. }
  23106. },
  23107. dickFlaccid: {
  23108. height: math.unit(2.595, "feet"),
  23109. name: "Flaccid Genitals",
  23110. image: {
  23111. source: "./media/characters/layla/dick-flaccid.svg"
  23112. }
  23113. },
  23114. dickErect: {
  23115. height: math.unit(2.359, "feet"),
  23116. name: "Erect Genitals",
  23117. image: {
  23118. source: "./media/characters/layla/dick-erect.svg"
  23119. }
  23120. },
  23121. },
  23122. [
  23123. {
  23124. name: "Micro",
  23125. height: math.unit(1, "inch")
  23126. },
  23127. {
  23128. name: "Small",
  23129. height: math.unit(1, "foot")
  23130. },
  23131. {
  23132. name: "Normal",
  23133. height: math.unit(2 + 6 / 12, "feet"),
  23134. default: true
  23135. },
  23136. {
  23137. name: "Macro",
  23138. height: math.unit(200, "feet")
  23139. },
  23140. {
  23141. name: "Megamacro",
  23142. height: math.unit(1000, "miles")
  23143. },
  23144. {
  23145. name: "Planetary",
  23146. height: math.unit(8000, "miles")
  23147. },
  23148. {
  23149. name: "True Layla",
  23150. height: math.unit(200000 * 7, "multiverses")
  23151. },
  23152. ]
  23153. ))
  23154. characterMakers.push(() => makeCharacter(
  23155. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23156. {
  23157. back: {
  23158. height: math.unit(10.5, "feet"),
  23159. weight: math.unit(800, "lb"),
  23160. name: "Back",
  23161. image: {
  23162. source: "./media/characters/knox/back.svg",
  23163. extra: 1486 / 1089,
  23164. bottom: 107 / 1601.4
  23165. }
  23166. },
  23167. side: {
  23168. height: math.unit(10.5, "feet"),
  23169. weight: math.unit(800, "lb"),
  23170. name: "Side",
  23171. image: {
  23172. source: "./media/characters/knox/side.svg",
  23173. extra: 244 / 218,
  23174. bottom: 14 / 260
  23175. }
  23176. },
  23177. },
  23178. [
  23179. {
  23180. name: "Compact",
  23181. height: math.unit(10.5, "feet"),
  23182. default: true
  23183. },
  23184. {
  23185. name: "Dynamax",
  23186. height: math.unit(210, "feet")
  23187. },
  23188. {
  23189. name: "Full Macro",
  23190. height: math.unit(850, "feet")
  23191. },
  23192. ]
  23193. ))
  23194. characterMakers.push(() => makeCharacter(
  23195. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23196. {
  23197. front: {
  23198. height: math.unit(6, "feet"),
  23199. weight: math.unit(152, "lb"),
  23200. name: "Front",
  23201. image: {
  23202. source: "./media/characters/shin-pikachu/front.svg",
  23203. extra: 1574 / 1480,
  23204. bottom: 53.3 / 1626
  23205. }
  23206. },
  23207. hand: {
  23208. height: math.unit(1.055, "feet"),
  23209. name: "Hand",
  23210. image: {
  23211. source: "./media/characters/shin-pikachu/hand.svg"
  23212. }
  23213. },
  23214. foot: {
  23215. height: math.unit(1.1, "feet"),
  23216. name: "Foot",
  23217. image: {
  23218. source: "./media/characters/shin-pikachu/foot.svg"
  23219. }
  23220. },
  23221. collar: {
  23222. height: math.unit(0.386, "feet"),
  23223. name: "Collar",
  23224. image: {
  23225. source: "./media/characters/shin-pikachu/collar.svg"
  23226. }
  23227. },
  23228. },
  23229. [
  23230. {
  23231. name: "Smallest",
  23232. height: math.unit(0.5, "inches")
  23233. },
  23234. {
  23235. name: "Micro",
  23236. height: math.unit(6, "inches")
  23237. },
  23238. {
  23239. name: "Normal",
  23240. height: math.unit(6, "feet"),
  23241. default: true
  23242. },
  23243. {
  23244. name: "Macro",
  23245. height: math.unit(150, "feet")
  23246. },
  23247. ]
  23248. ))
  23249. characterMakers.push(() => makeCharacter(
  23250. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23251. {
  23252. front: {
  23253. height: math.unit(28, "feet"),
  23254. weight: math.unit(10500, "lb"),
  23255. name: "Front",
  23256. image: {
  23257. source: "./media/characters/kayda/front.svg",
  23258. extra: 1536 / 1428,
  23259. bottom: 68.7 / 1603
  23260. }
  23261. },
  23262. back: {
  23263. height: math.unit(28, "feet"),
  23264. weight: math.unit(10500, "lb"),
  23265. name: "Back",
  23266. image: {
  23267. source: "./media/characters/kayda/back.svg",
  23268. extra: 1557 / 1464,
  23269. bottom: 39.5 / 1597.49
  23270. }
  23271. },
  23272. dick: {
  23273. height: math.unit(3.858, "feet"),
  23274. name: "Dick",
  23275. image: {
  23276. source: "./media/characters/kayda/dick.svg"
  23277. }
  23278. },
  23279. },
  23280. [
  23281. {
  23282. name: "Macro",
  23283. height: math.unit(28, "feet"),
  23284. default: true
  23285. },
  23286. ]
  23287. ))
  23288. characterMakers.push(() => makeCharacter(
  23289. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23290. {
  23291. front: {
  23292. height: math.unit(10 + 11 / 12, "feet"),
  23293. weight: math.unit(1400, "lb"),
  23294. name: "Front",
  23295. image: {
  23296. source: "./media/characters/brian/front.svg",
  23297. extra: 737 / 692,
  23298. bottom: 55.4 / 785
  23299. }
  23300. },
  23301. },
  23302. [
  23303. {
  23304. name: "Normal",
  23305. height: math.unit(10 + 11 / 12, "feet"),
  23306. default: true
  23307. },
  23308. ]
  23309. ))
  23310. characterMakers.push(() => makeCharacter(
  23311. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23312. {
  23313. front: {
  23314. height: math.unit(5 + 8 / 12, "feet"),
  23315. weight: math.unit(140, "lb"),
  23316. name: "Front",
  23317. image: {
  23318. source: "./media/characters/khemri/front.svg",
  23319. extra: 4780 / 4059,
  23320. bottom: 80.1 / 4859.25
  23321. }
  23322. },
  23323. },
  23324. [
  23325. {
  23326. name: "Micro",
  23327. height: math.unit(6, "inches")
  23328. },
  23329. {
  23330. name: "Normal",
  23331. height: math.unit(5 + 8 / 12, "feet"),
  23332. default: true
  23333. },
  23334. ]
  23335. ))
  23336. characterMakers.push(() => makeCharacter(
  23337. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23338. {
  23339. front: {
  23340. height: math.unit(13, "feet"),
  23341. weight: math.unit(1700, "lb"),
  23342. name: "Front",
  23343. image: {
  23344. source: "./media/characters/felix-braveheart/front.svg",
  23345. extra: 1222 / 1157,
  23346. bottom: 53.2 / 1280
  23347. }
  23348. },
  23349. back: {
  23350. height: math.unit(13, "feet"),
  23351. weight: math.unit(1700, "lb"),
  23352. name: "Back",
  23353. image: {
  23354. source: "./media/characters/felix-braveheart/back.svg",
  23355. extra: 1277 / 1203,
  23356. bottom: 50.2 / 1327
  23357. }
  23358. },
  23359. feral: {
  23360. height: math.unit(6, "feet"),
  23361. weight: math.unit(400, "lb"),
  23362. name: "Feral",
  23363. image: {
  23364. source: "./media/characters/felix-braveheart/feral.svg",
  23365. extra: 682 / 625,
  23366. bottom: 6.9 / 688
  23367. }
  23368. },
  23369. },
  23370. [
  23371. {
  23372. name: "Normal",
  23373. height: math.unit(13, "feet"),
  23374. default: true
  23375. },
  23376. ]
  23377. ))
  23378. characterMakers.push(() => makeCharacter(
  23379. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23380. {
  23381. side: {
  23382. height: math.unit(5 + 11 / 12, "feet"),
  23383. weight: math.unit(1400, "lb"),
  23384. name: "Side",
  23385. image: {
  23386. source: "./media/characters/shadow-blade/side.svg",
  23387. extra: 1726 / 1267,
  23388. bottom: 58.4 / 1785
  23389. }
  23390. },
  23391. },
  23392. [
  23393. {
  23394. name: "Normal",
  23395. height: math.unit(5 + 11 / 12, "feet"),
  23396. default: true
  23397. },
  23398. ]
  23399. ))
  23400. characterMakers.push(() => makeCharacter(
  23401. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23402. {
  23403. front: {
  23404. height: math.unit(1 + 6 / 12, "feet"),
  23405. weight: math.unit(25, "lb"),
  23406. name: "Front",
  23407. image: {
  23408. source: "./media/characters/karla-halldor/front.svg",
  23409. extra: 1459 / 1383,
  23410. bottom: 12 / 1472
  23411. }
  23412. },
  23413. },
  23414. [
  23415. {
  23416. name: "Normal",
  23417. height: math.unit(1 + 6 / 12, "feet"),
  23418. default: true
  23419. },
  23420. ]
  23421. ))
  23422. characterMakers.push(() => makeCharacter(
  23423. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23424. {
  23425. front: {
  23426. height: math.unit(6 + 2 / 12, "feet"),
  23427. weight: math.unit(160, "lb"),
  23428. name: "Front",
  23429. image: {
  23430. source: "./media/characters/ariam/front.svg",
  23431. extra: 714 / 617,
  23432. bottom: 23.4 / 737,
  23433. }
  23434. },
  23435. squatting: {
  23436. height: math.unit(4.1, "feet"),
  23437. weight: math.unit(160, "lb"),
  23438. name: "Squatting",
  23439. image: {
  23440. source: "./media/characters/ariam/squatting.svg",
  23441. extra: 2617 / 2112,
  23442. bottom: 61.2 / 2681,
  23443. }
  23444. },
  23445. },
  23446. [
  23447. {
  23448. name: "Normal",
  23449. height: math.unit(6 + 2 / 12, "feet"),
  23450. default: true
  23451. },
  23452. {
  23453. name: "Normal+",
  23454. height: math.unit(4, "meters")
  23455. },
  23456. {
  23457. name: "Macro",
  23458. height: math.unit(50, "meters")
  23459. },
  23460. {
  23461. name: "Macro+",
  23462. height: math.unit(100, "meters")
  23463. },
  23464. {
  23465. name: "Megamacro",
  23466. height: math.unit(20, "km")
  23467. },
  23468. ]
  23469. ))
  23470. characterMakers.push(() => makeCharacter(
  23471. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23472. {
  23473. front: {
  23474. height: math.unit(1.67, "meters"),
  23475. weight: math.unit(140, "lb"),
  23476. name: "Front",
  23477. image: {
  23478. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23479. extra: 438 / 410,
  23480. bottom: 0.75 / 439
  23481. }
  23482. },
  23483. },
  23484. [
  23485. {
  23486. name: "Shrunken",
  23487. height: math.unit(7.6, "cm")
  23488. },
  23489. {
  23490. name: "Human Scale",
  23491. height: math.unit(1.67, "meters")
  23492. },
  23493. {
  23494. name: "Wolxi Scale",
  23495. height: math.unit(36.7, "meters"),
  23496. default: true
  23497. },
  23498. ]
  23499. ))
  23500. characterMakers.push(() => makeCharacter(
  23501. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23502. {
  23503. front: {
  23504. height: math.unit(1.73, "meters"),
  23505. weight: math.unit(240, "lb"),
  23506. name: "Front",
  23507. image: {
  23508. source: "./media/characters/izue-two-mothers/front.svg",
  23509. extra: 469 / 437,
  23510. bottom: 1.24 / 470.6
  23511. }
  23512. },
  23513. },
  23514. [
  23515. {
  23516. name: "Shrunken",
  23517. height: math.unit(7.86, "cm")
  23518. },
  23519. {
  23520. name: "Human Scale",
  23521. height: math.unit(1.73, "meters")
  23522. },
  23523. {
  23524. name: "Wolxi Scale",
  23525. height: math.unit(38, "meters"),
  23526. default: true
  23527. },
  23528. ]
  23529. ))
  23530. characterMakers.push(() => makeCharacter(
  23531. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23532. {
  23533. front: {
  23534. height: math.unit(1.55, "meters"),
  23535. weight: math.unit(120, "lb"),
  23536. name: "Front",
  23537. image: {
  23538. source: "./media/characters/teeku-love-shack/front.svg",
  23539. extra: 387 / 362,
  23540. bottom: 1.51 / 388
  23541. }
  23542. },
  23543. },
  23544. [
  23545. {
  23546. name: "Shrunken",
  23547. height: math.unit(7, "cm")
  23548. },
  23549. {
  23550. name: "Human Scale",
  23551. height: math.unit(1.55, "meters")
  23552. },
  23553. {
  23554. name: "Wolxi Scale",
  23555. height: math.unit(34.1, "meters"),
  23556. default: true
  23557. },
  23558. ]
  23559. ))
  23560. characterMakers.push(() => makeCharacter(
  23561. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23562. {
  23563. front: {
  23564. height: math.unit(1.83, "meters"),
  23565. weight: math.unit(135, "lb"),
  23566. name: "Front",
  23567. image: {
  23568. source: "./media/characters/dejma-the-red/front.svg",
  23569. extra: 480 / 458,
  23570. bottom: 1.8 / 482
  23571. }
  23572. },
  23573. },
  23574. [
  23575. {
  23576. name: "Shrunken",
  23577. height: math.unit(8.3, "cm")
  23578. },
  23579. {
  23580. name: "Human Scale",
  23581. height: math.unit(1.83, "meters")
  23582. },
  23583. {
  23584. name: "Wolxi Scale",
  23585. height: math.unit(40, "meters"),
  23586. default: true
  23587. },
  23588. ]
  23589. ))
  23590. characterMakers.push(() => makeCharacter(
  23591. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23592. {
  23593. front: {
  23594. height: math.unit(1.78, "meters"),
  23595. weight: math.unit(65, "kg"),
  23596. name: "Front",
  23597. image: {
  23598. source: "./media/characters/aki/front.svg",
  23599. extra: 452 / 415
  23600. }
  23601. },
  23602. frontNsfw: {
  23603. height: math.unit(1.78, "meters"),
  23604. weight: math.unit(65, "kg"),
  23605. name: "Front (NSFW)",
  23606. image: {
  23607. source: "./media/characters/aki/front-nsfw.svg",
  23608. extra: 452 / 415
  23609. }
  23610. },
  23611. back: {
  23612. height: math.unit(1.78, "meters"),
  23613. weight: math.unit(65, "kg"),
  23614. name: "Back",
  23615. image: {
  23616. source: "./media/characters/aki/back.svg",
  23617. extra: 452 / 415
  23618. }
  23619. },
  23620. rump: {
  23621. height: math.unit(2.05, "feet"),
  23622. name: "Rump",
  23623. image: {
  23624. source: "./media/characters/aki/rump.svg"
  23625. }
  23626. },
  23627. dick: {
  23628. height: math.unit(0.95, "feet"),
  23629. name: "Dick",
  23630. image: {
  23631. source: "./media/characters/aki/dick.svg"
  23632. }
  23633. },
  23634. },
  23635. [
  23636. {
  23637. name: "Micro",
  23638. height: math.unit(15, "cm")
  23639. },
  23640. {
  23641. name: "Normal",
  23642. height: math.unit(178, "cm"),
  23643. default: true
  23644. },
  23645. {
  23646. name: "Macro",
  23647. height: math.unit(214, "m")
  23648. },
  23649. {
  23650. name: "Macro+",
  23651. height: math.unit(534, "m")
  23652. },
  23653. ]
  23654. ))
  23655. characterMakers.push(() => makeCharacter(
  23656. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23657. {
  23658. front: {
  23659. height: math.unit(5 + 5 / 12, "feet"),
  23660. weight: math.unit(120, "lb"),
  23661. name: "Front",
  23662. image: {
  23663. source: "./media/characters/ari/front.svg",
  23664. extra: 714.5 / 682,
  23665. bottom: 8 / 722.5
  23666. }
  23667. },
  23668. },
  23669. [
  23670. {
  23671. name: "Normal",
  23672. height: math.unit(5 + 5 / 12, "feet")
  23673. },
  23674. {
  23675. name: "Macro",
  23676. height: math.unit(100, "feet"),
  23677. default: true
  23678. },
  23679. {
  23680. name: "Megamacro",
  23681. height: math.unit(100, "miles")
  23682. },
  23683. {
  23684. name: "Gigamacro",
  23685. height: math.unit(80000, "miles")
  23686. },
  23687. ]
  23688. ))
  23689. characterMakers.push(() => makeCharacter(
  23690. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23691. {
  23692. side: {
  23693. height: math.unit(9, "feet"),
  23694. weight: math.unit(400, "kg"),
  23695. name: "Side",
  23696. image: {
  23697. source: "./media/characters/bolt/side.svg",
  23698. extra: 1126 / 896,
  23699. bottom: 60 / 1187.3,
  23700. }
  23701. },
  23702. },
  23703. [
  23704. {
  23705. name: "Micro",
  23706. height: math.unit(5, "inches")
  23707. },
  23708. {
  23709. name: "Normal",
  23710. height: math.unit(9, "feet"),
  23711. default: true
  23712. },
  23713. {
  23714. name: "Macro",
  23715. height: math.unit(700, "feet")
  23716. },
  23717. {
  23718. name: "Max Size",
  23719. height: math.unit(1.52e22, "yottameters")
  23720. },
  23721. ]
  23722. ))
  23723. characterMakers.push(() => makeCharacter(
  23724. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23725. {
  23726. front: {
  23727. height: math.unit(4.53, "meters"),
  23728. weight: math.unit(3, "tons"),
  23729. name: "Front",
  23730. image: {
  23731. source: "./media/characters/draekon-sylviar/front.svg",
  23732. extra: 1228 / 1068,
  23733. bottom: 41 / 1270
  23734. }
  23735. },
  23736. tail: {
  23737. height: math.unit(1.772, "meter"),
  23738. name: "Tail",
  23739. image: {
  23740. source: "./media/characters/draekon-sylviar/tail.svg"
  23741. }
  23742. },
  23743. head: {
  23744. height: math.unit(1.331, "meter"),
  23745. name: "Head",
  23746. image: {
  23747. source: "./media/characters/draekon-sylviar/head.svg"
  23748. }
  23749. },
  23750. hand: {
  23751. height: math.unit(0.564, "meter"),
  23752. name: "Hand",
  23753. image: {
  23754. source: "./media/characters/draekon-sylviar/hand.svg"
  23755. }
  23756. },
  23757. foot: {
  23758. height: math.unit(0.621, "meter"),
  23759. name: "Foot",
  23760. image: {
  23761. source: "./media/characters/draekon-sylviar/foot.svg",
  23762. bottom: 32 / 324
  23763. }
  23764. },
  23765. dick: {
  23766. height: math.unit(61, "cm"),
  23767. name: "Dick",
  23768. image: {
  23769. source: "./media/characters/draekon-sylviar/dick.svg"
  23770. }
  23771. },
  23772. dickseparated: {
  23773. height: math.unit(61, "cm"),
  23774. name: "Dick-separated",
  23775. image: {
  23776. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23777. }
  23778. },
  23779. },
  23780. [
  23781. {
  23782. name: "Small",
  23783. height: math.unit(4.53 / 2, "meters"),
  23784. default: true
  23785. },
  23786. {
  23787. name: "Normal",
  23788. height: math.unit(4.53, "meters"),
  23789. default: true
  23790. },
  23791. {
  23792. name: "Large",
  23793. height: math.unit(4.53 * 2, "meters"),
  23794. },
  23795. ]
  23796. ))
  23797. characterMakers.push(() => makeCharacter(
  23798. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23799. {
  23800. front: {
  23801. height: math.unit(6 + 2 / 12, "feet"),
  23802. weight: math.unit(180, "lb"),
  23803. name: "Front",
  23804. image: {
  23805. source: "./media/characters/brawler/front.svg",
  23806. extra: 3301 / 3027,
  23807. bottom: 138 / 3439
  23808. }
  23809. },
  23810. },
  23811. [
  23812. {
  23813. name: "Normal",
  23814. height: math.unit(6 + 2 / 12, "feet"),
  23815. default: true
  23816. },
  23817. ]
  23818. ))
  23819. characterMakers.push(() => makeCharacter(
  23820. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23821. {
  23822. front: {
  23823. height: math.unit(11, "feet"),
  23824. weight: math.unit(1000, "lb"),
  23825. name: "Front",
  23826. image: {
  23827. source: "./media/characters/alex/front.svg",
  23828. bottom: 44.5 / 620
  23829. }
  23830. },
  23831. },
  23832. [
  23833. {
  23834. name: "Micro",
  23835. height: math.unit(5, "inches")
  23836. },
  23837. {
  23838. name: "Normal",
  23839. height: math.unit(11, "feet"),
  23840. default: true
  23841. },
  23842. {
  23843. name: "Macro",
  23844. height: math.unit(9.5e9, "feet")
  23845. },
  23846. {
  23847. name: "Max Size",
  23848. height: math.unit(1.4e283, "yottameters")
  23849. },
  23850. ]
  23851. ))
  23852. characterMakers.push(() => makeCharacter(
  23853. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23854. {
  23855. female: {
  23856. height: math.unit(29.9, "m"),
  23857. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23858. name: "Female",
  23859. image: {
  23860. source: "./media/characters/zenari/female.svg",
  23861. extra: 3281.6 / 3217,
  23862. bottom: 72.2 / 3353
  23863. }
  23864. },
  23865. male: {
  23866. height: math.unit(27.7, "m"),
  23867. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23868. name: "Male",
  23869. image: {
  23870. source: "./media/characters/zenari/male.svg",
  23871. extra: 3008 / 2991,
  23872. bottom: 54.6 / 3069
  23873. }
  23874. },
  23875. },
  23876. [
  23877. {
  23878. name: "Macro",
  23879. height: math.unit(29.7, "meters"),
  23880. default: true
  23881. },
  23882. ]
  23883. ))
  23884. characterMakers.push(() => makeCharacter(
  23885. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23886. {
  23887. female: {
  23888. height: math.unit(23.8, "m"),
  23889. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23890. name: "Female",
  23891. image: {
  23892. source: "./media/characters/mactarian/female.svg",
  23893. extra: 2662 / 2569,
  23894. bottom: 73 / 2736
  23895. }
  23896. },
  23897. male: {
  23898. height: math.unit(23.8, "m"),
  23899. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23900. name: "Male",
  23901. image: {
  23902. source: "./media/characters/mactarian/male.svg",
  23903. extra: 2673 / 2600,
  23904. bottom: 76 / 2750
  23905. }
  23906. },
  23907. },
  23908. [
  23909. {
  23910. name: "Macro",
  23911. height: math.unit(23.8, "meters"),
  23912. default: true
  23913. },
  23914. ]
  23915. ))
  23916. characterMakers.push(() => makeCharacter(
  23917. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23918. {
  23919. female: {
  23920. height: math.unit(19.3, "m"),
  23921. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23922. name: "Female",
  23923. image: {
  23924. source: "./media/characters/umok/female.svg",
  23925. extra: 2186 / 2078,
  23926. bottom: 87 / 2277
  23927. }
  23928. },
  23929. male: {
  23930. height: math.unit(19.5, "m"),
  23931. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23932. name: "Male",
  23933. image: {
  23934. source: "./media/characters/umok/male.svg",
  23935. extra: 2233 / 2140,
  23936. bottom: 24.4 / 2258
  23937. }
  23938. },
  23939. },
  23940. [
  23941. {
  23942. name: "Macro",
  23943. height: math.unit(19.3, "meters"),
  23944. default: true
  23945. },
  23946. ]
  23947. ))
  23948. characterMakers.push(() => makeCharacter(
  23949. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23950. {
  23951. female: {
  23952. height: math.unit(26.15, "m"),
  23953. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23954. name: "Female",
  23955. image: {
  23956. source: "./media/characters/joraxian/female.svg",
  23957. extra: 2912 / 2824,
  23958. bottom: 36 / 2956
  23959. }
  23960. },
  23961. male: {
  23962. height: math.unit(25.4, "m"),
  23963. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23964. name: "Male",
  23965. image: {
  23966. source: "./media/characters/joraxian/male.svg",
  23967. extra: 2877 / 2721,
  23968. bottom: 82 / 2967
  23969. }
  23970. },
  23971. },
  23972. [
  23973. {
  23974. name: "Macro",
  23975. height: math.unit(26.15, "meters"),
  23976. default: true
  23977. },
  23978. ]
  23979. ))
  23980. characterMakers.push(() => makeCharacter(
  23981. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23982. {
  23983. female: {
  23984. height: math.unit(21.6, "m"),
  23985. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23986. name: "Female",
  23987. image: {
  23988. source: "./media/characters/sthara/female.svg",
  23989. extra: 2516 / 2347,
  23990. bottom: 21.5 / 2537
  23991. }
  23992. },
  23993. male: {
  23994. height: math.unit(24, "m"),
  23995. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23996. name: "Male",
  23997. image: {
  23998. source: "./media/characters/sthara/male.svg",
  23999. extra: 2732 / 2607,
  24000. bottom: 23 / 2732
  24001. }
  24002. },
  24003. },
  24004. [
  24005. {
  24006. name: "Macro",
  24007. height: math.unit(21.6, "meters"),
  24008. default: true
  24009. },
  24010. ]
  24011. ))
  24012. characterMakers.push(() => makeCharacter(
  24013. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24014. {
  24015. front: {
  24016. height: math.unit(6 + 4 / 12, "feet"),
  24017. weight: math.unit(175, "lb"),
  24018. name: "Front",
  24019. image: {
  24020. source: "./media/characters/luka-bryzant/front.svg",
  24021. extra: 311 / 289,
  24022. bottom: 4 / 315
  24023. }
  24024. },
  24025. back: {
  24026. height: math.unit(6 + 4 / 12, "feet"),
  24027. weight: math.unit(175, "lb"),
  24028. name: "Back",
  24029. image: {
  24030. source: "./media/characters/luka-bryzant/back.svg",
  24031. extra: 311 / 289,
  24032. bottom: 3.8 / 313.7
  24033. }
  24034. },
  24035. },
  24036. [
  24037. {
  24038. name: "Micro",
  24039. height: math.unit(10, "inches")
  24040. },
  24041. {
  24042. name: "Normal",
  24043. height: math.unit(6 + 4 / 12, "feet"),
  24044. default: true
  24045. },
  24046. {
  24047. name: "Large",
  24048. height: math.unit(12, "feet")
  24049. },
  24050. ]
  24051. ))
  24052. characterMakers.push(() => makeCharacter(
  24053. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24054. {
  24055. front: {
  24056. height: math.unit(5 + 7 / 12, "feet"),
  24057. weight: math.unit(185, "lb"),
  24058. name: "Front",
  24059. image: {
  24060. source: "./media/characters/aman-aquila/front.svg",
  24061. extra: 1013 / 976,
  24062. bottom: 45.6 / 1057
  24063. }
  24064. },
  24065. side: {
  24066. height: math.unit(5 + 7 / 12, "feet"),
  24067. weight: math.unit(185, "lb"),
  24068. name: "Side",
  24069. image: {
  24070. source: "./media/characters/aman-aquila/side.svg",
  24071. extra: 1054 / 1011,
  24072. bottom: 15 / 1070
  24073. }
  24074. },
  24075. back: {
  24076. height: math.unit(5 + 7 / 12, "feet"),
  24077. weight: math.unit(185, "lb"),
  24078. name: "Back",
  24079. image: {
  24080. source: "./media/characters/aman-aquila/back.svg",
  24081. extra: 1026 / 970,
  24082. bottom: 12 / 1039
  24083. }
  24084. },
  24085. head: {
  24086. height: math.unit(1.211, "feet"),
  24087. name: "Head",
  24088. image: {
  24089. source: "./media/characters/aman-aquila/head.svg",
  24090. }
  24091. },
  24092. },
  24093. [
  24094. {
  24095. name: "Minimicro",
  24096. height: math.unit(0.057, "inches")
  24097. },
  24098. {
  24099. name: "Micro",
  24100. height: math.unit(7, "inches")
  24101. },
  24102. {
  24103. name: "Mini",
  24104. height: math.unit(3 + 7 / 12, "feet")
  24105. },
  24106. {
  24107. name: "Normal",
  24108. height: math.unit(5 + 7 / 12, "feet"),
  24109. default: true
  24110. },
  24111. {
  24112. name: "Macro",
  24113. height: math.unit(157 + 7 / 12, "feet")
  24114. },
  24115. {
  24116. name: "Megamacro",
  24117. height: math.unit(1557 + 7 / 12, "feet")
  24118. },
  24119. {
  24120. name: "Gigamacro",
  24121. height: math.unit(15557 + 7 / 12, "feet")
  24122. },
  24123. ]
  24124. ))
  24125. characterMakers.push(() => makeCharacter(
  24126. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24127. {
  24128. front: {
  24129. height: math.unit(3 + 2 / 12, "inches"),
  24130. weight: math.unit(0.3, "ounces"),
  24131. name: "Front",
  24132. image: {
  24133. source: "./media/characters/hiphae/front.svg",
  24134. extra: 1931 / 1683,
  24135. bottom: 24 / 1955
  24136. }
  24137. },
  24138. },
  24139. [
  24140. {
  24141. name: "Normal",
  24142. height: math.unit(3 + 1 / 2, "inches"),
  24143. default: true
  24144. },
  24145. ]
  24146. ))
  24147. characterMakers.push(() => makeCharacter(
  24148. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24149. {
  24150. front: {
  24151. height: math.unit(5 + 10 / 12, "feet"),
  24152. weight: math.unit(165, "lb"),
  24153. name: "Front",
  24154. image: {
  24155. source: "./media/characters/nicky/front.svg",
  24156. extra: 3144 / 2886,
  24157. bottom: 45.6 / 3192
  24158. }
  24159. },
  24160. back: {
  24161. height: math.unit(5 + 10 / 12, "feet"),
  24162. weight: math.unit(165, "lb"),
  24163. name: "Back",
  24164. image: {
  24165. source: "./media/characters/nicky/back.svg",
  24166. extra: 3055 / 2804,
  24167. bottom: 28.4 / 3087
  24168. }
  24169. },
  24170. frontclothed: {
  24171. height: math.unit(5 + 10 / 12, "feet"),
  24172. weight: math.unit(165, "lb"),
  24173. name: "Front-clothed",
  24174. image: {
  24175. source: "./media/characters/nicky/front-clothed.svg",
  24176. extra: 3184.9 / 2926.9,
  24177. bottom: 86.5 / 3239.9
  24178. }
  24179. },
  24180. foot: {
  24181. height: math.unit(1.16, "feet"),
  24182. name: "Foot",
  24183. image: {
  24184. source: "./media/characters/nicky/foot.svg"
  24185. }
  24186. },
  24187. feet: {
  24188. height: math.unit(1.34, "feet"),
  24189. name: "Feet",
  24190. image: {
  24191. source: "./media/characters/nicky/feet.svg"
  24192. }
  24193. },
  24194. maw: {
  24195. height: math.unit(0.9, "feet"),
  24196. name: "Maw",
  24197. image: {
  24198. source: "./media/characters/nicky/maw.svg"
  24199. }
  24200. },
  24201. },
  24202. [
  24203. {
  24204. name: "Normal",
  24205. height: math.unit(5 + 10 / 12, "feet"),
  24206. default: true
  24207. },
  24208. {
  24209. name: "Macro",
  24210. height: math.unit(60, "feet")
  24211. },
  24212. {
  24213. name: "Megamacro",
  24214. height: math.unit(1, "mile")
  24215. },
  24216. ]
  24217. ))
  24218. characterMakers.push(() => makeCharacter(
  24219. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24220. {
  24221. side: {
  24222. height: math.unit(10, "feet"),
  24223. weight: math.unit(600, "lb"),
  24224. name: "Side",
  24225. image: {
  24226. source: "./media/characters/blair/side.svg",
  24227. bottom: 16.6 / 475,
  24228. extra: 458 / 431
  24229. }
  24230. },
  24231. },
  24232. [
  24233. {
  24234. name: "Micro",
  24235. height: math.unit(8, "inches")
  24236. },
  24237. {
  24238. name: "Normal",
  24239. height: math.unit(10, "feet"),
  24240. default: true
  24241. },
  24242. {
  24243. name: "Macro",
  24244. height: math.unit(180, "feet")
  24245. },
  24246. ]
  24247. ))
  24248. characterMakers.push(() => makeCharacter(
  24249. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24250. {
  24251. front: {
  24252. height: math.unit(5 + 4 / 12, "feet"),
  24253. weight: math.unit(125, "lb"),
  24254. name: "Front",
  24255. image: {
  24256. source: "./media/characters/fisher/front.svg",
  24257. extra: 444 / 390,
  24258. bottom: 2 / 444.8
  24259. }
  24260. },
  24261. },
  24262. [
  24263. {
  24264. name: "Micro",
  24265. height: math.unit(4, "inches")
  24266. },
  24267. {
  24268. name: "Normal",
  24269. height: math.unit(5 + 4 / 12, "feet"),
  24270. default: true
  24271. },
  24272. {
  24273. name: "Macro",
  24274. height: math.unit(100, "feet")
  24275. },
  24276. ]
  24277. ))
  24278. characterMakers.push(() => makeCharacter(
  24279. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24280. {
  24281. front: {
  24282. height: math.unit(6.71, "feet"),
  24283. weight: math.unit(200, "lb"),
  24284. capacity: math.unit(1000000, "people"),
  24285. name: "Front",
  24286. image: {
  24287. source: "./media/characters/gliss/front.svg",
  24288. extra: 2347 / 2231,
  24289. bottom: 113 / 2462
  24290. }
  24291. },
  24292. hammerspaceSize: {
  24293. height: math.unit(6.71 * 717, "feet"),
  24294. weight: math.unit(200, "lb"),
  24295. capacity: math.unit(1000000, "people"),
  24296. name: "Hammerspace Size",
  24297. image: {
  24298. source: "./media/characters/gliss/front.svg",
  24299. extra: 2347 / 2231,
  24300. bottom: 113 / 2462
  24301. }
  24302. },
  24303. },
  24304. [
  24305. {
  24306. name: "Normal",
  24307. height: math.unit(6.71, "feet"),
  24308. default: true
  24309. },
  24310. ]
  24311. ))
  24312. characterMakers.push(() => makeCharacter(
  24313. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24314. {
  24315. side: {
  24316. height: math.unit(1.44, "m"),
  24317. weight: math.unit(80, "kg"),
  24318. name: "Side",
  24319. image: {
  24320. source: "./media/characters/dune-anderson/side.svg",
  24321. bottom: 49 / 1426
  24322. }
  24323. },
  24324. },
  24325. [
  24326. {
  24327. name: "Wolf-sized",
  24328. height: math.unit(1.44, "meters")
  24329. },
  24330. {
  24331. name: "Normal",
  24332. height: math.unit(5.05, "meters"),
  24333. default: true
  24334. },
  24335. {
  24336. name: "Big",
  24337. height: math.unit(14.4, "meters")
  24338. },
  24339. {
  24340. name: "Huge",
  24341. height: math.unit(144, "meters")
  24342. },
  24343. ]
  24344. ))
  24345. characterMakers.push(() => makeCharacter(
  24346. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24347. {
  24348. front: {
  24349. height: math.unit(7, "feet"),
  24350. weight: math.unit(425, "lb"),
  24351. name: "Front",
  24352. image: {
  24353. source: "./media/characters/hind/front.svg",
  24354. extra: 2091 / 1860,
  24355. bottom: 129 / 2220
  24356. }
  24357. },
  24358. back: {
  24359. height: math.unit(7, "feet"),
  24360. weight: math.unit(425, "lb"),
  24361. name: "Back",
  24362. image: {
  24363. source: "./media/characters/hind/back.svg",
  24364. extra: 2091 / 1860,
  24365. bottom: 24.6 / 2309
  24366. }
  24367. },
  24368. tail: {
  24369. height: math.unit(2.8, "feet"),
  24370. name: "Tail",
  24371. image: {
  24372. source: "./media/characters/hind/tail.svg"
  24373. }
  24374. },
  24375. head: {
  24376. height: math.unit(2.55, "feet"),
  24377. name: "Head",
  24378. image: {
  24379. source: "./media/characters/hind/head.svg"
  24380. }
  24381. },
  24382. },
  24383. [
  24384. {
  24385. name: "XS",
  24386. height: math.unit(0.7, "feet")
  24387. },
  24388. {
  24389. name: "Normal",
  24390. height: math.unit(7, "feet"),
  24391. default: true
  24392. },
  24393. {
  24394. name: "XL",
  24395. height: math.unit(70, "feet")
  24396. },
  24397. ]
  24398. ))
  24399. characterMakers.push(() => makeCharacter(
  24400. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24401. {
  24402. front: {
  24403. height: math.unit(6, "feet"),
  24404. weight: math.unit(150, "lb"),
  24405. name: "Front",
  24406. image: {
  24407. source: "./media/characters/dylan-skaven/front.svg",
  24408. extra: 2318 / 2063,
  24409. bottom: 93.4 / 2410
  24410. }
  24411. },
  24412. },
  24413. [
  24414. {
  24415. name: "Nano",
  24416. height: math.unit(1, "mm")
  24417. },
  24418. {
  24419. name: "Micro",
  24420. height: math.unit(1, "cm")
  24421. },
  24422. {
  24423. name: "Normal",
  24424. height: math.unit(2.1, "meters"),
  24425. default: true
  24426. },
  24427. ]
  24428. ))
  24429. characterMakers.push(() => makeCharacter(
  24430. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24431. {
  24432. front: {
  24433. height: math.unit(7 + 5 / 12, "feet"),
  24434. weight: math.unit(357, "lb"),
  24435. name: "Front",
  24436. image: {
  24437. source: "./media/characters/solex-draconov/front.svg",
  24438. extra: 1993 / 1865,
  24439. bottom: 117 / 2111
  24440. }
  24441. },
  24442. },
  24443. [
  24444. {
  24445. name: "Natural Height",
  24446. height: math.unit(7 + 5 / 12, "feet"),
  24447. default: true
  24448. },
  24449. {
  24450. name: "Macro",
  24451. height: math.unit(350, "feet")
  24452. },
  24453. {
  24454. name: "Macro+",
  24455. height: math.unit(1000, "feet")
  24456. },
  24457. {
  24458. name: "Megamacro",
  24459. height: math.unit(20, "km")
  24460. },
  24461. {
  24462. name: "Megamacro+",
  24463. height: math.unit(1000, "km")
  24464. },
  24465. {
  24466. name: "Gigamacro",
  24467. height: math.unit(2.5, "Gm")
  24468. },
  24469. {
  24470. name: "Teramacro",
  24471. height: math.unit(15, "Tm")
  24472. },
  24473. {
  24474. name: "Galactic",
  24475. height: math.unit(30, "Zm")
  24476. },
  24477. {
  24478. name: "Universal",
  24479. height: math.unit(21000, "Ym")
  24480. },
  24481. {
  24482. name: "Omniversal",
  24483. height: math.unit(9.861e50, "Ym")
  24484. },
  24485. {
  24486. name: "Existential",
  24487. height: math.unit(1e300, "meters")
  24488. },
  24489. ]
  24490. ))
  24491. characterMakers.push(() => makeCharacter(
  24492. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24493. {
  24494. side: {
  24495. height: math.unit(25, "feet"),
  24496. weight: math.unit(90000, "lb"),
  24497. name: "Side",
  24498. image: {
  24499. source: "./media/characters/mandarax/side.svg",
  24500. extra: 614 / 332,
  24501. bottom: 55 / 630
  24502. }
  24503. },
  24504. head: {
  24505. height: math.unit(11.4, "feet"),
  24506. name: "Head",
  24507. image: {
  24508. source: "./media/characters/mandarax/head.svg"
  24509. }
  24510. },
  24511. belly: {
  24512. height: math.unit(33, "feet"),
  24513. name: "Belly",
  24514. capacity: math.unit(500, "people"),
  24515. image: {
  24516. source: "./media/characters/mandarax/belly.svg"
  24517. }
  24518. },
  24519. dick: {
  24520. height: math.unit(8.46, "feet"),
  24521. name: "Dick",
  24522. image: {
  24523. source: "./media/characters/mandarax/dick.svg"
  24524. }
  24525. },
  24526. top: {
  24527. height: math.unit(28, "meters"),
  24528. name: "Top",
  24529. image: {
  24530. source: "./media/characters/mandarax/top.svg"
  24531. }
  24532. },
  24533. },
  24534. [
  24535. {
  24536. name: "Normal",
  24537. height: math.unit(25, "feet"),
  24538. default: true
  24539. },
  24540. ]
  24541. ))
  24542. characterMakers.push(() => makeCharacter(
  24543. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24544. {
  24545. front: {
  24546. height: math.unit(5, "feet"),
  24547. weight: math.unit(90, "lb"),
  24548. name: "Front",
  24549. image: {
  24550. source: "./media/characters/pixil/front.svg",
  24551. extra: 2000 / 1618,
  24552. bottom: 12.3 / 2011
  24553. }
  24554. },
  24555. },
  24556. [
  24557. {
  24558. name: "Normal",
  24559. height: math.unit(5, "feet"),
  24560. default: true
  24561. },
  24562. {
  24563. name: "Megamacro",
  24564. height: math.unit(10, "miles"),
  24565. },
  24566. ]
  24567. ))
  24568. characterMakers.push(() => makeCharacter(
  24569. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24570. {
  24571. front: {
  24572. height: math.unit(7 + 2 / 12, "feet"),
  24573. weight: math.unit(200, "lb"),
  24574. name: "Front",
  24575. image: {
  24576. source: "./media/characters/angel/front.svg",
  24577. extra: 1830 / 1737,
  24578. bottom: 22.6 / 1854,
  24579. }
  24580. },
  24581. },
  24582. [
  24583. {
  24584. name: "Normal",
  24585. height: math.unit(7 + 2 / 12, "feet"),
  24586. default: true
  24587. },
  24588. {
  24589. name: "Macro",
  24590. height: math.unit(1000, "feet")
  24591. },
  24592. {
  24593. name: "Megamacro",
  24594. height: math.unit(2, "miles")
  24595. },
  24596. {
  24597. name: "Gigamacro",
  24598. height: math.unit(20, "earths")
  24599. },
  24600. ]
  24601. ))
  24602. characterMakers.push(() => makeCharacter(
  24603. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24604. {
  24605. front: {
  24606. height: math.unit(5, "feet"),
  24607. weight: math.unit(180, "lb"),
  24608. name: "Front",
  24609. image: {
  24610. source: "./media/characters/mekana/front.svg",
  24611. extra: 1671 / 1605,
  24612. bottom: 3.5 / 1691
  24613. }
  24614. },
  24615. side: {
  24616. height: math.unit(5, "feet"),
  24617. weight: math.unit(180, "lb"),
  24618. name: "Side",
  24619. image: {
  24620. source: "./media/characters/mekana/side.svg",
  24621. extra: 1671 / 1605,
  24622. bottom: 3.5 / 1691
  24623. }
  24624. },
  24625. back: {
  24626. height: math.unit(5, "feet"),
  24627. weight: math.unit(180, "lb"),
  24628. name: "Back",
  24629. image: {
  24630. source: "./media/characters/mekana/back.svg",
  24631. extra: 1671 / 1605,
  24632. bottom: 3.5 / 1691
  24633. }
  24634. },
  24635. },
  24636. [
  24637. {
  24638. name: "Normal",
  24639. height: math.unit(5, "feet"),
  24640. default: true
  24641. },
  24642. ]
  24643. ))
  24644. characterMakers.push(() => makeCharacter(
  24645. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24646. {
  24647. front: {
  24648. height: math.unit(4 + 6 / 12, "feet"),
  24649. weight: math.unit(80, "lb"),
  24650. name: "Front",
  24651. image: {
  24652. source: "./media/characters/pixie/front.svg",
  24653. extra: 1924 / 1825,
  24654. bottom: 22.4 / 1946
  24655. }
  24656. },
  24657. },
  24658. [
  24659. {
  24660. name: "Normal",
  24661. height: math.unit(4 + 6 / 12, "feet"),
  24662. default: true
  24663. },
  24664. {
  24665. name: "Macro",
  24666. height: math.unit(40, "feet")
  24667. },
  24668. ]
  24669. ))
  24670. characterMakers.push(() => makeCharacter(
  24671. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24672. {
  24673. front: {
  24674. height: math.unit(2.1, "meters"),
  24675. weight: math.unit(200, "lb"),
  24676. name: "Front",
  24677. image: {
  24678. source: "./media/characters/the-lascivious/front.svg",
  24679. extra: 1 / 0.893,
  24680. bottom: 3.5 / 573.7
  24681. }
  24682. },
  24683. },
  24684. [
  24685. {
  24686. name: "Human Scale",
  24687. height: math.unit(2.1, "meters")
  24688. },
  24689. {
  24690. name: "Wolxi Scale",
  24691. height: math.unit(46.2, "m"),
  24692. default: true
  24693. },
  24694. {
  24695. name: "Boinker of Buildings",
  24696. height: math.unit(10, "km")
  24697. },
  24698. {
  24699. name: "Shagger of Skyscrapers",
  24700. height: math.unit(40, "km")
  24701. },
  24702. {
  24703. name: "Banger of Boroughs",
  24704. height: math.unit(4000, "km")
  24705. },
  24706. {
  24707. name: "Screwer of States",
  24708. height: math.unit(100000, "km")
  24709. },
  24710. {
  24711. name: "Pounder of Planets",
  24712. height: math.unit(2000000, "km")
  24713. },
  24714. ]
  24715. ))
  24716. characterMakers.push(() => makeCharacter(
  24717. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24718. {
  24719. front: {
  24720. height: math.unit(6, "feet"),
  24721. weight: math.unit(150, "lb"),
  24722. name: "Front",
  24723. image: {
  24724. source: "./media/characters/aj/front.svg",
  24725. extra: 2039 / 1562,
  24726. bottom: 40 / 2079
  24727. }
  24728. },
  24729. },
  24730. [
  24731. {
  24732. name: "Normal",
  24733. height: math.unit(11 + 6 / 12, "feet"),
  24734. default: true
  24735. },
  24736. {
  24737. name: "Megamacro",
  24738. height: math.unit(60, "megameters")
  24739. },
  24740. ]
  24741. ))
  24742. characterMakers.push(() => makeCharacter(
  24743. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24744. {
  24745. side: {
  24746. height: math.unit(31 + 8 / 12, "feet"),
  24747. weight: math.unit(75000, "kg"),
  24748. name: "Side",
  24749. image: {
  24750. source: "./media/characters/koros/side.svg",
  24751. extra: 1442 / 1297,
  24752. bottom: 122.7 / 1562
  24753. }
  24754. },
  24755. dicksKingsCrown: {
  24756. height: math.unit(6, "feet"),
  24757. name: "Dicks (King's Crown)",
  24758. image: {
  24759. source: "./media/characters/koros/dicks-kings-crown.svg"
  24760. }
  24761. },
  24762. dicksTailSet: {
  24763. height: math.unit(3, "feet"),
  24764. name: "Dicks (Tail Set)",
  24765. image: {
  24766. source: "./media/characters/koros/dicks-tail-set.svg"
  24767. }
  24768. },
  24769. dickCumming: {
  24770. height: math.unit(7.98, "feet"),
  24771. name: "Dick (Cumming)",
  24772. image: {
  24773. source: "./media/characters/koros/dick-cumming.svg"
  24774. }
  24775. },
  24776. dicksBack: {
  24777. height: math.unit(5.9, "feet"),
  24778. name: "Dicks (Back)",
  24779. image: {
  24780. source: "./media/characters/koros/dicks-back.svg"
  24781. }
  24782. },
  24783. dicksFront: {
  24784. height: math.unit(3.72, "feet"),
  24785. name: "Dicks (Front)",
  24786. image: {
  24787. source: "./media/characters/koros/dicks-front.svg"
  24788. }
  24789. },
  24790. dicksPeeking: {
  24791. height: math.unit(3.0, "feet"),
  24792. name: "Dicks (Peeking)",
  24793. image: {
  24794. source: "./media/characters/koros/dicks-peeking.svg"
  24795. }
  24796. },
  24797. eye: {
  24798. height: math.unit(1.7, "feet"),
  24799. name: "Eye",
  24800. image: {
  24801. source: "./media/characters/koros/eye.svg"
  24802. }
  24803. },
  24804. headFront: {
  24805. height: math.unit(11.69, "feet"),
  24806. name: "Head (Front)",
  24807. image: {
  24808. source: "./media/characters/koros/head-front.svg"
  24809. }
  24810. },
  24811. headSide: {
  24812. height: math.unit(14, "feet"),
  24813. name: "Head (Side)",
  24814. image: {
  24815. source: "./media/characters/koros/head-side.svg"
  24816. }
  24817. },
  24818. leg: {
  24819. height: math.unit(17, "feet"),
  24820. name: "Leg",
  24821. image: {
  24822. source: "./media/characters/koros/leg.svg"
  24823. }
  24824. },
  24825. mawSide: {
  24826. height: math.unit(12.8, "feet"),
  24827. name: "Maw (Side)",
  24828. image: {
  24829. source: "./media/characters/koros/maw-side.svg"
  24830. }
  24831. },
  24832. mawSpitting: {
  24833. height: math.unit(17, "feet"),
  24834. name: "Maw (Spitting)",
  24835. image: {
  24836. source: "./media/characters/koros/maw-spitting.svg"
  24837. }
  24838. },
  24839. slit: {
  24840. height: math.unit(2.8, "feet"),
  24841. name: "Slit",
  24842. image: {
  24843. source: "./media/characters/koros/slit.svg"
  24844. }
  24845. },
  24846. stomach: {
  24847. height: math.unit(6.8, "feet"),
  24848. capacity: math.unit(20, "people"),
  24849. name: "Stomach",
  24850. image: {
  24851. source: "./media/characters/koros/stomach.svg"
  24852. }
  24853. },
  24854. wingspanBottom: {
  24855. height: math.unit(114, "feet"),
  24856. name: "Wingspan (Bottom)",
  24857. image: {
  24858. source: "./media/characters/koros/wingspan-bottom.svg"
  24859. }
  24860. },
  24861. wingspanTop: {
  24862. height: math.unit(104, "feet"),
  24863. name: "Wingspan (Top)",
  24864. image: {
  24865. source: "./media/characters/koros/wingspan-top.svg"
  24866. }
  24867. },
  24868. },
  24869. [
  24870. {
  24871. name: "Normal",
  24872. height: math.unit(31 + 8 / 12, "feet"),
  24873. default: true
  24874. },
  24875. ]
  24876. ))
  24877. characterMakers.push(() => makeCharacter(
  24878. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24879. {
  24880. front: {
  24881. height: math.unit(18 + 5 / 12, "feet"),
  24882. weight: math.unit(3750, "kg"),
  24883. name: "Front",
  24884. image: {
  24885. source: "./media/characters/vexx/front.svg",
  24886. extra: 426 / 396,
  24887. bottom: 31.5 / 458
  24888. }
  24889. },
  24890. maw: {
  24891. height: math.unit(6, "feet"),
  24892. name: "Maw",
  24893. image: {
  24894. source: "./media/characters/vexx/maw.svg"
  24895. }
  24896. },
  24897. },
  24898. [
  24899. {
  24900. name: "Normal",
  24901. height: math.unit(18 + 5 / 12, "feet"),
  24902. default: true
  24903. },
  24904. ]
  24905. ))
  24906. characterMakers.push(() => makeCharacter(
  24907. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24908. {
  24909. front: {
  24910. height: math.unit(17 + 6 / 12, "feet"),
  24911. weight: math.unit(150, "lb"),
  24912. name: "Front",
  24913. image: {
  24914. source: "./media/characters/baadra/front.svg",
  24915. extra: 3137 / 2890,
  24916. bottom: 168.4 / 3305
  24917. }
  24918. },
  24919. back: {
  24920. height: math.unit(17 + 6 / 12, "feet"),
  24921. weight: math.unit(150, "lb"),
  24922. name: "Back",
  24923. image: {
  24924. source: "./media/characters/baadra/back.svg",
  24925. extra: 3142 / 2890,
  24926. bottom: 220 / 3371
  24927. }
  24928. },
  24929. head: {
  24930. height: math.unit(5.45, "feet"),
  24931. name: "Head",
  24932. image: {
  24933. source: "./media/characters/baadra/head.svg"
  24934. }
  24935. },
  24936. headAngry: {
  24937. height: math.unit(4.95, "feet"),
  24938. name: "Head (Angry)",
  24939. image: {
  24940. source: "./media/characters/baadra/head-angry.svg"
  24941. }
  24942. },
  24943. headOpen: {
  24944. height: math.unit(6, "feet"),
  24945. name: "Head (Open)",
  24946. image: {
  24947. source: "./media/characters/baadra/head-open.svg"
  24948. }
  24949. },
  24950. },
  24951. [
  24952. {
  24953. name: "Normal",
  24954. height: math.unit(17 + 6 / 12, "feet"),
  24955. default: true
  24956. },
  24957. ]
  24958. ))
  24959. characterMakers.push(() => makeCharacter(
  24960. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24961. {
  24962. front: {
  24963. height: math.unit(7 + 3 / 12, "feet"),
  24964. weight: math.unit(180, "lb"),
  24965. name: "Front",
  24966. image: {
  24967. source: "./media/characters/juri/front.svg",
  24968. extra: 1401 / 1237,
  24969. bottom: 18.5 / 1418
  24970. }
  24971. },
  24972. side: {
  24973. height: math.unit(7 + 3 / 12, "feet"),
  24974. weight: math.unit(180, "lb"),
  24975. name: "Side",
  24976. image: {
  24977. source: "./media/characters/juri/side.svg",
  24978. extra: 1424 / 1242,
  24979. bottom: 18.5 / 1447
  24980. }
  24981. },
  24982. sitting: {
  24983. height: math.unit(6, "feet"),
  24984. weight: math.unit(180, "lb"),
  24985. name: "Sitting",
  24986. image: {
  24987. source: "./media/characters/juri/sitting.svg",
  24988. extra: 1270 / 1143,
  24989. bottom: 100 / 1343
  24990. }
  24991. },
  24992. back: {
  24993. height: math.unit(7 + 3 / 12, "feet"),
  24994. weight: math.unit(180, "lb"),
  24995. name: "Back",
  24996. image: {
  24997. source: "./media/characters/juri/back.svg",
  24998. extra: 1377 / 1240,
  24999. bottom: 23.7 / 1405
  25000. }
  25001. },
  25002. maw: {
  25003. height: math.unit(2.8, "feet"),
  25004. name: "Maw",
  25005. image: {
  25006. source: "./media/characters/juri/maw.svg"
  25007. }
  25008. },
  25009. stomach: {
  25010. height: math.unit(0.89, "feet"),
  25011. capacity: math.unit(4, "liters"),
  25012. name: "Stomach",
  25013. image: {
  25014. source: "./media/characters/juri/stomach.svg"
  25015. }
  25016. },
  25017. },
  25018. [
  25019. {
  25020. name: "Normal",
  25021. height: math.unit(7 + 3 / 12, "feet"),
  25022. default: true
  25023. },
  25024. ]
  25025. ))
  25026. characterMakers.push(() => makeCharacter(
  25027. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25028. {
  25029. fox: {
  25030. height: math.unit(5 + 6 / 12, "feet"),
  25031. weight: math.unit(140, "lb"),
  25032. name: "Fox",
  25033. image: {
  25034. source: "./media/characters/maxene-sita/fox.svg",
  25035. extra: 146 / 138,
  25036. bottom: 2.1 / 148.19
  25037. }
  25038. },
  25039. foxLaying: {
  25040. height: math.unit(1.70, "feet"),
  25041. weight: math.unit(140, "lb"),
  25042. name: "Fox (Laying)",
  25043. image: {
  25044. source: "./media/characters/maxene-sita/fox-laying.svg",
  25045. extra: 910 / 572,
  25046. bottom: 71 / 981
  25047. }
  25048. },
  25049. kitsune: {
  25050. height: math.unit(10, "feet"),
  25051. weight: math.unit(800, "lb"),
  25052. name: "Kitsune",
  25053. image: {
  25054. source: "./media/characters/maxene-sita/kitsune.svg",
  25055. extra: 185 / 176,
  25056. bottom: 4.7 / 189.9
  25057. }
  25058. },
  25059. hellhound: {
  25060. height: math.unit(10, "feet"),
  25061. weight: math.unit(700, "lb"),
  25062. name: "Hellhound",
  25063. image: {
  25064. source: "./media/characters/maxene-sita/hellhound.svg",
  25065. extra: 1600 / 1545,
  25066. bottom: 81 / 1681
  25067. }
  25068. },
  25069. },
  25070. [
  25071. {
  25072. name: "Normal",
  25073. height: math.unit(5 + 6 / 12, "feet"),
  25074. default: true
  25075. },
  25076. ]
  25077. ))
  25078. characterMakers.push(() => makeCharacter(
  25079. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25080. {
  25081. front: {
  25082. height: math.unit(3 + 4 / 12, "feet"),
  25083. weight: math.unit(70, "lb"),
  25084. name: "Front",
  25085. image: {
  25086. source: "./media/characters/maia/front.svg",
  25087. extra: 227 / 219.5,
  25088. bottom: 40 / 267
  25089. }
  25090. },
  25091. back: {
  25092. height: math.unit(3 + 4 / 12, "feet"),
  25093. weight: math.unit(70, "lb"),
  25094. name: "Back",
  25095. image: {
  25096. source: "./media/characters/maia/back.svg",
  25097. extra: 237 / 225
  25098. }
  25099. },
  25100. },
  25101. [
  25102. {
  25103. name: "Normal",
  25104. height: math.unit(3 + 4 / 12, "feet"),
  25105. default: true
  25106. },
  25107. ]
  25108. ))
  25109. characterMakers.push(() => makeCharacter(
  25110. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25111. {
  25112. front: {
  25113. height: math.unit(5 + 10 / 12, "feet"),
  25114. weight: math.unit(197, "lb"),
  25115. name: "Front",
  25116. image: {
  25117. source: "./media/characters/jabaro/front.svg",
  25118. extra: 225 / 216,
  25119. bottom: 5.06 / 230
  25120. }
  25121. },
  25122. back: {
  25123. height: math.unit(5 + 10 / 12, "feet"),
  25124. weight: math.unit(197, "lb"),
  25125. name: "Back",
  25126. image: {
  25127. source: "./media/characters/jabaro/back.svg",
  25128. extra: 225 / 219,
  25129. bottom: 1.9 / 227
  25130. }
  25131. },
  25132. },
  25133. [
  25134. {
  25135. name: "Normal",
  25136. height: math.unit(5 + 10 / 12, "feet"),
  25137. default: true
  25138. },
  25139. ]
  25140. ))
  25141. characterMakers.push(() => makeCharacter(
  25142. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25143. {
  25144. front: {
  25145. height: math.unit(5 + 8 / 12, "feet"),
  25146. weight: math.unit(139, "lb"),
  25147. name: "Front",
  25148. image: {
  25149. source: "./media/characters/risa/front.svg",
  25150. extra: 270 / 260,
  25151. bottom: 11.2 / 282
  25152. }
  25153. },
  25154. back: {
  25155. height: math.unit(5 + 8 / 12, "feet"),
  25156. weight: math.unit(139, "lb"),
  25157. name: "Back",
  25158. image: {
  25159. source: "./media/characters/risa/back.svg",
  25160. extra: 264 / 255,
  25161. bottom: 4 / 268
  25162. }
  25163. },
  25164. },
  25165. [
  25166. {
  25167. name: "Normal",
  25168. height: math.unit(5 + 8 / 12, "feet"),
  25169. default: true
  25170. },
  25171. ]
  25172. ))
  25173. characterMakers.push(() => makeCharacter(
  25174. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25175. {
  25176. front: {
  25177. height: math.unit(2 + 11 / 12, "feet"),
  25178. weight: math.unit(30, "lb"),
  25179. name: "Front",
  25180. image: {
  25181. source: "./media/characters/weatley/front.svg",
  25182. bottom: 10.7 / 414,
  25183. extra: 403.5 / 362
  25184. }
  25185. },
  25186. back: {
  25187. height: math.unit(2 + 11 / 12, "feet"),
  25188. weight: math.unit(30, "lb"),
  25189. name: "Back",
  25190. image: {
  25191. source: "./media/characters/weatley/back.svg",
  25192. bottom: 10.7 / 414,
  25193. extra: 403.5 / 362
  25194. }
  25195. },
  25196. },
  25197. [
  25198. {
  25199. name: "Normal",
  25200. height: math.unit(2 + 11 / 12, "feet"),
  25201. default: true
  25202. },
  25203. ]
  25204. ))
  25205. characterMakers.push(() => makeCharacter(
  25206. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25207. {
  25208. front: {
  25209. height: math.unit(5 + 2 / 12, "feet"),
  25210. weight: math.unit(50, "kg"),
  25211. name: "Front",
  25212. image: {
  25213. source: "./media/characters/mercury-crescent/front.svg",
  25214. extra: 1088 / 1033,
  25215. bottom: 18.9 / 1109
  25216. }
  25217. },
  25218. },
  25219. [
  25220. {
  25221. name: "Normal",
  25222. height: math.unit(5 + 2 / 12, "feet"),
  25223. default: true
  25224. },
  25225. ]
  25226. ))
  25227. characterMakers.push(() => makeCharacter(
  25228. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25229. {
  25230. front: {
  25231. height: math.unit(2, "feet"),
  25232. weight: math.unit(15, "kg"),
  25233. name: "Front",
  25234. image: {
  25235. source: "./media/characters/diamond-jones/front.svg",
  25236. bottom: 16 / 568
  25237. }
  25238. },
  25239. },
  25240. [
  25241. {
  25242. name: "Normal",
  25243. height: math.unit(2, "feet"),
  25244. default: true
  25245. },
  25246. ]
  25247. ))
  25248. characterMakers.push(() => makeCharacter(
  25249. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25250. {
  25251. front: {
  25252. height: math.unit(3, "feet"),
  25253. weight: math.unit(30, "kg"),
  25254. name: "Front",
  25255. image: {
  25256. source: "./media/characters/sweet-bit/front.svg",
  25257. extra: 675 / 567,
  25258. bottom: 27.7 / 703
  25259. }
  25260. },
  25261. },
  25262. [
  25263. {
  25264. name: "Normal",
  25265. height: math.unit(3, "feet"),
  25266. default: true
  25267. },
  25268. ]
  25269. ))
  25270. characterMakers.push(() => makeCharacter(
  25271. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25272. {
  25273. side: {
  25274. height: math.unit(9.178, "feet"),
  25275. weight: math.unit(500, "lb"),
  25276. name: "Side",
  25277. image: {
  25278. source: "./media/characters/umbrazen/side.svg",
  25279. extra: 1730 / 1473,
  25280. bottom: 34.6 / 1765
  25281. }
  25282. },
  25283. },
  25284. [
  25285. {
  25286. name: "Normal",
  25287. height: math.unit(9.178, "feet"),
  25288. default: true
  25289. },
  25290. ]
  25291. ))
  25292. characterMakers.push(() => makeCharacter(
  25293. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25294. {
  25295. front: {
  25296. height: math.unit(10, "feet"),
  25297. weight: math.unit(750, "lb"),
  25298. name: "Front",
  25299. image: {
  25300. source: "./media/characters/arlist/front.svg",
  25301. extra: 961 / 778,
  25302. bottom: 6.2 / 986
  25303. }
  25304. },
  25305. },
  25306. [
  25307. {
  25308. name: "Normal",
  25309. height: math.unit(10, "feet"),
  25310. default: true
  25311. },
  25312. ]
  25313. ))
  25314. characterMakers.push(() => makeCharacter(
  25315. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25316. {
  25317. front: {
  25318. height: math.unit(5 + 1 / 12, "feet"),
  25319. weight: math.unit(110, "lb"),
  25320. name: "Front",
  25321. image: {
  25322. source: "./media/characters/aradel/front.svg",
  25323. extra: 324 / 303,
  25324. bottom: 3.6 / 329.4
  25325. }
  25326. },
  25327. },
  25328. [
  25329. {
  25330. name: "Normal",
  25331. height: math.unit(5 + 1 / 12, "feet"),
  25332. default: true
  25333. },
  25334. ]
  25335. ))
  25336. characterMakers.push(() => makeCharacter(
  25337. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25338. {
  25339. front: {
  25340. height: math.unit(3 + 8 / 12, "feet"),
  25341. weight: math.unit(50, "lb"),
  25342. name: "Front",
  25343. image: {
  25344. source: "./media/characters/serryn/front.svg",
  25345. extra: 1792 / 1656,
  25346. bottom: 43.5 / 1840
  25347. }
  25348. },
  25349. },
  25350. [
  25351. {
  25352. name: "Normal",
  25353. height: math.unit(3 + 8 / 12, "feet"),
  25354. default: true
  25355. },
  25356. ]
  25357. ))
  25358. characterMakers.push(() => makeCharacter(
  25359. { name: "Xavier Thyme" },
  25360. {
  25361. front: {
  25362. height: math.unit(7 + 10 / 12, "feet"),
  25363. weight: math.unit(255, "lb"),
  25364. name: "Front",
  25365. image: {
  25366. source: "./media/characters/xavier-thyme/front.svg",
  25367. extra: 3733 / 3642,
  25368. bottom: 131 / 3869
  25369. }
  25370. },
  25371. frontRaven: {
  25372. height: math.unit(7 + 10 / 12, "feet"),
  25373. weight: math.unit(255, "lb"),
  25374. name: "Front (Raven)",
  25375. image: {
  25376. source: "./media/characters/xavier-thyme/front-raven.svg",
  25377. extra: 4385 / 3642,
  25378. bottom: 131 / 4517
  25379. }
  25380. },
  25381. },
  25382. [
  25383. {
  25384. name: "Normal",
  25385. height: math.unit(7 + 10 / 12, "feet"),
  25386. default: true
  25387. },
  25388. ]
  25389. ))
  25390. characterMakers.push(() => makeCharacter(
  25391. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25392. {
  25393. front: {
  25394. height: math.unit(1.6, "m"),
  25395. weight: math.unit(50, "kg"),
  25396. name: "Front",
  25397. image: {
  25398. source: "./media/characters/kiki/front.svg",
  25399. extra: 4682 / 3610,
  25400. bottom: 115 / 4777
  25401. }
  25402. },
  25403. },
  25404. [
  25405. {
  25406. name: "Normal",
  25407. height: math.unit(1.6, "meters"),
  25408. default: true
  25409. },
  25410. ]
  25411. ))
  25412. characterMakers.push(() => makeCharacter(
  25413. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25414. {
  25415. front: {
  25416. height: math.unit(50, "m"),
  25417. weight: math.unit(500, "tonnes"),
  25418. name: "Front",
  25419. image: {
  25420. source: "./media/characters/ryoko/front.svg",
  25421. extra: 4632 / 3926,
  25422. bottom: 193 / 4823
  25423. }
  25424. },
  25425. },
  25426. [
  25427. {
  25428. name: "Normal",
  25429. height: math.unit(50, "meters"),
  25430. default: true
  25431. },
  25432. ]
  25433. ))
  25434. characterMakers.push(() => makeCharacter(
  25435. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25436. {
  25437. front: {
  25438. height: math.unit(30, "m"),
  25439. weight: math.unit(22, "tonnes"),
  25440. name: "Front",
  25441. image: {
  25442. source: "./media/characters/elio/front.svg",
  25443. extra: 4582 / 3720,
  25444. bottom: 236 / 4828
  25445. }
  25446. },
  25447. },
  25448. [
  25449. {
  25450. name: "Normal",
  25451. height: math.unit(30, "meters"),
  25452. default: true
  25453. },
  25454. ]
  25455. ))
  25456. characterMakers.push(() => makeCharacter(
  25457. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25458. {
  25459. front: {
  25460. height: math.unit(6 + 3 / 12, "feet"),
  25461. weight: math.unit(120, "lb"),
  25462. name: "Front",
  25463. image: {
  25464. source: "./media/characters/azura/front.svg",
  25465. extra: 1149 / 1135,
  25466. bottom: 45 / 1194
  25467. }
  25468. },
  25469. frontClothed: {
  25470. height: math.unit(6 + 3 / 12, "feet"),
  25471. weight: math.unit(120, "lb"),
  25472. name: "Front (Clothed)",
  25473. image: {
  25474. source: "./media/characters/azura/front-clothed.svg",
  25475. extra: 1149 / 1135,
  25476. bottom: 45 / 1194
  25477. }
  25478. },
  25479. },
  25480. [
  25481. {
  25482. name: "Normal",
  25483. height: math.unit(6 + 3 / 12, "feet"),
  25484. default: true
  25485. },
  25486. {
  25487. name: "Macro",
  25488. height: math.unit(20 + 6 / 12, "feet")
  25489. },
  25490. {
  25491. name: "Megamacro",
  25492. height: math.unit(12, "miles")
  25493. },
  25494. {
  25495. name: "Gigamacro",
  25496. height: math.unit(10000, "miles")
  25497. },
  25498. {
  25499. name: "Teramacro",
  25500. height: math.unit(900000, "miles")
  25501. },
  25502. ]
  25503. ))
  25504. characterMakers.push(() => makeCharacter(
  25505. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25506. {
  25507. front: {
  25508. height: math.unit(12, "feet"),
  25509. weight: math.unit(1, "ton"),
  25510. capacity: math.unit(660000, "gallons"),
  25511. name: "Front",
  25512. image: {
  25513. source: "./media/characters/zeus/front.svg",
  25514. extra: 5005 / 4717,
  25515. bottom: 363 / 5388
  25516. }
  25517. },
  25518. },
  25519. [
  25520. {
  25521. name: "Normal",
  25522. height: math.unit(12, "feet")
  25523. },
  25524. {
  25525. name: "Preferred Size",
  25526. height: math.unit(0.5, "miles"),
  25527. default: true
  25528. },
  25529. {
  25530. name: "Giga Horse",
  25531. height: math.unit(300, "miles")
  25532. },
  25533. {
  25534. name: "Riding Planets",
  25535. height: math.unit(30, "megameters")
  25536. },
  25537. {
  25538. name: "Cosmic Giant",
  25539. height: math.unit(3, "zettameters")
  25540. },
  25541. {
  25542. name: "Breeding God",
  25543. height: math.unit(9.92e22, "yottameters")
  25544. },
  25545. ]
  25546. ))
  25547. characterMakers.push(() => makeCharacter(
  25548. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25549. {
  25550. side: {
  25551. height: math.unit(9, "feet"),
  25552. weight: math.unit(1500, "kg"),
  25553. name: "Side",
  25554. image: {
  25555. source: "./media/characters/fang/side.svg",
  25556. extra: 924 / 866,
  25557. bottom: 47.5 / 972.3
  25558. }
  25559. },
  25560. },
  25561. [
  25562. {
  25563. name: "Normal",
  25564. height: math.unit(9, "feet"),
  25565. default: true
  25566. },
  25567. {
  25568. name: "Macro",
  25569. height: math.unit(75 + 6 / 12, "feet")
  25570. },
  25571. {
  25572. name: "Teramacro",
  25573. height: math.unit(50000, "miles")
  25574. },
  25575. ]
  25576. ))
  25577. characterMakers.push(() => makeCharacter(
  25578. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25579. {
  25580. front: {
  25581. height: math.unit(10, "feet"),
  25582. weight: math.unit(2, "tons"),
  25583. name: "Front",
  25584. image: {
  25585. source: "./media/characters/rekhit/front.svg",
  25586. extra: 2796 / 2590,
  25587. bottom: 225 / 3022
  25588. }
  25589. },
  25590. },
  25591. [
  25592. {
  25593. name: "Normal",
  25594. height: math.unit(10, "feet"),
  25595. default: true
  25596. },
  25597. {
  25598. name: "Macro",
  25599. height: math.unit(500, "feet")
  25600. },
  25601. ]
  25602. ))
  25603. characterMakers.push(() => makeCharacter(
  25604. { name: "Dahlia Verrick" },
  25605. {
  25606. front: {
  25607. height: math.unit(7 + 6.451 / 12, "feet"),
  25608. weight: math.unit(310, "lb"),
  25609. name: "Front",
  25610. image: {
  25611. source: "./media/characters/dahlia-verrick/front.svg",
  25612. extra: 1488 / 1365,
  25613. bottom: 6.2 / 1495
  25614. }
  25615. },
  25616. back: {
  25617. height: math.unit(7 + 6.451 / 12, "feet"),
  25618. weight: math.unit(310, "lb"),
  25619. name: "Back",
  25620. image: {
  25621. source: "./media/characters/dahlia-verrick/back.svg",
  25622. extra: 1472 / 1351,
  25623. bottom: 5.28 / 1477
  25624. }
  25625. },
  25626. frontBusiness: {
  25627. height: math.unit(7 + 6.451 / 12, "feet"),
  25628. weight: math.unit(200, "lb"),
  25629. name: "Front (Business)",
  25630. image: {
  25631. source: "./media/characters/dahlia-verrick/front-business.svg",
  25632. extra: 1478 / 1381,
  25633. bottom: 5.5 / 1484
  25634. }
  25635. },
  25636. frontCasual: {
  25637. height: math.unit(7 + 6.451 / 12, "feet"),
  25638. weight: math.unit(200, "lb"),
  25639. name: "Front (Casual)",
  25640. image: {
  25641. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25642. extra: 1478 / 1381,
  25643. bottom: 5.5 / 1484
  25644. }
  25645. },
  25646. },
  25647. [
  25648. {
  25649. name: "Travel-Sized",
  25650. height: math.unit(7.45, "inches")
  25651. },
  25652. {
  25653. name: "Normal",
  25654. height: math.unit(7 + 6.451 / 12, "feet"),
  25655. default: true
  25656. },
  25657. {
  25658. name: "Hitting the Town",
  25659. height: math.unit(37 + 8 / 12, "feet")
  25660. },
  25661. {
  25662. name: "Stomp in the Suburbs",
  25663. height: math.unit(964 + 9.728 / 12, "feet")
  25664. },
  25665. {
  25666. name: "Sit on the City",
  25667. height: math.unit(61747 + 10.592 / 12, "feet")
  25668. },
  25669. {
  25670. name: "Glomp the Globe",
  25671. height: math.unit(252919327 + 4.832 / 12, "feet")
  25672. },
  25673. ]
  25674. ))
  25675. characterMakers.push(() => makeCharacter(
  25676. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25677. {
  25678. front: {
  25679. height: math.unit(6 + 4 / 12, "feet"),
  25680. weight: math.unit(320, "lb"),
  25681. name: "Front",
  25682. image: {
  25683. source: "./media/characters/balina-mahigan/front.svg",
  25684. extra: 447 / 428,
  25685. bottom: 18 / 466
  25686. }
  25687. },
  25688. back: {
  25689. height: math.unit(6 + 4 / 12, "feet"),
  25690. weight: math.unit(320, "lb"),
  25691. name: "Back",
  25692. image: {
  25693. source: "./media/characters/balina-mahigan/back.svg",
  25694. extra: 445 / 428,
  25695. bottom: 4.07 / 448
  25696. }
  25697. },
  25698. arm: {
  25699. height: math.unit(1.88, "feet"),
  25700. name: "Arm",
  25701. image: {
  25702. source: "./media/characters/balina-mahigan/arm.svg"
  25703. }
  25704. },
  25705. backPort: {
  25706. height: math.unit(0.685, "feet"),
  25707. name: "Back Port",
  25708. image: {
  25709. source: "./media/characters/balina-mahigan/back-port.svg"
  25710. }
  25711. },
  25712. hoofpaw: {
  25713. height: math.unit(1.41, "feet"),
  25714. name: "Hoofpaw",
  25715. image: {
  25716. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25717. }
  25718. },
  25719. leftHandBack: {
  25720. height: math.unit(0.938, "feet"),
  25721. name: "Left Hand (Back)",
  25722. image: {
  25723. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25724. }
  25725. },
  25726. leftHandFront: {
  25727. height: math.unit(0.938, "feet"),
  25728. name: "Left Hand (Front)",
  25729. image: {
  25730. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25731. }
  25732. },
  25733. rightHandBack: {
  25734. height: math.unit(0.95, "feet"),
  25735. name: "Right Hand (Back)",
  25736. image: {
  25737. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25738. }
  25739. },
  25740. rightHandFront: {
  25741. height: math.unit(0.95, "feet"),
  25742. name: "Right Hand (Front)",
  25743. image: {
  25744. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25745. }
  25746. },
  25747. },
  25748. [
  25749. {
  25750. name: "Normal",
  25751. height: math.unit(6 + 4 / 12, "feet"),
  25752. default: true
  25753. },
  25754. ]
  25755. ))
  25756. characterMakers.push(() => makeCharacter(
  25757. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25758. {
  25759. front: {
  25760. height: math.unit(6, "feet"),
  25761. weight: math.unit(320, "lb"),
  25762. name: "Front",
  25763. image: {
  25764. source: "./media/characters/balina-mejeri/front.svg",
  25765. extra: 517 / 488,
  25766. bottom: 44.2 / 561
  25767. }
  25768. },
  25769. },
  25770. [
  25771. {
  25772. name: "Normal",
  25773. height: math.unit(6 + 4 / 12, "feet")
  25774. },
  25775. {
  25776. name: "Business",
  25777. height: math.unit(155, "feet"),
  25778. default: true
  25779. },
  25780. ]
  25781. ))
  25782. characterMakers.push(() => makeCharacter(
  25783. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25784. {
  25785. kneeling: {
  25786. height: math.unit(6 + 4 / 12, "feet"),
  25787. weight: math.unit(300 * 20, "lb"),
  25788. name: "Kneeling",
  25789. image: {
  25790. source: "./media/characters/balbarian/kneeling.svg",
  25791. extra: 922 / 862,
  25792. bottom: 42.4 / 965
  25793. }
  25794. },
  25795. },
  25796. [
  25797. {
  25798. name: "Normal",
  25799. height: math.unit(6 + 4 / 12, "feet")
  25800. },
  25801. {
  25802. name: "Treasured",
  25803. height: math.unit(18 + 9 / 12, "feet"),
  25804. default: true
  25805. },
  25806. {
  25807. name: "Macro",
  25808. height: math.unit(900, "feet")
  25809. },
  25810. ]
  25811. ))
  25812. characterMakers.push(() => makeCharacter(
  25813. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25814. {
  25815. front: {
  25816. height: math.unit(6 + 4 / 12, "feet"),
  25817. weight: math.unit(325, "lb"),
  25818. name: "Front",
  25819. image: {
  25820. source: "./media/characters/balina-amarini/front.svg",
  25821. extra: 415 / 403,
  25822. bottom: 19 / 433.4
  25823. }
  25824. },
  25825. back: {
  25826. height: math.unit(6 + 4 / 12, "feet"),
  25827. weight: math.unit(325, "lb"),
  25828. name: "Back",
  25829. image: {
  25830. source: "./media/characters/balina-amarini/back.svg",
  25831. extra: 415 / 403,
  25832. bottom: 13.5 / 432
  25833. }
  25834. },
  25835. overdrive: {
  25836. height: math.unit(6 + 4 / 12, "feet"),
  25837. weight: math.unit(400, "lb"),
  25838. name: "Overdrive",
  25839. image: {
  25840. source: "./media/characters/balina-amarini/overdrive.svg",
  25841. extra: 269 / 259,
  25842. bottom: 12 / 282
  25843. }
  25844. },
  25845. },
  25846. [
  25847. {
  25848. name: "Boom",
  25849. height: math.unit(9 + 10 / 12, "feet"),
  25850. default: true
  25851. },
  25852. {
  25853. name: "Macro",
  25854. height: math.unit(280, "feet")
  25855. },
  25856. ]
  25857. ))
  25858. characterMakers.push(() => makeCharacter(
  25859. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25860. {
  25861. goddess: {
  25862. height: math.unit(600, "feet"),
  25863. weight: math.unit(2000000, "tons"),
  25864. name: "Goddess",
  25865. image: {
  25866. source: "./media/characters/lady-kubwa/goddess.svg",
  25867. extra: 1240.5 / 1223,
  25868. bottom: 22 / 1263
  25869. }
  25870. },
  25871. goddesser: {
  25872. height: math.unit(900, "feet"),
  25873. weight: math.unit(20000000, "lb"),
  25874. name: "Goddess-er",
  25875. image: {
  25876. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25877. extra: 899 / 888,
  25878. bottom: 12.6 / 912
  25879. }
  25880. },
  25881. },
  25882. [
  25883. {
  25884. name: "Macro",
  25885. height: math.unit(600, "feet"),
  25886. default: true
  25887. },
  25888. {
  25889. name: "Megamacro",
  25890. height: math.unit(250, "miles")
  25891. },
  25892. ]
  25893. ))
  25894. characterMakers.push(() => makeCharacter(
  25895. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25896. {
  25897. front: {
  25898. height: math.unit(7 + 7 / 12, "feet"),
  25899. weight: math.unit(250, "lb"),
  25900. name: "Front",
  25901. image: {
  25902. source: "./media/characters/tala-grovehorn/front.svg",
  25903. extra: 2636 / 2525,
  25904. bottom: 147 / 2781
  25905. }
  25906. },
  25907. back: {
  25908. height: math.unit(7 + 7 / 12, "feet"),
  25909. weight: math.unit(250, "lb"),
  25910. name: "Back",
  25911. image: {
  25912. source: "./media/characters/tala-grovehorn/back.svg",
  25913. extra: 2635 / 2539,
  25914. bottom: 100 / 2732.8
  25915. }
  25916. },
  25917. mouth: {
  25918. height: math.unit(1.15, "feet"),
  25919. name: "Mouth",
  25920. image: {
  25921. source: "./media/characters/tala-grovehorn/mouth.svg"
  25922. }
  25923. },
  25924. dick: {
  25925. height: math.unit(2.36, "feet"),
  25926. name: "Dick",
  25927. image: {
  25928. source: "./media/characters/tala-grovehorn/dick.svg"
  25929. }
  25930. },
  25931. slit: {
  25932. height: math.unit(0.61, "feet"),
  25933. name: "Slit",
  25934. image: {
  25935. source: "./media/characters/tala-grovehorn/slit.svg"
  25936. }
  25937. },
  25938. },
  25939. [
  25940. ]
  25941. ))
  25942. characterMakers.push(() => makeCharacter(
  25943. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25944. {
  25945. front: {
  25946. height: math.unit(7 + 7 / 12, "feet"),
  25947. weight: math.unit(225, "lb"),
  25948. name: "Front",
  25949. image: {
  25950. source: "./media/characters/epona/front.svg",
  25951. extra: 2445 / 2290,
  25952. bottom: 251 / 2696
  25953. }
  25954. },
  25955. back: {
  25956. height: math.unit(7 + 7 / 12, "feet"),
  25957. weight: math.unit(225, "lb"),
  25958. name: "Back",
  25959. image: {
  25960. source: "./media/characters/epona/back.svg",
  25961. extra: 2546 / 2408,
  25962. bottom: 44 / 2589
  25963. }
  25964. },
  25965. genitals: {
  25966. height: math.unit(1.5, "feet"),
  25967. name: "Genitals",
  25968. image: {
  25969. source: "./media/characters/epona/genitals.svg"
  25970. }
  25971. },
  25972. },
  25973. [
  25974. {
  25975. name: "Normal",
  25976. height: math.unit(7 + 7 / 12, "feet"),
  25977. default: true
  25978. },
  25979. ]
  25980. ))
  25981. characterMakers.push(() => makeCharacter(
  25982. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25983. {
  25984. front: {
  25985. height: math.unit(7, "feet"),
  25986. weight: math.unit(518, "lb"),
  25987. name: "Front",
  25988. image: {
  25989. source: "./media/characters/avia-bloodbourn/front.svg",
  25990. extra: 1466 / 1350,
  25991. bottom: 65 / 1527
  25992. }
  25993. },
  25994. },
  25995. [
  25996. ]
  25997. ))
  25998. characterMakers.push(() => makeCharacter(
  25999. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26000. {
  26001. front: {
  26002. height: math.unit(9.35, "feet"),
  26003. weight: math.unit(600, "lb"),
  26004. name: "Front",
  26005. image: {
  26006. source: "./media/characters/amera/front.svg",
  26007. extra: 891 / 818,
  26008. bottom: 30 / 922.7
  26009. }
  26010. },
  26011. back: {
  26012. height: math.unit(9.35, "feet"),
  26013. weight: math.unit(600, "lb"),
  26014. name: "Back",
  26015. image: {
  26016. source: "./media/characters/amera/back.svg",
  26017. extra: 876 / 824,
  26018. bottom: 6.8 / 884
  26019. }
  26020. },
  26021. dick: {
  26022. height: math.unit(2.14, "feet"),
  26023. name: "Dick",
  26024. image: {
  26025. source: "./media/characters/amera/dick.svg"
  26026. }
  26027. },
  26028. },
  26029. [
  26030. {
  26031. name: "Normal",
  26032. height: math.unit(9.35, "feet"),
  26033. default: true
  26034. },
  26035. ]
  26036. ))
  26037. characterMakers.push(() => makeCharacter(
  26038. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26039. {
  26040. kneeling: {
  26041. height: math.unit(3 + 4 / 12, "feet"),
  26042. weight: math.unit(90, "lb"),
  26043. name: "Kneeling",
  26044. image: {
  26045. source: "./media/characters/rosewen/kneeling.svg",
  26046. extra: 1835 / 1571,
  26047. bottom: 27.7 / 1862
  26048. }
  26049. },
  26050. },
  26051. [
  26052. {
  26053. name: "Normal",
  26054. height: math.unit(3 + 4 / 12, "feet"),
  26055. default: true
  26056. },
  26057. ]
  26058. ))
  26059. characterMakers.push(() => makeCharacter(
  26060. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26061. {
  26062. front: {
  26063. height: math.unit(5 + 10 / 12, "feet"),
  26064. weight: math.unit(200, "lb"),
  26065. name: "Front",
  26066. image: {
  26067. source: "./media/characters/sabah/front.svg",
  26068. extra: 849 / 763,
  26069. bottom: 33.9 / 881
  26070. }
  26071. },
  26072. },
  26073. [
  26074. {
  26075. name: "Normal",
  26076. height: math.unit(5 + 10 / 12, "feet"),
  26077. default: true
  26078. },
  26079. ]
  26080. ))
  26081. characterMakers.push(() => makeCharacter(
  26082. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26083. {
  26084. front: {
  26085. height: math.unit(3 + 5 / 12, "feet"),
  26086. weight: math.unit(40, "kg"),
  26087. name: "Front",
  26088. image: {
  26089. source: "./media/characters/purple-flame/front.svg",
  26090. extra: 1577 / 1412,
  26091. bottom: 97 / 1694
  26092. }
  26093. },
  26094. frontDressed: {
  26095. height: math.unit(3 + 5 / 12, "feet"),
  26096. weight: math.unit(40, "kg"),
  26097. name: "Front (Dressed)",
  26098. image: {
  26099. source: "./media/characters/purple-flame/front-dressed.svg",
  26100. extra: 1577 / 1412,
  26101. bottom: 97 / 1694
  26102. }
  26103. },
  26104. headphones: {
  26105. height: math.unit(0.85, "feet"),
  26106. name: "Headphones",
  26107. image: {
  26108. source: "./media/characters/purple-flame/headphones.svg"
  26109. }
  26110. },
  26111. },
  26112. [
  26113. {
  26114. name: "Really Small",
  26115. height: math.unit(5, "cm")
  26116. },
  26117. {
  26118. name: "Micro",
  26119. height: math.unit(1 + 5 / 12, "feet")
  26120. },
  26121. {
  26122. name: "Normal",
  26123. height: math.unit(3 + 5 / 12, "feet"),
  26124. default: true
  26125. },
  26126. {
  26127. name: "Minimacro",
  26128. height: math.unit(125, "feet")
  26129. },
  26130. {
  26131. name: "Macro",
  26132. height: math.unit(0.5, "miles")
  26133. },
  26134. {
  26135. name: "Megamacro",
  26136. height: math.unit(50, "miles")
  26137. },
  26138. {
  26139. name: "Gigantic",
  26140. height: math.unit(750, "miles")
  26141. },
  26142. {
  26143. name: "Planetary",
  26144. height: math.unit(15000, "miles")
  26145. },
  26146. ]
  26147. ))
  26148. characterMakers.push(() => makeCharacter(
  26149. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26150. {
  26151. front: {
  26152. height: math.unit(14, "feet"),
  26153. weight: math.unit(959, "lb"),
  26154. name: "Front",
  26155. image: {
  26156. source: "./media/characters/arsenal/front.svg",
  26157. extra: 2357 / 2157,
  26158. bottom: 93 / 2458
  26159. }
  26160. },
  26161. },
  26162. [
  26163. {
  26164. name: "Normal",
  26165. height: math.unit(14, "feet"),
  26166. default: true
  26167. },
  26168. ]
  26169. ))
  26170. characterMakers.push(() => makeCharacter(
  26171. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26172. {
  26173. front: {
  26174. height: math.unit(6, "feet"),
  26175. weight: math.unit(150, "lb"),
  26176. name: "Front",
  26177. image: {
  26178. source: "./media/characters/adira/front.svg",
  26179. extra: 1078 / 1029,
  26180. bottom: 87 / 1166
  26181. }
  26182. },
  26183. },
  26184. [
  26185. {
  26186. name: "Micro",
  26187. height: math.unit(4, "inches"),
  26188. default: true
  26189. },
  26190. {
  26191. name: "Macro",
  26192. height: math.unit(50, "feet")
  26193. },
  26194. ]
  26195. ))
  26196. characterMakers.push(() => makeCharacter(
  26197. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26198. {
  26199. front: {
  26200. height: math.unit(16, "feet"),
  26201. weight: math.unit(1000, "lb"),
  26202. name: "Front",
  26203. image: {
  26204. source: "./media/characters/grim/front.svg",
  26205. extra: 622 / 614,
  26206. bottom: 18.1 / 642
  26207. }
  26208. },
  26209. back: {
  26210. height: math.unit(16, "feet"),
  26211. weight: math.unit(1000, "lb"),
  26212. name: "Back",
  26213. image: {
  26214. source: "./media/characters/grim/back.svg",
  26215. extra: 610.6 / 602,
  26216. bottom: 40.8 / 652
  26217. }
  26218. },
  26219. hunched: {
  26220. height: math.unit(9.75, "feet"),
  26221. weight: math.unit(1000, "lb"),
  26222. name: "Hunched",
  26223. image: {
  26224. source: "./media/characters/grim/hunched.svg",
  26225. extra: 304 / 297,
  26226. bottom: 35.4 / 394
  26227. }
  26228. },
  26229. },
  26230. [
  26231. {
  26232. name: "Normal",
  26233. height: math.unit(16, "feet"),
  26234. default: true
  26235. },
  26236. ]
  26237. ))
  26238. characterMakers.push(() => makeCharacter(
  26239. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26240. {
  26241. front: {
  26242. height: math.unit(2.3, "meters"),
  26243. weight: math.unit(300, "lb"),
  26244. name: "Front",
  26245. image: {
  26246. source: "./media/characters/sinja/front-sfw.svg",
  26247. extra: 1393 / 1294,
  26248. bottom: 70 / 1463
  26249. }
  26250. },
  26251. frontNsfw: {
  26252. height: math.unit(2.3, "meters"),
  26253. weight: math.unit(300, "lb"),
  26254. name: "Front (NSFW)",
  26255. image: {
  26256. source: "./media/characters/sinja/front-nsfw.svg",
  26257. extra: 1393 / 1294,
  26258. bottom: 70 / 1463
  26259. }
  26260. },
  26261. back: {
  26262. height: math.unit(2.3, "meters"),
  26263. weight: math.unit(300, "lb"),
  26264. name: "Back",
  26265. image: {
  26266. source: "./media/characters/sinja/back.svg",
  26267. extra: 1393 / 1294,
  26268. bottom: 70 / 1463
  26269. }
  26270. },
  26271. head: {
  26272. height: math.unit(1.771, "feet"),
  26273. name: "Head",
  26274. image: {
  26275. source: "./media/characters/sinja/head.svg"
  26276. }
  26277. },
  26278. slit: {
  26279. height: math.unit(0.8, "feet"),
  26280. name: "Slit",
  26281. image: {
  26282. source: "./media/characters/sinja/slit.svg"
  26283. }
  26284. },
  26285. },
  26286. [
  26287. {
  26288. name: "Normal",
  26289. height: math.unit(2.3, "meters")
  26290. },
  26291. {
  26292. name: "Macro",
  26293. height: math.unit(91, "meters"),
  26294. default: true
  26295. },
  26296. {
  26297. name: "Megamacro",
  26298. height: math.unit(91440, "meters")
  26299. },
  26300. {
  26301. name: "Gigamacro",
  26302. height: math.unit(60960000, "meters")
  26303. },
  26304. {
  26305. name: "Teramacro",
  26306. height: math.unit(9144000000, "meters")
  26307. },
  26308. ]
  26309. ))
  26310. characterMakers.push(() => makeCharacter(
  26311. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26312. {
  26313. front: {
  26314. height: math.unit(1.7, "meters"),
  26315. weight: math.unit(130, "lb"),
  26316. name: "Front",
  26317. image: {
  26318. source: "./media/characters/kyu/front.svg",
  26319. extra: 415 / 395,
  26320. bottom: 5 / 420
  26321. }
  26322. },
  26323. head: {
  26324. height: math.unit(1.75, "feet"),
  26325. name: "Head",
  26326. image: {
  26327. source: "./media/characters/kyu/head.svg"
  26328. }
  26329. },
  26330. foot: {
  26331. height: math.unit(0.81, "feet"),
  26332. name: "Foot",
  26333. image: {
  26334. source: "./media/characters/kyu/foot.svg"
  26335. }
  26336. },
  26337. },
  26338. [
  26339. {
  26340. name: "Normal",
  26341. height: math.unit(1.7, "meters")
  26342. },
  26343. {
  26344. name: "Macro",
  26345. height: math.unit(131, "feet"),
  26346. default: true
  26347. },
  26348. {
  26349. name: "Megamacro",
  26350. height: math.unit(91440, "meters")
  26351. },
  26352. {
  26353. name: "Gigamacro",
  26354. height: math.unit(60960000, "meters")
  26355. },
  26356. {
  26357. name: "Teramacro",
  26358. height: math.unit(9144000000, "meters")
  26359. },
  26360. ]
  26361. ))
  26362. characterMakers.push(() => makeCharacter(
  26363. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26364. {
  26365. front: {
  26366. height: math.unit(7 + 1 / 12, "feet"),
  26367. weight: math.unit(250, "lb"),
  26368. name: "Front",
  26369. image: {
  26370. source: "./media/characters/joey/front.svg",
  26371. extra: 1791 / 1537,
  26372. bottom: 28 / 1816
  26373. }
  26374. },
  26375. },
  26376. [
  26377. {
  26378. name: "Micro",
  26379. height: math.unit(3, "inches")
  26380. },
  26381. {
  26382. name: "Normal",
  26383. height: math.unit(7 + 1 / 12, "feet"),
  26384. default: true
  26385. },
  26386. ]
  26387. ))
  26388. characterMakers.push(() => makeCharacter(
  26389. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26390. {
  26391. front: {
  26392. height: math.unit(165, "cm"),
  26393. weight: math.unit(140, "lb"),
  26394. name: "Front",
  26395. image: {
  26396. source: "./media/characters/sam-evans/front.svg",
  26397. extra: 3417 / 3230,
  26398. bottom: 41.3 / 3417
  26399. }
  26400. },
  26401. frontSixTails: {
  26402. height: math.unit(165, "cm"),
  26403. weight: math.unit(140, "lb"),
  26404. name: "Front-six-tails",
  26405. image: {
  26406. source: "./media/characters/sam-evans/front-six-tails.svg",
  26407. extra: 3417 / 3230,
  26408. bottom: 41.3 / 3417
  26409. }
  26410. },
  26411. back: {
  26412. height: math.unit(165, "cm"),
  26413. weight: math.unit(140, "lb"),
  26414. name: "Back",
  26415. image: {
  26416. source: "./media/characters/sam-evans/back.svg",
  26417. extra: 3227 / 3032,
  26418. bottom: 6.8 / 3234
  26419. }
  26420. },
  26421. face: {
  26422. height: math.unit(0.68, "feet"),
  26423. name: "Face",
  26424. image: {
  26425. source: "./media/characters/sam-evans/face.svg"
  26426. }
  26427. },
  26428. },
  26429. [
  26430. {
  26431. name: "Normal",
  26432. height: math.unit(165, "cm"),
  26433. default: true
  26434. },
  26435. {
  26436. name: "Macro",
  26437. height: math.unit(100, "meters")
  26438. },
  26439. {
  26440. name: "Macro+",
  26441. height: math.unit(800, "meters")
  26442. },
  26443. {
  26444. name: "Macro++",
  26445. height: math.unit(3, "km")
  26446. },
  26447. {
  26448. name: "Macro+++",
  26449. height: math.unit(30, "km")
  26450. },
  26451. ]
  26452. ))
  26453. characterMakers.push(() => makeCharacter(
  26454. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26455. {
  26456. front: {
  26457. height: math.unit(10, "feet"),
  26458. weight: math.unit(750, "lb"),
  26459. name: "Front",
  26460. image: {
  26461. source: "./media/characters/juliet-a/front.svg",
  26462. extra: 1766 / 1720,
  26463. bottom: 43 / 1809
  26464. }
  26465. },
  26466. back: {
  26467. height: math.unit(10, "feet"),
  26468. weight: math.unit(750, "lb"),
  26469. name: "Back",
  26470. image: {
  26471. source: "./media/characters/juliet-a/back.svg",
  26472. extra: 1781 / 1734,
  26473. bottom: 35 / 1810,
  26474. }
  26475. },
  26476. },
  26477. [
  26478. {
  26479. name: "Normal",
  26480. height: math.unit(10, "feet"),
  26481. default: true
  26482. },
  26483. {
  26484. name: "Dragon Form",
  26485. height: math.unit(250, "feet")
  26486. },
  26487. {
  26488. name: "Macro",
  26489. height: math.unit(1000, "feet")
  26490. },
  26491. {
  26492. name: "Megamacro",
  26493. height: math.unit(10000, "feet")
  26494. }
  26495. ]
  26496. ))
  26497. characterMakers.push(() => makeCharacter(
  26498. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26499. {
  26500. regular: {
  26501. height: math.unit(7 + 3 / 12, "feet"),
  26502. weight: math.unit(260, "lb"),
  26503. name: "Regular",
  26504. image: {
  26505. source: "./media/characters/wild/regular.svg",
  26506. extra: 97.45 / 92,
  26507. bottom: 6.8 / 104.3
  26508. }
  26509. },
  26510. biggums: {
  26511. height: math.unit(8 + 6 / 12, "feet"),
  26512. weight: math.unit(425, "lb"),
  26513. name: "Biggums",
  26514. image: {
  26515. source: "./media/characters/wild/biggums.svg",
  26516. extra: 97.45 / 92,
  26517. bottom: 7.5 / 132.34
  26518. }
  26519. },
  26520. mawRegular: {
  26521. height: math.unit(1.24, "feet"),
  26522. name: "Maw (Regular)",
  26523. image: {
  26524. source: "./media/characters/wild/maw.svg"
  26525. }
  26526. },
  26527. mawBiggums: {
  26528. height: math.unit(1.47, "feet"),
  26529. name: "Maw (Biggums)",
  26530. image: {
  26531. source: "./media/characters/wild/maw.svg"
  26532. }
  26533. },
  26534. },
  26535. [
  26536. {
  26537. name: "Normal",
  26538. height: math.unit(7 + 3 / 12, "feet"),
  26539. default: true
  26540. },
  26541. ]
  26542. ))
  26543. characterMakers.push(() => makeCharacter(
  26544. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26545. {
  26546. front: {
  26547. height: math.unit(2.5, "meters"),
  26548. weight: math.unit(200, "kg"),
  26549. name: "Front",
  26550. image: {
  26551. source: "./media/characters/vidar/front.svg",
  26552. extra: 2994 / 2795,
  26553. bottom: 56 / 3061
  26554. }
  26555. },
  26556. back: {
  26557. height: math.unit(2.5, "meters"),
  26558. weight: math.unit(200, "kg"),
  26559. name: "Back",
  26560. image: {
  26561. source: "./media/characters/vidar/back.svg",
  26562. extra: 3131 / 2928,
  26563. bottom: 13.5 / 3141.5
  26564. }
  26565. },
  26566. feral: {
  26567. height: math.unit(2.5, "meters"),
  26568. weight: math.unit(2000, "kg"),
  26569. name: "Feral",
  26570. image: {
  26571. source: "./media/characters/vidar/feral.svg",
  26572. extra: 2790 / 1765,
  26573. bottom: 6 / 2796
  26574. }
  26575. },
  26576. },
  26577. [
  26578. {
  26579. name: "Normal",
  26580. height: math.unit(2.5, "meters"),
  26581. default: true
  26582. },
  26583. {
  26584. name: "Macro",
  26585. height: math.unit(100, "meters")
  26586. },
  26587. ]
  26588. ))
  26589. characterMakers.push(() => makeCharacter(
  26590. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26591. {
  26592. front: {
  26593. height: math.unit(5 + 9 / 12, "feet"),
  26594. weight: math.unit(120, "lb"),
  26595. name: "Front",
  26596. image: {
  26597. source: "./media/characters/ash/front.svg",
  26598. extra: 2189 / 1961,
  26599. bottom: 5.2 / 2194
  26600. }
  26601. },
  26602. },
  26603. [
  26604. {
  26605. name: "Normal",
  26606. height: math.unit(5 + 9 / 12, "feet"),
  26607. default: true
  26608. },
  26609. ]
  26610. ))
  26611. characterMakers.push(() => makeCharacter(
  26612. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26613. {
  26614. front: {
  26615. height: math.unit(9, "feet"),
  26616. weight: math.unit(10000, "lb"),
  26617. name: "Front",
  26618. image: {
  26619. source: "./media/characters/gygabite/front.svg",
  26620. bottom: 31.7 / 537.8,
  26621. extra: 505 / 370
  26622. }
  26623. },
  26624. },
  26625. [
  26626. {
  26627. name: "Normal",
  26628. height: math.unit(9, "feet"),
  26629. default: true
  26630. },
  26631. ]
  26632. ))
  26633. characterMakers.push(() => makeCharacter(
  26634. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26635. {
  26636. front: {
  26637. height: math.unit(12, "feet"),
  26638. weight: math.unit(35000, "lb"),
  26639. name: "Front",
  26640. image: {
  26641. source: "./media/characters/p0tat0/front.svg",
  26642. extra: 1065 / 921,
  26643. bottom: 55.7 / 1121.25
  26644. }
  26645. },
  26646. },
  26647. [
  26648. {
  26649. name: "Normal",
  26650. height: math.unit(12, "feet"),
  26651. default: true
  26652. },
  26653. ]
  26654. ))
  26655. characterMakers.push(() => makeCharacter(
  26656. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26657. {
  26658. side: {
  26659. height: math.unit(6.5, "feet"),
  26660. weight: math.unit(800, "lb"),
  26661. name: "Side",
  26662. image: {
  26663. source: "./media/characters/dusk/side.svg",
  26664. extra: 615 / 373,
  26665. bottom: 53 / 664
  26666. }
  26667. },
  26668. sitting: {
  26669. height: math.unit(7, "feet"),
  26670. weight: math.unit(800, "lb"),
  26671. name: "Sitting",
  26672. image: {
  26673. source: "./media/characters/dusk/sitting.svg",
  26674. extra: 753 / 425,
  26675. bottom: 33 / 774
  26676. }
  26677. },
  26678. head: {
  26679. height: math.unit(6.1, "feet"),
  26680. name: "Head",
  26681. image: {
  26682. source: "./media/characters/dusk/head.svg"
  26683. }
  26684. },
  26685. },
  26686. [
  26687. {
  26688. name: "Normal",
  26689. height: math.unit(7, "feet"),
  26690. default: true
  26691. },
  26692. ]
  26693. ))
  26694. characterMakers.push(() => makeCharacter(
  26695. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26696. {
  26697. front: {
  26698. height: math.unit(15, "feet"),
  26699. weight: math.unit(7000, "lb"),
  26700. name: "Front",
  26701. image: {
  26702. source: "./media/characters/jay-direwolf/front.svg",
  26703. extra: 1810 / 1732,
  26704. bottom: 66 / 1892
  26705. }
  26706. },
  26707. },
  26708. [
  26709. {
  26710. name: "Normal",
  26711. height: math.unit(15, "feet"),
  26712. default: true
  26713. },
  26714. ]
  26715. ))
  26716. characterMakers.push(() => makeCharacter(
  26717. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26718. {
  26719. front: {
  26720. height: math.unit(4 + 9 / 12, "feet"),
  26721. weight: math.unit(130, "lb"),
  26722. name: "Front",
  26723. image: {
  26724. source: "./media/characters/anchovie/front.svg",
  26725. extra: 382 / 350,
  26726. bottom: 25 / 409
  26727. }
  26728. },
  26729. back: {
  26730. height: math.unit(4 + 9 / 12, "feet"),
  26731. weight: math.unit(130, "lb"),
  26732. name: "Back",
  26733. image: {
  26734. source: "./media/characters/anchovie/back.svg",
  26735. extra: 385 / 352,
  26736. bottom: 16.6 / 402
  26737. }
  26738. },
  26739. frontDressed: {
  26740. height: math.unit(4 + 9 / 12, "feet"),
  26741. weight: math.unit(130, "lb"),
  26742. name: "Front (Dressed)",
  26743. image: {
  26744. source: "./media/characters/anchovie/front-dressed.svg",
  26745. extra: 382 / 350,
  26746. bottom: 25 / 409
  26747. }
  26748. },
  26749. backDressed: {
  26750. height: math.unit(4 + 9 / 12, "feet"),
  26751. weight: math.unit(130, "lb"),
  26752. name: "Back (Dressed)",
  26753. image: {
  26754. source: "./media/characters/anchovie/back-dressed.svg",
  26755. extra: 385 / 352,
  26756. bottom: 16.6 / 402
  26757. }
  26758. },
  26759. },
  26760. [
  26761. {
  26762. name: "Micro",
  26763. height: math.unit(6.4, "inches")
  26764. },
  26765. {
  26766. name: "Normal",
  26767. height: math.unit(4 + 9 / 12, "feet"),
  26768. default: true
  26769. },
  26770. ]
  26771. ))
  26772. characterMakers.push(() => makeCharacter(
  26773. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26774. {
  26775. front: {
  26776. height: math.unit(2, "meters"),
  26777. weight: math.unit(180, "lb"),
  26778. name: "Front",
  26779. image: {
  26780. source: "./media/characters/acidrenamon/front.svg",
  26781. extra: 987 / 890,
  26782. bottom: 22.8 / 1009
  26783. }
  26784. },
  26785. back: {
  26786. height: math.unit(2, "meters"),
  26787. weight: math.unit(180, "lb"),
  26788. name: "Back",
  26789. image: {
  26790. source: "./media/characters/acidrenamon/back.svg",
  26791. extra: 983 / 891,
  26792. bottom: 8.4 / 992
  26793. }
  26794. },
  26795. head: {
  26796. height: math.unit(1.92, "feet"),
  26797. name: "Head",
  26798. image: {
  26799. source: "./media/characters/acidrenamon/head.svg"
  26800. }
  26801. },
  26802. rump: {
  26803. height: math.unit(1.72, "feet"),
  26804. name: "Rump",
  26805. image: {
  26806. source: "./media/characters/acidrenamon/rump.svg"
  26807. }
  26808. },
  26809. tail: {
  26810. height: math.unit(4.2, "feet"),
  26811. name: "Tail",
  26812. image: {
  26813. source: "./media/characters/acidrenamon/tail.svg"
  26814. }
  26815. },
  26816. },
  26817. [
  26818. {
  26819. name: "Normal",
  26820. height: math.unit(2, "meters"),
  26821. default: true
  26822. },
  26823. {
  26824. name: "Minimacro",
  26825. height: math.unit(7, "meters")
  26826. },
  26827. {
  26828. name: "Macro",
  26829. height: math.unit(200, "meters")
  26830. },
  26831. {
  26832. name: "Gigamacro",
  26833. height: math.unit(0.2, "earths")
  26834. },
  26835. ]
  26836. ))
  26837. characterMakers.push(() => makeCharacter(
  26838. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26839. {
  26840. front: {
  26841. height: math.unit(6, "feet"),
  26842. weight: math.unit(150, "lb"),
  26843. name: "Front",
  26844. image: {
  26845. source: "./media/characters/kenzie-lee/front.svg",
  26846. extra: 1525 / 1465,
  26847. bottom: 45 / 1570
  26848. }
  26849. },
  26850. side: {
  26851. height: math.unit(6, "feet"),
  26852. weight: math.unit(150, "lb"),
  26853. name: "Side",
  26854. image: {
  26855. source: "./media/characters/kenzie-lee/side.svg",
  26856. extra: 5505 / 5383,
  26857. bottom: 60 / 5573
  26858. }
  26859. },
  26860. paw: {
  26861. height: math.unit(0.57, "feet"),
  26862. name: "Paw",
  26863. image: {
  26864. source: "./media/characters/kenzie-lee/paw.svg"
  26865. }
  26866. },
  26867. },
  26868. [
  26869. {
  26870. name: "Normal",
  26871. height: math.unit(152, "feet"),
  26872. default: true
  26873. },
  26874. {
  26875. name: "Megamacro",
  26876. height: math.unit(7, "miles")
  26877. },
  26878. {
  26879. name: "Gigamacro",
  26880. height: math.unit(8000, "miles")
  26881. },
  26882. ]
  26883. ))
  26884. characterMakers.push(() => makeCharacter(
  26885. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26886. {
  26887. side: {
  26888. height: math.unit(6, "feet"),
  26889. weight: math.unit(150, "lb"),
  26890. name: "Side",
  26891. image: {
  26892. source: "./media/characters/withers/side.svg",
  26893. extra: 1830 / 1728,
  26894. bottom: 96 / 1927
  26895. }
  26896. },
  26897. front: {
  26898. height: math.unit(6, "feet"),
  26899. weight: math.unit(150, "lb"),
  26900. name: "Front",
  26901. image: {
  26902. source: "./media/characters/withers/front.svg",
  26903. extra: 1514 / 1438,
  26904. bottom: 118 / 1632
  26905. }
  26906. },
  26907. },
  26908. [
  26909. {
  26910. name: "Macro",
  26911. height: math.unit(168, "feet"),
  26912. default: true
  26913. },
  26914. {
  26915. name: "Megamacro",
  26916. height: math.unit(15, "miles")
  26917. }
  26918. ]
  26919. ))
  26920. characterMakers.push(() => makeCharacter(
  26921. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26922. {
  26923. front: {
  26924. height: math.unit(6 + 7 / 12, "feet"),
  26925. weight: math.unit(250, "lb"),
  26926. name: "Front",
  26927. image: {
  26928. source: "./media/characters/nemoskii/front.svg",
  26929. extra: 2270 / 1734,
  26930. bottom: 86 / 2354
  26931. }
  26932. },
  26933. back: {
  26934. height: math.unit(6 + 7 / 12, "feet"),
  26935. weight: math.unit(250, "lb"),
  26936. name: "Back",
  26937. image: {
  26938. source: "./media/characters/nemoskii/back.svg",
  26939. extra: 1845 / 1788,
  26940. bottom: 10.5 / 1852
  26941. }
  26942. },
  26943. head: {
  26944. height: math.unit(1.31, "feet"),
  26945. name: "Head",
  26946. image: {
  26947. source: "./media/characters/nemoskii/head.svg"
  26948. }
  26949. },
  26950. },
  26951. [
  26952. {
  26953. name: "Micro",
  26954. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  26955. },
  26956. {
  26957. name: "Normal",
  26958. height: math.unit(6 + 7 / 12, "feet"),
  26959. default: true
  26960. },
  26961. {
  26962. name: "Macro",
  26963. height: math.unit((6 + 7 / 12) * 150, "feet")
  26964. },
  26965. {
  26966. name: "Macro+",
  26967. height: math.unit((6 + 7 / 12) * 500, "feet")
  26968. },
  26969. {
  26970. name: "Megamacro",
  26971. height: math.unit((6 + 7 / 12) * 100000, "feet")
  26972. },
  26973. ]
  26974. ))
  26975. characterMakers.push(() => makeCharacter(
  26976. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26977. {
  26978. front: {
  26979. height: math.unit(1, "mile"),
  26980. weight: math.unit(265261.9, "lb"),
  26981. name: "Front",
  26982. image: {
  26983. source: "./media/characters/shui/front.svg",
  26984. extra: 1633 / 1564,
  26985. bottom: 91.5 / 1726
  26986. }
  26987. },
  26988. },
  26989. [
  26990. {
  26991. name: "Macro",
  26992. height: math.unit(1, "mile"),
  26993. default: true
  26994. },
  26995. ]
  26996. ))
  26997. characterMakers.push(() => makeCharacter(
  26998. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26999. {
  27000. front: {
  27001. height: math.unit(12 + 6 / 12, "feet"),
  27002. weight: math.unit(1342, "lb"),
  27003. name: "Front",
  27004. image: {
  27005. source: "./media/characters/arokh-takakura/front.svg",
  27006. extra: 1089 / 1043,
  27007. bottom: 77.4 / 1176.7
  27008. }
  27009. },
  27010. back: {
  27011. height: math.unit(12 + 6 / 12, "feet"),
  27012. weight: math.unit(1342, "lb"),
  27013. name: "Back",
  27014. image: {
  27015. source: "./media/characters/arokh-takakura/back.svg",
  27016. extra: 1046 / 1019,
  27017. bottom: 102 / 1150
  27018. }
  27019. },
  27020. },
  27021. [
  27022. {
  27023. name: "Big",
  27024. height: math.unit(12 + 6 / 12, "feet"),
  27025. default: true
  27026. },
  27027. ]
  27028. ))
  27029. characterMakers.push(() => makeCharacter(
  27030. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27031. {
  27032. front: {
  27033. height: math.unit(5 + 6 / 12, "feet"),
  27034. weight: math.unit(150, "lb"),
  27035. name: "Front",
  27036. image: {
  27037. source: "./media/characters/theo/front.svg",
  27038. extra: 1184 / 1131,
  27039. bottom: 7.4 / 1191
  27040. }
  27041. },
  27042. },
  27043. [
  27044. {
  27045. name: "Micro",
  27046. height: math.unit(5, "inches")
  27047. },
  27048. {
  27049. name: "Normal",
  27050. height: math.unit(5 + 6 / 12, "feet"),
  27051. default: true
  27052. },
  27053. ]
  27054. ))
  27055. characterMakers.push(() => makeCharacter(
  27056. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27057. {
  27058. front: {
  27059. height: math.unit(5 + 9 / 12, "feet"),
  27060. weight: math.unit(130, "lb"),
  27061. name: "Front",
  27062. image: {
  27063. source: "./media/characters/cecelia-swift/front.svg",
  27064. extra: 502 / 484,
  27065. bottom: 23 / 523
  27066. }
  27067. },
  27068. back: {
  27069. height: math.unit(5 + 9 / 12, "feet"),
  27070. weight: math.unit(130, "lb"),
  27071. name: "Back",
  27072. image: {
  27073. source: "./media/characters/cecelia-swift/back.svg",
  27074. extra: 499 / 485,
  27075. bottom: 12 / 511
  27076. }
  27077. },
  27078. head: {
  27079. height: math.unit(0.90, "feet"),
  27080. name: "Head",
  27081. image: {
  27082. source: "./media/characters/cecelia-swift/head.svg"
  27083. }
  27084. },
  27085. rump: {
  27086. height: math.unit(1.75, "feet"),
  27087. name: "Rump",
  27088. image: {
  27089. source: "./media/characters/cecelia-swift/rump.svg"
  27090. }
  27091. },
  27092. },
  27093. [
  27094. {
  27095. name: "Normal",
  27096. height: math.unit(5 + 9 / 12, "feet"),
  27097. default: true
  27098. },
  27099. {
  27100. name: "Big",
  27101. height: math.unit(50, "feet")
  27102. },
  27103. {
  27104. name: "Macro",
  27105. height: math.unit(100, "feet")
  27106. },
  27107. {
  27108. name: "Macro+",
  27109. height: math.unit(500, "feet")
  27110. },
  27111. {
  27112. name: "Macro++",
  27113. height: math.unit(1000, "feet")
  27114. },
  27115. ]
  27116. ))
  27117. characterMakers.push(() => makeCharacter(
  27118. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27119. {
  27120. front: {
  27121. height: math.unit(6, "feet"),
  27122. weight: math.unit(150, "lb"),
  27123. name: "Front",
  27124. image: {
  27125. source: "./media/characters/kaunan/front.svg",
  27126. extra: 2890 / 2523,
  27127. bottom: 49 / 2939
  27128. }
  27129. },
  27130. },
  27131. [
  27132. {
  27133. name: "Macro",
  27134. height: math.unit(150, "feet"),
  27135. default: true
  27136. },
  27137. ]
  27138. ))
  27139. characterMakers.push(() => makeCharacter(
  27140. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27141. {
  27142. front: {
  27143. height: math.unit(175, "cm"),
  27144. weight: math.unit(60, "kg"),
  27145. name: "Front",
  27146. image: {
  27147. source: "./media/characters/fei/front.svg",
  27148. extra: 2581 / 2400,
  27149. bottom: 82.2 / 2663
  27150. }
  27151. },
  27152. },
  27153. [
  27154. {
  27155. name: "Mortal",
  27156. height: math.unit(175, "cm")
  27157. },
  27158. {
  27159. name: "Normal",
  27160. height: math.unit(3500, "m"),
  27161. default: true
  27162. },
  27163. {
  27164. name: "Stroll",
  27165. height: math.unit(17.5, "km")
  27166. },
  27167. {
  27168. name: "Showoff",
  27169. height: math.unit(175, "km")
  27170. },
  27171. ]
  27172. ))
  27173. characterMakers.push(() => makeCharacter(
  27174. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27175. {
  27176. front: {
  27177. height: math.unit(7, "feet"),
  27178. weight: math.unit(1000, "kg"),
  27179. name: "Front",
  27180. image: {
  27181. source: "./media/characters/edrax/front.svg",
  27182. extra: 2838 / 2550,
  27183. bottom: 130 / 2968
  27184. }
  27185. },
  27186. },
  27187. [
  27188. {
  27189. name: "Small",
  27190. height: math.unit(7, "feet")
  27191. },
  27192. {
  27193. name: "Normal",
  27194. height: math.unit(1500, "meters")
  27195. },
  27196. {
  27197. name: "Mega",
  27198. height: math.unit(12000000, "km"),
  27199. default: true
  27200. },
  27201. {
  27202. name: "Megamacro",
  27203. height: math.unit(10600000, "lightyears")
  27204. },
  27205. {
  27206. name: "Hypermacro",
  27207. height: math.unit(256, "yottameters")
  27208. },
  27209. ]
  27210. ))
  27211. characterMakers.push(() => makeCharacter(
  27212. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27213. {
  27214. front: {
  27215. height: math.unit(10, "feet"),
  27216. weight: math.unit(750, "lb"),
  27217. name: "Front",
  27218. image: {
  27219. source: "./media/characters/clove/front.svg",
  27220. extra: 2031 / 1860,
  27221. bottom: 47.8 / 2080
  27222. }
  27223. },
  27224. back: {
  27225. height: math.unit(10, "feet"),
  27226. weight: math.unit(750, "lb"),
  27227. name: "Back",
  27228. image: {
  27229. source: "./media/characters/clove/back.svg",
  27230. extra: 2025 / 1859,
  27231. bottom: 46 / 2071
  27232. }
  27233. },
  27234. },
  27235. [
  27236. {
  27237. name: "Normal",
  27238. height: math.unit(10, "feet"),
  27239. default: true
  27240. },
  27241. ]
  27242. ))
  27243. characterMakers.push(() => makeCharacter(
  27244. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27245. {
  27246. front: {
  27247. height: math.unit(4, "feet"),
  27248. weight: math.unit(50, "lb"),
  27249. name: "Front",
  27250. image: {
  27251. source: "./media/characters/alex-rabbit/front.svg",
  27252. extra: 507 / 458,
  27253. bottom: 18.5 / 527
  27254. }
  27255. },
  27256. back: {
  27257. height: math.unit(4, "feet"),
  27258. weight: math.unit(50, "lb"),
  27259. name: "Back",
  27260. image: {
  27261. source: "./media/characters/alex-rabbit/back.svg",
  27262. extra: 502 / 460,
  27263. bottom: 18.9 / 521
  27264. }
  27265. },
  27266. },
  27267. [
  27268. {
  27269. name: "Normal",
  27270. height: math.unit(4, "feet"),
  27271. default: true
  27272. },
  27273. ]
  27274. ))
  27275. characterMakers.push(() => makeCharacter(
  27276. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27277. {
  27278. front: {
  27279. height: math.unit(1 + 3 / 12, "feet"),
  27280. weight: math.unit(80, "lb"),
  27281. name: "Front",
  27282. image: {
  27283. source: "./media/characters/zander-rose/front.svg",
  27284. extra: 916 / 797,
  27285. bottom: 17 / 933
  27286. }
  27287. },
  27288. back: {
  27289. height: math.unit(1 + 3 / 12, "feet"),
  27290. weight: math.unit(80, "lb"),
  27291. name: "Back",
  27292. image: {
  27293. source: "./media/characters/zander-rose/back.svg",
  27294. extra: 903 / 779,
  27295. bottom: 31 / 934
  27296. }
  27297. },
  27298. },
  27299. [
  27300. {
  27301. name: "Normal",
  27302. height: math.unit(1 + 3 / 12, "feet"),
  27303. default: true
  27304. },
  27305. ]
  27306. ))
  27307. characterMakers.push(() => makeCharacter(
  27308. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27309. {
  27310. anthro: {
  27311. height: math.unit(6, "feet"),
  27312. weight: math.unit(150, "lb"),
  27313. name: "Anthro",
  27314. image: {
  27315. source: "./media/characters/razz/anthro.svg",
  27316. extra: 1437 / 1343,
  27317. bottom: 48 / 1485
  27318. }
  27319. },
  27320. feral: {
  27321. height: math.unit(6, "feet"),
  27322. weight: math.unit(150, "lb"),
  27323. name: "Feral",
  27324. image: {
  27325. source: "./media/characters/razz/feral.svg",
  27326. extra: 2569 / 1385,
  27327. bottom: 95 / 2664
  27328. }
  27329. },
  27330. },
  27331. [
  27332. {
  27333. name: "Normal",
  27334. height: math.unit(6, "feet"),
  27335. default: true
  27336. },
  27337. ]
  27338. ))
  27339. characterMakers.push(() => makeCharacter(
  27340. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27341. {
  27342. front: {
  27343. height: math.unit(9 + 4 / 12, "feet"),
  27344. weight: math.unit(500, "lb"),
  27345. name: "Front",
  27346. image: {
  27347. source: "./media/characters/morrigan/front.svg",
  27348. extra: 2707 / 2579,
  27349. bottom: 156 / 2863
  27350. }
  27351. },
  27352. },
  27353. [
  27354. {
  27355. name: "Normal",
  27356. height: math.unit(9 + 4 / 12, "feet"),
  27357. default: true
  27358. },
  27359. ]
  27360. ))
  27361. characterMakers.push(() => makeCharacter(
  27362. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27363. {
  27364. front: {
  27365. height: math.unit(5, "stories"),
  27366. weight: math.unit(4000, "lb"),
  27367. name: "Front",
  27368. image: {
  27369. source: "./media/characters/jenene/front.svg",
  27370. extra: 1780 / 1710,
  27371. bottom: 57 / 1837
  27372. }
  27373. },
  27374. },
  27375. [
  27376. {
  27377. name: "Normal",
  27378. height: math.unit(5, "stories"),
  27379. default: true
  27380. },
  27381. ]
  27382. ))
  27383. characterMakers.push(() => makeCharacter(
  27384. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27385. {
  27386. front: {
  27387. height: math.unit(6, "feet"),
  27388. weight: math.unit(150, "lb"),
  27389. name: "Front",
  27390. image: {
  27391. source: "./media/characters/vix-archaser/front.svg",
  27392. extra: 2767 / 2562,
  27393. bottom: 36 / 2803
  27394. }
  27395. },
  27396. },
  27397. [
  27398. {
  27399. name: "Micro",
  27400. height: math.unit(1, "foot")
  27401. },
  27402. {
  27403. name: "Normal",
  27404. height: math.unit(6 + 5 / 12, "feet")
  27405. },
  27406. {
  27407. name: "Minimacro",
  27408. height: math.unit(500, "feet")
  27409. },
  27410. {
  27411. name: "Macro",
  27412. height: math.unit(4, "miles")
  27413. },
  27414. {
  27415. name: "Megamacro",
  27416. height: math.unit(250, "miles"),
  27417. default: true
  27418. },
  27419. {
  27420. name: "Gigamacro",
  27421. height: math.unit(1, "universe")
  27422. },
  27423. {
  27424. name: "Endgame",
  27425. height: math.unit(100, "multiverses")
  27426. }
  27427. ]
  27428. ))
  27429. characterMakers.push(() => makeCharacter(
  27430. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27431. {
  27432. taurSfw: {
  27433. height: math.unit(10, "meters"),
  27434. weight: math.unit(17500, "kg"),
  27435. name: "Taur",
  27436. image: {
  27437. source: "./media/characters/faey/taur-sfw.svg",
  27438. extra: 1200 / 968,
  27439. bottom: 41 / 1241
  27440. }
  27441. },
  27442. chestmaw: {
  27443. height: math.unit(2.01, "meters"),
  27444. name: "Chestmaw",
  27445. image: {
  27446. source: "./media/characters/faey/chestmaw.svg"
  27447. }
  27448. },
  27449. foot: {
  27450. height: math.unit(2.43, "meters"),
  27451. name: "Foot",
  27452. image: {
  27453. source: "./media/characters/faey/foot.svg"
  27454. }
  27455. },
  27456. jaws: {
  27457. height: math.unit(1.66, "meters"),
  27458. name: "Jaws",
  27459. image: {
  27460. source: "./media/characters/faey/jaws.svg"
  27461. }
  27462. },
  27463. tongues: {
  27464. height: math.unit(2.01, "meters"),
  27465. name: "Tongues",
  27466. image: {
  27467. source: "./media/characters/faey/tongues.svg"
  27468. }
  27469. },
  27470. },
  27471. [
  27472. {
  27473. name: "Small",
  27474. height: math.unit(10, "meters"),
  27475. default: true
  27476. },
  27477. {
  27478. name: "Big",
  27479. height: math.unit(500000, "km")
  27480. },
  27481. ]
  27482. ))
  27483. characterMakers.push(() => makeCharacter(
  27484. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27485. {
  27486. front: {
  27487. height: math.unit(7, "feet"),
  27488. weight: math.unit(275, "lb"),
  27489. name: "Front",
  27490. image: {
  27491. source: "./media/characters/roku/front.svg",
  27492. extra: 903 / 878,
  27493. bottom: 37 / 940
  27494. }
  27495. },
  27496. },
  27497. [
  27498. {
  27499. name: "Normal",
  27500. height: math.unit(7, "feet"),
  27501. default: true
  27502. },
  27503. {
  27504. name: "Macro",
  27505. height: math.unit(500, "feet")
  27506. },
  27507. {
  27508. name: "Megamacro",
  27509. height: math.unit(200, "miles")
  27510. },
  27511. ]
  27512. ))
  27513. characterMakers.push(() => makeCharacter(
  27514. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27515. {
  27516. front: {
  27517. height: math.unit(6 + 2 / 12, "feet"),
  27518. weight: math.unit(150, "lb"),
  27519. name: "Front",
  27520. image: {
  27521. source: "./media/characters/lira/front.svg",
  27522. extra: 1727 / 1605,
  27523. bottom: 26 / 1753
  27524. }
  27525. },
  27526. back: {
  27527. height: math.unit(6 + 2 / 12, "feet"),
  27528. weight: math.unit(150, "lb"),
  27529. name: "Back",
  27530. image: {
  27531. source: "./media/characters/lira/back.svg",
  27532. extra: 1713 / 159,
  27533. bottom: 20 / 1733
  27534. }
  27535. },
  27536. hand: {
  27537. height: math.unit(0.75, "feet"),
  27538. name: "Hand",
  27539. image: {
  27540. source: "./media/characters/lira/hand.svg"
  27541. }
  27542. },
  27543. maw: {
  27544. height: math.unit(0.65, "feet"),
  27545. name: "Maw",
  27546. image: {
  27547. source: "./media/characters/lira/maw.svg"
  27548. }
  27549. },
  27550. pawDigi: {
  27551. height: math.unit(1.6, "feet"),
  27552. name: "Paw Digi",
  27553. image: {
  27554. source: "./media/characters/lira/paw-digi.svg"
  27555. }
  27556. },
  27557. pawPlanti: {
  27558. height: math.unit(1.4, "feet"),
  27559. name: "Paw Planti",
  27560. image: {
  27561. source: "./media/characters/lira/paw-planti.svg"
  27562. }
  27563. },
  27564. },
  27565. [
  27566. {
  27567. name: "Normal",
  27568. height: math.unit(6 + 2 / 12, "feet"),
  27569. default: true
  27570. },
  27571. {
  27572. name: "Macro",
  27573. height: math.unit(100, "feet")
  27574. },
  27575. {
  27576. name: "Macro²",
  27577. height: math.unit(1600, "feet")
  27578. },
  27579. {
  27580. name: "Planetary",
  27581. height: math.unit(20, "earths")
  27582. },
  27583. ]
  27584. ))
  27585. characterMakers.push(() => makeCharacter(
  27586. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27587. {
  27588. front: {
  27589. height: math.unit(6, "feet"),
  27590. weight: math.unit(150, "lb"),
  27591. name: "Front",
  27592. image: {
  27593. source: "./media/characters/hadjet/front.svg",
  27594. extra: 1480 / 1346,
  27595. bottom: 26 / 1506
  27596. }
  27597. },
  27598. frontNsfw: {
  27599. height: math.unit(6, "feet"),
  27600. weight: math.unit(150, "lb"),
  27601. name: "Front (NSFW)",
  27602. image: {
  27603. source: "./media/characters/hadjet/front-nsfw.svg",
  27604. extra: 1440 / 1358,
  27605. bottom: 52 / 1492
  27606. }
  27607. },
  27608. },
  27609. [
  27610. {
  27611. name: "Macro",
  27612. height: math.unit(10, "stories"),
  27613. default: true
  27614. },
  27615. {
  27616. name: "Megamacro",
  27617. height: math.unit(1.5, "miles")
  27618. },
  27619. {
  27620. name: "Megamacro+",
  27621. height: math.unit(5, "miles")
  27622. },
  27623. ]
  27624. ))
  27625. characterMakers.push(() => makeCharacter(
  27626. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27627. {
  27628. side: {
  27629. height: math.unit(106, "feet"),
  27630. weight: math.unit(500, "tonnes"),
  27631. name: "Side",
  27632. image: {
  27633. source: "./media/characters/kodran/side.svg",
  27634. extra: 553 / 480,
  27635. bottom: 33 / 586
  27636. }
  27637. },
  27638. front: {
  27639. height: math.unit(132, "feet"),
  27640. weight: math.unit(500, "tonnes"),
  27641. name: "Front",
  27642. image: {
  27643. source: "./media/characters/kodran/front.svg",
  27644. extra: 667 / 643,
  27645. bottom: 42 / 709
  27646. }
  27647. },
  27648. flying: {
  27649. height: math.unit(350, "feet"),
  27650. weight: math.unit(500, "tonnes"),
  27651. name: "Flying",
  27652. image: {
  27653. source: "./media/characters/kodran/flying.svg"
  27654. }
  27655. },
  27656. foot: {
  27657. height: math.unit(33, "feet"),
  27658. name: "Foot",
  27659. image: {
  27660. source: "./media/characters/kodran/foot.svg"
  27661. }
  27662. },
  27663. footFront: {
  27664. height: math.unit(19, "feet"),
  27665. name: "Foot (Front)",
  27666. image: {
  27667. source: "./media/characters/kodran/foot-front.svg",
  27668. extra: 261 / 261,
  27669. bottom: 91 / 352
  27670. }
  27671. },
  27672. headFront: {
  27673. height: math.unit(53, "feet"),
  27674. name: "Head (Front)",
  27675. image: {
  27676. source: "./media/characters/kodran/head-front.svg"
  27677. }
  27678. },
  27679. headSide: {
  27680. height: math.unit(65, "feet"),
  27681. name: "Head (Side)",
  27682. image: {
  27683. source: "./media/characters/kodran/head-side.svg"
  27684. }
  27685. },
  27686. throat: {
  27687. height: math.unit(79, "feet"),
  27688. name: "Throat",
  27689. image: {
  27690. source: "./media/characters/kodran/throat.svg"
  27691. }
  27692. },
  27693. },
  27694. [
  27695. {
  27696. name: "Large",
  27697. height: math.unit(106, "feet"),
  27698. default: true
  27699. },
  27700. ]
  27701. ))
  27702. characterMakers.push(() => makeCharacter(
  27703. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27704. {
  27705. side: {
  27706. height: math.unit(11, "feet"),
  27707. weight: math.unit(150, "lb"),
  27708. name: "Side",
  27709. image: {
  27710. source: "./media/characters/pyxaron/side.svg",
  27711. extra: 305 / 195,
  27712. bottom: 17 / 322
  27713. }
  27714. },
  27715. },
  27716. [
  27717. {
  27718. name: "Normal",
  27719. height: math.unit(11, "feet"),
  27720. default: true
  27721. },
  27722. ]
  27723. ))
  27724. characterMakers.push(() => makeCharacter(
  27725. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27726. {
  27727. front: {
  27728. height: math.unit(6, "feet"),
  27729. weight: math.unit(150, "lb"),
  27730. name: "Front",
  27731. image: {
  27732. source: "./media/characters/meep/front.svg",
  27733. extra: 88 / 80,
  27734. bottom: 6 / 94
  27735. }
  27736. },
  27737. },
  27738. [
  27739. {
  27740. name: "Fun Sized",
  27741. height: math.unit(2, "inches"),
  27742. default: true
  27743. },
  27744. {
  27745. name: "Friend Sized",
  27746. height: math.unit(8, "inches")
  27747. },
  27748. ]
  27749. ))
  27750. characterMakers.push(() => makeCharacter(
  27751. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27752. {
  27753. front: {
  27754. height: math.unit(15, "feet"),
  27755. weight: math.unit(2500, "lb"),
  27756. name: "Front",
  27757. image: {
  27758. source: "./media/characters/holly-rabbit/front.svg",
  27759. extra: 1433 / 1233,
  27760. bottom: 125 / 1558
  27761. }
  27762. },
  27763. dick: {
  27764. height: math.unit(4.6, "feet"),
  27765. name: "Dick",
  27766. image: {
  27767. source: "./media/characters/holly-rabbit/dick.svg"
  27768. }
  27769. },
  27770. },
  27771. [
  27772. {
  27773. name: "Normal",
  27774. height: math.unit(15, "feet"),
  27775. default: true
  27776. },
  27777. {
  27778. name: "Macro",
  27779. height: math.unit(250, "feet")
  27780. },
  27781. {
  27782. name: "Macro+",
  27783. height: math.unit(2500, "feet")
  27784. },
  27785. ]
  27786. ))
  27787. characterMakers.push(() => makeCharacter(
  27788. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27789. {
  27790. front: {
  27791. height: math.unit(3.02, "meters"),
  27792. weight: math.unit(500, "kg"),
  27793. name: "Front",
  27794. image: {
  27795. source: "./media/characters/drena/front.svg",
  27796. extra: 282 / 243,
  27797. bottom: 8 / 290
  27798. }
  27799. },
  27800. side: {
  27801. height: math.unit(3.02, "meters"),
  27802. weight: math.unit(500, "kg"),
  27803. name: "Side",
  27804. image: {
  27805. source: "./media/characters/drena/side.svg",
  27806. extra: 280 / 245,
  27807. bottom: 10 / 290
  27808. }
  27809. },
  27810. back: {
  27811. height: math.unit(3.02, "meters"),
  27812. weight: math.unit(500, "kg"),
  27813. name: "Back",
  27814. image: {
  27815. source: "./media/characters/drena/back.svg",
  27816. extra: 278 / 243,
  27817. bottom: 2 / 280
  27818. }
  27819. },
  27820. foot: {
  27821. height: math.unit(0.75, "meters"),
  27822. name: "Foot",
  27823. image: {
  27824. source: "./media/characters/drena/foot.svg"
  27825. }
  27826. },
  27827. maw: {
  27828. height: math.unit(0.82, "meters"),
  27829. name: "Maw",
  27830. image: {
  27831. source: "./media/characters/drena/maw.svg"
  27832. }
  27833. },
  27834. rump: {
  27835. height: math.unit(0.93, "meters"),
  27836. name: "Rump",
  27837. image: {
  27838. source: "./media/characters/drena/rump.svg"
  27839. }
  27840. },
  27841. },
  27842. [
  27843. {
  27844. name: "Normal",
  27845. height: math.unit(3.02, "meters"),
  27846. default: true
  27847. },
  27848. ]
  27849. ))
  27850. characterMakers.push(() => makeCharacter(
  27851. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27852. {
  27853. front: {
  27854. height: math.unit(6 + 4 / 12, "feet"),
  27855. weight: math.unit(250, "lb"),
  27856. name: "Front",
  27857. image: {
  27858. source: "./media/characters/remmyzilla/front.svg",
  27859. extra: 4033 / 3588,
  27860. bottom: 123 / 4156
  27861. }
  27862. },
  27863. back: {
  27864. height: math.unit(6 + 4 / 12, "feet"),
  27865. weight: math.unit(250, "lb"),
  27866. name: "Back",
  27867. image: {
  27868. source: "./media/characters/remmyzilla/back.svg",
  27869. extra: 2687 / 2555,
  27870. bottom: 48 / 2735
  27871. }
  27872. },
  27873. frontFancy: {
  27874. height: math.unit(6 + 4 / 12, "feet"),
  27875. weight: math.unit(250, "lb"),
  27876. name: "Front (Fancy)",
  27877. image: {
  27878. source: "./media/characters/remmyzilla/front-fancy.svg",
  27879. extra: 4119 / 3419,
  27880. bottom: 237 / 4356
  27881. }
  27882. },
  27883. paw: {
  27884. height: math.unit(1.73, "feet"),
  27885. name: "Paw",
  27886. image: {
  27887. source: "./media/characters/remmyzilla/paw.svg"
  27888. }
  27889. },
  27890. maw: {
  27891. height: math.unit(1.73, "feet"),
  27892. name: "Maw",
  27893. image: {
  27894. source: "./media/characters/remmyzilla/maw.svg"
  27895. }
  27896. },
  27897. },
  27898. [
  27899. {
  27900. name: "Normal",
  27901. height: math.unit(6 + 4 / 12, "feet")
  27902. },
  27903. {
  27904. name: "Minimacro",
  27905. height: math.unit(12 + 8 / 12, "feet")
  27906. },
  27907. {
  27908. name: "Normal",
  27909. height: math.unit(640, "feet"),
  27910. default: true
  27911. },
  27912. {
  27913. name: "Megamacro",
  27914. height: math.unit(6400, "feet")
  27915. },
  27916. {
  27917. name: "Gigamacro",
  27918. height: math.unit(64000, "miles")
  27919. },
  27920. ]
  27921. ))
  27922. characterMakers.push(() => makeCharacter(
  27923. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27924. {
  27925. front: {
  27926. height: math.unit(2.5, "meters"),
  27927. weight: math.unit(300, "lb"),
  27928. name: "Front",
  27929. image: {
  27930. source: "./media/characters/lawrence/front.svg",
  27931. extra: 357 / 335,
  27932. bottom: 30 / 387
  27933. }
  27934. },
  27935. back: {
  27936. height: math.unit(2.5, "meters"),
  27937. weight: math.unit(300, "lb"),
  27938. name: "Back",
  27939. image: {
  27940. source: "./media/characters/lawrence/back.svg",
  27941. extra: 357 / 338,
  27942. bottom: 16 / 373
  27943. }
  27944. },
  27945. head: {
  27946. height: math.unit(0.9, "meter"),
  27947. name: "Head",
  27948. image: {
  27949. source: "./media/characters/lawrence/head.svg"
  27950. }
  27951. },
  27952. maw: {
  27953. height: math.unit(0.7, "meter"),
  27954. name: "Maw",
  27955. image: {
  27956. source: "./media/characters/lawrence/maw.svg"
  27957. }
  27958. },
  27959. footBottom: {
  27960. height: math.unit(0.5, "meter"),
  27961. name: "Foot (Bottom)",
  27962. image: {
  27963. source: "./media/characters/lawrence/foot-bottom.svg"
  27964. }
  27965. },
  27966. footTop: {
  27967. height: math.unit(0.5, "meter"),
  27968. name: "Foot (Top)",
  27969. image: {
  27970. source: "./media/characters/lawrence/foot-top.svg"
  27971. }
  27972. },
  27973. },
  27974. [
  27975. {
  27976. name: "Normal",
  27977. height: math.unit(2.5, "meters"),
  27978. default: true
  27979. },
  27980. {
  27981. name: "Macro",
  27982. height: math.unit(95, "meters")
  27983. },
  27984. {
  27985. name: "Megamacro",
  27986. height: math.unit(150, "km")
  27987. },
  27988. ]
  27989. ))
  27990. characterMakers.push(() => makeCharacter(
  27991. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27992. {
  27993. front: {
  27994. height: math.unit(4.2, "meters"),
  27995. name: "Front",
  27996. image: {
  27997. source: "./media/characters/sydney/front.svg",
  27998. extra: 1323 / 1277,
  27999. bottom: 111 / 1434
  28000. }
  28001. },
  28002. },
  28003. [
  28004. {
  28005. name: "Normal",
  28006. height: math.unit(4.2, "meters"),
  28007. default: true
  28008. },
  28009. ]
  28010. ))
  28011. characterMakers.push(() => makeCharacter(
  28012. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28013. {
  28014. back: {
  28015. height: math.unit(201, "feet"),
  28016. name: "Back",
  28017. image: {
  28018. source: "./media/characters/jessica/back.svg",
  28019. extra: 273 / 259,
  28020. bottom: 7 / 280
  28021. }
  28022. },
  28023. },
  28024. [
  28025. {
  28026. name: "Normal",
  28027. height: math.unit(201, "feet"),
  28028. default: true
  28029. },
  28030. {
  28031. name: "Megamacro",
  28032. height: math.unit(8, "miles")
  28033. },
  28034. ]
  28035. ))
  28036. characterMakers.push(() => makeCharacter(
  28037. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28038. {
  28039. side: {
  28040. height: math.unit(320, "cm"),
  28041. name: "Side",
  28042. image: {
  28043. source: "./media/characters/victoria/side.svg",
  28044. extra: 778 / 346,
  28045. bottom: 56 / 834
  28046. }
  28047. },
  28048. maw: {
  28049. height: math.unit(5.9, "feet"),
  28050. name: "Maw",
  28051. image: {
  28052. source: "./media/characters/victoria/maw.svg"
  28053. }
  28054. },
  28055. },
  28056. [
  28057. {
  28058. name: "Normal",
  28059. height: math.unit(320, "cm"),
  28060. default: true
  28061. },
  28062. ]
  28063. ))
  28064. characterMakers.push(() => makeCharacter(
  28065. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28066. {
  28067. front: {
  28068. height: math.unit(5 + 6 / 12, "feet"),
  28069. name: "Front",
  28070. image: {
  28071. source: "./media/characters/cat/front.svg",
  28072. extra: 1374 / 1257,
  28073. bottom: 59 / 1433
  28074. }
  28075. },
  28076. back: {
  28077. height: math.unit(5 + 6 / 12, "feet"),
  28078. name: "Back",
  28079. image: {
  28080. source: "./media/characters/cat/back.svg",
  28081. extra: 1337 / 1226,
  28082. bottom: 34 / 1371
  28083. }
  28084. },
  28085. taur: {
  28086. height: math.unit(7, "feet"),
  28087. name: "Taur",
  28088. image: {
  28089. source: "./media/characters/cat/taur.svg",
  28090. extra: 1345 / 1231,
  28091. bottom: 66 / 1411
  28092. }
  28093. },
  28094. lucario: {
  28095. height: math.unit(4, "feet"),
  28096. name: "Lucario",
  28097. image: {
  28098. source: "./media/characters/cat/lucario.svg",
  28099. extra: 1470 / 1318,
  28100. bottom: 65 / 1535
  28101. }
  28102. },
  28103. megaLucario: {
  28104. height: math.unit(4, "feet"),
  28105. name: "Mega Lucario",
  28106. image: {
  28107. source: "./media/characters/cat/mega-lucario.svg",
  28108. extra: 1515 / 1319,
  28109. bottom: 63 / 1578
  28110. }
  28111. },
  28112. nickit: {
  28113. height: math.unit(2, "feet"),
  28114. name: "Nickit",
  28115. image: {
  28116. source: "./media/characters/cat/nickit.svg",
  28117. extra: 1980 / 1585,
  28118. bottom: 102 / 2082
  28119. }
  28120. },
  28121. lopunnyFront: {
  28122. height: math.unit(5, "feet"),
  28123. name: "Lopunny (Front)",
  28124. image: {
  28125. source: "./media/characters/cat/lopunny-front.svg",
  28126. extra: 1782 / 1469,
  28127. bottom: 38 / 1820
  28128. }
  28129. },
  28130. lopunnyBack: {
  28131. height: math.unit(5, "feet"),
  28132. name: "Lopunny (Back)",
  28133. image: {
  28134. source: "./media/characters/cat/lopunny-back.svg",
  28135. extra: 1660 / 1490,
  28136. bottom: 25 / 1685
  28137. }
  28138. },
  28139. },
  28140. [
  28141. {
  28142. name: "Really small",
  28143. height: math.unit(1, "nm")
  28144. },
  28145. {
  28146. name: "Micro",
  28147. height: math.unit(5, "inches")
  28148. },
  28149. {
  28150. name: "Normal",
  28151. height: math.unit(5 + 6 / 12, "feet"),
  28152. default: true
  28153. },
  28154. {
  28155. name: "Macro",
  28156. height: math.unit(50, "feet")
  28157. },
  28158. {
  28159. name: "Macro+",
  28160. height: math.unit(150, "feet")
  28161. },
  28162. {
  28163. name: "Megamacro",
  28164. height: math.unit(100, "miles")
  28165. },
  28166. ]
  28167. ))
  28168. characterMakers.push(() => makeCharacter(
  28169. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28170. {
  28171. front: {
  28172. height: math.unit(63.4, "meters"),
  28173. weight: math.unit(3.28349e+6, "kilograms"),
  28174. name: "Front",
  28175. image: {
  28176. source: "./media/characters/kirina-violet/front.svg",
  28177. extra: 2812 / 2725,
  28178. bottom: 0 / 2812
  28179. }
  28180. },
  28181. back: {
  28182. height: math.unit(63.4, "meters"),
  28183. weight: math.unit(3.28349e+6, "kilograms"),
  28184. name: "Back",
  28185. image: {
  28186. source: "./media/characters/kirina-violet/back.svg",
  28187. extra: 2812 / 2725,
  28188. bottom: 0 / 2812
  28189. }
  28190. },
  28191. mouth: {
  28192. height: math.unit(4.35, "meters"),
  28193. name: "Mouth",
  28194. image: {
  28195. source: "./media/characters/kirina-violet/mouth.svg"
  28196. }
  28197. },
  28198. paw: {
  28199. height: math.unit(5.6, "meters"),
  28200. name: "Paw",
  28201. image: {
  28202. source: "./media/characters/kirina-violet/paw.svg"
  28203. }
  28204. },
  28205. tail: {
  28206. height: math.unit(18, "meters"),
  28207. name: "Tail",
  28208. image: {
  28209. source: "./media/characters/kirina-violet/tail.svg"
  28210. }
  28211. },
  28212. },
  28213. [
  28214. {
  28215. name: "Macro",
  28216. height: math.unit(63.4, "meters"),
  28217. default: true
  28218. },
  28219. ]
  28220. ))
  28221. characterMakers.push(() => makeCharacter(
  28222. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28223. {
  28224. front: {
  28225. height: math.unit(60, "feet"),
  28226. name: "Front",
  28227. image: {
  28228. source: "./media/characters/cat-gigachu/front.svg",
  28229. extra: 1024 / 780,
  28230. bottom: 23 / 1047
  28231. }
  28232. },
  28233. back: {
  28234. height: math.unit(60, "feet"),
  28235. name: "Back",
  28236. image: {
  28237. source: "./media/characters/cat-gigachu/back.svg",
  28238. extra: 1024 / 780,
  28239. bottom: 23 / 1047
  28240. }
  28241. },
  28242. },
  28243. [
  28244. {
  28245. name: "Dynamax",
  28246. height: math.unit(60, "feet"),
  28247. default: true
  28248. },
  28249. ]
  28250. ))
  28251. characterMakers.push(() => makeCharacter(
  28252. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28253. {
  28254. front: {
  28255. height: math.unit(6, "feet"),
  28256. weight: math.unit(150, "lb"),
  28257. name: "Front",
  28258. image: {
  28259. source: "./media/characters/sfaiyan/front.svg",
  28260. extra: 999 / 978,
  28261. bottom: 5 / 1004
  28262. }
  28263. },
  28264. },
  28265. [
  28266. {
  28267. name: "Normal",
  28268. height: math.unit(1.82, "meters")
  28269. },
  28270. {
  28271. name: "Giant",
  28272. height: math.unit(2.27, "km"),
  28273. default: true
  28274. },
  28275. ]
  28276. ))
  28277. characterMakers.push(() => makeCharacter(
  28278. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28279. {
  28280. front: {
  28281. height: math.unit(179, "cm"),
  28282. weight: math.unit(100, "kg"),
  28283. name: "Front",
  28284. image: {
  28285. source: "./media/characters/raunehkeli/front.svg",
  28286. extra: 1934 / 1926,
  28287. bottom: 0 / 1934
  28288. }
  28289. },
  28290. },
  28291. [
  28292. {
  28293. name: "Normal",
  28294. height: math.unit(179, "cm")
  28295. },
  28296. {
  28297. name: "Maximum",
  28298. height: math.unit(575, "meters"),
  28299. default: true
  28300. },
  28301. ]
  28302. ))
  28303. characterMakers.push(() => makeCharacter(
  28304. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28305. {
  28306. front: {
  28307. height: math.unit(6, "feet"),
  28308. weight: math.unit(150, "lb"),
  28309. name: "Front",
  28310. image: {
  28311. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28312. extra: 2625 / 2518,
  28313. bottom: 60 / 2685
  28314. }
  28315. },
  28316. },
  28317. [
  28318. {
  28319. name: "Normal",
  28320. height: math.unit(6 + 2 / 12, "feet")
  28321. },
  28322. {
  28323. name: "Macro",
  28324. height: math.unit(1180, "feet"),
  28325. default: true
  28326. },
  28327. ]
  28328. ))
  28329. characterMakers.push(() => makeCharacter(
  28330. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28331. {
  28332. front: {
  28333. height: math.unit(5 + 6 / 12, "feet"),
  28334. weight: math.unit(108, "lb"),
  28335. name: "Front",
  28336. image: {
  28337. source: "./media/characters/lilith-zott/front.svg",
  28338. extra: 2510 / 2238,
  28339. bottom: 100 / 2610
  28340. }
  28341. },
  28342. frontDressed: {
  28343. height: math.unit(5 + 6 / 12, "feet"),
  28344. weight: math.unit(108, "lb"),
  28345. name: "Front (Dressed)",
  28346. image: {
  28347. source: "./media/characters/lilith-zott/front-dressed.svg",
  28348. extra: 2510 / 2238,
  28349. bottom: 100 / 2610
  28350. }
  28351. },
  28352. },
  28353. [
  28354. {
  28355. name: "Normal",
  28356. height: math.unit(5 + 6 / 12, "feet")
  28357. },
  28358. {
  28359. name: "Macro",
  28360. height: math.unit(1030, "feet"),
  28361. default: true
  28362. },
  28363. ]
  28364. ))
  28365. characterMakers.push(() => makeCharacter(
  28366. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28367. {
  28368. front: {
  28369. height: math.unit(6, "feet"),
  28370. weight: math.unit(150, "lb"),
  28371. name: "Front",
  28372. image: {
  28373. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28374. extra: 2567 / 2435,
  28375. bottom: 39 / 2606
  28376. }
  28377. },
  28378. frontSuper: {
  28379. height: math.unit(6, "feet"),
  28380. name: "Front (Super)",
  28381. image: {
  28382. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28383. extra: 2567 / 2435,
  28384. bottom: 39 / 2606
  28385. }
  28386. },
  28387. },
  28388. [
  28389. {
  28390. name: "Normal",
  28391. height: math.unit(5 + 10 / 12, "feet")
  28392. },
  28393. {
  28394. name: "Macro",
  28395. height: math.unit(1100, "feet"),
  28396. default: true
  28397. },
  28398. ]
  28399. ))
  28400. characterMakers.push(() => makeCharacter(
  28401. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28402. {
  28403. front: {
  28404. height: math.unit(100, "miles"),
  28405. name: "Front",
  28406. image: {
  28407. source: "./media/characters/sona/front.svg",
  28408. extra: 2433 / 2201,
  28409. bottom: 53 / 2486
  28410. }
  28411. },
  28412. foot: {
  28413. height: math.unit(16.1, "miles"),
  28414. name: "Foot",
  28415. image: {
  28416. source: "./media/characters/sona/foot.svg"
  28417. }
  28418. },
  28419. },
  28420. [
  28421. {
  28422. name: "Macro",
  28423. height: math.unit(100, "miles"),
  28424. default: true
  28425. },
  28426. ]
  28427. ))
  28428. characterMakers.push(() => makeCharacter(
  28429. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28430. {
  28431. front: {
  28432. height: math.unit(6, "feet"),
  28433. weight: math.unit(150, "lb"),
  28434. name: "Front",
  28435. image: {
  28436. source: "./media/characters/bailey/front.svg",
  28437. extra: 1778 / 1724,
  28438. bottom: 30 / 1808
  28439. }
  28440. },
  28441. },
  28442. [
  28443. {
  28444. name: "Micro",
  28445. height: math.unit(4, "inches")
  28446. },
  28447. {
  28448. name: "Normal",
  28449. height: math.unit(5 + 5 / 12, "feet"),
  28450. default: true
  28451. },
  28452. {
  28453. name: "Macro",
  28454. height: math.unit(250, "feet")
  28455. },
  28456. {
  28457. name: "Megamacro",
  28458. height: math.unit(100, "miles")
  28459. },
  28460. ]
  28461. ))
  28462. characterMakers.push(() => makeCharacter(
  28463. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28464. {
  28465. front: {
  28466. height: math.unit(5 + 2 / 12, "feet"),
  28467. weight: math.unit(120, "lb"),
  28468. name: "Front",
  28469. image: {
  28470. source: "./media/characters/snaps/front.svg",
  28471. extra: 2370 / 2177,
  28472. bottom: 48 / 2418
  28473. }
  28474. },
  28475. back: {
  28476. height: math.unit(5 + 2 / 12, "feet"),
  28477. weight: math.unit(120, "lb"),
  28478. name: "Back",
  28479. image: {
  28480. source: "./media/characters/snaps/back.svg",
  28481. extra: 2408 / 2258,
  28482. bottom: 15 / 2423
  28483. }
  28484. },
  28485. },
  28486. [
  28487. {
  28488. name: "Micro",
  28489. height: math.unit(9, "inches")
  28490. },
  28491. {
  28492. name: "Normal",
  28493. height: math.unit(5 + 2 / 12, "feet"),
  28494. default: true
  28495. },
  28496. {
  28497. name: "Mini Macro",
  28498. height: math.unit(10, "feet")
  28499. },
  28500. ]
  28501. ))
  28502. characterMakers.push(() => makeCharacter(
  28503. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28504. {
  28505. front: {
  28506. height: math.unit(1.8, "meters"),
  28507. weight: math.unit(85, "kg"),
  28508. name: "Front",
  28509. image: {
  28510. source: "./media/characters/azteck/front.svg",
  28511. extra: 2815 / 2625,
  28512. bottom: 89 / 2904
  28513. }
  28514. },
  28515. back: {
  28516. height: math.unit(1.8, "meters"),
  28517. weight: math.unit(85, "kg"),
  28518. name: "Back",
  28519. image: {
  28520. source: "./media/characters/azteck/back.svg",
  28521. extra: 2856 / 2648,
  28522. bottom: 85 / 2941
  28523. }
  28524. },
  28525. frontDressed: {
  28526. height: math.unit(1.8, "meters"),
  28527. weight: math.unit(85, "kg"),
  28528. name: "Front (Dressed)",
  28529. image: {
  28530. source: "./media/characters/azteck/front-dressed.svg",
  28531. extra: 2147 / 2003,
  28532. bottom: 68 / 2215
  28533. }
  28534. },
  28535. head: {
  28536. height: math.unit(0.47, "meters"),
  28537. weight: math.unit(85, "kg"),
  28538. name: "Head",
  28539. image: {
  28540. source: "./media/characters/azteck/head.svg"
  28541. }
  28542. },
  28543. },
  28544. [
  28545. {
  28546. name: "Bite sized",
  28547. height: math.unit(16, "cm")
  28548. },
  28549. {
  28550. name: "Normal",
  28551. height: math.unit(1.8, "meters"),
  28552. default: true
  28553. },
  28554. ]
  28555. ))
  28556. characterMakers.push(() => makeCharacter(
  28557. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28558. {
  28559. front: {
  28560. height: math.unit(6, "feet"),
  28561. weight: math.unit(150, "lb"),
  28562. name: "Front",
  28563. image: {
  28564. source: "./media/characters/pidge/front.svg",
  28565. extra: 620 / 588,
  28566. bottom: 9 / 629
  28567. }
  28568. },
  28569. back: {
  28570. height: math.unit(6, "feet"),
  28571. weight: math.unit(150, "lb"),
  28572. name: "Back",
  28573. image: {
  28574. source: "./media/characters/pidge/back.svg",
  28575. extra: 620 / 588,
  28576. bottom: 9 / 629
  28577. }
  28578. },
  28579. },
  28580. [
  28581. {
  28582. name: "Macro",
  28583. height: math.unit(1, "mile"),
  28584. default: true
  28585. },
  28586. ]
  28587. ))
  28588. characterMakers.push(() => makeCharacter(
  28589. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28590. {
  28591. front: {
  28592. height: math.unit(6, "feet"),
  28593. weight: math.unit(150, "lb"),
  28594. name: "Front",
  28595. image: {
  28596. source: "./media/characters/en/front.svg",
  28597. extra: 1697 / 1563,
  28598. bottom: 103 / 1800
  28599. }
  28600. },
  28601. back: {
  28602. height: math.unit(6, "feet"),
  28603. weight: math.unit(150, "lb"),
  28604. name: "Back",
  28605. image: {
  28606. source: "./media/characters/en/back.svg",
  28607. extra: 1700 / 1570,
  28608. bottom: 51 / 1751
  28609. }
  28610. },
  28611. frontDressed: {
  28612. height: math.unit(6, "feet"),
  28613. weight: math.unit(150, "lb"),
  28614. name: "Front (Dressed)",
  28615. image: {
  28616. source: "./media/characters/en/front-dressed.svg",
  28617. extra: 1697 / 1563,
  28618. bottom: 103 / 1800
  28619. }
  28620. },
  28621. backDressed: {
  28622. height: math.unit(6, "feet"),
  28623. weight: math.unit(150, "lb"),
  28624. name: "Back (Dressed)",
  28625. image: {
  28626. source: "./media/characters/en/back-dressed.svg",
  28627. extra: 1700 / 1570,
  28628. bottom: 51 / 1751
  28629. }
  28630. },
  28631. },
  28632. [
  28633. {
  28634. name: "Macro",
  28635. height: math.unit(210, "feet"),
  28636. default: true
  28637. },
  28638. ]
  28639. ))
  28640. characterMakers.push(() => makeCharacter(
  28641. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28642. {
  28643. front: {
  28644. height: math.unit(6, "feet"),
  28645. weight: math.unit(150, "lb"),
  28646. name: "Front",
  28647. image: {
  28648. source: "./media/characters/haze-orris/front.svg",
  28649. extra: 3975 / 3525,
  28650. bottom: 137 / 4112
  28651. }
  28652. },
  28653. },
  28654. [
  28655. {
  28656. name: "Micro",
  28657. height: math.unit(150, "mm"),
  28658. default: true
  28659. },
  28660. ]
  28661. ))
  28662. characterMakers.push(() => makeCharacter(
  28663. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28664. {
  28665. front: {
  28666. height: math.unit(6, "feet"),
  28667. weight: math.unit(150, "lb"),
  28668. name: "Front",
  28669. image: {
  28670. source: "./media/characters/casselene-yaro/front.svg",
  28671. extra: 4721 / 4541,
  28672. bottom: 82 / 4803
  28673. }
  28674. },
  28675. back: {
  28676. height: math.unit(6, "feet"),
  28677. weight: math.unit(150, "lb"),
  28678. name: "Back",
  28679. image: {
  28680. source: "./media/characters/casselene-yaro/back.svg",
  28681. extra: 4569 / 4377,
  28682. bottom: 69 / 4638
  28683. }
  28684. },
  28685. frontDressed: {
  28686. height: math.unit(6, "feet"),
  28687. weight: math.unit(150, "lb"),
  28688. name: "Front-dressed",
  28689. image: {
  28690. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28691. extra: 4721 / 4541,
  28692. bottom: 82 / 4803
  28693. }
  28694. },
  28695. },
  28696. [
  28697. {
  28698. name: "Macro",
  28699. height: math.unit(190, "feet"),
  28700. default: true
  28701. },
  28702. ]
  28703. ))
  28704. characterMakers.push(() => makeCharacter(
  28705. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28706. {
  28707. front: {
  28708. height: math.unit(6, "feet"),
  28709. weight: math.unit(150, "lb"),
  28710. name: "Front",
  28711. image: {
  28712. source: "./media/characters/myra-rue-delore/front.svg",
  28713. extra: 1340 / 1308,
  28714. bottom: 67 / 1407
  28715. }
  28716. },
  28717. back: {
  28718. height: math.unit(6, "feet"),
  28719. weight: math.unit(150, "lb"),
  28720. name: "Back",
  28721. image: {
  28722. source: "./media/characters/myra-rue-delore/back.svg",
  28723. extra: 1341 / 1310,
  28724. bottom: 40 / 1381
  28725. }
  28726. },
  28727. frontDressed: {
  28728. height: math.unit(6, "feet"),
  28729. weight: math.unit(150, "lb"),
  28730. name: "Front (Dressed)",
  28731. image: {
  28732. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28733. extra: 1340 / 1308,
  28734. bottom: 67 / 1407
  28735. }
  28736. },
  28737. },
  28738. [
  28739. {
  28740. name: "Macro",
  28741. height: math.unit(150, "feet"),
  28742. default: true
  28743. },
  28744. ]
  28745. ))
  28746. characterMakers.push(() => makeCharacter(
  28747. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28748. {
  28749. front: {
  28750. height: math.unit(10, "feet"),
  28751. weight: math.unit(15015, "lb"),
  28752. name: "Front",
  28753. image: {
  28754. source: "./media/characters/fem!plat/front.svg",
  28755. extra: 2799 / 2604,
  28756. bottom: 149 / 2948
  28757. }
  28758. },
  28759. },
  28760. [
  28761. {
  28762. name: "Normal",
  28763. height: math.unit(10, "feet"),
  28764. default: true
  28765. },
  28766. {
  28767. name: "Macro",
  28768. height: math.unit(100, "feet")
  28769. },
  28770. {
  28771. name: "Megamacro",
  28772. height: math.unit(1000, "feet")
  28773. },
  28774. ]
  28775. ))
  28776. characterMakers.push(() => makeCharacter(
  28777. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28778. {
  28779. front: {
  28780. height: math.unit(15 + 5 / 12, "feet"),
  28781. weight: math.unit(4600, "lb"),
  28782. name: "Front",
  28783. image: {
  28784. source: "./media/characters/neapolitan-ananassa/front.svg",
  28785. extra: 2903 / 2736,
  28786. bottom: 0 / 2903
  28787. }
  28788. },
  28789. side: {
  28790. height: math.unit(15 + 5 / 12, "feet"),
  28791. weight: math.unit(4600, "lb"),
  28792. name: "Side",
  28793. image: {
  28794. source: "./media/characters/neapolitan-ananassa/side.svg",
  28795. extra: 2925 / 2719,
  28796. bottom: 0 / 2925
  28797. }
  28798. },
  28799. back: {
  28800. height: math.unit(15 + 5 / 12, "feet"),
  28801. weight: math.unit(4600, "lb"),
  28802. name: "Back",
  28803. image: {
  28804. source: "./media/characters/neapolitan-ananassa/back.svg",
  28805. extra: 2903 / 2736,
  28806. bottom: 0 / 2903
  28807. }
  28808. },
  28809. },
  28810. [
  28811. {
  28812. name: "Normal",
  28813. height: math.unit(15 + 5 / 12, "feet"),
  28814. default: true
  28815. },
  28816. {
  28817. name: "Post-Millenium",
  28818. height: math.unit(35 + 5 / 12, "feet")
  28819. },
  28820. {
  28821. name: "Post-Era",
  28822. height: math.unit(450 + 5 / 12, "feet")
  28823. },
  28824. ]
  28825. ))
  28826. characterMakers.push(() => makeCharacter(
  28827. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28828. {
  28829. front: {
  28830. height: math.unit(300, "meters"),
  28831. weight: math.unit(125000, "tonnes"),
  28832. name: "Front",
  28833. image: {
  28834. source: "./media/characters/pazuzu/front.svg",
  28835. extra: 877 / 794,
  28836. bottom: 47 / 924
  28837. }
  28838. },
  28839. },
  28840. [
  28841. {
  28842. name: "Macro",
  28843. height: math.unit(300, "meters"),
  28844. default: true
  28845. },
  28846. ]
  28847. ))
  28848. characterMakers.push(() => makeCharacter(
  28849. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28850. {
  28851. side: {
  28852. height: math.unit(10 + 7 / 12, "feet"),
  28853. weight: math.unit(2.5, "tons"),
  28854. name: "Side",
  28855. image: {
  28856. source: "./media/characters/aasha/side.svg",
  28857. extra: 1345 / 1245,
  28858. bottom: 111 / 1456
  28859. }
  28860. },
  28861. back: {
  28862. height: math.unit(10 + 7 / 12, "feet"),
  28863. weight: math.unit(2.5, "tons"),
  28864. name: "Back",
  28865. image: {
  28866. source: "./media/characters/aasha/back.svg",
  28867. extra: 1133 / 1057,
  28868. bottom: 257 / 1390
  28869. }
  28870. },
  28871. },
  28872. [
  28873. {
  28874. name: "Normal",
  28875. height: math.unit(10 + 7 / 12, "feet"),
  28876. default: true
  28877. },
  28878. ]
  28879. ))
  28880. characterMakers.push(() => makeCharacter(
  28881. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28882. {
  28883. front: {
  28884. height: math.unit(6 + 3 / 12, "feet"),
  28885. name: "Front",
  28886. image: {
  28887. source: "./media/characters/nevan/front.svg",
  28888. extra: 704 / 704,
  28889. bottom: 28 / 732
  28890. }
  28891. },
  28892. back: {
  28893. height: math.unit(6 + 3 / 12, "feet"),
  28894. name: "Back",
  28895. image: {
  28896. source: "./media/characters/nevan/back.svg",
  28897. extra: 714 / 714,
  28898. bottom: 21 / 735
  28899. }
  28900. },
  28901. frontFlaccid: {
  28902. height: math.unit(6 + 3 / 12, "feet"),
  28903. name: "Front (Flaccid)",
  28904. image: {
  28905. source: "./media/characters/nevan/front-flaccid.svg",
  28906. extra: 704 / 704,
  28907. bottom: 28 / 732
  28908. }
  28909. },
  28910. frontErect: {
  28911. height: math.unit(6 + 3 / 12, "feet"),
  28912. name: "Front (Erect)",
  28913. image: {
  28914. source: "./media/characters/nevan/front-erect.svg",
  28915. extra: 704 / 704,
  28916. bottom: 28 / 732
  28917. }
  28918. },
  28919. backFlaccid: {
  28920. height: math.unit(6 + 3 / 12, "feet"),
  28921. name: "Back (Flaccid)",
  28922. image: {
  28923. source: "./media/characters/nevan/back-flaccid.svg",
  28924. extra: 714 / 714,
  28925. bottom: 21 / 735
  28926. }
  28927. },
  28928. },
  28929. [
  28930. {
  28931. name: "Normal",
  28932. height: math.unit(6 + 3 / 12, "feet"),
  28933. default: true
  28934. },
  28935. ]
  28936. ))
  28937. characterMakers.push(() => makeCharacter(
  28938. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28939. {
  28940. front: {
  28941. height: math.unit(4, "feet"),
  28942. name: "Front",
  28943. image: {
  28944. source: "./media/characters/arhan/front.svg",
  28945. extra: 3368 / 3133,
  28946. bottom: 0 / 3368
  28947. }
  28948. },
  28949. side: {
  28950. height: math.unit(4, "feet"),
  28951. name: "Side",
  28952. image: {
  28953. source: "./media/characters/arhan/side.svg",
  28954. extra: 3347 / 3105,
  28955. bottom: 0 / 3347
  28956. }
  28957. },
  28958. tongue: {
  28959. height: math.unit(1.42, "feet"),
  28960. name: "Tongue",
  28961. image: {
  28962. source: "./media/characters/arhan/tongue.svg"
  28963. }
  28964. },
  28965. head: {
  28966. height: math.unit(0.85, "feet"),
  28967. name: "Head",
  28968. image: {
  28969. source: "./media/characters/arhan/head.svg"
  28970. }
  28971. },
  28972. },
  28973. [
  28974. {
  28975. name: "Normal",
  28976. height: math.unit(4, "feet"),
  28977. default: true
  28978. },
  28979. ]
  28980. ))
  28981. characterMakers.push(() => makeCharacter(
  28982. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28983. {
  28984. front: {
  28985. height: math.unit(5 + 7.5 / 12, "feet"),
  28986. weight: math.unit(120, "lb"),
  28987. name: "Front",
  28988. image: {
  28989. source: "./media/characters/digi-duncan/front.svg",
  28990. extra: 330 / 326,
  28991. bottom: 16 / 346
  28992. }
  28993. },
  28994. side: {
  28995. height: math.unit(5 + 7.5 / 12, "feet"),
  28996. weight: math.unit(120, "lb"),
  28997. name: "Side",
  28998. image: {
  28999. source: "./media/characters/digi-duncan/side.svg",
  29000. extra: 341 / 337,
  29001. bottom: 1 / 342
  29002. }
  29003. },
  29004. back: {
  29005. height: math.unit(5 + 7.5 / 12, "feet"),
  29006. weight: math.unit(120, "lb"),
  29007. name: "Back",
  29008. image: {
  29009. source: "./media/characters/digi-duncan/back.svg",
  29010. extra: 330 / 326,
  29011. bottom: 12 / 342
  29012. }
  29013. },
  29014. },
  29015. [
  29016. {
  29017. name: "Speck",
  29018. height: math.unit(0.25, "mm")
  29019. },
  29020. {
  29021. name: "Micro",
  29022. height: math.unit(5, "mm")
  29023. },
  29024. {
  29025. name: "Tiny",
  29026. height: math.unit(0.5, "inches"),
  29027. default: true
  29028. },
  29029. {
  29030. name: "Human",
  29031. height: math.unit(5 + 7.5 / 12, "feet")
  29032. },
  29033. {
  29034. name: "Minigiant",
  29035. height: math.unit(8 + 5.25, "feet")
  29036. },
  29037. {
  29038. name: "Giant",
  29039. height: math.unit(2000, "feet")
  29040. },
  29041. {
  29042. name: "Mega",
  29043. height: math.unit(371.1, "miles")
  29044. },
  29045. ]
  29046. ))
  29047. characterMakers.push(() => makeCharacter(
  29048. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29049. {
  29050. front: {
  29051. height: math.unit(2, "meters"),
  29052. weight: math.unit(350, "kg"),
  29053. name: "Front",
  29054. image: {
  29055. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29056. extra: 898 / 838,
  29057. bottom: 9 / 907
  29058. }
  29059. },
  29060. },
  29061. [
  29062. {
  29063. name: "Micro",
  29064. height: math.unit(8, "meters")
  29065. },
  29066. {
  29067. name: "Normal",
  29068. height: math.unit(50, "meters"),
  29069. default: true
  29070. },
  29071. {
  29072. name: "Macro",
  29073. height: math.unit(500, "meters")
  29074. },
  29075. ]
  29076. ))
  29077. characterMakers.push(() => makeCharacter(
  29078. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29079. {
  29080. front: {
  29081. height: math.unit(6 + 6 / 12, "feet"),
  29082. name: "Front",
  29083. image: {
  29084. source: "./media/characters/khardesh/front.svg",
  29085. extra: 888 / 797,
  29086. bottom: 25 / 913
  29087. }
  29088. },
  29089. },
  29090. [
  29091. {
  29092. name: "Normal",
  29093. height: math.unit(6 + 6 / 12, "feet"),
  29094. default: true
  29095. },
  29096. {
  29097. name: "Normal+",
  29098. height: math.unit(4, "meters")
  29099. },
  29100. {
  29101. name: "Macro",
  29102. height: math.unit(50, "meters")
  29103. },
  29104. {
  29105. name: "Macro+",
  29106. height: math.unit(100, "meters")
  29107. },
  29108. {
  29109. name: "Megamacro",
  29110. height: math.unit(20, "km")
  29111. },
  29112. ]
  29113. ))
  29114. characterMakers.push(() => makeCharacter(
  29115. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29116. {
  29117. front: {
  29118. height: math.unit(6, "feet"),
  29119. weight: math.unit(150, "lb"),
  29120. name: "Front",
  29121. image: {
  29122. source: "./media/characters/kosho/front.svg",
  29123. extra: 1847 / 1847,
  29124. bottom: 86 / 1933
  29125. }
  29126. },
  29127. },
  29128. [
  29129. {
  29130. name: "Second-stage micro",
  29131. height: math.unit(0.5, "inches")
  29132. },
  29133. {
  29134. name: "First-stage micro",
  29135. height: math.unit(6, "inches")
  29136. },
  29137. {
  29138. name: "Normal",
  29139. height: math.unit(6, "feet"),
  29140. default: true
  29141. },
  29142. {
  29143. name: "First-stage macro",
  29144. height: math.unit(72, "feet")
  29145. },
  29146. {
  29147. name: "Second-stage macro",
  29148. height: math.unit(864, "feet")
  29149. },
  29150. ]
  29151. ))
  29152. characterMakers.push(() => makeCharacter(
  29153. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29154. {
  29155. normal: {
  29156. height: math.unit(4 + 6 / 12, "feet"),
  29157. name: "Normal",
  29158. image: {
  29159. source: "./media/characters/hydra/normal.svg",
  29160. extra: 2833 / 2634,
  29161. bottom: 68 / 2901
  29162. }
  29163. },
  29164. smol: {
  29165. height: math.unit(0.705, "inches"),
  29166. name: "Smol",
  29167. image: {
  29168. source: "./media/characters/hydra/smol.svg",
  29169. extra: 2715 / 2540,
  29170. bottom: 0 / 2715
  29171. }
  29172. },
  29173. },
  29174. [
  29175. {
  29176. name: "Normal",
  29177. height: math.unit(4 + 6 / 12, "feet"),
  29178. default: true
  29179. }
  29180. ]
  29181. ))
  29182. characterMakers.push(() => makeCharacter(
  29183. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29184. {
  29185. front: {
  29186. height: math.unit(0.6, "cm"),
  29187. name: "Front",
  29188. image: {
  29189. source: "./media/characters/daz/front.svg",
  29190. extra: 1682 / 1164,
  29191. bottom: 42 / 1724
  29192. }
  29193. },
  29194. },
  29195. [
  29196. {
  29197. name: "Normal",
  29198. height: math.unit(0.6, "cm"),
  29199. default: true
  29200. },
  29201. ]
  29202. ))
  29203. characterMakers.push(() => makeCharacter(
  29204. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29205. {
  29206. front: {
  29207. height: math.unit(6, "feet"),
  29208. weight: math.unit(235, "lb"),
  29209. name: "Front",
  29210. image: {
  29211. source: "./media/characters/theo-pangolin/front.svg",
  29212. extra: 1996 / 1969,
  29213. bottom: 115 / 2111
  29214. }
  29215. },
  29216. back: {
  29217. height: math.unit(6, "feet"),
  29218. weight: math.unit(235, "lb"),
  29219. name: "Back",
  29220. image: {
  29221. source: "./media/characters/theo-pangolin/back.svg",
  29222. extra: 1979 / 1979,
  29223. bottom: 40 / 2019
  29224. }
  29225. },
  29226. feral: {
  29227. height: math.unit(2, "feet"),
  29228. weight: math.unit(30, "lb"),
  29229. name: "Feral",
  29230. image: {
  29231. source: "./media/characters/theo-pangolin/feral.svg",
  29232. extra: 803 / 791,
  29233. bottom: 181 / 984
  29234. }
  29235. },
  29236. footFive: {
  29237. height: math.unit(1.43, "feet"),
  29238. name: "Foot (Five Toes)",
  29239. image: {
  29240. source: "./media/characters/theo-pangolin/foot-five.svg"
  29241. }
  29242. },
  29243. footFour: {
  29244. height: math.unit(1.43, "feet"),
  29245. name: "Foot (Four Toes)",
  29246. image: {
  29247. source: "./media/characters/theo-pangolin/foot-four.svg"
  29248. }
  29249. },
  29250. handFour: {
  29251. height: math.unit(0.81, "feet"),
  29252. name: "Hand (Four Fingers)",
  29253. image: {
  29254. source: "./media/characters/theo-pangolin/hand-four.svg"
  29255. }
  29256. },
  29257. handThree: {
  29258. height: math.unit(0.81, "feet"),
  29259. name: "Hand (Three Fingers)",
  29260. image: {
  29261. source: "./media/characters/theo-pangolin/hand-three.svg"
  29262. }
  29263. },
  29264. headFront: {
  29265. height: math.unit(1.37, "feet"),
  29266. name: "Head (Front)",
  29267. image: {
  29268. source: "./media/characters/theo-pangolin/head-front.svg"
  29269. }
  29270. },
  29271. headSide: {
  29272. height: math.unit(1.43, "feet"),
  29273. name: "Head (Side)",
  29274. image: {
  29275. source: "./media/characters/theo-pangolin/head-side.svg"
  29276. }
  29277. },
  29278. tongue: {
  29279. height: math.unit(2.29, "feet"),
  29280. name: "Tongue",
  29281. image: {
  29282. source: "./media/characters/theo-pangolin/tongue.svg"
  29283. }
  29284. },
  29285. },
  29286. [
  29287. {
  29288. name: "Normal",
  29289. height: math.unit(6, "feet")
  29290. },
  29291. {
  29292. name: "Macro",
  29293. height: math.unit(400, "feet"),
  29294. default: true
  29295. },
  29296. ]
  29297. ))
  29298. characterMakers.push(() => makeCharacter(
  29299. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29300. {
  29301. front: {
  29302. height: math.unit(6, "inches"),
  29303. weight: math.unit(0.036, "kg"),
  29304. name: "Front",
  29305. image: {
  29306. source: "./media/characters/renée/front.svg",
  29307. extra: 900 / 886,
  29308. bottom: 8 / 908
  29309. }
  29310. },
  29311. },
  29312. [
  29313. {
  29314. name: "Nano",
  29315. height: math.unit(1, "nm")
  29316. },
  29317. {
  29318. name: "Micro",
  29319. height: math.unit(1, "mm")
  29320. },
  29321. {
  29322. name: "Normal",
  29323. height: math.unit(6, "inches")
  29324. },
  29325. {
  29326. name: "Macro",
  29327. height: math.unit(2000, "feet"),
  29328. default: true
  29329. },
  29330. {
  29331. name: "Megamacro",
  29332. height: math.unit(2, "km")
  29333. },
  29334. {
  29335. name: "Gigamacro",
  29336. height: math.unit(2000, "km")
  29337. },
  29338. {
  29339. name: "Teramacro",
  29340. height: math.unit(250000, "km")
  29341. },
  29342. ]
  29343. ))
  29344. characterMakers.push(() => makeCharacter(
  29345. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29346. {
  29347. front: {
  29348. height: math.unit(4, "meters"),
  29349. weight: math.unit(150, "kg"),
  29350. name: "Front",
  29351. image: {
  29352. source: "./media/characters/caledvwlch/front.svg",
  29353. extra: 1760 / 1551,
  29354. bottom: 28 / 1788
  29355. }
  29356. },
  29357. side: {
  29358. height: math.unit(4, "meters"),
  29359. weight: math.unit(150, "kg"),
  29360. name: "Side",
  29361. image: {
  29362. source: "./media/characters/caledvwlch/side.svg",
  29363. extra: 1605 / 1536,
  29364. bottom: 31 / 1636
  29365. }
  29366. },
  29367. back: {
  29368. height: math.unit(4, "meters"),
  29369. weight: math.unit(150, "kg"),
  29370. name: "Back",
  29371. image: {
  29372. source: "./media/characters/caledvwlch/back.svg",
  29373. extra: 1635 / 1565,
  29374. bottom: 27 / 1662
  29375. }
  29376. },
  29377. },
  29378. [
  29379. {
  29380. name: "\"Incognito\"",
  29381. height: math.unit(4, "meters")
  29382. },
  29383. {
  29384. name: "Small rampage",
  29385. height: math.unit(600, "meters")
  29386. },
  29387. {
  29388. name: "Mega",
  29389. height: math.unit(30, "km")
  29390. },
  29391. {
  29392. name: "Home-size",
  29393. height: math.unit(50, "km"),
  29394. default: true
  29395. },
  29396. {
  29397. name: "Giga",
  29398. height: math.unit(300, "km")
  29399. },
  29400. {
  29401. name: "Lounging",
  29402. height: math.unit(11000, "km")
  29403. },
  29404. {
  29405. name: "Planet snacking",
  29406. height: math.unit(2000000, "km")
  29407. },
  29408. ]
  29409. ))
  29410. characterMakers.push(() => makeCharacter(
  29411. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29412. {
  29413. front: {
  29414. height: math.unit(6, "feet"),
  29415. weight: math.unit(215, "lb"),
  29416. name: "Front",
  29417. image: {
  29418. source: "./media/characters/sapphire-svell/front.svg",
  29419. extra: 495 / 455,
  29420. bottom: 20 / 515
  29421. }
  29422. },
  29423. back: {
  29424. height: math.unit(6, "feet"),
  29425. weight: math.unit(216, "lb"),
  29426. name: "Back",
  29427. image: {
  29428. source: "./media/characters/sapphire-svell/back.svg",
  29429. extra: 497 / 477,
  29430. bottom: 7 / 504
  29431. }
  29432. },
  29433. maw: {
  29434. height: math.unit(1.57, "feet"),
  29435. name: "Maw",
  29436. image: {
  29437. source: "./media/characters/sapphire-svell/maw.svg"
  29438. }
  29439. },
  29440. foot: {
  29441. height: math.unit(1.07, "feet"),
  29442. name: "Foot",
  29443. image: {
  29444. source: "./media/characters/sapphire-svell/foot.svg"
  29445. }
  29446. },
  29447. toering: {
  29448. height: math.unit(1.7, "inch"),
  29449. name: "Toering",
  29450. image: {
  29451. source: "./media/characters/sapphire-svell/toering.svg"
  29452. }
  29453. },
  29454. },
  29455. [
  29456. {
  29457. name: "Normal",
  29458. height: math.unit(300, "feet"),
  29459. default: true
  29460. },
  29461. {
  29462. name: "Augmented",
  29463. height: math.unit(1250, "feet")
  29464. },
  29465. {
  29466. name: "Unleashed",
  29467. height: math.unit(3000, "feet")
  29468. },
  29469. ]
  29470. ))
  29471. characterMakers.push(() => makeCharacter(
  29472. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29473. {
  29474. side: {
  29475. height: math.unit(2 + 3 / 12, "feet"),
  29476. weight: math.unit(110, "lb"),
  29477. name: "Side",
  29478. image: {
  29479. source: "./media/characters/glitch-flux/side.svg",
  29480. extra: 997 / 805,
  29481. bottom: 20 / 1017
  29482. }
  29483. },
  29484. },
  29485. [
  29486. {
  29487. name: "Normal",
  29488. height: math.unit(2 + 3 / 12, "feet"),
  29489. default: true
  29490. },
  29491. ]
  29492. ))
  29493. characterMakers.push(() => makeCharacter(
  29494. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29495. {
  29496. front: {
  29497. height: math.unit(4, "meters"),
  29498. name: "Front",
  29499. image: {
  29500. source: "./media/characters/mid/front.svg",
  29501. extra: 507 / 476,
  29502. bottom: 17 / 524
  29503. }
  29504. },
  29505. back: {
  29506. height: math.unit(4, "meters"),
  29507. name: "Back",
  29508. image: {
  29509. source: "./media/characters/mid/back.svg",
  29510. extra: 519 / 487,
  29511. bottom: 7 / 526
  29512. }
  29513. },
  29514. stuck: {
  29515. height: math.unit(2.2, "meters"),
  29516. name: "Stuck",
  29517. image: {
  29518. source: "./media/characters/mid/stuck.svg",
  29519. extra: 1951 / 1869,
  29520. bottom: 88 / 2039
  29521. }
  29522. }
  29523. },
  29524. [
  29525. {
  29526. name: "Normal",
  29527. height: math.unit(4, "meters"),
  29528. default: true
  29529. },
  29530. {
  29531. name: "Big",
  29532. height: math.unit(10, "meters")
  29533. },
  29534. {
  29535. name: "Macro",
  29536. height: math.unit(800, "meters")
  29537. },
  29538. {
  29539. name: "Megamacro",
  29540. height: math.unit(100, "km")
  29541. },
  29542. {
  29543. name: "Overgrown",
  29544. height: math.unit(1, "parsec")
  29545. },
  29546. ]
  29547. ))
  29548. characterMakers.push(() => makeCharacter(
  29549. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29550. {
  29551. front: {
  29552. height: math.unit(2.5, "meters"),
  29553. weight: math.unit(225, "kg"),
  29554. name: "Front",
  29555. image: {
  29556. source: "./media/characters/iris/front.svg",
  29557. extra: 3348 / 3251,
  29558. bottom: 205 / 3553
  29559. }
  29560. },
  29561. maw: {
  29562. height: math.unit(0.56, "meter"),
  29563. name: "Maw",
  29564. image: {
  29565. source: "./media/characters/iris/maw.svg"
  29566. }
  29567. },
  29568. },
  29569. [
  29570. {
  29571. name: "Mewter cat",
  29572. height: math.unit(1.2, "meters")
  29573. },
  29574. {
  29575. name: "Minimacro",
  29576. height: math.unit(2.5, "meters"),
  29577. default: true
  29578. },
  29579. {
  29580. name: "Macro",
  29581. height: math.unit(180, "meters")
  29582. },
  29583. {
  29584. name: "Megamacro",
  29585. height: math.unit(2746, "meters")
  29586. },
  29587. ]
  29588. ))
  29589. characterMakers.push(() => makeCharacter(
  29590. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29591. {
  29592. front: {
  29593. height: math.unit(6, "feet"),
  29594. weight: math.unit(135, "lb"),
  29595. name: "Front",
  29596. image: {
  29597. source: "./media/characters/axel/front.svg",
  29598. extra: 908 / 908,
  29599. bottom: 58 / 966
  29600. }
  29601. },
  29602. side: {
  29603. height: math.unit(6, "feet"),
  29604. weight: math.unit(135, "lb"),
  29605. name: "Side",
  29606. image: {
  29607. source: "./media/characters/axel/side.svg",
  29608. extra: 958 / 958,
  29609. bottom: 11 / 969
  29610. }
  29611. },
  29612. back: {
  29613. height: math.unit(6, "feet"),
  29614. weight: math.unit(135, "lb"),
  29615. name: "Back",
  29616. image: {
  29617. source: "./media/characters/axel/back.svg",
  29618. extra: 887 / 887,
  29619. bottom: 34 / 921
  29620. }
  29621. },
  29622. head: {
  29623. height: math.unit(1.07, "feet"),
  29624. name: "Head",
  29625. image: {
  29626. source: "./media/characters/axel/head.svg"
  29627. }
  29628. },
  29629. beak: {
  29630. height: math.unit(1.4, "feet"),
  29631. name: "Beak",
  29632. image: {
  29633. source: "./media/characters/axel/beak.svg"
  29634. }
  29635. },
  29636. beakSide: {
  29637. height: math.unit(1.4, "feet"),
  29638. name: "Beak Side",
  29639. image: {
  29640. source: "./media/characters/axel/beak-side.svg"
  29641. }
  29642. },
  29643. sheath: {
  29644. height: math.unit(0.5, "feet"),
  29645. name: "Sheath",
  29646. image: {
  29647. source: "./media/characters/axel/sheath.svg"
  29648. }
  29649. },
  29650. dick: {
  29651. height: math.unit(0.98, "feet"),
  29652. name: "Dick",
  29653. image: {
  29654. source: "./media/characters/axel/dick.svg"
  29655. }
  29656. },
  29657. },
  29658. [
  29659. {
  29660. name: "Macro",
  29661. height: math.unit(68, "meters"),
  29662. default: true
  29663. },
  29664. ]
  29665. ))
  29666. characterMakers.push(() => makeCharacter(
  29667. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29668. {
  29669. front: {
  29670. height: math.unit(3.5, "meters"),
  29671. weight: math.unit(1200, "kg"),
  29672. name: "Front",
  29673. image: {
  29674. source: "./media/characters/joanna/front.svg",
  29675. extra: 1596 / 1488,
  29676. bottom: 29 / 1625
  29677. }
  29678. },
  29679. back: {
  29680. height: math.unit(3.5, "meters"),
  29681. weight: math.unit(1200, "kg"),
  29682. name: "Back",
  29683. image: {
  29684. source: "./media/characters/joanna/back.svg",
  29685. extra: 1594 / 1495,
  29686. bottom: 26 / 1620
  29687. }
  29688. },
  29689. frontShorts: {
  29690. height: math.unit(3.5, "meters"),
  29691. weight: math.unit(1200, "kg"),
  29692. name: "Front (Shorts)",
  29693. image: {
  29694. source: "./media/characters/joanna/front-shorts.svg",
  29695. extra: 1596 / 1488,
  29696. bottom: 29 / 1625
  29697. }
  29698. },
  29699. frontBiker: {
  29700. height: math.unit(3.5, "meters"),
  29701. weight: math.unit(1200, "kg"),
  29702. name: "Front (Biker)",
  29703. image: {
  29704. source: "./media/characters/joanna/front-biker.svg",
  29705. extra: 1596 / 1488,
  29706. bottom: 29 / 1625
  29707. }
  29708. },
  29709. backBiker: {
  29710. height: math.unit(3.5, "meters"),
  29711. weight: math.unit(1200, "kg"),
  29712. name: "Back (Biker)",
  29713. image: {
  29714. source: "./media/characters/joanna/back-biker.svg",
  29715. extra: 1594 / 1495,
  29716. bottom: 88 / 1682
  29717. }
  29718. },
  29719. bikeLeft: {
  29720. height: math.unit(2.4, "meters"),
  29721. weight: math.unit(1600, "kg"),
  29722. name: "Bike (Left)",
  29723. image: {
  29724. source: "./media/characters/joanna/bike-left.svg",
  29725. extra: 720 / 720,
  29726. bottom: 8 / 728
  29727. }
  29728. },
  29729. bikeRight: {
  29730. height: math.unit(2.4, "meters"),
  29731. weight: math.unit(1600, "kg"),
  29732. name: "Bike (Right)",
  29733. image: {
  29734. source: "./media/characters/joanna/bike-right.svg",
  29735. extra: 720 / 720,
  29736. bottom: 8 / 728
  29737. }
  29738. },
  29739. },
  29740. [
  29741. {
  29742. name: "Incognito",
  29743. height: math.unit(3.5, "meters")
  29744. },
  29745. {
  29746. name: "Casual Big",
  29747. height: math.unit(200, "meters")
  29748. },
  29749. {
  29750. name: "Macro",
  29751. height: math.unit(600, "meters")
  29752. },
  29753. {
  29754. name: "Original",
  29755. height: math.unit(20, "km"),
  29756. default: true
  29757. },
  29758. {
  29759. name: "Giga",
  29760. height: math.unit(400, "km")
  29761. },
  29762. {
  29763. name: "Lounging",
  29764. height: math.unit(1500, "km")
  29765. },
  29766. {
  29767. name: "Planetary",
  29768. height: math.unit(200000, "km")
  29769. },
  29770. ]
  29771. ))
  29772. characterMakers.push(() => makeCharacter(
  29773. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29774. {
  29775. front: {
  29776. height: math.unit(6, "feet"),
  29777. weight: math.unit(150, "lb"),
  29778. name: "Front",
  29779. image: {
  29780. source: "./media/characters/hugo-sigil/front.svg",
  29781. extra: 522 / 500,
  29782. bottom: 2 / 524
  29783. }
  29784. },
  29785. back: {
  29786. height: math.unit(6, "feet"),
  29787. weight: math.unit(150, "lb"),
  29788. name: "Back",
  29789. image: {
  29790. source: "./media/characters/hugo-sigil/back.svg",
  29791. extra: 519 / 495,
  29792. bottom: 5 / 524
  29793. }
  29794. },
  29795. maw: {
  29796. height: math.unit(1.4, "feet"),
  29797. weight: math.unit(150, "lb"),
  29798. name: "Maw",
  29799. image: {
  29800. source: "./media/characters/hugo-sigil/maw.svg"
  29801. }
  29802. },
  29803. feet: {
  29804. height: math.unit(1.56, "feet"),
  29805. weight: math.unit(150, "lb"),
  29806. name: "Feet",
  29807. image: {
  29808. source: "./media/characters/hugo-sigil/feet.svg",
  29809. extra: 177 / 177,
  29810. bottom: 12 / 189
  29811. }
  29812. },
  29813. },
  29814. [
  29815. {
  29816. name: "Normal",
  29817. height: math.unit(6, "feet")
  29818. },
  29819. {
  29820. name: "Macro",
  29821. height: math.unit(200, "feet"),
  29822. default: true
  29823. },
  29824. ]
  29825. ))
  29826. characterMakers.push(() => makeCharacter(
  29827. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29828. {
  29829. front: {
  29830. height: math.unit(6, "feet"),
  29831. weight: math.unit(150, "lb"),
  29832. name: "Front",
  29833. image: {
  29834. source: "./media/characters/peri/front.svg",
  29835. extra: 2354 / 2233,
  29836. bottom: 49 / 2403
  29837. }
  29838. },
  29839. },
  29840. [
  29841. {
  29842. name: "Really Small",
  29843. height: math.unit(1, "nm")
  29844. },
  29845. {
  29846. name: "Micro",
  29847. height: math.unit(4, "inches")
  29848. },
  29849. {
  29850. name: "Normal",
  29851. height: math.unit(7, "inches"),
  29852. default: true
  29853. },
  29854. {
  29855. name: "Macro",
  29856. height: math.unit(400, "feet")
  29857. },
  29858. {
  29859. name: "Megamacro",
  29860. height: math.unit(100, "miles")
  29861. },
  29862. ]
  29863. ))
  29864. characterMakers.push(() => makeCharacter(
  29865. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29866. {
  29867. frontSlim: {
  29868. height: math.unit(7, "feet"),
  29869. name: "Front (Slim)",
  29870. image: {
  29871. source: "./media/characters/issilora/front-slim.svg",
  29872. extra: 529 / 449,
  29873. bottom: 53 / 582
  29874. }
  29875. },
  29876. sideSlim: {
  29877. height: math.unit(7, "feet"),
  29878. name: "Side (Slim)",
  29879. image: {
  29880. source: "./media/characters/issilora/side-slim.svg",
  29881. extra: 570 / 480,
  29882. bottom: 30 / 600
  29883. }
  29884. },
  29885. backSlim: {
  29886. height: math.unit(7, "feet"),
  29887. name: "Back (Slim)",
  29888. image: {
  29889. source: "./media/characters/issilora/back-slim.svg",
  29890. extra: 537 / 455,
  29891. bottom: 46 / 583
  29892. }
  29893. },
  29894. frontBuff: {
  29895. height: math.unit(7, "feet"),
  29896. name: "Front (Buff)",
  29897. image: {
  29898. source: "./media/characters/issilora/front-buff.svg",
  29899. extra: 2310 / 2035,
  29900. bottom: 335 / 2645
  29901. }
  29902. },
  29903. head: {
  29904. height: math.unit(1.94, "feet"),
  29905. name: "Head",
  29906. image: {
  29907. source: "./media/characters/issilora/head.svg"
  29908. }
  29909. },
  29910. },
  29911. [
  29912. {
  29913. name: "Minimum",
  29914. height: math.unit(7, "feet")
  29915. },
  29916. {
  29917. name: "Comfortable",
  29918. height: math.unit(17, "feet")
  29919. },
  29920. {
  29921. name: "Fun Size",
  29922. height: math.unit(47, "feet")
  29923. },
  29924. {
  29925. name: "Natural Macro",
  29926. height: math.unit(137, "feet"),
  29927. default: true
  29928. },
  29929. {
  29930. name: "Maximum Kaiju",
  29931. height: math.unit(397, "feet")
  29932. },
  29933. ]
  29934. ))
  29935. characterMakers.push(() => makeCharacter(
  29936. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29937. {
  29938. front: {
  29939. height: math.unit(50 + 9/12, "feet"),
  29940. weight: math.unit(32.8, "tons"),
  29941. name: "Front",
  29942. image: {
  29943. source: "./media/characters/irb'iiritaahn/front.svg",
  29944. extra: 1878/1826,
  29945. bottom: 326/2204
  29946. }
  29947. },
  29948. back: {
  29949. height: math.unit(50 + 9/12, "feet"),
  29950. weight: math.unit(32.8, "tons"),
  29951. name: "Back",
  29952. image: {
  29953. source: "./media/characters/irb'iiritaahn/back.svg",
  29954. extra: 2052/2018,
  29955. bottom: 152/2204
  29956. }
  29957. },
  29958. head: {
  29959. height: math.unit(12.86, "feet"),
  29960. name: "Head",
  29961. image: {
  29962. source: "./media/characters/irb'iiritaahn/head.svg"
  29963. }
  29964. },
  29965. maw: {
  29966. height: math.unit(9.66, "feet"),
  29967. name: "Maw",
  29968. image: {
  29969. source: "./media/characters/irb'iiritaahn/maw.svg"
  29970. }
  29971. },
  29972. frontDick: {
  29973. height: math.unit(8.78461, "feet"),
  29974. name: "Front Dick",
  29975. image: {
  29976. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29977. }
  29978. },
  29979. rearDick: {
  29980. height: math.unit(8.78461, "feet"),
  29981. name: "Rear Dick",
  29982. image: {
  29983. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29984. }
  29985. },
  29986. rearDickUnfolded: {
  29987. height: math.unit(8.78, "feet"),
  29988. name: "Rear Dick (Unfolded)",
  29989. image: {
  29990. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29991. }
  29992. },
  29993. wings: {
  29994. height: math.unit(43, "feet"),
  29995. name: "Wings",
  29996. image: {
  29997. source: "./media/characters/irb'iiritaahn/wings.svg"
  29998. }
  29999. },
  30000. },
  30001. [
  30002. {
  30003. name: "Macro",
  30004. height: math.unit(50 + 9/12, "feet"),
  30005. default: true
  30006. },
  30007. ]
  30008. ))
  30009. characterMakers.push(() => makeCharacter(
  30010. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30011. {
  30012. front: {
  30013. height: math.unit(205, "cm"),
  30014. weight: math.unit(102, "kg"),
  30015. name: "Front",
  30016. image: {
  30017. source: "./media/characters/irbisgreif/front.svg",
  30018. extra: 785/706,
  30019. bottom: 13/798
  30020. }
  30021. },
  30022. back: {
  30023. height: math.unit(205, "cm"),
  30024. weight: math.unit(102, "kg"),
  30025. name: "Back",
  30026. image: {
  30027. source: "./media/characters/irbisgreif/back.svg",
  30028. extra: 713/701,
  30029. bottom: 26/739
  30030. }
  30031. },
  30032. frontDressed: {
  30033. height: math.unit(216, "cm"),
  30034. weight: math.unit(102, "kg"),
  30035. name: "Front-dressed",
  30036. image: {
  30037. source: "./media/characters/irbisgreif/front-dressed.svg",
  30038. extra: 902/776,
  30039. bottom: 14/916
  30040. }
  30041. },
  30042. sideDressed: {
  30043. height: math.unit(195, "cm"),
  30044. weight: math.unit(102, "kg"),
  30045. name: "Side-dressed",
  30046. image: {
  30047. source: "./media/characters/irbisgreif/side-dressed.svg",
  30048. extra: 788/688,
  30049. bottom: 21/809
  30050. }
  30051. },
  30052. backDressed: {
  30053. height: math.unit(216, "cm"),
  30054. weight: math.unit(102, "kg"),
  30055. name: "Back-dressed",
  30056. image: {
  30057. source: "./media/characters/irbisgreif/back-dressed.svg",
  30058. extra: 901/783,
  30059. bottom: 10/911
  30060. }
  30061. },
  30062. dick: {
  30063. height: math.unit(0.49, "feet"),
  30064. name: "Dick",
  30065. image: {
  30066. source: "./media/characters/irbisgreif/dick.svg"
  30067. }
  30068. },
  30069. wingTop: {
  30070. height: math.unit(1.93 , "feet"),
  30071. name: "Wing-top",
  30072. image: {
  30073. source: "./media/characters/irbisgreif/wing-top.svg"
  30074. }
  30075. },
  30076. wingBottom: {
  30077. height: math.unit(1.93 , "feet"),
  30078. name: "Wing-bottom",
  30079. image: {
  30080. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30081. }
  30082. },
  30083. },
  30084. [
  30085. {
  30086. name: "Normal",
  30087. height: math.unit(216, "cm"),
  30088. default: true
  30089. },
  30090. ]
  30091. ))
  30092. characterMakers.push(() => makeCharacter(
  30093. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30094. {
  30095. front: {
  30096. height: math.unit(6, "feet"),
  30097. weight: math.unit(150, "lb"),
  30098. name: "Front",
  30099. image: {
  30100. source: "./media/characters/pride/front.svg",
  30101. extra: 1299/1230,
  30102. bottom: 18/1317
  30103. }
  30104. },
  30105. },
  30106. [
  30107. {
  30108. name: "Normal",
  30109. height: math.unit(7, "feet")
  30110. },
  30111. {
  30112. name: "Mini-macro",
  30113. height: math.unit(11, "feet")
  30114. },
  30115. {
  30116. name: "Macro",
  30117. height: math.unit(15, "meters"),
  30118. default: true
  30119. },
  30120. {
  30121. name: "Macro+",
  30122. height: math.unit(40, "meters")
  30123. },
  30124. ]
  30125. ))
  30126. characterMakers.push(() => makeCharacter(
  30127. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30128. {
  30129. front: {
  30130. height: math.unit(4 + 2 / 12, "feet"),
  30131. weight: math.unit(95, "lb"),
  30132. name: "Front",
  30133. image: {
  30134. source: "./media/characters/vaelophis-nyx/front.svg",
  30135. extra: 2532/2330,
  30136. bottom: 0/2532
  30137. }
  30138. },
  30139. back: {
  30140. height: math.unit(4 + 2 / 12, "feet"),
  30141. weight: math.unit(95, "lb"),
  30142. name: "Back",
  30143. image: {
  30144. source: "./media/characters/vaelophis-nyx/back.svg",
  30145. extra: 2484/2361,
  30146. bottom: 0/2484
  30147. }
  30148. },
  30149. feralSide: {
  30150. height: math.unit(2 + 1/12, "feet"),
  30151. weight: math.unit(20, "lb"),
  30152. name: "Feral (Side)",
  30153. image: {
  30154. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30155. extra: 1721/1581,
  30156. bottom: 70/1791
  30157. }
  30158. },
  30159. feralLazing: {
  30160. height: math.unit(1.08, "feet"),
  30161. weight: math.unit(20, "lb"),
  30162. name: "Feral (Lazing)",
  30163. image: {
  30164. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30165. extra: 822/822,
  30166. bottom: 248/1070
  30167. }
  30168. },
  30169. ear: {
  30170. height: math.unit(0.416, "feet"),
  30171. name: "Ear",
  30172. image: {
  30173. source: "./media/characters/vaelophis-nyx/ear.svg"
  30174. }
  30175. },
  30176. eye: {
  30177. height: math.unit(0.0748, "feet"),
  30178. name: "Eye",
  30179. image: {
  30180. source: "./media/characters/vaelophis-nyx/eye.svg"
  30181. }
  30182. },
  30183. mouth: {
  30184. height: math.unit(0.378, "feet"),
  30185. name: "Mouth",
  30186. image: {
  30187. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30188. }
  30189. },
  30190. spade: {
  30191. height: math.unit(0.55, "feet"),
  30192. name: "Spade",
  30193. image: {
  30194. source: "./media/characters/vaelophis-nyx/spade.svg"
  30195. }
  30196. },
  30197. },
  30198. [
  30199. {
  30200. name: "Normal",
  30201. height: math.unit(4 + 2/12, "feet"),
  30202. default: true
  30203. },
  30204. ]
  30205. ))
  30206. characterMakers.push(() => makeCharacter(
  30207. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30208. {
  30209. front: {
  30210. height: math.unit(7, "feet"),
  30211. weight: math.unit(231, "lb"),
  30212. name: "Front",
  30213. image: {
  30214. source: "./media/characters/flux/front.svg",
  30215. extra: 919/871,
  30216. bottom: 0/919
  30217. }
  30218. },
  30219. back: {
  30220. height: math.unit(7, "feet"),
  30221. weight: math.unit(231, "lb"),
  30222. name: "Back",
  30223. image: {
  30224. source: "./media/characters/flux/back.svg",
  30225. extra: 1040/992,
  30226. bottom: 0/1040
  30227. }
  30228. },
  30229. frontDressed: {
  30230. height: math.unit(7, "feet"),
  30231. weight: math.unit(231, "lb"),
  30232. name: "Front (Dressed)",
  30233. image: {
  30234. source: "./media/characters/flux/front-dressed.svg",
  30235. extra: 919/871,
  30236. bottom: 0/919
  30237. }
  30238. },
  30239. feralSide: {
  30240. height: math.unit(5, "feet"),
  30241. weight: math.unit(150, "lb"),
  30242. name: "Feral (Side)",
  30243. image: {
  30244. source: "./media/characters/flux/feral-side.svg",
  30245. extra: 598/528,
  30246. bottom: 28/626
  30247. }
  30248. },
  30249. head: {
  30250. height: math.unit(1.585, "feet"),
  30251. name: "Head",
  30252. image: {
  30253. source: "./media/characters/flux/head.svg"
  30254. }
  30255. },
  30256. headSide: {
  30257. height: math.unit(1.74, "feet"),
  30258. name: "Head (Side)",
  30259. image: {
  30260. source: "./media/characters/flux/head-side.svg"
  30261. }
  30262. },
  30263. headSideFire: {
  30264. height: math.unit(1.76, "feet"),
  30265. name: "Head (Side, Fire)",
  30266. image: {
  30267. source: "./media/characters/flux/head-side-fire.svg"
  30268. }
  30269. },
  30270. },
  30271. [
  30272. {
  30273. name: "Normal",
  30274. height: math.unit(7, "feet"),
  30275. default: true
  30276. },
  30277. ]
  30278. ))
  30279. characterMakers.push(() => makeCharacter(
  30280. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30281. {
  30282. front: {
  30283. height: math.unit(9, "feet"),
  30284. weight: math.unit(1012, "lb"),
  30285. name: "Front",
  30286. image: {
  30287. source: "./media/characters/ulfra-lupae/front.svg",
  30288. extra: 1083/1011,
  30289. bottom: 67/1150
  30290. }
  30291. },
  30292. },
  30293. [
  30294. {
  30295. name: "Micro",
  30296. height: math.unit(6, "inches")
  30297. },
  30298. {
  30299. name: "Socializing",
  30300. height: math.unit(6 + 5/12, "feet")
  30301. },
  30302. {
  30303. name: "Normal",
  30304. height: math.unit(9, "feet"),
  30305. default: true
  30306. },
  30307. {
  30308. name: "Macro",
  30309. height: math.unit(150, "feet")
  30310. },
  30311. ]
  30312. ))
  30313. characterMakers.push(() => makeCharacter(
  30314. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30315. {
  30316. front: {
  30317. height: math.unit(5 + 2/12, "feet"),
  30318. weight: math.unit(120, "lb"),
  30319. name: "Front",
  30320. image: {
  30321. source: "./media/characters/timber/front.svg",
  30322. extra: 2814/2705,
  30323. bottom: 181/2995
  30324. }
  30325. },
  30326. },
  30327. [
  30328. {
  30329. name: "Normal",
  30330. height: math.unit(5 + 2/12, "feet"),
  30331. default: true
  30332. },
  30333. ]
  30334. ))
  30335. characterMakers.push(() => makeCharacter(
  30336. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30337. {
  30338. front: {
  30339. height: math.unit(5 + 7/12, "feet"),
  30340. weight: math.unit(220, "lb"),
  30341. name: "Front",
  30342. image: {
  30343. source: "./media/characters/nicki/front.svg",
  30344. extra: 453/419,
  30345. bottom: 7/460
  30346. }
  30347. },
  30348. frontAlt: {
  30349. height: math.unit(5 + 7/12, "feet"),
  30350. weight: math.unit(220, "lb"),
  30351. name: "Front-alt",
  30352. image: {
  30353. source: "./media/characters/nicki/front-alt.svg",
  30354. extra: 435/411,
  30355. bottom: 12/447
  30356. }
  30357. },
  30358. back: {
  30359. height: math.unit(5 + 7/12, "feet"),
  30360. weight: math.unit(220, "lb"),
  30361. name: "Back",
  30362. image: {
  30363. source: "./media/characters/nicki/back.svg",
  30364. extra: 440/413,
  30365. bottom: 19/459
  30366. }
  30367. },
  30368. taur: {
  30369. height: math.unit(7 + 6/12, "feet"),
  30370. weight: math.unit(700, "lb"),
  30371. name: "Taur",
  30372. image: {
  30373. source: "./media/characters/nicki/taur.svg",
  30374. extra: 975/773,
  30375. bottom: 0/975
  30376. }
  30377. },
  30378. frontNsfw: {
  30379. height: math.unit(5 + 7/12, "feet"),
  30380. weight: math.unit(220, "lb"),
  30381. name: "Front (NSFW)",
  30382. image: {
  30383. source: "./media/characters/nicki/front-nsfw.svg",
  30384. extra: 453/419,
  30385. bottom: 7/460
  30386. }
  30387. },
  30388. frontNsfwAlt: {
  30389. height: math.unit(5 + 7/12, "feet"),
  30390. weight: math.unit(220, "lb"),
  30391. name: "Front (Alt, NSFW)",
  30392. image: {
  30393. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30394. extra: 435/411,
  30395. bottom: 12/447
  30396. }
  30397. },
  30398. backNsfw: {
  30399. height: math.unit(5 + 7/12, "feet"),
  30400. weight: math.unit(220, "lb"),
  30401. name: "Back (NSFW)",
  30402. image: {
  30403. source: "./media/characters/nicki/back-nsfw.svg",
  30404. extra: 440/413,
  30405. bottom: 19/459
  30406. }
  30407. },
  30408. head: {
  30409. height: math.unit(2.1, "feet"),
  30410. name: "Head",
  30411. image: {
  30412. source: "./media/characters/nicki/head.svg"
  30413. }
  30414. },
  30415. paw: {
  30416. height: math.unit(1.88, "feet"),
  30417. name: "Paw",
  30418. image: {
  30419. source: "./media/characters/nicki/paw.svg"
  30420. }
  30421. },
  30422. },
  30423. [
  30424. {
  30425. name: "Normal",
  30426. height: math.unit(5 + 7/12, "feet"),
  30427. default: true
  30428. },
  30429. ]
  30430. ))
  30431. characterMakers.push(() => makeCharacter(
  30432. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30433. {
  30434. front: {
  30435. height: math.unit(7 + 10/12, "feet"),
  30436. weight: math.unit(3.5, "tons"),
  30437. name: "Front",
  30438. image: {
  30439. source: "./media/characters/lee/front.svg",
  30440. extra: 1773/1615,
  30441. bottom: 86/1859
  30442. }
  30443. },
  30444. hand: {
  30445. height: math.unit(1.78, "feet"),
  30446. name: "Hand",
  30447. image: {
  30448. source: "./media/characters/lee/hand.svg"
  30449. }
  30450. },
  30451. maw: {
  30452. height: math.unit(1.18, "feet"),
  30453. name: "Maw",
  30454. image: {
  30455. source: "./media/characters/lee/maw.svg"
  30456. }
  30457. },
  30458. },
  30459. [
  30460. {
  30461. name: "Normal",
  30462. height: math.unit(7 + 10/12, "feet"),
  30463. default: true
  30464. },
  30465. ]
  30466. ))
  30467. characterMakers.push(() => makeCharacter(
  30468. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30469. {
  30470. front: {
  30471. height: math.unit(9, "feet"),
  30472. name: "Front",
  30473. image: {
  30474. source: "./media/characters/guti/front.svg",
  30475. extra: 4551/4355,
  30476. bottom: 123/4674
  30477. }
  30478. },
  30479. tongue: {
  30480. height: math.unit(1, "feet"),
  30481. name: "Tongue",
  30482. image: {
  30483. source: "./media/characters/guti/tongue.svg"
  30484. }
  30485. },
  30486. paw: {
  30487. height: math.unit(1.18, "feet"),
  30488. name: "Paw",
  30489. image: {
  30490. source: "./media/characters/guti/paw.svg"
  30491. }
  30492. },
  30493. },
  30494. [
  30495. {
  30496. name: "Normal",
  30497. height: math.unit(9, "feet"),
  30498. default: true
  30499. },
  30500. ]
  30501. ))
  30502. characterMakers.push(() => makeCharacter(
  30503. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30504. {
  30505. side: {
  30506. height: math.unit(5, "meters"),
  30507. name: "Side",
  30508. image: {
  30509. source: "./media/characters/vesper/side.svg",
  30510. extra: 1605/1518,
  30511. bottom: 0/1605
  30512. }
  30513. },
  30514. },
  30515. [
  30516. {
  30517. name: "Small",
  30518. height: math.unit(5, "meters")
  30519. },
  30520. {
  30521. name: "Sage",
  30522. height: math.unit(100, "meters"),
  30523. default: true
  30524. },
  30525. {
  30526. name: "Fun Size",
  30527. height: math.unit(600, "meters")
  30528. },
  30529. {
  30530. name: "Goddess",
  30531. height: math.unit(20000, "km")
  30532. },
  30533. {
  30534. name: "Maximum",
  30535. height: math.unit(5, "galaxies")
  30536. },
  30537. ]
  30538. ))
  30539. characterMakers.push(() => makeCharacter(
  30540. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30541. {
  30542. front: {
  30543. height: math.unit(6 + 3/12, "feet"),
  30544. weight: math.unit(190, "lb"),
  30545. name: "Front",
  30546. image: {
  30547. source: "./media/characters/gawain/front.svg",
  30548. extra: 2222/2139,
  30549. bottom: 90/2312
  30550. }
  30551. },
  30552. back: {
  30553. height: math.unit(6 + 3/12, "feet"),
  30554. weight: math.unit(190, "lb"),
  30555. name: "Back",
  30556. image: {
  30557. source: "./media/characters/gawain/back.svg",
  30558. extra: 2199/2111,
  30559. bottom: 73/2272
  30560. }
  30561. },
  30562. },
  30563. [
  30564. {
  30565. name: "Normal",
  30566. height: math.unit(6 + 3/12, "feet"),
  30567. default: true
  30568. },
  30569. ]
  30570. ))
  30571. characterMakers.push(() => makeCharacter(
  30572. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30573. {
  30574. side: {
  30575. height: math.unit(3.5, "meters"),
  30576. weight: math.unit(16000, "lb"),
  30577. name: "Side",
  30578. image: {
  30579. source: "./media/characters/dascalti/side.svg",
  30580. extra: 392/273,
  30581. bottom: 47/439
  30582. }
  30583. },
  30584. breath: {
  30585. height: math.unit(7.4, "feet"),
  30586. name: "Breath",
  30587. image: {
  30588. source: "./media/characters/dascalti/breath.svg"
  30589. }
  30590. },
  30591. fed: {
  30592. height: math.unit(3.6, "meters"),
  30593. weight: math.unit(16000, "lb"),
  30594. name: "Fed",
  30595. image: {
  30596. source: "./media/characters/dascalti/fed.svg",
  30597. extra: 1419/820,
  30598. bottom: 95/1514
  30599. }
  30600. },
  30601. },
  30602. [
  30603. {
  30604. name: "Normal",
  30605. height: math.unit(3.5, "meters"),
  30606. default: true
  30607. },
  30608. ]
  30609. ))
  30610. characterMakers.push(() => makeCharacter(
  30611. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30612. {
  30613. front: {
  30614. height: math.unit(3 + 5/12, "feet"),
  30615. name: "Front",
  30616. image: {
  30617. source: "./media/characters/mauve/front.svg",
  30618. extra: 1126/1033,
  30619. bottom: 65/1191
  30620. }
  30621. },
  30622. side: {
  30623. height: math.unit(3 + 5/12, "feet"),
  30624. name: "Side",
  30625. image: {
  30626. source: "./media/characters/mauve/side.svg",
  30627. extra: 1089/1001,
  30628. bottom: 29/1118
  30629. }
  30630. },
  30631. back: {
  30632. height: math.unit(3 + 5/12, "feet"),
  30633. name: "Back",
  30634. image: {
  30635. source: "./media/characters/mauve/back.svg",
  30636. extra: 1173/1053,
  30637. bottom: 109/1282
  30638. }
  30639. },
  30640. },
  30641. [
  30642. {
  30643. name: "Normal",
  30644. height: math.unit(3 + 5/12, "feet"),
  30645. default: true
  30646. },
  30647. ]
  30648. ))
  30649. characterMakers.push(() => makeCharacter(
  30650. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30651. {
  30652. front: {
  30653. height: math.unit(6 + 3/12, "feet"),
  30654. weight: math.unit(430, "lb"),
  30655. name: "Front",
  30656. image: {
  30657. source: "./media/characters/carlos/front.svg",
  30658. extra: 1964/1913,
  30659. bottom: 70/2034
  30660. }
  30661. },
  30662. },
  30663. [
  30664. {
  30665. name: "Normal",
  30666. height: math.unit(6 + 3/12, "feet"),
  30667. default: true
  30668. },
  30669. ]
  30670. ))
  30671. characterMakers.push(() => makeCharacter(
  30672. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30673. {
  30674. back: {
  30675. height: math.unit(5 + 10/12, "feet"),
  30676. weight: math.unit(200, "lb"),
  30677. name: "Back",
  30678. image: {
  30679. source: "./media/characters/jax/back.svg",
  30680. extra: 764/739,
  30681. bottom: 25/789
  30682. }
  30683. },
  30684. },
  30685. [
  30686. {
  30687. name: "Normal",
  30688. height: math.unit(5 + 10/12, "feet"),
  30689. default: true
  30690. },
  30691. ]
  30692. ))
  30693. characterMakers.push(() => makeCharacter(
  30694. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30695. {
  30696. front: {
  30697. height: math.unit(8, "feet"),
  30698. weight: math.unit(250, "lb"),
  30699. name: "Front",
  30700. image: {
  30701. source: "./media/characters/eikthynir/front.svg",
  30702. extra: 1332/1166,
  30703. bottom: 82/1414
  30704. }
  30705. },
  30706. back: {
  30707. height: math.unit(8, "feet"),
  30708. weight: math.unit(250, "lb"),
  30709. name: "Back",
  30710. image: {
  30711. source: "./media/characters/eikthynir/back.svg",
  30712. extra: 1342/1190,
  30713. bottom: 19/1361
  30714. }
  30715. },
  30716. dick: {
  30717. height: math.unit(2.35, "feet"),
  30718. name: "Dick",
  30719. image: {
  30720. source: "./media/characters/eikthynir/dick.svg"
  30721. }
  30722. },
  30723. },
  30724. [
  30725. {
  30726. name: "Normal",
  30727. height: math.unit(8, "feet"),
  30728. default: true
  30729. },
  30730. ]
  30731. ))
  30732. characterMakers.push(() => makeCharacter(
  30733. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30734. {
  30735. front: {
  30736. height: math.unit(99, "meters"),
  30737. weight: math.unit(13000, "tons"),
  30738. name: "Front",
  30739. image: {
  30740. source: "./media/characters/zlmos/front.svg",
  30741. extra: 2202/1992,
  30742. bottom: 315/2517
  30743. }
  30744. },
  30745. },
  30746. [
  30747. {
  30748. name: "Macro",
  30749. height: math.unit(99, "meters"),
  30750. default: true
  30751. },
  30752. ]
  30753. ))
  30754. characterMakers.push(() => makeCharacter(
  30755. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30756. {
  30757. front: {
  30758. height: math.unit(6 + 5/12, "feet"),
  30759. name: "Front",
  30760. image: {
  30761. source: "./media/characters/purri/front.svg",
  30762. extra: 1698/1610,
  30763. bottom: 32/1730
  30764. }
  30765. },
  30766. frontAlt: {
  30767. height: math.unit(6 + 5/12, "feet"),
  30768. name: "Front (Alt)",
  30769. image: {
  30770. source: "./media/characters/purri/front-alt.svg",
  30771. extra: 450/420,
  30772. bottom: 26/476
  30773. }
  30774. },
  30775. boots: {
  30776. height: math.unit(5.5, "feet"),
  30777. name: "Boots",
  30778. image: {
  30779. source: "./media/characters/purri/boots.svg",
  30780. extra: 905/853,
  30781. bottom: 18/923
  30782. }
  30783. },
  30784. lying: {
  30785. height: math.unit(2, "feet"),
  30786. name: "Lying",
  30787. image: {
  30788. source: "./media/characters/purri/lying.svg",
  30789. extra: 940/843,
  30790. bottom: 146/1086
  30791. }
  30792. },
  30793. devious: {
  30794. height: math.unit(1.77, "feet"),
  30795. name: "Devious",
  30796. image: {
  30797. source: "./media/characters/purri/devious.svg",
  30798. extra: 1440/1155,
  30799. bottom: 147/1587
  30800. }
  30801. },
  30802. bean: {
  30803. height: math.unit(1.94, "feet"),
  30804. name: "Bean",
  30805. image: {
  30806. source: "./media/characters/purri/bean.svg"
  30807. }
  30808. },
  30809. },
  30810. [
  30811. {
  30812. name: "Micro",
  30813. height: math.unit(1, "mm")
  30814. },
  30815. {
  30816. name: "Normal",
  30817. height: math.unit(6 + 5/12, "feet"),
  30818. default: true
  30819. },
  30820. {
  30821. name: "Macro :3c",
  30822. height: math.unit(2, "miles")
  30823. },
  30824. ]
  30825. ))
  30826. characterMakers.push(() => makeCharacter(
  30827. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30828. {
  30829. front: {
  30830. height: math.unit(6 + 2/12, "feet"),
  30831. weight: math.unit(250, "lb"),
  30832. name: "Front",
  30833. image: {
  30834. source: "./media/characters/moonlight/front.svg",
  30835. extra: 1044/908,
  30836. bottom: 56/1100
  30837. }
  30838. },
  30839. feral: {
  30840. height: math.unit(3 + 1/12, "feet"),
  30841. weight: math.unit(50, "kg"),
  30842. name: "Feral",
  30843. image: {
  30844. source: "./media/characters/moonlight/feral.svg",
  30845. extra: 3705/2791,
  30846. bottom: 145/3850
  30847. }
  30848. },
  30849. paw: {
  30850. height: math.unit(1, "feet"),
  30851. name: "Paw",
  30852. image: {
  30853. source: "./media/characters/moonlight/paw.svg"
  30854. }
  30855. },
  30856. paws: {
  30857. height: math.unit(0.98, "feet"),
  30858. name: "Paws",
  30859. image: {
  30860. source: "./media/characters/moonlight/paws.svg",
  30861. extra: 939/939,
  30862. bottom: 50/989
  30863. }
  30864. },
  30865. mouth: {
  30866. height: math.unit(0.48, "feet"),
  30867. name: "Mouth",
  30868. image: {
  30869. source: "./media/characters/moonlight/mouth.svg"
  30870. }
  30871. },
  30872. dick: {
  30873. height: math.unit(1.46, "feet"),
  30874. name: "Dick",
  30875. image: {
  30876. source: "./media/characters/moonlight/dick.svg"
  30877. }
  30878. },
  30879. },
  30880. [
  30881. {
  30882. name: "Normal",
  30883. height: math.unit(6 + 2/12, "feet"),
  30884. default: true
  30885. },
  30886. {
  30887. name: "Macro",
  30888. height: math.unit(300, "feet")
  30889. },
  30890. {
  30891. name: "Macro+",
  30892. height: math.unit(1, "mile")
  30893. },
  30894. {
  30895. name: "Mt. Moon",
  30896. height: math.unit(5, "miles")
  30897. },
  30898. {
  30899. name: "Megamacro",
  30900. height: math.unit(15, "miles")
  30901. },
  30902. ]
  30903. ))
  30904. characterMakers.push(() => makeCharacter(
  30905. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30906. {
  30907. back: {
  30908. height: math.unit(6, "feet"),
  30909. weight: math.unit(150, "lb"),
  30910. name: "Back",
  30911. image: {
  30912. source: "./media/characters/sylen/back.svg",
  30913. extra: 1335/1273,
  30914. bottom: 107/1442
  30915. }
  30916. },
  30917. },
  30918. [
  30919. {
  30920. name: "Normal",
  30921. height: math.unit(5 + 5/12, "feet")
  30922. },
  30923. {
  30924. name: "Megamacro",
  30925. height: math.unit(3, "miles"),
  30926. default: true
  30927. },
  30928. ]
  30929. ))
  30930. characterMakers.push(() => makeCharacter(
  30931. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30932. {
  30933. front: {
  30934. height: math.unit(6, "feet"),
  30935. weight: math.unit(190, "lb"),
  30936. name: "Front",
  30937. image: {
  30938. source: "./media/characters/huttser/front.svg",
  30939. extra: 1152/1058,
  30940. bottom: 23/1175
  30941. }
  30942. },
  30943. side: {
  30944. height: math.unit(6, "feet"),
  30945. weight: math.unit(190, "lb"),
  30946. name: "Side",
  30947. image: {
  30948. source: "./media/characters/huttser/side.svg",
  30949. extra: 1174/1065,
  30950. bottom: 18/1192
  30951. }
  30952. },
  30953. back: {
  30954. height: math.unit(6, "feet"),
  30955. weight: math.unit(190, "lb"),
  30956. name: "Back",
  30957. image: {
  30958. source: "./media/characters/huttser/back.svg",
  30959. extra: 1158/1056,
  30960. bottom: 12/1170
  30961. }
  30962. },
  30963. },
  30964. [
  30965. ]
  30966. ))
  30967. characterMakers.push(() => makeCharacter(
  30968. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30969. {
  30970. side: {
  30971. height: math.unit(12 + 9/12, "feet"),
  30972. weight: math.unit(15000, "lb"),
  30973. name: "Side",
  30974. image: {
  30975. source: "./media/characters/faan/side.svg",
  30976. extra: 2747/2697,
  30977. bottom: 0/2747
  30978. }
  30979. },
  30980. front: {
  30981. height: math.unit(12 + 9/12, "feet"),
  30982. weight: math.unit(15000, "lb"),
  30983. name: "Front",
  30984. image: {
  30985. source: "./media/characters/faan/front.svg",
  30986. extra: 607/571,
  30987. bottom: 24/631
  30988. }
  30989. },
  30990. head: {
  30991. height: math.unit(2.85, "feet"),
  30992. name: "Head",
  30993. image: {
  30994. source: "./media/characters/faan/head.svg"
  30995. }
  30996. },
  30997. headAlt: {
  30998. height: math.unit(3.13, "feet"),
  30999. name: "Head-alt",
  31000. image: {
  31001. source: "./media/characters/faan/head-alt.svg"
  31002. }
  31003. },
  31004. },
  31005. [
  31006. {
  31007. name: "Normal",
  31008. height: math.unit(12 + 9/12, "feet"),
  31009. default: true
  31010. },
  31011. ]
  31012. ))
  31013. characterMakers.push(() => makeCharacter(
  31014. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31015. {
  31016. front: {
  31017. height: math.unit(6, "feet"),
  31018. weight: math.unit(300, "lb"),
  31019. name: "Front",
  31020. image: {
  31021. source: "./media/characters/tanio/front.svg",
  31022. extra: 711/673,
  31023. bottom: 25/736
  31024. }
  31025. },
  31026. },
  31027. [
  31028. {
  31029. name: "Normal",
  31030. height: math.unit(6, "feet"),
  31031. default: true
  31032. },
  31033. ]
  31034. ))
  31035. characterMakers.push(() => makeCharacter(
  31036. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31037. {
  31038. front: {
  31039. height: math.unit(3, "inches"),
  31040. name: "Front",
  31041. image: {
  31042. source: "./media/characters/noboru/front.svg",
  31043. extra: 1039/932,
  31044. bottom: 18/1057
  31045. }
  31046. },
  31047. },
  31048. [
  31049. {
  31050. name: "Micro",
  31051. height: math.unit(3, "inches"),
  31052. default: true
  31053. },
  31054. ]
  31055. ))
  31056. characterMakers.push(() => makeCharacter(
  31057. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31058. {
  31059. front: {
  31060. height: math.unit(1.85, "meters"),
  31061. weight: math.unit(80, "kg"),
  31062. name: "Front",
  31063. image: {
  31064. source: "./media/characters/daniel-barrett/front.svg",
  31065. extra: 355/337,
  31066. bottom: 9/364
  31067. }
  31068. },
  31069. },
  31070. [
  31071. {
  31072. name: "Pico",
  31073. height: math.unit(0.0433, "mm")
  31074. },
  31075. {
  31076. name: "Nano",
  31077. height: math.unit(1.5, "mm")
  31078. },
  31079. {
  31080. name: "Micro",
  31081. height: math.unit(5.3, "cm"),
  31082. default: true
  31083. },
  31084. {
  31085. name: "Normal",
  31086. height: math.unit(1.85, "meters")
  31087. },
  31088. {
  31089. name: "Macro",
  31090. height: math.unit(64.7, "meters")
  31091. },
  31092. {
  31093. name: "Megamacro",
  31094. height: math.unit(2.26, "km")
  31095. },
  31096. {
  31097. name: "Gigamacro",
  31098. height: math.unit(79, "km")
  31099. },
  31100. {
  31101. name: "Teramacro",
  31102. height: math.unit(2765, "km")
  31103. },
  31104. {
  31105. name: "Petamacro",
  31106. height: math.unit(96678, "km")
  31107. },
  31108. ]
  31109. ))
  31110. characterMakers.push(() => makeCharacter(
  31111. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31112. {
  31113. front: {
  31114. height: math.unit(30, "meters"),
  31115. weight: math.unit(400, "tons"),
  31116. name: "Front",
  31117. image: {
  31118. source: "./media/characters/zeel/front.svg",
  31119. extra: 2599/2599,
  31120. bottom: 226/2825
  31121. }
  31122. },
  31123. },
  31124. [
  31125. {
  31126. name: "Macro",
  31127. height: math.unit(30, "meters"),
  31128. default: true
  31129. },
  31130. ]
  31131. ))
  31132. characterMakers.push(() => makeCharacter(
  31133. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31134. {
  31135. front: {
  31136. height: math.unit(6 + 7/12, "feet"),
  31137. weight: math.unit(210, "lb"),
  31138. name: "Front",
  31139. image: {
  31140. source: "./media/characters/tarn/front.svg",
  31141. extra: 3517/3220,
  31142. bottom: 91/3608
  31143. }
  31144. },
  31145. back: {
  31146. height: math.unit(6 + 7/12, "feet"),
  31147. weight: math.unit(210, "lb"),
  31148. name: "Back",
  31149. image: {
  31150. source: "./media/characters/tarn/back.svg",
  31151. extra: 3566/3241,
  31152. bottom: 34/3600
  31153. }
  31154. },
  31155. dick: {
  31156. height: math.unit(1.65, "feet"),
  31157. name: "Dick",
  31158. image: {
  31159. source: "./media/characters/tarn/dick.svg"
  31160. }
  31161. },
  31162. paw: {
  31163. height: math.unit(1.80, "feet"),
  31164. name: "Paw",
  31165. image: {
  31166. source: "./media/characters/tarn/paw.svg"
  31167. }
  31168. },
  31169. tongue: {
  31170. height: math.unit(0.97, "feet"),
  31171. name: "Tongue",
  31172. image: {
  31173. source: "./media/characters/tarn/tongue.svg"
  31174. }
  31175. },
  31176. },
  31177. [
  31178. {
  31179. name: "Micro",
  31180. height: math.unit(4, "inches")
  31181. },
  31182. {
  31183. name: "Normal",
  31184. height: math.unit(6 + 7/12, "feet"),
  31185. default: true
  31186. },
  31187. {
  31188. name: "Macro",
  31189. height: math.unit(300, "feet")
  31190. },
  31191. ]
  31192. ))
  31193. characterMakers.push(() => makeCharacter(
  31194. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31195. {
  31196. front: {
  31197. height: math.unit(5 + 7/12, "feet"),
  31198. weight: math.unit(80, "kg"),
  31199. name: "Front",
  31200. image: {
  31201. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31202. extra: 3023/2865,
  31203. bottom: 33/3056
  31204. }
  31205. },
  31206. back: {
  31207. height: math.unit(5 + 7/12, "feet"),
  31208. weight: math.unit(80, "kg"),
  31209. name: "Back",
  31210. image: {
  31211. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31212. extra: 3020/2886,
  31213. bottom: 30/3050
  31214. }
  31215. },
  31216. dick: {
  31217. height: math.unit(0.98, "feet"),
  31218. name: "Dick",
  31219. image: {
  31220. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31221. }
  31222. },
  31223. anatomy: {
  31224. height: math.unit(2.86, "feet"),
  31225. name: "Anatomy",
  31226. image: {
  31227. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31228. }
  31229. },
  31230. },
  31231. [
  31232. {
  31233. name: "Really Small",
  31234. height: math.unit(2, "inches")
  31235. },
  31236. {
  31237. name: "Micro",
  31238. height: math.unit(5.583, "inches")
  31239. },
  31240. {
  31241. name: "Normal",
  31242. height: math.unit(5 + 7/12, "feet"),
  31243. default: true
  31244. },
  31245. {
  31246. name: "Macro",
  31247. height: math.unit(67, "feet")
  31248. },
  31249. {
  31250. name: "Megamacro",
  31251. height: math.unit(134, "feet")
  31252. },
  31253. ]
  31254. ))
  31255. characterMakers.push(() => makeCharacter(
  31256. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31257. {
  31258. front: {
  31259. height: math.unit(9, "feet"),
  31260. weight: math.unit(120, "lb"),
  31261. name: "Front",
  31262. image: {
  31263. source: "./media/characters/sally/front.svg",
  31264. extra: 1506/1349,
  31265. bottom: 66/1572
  31266. }
  31267. },
  31268. },
  31269. [
  31270. {
  31271. name: "Normal",
  31272. height: math.unit(9, "feet"),
  31273. default: true
  31274. },
  31275. ]
  31276. ))
  31277. characterMakers.push(() => makeCharacter(
  31278. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31279. {
  31280. front: {
  31281. height: math.unit(8, "feet"),
  31282. weight: math.unit(900, "lb"),
  31283. name: "Front",
  31284. image: {
  31285. source: "./media/characters/owen/front.svg",
  31286. extra: 1761/1657,
  31287. bottom: 74/1835
  31288. }
  31289. },
  31290. side: {
  31291. height: math.unit(8, "feet"),
  31292. weight: math.unit(900, "lb"),
  31293. name: "Side",
  31294. image: {
  31295. source: "./media/characters/owen/side.svg",
  31296. extra: 1797/1734,
  31297. bottom: 30/1827
  31298. }
  31299. },
  31300. back: {
  31301. height: math.unit(8, "feet"),
  31302. weight: math.unit(900, "lb"),
  31303. name: "Back",
  31304. image: {
  31305. source: "./media/characters/owen/back.svg",
  31306. extra: 1796/1706,
  31307. bottom: 59/1855
  31308. }
  31309. },
  31310. maw: {
  31311. height: math.unit(1.76, "feet"),
  31312. name: "Maw",
  31313. image: {
  31314. source: "./media/characters/owen/maw.svg"
  31315. }
  31316. },
  31317. },
  31318. [
  31319. {
  31320. name: "Normal",
  31321. height: math.unit(8, "feet"),
  31322. default: true
  31323. },
  31324. ]
  31325. ))
  31326. characterMakers.push(() => makeCharacter(
  31327. { name: "Ryth", species: ["gremlin"], tags: ["anthro"] },
  31328. {
  31329. front: {
  31330. height: math.unit(4, "feet"),
  31331. weight: math.unit(400, "lb"),
  31332. name: "Front",
  31333. image: {
  31334. source: "./media/characters/ryth/front.svg",
  31335. extra: 876/691,
  31336. bottom: 25/901
  31337. }
  31338. },
  31339. },
  31340. [
  31341. {
  31342. name: "Normal",
  31343. height: math.unit(4, "feet"),
  31344. default: true
  31345. },
  31346. ]
  31347. ))
  31348. characterMakers.push(() => makeCharacter(
  31349. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31350. {
  31351. front: {
  31352. height: math.unit(7, "feet"),
  31353. weight: math.unit(180, "lb"),
  31354. name: "Front",
  31355. image: {
  31356. source: "./media/characters/necrolance/front.svg",
  31357. extra: 1062/947,
  31358. bottom: 41/1103
  31359. }
  31360. },
  31361. back: {
  31362. height: math.unit(7, "feet"),
  31363. weight: math.unit(180, "lb"),
  31364. name: "Back",
  31365. image: {
  31366. source: "./media/characters/necrolance/back.svg",
  31367. extra: 1045/984,
  31368. bottom: 14/1059
  31369. }
  31370. },
  31371. wing: {
  31372. height: math.unit(2.67, "feet"),
  31373. name: "Wing",
  31374. image: {
  31375. source: "./media/characters/necrolance/wing.svg"
  31376. }
  31377. },
  31378. },
  31379. [
  31380. {
  31381. name: "Normal",
  31382. height: math.unit(7, "feet"),
  31383. default: true
  31384. },
  31385. ]
  31386. ))
  31387. characterMakers.push(() => makeCharacter(
  31388. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31389. {
  31390. front: {
  31391. height: math.unit(76, "meters"),
  31392. weight: math.unit(30000, "tons"),
  31393. name: "Front",
  31394. image: {
  31395. source: "./media/characters/tyler/front.svg",
  31396. extra: 1640/1640,
  31397. bottom: 114/1754
  31398. }
  31399. },
  31400. },
  31401. [
  31402. {
  31403. name: "Macro",
  31404. height: math.unit(76, "meters"),
  31405. default: true
  31406. },
  31407. ]
  31408. ))
  31409. characterMakers.push(() => makeCharacter(
  31410. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31411. {
  31412. front: {
  31413. height: math.unit(4 + 11/12, "feet"),
  31414. weight: math.unit(132, "lb"),
  31415. name: "Front",
  31416. image: {
  31417. source: "./media/characters/icey/front.svg",
  31418. extra: 2750/2550,
  31419. bottom: 33/2783
  31420. }
  31421. },
  31422. back: {
  31423. height: math.unit(4 + 11/12, "feet"),
  31424. weight: math.unit(132, "lb"),
  31425. name: "Back",
  31426. image: {
  31427. source: "./media/characters/icey/back.svg",
  31428. extra: 2624/2481,
  31429. bottom: 35/2659
  31430. }
  31431. },
  31432. },
  31433. [
  31434. {
  31435. name: "Normal",
  31436. height: math.unit(4 + 11/12, "feet"),
  31437. default: true
  31438. },
  31439. ]
  31440. ))
  31441. characterMakers.push(() => makeCharacter(
  31442. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31443. {
  31444. front: {
  31445. height: math.unit(100, "feet"),
  31446. weight: math.unit(0, "lb"),
  31447. name: "Front",
  31448. image: {
  31449. source: "./media/characters/smile/front.svg",
  31450. extra: 2983/2912,
  31451. bottom: 162/3145
  31452. }
  31453. },
  31454. back: {
  31455. height: math.unit(100, "feet"),
  31456. weight: math.unit(0, "lb"),
  31457. name: "Back",
  31458. image: {
  31459. source: "./media/characters/smile/back.svg",
  31460. extra: 3143/3031,
  31461. bottom: 91/3234
  31462. }
  31463. },
  31464. head: {
  31465. height: math.unit(26.3, "feet"),
  31466. weight: math.unit(0, "lb"),
  31467. name: "Head",
  31468. image: {
  31469. source: "./media/characters/smile/head.svg"
  31470. }
  31471. },
  31472. collar: {
  31473. height: math.unit(5.3, "feet"),
  31474. weight: math.unit(0, "lb"),
  31475. name: "Collar",
  31476. image: {
  31477. source: "./media/characters/smile/collar.svg"
  31478. }
  31479. },
  31480. },
  31481. [
  31482. {
  31483. name: "Macro",
  31484. height: math.unit(100, "feet"),
  31485. default: true
  31486. },
  31487. ]
  31488. ))
  31489. characterMakers.push(() => makeCharacter(
  31490. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31491. {
  31492. dragon: {
  31493. height: math.unit(26, "feet"),
  31494. weight: math.unit(36, "tons"),
  31495. name: "Dragon",
  31496. image: {
  31497. source: "./media/characters/arimphae/dragon.svg",
  31498. extra: 1574/983,
  31499. bottom: 357/1931
  31500. }
  31501. },
  31502. drake: {
  31503. height: math.unit(9, "feet"),
  31504. weight: math.unit(1.5, "tons"),
  31505. name: "Drake",
  31506. image: {
  31507. source: "./media/characters/arimphae/drake.svg",
  31508. extra: 1120/925,
  31509. bottom: 435/1555
  31510. }
  31511. },
  31512. },
  31513. [
  31514. {
  31515. name: "Small",
  31516. height: math.unit(26*5/9, "feet")
  31517. },
  31518. {
  31519. name: "Normal",
  31520. height: math.unit(26, "feet"),
  31521. default: true
  31522. },
  31523. ]
  31524. ))
  31525. characterMakers.push(() => makeCharacter(
  31526. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31527. {
  31528. front: {
  31529. height: math.unit(8 + 9/12, "feet"),
  31530. name: "Front",
  31531. image: {
  31532. source: "./media/characters/xander/front.svg",
  31533. extra: 848/673,
  31534. bottom: 62/910
  31535. }
  31536. },
  31537. },
  31538. [
  31539. {
  31540. name: "Normal",
  31541. height: math.unit(8 + 9/12, "feet"),
  31542. default: true
  31543. },
  31544. {
  31545. name: "Gaze Grabber",
  31546. height: math.unit(13 + 8/12, "feet")
  31547. },
  31548. {
  31549. name: "Jaw Dropper",
  31550. height: math.unit(27, "feet")
  31551. },
  31552. {
  31553. name: "Show Stopper",
  31554. height: math.unit(136, "feet")
  31555. },
  31556. {
  31557. name: "Superstar",
  31558. height: math.unit(1.9e6, "miles")
  31559. },
  31560. ]
  31561. ))
  31562. characterMakers.push(() => makeCharacter(
  31563. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31564. {
  31565. side: {
  31566. height: math.unit(2100, "feet"),
  31567. name: "Side",
  31568. image: {
  31569. source: "./media/characters/osiris/side.svg",
  31570. extra: 1105/939,
  31571. bottom: 167/1272
  31572. }
  31573. },
  31574. },
  31575. [
  31576. {
  31577. name: "Macro",
  31578. height: math.unit(2100, "feet"),
  31579. default: true
  31580. },
  31581. ]
  31582. ))
  31583. characterMakers.push(() => makeCharacter(
  31584. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31585. {
  31586. front: {
  31587. height: math.unit(6 + 8/12, "feet"),
  31588. weight: math.unit(225, "lb"),
  31589. name: "Front",
  31590. image: {
  31591. source: "./media/characters/rhys-londe/front.svg",
  31592. extra: 2258/2141,
  31593. bottom: 188/2446
  31594. }
  31595. },
  31596. back: {
  31597. height: math.unit(6 + 8/12, "feet"),
  31598. weight: math.unit(225, "lb"),
  31599. name: "Back",
  31600. image: {
  31601. source: "./media/characters/rhys-londe/back.svg",
  31602. extra: 2237/2137,
  31603. bottom: 63/2300
  31604. }
  31605. },
  31606. frontNsfw: {
  31607. height: math.unit(6 + 8/12, "feet"),
  31608. weight: math.unit(225, "lb"),
  31609. name: "Front (NSFW)",
  31610. image: {
  31611. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31612. extra: 2258/2141,
  31613. bottom: 188/2446
  31614. }
  31615. },
  31616. backNsfw: {
  31617. height: math.unit(6 + 8/12, "feet"),
  31618. weight: math.unit(225, "lb"),
  31619. name: "Back (NSFW)",
  31620. image: {
  31621. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31622. extra: 2237/2137,
  31623. bottom: 63/2300
  31624. }
  31625. },
  31626. dick: {
  31627. height: math.unit(30, "inches"),
  31628. name: "Dick",
  31629. image: {
  31630. source: "./media/characters/rhys-londe/dick.svg"
  31631. }
  31632. },
  31633. maw: {
  31634. height: math.unit(1.6, "feet"),
  31635. name: "Maw",
  31636. image: {
  31637. source: "./media/characters/rhys-londe/maw.svg"
  31638. }
  31639. },
  31640. },
  31641. [
  31642. {
  31643. name: "Normal",
  31644. height: math.unit(6 + 8/12, "feet"),
  31645. default: true
  31646. },
  31647. ]
  31648. ))
  31649. characterMakers.push(() => makeCharacter(
  31650. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31651. {
  31652. front: {
  31653. height: math.unit(3 + 10/12, "feet"),
  31654. weight: math.unit(90, "lb"),
  31655. name: "Front",
  31656. image: {
  31657. source: "./media/characters/taivas-ensim/front.svg",
  31658. extra: 1327/1216,
  31659. bottom: 96/1423
  31660. }
  31661. },
  31662. back: {
  31663. height: math.unit(3 + 10/12, "feet"),
  31664. weight: math.unit(90, "lb"),
  31665. name: "Back",
  31666. image: {
  31667. source: "./media/characters/taivas-ensim/back.svg",
  31668. extra: 1355/1247,
  31669. bottom: 11/1366
  31670. }
  31671. },
  31672. frontNsfw: {
  31673. height: math.unit(3 + 10/12, "feet"),
  31674. weight: math.unit(90, "lb"),
  31675. name: "Front (NSFW)",
  31676. image: {
  31677. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31678. extra: 1327/1216,
  31679. bottom: 96/1423
  31680. }
  31681. },
  31682. backNsfw: {
  31683. height: math.unit(3 + 10/12, "feet"),
  31684. weight: math.unit(90, "lb"),
  31685. name: "Back (NSFW)",
  31686. image: {
  31687. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31688. extra: 1355/1247,
  31689. bottom: 11/1366
  31690. }
  31691. },
  31692. },
  31693. [
  31694. {
  31695. name: "Normal",
  31696. height: math.unit(3 + 10/12, "feet"),
  31697. default: true
  31698. },
  31699. ]
  31700. ))
  31701. characterMakers.push(() => makeCharacter(
  31702. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31703. {
  31704. front: {
  31705. height: math.unit(9 + 6/12, "feet"),
  31706. weight: math.unit(940, "lb"),
  31707. name: "Front",
  31708. image: {
  31709. source: "./media/characters/byliss/front.svg",
  31710. extra: 1327/1290,
  31711. bottom: 82/1409
  31712. }
  31713. },
  31714. back: {
  31715. height: math.unit(9 + 6/12, "feet"),
  31716. weight: math.unit(940, "lb"),
  31717. name: "Back",
  31718. image: {
  31719. source: "./media/characters/byliss/back.svg",
  31720. extra: 1376/1349,
  31721. bottom: 9/1385
  31722. }
  31723. },
  31724. frontNsfw: {
  31725. height: math.unit(9 + 6/12, "feet"),
  31726. weight: math.unit(940, "lb"),
  31727. name: "Front (NSFW)",
  31728. image: {
  31729. source: "./media/characters/byliss/front-nsfw.svg",
  31730. extra: 1327/1290,
  31731. bottom: 82/1409
  31732. }
  31733. },
  31734. backNsfw: {
  31735. height: math.unit(9 + 6/12, "feet"),
  31736. weight: math.unit(940, "lb"),
  31737. name: "Back (NSFW)",
  31738. image: {
  31739. source: "./media/characters/byliss/back-nsfw.svg",
  31740. extra: 1376/1349,
  31741. bottom: 9/1385
  31742. }
  31743. },
  31744. },
  31745. [
  31746. {
  31747. name: "Normal",
  31748. height: math.unit(9 + 6/12, "feet"),
  31749. default: true
  31750. },
  31751. ]
  31752. ))
  31753. characterMakers.push(() => makeCharacter(
  31754. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31755. {
  31756. front: {
  31757. height: math.unit(5 + 2/12, "feet"),
  31758. weight: math.unit(200, "lb"),
  31759. name: "Front",
  31760. image: {
  31761. source: "./media/characters/noraly/front.svg",
  31762. extra: 4985/4773,
  31763. bottom: 150/5135
  31764. }
  31765. },
  31766. full: {
  31767. height: math.unit(5 + 2/12, "feet"),
  31768. weight: math.unit(164, "lb"),
  31769. name: "Full",
  31770. image: {
  31771. source: "./media/characters/noraly/full.svg",
  31772. extra: 1114/1059,
  31773. bottom: 35/1149
  31774. }
  31775. },
  31776. fuller: {
  31777. height: math.unit(5 + 2/12, "feet"),
  31778. weight: math.unit(230, "lb"),
  31779. name: "Fuller",
  31780. image: {
  31781. source: "./media/characters/noraly/fuller.svg",
  31782. extra: 1114/1059,
  31783. bottom: 35/1149
  31784. }
  31785. },
  31786. fullest: {
  31787. height: math.unit(5 + 2/12, "feet"),
  31788. weight: math.unit(300, "lb"),
  31789. name: "Fullest",
  31790. image: {
  31791. source: "./media/characters/noraly/fullest.svg",
  31792. extra: 1114/1059,
  31793. bottom: 35/1149
  31794. }
  31795. },
  31796. },
  31797. [
  31798. {
  31799. name: "Normal",
  31800. height: math.unit(5 + 2/12, "feet"),
  31801. default: true
  31802. },
  31803. ]
  31804. ))
  31805. characterMakers.push(() => makeCharacter(
  31806. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31807. {
  31808. front: {
  31809. height: math.unit(5 + 2/12, "feet"),
  31810. weight: math.unit(210, "lb"),
  31811. name: "Front",
  31812. image: {
  31813. source: "./media/characters/pera/front.svg",
  31814. extra: 1560/1531,
  31815. bottom: 165/1725
  31816. }
  31817. },
  31818. back: {
  31819. height: math.unit(5 + 2/12, "feet"),
  31820. weight: math.unit(210, "lb"),
  31821. name: "Back",
  31822. image: {
  31823. source: "./media/characters/pera/back.svg",
  31824. extra: 1523/1493,
  31825. bottom: 152/1675
  31826. }
  31827. },
  31828. dick: {
  31829. height: math.unit(2.4, "feet"),
  31830. name: "Dick",
  31831. image: {
  31832. source: "./media/characters/pera/dick.svg"
  31833. }
  31834. },
  31835. },
  31836. [
  31837. {
  31838. name: "Normal",
  31839. height: math.unit(5 + 2/12, "feet"),
  31840. default: true
  31841. },
  31842. ]
  31843. ))
  31844. characterMakers.push(() => makeCharacter(
  31845. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31846. {
  31847. front: {
  31848. height: math.unit(12, "feet"),
  31849. weight: math.unit(3200, "lb"),
  31850. name: "Front",
  31851. image: {
  31852. source: "./media/characters/julian/front.svg",
  31853. extra: 2962/2701,
  31854. bottom: 184/3146
  31855. }
  31856. },
  31857. maw: {
  31858. height: math.unit(5.35, "feet"),
  31859. name: "Maw",
  31860. image: {
  31861. source: "./media/characters/julian/maw.svg"
  31862. }
  31863. },
  31864. paw: {
  31865. height: math.unit(3.07, "feet"),
  31866. name: "Paw",
  31867. image: {
  31868. source: "./media/characters/julian/paw.svg"
  31869. }
  31870. },
  31871. },
  31872. [
  31873. {
  31874. name: "Default",
  31875. height: math.unit(12, "feet"),
  31876. default: true
  31877. },
  31878. {
  31879. name: "Big",
  31880. height: math.unit(50, "feet")
  31881. },
  31882. {
  31883. name: "Really Big",
  31884. height: math.unit(1, "mile")
  31885. },
  31886. {
  31887. name: "Extremely Big",
  31888. height: math.unit(100, "miles")
  31889. },
  31890. {
  31891. name: "Planet Hugger",
  31892. height: math.unit(200, "megameters")
  31893. },
  31894. {
  31895. name: "Unreasonably Big",
  31896. height: math.unit(1e300, "meters")
  31897. },
  31898. ]
  31899. ))
  31900. characterMakers.push(() => makeCharacter(
  31901. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  31902. {
  31903. solgooleo: {
  31904. height: math.unit(4, "meters"),
  31905. weight: math.unit(6000*1.5, "kg"),
  31906. volume: math.unit(6000, "liters"),
  31907. name: "Solgooleo",
  31908. image: {
  31909. source: "./media/characters/pi/solgooleo.svg",
  31910. extra: 388/331,
  31911. bottom: 29/417
  31912. }
  31913. },
  31914. },
  31915. [
  31916. {
  31917. name: "Normal",
  31918. height: math.unit(4, "meters"),
  31919. default: true
  31920. },
  31921. ]
  31922. ))
  31923. characterMakers.push(() => makeCharacter(
  31924. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  31925. {
  31926. front: {
  31927. height: math.unit(8 + 2/12, "feet"),
  31928. weight: math.unit(4, "tons"),
  31929. name: "Front",
  31930. image: {
  31931. source: "./media/characters/shaun/front.svg",
  31932. extra: 1550/1505,
  31933. bottom: 353/1903
  31934. }
  31935. },
  31936. },
  31937. [
  31938. {
  31939. name: "Lorg",
  31940. height: math.unit(8 + 2/12, "feet"),
  31941. default: true
  31942. },
  31943. ]
  31944. ))
  31945. characterMakers.push(() => makeCharacter(
  31946. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  31947. {
  31948. front: {
  31949. height: math.unit(7, "feet"),
  31950. name: "Front",
  31951. image: {
  31952. source: "./media/characters/sini/front.svg",
  31953. extra: 726/678,
  31954. bottom: 35/761
  31955. }
  31956. },
  31957. back: {
  31958. height: math.unit(7, "feet"),
  31959. name: "Back",
  31960. image: {
  31961. source: "./media/characters/sini/back.svg",
  31962. extra: 743/701,
  31963. bottom: 12/755
  31964. }
  31965. },
  31966. mawAnthro: {
  31967. height: math.unit(2.14, "feet"),
  31968. name: "Maw (Anthro)",
  31969. image: {
  31970. source: "./media/characters/sini/maw-anthro.svg"
  31971. }
  31972. },
  31973. dick: {
  31974. height: math.unit(1.45, "feet"),
  31975. name: "Dick (Anthro)",
  31976. image: {
  31977. source: "./media/characters/sini/dick-anthro.svg"
  31978. }
  31979. },
  31980. feral: {
  31981. height: math.unit(13, "feet"),
  31982. name: "Feral",
  31983. image: {
  31984. source: "./media/characters/sini/feral.svg",
  31985. extra: 814/605,
  31986. bottom: 11/825
  31987. }
  31988. },
  31989. mawFeral: {
  31990. height: math.unit(4.6, "feet"),
  31991. name: "Maw-feral",
  31992. image: {
  31993. source: "./media/characters/sini/maw-feral.svg"
  31994. }
  31995. },
  31996. footFeral: {
  31997. height: math.unit(4.2, "feet"),
  31998. name: "Foot-feral",
  31999. image: {
  32000. source: "./media/characters/sini/foot-feral.svg"
  32001. }
  32002. },
  32003. },
  32004. [
  32005. {
  32006. name: "Normal",
  32007. height: math.unit(7, "feet"),
  32008. default: true
  32009. },
  32010. ]
  32011. ))
  32012. characterMakers.push(() => makeCharacter(
  32013. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32014. {
  32015. side: {
  32016. height: math.unit(13, "meters"),
  32017. weight: math.unit(9072, "kg"),
  32018. name: "Side",
  32019. image: {
  32020. source: "./media/characters/raylldo/side.svg",
  32021. extra: 403/344,
  32022. bottom: 42/445
  32023. }
  32024. },
  32025. leaping: {
  32026. height: math.unit(12.3, "meters"),
  32027. weight: math.unit(9072, "kg"),
  32028. name: "Leaping",
  32029. image: {
  32030. source: "./media/characters/raylldo/leaping.svg",
  32031. extra: 470/249,
  32032. bottom: 13/483
  32033. }
  32034. },
  32035. flying: {
  32036. height: math.unit(18, "meters"),
  32037. weight: math.unit(9072, "kg"),
  32038. name: "Flying",
  32039. image: {
  32040. source: "./media/characters/raylldo/flying.svg"
  32041. }
  32042. },
  32043. head: {
  32044. height: math.unit(5.85, "meters"),
  32045. name: "Head",
  32046. image: {
  32047. source: "./media/characters/raylldo/head.svg"
  32048. }
  32049. },
  32050. maw: {
  32051. height: math.unit(5.32, "meters"),
  32052. name: "Maw",
  32053. image: {
  32054. source: "./media/characters/raylldo/maw.svg"
  32055. }
  32056. },
  32057. eye: {
  32058. height: math.unit(0.54, "meters"),
  32059. name: "Eye",
  32060. image: {
  32061. source: "./media/characters/raylldo/eye.svg"
  32062. }
  32063. },
  32064. },
  32065. [
  32066. {
  32067. name: "Normal",
  32068. height: math.unit(13, "meters"),
  32069. default: true
  32070. },
  32071. ]
  32072. ))
  32073. characterMakers.push(() => makeCharacter(
  32074. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32075. {
  32076. anthroFront: {
  32077. height: math.unit(9, "feet"),
  32078. weight: math.unit(600, "lb"),
  32079. name: "Anthro (Front)",
  32080. image: {
  32081. source: "./media/characters/glint/anthro-front.svg",
  32082. extra: 1097/1018,
  32083. bottom: 28/1125
  32084. }
  32085. },
  32086. anthroBack: {
  32087. height: math.unit(9, "feet"),
  32088. weight: math.unit(600, "lb"),
  32089. name: "Anthro (Back)",
  32090. image: {
  32091. source: "./media/characters/glint/anthro-back.svg",
  32092. extra: 1154/997,
  32093. bottom: 36/1190
  32094. }
  32095. },
  32096. feral: {
  32097. height: math.unit(11, "feet"),
  32098. weight: math.unit(50000, "lb"),
  32099. name: "Feral",
  32100. image: {
  32101. source: "./media/characters/glint/feral.svg",
  32102. extra: 3035/1585,
  32103. bottom: 1169/4204
  32104. }
  32105. },
  32106. dickAnthro: {
  32107. height: math.unit(0.7, "meters"),
  32108. name: "Dick (Anthro)",
  32109. image: {
  32110. source: "./media/characters/glint/dick-anthro.svg"
  32111. }
  32112. },
  32113. dickFeral: {
  32114. height: math.unit(2.65, "meters"),
  32115. name: "Dick (Feral)",
  32116. image: {
  32117. source: "./media/characters/glint/dick-feral.svg"
  32118. }
  32119. },
  32120. slitHidden: {
  32121. height: math.unit(5.85, "meters"),
  32122. name: "Slit (Hidden)",
  32123. image: {
  32124. source: "./media/characters/glint/slit-hidden.svg"
  32125. }
  32126. },
  32127. slitErect: {
  32128. height: math.unit(5.85, "meters"),
  32129. name: "Slit (Erect)",
  32130. image: {
  32131. source: "./media/characters/glint/slit-erect.svg"
  32132. }
  32133. },
  32134. mawAnthro: {
  32135. height: math.unit(0.63, "meters"),
  32136. name: "Maw (Anthro)",
  32137. image: {
  32138. source: "./media/characters/glint/maw.svg"
  32139. }
  32140. },
  32141. mawFeral: {
  32142. height: math.unit(2.89, "meters"),
  32143. name: "Maw (Feral)",
  32144. image: {
  32145. source: "./media/characters/glint/maw.svg"
  32146. }
  32147. },
  32148. },
  32149. [
  32150. {
  32151. name: "Normal",
  32152. height: math.unit(9, "feet"),
  32153. default: true
  32154. },
  32155. ]
  32156. ))
  32157. characterMakers.push(() => makeCharacter(
  32158. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32159. {
  32160. side: {
  32161. height: math.unit(15, "feet"),
  32162. weight: math.unit(5000, "kg"),
  32163. name: "Side",
  32164. image: {
  32165. source: "./media/characters/kairne/side.svg",
  32166. extra: 979/811,
  32167. bottom: 13/992
  32168. }
  32169. },
  32170. front: {
  32171. height: math.unit(15, "feet"),
  32172. weight: math.unit(5000, "kg"),
  32173. name: "Front",
  32174. image: {
  32175. source: "./media/characters/kairne/front.svg",
  32176. extra: 908/814,
  32177. bottom: 26/934
  32178. }
  32179. },
  32180. sideNsfw: {
  32181. height: math.unit(15, "feet"),
  32182. weight: math.unit(5000, "kg"),
  32183. name: "Side (NSFW)",
  32184. image: {
  32185. source: "./media/characters/kairne/side-nsfw.svg",
  32186. extra: 979/811,
  32187. bottom: 13/992
  32188. }
  32189. },
  32190. frontNsfw: {
  32191. height: math.unit(15, "feet"),
  32192. weight: math.unit(5000, "kg"),
  32193. name: "Front (NSFW)",
  32194. image: {
  32195. source: "./media/characters/kairne/front-nsfw.svg",
  32196. extra: 908/814,
  32197. bottom: 26/934
  32198. }
  32199. },
  32200. dickCaged: {
  32201. height: math.unit(0.65, "meters"),
  32202. name: "Dick-caged",
  32203. image: {
  32204. source: "./media/characters/kairne/dick-caged.svg"
  32205. }
  32206. },
  32207. dick: {
  32208. height: math.unit(0.79, "meters"),
  32209. name: "Dick",
  32210. image: {
  32211. source: "./media/characters/kairne/dick.svg"
  32212. }
  32213. },
  32214. genitals: {
  32215. height: math.unit(1.29, "meters"),
  32216. name: "Genitals",
  32217. image: {
  32218. source: "./media/characters/kairne/genitals.svg"
  32219. }
  32220. },
  32221. maw: {
  32222. height: math.unit(1.73, "meters"),
  32223. name: "Maw",
  32224. image: {
  32225. source: "./media/characters/kairne/maw.svg"
  32226. }
  32227. },
  32228. },
  32229. [
  32230. {
  32231. name: "Normal",
  32232. height: math.unit(15, "feet"),
  32233. default: true
  32234. },
  32235. ]
  32236. ))
  32237. characterMakers.push(() => makeCharacter(
  32238. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32239. {
  32240. front: {
  32241. height: math.unit(5 + 8/12, "feet"),
  32242. weight: math.unit(139, "lb"),
  32243. name: "Front",
  32244. image: {
  32245. source: "./media/characters/biscuit-jackal/front.svg",
  32246. extra: 2106/1961,
  32247. bottom: 58/2164
  32248. }
  32249. },
  32250. back: {
  32251. height: math.unit(5 + 8/12, "feet"),
  32252. weight: math.unit(139, "lb"),
  32253. name: "Back",
  32254. image: {
  32255. source: "./media/characters/biscuit-jackal/back.svg",
  32256. extra: 2132/1976,
  32257. bottom: 57/2189
  32258. }
  32259. },
  32260. werejackal: {
  32261. height: math.unit(6 + 3/12, "feet"),
  32262. weight: math.unit(188, "lb"),
  32263. name: "Werejackal",
  32264. image: {
  32265. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32266. extra: 2373/2178,
  32267. bottom: 53/2426
  32268. }
  32269. },
  32270. },
  32271. [
  32272. {
  32273. name: "Normal",
  32274. height: math.unit(5 + 8/12, "feet"),
  32275. default: true
  32276. },
  32277. ]
  32278. ))
  32279. characterMakers.push(() => makeCharacter(
  32280. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32281. {
  32282. front: {
  32283. height: math.unit(140, "cm"),
  32284. weight: math.unit(45, "kg"),
  32285. name: "Front",
  32286. image: {
  32287. source: "./media/characters/tayra-white/front.svg",
  32288. extra: 2229/2192,
  32289. bottom: 75/2304
  32290. }
  32291. },
  32292. },
  32293. [
  32294. {
  32295. name: "Normal",
  32296. height: math.unit(140, "cm"),
  32297. default: true
  32298. },
  32299. ]
  32300. ))
  32301. characterMakers.push(() => makeCharacter(
  32302. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32303. {
  32304. front: {
  32305. height: math.unit(4 + 5/12, "feet"),
  32306. name: "Front",
  32307. image: {
  32308. source: "./media/characters/scoop/front.svg",
  32309. extra: 1257/1136,
  32310. bottom: 69/1326
  32311. }
  32312. },
  32313. back: {
  32314. height: math.unit(4 + 5/12, "feet"),
  32315. name: "Back",
  32316. image: {
  32317. source: "./media/characters/scoop/back.svg",
  32318. extra: 1321/1152,
  32319. bottom: 32/1353
  32320. }
  32321. },
  32322. maw: {
  32323. height: math.unit(0.68, "feet"),
  32324. name: "Maw",
  32325. image: {
  32326. source: "./media/characters/scoop/maw.svg"
  32327. }
  32328. },
  32329. },
  32330. [
  32331. {
  32332. name: "Really Small",
  32333. height: math.unit(1, "mm")
  32334. },
  32335. {
  32336. name: "Micro",
  32337. height: math.unit(1, "inch")
  32338. },
  32339. {
  32340. name: "Normal",
  32341. height: math.unit(4 + 5/12, "feet"),
  32342. default: true
  32343. },
  32344. {
  32345. name: "Macro",
  32346. height: math.unit(200, "feet")
  32347. },
  32348. {
  32349. name: "Megamacro",
  32350. height: math.unit(3240, "feet")
  32351. },
  32352. {
  32353. name: "Teramacro",
  32354. height: math.unit(2500, "miles")
  32355. },
  32356. ]
  32357. ))
  32358. characterMakers.push(() => makeCharacter(
  32359. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32360. {
  32361. front: {
  32362. height: math.unit(15 + 7/12, "feet"),
  32363. name: "Front",
  32364. image: {
  32365. source: "./media/characters/saphinara/front.svg",
  32366. extra: 604/546,
  32367. bottom: 19/623
  32368. }
  32369. },
  32370. side: {
  32371. height: math.unit(15 + 7/12, "feet"),
  32372. name: "Side",
  32373. image: {
  32374. source: "./media/characters/saphinara/side.svg",
  32375. extra: 605/547,
  32376. bottom: 6/611
  32377. }
  32378. },
  32379. back: {
  32380. height: math.unit(15 + 7/12, "feet"),
  32381. name: "Back",
  32382. image: {
  32383. source: "./media/characters/saphinara/back.svg",
  32384. extra: 591/531,
  32385. bottom: 13/604
  32386. }
  32387. },
  32388. frontTail: {
  32389. height: math.unit(15 + 7/12, "feet"),
  32390. name: "Front (Full Tail)",
  32391. image: {
  32392. source: "./media/characters/saphinara/front-tail.svg",
  32393. extra: 748/547,
  32394. bottom: 66/814
  32395. }
  32396. },
  32397. },
  32398. [
  32399. {
  32400. name: "Normal",
  32401. height: math.unit(15 + 7/12, "feet"),
  32402. default: true
  32403. },
  32404. {
  32405. name: "Angry",
  32406. height: math.unit(30 + 6/12, "feet")
  32407. },
  32408. {
  32409. name: "Enraged",
  32410. height: math.unit(102 + 1/12, "feet")
  32411. },
  32412. ]
  32413. ))
  32414. characterMakers.push(() => makeCharacter(
  32415. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32416. {
  32417. front: {
  32418. height: math.unit(6 + 8/12, "feet"),
  32419. weight: math.unit(300, "lb"),
  32420. name: "Front",
  32421. image: {
  32422. source: "./media/characters/jrain/front.svg",
  32423. extra: 3039/2865,
  32424. bottom: 399/3438
  32425. }
  32426. },
  32427. back: {
  32428. height: math.unit(6 + 8/12, "feet"),
  32429. weight: math.unit(300, "lb"),
  32430. name: "Back",
  32431. image: {
  32432. source: "./media/characters/jrain/back.svg",
  32433. extra: 3089/2938,
  32434. bottom: 172/3261
  32435. }
  32436. },
  32437. head: {
  32438. height: math.unit(2.14, "feet"),
  32439. name: "Head",
  32440. image: {
  32441. source: "./media/characters/jrain/head.svg"
  32442. }
  32443. },
  32444. maw: {
  32445. height: math.unit(1.77, "feet"),
  32446. name: "Maw",
  32447. image: {
  32448. source: "./media/characters/jrain/maw.svg"
  32449. }
  32450. },
  32451. leftHand: {
  32452. height: math.unit(1.1, "feet"),
  32453. name: "Left Hand",
  32454. image: {
  32455. source: "./media/characters/jrain/left-hand.svg"
  32456. }
  32457. },
  32458. rightHand: {
  32459. height: math.unit(1.1, "feet"),
  32460. name: "Right Hand",
  32461. image: {
  32462. source: "./media/characters/jrain/right-hand.svg"
  32463. }
  32464. },
  32465. eye: {
  32466. height: math.unit(0.35, "feet"),
  32467. name: "Eye",
  32468. image: {
  32469. source: "./media/characters/jrain/eye.svg"
  32470. }
  32471. },
  32472. },
  32473. [
  32474. {
  32475. name: "Normal",
  32476. height: math.unit(6 + 8/12, "feet"),
  32477. default: true
  32478. },
  32479. {
  32480. name: "Casually Large",
  32481. height: math.unit(25, "feet")
  32482. },
  32483. {
  32484. name: "Giant",
  32485. height: math.unit(100, "feet")
  32486. },
  32487. {
  32488. name: "Kaiju",
  32489. height: math.unit(300, "feet")
  32490. },
  32491. ]
  32492. ))
  32493. characterMakers.push(() => makeCharacter(
  32494. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32495. {
  32496. dragon: {
  32497. height: math.unit(5, "meters"),
  32498. name: "Dragon",
  32499. image: {
  32500. source: "./media/characters/sabrina/dragon.svg",
  32501. extra: 3670 / 2365,
  32502. bottom: 333 / 4003
  32503. }
  32504. },
  32505. gryphon: {
  32506. height: math.unit(3, "meters"),
  32507. name: "Gryphon",
  32508. image: {
  32509. source: "./media/characters/sabrina/gryphon.svg",
  32510. extra: 1576 / 945,
  32511. bottom: 71 / 1647
  32512. }
  32513. },
  32514. snake: {
  32515. height: math.unit(12, "meters"),
  32516. name: "Snake",
  32517. image: {
  32518. source: "./media/characters/sabrina/snake.svg",
  32519. extra: 1758 / 1320,
  32520. bottom: 186 / 1944
  32521. }
  32522. },
  32523. collar: {
  32524. height: math.unit(1.86, "meters"),
  32525. name: "Collar",
  32526. image: {
  32527. source: "./media/characters/sabrina/collar.svg"
  32528. }
  32529. },
  32530. eye: {
  32531. height: math.unit(0.53, "meters"),
  32532. name: "Eye",
  32533. image: {
  32534. source: "./media/characters/sabrina/eye.svg"
  32535. }
  32536. },
  32537. foot: {
  32538. height: math.unit(1.86, "meters"),
  32539. name: "Foot",
  32540. image: {
  32541. source: "./media/characters/sabrina/foot.svg"
  32542. }
  32543. },
  32544. hand: {
  32545. height: math.unit(1.32, "meters"),
  32546. name: "Hand",
  32547. image: {
  32548. source: "./media/characters/sabrina/hand.svg"
  32549. }
  32550. },
  32551. head: {
  32552. height: math.unit(2.44, "meters"),
  32553. name: "Head",
  32554. image: {
  32555. source: "./media/characters/sabrina/head.svg"
  32556. }
  32557. },
  32558. headAngry: {
  32559. height: math.unit(2.44, "meters"),
  32560. name: "Head (Angry))",
  32561. image: {
  32562. source: "./media/characters/sabrina/head-angry.svg"
  32563. }
  32564. },
  32565. maw: {
  32566. height: math.unit(1.65, "meters"),
  32567. name: "Maw",
  32568. image: {
  32569. source: "./media/characters/sabrina/maw.svg"
  32570. }
  32571. },
  32572. spikes: {
  32573. height: math.unit(1.69, "meters"),
  32574. name: "Spikes",
  32575. image: {
  32576. source: "./media/characters/sabrina/spikes.svg"
  32577. }
  32578. },
  32579. stomach: {
  32580. height: math.unit(1.15, "meters"),
  32581. name: "Stomach",
  32582. image: {
  32583. source: "./media/characters/sabrina/stomach.svg"
  32584. }
  32585. },
  32586. tongue: {
  32587. height: math.unit(1.27, "meters"),
  32588. name: "Tongue",
  32589. image: {
  32590. source: "./media/characters/sabrina/tongue.svg"
  32591. }
  32592. },
  32593. wingDorsal: {
  32594. height: math.unit(4.85, "meters"),
  32595. name: "Wing (Dorsal)",
  32596. image: {
  32597. source: "./media/characters/sabrina/wing-dorsal.svg"
  32598. }
  32599. },
  32600. wingVentral: {
  32601. height: math.unit(4.85, "meters"),
  32602. name: "Wing (Ventral)",
  32603. image: {
  32604. source: "./media/characters/sabrina/wing-ventral.svg"
  32605. }
  32606. },
  32607. },
  32608. [
  32609. {
  32610. name: "Normal",
  32611. height: math.unit(5, "meters"),
  32612. default: true
  32613. },
  32614. ]
  32615. ))
  32616. characterMakers.push(() => makeCharacter(
  32617. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32618. {
  32619. frontMaid: {
  32620. height: math.unit(5 + 5/12, "feet"),
  32621. weight: math.unit(130, "lb"),
  32622. name: "Front (Maid)",
  32623. image: {
  32624. source: "./media/characters/midnight-tales/front-maid.svg",
  32625. extra: 489/454,
  32626. bottom: 61/550
  32627. }
  32628. },
  32629. frontFormal: {
  32630. height: math.unit(5 + 5/12, "feet"),
  32631. weight: math.unit(130, "lb"),
  32632. name: "Front (Formal)",
  32633. image: {
  32634. source: "./media/characters/midnight-tales/front-formal.svg",
  32635. extra: 489/454,
  32636. bottom: 61/550
  32637. }
  32638. },
  32639. back: {
  32640. height: math.unit(5 + 5/12, "feet"),
  32641. weight: math.unit(130, "lb"),
  32642. name: "Back",
  32643. image: {
  32644. source: "./media/characters/midnight-tales/back.svg",
  32645. extra: 498/456,
  32646. bottom: 33/531
  32647. }
  32648. },
  32649. frontBeast: {
  32650. height: math.unit(40, "feet"),
  32651. weight: math.unit(64000, "lb"),
  32652. name: "Front (Beast)",
  32653. image: {
  32654. source: "./media/characters/midnight-tales/front-beast.svg",
  32655. extra: 927/860,
  32656. bottom: 53/980
  32657. }
  32658. },
  32659. backBeast: {
  32660. height: math.unit(40, "feet"),
  32661. weight: math.unit(64000, "lb"),
  32662. name: "Back (Beast)",
  32663. image: {
  32664. source: "./media/characters/midnight-tales/back-beast.svg",
  32665. extra: 929/855,
  32666. bottom: 16/945
  32667. }
  32668. },
  32669. footBeast: {
  32670. height: math.unit(6.7, "feet"),
  32671. name: "Foot (Beast)",
  32672. image: {
  32673. source: "./media/characters/midnight-tales/foot-beast.svg"
  32674. }
  32675. },
  32676. headBeast: {
  32677. height: math.unit(8, "feet"),
  32678. name: "Head (Beast)",
  32679. image: {
  32680. source: "./media/characters/midnight-tales/head-beast.svg"
  32681. }
  32682. },
  32683. },
  32684. [
  32685. {
  32686. name: "Normal",
  32687. height: math.unit(5 + 5 / 12, "feet"),
  32688. default: true
  32689. },
  32690. {
  32691. name: "Macro",
  32692. height: math.unit(25, "feet")
  32693. },
  32694. ]
  32695. ))
  32696. characterMakers.push(() => makeCharacter(
  32697. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32698. {
  32699. front: {
  32700. height: math.unit(5 + 10/12, "feet"),
  32701. name: "Front",
  32702. image: {
  32703. source: "./media/characters/argon/front.svg",
  32704. extra: 2009/1935,
  32705. bottom: 118/2127
  32706. }
  32707. },
  32708. back: {
  32709. height: math.unit(5 + 10/12, "feet"),
  32710. name: "Back",
  32711. image: {
  32712. source: "./media/characters/argon/back.svg",
  32713. extra: 2047/1992,
  32714. bottom: 20/2067
  32715. }
  32716. },
  32717. frontDressed: {
  32718. height: math.unit(5 + 10/12, "feet"),
  32719. name: "Front (Dressed)",
  32720. image: {
  32721. source: "./media/characters/argon/front-dressed.svg",
  32722. extra: 2009/1935,
  32723. bottom: 118/2127
  32724. }
  32725. },
  32726. },
  32727. [
  32728. {
  32729. name: "Normal",
  32730. height: math.unit(5 + 10/12, "feet"),
  32731. default: true
  32732. },
  32733. ]
  32734. ))
  32735. characterMakers.push(() => makeCharacter(
  32736. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32737. {
  32738. front: {
  32739. height: math.unit(8 + 6/12, "feet"),
  32740. weight: math.unit(1150, "lb"),
  32741. name: "Front",
  32742. image: {
  32743. source: "./media/characters/kichi/front.svg",
  32744. extra: 1267/1164,
  32745. bottom: 61/1328
  32746. }
  32747. },
  32748. back: {
  32749. height: math.unit(8 + 6/12, "feet"),
  32750. weight: math.unit(1150, "lb"),
  32751. name: "Back",
  32752. image: {
  32753. source: "./media/characters/kichi/back.svg",
  32754. extra: 1273/1166,
  32755. bottom: 33/1306
  32756. }
  32757. },
  32758. },
  32759. [
  32760. {
  32761. name: "Normal",
  32762. height: math.unit(8 + 6/12, "feet"),
  32763. default: true
  32764. },
  32765. ]
  32766. ))
  32767. characterMakers.push(() => makeCharacter(
  32768. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32769. {
  32770. front: {
  32771. height: math.unit(6, "feet"),
  32772. weight: math.unit(210, "lb"),
  32773. name: "Front",
  32774. image: {
  32775. source: "./media/characters/manetel-greyscale/front.svg",
  32776. extra: 350/312,
  32777. bottom: 8/358
  32778. }
  32779. },
  32780. },
  32781. [
  32782. {
  32783. name: "Micro",
  32784. height: math.unit(2, "inches")
  32785. },
  32786. {
  32787. name: "Normal",
  32788. height: math.unit(6, "feet"),
  32789. default: true
  32790. },
  32791. {
  32792. name: "Minimacro",
  32793. height: math.unit(17, "feet")
  32794. },
  32795. {
  32796. name: "Macro",
  32797. height: math.unit(117, "feet")
  32798. },
  32799. ]
  32800. ))
  32801. characterMakers.push(() => makeCharacter(
  32802. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32803. {
  32804. side: {
  32805. height: math.unit(5 + 1/12, "feet"),
  32806. weight: math.unit(418, "lb"),
  32807. name: "Side",
  32808. image: {
  32809. source: "./media/characters/softpurr/side.svg",
  32810. extra: 1993/1945,
  32811. bottom: 134/2127
  32812. }
  32813. },
  32814. front: {
  32815. height: math.unit(5 + 1/12, "feet"),
  32816. weight: math.unit(418, "lb"),
  32817. name: "Front",
  32818. image: {
  32819. source: "./media/characters/softpurr/front.svg",
  32820. extra: 1950/1856,
  32821. bottom: 174/2124
  32822. }
  32823. },
  32824. paw: {
  32825. height: math.unit(1, "feet"),
  32826. name: "Paw",
  32827. image: {
  32828. source: "./media/characters/softpurr/paw.svg"
  32829. }
  32830. },
  32831. },
  32832. [
  32833. {
  32834. name: "Normal",
  32835. height: math.unit(5 + 1/12, "feet"),
  32836. default: true
  32837. },
  32838. ]
  32839. ))
  32840. characterMakers.push(() => makeCharacter(
  32841. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32842. {
  32843. front: {
  32844. height: math.unit(260, "meters"),
  32845. name: "Front",
  32846. image: {
  32847. source: "./media/characters/anahita/front.svg",
  32848. extra: 665/635,
  32849. bottom: 89/754
  32850. }
  32851. },
  32852. },
  32853. [
  32854. {
  32855. name: "Macro",
  32856. height: math.unit(260, "meters"),
  32857. default: true
  32858. },
  32859. ]
  32860. ))
  32861. characterMakers.push(() => makeCharacter(
  32862. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32863. {
  32864. front: {
  32865. height: math.unit(4 + 10/12, "feet"),
  32866. weight: math.unit(160, "lb"),
  32867. name: "Front",
  32868. image: {
  32869. source: "./media/characters/chip-mouse/front.svg",
  32870. extra: 3528/3408,
  32871. bottom: 0/3528
  32872. }
  32873. },
  32874. frontNsfw: {
  32875. height: math.unit(4 + 10/12, "feet"),
  32876. weight: math.unit(160, "lb"),
  32877. name: "Front (NSFW)",
  32878. image: {
  32879. source: "./media/characters/chip-mouse/front-nsfw.svg",
  32880. extra: 3528/3408,
  32881. bottom: 0/3528
  32882. }
  32883. },
  32884. },
  32885. [
  32886. {
  32887. name: "Normal",
  32888. height: math.unit(4 + 10/12, "feet"),
  32889. default: true
  32890. },
  32891. ]
  32892. ))
  32893. characterMakers.push(() => makeCharacter(
  32894. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  32895. {
  32896. side: {
  32897. height: math.unit(10, "feet"),
  32898. weight: math.unit(14000, "lb"),
  32899. name: "Side",
  32900. image: {
  32901. source: "./media/characters/kremm/side.svg",
  32902. extra: 1390/1053,
  32903. bottom: 90/1480
  32904. }
  32905. },
  32906. gut: {
  32907. height: math.unit(5.8, "feet"),
  32908. name: "Gut",
  32909. image: {
  32910. source: "./media/characters/kremm/gut.svg"
  32911. }
  32912. },
  32913. ass: {
  32914. height: math.unit(6.1, "feet"),
  32915. name: "Ass",
  32916. image: {
  32917. source: "./media/characters/kremm/ass.svg"
  32918. }
  32919. },
  32920. jaws: {
  32921. height: math.unit(2.2, "feet"),
  32922. name: "Jaws",
  32923. image: {
  32924. source: "./media/characters/kremm/jaws.svg"
  32925. }
  32926. },
  32927. dick: {
  32928. height: math.unit(4.26, "feet"),
  32929. name: "Dick",
  32930. image: {
  32931. source: "./media/characters/kremm/dick.svg"
  32932. }
  32933. },
  32934. },
  32935. [
  32936. {
  32937. name: "Normal",
  32938. height: math.unit(10, "feet"),
  32939. default: true
  32940. },
  32941. ]
  32942. ))
  32943. characterMakers.push(() => makeCharacter(
  32944. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  32945. {
  32946. front: {
  32947. height: math.unit(30, "stories"),
  32948. name: "Front",
  32949. image: {
  32950. source: "./media/characters/kai/front.svg",
  32951. extra: 1892/1718,
  32952. bottom: 162/2054
  32953. }
  32954. },
  32955. },
  32956. [
  32957. {
  32958. name: "Macro",
  32959. height: math.unit(30, "stories"),
  32960. default: true
  32961. },
  32962. ]
  32963. ))
  32964. characterMakers.push(() => makeCharacter(
  32965. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  32966. {
  32967. front: {
  32968. height: math.unit(6 + 4/12, "feet"),
  32969. weight: math.unit(145, "lb"),
  32970. name: "Front",
  32971. image: {
  32972. source: "./media/characters/sykes/front.svg",
  32973. extra: 1321 / 1187,
  32974. bottom: 66 / 1387
  32975. }
  32976. },
  32977. back: {
  32978. height: math.unit(6 + 4/12, "feet"),
  32979. weight: math.unit(145, "lb"),
  32980. name: "Back",
  32981. image: {
  32982. source: "./media/characters/sykes/back.svg",
  32983. extra: 1326/1181,
  32984. bottom: 31/1357
  32985. }
  32986. },
  32987. handBack: {
  32988. height: math.unit(0.9, "feet"),
  32989. name: "Hand (Back)",
  32990. image: {
  32991. source: "./media/characters/sykes/hand-back.svg"
  32992. }
  32993. },
  32994. handFront: {
  32995. height: math.unit(0.839, "feet"),
  32996. name: "Hand (Front)",
  32997. image: {
  32998. source: "./media/characters/sykes/hand-front.svg"
  32999. }
  33000. },
  33001. leftFoot: {
  33002. height: math.unit(1.2, "feet"),
  33003. name: "Foot (Left)",
  33004. image: {
  33005. source: "./media/characters/sykes/foot-left.svg"
  33006. }
  33007. },
  33008. rightFoot: {
  33009. height: math.unit(1.2, "feet"),
  33010. name: "Foot (Right)",
  33011. image: {
  33012. source: "./media/characters/sykes/foot-right.svg"
  33013. }
  33014. },
  33015. maw: {
  33016. height: math.unit(1.93, "feet"),
  33017. name: "Maw",
  33018. image: {
  33019. source: "./media/characters/sykes/maw.svg"
  33020. }
  33021. },
  33022. teeth: {
  33023. height: math.unit(0.51, "feet"),
  33024. name: "Teeth",
  33025. image: {
  33026. source: "./media/characters/sykes/teeth.svg"
  33027. }
  33028. },
  33029. tongue: {
  33030. height: math.unit(2.13, "feet"),
  33031. name: "Tongue",
  33032. image: {
  33033. source: "./media/characters/sykes/tongue.svg"
  33034. }
  33035. },
  33036. uvula: {
  33037. height: math.unit(0.16, "feet"),
  33038. name: "Uvula",
  33039. image: {
  33040. source: "./media/characters/sykes/uvula.svg"
  33041. }
  33042. },
  33043. collar: {
  33044. height: math.unit(0.287, "feet"),
  33045. name: "Collar",
  33046. image: {
  33047. source: "./media/characters/sykes/collar.svg"
  33048. }
  33049. },
  33050. },
  33051. [
  33052. {
  33053. name: "Shrunken",
  33054. height: math.unit(5, "inches")
  33055. },
  33056. {
  33057. name: "Normal",
  33058. height: math.unit(6 + 4 / 12, "feet"),
  33059. default: true
  33060. },
  33061. {
  33062. name: "Big",
  33063. height: math.unit(15, "feet")
  33064. },
  33065. ]
  33066. ))
  33067. characterMakers.push(() => makeCharacter(
  33068. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33069. {
  33070. front: {
  33071. height: math.unit(5 + 8/12, "feet"),
  33072. weight: math.unit(190, "lb"),
  33073. name: "Front",
  33074. image: {
  33075. source: "./media/characters/oven-otter/front.svg",
  33076. extra: 1809/1740,
  33077. bottom: 181/1990
  33078. }
  33079. },
  33080. back: {
  33081. height: math.unit(5 + 8/12, "feet"),
  33082. weight: math.unit(190, "lb"),
  33083. name: "Back",
  33084. image: {
  33085. source: "./media/characters/oven-otter/back.svg",
  33086. extra: 1709/1635,
  33087. bottom: 118/1827
  33088. }
  33089. },
  33090. hand: {
  33091. height: math.unit(1.07, "feet"),
  33092. name: "Hand",
  33093. image: {
  33094. source: "./media/characters/oven-otter/hand.svg"
  33095. }
  33096. },
  33097. beans: {
  33098. height: math.unit(1.74, "feet"),
  33099. name: "Beans",
  33100. image: {
  33101. source: "./media/characters/oven-otter/beans.svg"
  33102. }
  33103. },
  33104. },
  33105. [
  33106. {
  33107. name: "Micro",
  33108. height: math.unit(0.5, "inches")
  33109. },
  33110. {
  33111. name: "Normal",
  33112. height: math.unit(5 + 8/12, "feet"),
  33113. default: true
  33114. },
  33115. {
  33116. name: "Macro",
  33117. height: math.unit(250, "feet")
  33118. },
  33119. {
  33120. name: "Really High",
  33121. height: math.unit(420, "feet")
  33122. },
  33123. ]
  33124. ))
  33125. characterMakers.push(() => makeCharacter(
  33126. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33127. {
  33128. front: {
  33129. height: math.unit(5, "meters"),
  33130. weight: math.unit(292000000000000, "kg"),
  33131. name: "Front",
  33132. image: {
  33133. source: "./media/characters/devourer/front.svg",
  33134. extra: 1800/1733,
  33135. bottom: 211/2011
  33136. }
  33137. },
  33138. maw: {
  33139. height: math.unit(1.1, "meter"),
  33140. name: "Maw",
  33141. image: {
  33142. source: "./media/characters/devourer/maw.svg"
  33143. }
  33144. },
  33145. },
  33146. [
  33147. {
  33148. name: "Small",
  33149. height: math.unit(3, "meters")
  33150. },
  33151. {
  33152. name: "Large",
  33153. height: math.unit(5, "meters"),
  33154. default: true
  33155. },
  33156. ]
  33157. ))
  33158. characterMakers.push(() => makeCharacter(
  33159. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33160. {
  33161. front: {
  33162. height: math.unit(6, "feet"),
  33163. weight: math.unit(400, "lb"),
  33164. name: "Front",
  33165. image: {
  33166. source: "./media/characters/ellarby/front.svg",
  33167. extra: 1909/1763,
  33168. bottom: 80/1989
  33169. }
  33170. },
  33171. back: {
  33172. height: math.unit(6, "feet"),
  33173. weight: math.unit(400, "lb"),
  33174. name: "Back",
  33175. image: {
  33176. source: "./media/characters/ellarby/back.svg",
  33177. extra: 1914/1784,
  33178. bottom: 172/2086
  33179. }
  33180. },
  33181. },
  33182. [
  33183. {
  33184. name: "Mischief",
  33185. height: math.unit(18, "inches")
  33186. },
  33187. {
  33188. name: "Trouble",
  33189. height: math.unit(12, "feet")
  33190. },
  33191. {
  33192. name: "Havoc",
  33193. height: math.unit(200, "feet"),
  33194. default: true
  33195. },
  33196. {
  33197. name: "Pandemonium",
  33198. height: math.unit(1, "mile")
  33199. },
  33200. {
  33201. name: "Catastrophe",
  33202. height: math.unit(100, "miles")
  33203. },
  33204. ]
  33205. ))
  33206. characterMakers.push(() => makeCharacter(
  33207. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33208. {
  33209. front: {
  33210. height: math.unit(4.7, "meters"),
  33211. weight: math.unit(6500, "kg"),
  33212. name: "Front",
  33213. image: {
  33214. source: "./media/characters/vex/front.svg",
  33215. extra: 1288/1140,
  33216. bottom: 100/1388
  33217. }
  33218. },
  33219. },
  33220. [
  33221. {
  33222. name: "Normal",
  33223. height: math.unit(4.7, "meters"),
  33224. default: true
  33225. },
  33226. ]
  33227. ))
  33228. characterMakers.push(() => makeCharacter(
  33229. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33230. {
  33231. normal: {
  33232. height: math.unit(6, "feet"),
  33233. weight: math.unit(350, "lb"),
  33234. name: "Normal",
  33235. image: {
  33236. source: "./media/characters/teshy/normal.svg",
  33237. extra: 1795/1735,
  33238. bottom: 16/1811
  33239. }
  33240. },
  33241. monsterFront: {
  33242. height: math.unit(12, "feet"),
  33243. weight: math.unit(4700, "lb"),
  33244. name: "Monster (Front)",
  33245. image: {
  33246. source: "./media/characters/teshy/monster-front.svg",
  33247. extra: 2042/2034,
  33248. bottom: 128/2170
  33249. }
  33250. },
  33251. monsterSide: {
  33252. height: math.unit(12, "feet"),
  33253. weight: math.unit(4700, "lb"),
  33254. name: "Monster (Side)",
  33255. image: {
  33256. source: "./media/characters/teshy/monster-side.svg",
  33257. extra: 2067/2056,
  33258. bottom: 70/2137
  33259. }
  33260. },
  33261. monsterBack: {
  33262. height: math.unit(12, "feet"),
  33263. weight: math.unit(4700, "lb"),
  33264. name: "Monster (Back)",
  33265. image: {
  33266. source: "./media/characters/teshy/monster-back.svg",
  33267. extra: 1921/1914,
  33268. bottom: 171/2092
  33269. }
  33270. },
  33271. },
  33272. [
  33273. {
  33274. name: "Normal",
  33275. height: math.unit(6, "feet"),
  33276. default: true
  33277. },
  33278. ]
  33279. ))
  33280. characterMakers.push(() => makeCharacter(
  33281. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33282. {
  33283. front: {
  33284. height: math.unit(6, "feet"),
  33285. name: "Front",
  33286. image: {
  33287. source: "./media/characters/ramey/front.svg",
  33288. extra: 790/787,
  33289. bottom: 27/817
  33290. }
  33291. },
  33292. },
  33293. [
  33294. {
  33295. name: "Normal",
  33296. height: math.unit(6, "feet"),
  33297. default: true
  33298. },
  33299. ]
  33300. ))
  33301. characterMakers.push(() => makeCharacter(
  33302. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33303. {
  33304. front: {
  33305. height: math.unit(5 + 5/12, "feet"),
  33306. weight: math.unit(120, "lb"),
  33307. name: "Front",
  33308. image: {
  33309. source: "./media/characters/phirae/front.svg",
  33310. extra: 2491/2436,
  33311. bottom: 38/2529
  33312. }
  33313. },
  33314. },
  33315. [
  33316. {
  33317. name: "Normal",
  33318. height: math.unit(5 + 5/12, "feet"),
  33319. default: true
  33320. },
  33321. ]
  33322. ))
  33323. characterMakers.push(() => makeCharacter(
  33324. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33325. {
  33326. front: {
  33327. height: math.unit(6, "feet"),
  33328. weight: math.unit(150, "lb"),
  33329. name: "Front",
  33330. image: {
  33331. source: "./media/characters/stagglas/front.svg",
  33332. extra: 962/882,
  33333. bottom: 53/1015
  33334. }
  33335. },
  33336. },
  33337. [
  33338. {
  33339. name: "Normal",
  33340. height: math.unit(5 + 3/12, "feet"),
  33341. default: true
  33342. },
  33343. ]
  33344. ))
  33345. characterMakers.push(() => makeCharacter(
  33346. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33347. {
  33348. front: {
  33349. height: math.unit(5 + 4/12, "feet"),
  33350. weight: math.unit(145, "lb"),
  33351. name: "Front",
  33352. image: {
  33353. source: "./media/characters/starra/front.svg",
  33354. extra: 1790/1691,
  33355. bottom: 91/1881
  33356. }
  33357. },
  33358. },
  33359. [
  33360. {
  33361. name: "Normal",
  33362. height: math.unit(5 + 4/12, "feet"),
  33363. default: true
  33364. },
  33365. ]
  33366. ))
  33367. characterMakers.push(() => makeCharacter(
  33368. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33369. {
  33370. front: {
  33371. height: math.unit(2.2, "meters"),
  33372. name: "Front",
  33373. image: {
  33374. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33375. extra: 1194/1005,
  33376. bottom: 25/1219
  33377. }
  33378. },
  33379. },
  33380. [
  33381. {
  33382. name: "Normal",
  33383. height: math.unit(2.2, "meters"),
  33384. default: true
  33385. },
  33386. ]
  33387. ))
  33388. characterMakers.push(() => makeCharacter(
  33389. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33390. {
  33391. side: {
  33392. height: math.unit(8 + 2/12, "feet"),
  33393. weight: math.unit(1240, "lb"),
  33394. name: "Side",
  33395. image: {
  33396. source: "./media/characters/mika-valentine/side.svg",
  33397. extra: 2670/2501,
  33398. bottom: 250/2920
  33399. }
  33400. },
  33401. },
  33402. [
  33403. {
  33404. name: "Normal",
  33405. height: math.unit(8 + 2/12, "feet"),
  33406. default: true
  33407. },
  33408. ]
  33409. ))
  33410. characterMakers.push(() => makeCharacter(
  33411. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33412. {
  33413. front: {
  33414. height: math.unit(7 + 2/12, "feet"),
  33415. name: "Front",
  33416. image: {
  33417. source: "./media/characters/xoltol/front.svg",
  33418. extra: 2212/2124,
  33419. bottom: 84/2296
  33420. }
  33421. },
  33422. side: {
  33423. height: math.unit(7 + 2/12, "feet"),
  33424. name: "Side",
  33425. image: {
  33426. source: "./media/characters/xoltol/side.svg",
  33427. extra: 2273/2197,
  33428. bottom: 26/2299
  33429. }
  33430. },
  33431. hand: {
  33432. height: math.unit(2.5, "feet"),
  33433. name: "Hand",
  33434. image: {
  33435. source: "./media/characters/xoltol/hand.svg"
  33436. }
  33437. },
  33438. },
  33439. [
  33440. {
  33441. name: "Small-ish",
  33442. height: math.unit(5 + 11/12, "feet")
  33443. },
  33444. {
  33445. name: "Normal",
  33446. height: math.unit(7 + 2/12, "feet")
  33447. },
  33448. {
  33449. name: "\"Macro\"",
  33450. height: math.unit(14 + 9/12, "feet"),
  33451. default: true
  33452. },
  33453. {
  33454. name: "Alternate Height",
  33455. height: math.unit(20, "feet")
  33456. },
  33457. {
  33458. name: "Actually Macro",
  33459. height: math.unit(100, "feet")
  33460. },
  33461. ]
  33462. ))
  33463. characterMakers.push(() => makeCharacter(
  33464. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33465. {
  33466. front: {
  33467. height: math.unit(5 + 2/12, "feet"),
  33468. name: "Front",
  33469. image: {
  33470. source: "./media/characters/kotetsu-redwood/front.svg",
  33471. extra: 1053/942,
  33472. bottom: 60/1113
  33473. }
  33474. },
  33475. },
  33476. [
  33477. {
  33478. name: "Normal",
  33479. height: math.unit(5 + 2/12, "feet"),
  33480. default: true
  33481. },
  33482. ]
  33483. ))
  33484. characterMakers.push(() => makeCharacter(
  33485. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33486. {
  33487. front: {
  33488. height: math.unit(2.4, "meters"),
  33489. weight: math.unit(125, "kg"),
  33490. name: "Front",
  33491. image: {
  33492. source: "./media/characters/lilith/front.svg",
  33493. extra: 1590/1513,
  33494. bottom: 203/1793
  33495. }
  33496. },
  33497. },
  33498. [
  33499. {
  33500. name: "Humanoid",
  33501. height: math.unit(2.4, "meters")
  33502. },
  33503. {
  33504. name: "Normal",
  33505. height: math.unit(6, "meters"),
  33506. default: true
  33507. },
  33508. {
  33509. name: "Largest",
  33510. height: math.unit(55, "meters")
  33511. },
  33512. ]
  33513. ))
  33514. characterMakers.push(() => makeCharacter(
  33515. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33516. {
  33517. front: {
  33518. height: math.unit(8 + 4/12, "feet"),
  33519. weight: math.unit(535, "lb"),
  33520. name: "Front",
  33521. image: {
  33522. source: "./media/characters/beh'kah-bolger/front.svg",
  33523. extra: 1660/1603,
  33524. bottom: 37/1697
  33525. }
  33526. },
  33527. },
  33528. [
  33529. {
  33530. name: "Normal",
  33531. height: math.unit(8 + 4/12, "feet"),
  33532. default: true
  33533. },
  33534. {
  33535. name: "Kaiju",
  33536. height: math.unit(250, "feet")
  33537. },
  33538. {
  33539. name: "Still Growing",
  33540. height: math.unit(10, "miles")
  33541. },
  33542. {
  33543. name: "Continental",
  33544. height: math.unit(5000, "miles")
  33545. },
  33546. {
  33547. name: "Final Form",
  33548. height: math.unit(2500000, "miles")
  33549. },
  33550. ]
  33551. ))
  33552. characterMakers.push(() => makeCharacter(
  33553. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33554. {
  33555. front: {
  33556. height: math.unit(7 + 2/12, "feet"),
  33557. weight: math.unit(230, "kg"),
  33558. name: "Front",
  33559. image: {
  33560. source: "./media/characters/tatyana-milewska/front.svg",
  33561. extra: 1199/1150,
  33562. bottom: 86/1285
  33563. }
  33564. },
  33565. },
  33566. [
  33567. {
  33568. name: "Normal",
  33569. height: math.unit(7 + 2/12, "feet"),
  33570. default: true
  33571. },
  33572. {
  33573. name: "Big",
  33574. height: math.unit(12, "feet")
  33575. },
  33576. {
  33577. name: "Minimacro",
  33578. height: math.unit(20, "feet")
  33579. },
  33580. {
  33581. name: "Macro",
  33582. height: math.unit(120, "feet")
  33583. },
  33584. ]
  33585. ))
  33586. characterMakers.push(() => makeCharacter(
  33587. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33588. {
  33589. front: {
  33590. height: math.unit(7 + 8/12, "feet"),
  33591. weight: math.unit(152, "kg"),
  33592. name: "Front",
  33593. image: {
  33594. source: "./media/characters/helen-arri/front.svg",
  33595. extra: 440/423,
  33596. bottom: 14/454
  33597. }
  33598. },
  33599. back: {
  33600. height: math.unit(7 + 8/12, "feet"),
  33601. weight: math.unit(152, "kg"),
  33602. name: "Back",
  33603. image: {
  33604. source: "./media/characters/helen-arri/back.svg",
  33605. extra: 443/426,
  33606. bottom: 8/451
  33607. }
  33608. },
  33609. },
  33610. [
  33611. {
  33612. name: "Normal",
  33613. height: math.unit(7 + 8/12, "feet"),
  33614. default: true
  33615. },
  33616. {
  33617. name: "Big",
  33618. height: math.unit(14, "feet")
  33619. },
  33620. {
  33621. name: "Minimacro",
  33622. height: math.unit(24, "feet")
  33623. },
  33624. {
  33625. name: "Macro",
  33626. height: math.unit(140, "feet")
  33627. },
  33628. ]
  33629. ))
  33630. characterMakers.push(() => makeCharacter(
  33631. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33632. {
  33633. front: {
  33634. height: math.unit(6, "meters"),
  33635. name: "Front",
  33636. image: {
  33637. source: "./media/characters/ehanu-rehu/front.svg",
  33638. extra: 1800/1800,
  33639. bottom: 59/1859
  33640. }
  33641. },
  33642. },
  33643. [
  33644. {
  33645. name: "Normal",
  33646. height: math.unit(6, "meters"),
  33647. default: true
  33648. },
  33649. ]
  33650. ))
  33651. characterMakers.push(() => makeCharacter(
  33652. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33653. {
  33654. front: {
  33655. height: math.unit(7 + 3/12, "feet"),
  33656. name: "Front",
  33657. image: {
  33658. source: "./media/characters/renholder/front.svg",
  33659. extra: 3096/2960,
  33660. bottom: 250/3346
  33661. }
  33662. },
  33663. },
  33664. [
  33665. {
  33666. name: "Normal Bat",
  33667. height: math.unit(7 + 3/12, "feet"),
  33668. default: true
  33669. },
  33670. {
  33671. name: "Slightly Tall Bat",
  33672. height: math.unit(100, "feet")
  33673. },
  33674. {
  33675. name: "Big Bat",
  33676. height: math.unit(1000, "feet")
  33677. },
  33678. {
  33679. name: "City-Sized Bat",
  33680. height: math.unit(200000, "feet")
  33681. },
  33682. {
  33683. name: "Bigger Bat",
  33684. height: math.unit(10000, "miles")
  33685. },
  33686. {
  33687. name: "Solar Sized Bat",
  33688. height: math.unit(100, "AU")
  33689. },
  33690. {
  33691. name: "Galactic Bat",
  33692. height: math.unit(200000, "lightyears")
  33693. },
  33694. {
  33695. name: "Universally Known Bat",
  33696. height: math.unit(1, "universe")
  33697. },
  33698. ]
  33699. ))
  33700. characterMakers.push(() => makeCharacter(
  33701. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33702. {
  33703. front: {
  33704. height: math.unit(6 + 11/12, "feet"),
  33705. weight: math.unit(250, "lb"),
  33706. name: "Front",
  33707. image: {
  33708. source: "./media/characters/cookiecat/front.svg",
  33709. extra: 893/827,
  33710. bottom: 14/907
  33711. }
  33712. },
  33713. },
  33714. [
  33715. {
  33716. name: "Micro",
  33717. height: math.unit(3, "inches")
  33718. },
  33719. {
  33720. name: "Normal",
  33721. height: math.unit(6 + 11/12, "feet"),
  33722. default: true
  33723. },
  33724. {
  33725. name: "Macro",
  33726. height: math.unit(100, "feet")
  33727. },
  33728. {
  33729. name: "Macro+",
  33730. height: math.unit(404, "feet")
  33731. },
  33732. {
  33733. name: "Megamacro",
  33734. height: math.unit(165, "miles")
  33735. },
  33736. {
  33737. name: "Planetary",
  33738. height: math.unit(4600, "miles")
  33739. },
  33740. ]
  33741. ))
  33742. characterMakers.push(() => makeCharacter(
  33743. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33744. {
  33745. front: {
  33746. height: math.unit(10 + 3/12, "feet"),
  33747. weight: math.unit(1500, "lb"),
  33748. name: "Front",
  33749. image: {
  33750. source: "./media/characters/tux-kusanagi/front.svg",
  33751. extra: 944/840,
  33752. bottom: 39/983
  33753. }
  33754. },
  33755. back: {
  33756. height: math.unit(10 + 3/12, "feet"),
  33757. weight: math.unit(1500, "lb"),
  33758. name: "Back",
  33759. image: {
  33760. source: "./media/characters/tux-kusanagi/back.svg",
  33761. extra: 941/842,
  33762. bottom: 28/969
  33763. }
  33764. },
  33765. rump: {
  33766. height: math.unit(5.25, "feet"),
  33767. name: "Rump",
  33768. image: {
  33769. source: "./media/characters/tux-kusanagi/rump.svg"
  33770. }
  33771. },
  33772. beak: {
  33773. height: math.unit(1.54, "feet"),
  33774. name: "Beak",
  33775. image: {
  33776. source: "./media/characters/tux-kusanagi/beak.svg"
  33777. }
  33778. },
  33779. },
  33780. [
  33781. {
  33782. name: "Normal",
  33783. height: math.unit(10 + 3/12, "feet"),
  33784. default: true
  33785. },
  33786. ]
  33787. ))
  33788. characterMakers.push(() => makeCharacter(
  33789. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33790. {
  33791. front: {
  33792. height: math.unit(58, "feet"),
  33793. weight: math.unit(200, "tons"),
  33794. name: "Front",
  33795. image: {
  33796. source: "./media/characters/uzarmazari/front.svg",
  33797. extra: 1575/1455,
  33798. bottom: 152/1727
  33799. }
  33800. },
  33801. back: {
  33802. height: math.unit(58, "feet"),
  33803. weight: math.unit(200, "tons"),
  33804. name: "Back",
  33805. image: {
  33806. source: "./media/characters/uzarmazari/back.svg",
  33807. extra: 1585/1510,
  33808. bottom: 157/1742
  33809. }
  33810. },
  33811. head: {
  33812. height: math.unit(26, "feet"),
  33813. name: "Head",
  33814. image: {
  33815. source: "./media/characters/uzarmazari/head.svg"
  33816. }
  33817. },
  33818. },
  33819. [
  33820. {
  33821. name: "Normal",
  33822. height: math.unit(58, "feet"),
  33823. default: true
  33824. },
  33825. ]
  33826. ))
  33827. //characters
  33828. function makeCharacters() {
  33829. const results = [];
  33830. characterMakers.forEach(character => {
  33831. results.push(character());
  33832. });
  33833. return results;
  33834. }