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

34397 строки
865 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. }
  1504. //species
  1505. function getSpeciesInfo(speciesList) {
  1506. let result = new Set();
  1507. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1508. result.add(entry)
  1509. });
  1510. return Array.from(result);
  1511. };
  1512. function getSpeciesInfoHelper(species) {
  1513. if (!speciesData[species]) {
  1514. console.warn(species + " doesn't exist");
  1515. return [];
  1516. }
  1517. if (speciesData[species].parents) {
  1518. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1519. } else {
  1520. return [species];
  1521. }
  1522. }
  1523. characterMakers.push(() => makeCharacter(
  1524. {
  1525. name: "Fen",
  1526. species: ["crux"],
  1527. description: {
  1528. title: "Bio",
  1529. text: "Very furry. Sheds on everything."
  1530. },
  1531. tags: [
  1532. "anthro",
  1533. "goo"
  1534. ]
  1535. },
  1536. {
  1537. back: {
  1538. height: math.unit(2.2428, "meter"),
  1539. weight: math.unit(124.738, "kg"),
  1540. name: "Back",
  1541. image: {
  1542. source: "./media/characters/fen/back.svg",
  1543. extra: 2024 / 1867,
  1544. bottom: 13 / 2037
  1545. },
  1546. info: {
  1547. description: {
  1548. mode: "append",
  1549. text: "\n\nHe is not currently looking at you."
  1550. }
  1551. }
  1552. },
  1553. full: {
  1554. height: math.unit(1.34, "meter"),
  1555. weight: math.unit(225, "kg"),
  1556. name: "Full",
  1557. image: {
  1558. source: "./media/characters/fen/full.svg"
  1559. },
  1560. info: {
  1561. description: {
  1562. mode: "append",
  1563. text: "\n\nMunch."
  1564. }
  1565. }
  1566. },
  1567. kneeling: {
  1568. height: math.unit(5.4, "feet"),
  1569. weight: math.unit(124.738, "kg"),
  1570. name: "Kneeling",
  1571. image: {
  1572. source: "./media/characters/fen/kneeling.svg",
  1573. extra: 563 / 507
  1574. }
  1575. },
  1576. goo: {
  1577. height: math.unit(2.8, "feet"),
  1578. weight: math.unit(125, "kg"),
  1579. capacity: math.unit(1, "people"),
  1580. name: "Goo",
  1581. image: {
  1582. source: "./media/characters/fen/goo.svg",
  1583. bottom: 116 / 613
  1584. }
  1585. },
  1586. lounging: {
  1587. height: math.unit(6.5, "feet"),
  1588. weight: math.unit(125, "kg"),
  1589. name: "Lounging",
  1590. image: {
  1591. source: "./media/characters/fen/lounging.svg"
  1592. }
  1593. },
  1594. },
  1595. [
  1596. {
  1597. name: "Normal",
  1598. height: math.unit(2.2428, "meter")
  1599. },
  1600. {
  1601. name: "Big",
  1602. height: math.unit(12, "feet")
  1603. },
  1604. {
  1605. name: "Minimacro",
  1606. height: math.unit(40, "feet"),
  1607. default: true,
  1608. info: {
  1609. description: {
  1610. mode: "append",
  1611. text: "\n\nTOO DAMN BIG"
  1612. }
  1613. }
  1614. },
  1615. {
  1616. name: "Macro",
  1617. height: math.unit(100, "feet"),
  1618. info: {
  1619. description: {
  1620. mode: "append",
  1621. text: "\n\nTOO DAMN BIG"
  1622. }
  1623. }
  1624. },
  1625. {
  1626. name: "Macro+",
  1627. height: math.unit(300, "feet")
  1628. },
  1629. {
  1630. name: "Megamacro",
  1631. height: math.unit(2, "miles")
  1632. }
  1633. ]
  1634. ))
  1635. characterMakers.push(() => makeCharacter(
  1636. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1637. {
  1638. front: {
  1639. height: math.unit(183, "cm"),
  1640. weight: math.unit(80, "kg"),
  1641. name: "Front",
  1642. image: {
  1643. source: "./media/characters/sofia-fluttertail/front.svg",
  1644. bottom: 0.01,
  1645. extra: 2154 / 2081
  1646. }
  1647. },
  1648. frontAlt: {
  1649. height: math.unit(183, "cm"),
  1650. weight: math.unit(80, "kg"),
  1651. name: "Front (alt)",
  1652. image: {
  1653. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1654. }
  1655. },
  1656. back: {
  1657. height: math.unit(183, "cm"),
  1658. weight: math.unit(80, "kg"),
  1659. name: "Back",
  1660. image: {
  1661. source: "./media/characters/sofia-fluttertail/back.svg"
  1662. }
  1663. },
  1664. kneeling: {
  1665. height: math.unit(125, "cm"),
  1666. weight: math.unit(80, "kg"),
  1667. name: "Kneeling",
  1668. image: {
  1669. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1670. extra: 1033 / 977,
  1671. bottom: 23.7 / 1057
  1672. }
  1673. },
  1674. maw: {
  1675. height: math.unit(183 / 5, "cm"),
  1676. name: "Maw",
  1677. image: {
  1678. source: "./media/characters/sofia-fluttertail/maw.svg"
  1679. }
  1680. },
  1681. mawcloseup: {
  1682. height: math.unit(183 / 5 * 0.41, "cm"),
  1683. name: "Maw (Closeup)",
  1684. image: {
  1685. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1686. }
  1687. },
  1688. paws: {
  1689. height: math.unit(1.17, "feet"),
  1690. name: "Paws",
  1691. image: {
  1692. source: "./media/characters/sofia-fluttertail/paws.svg",
  1693. extra: 851 / 851,
  1694. bottom: 17 / 868
  1695. }
  1696. },
  1697. },
  1698. [
  1699. {
  1700. name: "Normal",
  1701. height: math.unit(1.83, "meter")
  1702. },
  1703. {
  1704. name: "Size Thief",
  1705. height: math.unit(18, "feet")
  1706. },
  1707. {
  1708. name: "50 Foot Collie",
  1709. height: math.unit(50, "feet")
  1710. },
  1711. {
  1712. name: "Macro",
  1713. height: math.unit(96, "feet"),
  1714. default: true
  1715. },
  1716. {
  1717. name: "Megamerger",
  1718. height: math.unit(650, "feet")
  1719. },
  1720. ]
  1721. ))
  1722. characterMakers.push(() => makeCharacter(
  1723. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1724. {
  1725. front: {
  1726. height: math.unit(7, "feet"),
  1727. weight: math.unit(100, "kg"),
  1728. name: "Front",
  1729. image: {
  1730. source: "./media/characters/march/front.svg",
  1731. extra: 1,
  1732. bottom: 0.015
  1733. }
  1734. },
  1735. foot: {
  1736. height: math.unit(0.9, "feet"),
  1737. name: "Foot",
  1738. image: {
  1739. source: "./media/characters/march/foot.svg"
  1740. }
  1741. },
  1742. },
  1743. [
  1744. {
  1745. name: "Normal",
  1746. height: math.unit(7.9, "feet")
  1747. },
  1748. {
  1749. name: "Macro",
  1750. height: math.unit(220, "meters")
  1751. },
  1752. {
  1753. name: "Megamacro",
  1754. height: math.unit(2.98, "km"),
  1755. default: true
  1756. },
  1757. {
  1758. name: "Gigamacro",
  1759. height: math.unit(15963, "km")
  1760. },
  1761. {
  1762. name: "Teramacro",
  1763. height: math.unit(2980000000, "km")
  1764. },
  1765. {
  1766. name: "Examacro",
  1767. height: math.unit(250, "parsecs")
  1768. },
  1769. ]
  1770. ))
  1771. characterMakers.push(() => makeCharacter(
  1772. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1773. {
  1774. front: {
  1775. height: math.unit(6, "feet"),
  1776. weight: math.unit(60, "kg"),
  1777. name: "Front",
  1778. image: {
  1779. source: "./media/characters/noir/front.svg",
  1780. extra: 1,
  1781. bottom: 0.032
  1782. }
  1783. },
  1784. },
  1785. [
  1786. {
  1787. name: "Normal",
  1788. height: math.unit(6.6, "feet")
  1789. },
  1790. {
  1791. name: "Macro",
  1792. height: math.unit(500, "feet")
  1793. },
  1794. {
  1795. name: "Megamacro",
  1796. height: math.unit(2.5, "km"),
  1797. default: true
  1798. },
  1799. {
  1800. name: "Gigamacro",
  1801. height: math.unit(22500, "km")
  1802. },
  1803. {
  1804. name: "Teramacro",
  1805. height: math.unit(2500000000, "km")
  1806. },
  1807. {
  1808. name: "Examacro",
  1809. height: math.unit(200, "parsecs")
  1810. },
  1811. ]
  1812. ))
  1813. characterMakers.push(() => makeCharacter(
  1814. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1815. {
  1816. front: {
  1817. height: math.unit(7, "feet"),
  1818. weight: math.unit(100, "kg"),
  1819. name: "Front",
  1820. image: {
  1821. source: "./media/characters/okuri/front.svg",
  1822. extra: 1,
  1823. bottom: 0.037
  1824. }
  1825. },
  1826. back: {
  1827. height: math.unit(7, "feet"),
  1828. weight: math.unit(100, "kg"),
  1829. name: "Back",
  1830. image: {
  1831. source: "./media/characters/okuri/back.svg",
  1832. extra: 1,
  1833. bottom: 0.007
  1834. }
  1835. },
  1836. },
  1837. [
  1838. {
  1839. name: "Megamacro",
  1840. height: math.unit(100, "miles"),
  1841. default: true
  1842. },
  1843. ]
  1844. ))
  1845. characterMakers.push(() => makeCharacter(
  1846. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1847. {
  1848. front: {
  1849. height: math.unit(7, "feet"),
  1850. weight: math.unit(100, "kg"),
  1851. name: "Front",
  1852. image: {
  1853. source: "./media/characters/manny/front.svg",
  1854. extra: 1,
  1855. bottom: 0.06
  1856. }
  1857. },
  1858. back: {
  1859. height: math.unit(7, "feet"),
  1860. weight: math.unit(100, "kg"),
  1861. name: "Back",
  1862. image: {
  1863. source: "./media/characters/manny/back.svg",
  1864. extra: 1,
  1865. bottom: 0.014
  1866. }
  1867. },
  1868. },
  1869. [
  1870. {
  1871. name: "Normal",
  1872. height: math.unit(7, "feet"),
  1873. },
  1874. {
  1875. name: "Macro",
  1876. height: math.unit(78, "feet"),
  1877. default: true
  1878. },
  1879. {
  1880. name: "Macro+",
  1881. height: math.unit(300, "meters")
  1882. },
  1883. {
  1884. name: "Macro++",
  1885. height: math.unit(2400, "meters")
  1886. },
  1887. {
  1888. name: "Megamacro",
  1889. height: math.unit(5167, "meters")
  1890. },
  1891. {
  1892. name: "Gigamacro",
  1893. height: math.unit(41769, "miles")
  1894. },
  1895. ]
  1896. ))
  1897. characterMakers.push(() => makeCharacter(
  1898. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1899. {
  1900. front: {
  1901. height: math.unit(7, "feet"),
  1902. weight: math.unit(100, "kg"),
  1903. name: "Front",
  1904. image: {
  1905. source: "./media/characters/adake/front-1.svg"
  1906. }
  1907. },
  1908. frontAlt: {
  1909. height: math.unit(7, "feet"),
  1910. weight: math.unit(100, "kg"),
  1911. name: "Front (Alt)",
  1912. image: {
  1913. source: "./media/characters/adake/front-2.svg",
  1914. extra: 1,
  1915. bottom: 0.01
  1916. }
  1917. },
  1918. back: {
  1919. height: math.unit(7, "feet"),
  1920. weight: math.unit(100, "kg"),
  1921. name: "Back",
  1922. image: {
  1923. source: "./media/characters/adake/back.svg",
  1924. }
  1925. },
  1926. kneel: {
  1927. height: math.unit(5.385, "feet"),
  1928. weight: math.unit(100, "kg"),
  1929. name: "Kneeling",
  1930. image: {
  1931. source: "./media/characters/adake/kneel.svg",
  1932. bottom: 0.052
  1933. }
  1934. },
  1935. },
  1936. [
  1937. {
  1938. name: "Normal",
  1939. height: math.unit(7, "feet"),
  1940. },
  1941. {
  1942. name: "Macro",
  1943. height: math.unit(78, "feet"),
  1944. default: true
  1945. },
  1946. {
  1947. name: "Macro+",
  1948. height: math.unit(300, "meters")
  1949. },
  1950. {
  1951. name: "Macro++",
  1952. height: math.unit(2400, "meters")
  1953. },
  1954. {
  1955. name: "Megamacro",
  1956. height: math.unit(5167, "meters")
  1957. },
  1958. {
  1959. name: "Gigamacro",
  1960. height: math.unit(41769, "miles")
  1961. },
  1962. ]
  1963. ))
  1964. characterMakers.push(() => makeCharacter(
  1965. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1966. {
  1967. front: {
  1968. height: math.unit(1.65, "meters"),
  1969. weight: math.unit(50, "kg"),
  1970. name: "Front",
  1971. image: {
  1972. source: "./media/characters/elijah/front.svg",
  1973. extra: 858 / 830,
  1974. bottom: 95.5 / 953.8559
  1975. }
  1976. },
  1977. back: {
  1978. height: math.unit(1.65, "meters"),
  1979. weight: math.unit(50, "kg"),
  1980. name: "Back",
  1981. image: {
  1982. source: "./media/characters/elijah/back.svg",
  1983. extra: 895 / 850,
  1984. bottom: 5.3 / 897.956
  1985. }
  1986. },
  1987. frontNsfw: {
  1988. height: math.unit(1.65, "meters"),
  1989. weight: math.unit(50, "kg"),
  1990. name: "Front (NSFW)",
  1991. image: {
  1992. source: "./media/characters/elijah/front-nsfw.svg",
  1993. extra: 858 / 830,
  1994. bottom: 95.5 / 953.8559
  1995. }
  1996. },
  1997. backNsfw: {
  1998. height: math.unit(1.65, "meters"),
  1999. weight: math.unit(50, "kg"),
  2000. name: "Back (NSFW)",
  2001. image: {
  2002. source: "./media/characters/elijah/back-nsfw.svg",
  2003. extra: 895 / 850,
  2004. bottom: 5.3 / 897.956
  2005. }
  2006. },
  2007. dick: {
  2008. height: math.unit(1, "feet"),
  2009. name: "Dick",
  2010. image: {
  2011. source: "./media/characters/elijah/dick.svg"
  2012. }
  2013. },
  2014. beakOpen: {
  2015. height: math.unit(1.25, "feet"),
  2016. name: "Beak (Open)",
  2017. image: {
  2018. source: "./media/characters/elijah/beak-open.svg"
  2019. }
  2020. },
  2021. beakShut: {
  2022. height: math.unit(1.25, "feet"),
  2023. name: "Beak (Shut)",
  2024. image: {
  2025. source: "./media/characters/elijah/beak-shut.svg"
  2026. }
  2027. },
  2028. footFlexing: {
  2029. height: math.unit(1.61, "feet"),
  2030. name: "Foot (Flexing)",
  2031. image: {
  2032. source: "./media/characters/elijah/foot-flexing.svg"
  2033. }
  2034. },
  2035. footStepping: {
  2036. height: math.unit(1.44, "feet"),
  2037. name: "Foot (Stepping)",
  2038. image: {
  2039. source: "./media/characters/elijah/foot-stepping.svg"
  2040. }
  2041. },
  2042. plantigradeLeg: {
  2043. height: math.unit(2.34, "feet"),
  2044. name: "Plantigrade Leg",
  2045. image: {
  2046. source: "./media/characters/elijah/plantigrade-leg.svg"
  2047. }
  2048. },
  2049. plantigradeFootLeft: {
  2050. height: math.unit(0.9, "feet"),
  2051. name: "Plantigrade Foot (Left)",
  2052. image: {
  2053. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2054. }
  2055. },
  2056. plantigradeFootRight: {
  2057. height: math.unit(0.9, "feet"),
  2058. name: "Plantigrade Foot (Right)",
  2059. image: {
  2060. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2061. }
  2062. },
  2063. },
  2064. [
  2065. {
  2066. name: "Normal",
  2067. height: math.unit(1.65, "meters")
  2068. },
  2069. {
  2070. name: "Macro",
  2071. height: math.unit(55, "meters"),
  2072. default: true
  2073. },
  2074. {
  2075. name: "Macro+",
  2076. height: math.unit(105, "meters")
  2077. },
  2078. ]
  2079. ))
  2080. characterMakers.push(() => makeCharacter(
  2081. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2082. {
  2083. front: {
  2084. height: math.unit(11, "feet"),
  2085. weight: math.unit(80, "kg"),
  2086. name: "Front",
  2087. image: {
  2088. source: "./media/characters/rai/front.svg",
  2089. extra: 1,
  2090. bottom: 0.03
  2091. }
  2092. },
  2093. side: {
  2094. height: math.unit(11, "feet"),
  2095. weight: math.unit(80, "kg"),
  2096. name: "Side",
  2097. image: {
  2098. source: "./media/characters/rai/side.svg"
  2099. }
  2100. },
  2101. back: {
  2102. height: math.unit(11, "feet"),
  2103. weight: math.unit(80, "lb"),
  2104. name: "Back",
  2105. image: {
  2106. source: "./media/characters/rai/back.svg",
  2107. extra: 1,
  2108. bottom: 0.01
  2109. }
  2110. },
  2111. feral: {
  2112. height: math.unit(11, "feet"),
  2113. weight: math.unit(800, "lb"),
  2114. name: "Feral",
  2115. image: {
  2116. source: "./media/characters/rai/feral.svg",
  2117. extra: 1050 / 659,
  2118. bottom: 0.07
  2119. }
  2120. },
  2121. dragon: {
  2122. height: math.unit(23, "feet"),
  2123. weight: math.unit(50000, "lb"),
  2124. name: "Dragon",
  2125. image: {
  2126. source: "./media/characters/rai/dragon.svg",
  2127. extra: 2498 / 2030,
  2128. bottom: 85.2 / 2584
  2129. }
  2130. },
  2131. maw: {
  2132. height: math.unit(6 / 3.81416, "feet"),
  2133. name: "Maw",
  2134. image: {
  2135. source: "./media/characters/rai/maw.svg"
  2136. }
  2137. },
  2138. },
  2139. [
  2140. {
  2141. name: "Normal",
  2142. height: math.unit(11, "feet")
  2143. },
  2144. {
  2145. name: "Macro",
  2146. height: math.unit(302, "feet"),
  2147. default: true
  2148. },
  2149. ]
  2150. ))
  2151. characterMakers.push(() => makeCharacter(
  2152. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2153. {
  2154. frontDressed: {
  2155. height: math.unit(216, "feet"),
  2156. weight: math.unit(7000000, "lb"),
  2157. name: "Front (Dressed)",
  2158. image: {
  2159. source: "./media/characters/jazzy/front-dressed.svg",
  2160. extra: 2738 / 2651,
  2161. bottom: 41.8 / 2786
  2162. }
  2163. },
  2164. backDressed: {
  2165. height: math.unit(216, "feet"),
  2166. weight: math.unit(7000000, "lb"),
  2167. name: "Back (Dressed)",
  2168. image: {
  2169. source: "./media/characters/jazzy/back-dressed.svg",
  2170. extra: 2775 / 2673,
  2171. bottom: 36.8 / 2817
  2172. }
  2173. },
  2174. front: {
  2175. height: math.unit(216, "feet"),
  2176. weight: math.unit(7000000, "lb"),
  2177. name: "Front",
  2178. image: {
  2179. source: "./media/characters/jazzy/front.svg",
  2180. extra: 2738 / 2651,
  2181. bottom: 41.8 / 2786
  2182. }
  2183. },
  2184. back: {
  2185. height: math.unit(216, "feet"),
  2186. weight: math.unit(7000000, "lb"),
  2187. name: "Back",
  2188. image: {
  2189. source: "./media/characters/jazzy/back.svg",
  2190. extra: 2775 / 2673,
  2191. bottom: 36.8 / 2817
  2192. }
  2193. },
  2194. maw: {
  2195. height: math.unit(20, "feet"),
  2196. name: "Maw",
  2197. image: {
  2198. source: "./media/characters/jazzy/maw.svg"
  2199. }
  2200. },
  2201. paws: {
  2202. height: math.unit(27.5, "feet"),
  2203. name: "Paws",
  2204. image: {
  2205. source: "./media/characters/jazzy/paws.svg"
  2206. }
  2207. },
  2208. eye: {
  2209. height: math.unit(4.4, "feet"),
  2210. name: "Eye",
  2211. image: {
  2212. source: "./media/characters/jazzy/eye.svg"
  2213. }
  2214. },
  2215. droneOffense: {
  2216. height: math.unit(9.5, "inches"),
  2217. name: "Drone (Offense)",
  2218. image: {
  2219. source: "./media/characters/jazzy/drone-offense.svg"
  2220. }
  2221. },
  2222. droneRecon: {
  2223. height: math.unit(9.5, "inches"),
  2224. name: "Drone (Recon)",
  2225. image: {
  2226. source: "./media/characters/jazzy/drone-recon.svg"
  2227. }
  2228. },
  2229. droneDefense: {
  2230. height: math.unit(9.5, "inches"),
  2231. name: "Drone (Defense)",
  2232. image: {
  2233. source: "./media/characters/jazzy/drone-defense.svg"
  2234. }
  2235. },
  2236. },
  2237. [
  2238. {
  2239. name: "Macro",
  2240. height: math.unit(216, "feet"),
  2241. default: true
  2242. },
  2243. ]
  2244. ))
  2245. characterMakers.push(() => makeCharacter(
  2246. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2247. {
  2248. front: {
  2249. height: math.unit(7, "feet"),
  2250. weight: math.unit(80, "kg"),
  2251. name: "Front",
  2252. image: {
  2253. source: "./media/characters/flamm/front.svg",
  2254. extra: 1794 / 1677,
  2255. bottom: 31.7 / 1828.5
  2256. }
  2257. },
  2258. },
  2259. [
  2260. {
  2261. name: "Normal",
  2262. height: math.unit(9.5, "feet")
  2263. },
  2264. {
  2265. name: "Macro",
  2266. height: math.unit(200, "feet"),
  2267. default: true
  2268. },
  2269. ]
  2270. ))
  2271. characterMakers.push(() => makeCharacter(
  2272. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2273. {
  2274. front: {
  2275. height: math.unit(5 + 3/12, "feet"),
  2276. weight: math.unit(60, "kg"),
  2277. name: "Front",
  2278. image: {
  2279. source: "./media/characters/zephiro/front.svg",
  2280. extra: 2309 / 2162,
  2281. bottom: 0.069
  2282. }
  2283. },
  2284. side: {
  2285. height: math.unit(5 + 3/12, "feet"),
  2286. weight: math.unit(60, "kg"),
  2287. name: "Side",
  2288. image: {
  2289. source: "./media/characters/zephiro/side.svg",
  2290. extra: 2403 / 2279,
  2291. bottom: 0.015
  2292. }
  2293. },
  2294. back: {
  2295. height: math.unit(5 + 3/12, "feet"),
  2296. weight: math.unit(60, "kg"),
  2297. name: "Back",
  2298. image: {
  2299. source: "./media/characters/zephiro/back.svg",
  2300. extra: 2373 / 2244,
  2301. bottom: 0.013
  2302. }
  2303. },
  2304. hand: {
  2305. height: math.unit(0.68, "feet"),
  2306. name: "Hand",
  2307. image: {
  2308. source: "./media/characters/zephiro/hand.svg"
  2309. }
  2310. },
  2311. paw: {
  2312. height: math.unit(1, "feet"),
  2313. name: "Paw",
  2314. image: {
  2315. source: "./media/characters/zephiro/paw.svg"
  2316. }
  2317. },
  2318. beans: {
  2319. height: math.unit(0.93, "feet"),
  2320. name: "Beans",
  2321. image: {
  2322. source: "./media/characters/zephiro/beans.svg"
  2323. }
  2324. },
  2325. },
  2326. [
  2327. {
  2328. name: "Micro",
  2329. height: math.unit(3, "inches")
  2330. },
  2331. {
  2332. name: "Normal",
  2333. height: math.unit(5 + 3 / 12, "feet"),
  2334. default: true
  2335. },
  2336. {
  2337. name: "Macro",
  2338. height: math.unit(118, "feet")
  2339. },
  2340. ]
  2341. ))
  2342. characterMakers.push(() => makeCharacter(
  2343. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2344. {
  2345. front: {
  2346. height: math.unit(5, "feet"),
  2347. weight: math.unit(90, "kg"),
  2348. name: "Front",
  2349. image: {
  2350. source: "./media/characters/fory/front.svg",
  2351. extra: 2862 / 2674,
  2352. bottom: 180 / 3043.8
  2353. }
  2354. },
  2355. back: {
  2356. height: math.unit(5, "feet"),
  2357. weight: math.unit(90, "kg"),
  2358. name: "Back",
  2359. image: {
  2360. source: "./media/characters/fory/back.svg",
  2361. extra: 2962 / 2791,
  2362. bottom: 106 / 3071.8
  2363. }
  2364. },
  2365. foot: {
  2366. height: math.unit(2.14, "feet"),
  2367. name: "Foot",
  2368. image: {
  2369. source: "./media/characters/fory/foot.svg"
  2370. }
  2371. },
  2372. },
  2373. [
  2374. {
  2375. name: "Normal",
  2376. height: math.unit(5, "feet")
  2377. },
  2378. {
  2379. name: "Macro",
  2380. height: math.unit(50, "feet"),
  2381. default: true
  2382. },
  2383. {
  2384. name: "Megamacro",
  2385. height: math.unit(10, "miles")
  2386. },
  2387. {
  2388. name: "Gigamacro",
  2389. height: math.unit(5, "earths")
  2390. },
  2391. ]
  2392. ))
  2393. characterMakers.push(() => makeCharacter(
  2394. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2395. {
  2396. front: {
  2397. height: math.unit(7, "feet"),
  2398. weight: math.unit(90, "kg"),
  2399. name: "Front",
  2400. image: {
  2401. source: "./media/characters/kurrikage/front.svg",
  2402. extra: 1,
  2403. bottom: 0.035
  2404. }
  2405. },
  2406. back: {
  2407. height: math.unit(7, "feet"),
  2408. weight: math.unit(90, "lb"),
  2409. name: "Back",
  2410. image: {
  2411. source: "./media/characters/kurrikage/back.svg"
  2412. }
  2413. },
  2414. paw: {
  2415. height: math.unit(1.5, "feet"),
  2416. name: "Paw",
  2417. image: {
  2418. source: "./media/characters/kurrikage/paw.svg"
  2419. }
  2420. },
  2421. staff: {
  2422. height: math.unit(6.7, "feet"),
  2423. name: "Staff",
  2424. image: {
  2425. source: "./media/characters/kurrikage/staff.svg"
  2426. }
  2427. },
  2428. peek: {
  2429. height: math.unit(1.05, "feet"),
  2430. name: "Peeking",
  2431. image: {
  2432. source: "./media/characters/kurrikage/peek.svg",
  2433. bottom: 0.08
  2434. }
  2435. },
  2436. },
  2437. [
  2438. {
  2439. name: "Normal",
  2440. height: math.unit(12, "feet"),
  2441. default: true
  2442. },
  2443. {
  2444. name: "Big",
  2445. height: math.unit(20, "feet")
  2446. },
  2447. {
  2448. name: "Macro",
  2449. height: math.unit(500, "feet")
  2450. },
  2451. {
  2452. name: "Megamacro",
  2453. height: math.unit(20, "miles")
  2454. },
  2455. ]
  2456. ))
  2457. characterMakers.push(() => makeCharacter(
  2458. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2459. {
  2460. front: {
  2461. height: math.unit(6, "feet"),
  2462. weight: math.unit(75, "kg"),
  2463. name: "Front",
  2464. image: {
  2465. source: "./media/characters/shingo/front.svg",
  2466. extra: 706/681,
  2467. bottom: 11/717
  2468. }
  2469. },
  2470. frontAlt: {
  2471. height: math.unit(6, "feet"),
  2472. weight: math.unit(75, "kg"),
  2473. name: "Front (Alt)",
  2474. image: {
  2475. source: "./media/characters/shingo/front-alt.svg",
  2476. extra: 3511 / 3338,
  2477. bottom: 0.005
  2478. }
  2479. },
  2480. paw: {
  2481. height: math.unit(1, "feet"),
  2482. name: "Paw",
  2483. image: {
  2484. source: "./media/characters/shingo/paw.svg"
  2485. }
  2486. },
  2487. },
  2488. [
  2489. {
  2490. name: "Micro",
  2491. height: math.unit(4, "inches")
  2492. },
  2493. {
  2494. name: "Normal",
  2495. height: math.unit(6, "feet"),
  2496. default: true
  2497. },
  2498. {
  2499. name: "Macro",
  2500. height: math.unit(108, "feet")
  2501. },
  2502. {
  2503. name: "Macro+",
  2504. height: math.unit(1500, "feet")
  2505. },
  2506. ]
  2507. ))
  2508. characterMakers.push(() => makeCharacter(
  2509. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2510. {
  2511. side: {
  2512. height: math.unit(6, "feet"),
  2513. weight: math.unit(75, "kg"),
  2514. name: "Side",
  2515. image: {
  2516. source: "./media/characters/aigey/side.svg"
  2517. }
  2518. },
  2519. },
  2520. [
  2521. {
  2522. name: "Macro",
  2523. height: math.unit(200, "feet"),
  2524. default: true
  2525. },
  2526. {
  2527. name: "Megamacro",
  2528. height: math.unit(100, "miles")
  2529. },
  2530. ]
  2531. )
  2532. )
  2533. characterMakers.push(() => makeCharacter(
  2534. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2535. {
  2536. front: {
  2537. height: math.unit(5 + 5 / 12, "feet"),
  2538. weight: math.unit(75, "kg"),
  2539. name: "Front",
  2540. image: {
  2541. source: "./media/characters/natasha/front.svg",
  2542. extra: 859 / 824,
  2543. bottom: 23 / 879.6
  2544. }
  2545. },
  2546. frontNsfw: {
  2547. height: math.unit(5 + 5 / 12, "feet"),
  2548. weight: math.unit(75, "kg"),
  2549. name: "Front (NSFW)",
  2550. image: {
  2551. source: "./media/characters/natasha/front-nsfw.svg",
  2552. extra: 859 / 824,
  2553. bottom: 23 / 879.6
  2554. }
  2555. },
  2556. frontErect: {
  2557. height: math.unit(5 + 5 / 12, "feet"),
  2558. weight: math.unit(75, "kg"),
  2559. name: "Front (Erect)",
  2560. image: {
  2561. source: "./media/characters/natasha/front-erect.svg",
  2562. extra: 859 / 824,
  2563. bottom: 23 / 879.6
  2564. }
  2565. },
  2566. back: {
  2567. height: math.unit(5 + 5 / 12, "feet"),
  2568. weight: math.unit(75, "kg"),
  2569. name: "Back",
  2570. image: {
  2571. source: "./media/characters/natasha/back.svg",
  2572. extra: 887.9 / 852.6,
  2573. bottom: 9.7 / 896.4
  2574. }
  2575. },
  2576. backAlt: {
  2577. height: math.unit(5 + 5 / 12, "feet"),
  2578. weight: math.unit(75, "kg"),
  2579. name: "Back (Alt)",
  2580. image: {
  2581. source: "./media/characters/natasha/back-alt.svg",
  2582. extra: 1236.7 / 1192,
  2583. bottom: 22.3 / 1258.2
  2584. }
  2585. },
  2586. dick: {
  2587. height: math.unit(1.772, "feet"),
  2588. name: "Dick",
  2589. image: {
  2590. source: "./media/characters/natasha/dick.svg"
  2591. }
  2592. },
  2593. paw: {
  2594. height: math.unit(0.250, "meters"),
  2595. name: "Paw",
  2596. image: {
  2597. source: "./media/characters/natasha/paw.svg"
  2598. }
  2599. },
  2600. },
  2601. [
  2602. {
  2603. name: "Normal",
  2604. height: math.unit(5 + 5 / 12, "feet")
  2605. },
  2606. {
  2607. name: "Large",
  2608. height: math.unit(12, "feet")
  2609. },
  2610. {
  2611. name: "Macro",
  2612. height: math.unit(100, "feet"),
  2613. default: true
  2614. },
  2615. {
  2616. name: "Macro+",
  2617. height: math.unit(260, "feet")
  2618. },
  2619. {
  2620. name: "Macro++",
  2621. height: math.unit(1, "mile")
  2622. },
  2623. ]
  2624. ))
  2625. characterMakers.push(() => makeCharacter(
  2626. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2627. {
  2628. front: {
  2629. height: math.unit(6, "feet"),
  2630. weight: math.unit(75, "kg"),
  2631. name: "Front",
  2632. image: {
  2633. source: "./media/characters/malik/front.svg"
  2634. }
  2635. },
  2636. side: {
  2637. height: math.unit(6, "feet"),
  2638. weight: math.unit(75, "kg"),
  2639. name: "Side",
  2640. image: {
  2641. source: "./media/characters/malik/side.svg",
  2642. extra: 1.1539
  2643. }
  2644. },
  2645. back: {
  2646. height: math.unit(6, "feet"),
  2647. weight: math.unit(75, "kg"),
  2648. name: "Back",
  2649. image: {
  2650. source: "./media/characters/malik/back.svg"
  2651. }
  2652. },
  2653. },
  2654. [
  2655. {
  2656. name: "Macro",
  2657. height: math.unit(156, "feet"),
  2658. default: true
  2659. },
  2660. {
  2661. name: "Macro+",
  2662. height: math.unit(1188, "feet")
  2663. },
  2664. ]
  2665. ))
  2666. characterMakers.push(() => makeCharacter(
  2667. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2668. {
  2669. front: {
  2670. height: math.unit(6, "feet"),
  2671. weight: math.unit(75, "kg"),
  2672. name: "Front",
  2673. image: {
  2674. source: "./media/characters/sefer/front.svg",
  2675. extra: 848 / 659,
  2676. bottom: 28.3 / 876.442
  2677. }
  2678. },
  2679. back: {
  2680. height: math.unit(6, "feet"),
  2681. weight: math.unit(75, "kg"),
  2682. name: "Back",
  2683. image: {
  2684. source: "./media/characters/sefer/back.svg",
  2685. extra: 864 / 695,
  2686. bottom: 10 / 871
  2687. }
  2688. },
  2689. frontDressed: {
  2690. height: math.unit(6, "feet"),
  2691. weight: math.unit(75, "kg"),
  2692. name: "Front (Dressed)",
  2693. image: {
  2694. source: "./media/characters/sefer/front-dressed.svg",
  2695. extra: 839 / 653,
  2696. bottom: 37.6 / 878
  2697. }
  2698. },
  2699. },
  2700. [
  2701. {
  2702. name: "Normal",
  2703. height: math.unit(6, "feet"),
  2704. default: true
  2705. },
  2706. ]
  2707. ))
  2708. characterMakers.push(() => makeCharacter(
  2709. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2710. {
  2711. body: {
  2712. height: math.unit(2.2428, "meter"),
  2713. weight: math.unit(124.738, "kg"),
  2714. name: "Body",
  2715. image: {
  2716. extra: 1225 / 1050,
  2717. source: "./media/characters/north/front.svg"
  2718. }
  2719. }
  2720. },
  2721. [
  2722. {
  2723. name: "Micro",
  2724. height: math.unit(4, "inches")
  2725. },
  2726. {
  2727. name: "Macro",
  2728. height: math.unit(63, "meters")
  2729. },
  2730. {
  2731. name: "Megamacro",
  2732. height: math.unit(101, "miles"),
  2733. default: true
  2734. }
  2735. ]
  2736. ))
  2737. characterMakers.push(() => makeCharacter(
  2738. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2739. {
  2740. angled: {
  2741. height: math.unit(4, "meter"),
  2742. weight: math.unit(150, "kg"),
  2743. name: "Angled",
  2744. image: {
  2745. source: "./media/characters/talan/angled-sfw.svg",
  2746. bottom: 29 / 3734
  2747. }
  2748. },
  2749. angledNsfw: {
  2750. height: math.unit(4, "meter"),
  2751. weight: math.unit(150, "kg"),
  2752. name: "Angled (NSFW)",
  2753. image: {
  2754. source: "./media/characters/talan/angled-nsfw.svg",
  2755. bottom: 29 / 3734
  2756. }
  2757. },
  2758. frontNsfw: {
  2759. height: math.unit(4, "meter"),
  2760. weight: math.unit(150, "kg"),
  2761. name: "Front (NSFW)",
  2762. image: {
  2763. source: "./media/characters/talan/front-nsfw.svg",
  2764. bottom: 29 / 3734
  2765. }
  2766. },
  2767. sideNsfw: {
  2768. height: math.unit(4, "meter"),
  2769. weight: math.unit(150, "kg"),
  2770. name: "Side (NSFW)",
  2771. image: {
  2772. source: "./media/characters/talan/side-nsfw.svg",
  2773. bottom: 29 / 3734
  2774. }
  2775. },
  2776. back: {
  2777. height: math.unit(4, "meter"),
  2778. weight: math.unit(150, "kg"),
  2779. name: "Back",
  2780. image: {
  2781. source: "./media/characters/talan/back.svg"
  2782. }
  2783. },
  2784. dickBottom: {
  2785. height: math.unit(0.621, "meter"),
  2786. name: "Dick (Bottom)",
  2787. image: {
  2788. source: "./media/characters/talan/dick-bottom.svg"
  2789. }
  2790. },
  2791. dickTop: {
  2792. height: math.unit(0.621, "meter"),
  2793. name: "Dick (Top)",
  2794. image: {
  2795. source: "./media/characters/talan/dick-top.svg"
  2796. }
  2797. },
  2798. dickSide: {
  2799. height: math.unit(0.305, "meter"),
  2800. name: "Dick (Side)",
  2801. image: {
  2802. source: "./media/characters/talan/dick-side.svg"
  2803. }
  2804. },
  2805. dickFront: {
  2806. height: math.unit(0.305, "meter"),
  2807. name: "Dick (Front)",
  2808. image: {
  2809. source: "./media/characters/talan/dick-front.svg"
  2810. }
  2811. },
  2812. },
  2813. [
  2814. {
  2815. name: "Normal",
  2816. height: math.unit(4, "meters")
  2817. },
  2818. {
  2819. name: "Macro",
  2820. height: math.unit(100, "meters")
  2821. },
  2822. {
  2823. name: "Megamacro",
  2824. height: math.unit(2, "miles"),
  2825. default: true
  2826. },
  2827. {
  2828. name: "Gigamacro",
  2829. height: math.unit(5000, "miles")
  2830. },
  2831. {
  2832. name: "Teramacro",
  2833. height: math.unit(100, "parsecs")
  2834. }
  2835. ]
  2836. ))
  2837. characterMakers.push(() => makeCharacter(
  2838. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2839. {
  2840. front: {
  2841. height: math.unit(2, "meter"),
  2842. weight: math.unit(90, "kg"),
  2843. name: "Front",
  2844. image: {
  2845. source: "./media/characters/gael'rathus/front.svg"
  2846. }
  2847. },
  2848. frontAlt: {
  2849. height: math.unit(2, "meter"),
  2850. weight: math.unit(90, "kg"),
  2851. name: "Front (alt)",
  2852. image: {
  2853. source: "./media/characters/gael'rathus/front-alt.svg"
  2854. }
  2855. },
  2856. frontAlt2: {
  2857. height: math.unit(2, "meter"),
  2858. weight: math.unit(90, "kg"),
  2859. name: "Front (alt 2)",
  2860. image: {
  2861. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2862. }
  2863. }
  2864. },
  2865. [
  2866. {
  2867. name: "Normal",
  2868. height: math.unit(9, "feet"),
  2869. default: true
  2870. },
  2871. {
  2872. name: "Large",
  2873. height: math.unit(25, "feet")
  2874. },
  2875. {
  2876. name: "Macro",
  2877. height: math.unit(0.25, "miles")
  2878. },
  2879. {
  2880. name: "Megamacro",
  2881. height: math.unit(10, "miles")
  2882. }
  2883. ]
  2884. ))
  2885. characterMakers.push(() => makeCharacter(
  2886. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2887. {
  2888. side: {
  2889. height: math.unit(2, "meter"),
  2890. weight: math.unit(140, "kg"),
  2891. name: "Side",
  2892. image: {
  2893. source: "./media/characters/sosha/side.svg",
  2894. bottom: 0.042
  2895. }
  2896. },
  2897. },
  2898. [
  2899. {
  2900. name: "Normal",
  2901. height: math.unit(12, "feet"),
  2902. default: true
  2903. }
  2904. ]
  2905. ))
  2906. characterMakers.push(() => makeCharacter(
  2907. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2908. {
  2909. side: {
  2910. height: math.unit(5 + 5 / 12, "feet"),
  2911. weight: math.unit(170, "kg"),
  2912. name: "Side",
  2913. image: {
  2914. source: "./media/characters/runnola/side.svg",
  2915. extra: 741 / 448,
  2916. bottom: 0.05
  2917. }
  2918. },
  2919. },
  2920. [
  2921. {
  2922. name: "Small",
  2923. height: math.unit(3, "feet")
  2924. },
  2925. {
  2926. name: "Normal",
  2927. height: math.unit(5 + 5 / 12, "feet"),
  2928. default: true
  2929. },
  2930. {
  2931. name: "Big",
  2932. height: math.unit(10, "feet")
  2933. },
  2934. ]
  2935. ))
  2936. characterMakers.push(() => makeCharacter(
  2937. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2938. {
  2939. front: {
  2940. height: math.unit(2, "meter"),
  2941. weight: math.unit(50, "kg"),
  2942. name: "Front",
  2943. image: {
  2944. source: "./media/characters/kurribird/front.svg",
  2945. bottom: 0.015
  2946. }
  2947. },
  2948. frontAlt: {
  2949. height: math.unit(1.5, "meter"),
  2950. weight: math.unit(50, "kg"),
  2951. name: "Front (Alt)",
  2952. image: {
  2953. source: "./media/characters/kurribird/front-alt.svg",
  2954. extra: 1.45
  2955. }
  2956. },
  2957. },
  2958. [
  2959. {
  2960. name: "Normal",
  2961. height: math.unit(7, "feet")
  2962. },
  2963. {
  2964. name: "Big",
  2965. height: math.unit(12, "feet"),
  2966. default: true
  2967. },
  2968. {
  2969. name: "Macro",
  2970. height: math.unit(1500, "feet")
  2971. },
  2972. {
  2973. name: "Megamacro",
  2974. height: math.unit(2, "miles")
  2975. }
  2976. ]
  2977. ))
  2978. characterMakers.push(() => makeCharacter(
  2979. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2980. {
  2981. front: {
  2982. height: math.unit(2, "meter"),
  2983. weight: math.unit(80, "kg"),
  2984. name: "Front",
  2985. image: {
  2986. source: "./media/characters/elbial/front.svg",
  2987. extra: 1643 / 1556,
  2988. bottom: 60.2 / 1696
  2989. }
  2990. },
  2991. side: {
  2992. height: math.unit(2, "meter"),
  2993. weight: math.unit(80, "kg"),
  2994. name: "Side",
  2995. image: {
  2996. source: "./media/characters/elbial/side.svg",
  2997. extra: 1630 / 1565,
  2998. bottom: 71.5 / 1697
  2999. }
  3000. },
  3001. back: {
  3002. height: math.unit(2, "meter"),
  3003. weight: math.unit(80, "kg"),
  3004. name: "Back",
  3005. image: {
  3006. source: "./media/characters/elbial/back.svg",
  3007. extra: 1668 / 1595,
  3008. bottom: 5.6 / 1672
  3009. }
  3010. },
  3011. frontDressed: {
  3012. height: math.unit(2, "meter"),
  3013. weight: math.unit(80, "kg"),
  3014. name: "Front (Dressed)",
  3015. image: {
  3016. source: "./media/characters/elbial/front-dressed.svg",
  3017. extra: 1653 / 1584,
  3018. bottom: 57 / 1708
  3019. }
  3020. },
  3021. genitals: {
  3022. height: math.unit(2 / 3.367, "meter"),
  3023. name: "Genitals",
  3024. image: {
  3025. source: "./media/characters/elbial/genitals.svg"
  3026. }
  3027. },
  3028. },
  3029. [
  3030. {
  3031. name: "Large",
  3032. height: math.unit(100, "feet")
  3033. },
  3034. {
  3035. name: "Macro",
  3036. height: math.unit(500, "feet"),
  3037. default: true
  3038. },
  3039. {
  3040. name: "Megamacro",
  3041. height: math.unit(10, "miles")
  3042. },
  3043. {
  3044. name: "Gigamacro",
  3045. height: math.unit(25000, "miles")
  3046. },
  3047. {
  3048. name: "Full-Size",
  3049. height: math.unit(8000000, "gigaparsecs")
  3050. }
  3051. ]
  3052. ))
  3053. characterMakers.push(() => makeCharacter(
  3054. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3055. {
  3056. front: {
  3057. height: math.unit(2, "meter"),
  3058. weight: math.unit(60, "kg"),
  3059. name: "Front",
  3060. image: {
  3061. source: "./media/characters/noah/front.svg"
  3062. }
  3063. },
  3064. talons: {
  3065. height: math.unit(0.315, "meter"),
  3066. name: "Talons",
  3067. image: {
  3068. source: "./media/characters/noah/talons.svg"
  3069. }
  3070. }
  3071. },
  3072. [
  3073. {
  3074. name: "Large",
  3075. height: math.unit(50, "feet")
  3076. },
  3077. {
  3078. name: "Macro",
  3079. height: math.unit(750, "feet"),
  3080. default: true
  3081. },
  3082. {
  3083. name: "Megamacro",
  3084. height: math.unit(50, "miles")
  3085. },
  3086. {
  3087. name: "Gigamacro",
  3088. height: math.unit(100000, "miles")
  3089. },
  3090. {
  3091. name: "Full-Size",
  3092. height: math.unit(3000000000, "miles")
  3093. }
  3094. ]
  3095. ))
  3096. characterMakers.push(() => makeCharacter(
  3097. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3098. {
  3099. front: {
  3100. height: math.unit(2, "meter"),
  3101. weight: math.unit(80, "kg"),
  3102. name: "Front",
  3103. image: {
  3104. source: "./media/characters/natalya/front.svg"
  3105. }
  3106. },
  3107. back: {
  3108. height: math.unit(2, "meter"),
  3109. weight: math.unit(80, "kg"),
  3110. name: "Back",
  3111. image: {
  3112. source: "./media/characters/natalya/back.svg"
  3113. }
  3114. }
  3115. },
  3116. [
  3117. {
  3118. name: "Normal",
  3119. height: math.unit(150, "feet"),
  3120. default: true
  3121. },
  3122. {
  3123. name: "Megamacro",
  3124. height: math.unit(5, "miles")
  3125. },
  3126. {
  3127. name: "Full-Size",
  3128. height: math.unit(600, "kiloparsecs")
  3129. }
  3130. ]
  3131. ))
  3132. characterMakers.push(() => makeCharacter(
  3133. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3134. {
  3135. front: {
  3136. height: math.unit(2, "meter"),
  3137. weight: math.unit(50, "kg"),
  3138. name: "Front",
  3139. image: {
  3140. source: "./media/characters/erestrebah/front.svg",
  3141. extra: 208 / 193,
  3142. bottom: 0.055
  3143. }
  3144. },
  3145. back: {
  3146. height: math.unit(2, "meter"),
  3147. weight: math.unit(50, "kg"),
  3148. name: "Back",
  3149. image: {
  3150. source: "./media/characters/erestrebah/back.svg",
  3151. extra: 1.3
  3152. }
  3153. }
  3154. },
  3155. [
  3156. {
  3157. name: "Normal",
  3158. height: math.unit(10, "feet")
  3159. },
  3160. {
  3161. name: "Large",
  3162. height: math.unit(50, "feet"),
  3163. default: true
  3164. },
  3165. {
  3166. name: "Macro",
  3167. height: math.unit(300, "feet")
  3168. },
  3169. {
  3170. name: "Macro+",
  3171. height: math.unit(750, "feet")
  3172. },
  3173. {
  3174. name: "Megamacro",
  3175. height: math.unit(3, "miles")
  3176. }
  3177. ]
  3178. ))
  3179. characterMakers.push(() => makeCharacter(
  3180. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3181. {
  3182. front: {
  3183. height: math.unit(2, "meter"),
  3184. weight: math.unit(80, "kg"),
  3185. name: "Front",
  3186. image: {
  3187. source: "./media/characters/jennifer/front.svg",
  3188. bottom: 0.11,
  3189. extra: 1.16
  3190. }
  3191. },
  3192. frontAlt: {
  3193. height: math.unit(2, "meter"),
  3194. weight: math.unit(80, "kg"),
  3195. name: "Front (Alt)",
  3196. image: {
  3197. source: "./media/characters/jennifer/front-alt.svg"
  3198. }
  3199. }
  3200. },
  3201. [
  3202. {
  3203. name: "Canon Height",
  3204. height: math.unit(120, "feet"),
  3205. default: true
  3206. },
  3207. {
  3208. name: "Macro+",
  3209. height: math.unit(300, "feet")
  3210. },
  3211. {
  3212. name: "Megamacro",
  3213. height: math.unit(20000, "feet")
  3214. }
  3215. ]
  3216. ))
  3217. characterMakers.push(() => makeCharacter(
  3218. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3219. {
  3220. front: {
  3221. height: math.unit(2, "meter"),
  3222. weight: math.unit(50, "kg"),
  3223. name: "Front",
  3224. image: {
  3225. source: "./media/characters/kalista/front.svg",
  3226. extra: 1947 / 1700,
  3227. bottom: 76.6 / 1412.98
  3228. }
  3229. },
  3230. back: {
  3231. height: math.unit(2, "meter"),
  3232. weight: math.unit(50, "kg"),
  3233. name: "Back",
  3234. image: {
  3235. source: "./media/characters/kalista/back.svg",
  3236. extra: 1366 / 1156,
  3237. bottom: 33.9 / 1362.78
  3238. }
  3239. }
  3240. },
  3241. [
  3242. {
  3243. name: "Uncomfortably Small",
  3244. height: math.unit(10, "feet")
  3245. },
  3246. {
  3247. name: "Small",
  3248. height: math.unit(30, "feet")
  3249. },
  3250. {
  3251. name: "Macro",
  3252. height: math.unit(100, "feet"),
  3253. default: true
  3254. },
  3255. {
  3256. name: "Macro+",
  3257. height: math.unit(2000, "feet")
  3258. },
  3259. {
  3260. name: "True Form",
  3261. height: math.unit(8924, "miles")
  3262. }
  3263. ]
  3264. ))
  3265. characterMakers.push(() => makeCharacter(
  3266. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3267. {
  3268. front: {
  3269. height: math.unit(2, "meter"),
  3270. weight: math.unit(120, "kg"),
  3271. name: "Front",
  3272. image: {
  3273. source: "./media/characters/ggv/front.svg"
  3274. }
  3275. },
  3276. side: {
  3277. height: math.unit(2, "meter"),
  3278. weight: math.unit(120, "kg"),
  3279. name: "Side",
  3280. image: {
  3281. source: "./media/characters/ggv/side.svg"
  3282. }
  3283. }
  3284. },
  3285. [
  3286. {
  3287. name: "Extremely Puny",
  3288. height: math.unit(9 + 5 / 12, "feet")
  3289. },
  3290. {
  3291. name: "Horribly Small",
  3292. height: math.unit(47.7, "miles"),
  3293. default: true
  3294. },
  3295. {
  3296. name: "Reasonably Sized",
  3297. height: math.unit(25000, "parsecs")
  3298. },
  3299. {
  3300. name: "Slightly Uncompressed",
  3301. height: math.unit(7.77e31, "parsecs")
  3302. },
  3303. {
  3304. name: "Omniversal",
  3305. height: math.unit(1e300, "meters")
  3306. },
  3307. ]
  3308. ))
  3309. characterMakers.push(() => makeCharacter(
  3310. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3311. {
  3312. front: {
  3313. height: math.unit(2, "meter"),
  3314. weight: math.unit(75, "lb"),
  3315. name: "Front",
  3316. image: {
  3317. source: "./media/characters/napalm/front.svg"
  3318. }
  3319. },
  3320. back: {
  3321. height: math.unit(2, "meter"),
  3322. weight: math.unit(75, "lb"),
  3323. name: "Back",
  3324. image: {
  3325. source: "./media/characters/napalm/back.svg"
  3326. }
  3327. }
  3328. },
  3329. [
  3330. {
  3331. name: "Standard",
  3332. height: math.unit(55, "feet"),
  3333. default: true
  3334. }
  3335. ]
  3336. ))
  3337. characterMakers.push(() => makeCharacter(
  3338. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3339. {
  3340. front: {
  3341. height: math.unit(7 + 5 / 6, "feet"),
  3342. weight: math.unit(325, "lb"),
  3343. name: "Front",
  3344. image: {
  3345. source: "./media/characters/asana/front.svg",
  3346. extra: 1133 / 1060,
  3347. bottom: 15.2 / 1148.6
  3348. }
  3349. },
  3350. back: {
  3351. height: math.unit(7 + 5 / 6, "feet"),
  3352. weight: math.unit(325, "lb"),
  3353. name: "Back",
  3354. image: {
  3355. source: "./media/characters/asana/back.svg",
  3356. extra: 1114 / 1043,
  3357. bottom: 5 / 1120
  3358. }
  3359. },
  3360. dressedDark: {
  3361. height: math.unit(7 + 5 / 6, "feet"),
  3362. weight: math.unit(325, "lb"),
  3363. name: "Dressed (Dark)",
  3364. image: {
  3365. source: "./media/characters/asana/dressed-dark.svg",
  3366. extra: 1133 / 1060,
  3367. bottom: 15.2 / 1148.6
  3368. }
  3369. },
  3370. dressedLight: {
  3371. height: math.unit(7 + 5 / 6, "feet"),
  3372. weight: math.unit(325, "lb"),
  3373. name: "Dressed (Light)",
  3374. image: {
  3375. source: "./media/characters/asana/dressed-light.svg",
  3376. extra: 1133 / 1060,
  3377. bottom: 15.2 / 1148.6
  3378. }
  3379. },
  3380. },
  3381. [
  3382. {
  3383. name: "Standard",
  3384. height: math.unit(7 + 5 / 6, "feet"),
  3385. default: true
  3386. },
  3387. {
  3388. name: "Large",
  3389. height: math.unit(10, "meters")
  3390. },
  3391. {
  3392. name: "Macro",
  3393. height: math.unit(2500, "meters")
  3394. },
  3395. {
  3396. name: "Megamacro",
  3397. height: math.unit(5e6, "meters")
  3398. },
  3399. {
  3400. name: "Examacro",
  3401. height: math.unit(5e12, "lightyears")
  3402. },
  3403. {
  3404. name: "Max Size",
  3405. height: math.unit(1e31, "lightyears")
  3406. }
  3407. ]
  3408. ))
  3409. characterMakers.push(() => makeCharacter(
  3410. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3411. {
  3412. front: {
  3413. height: math.unit(2, "meter"),
  3414. weight: math.unit(60, "kg"),
  3415. name: "Front",
  3416. image: {
  3417. source: "./media/characters/ebony/front.svg",
  3418. bottom: 0.03,
  3419. extra: 1045 / 810 + 0.03
  3420. }
  3421. },
  3422. side: {
  3423. height: math.unit(2, "meter"),
  3424. weight: math.unit(60, "kg"),
  3425. name: "Side",
  3426. image: {
  3427. source: "./media/characters/ebony/side.svg",
  3428. bottom: 0.03,
  3429. extra: 1045 / 810 + 0.03
  3430. }
  3431. },
  3432. back: {
  3433. height: math.unit(2, "meter"),
  3434. weight: math.unit(60, "kg"),
  3435. name: "Back",
  3436. image: {
  3437. source: "./media/characters/ebony/back.svg",
  3438. bottom: 0.01,
  3439. extra: 1045 / 810 + 0.01
  3440. }
  3441. },
  3442. },
  3443. [
  3444. // TODO check why I did this lol
  3445. {
  3446. name: "Standard",
  3447. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3448. default: true
  3449. },
  3450. {
  3451. name: "Macro",
  3452. height: math.unit(200, "feet")
  3453. },
  3454. {
  3455. name: "Gigamacro",
  3456. height: math.unit(13000, "km")
  3457. }
  3458. ]
  3459. ))
  3460. characterMakers.push(() => makeCharacter(
  3461. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3462. {
  3463. front: {
  3464. height: math.unit(6, "feet"),
  3465. weight: math.unit(175, "lb"),
  3466. name: "Front",
  3467. image: {
  3468. source: "./media/characters/mountain/front.svg",
  3469. extra: 972 / 955,
  3470. bottom: 64 / 1036.6
  3471. }
  3472. },
  3473. back: {
  3474. height: math.unit(6, "feet"),
  3475. weight: math.unit(175, "lb"),
  3476. name: "Back",
  3477. image: {
  3478. source: "./media/characters/mountain/back.svg",
  3479. extra: 970 / 950,
  3480. bottom: 28.25 / 999
  3481. }
  3482. },
  3483. },
  3484. [
  3485. {
  3486. name: "Large",
  3487. height: math.unit(20, "meters")
  3488. },
  3489. {
  3490. name: "Macro",
  3491. height: math.unit(300, "meters")
  3492. },
  3493. {
  3494. name: "Gigamacro",
  3495. height: math.unit(10000, "km"),
  3496. default: true
  3497. },
  3498. {
  3499. name: "Examacro",
  3500. height: math.unit(10e9, "lightyears")
  3501. }
  3502. ]
  3503. ))
  3504. characterMakers.push(() => makeCharacter(
  3505. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3506. {
  3507. front: {
  3508. height: math.unit(8, "feet"),
  3509. weight: math.unit(500, "lb"),
  3510. name: "Front",
  3511. image: {
  3512. source: "./media/characters/rick/front.svg"
  3513. }
  3514. }
  3515. },
  3516. [
  3517. {
  3518. name: "Normal",
  3519. height: math.unit(8, "feet"),
  3520. default: true
  3521. },
  3522. {
  3523. name: "Macro",
  3524. height: math.unit(5, "km")
  3525. }
  3526. ]
  3527. ))
  3528. characterMakers.push(() => makeCharacter(
  3529. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3530. {
  3531. front: {
  3532. height: math.unit(8, "feet"),
  3533. weight: math.unit(120, "lb"),
  3534. name: "Front",
  3535. image: {
  3536. source: "./media/characters/ona/front.svg"
  3537. }
  3538. },
  3539. frontAlt: {
  3540. height: math.unit(8, "feet"),
  3541. weight: math.unit(120, "lb"),
  3542. name: "Front (Alt)",
  3543. image: {
  3544. source: "./media/characters/ona/front-alt.svg"
  3545. }
  3546. },
  3547. back: {
  3548. height: math.unit(8, "feet"),
  3549. weight: math.unit(120, "lb"),
  3550. name: "Back",
  3551. image: {
  3552. source: "./media/characters/ona/back.svg"
  3553. }
  3554. },
  3555. foot: {
  3556. height: math.unit(1.1, "feet"),
  3557. name: "Foot",
  3558. image: {
  3559. source: "./media/characters/ona/foot.svg"
  3560. }
  3561. }
  3562. },
  3563. [
  3564. {
  3565. name: "Megamacro",
  3566. height: math.unit(70, "km"),
  3567. default: true
  3568. },
  3569. {
  3570. name: "Gigamacro",
  3571. height: math.unit(681818, "miles")
  3572. },
  3573. {
  3574. name: "Examacro",
  3575. height: math.unit(3800000, "lightyears")
  3576. },
  3577. ]
  3578. ))
  3579. characterMakers.push(() => makeCharacter(
  3580. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3581. {
  3582. front: {
  3583. height: math.unit(12, "feet"),
  3584. weight: math.unit(3000, "lb"),
  3585. name: "Front",
  3586. image: {
  3587. source: "./media/characters/mech/front.svg",
  3588. extra: 2900 / 2770,
  3589. bottom: 110 / 3010
  3590. }
  3591. },
  3592. back: {
  3593. height: math.unit(12, "feet"),
  3594. weight: math.unit(3000, "lb"),
  3595. name: "Back",
  3596. image: {
  3597. source: "./media/characters/mech/back.svg",
  3598. extra: 3011 / 2890,
  3599. bottom: 94 / 3105
  3600. }
  3601. },
  3602. maw: {
  3603. height: math.unit(3.07, "feet"),
  3604. name: "Maw",
  3605. image: {
  3606. source: "./media/characters/mech/maw.svg"
  3607. }
  3608. },
  3609. head: {
  3610. height: math.unit(2.82, "feet"),
  3611. name: "Head",
  3612. image: {
  3613. source: "./media/characters/mech/head.svg"
  3614. }
  3615. },
  3616. dick: {
  3617. height: math.unit(1.43, "feet"),
  3618. name: "Dick",
  3619. image: {
  3620. source: "./media/characters/mech/dick.svg"
  3621. }
  3622. },
  3623. },
  3624. [
  3625. {
  3626. name: "Normal",
  3627. height: math.unit(12, "feet")
  3628. },
  3629. {
  3630. name: "Macro",
  3631. height: math.unit(300, "feet"),
  3632. default: true
  3633. },
  3634. {
  3635. name: "Macro+",
  3636. height: math.unit(1500, "feet")
  3637. },
  3638. ]
  3639. ))
  3640. characterMakers.push(() => makeCharacter(
  3641. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3642. {
  3643. front: {
  3644. height: math.unit(1.3, "meter"),
  3645. weight: math.unit(30, "kg"),
  3646. name: "Front",
  3647. image: {
  3648. source: "./media/characters/gregory/front.svg",
  3649. }
  3650. }
  3651. },
  3652. [
  3653. {
  3654. name: "Normal",
  3655. height: math.unit(1.3, "meter"),
  3656. default: true
  3657. },
  3658. {
  3659. name: "Macro",
  3660. height: math.unit(20, "meter")
  3661. }
  3662. ]
  3663. ))
  3664. characterMakers.push(() => makeCharacter(
  3665. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3666. {
  3667. front: {
  3668. height: math.unit(2.8, "meter"),
  3669. weight: math.unit(200, "kg"),
  3670. name: "Front",
  3671. image: {
  3672. source: "./media/characters/elory/front.svg",
  3673. }
  3674. }
  3675. },
  3676. [
  3677. {
  3678. name: "Normal",
  3679. height: math.unit(2.8, "meter"),
  3680. default: true
  3681. },
  3682. {
  3683. name: "Macro",
  3684. height: math.unit(38, "meter")
  3685. }
  3686. ]
  3687. ))
  3688. characterMakers.push(() => makeCharacter(
  3689. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3690. {
  3691. front: {
  3692. height: math.unit(470, "feet"),
  3693. weight: math.unit(924, "tons"),
  3694. name: "Front",
  3695. image: {
  3696. source: "./media/characters/angelpatamon/front.svg",
  3697. }
  3698. }
  3699. },
  3700. [
  3701. {
  3702. name: "Normal",
  3703. height: math.unit(470, "feet"),
  3704. default: true
  3705. },
  3706. {
  3707. name: "Deity Size I",
  3708. height: math.unit(28651.2, "km")
  3709. },
  3710. {
  3711. name: "Deity Size II",
  3712. height: math.unit(171907.2, "km")
  3713. }
  3714. ]
  3715. ))
  3716. characterMakers.push(() => makeCharacter(
  3717. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3718. {
  3719. side: {
  3720. height: math.unit(7.2, "meter"),
  3721. weight: math.unit(8.2, "tons"),
  3722. name: "Side",
  3723. image: {
  3724. source: "./media/characters/cryae/side.svg",
  3725. extra: 3500 / 1500
  3726. }
  3727. }
  3728. },
  3729. [
  3730. {
  3731. name: "Normal",
  3732. height: math.unit(7.2, "meter"),
  3733. default: true
  3734. }
  3735. ]
  3736. ))
  3737. characterMakers.push(() => makeCharacter(
  3738. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3739. {
  3740. front: {
  3741. height: math.unit(6, "feet"),
  3742. weight: math.unit(175, "lb"),
  3743. name: "Front",
  3744. image: {
  3745. source: "./media/characters/xera/front.svg",
  3746. extra: 2377 / 1972,
  3747. bottom: 75.5 / 2452
  3748. }
  3749. },
  3750. side: {
  3751. height: math.unit(6, "feet"),
  3752. weight: math.unit(175, "lb"),
  3753. name: "Side",
  3754. image: {
  3755. source: "./media/characters/xera/side.svg",
  3756. extra: 2345 / 2019,
  3757. bottom: 39.7 / 2384
  3758. }
  3759. },
  3760. back: {
  3761. height: math.unit(6, "feet"),
  3762. weight: math.unit(175, "lb"),
  3763. name: "Back",
  3764. image: {
  3765. source: "./media/characters/xera/back.svg",
  3766. extra: 2095 / 1984,
  3767. bottom: 67 / 2166
  3768. }
  3769. },
  3770. },
  3771. [
  3772. {
  3773. name: "Small",
  3774. height: math.unit(10, "feet")
  3775. },
  3776. {
  3777. name: "Macro",
  3778. height: math.unit(500, "meters"),
  3779. default: true
  3780. },
  3781. {
  3782. name: "Macro+",
  3783. height: math.unit(10, "km")
  3784. },
  3785. {
  3786. name: "Gigamacro",
  3787. height: math.unit(25000, "km")
  3788. },
  3789. {
  3790. name: "Teramacro",
  3791. height: math.unit(3e6, "km")
  3792. }
  3793. ]
  3794. ))
  3795. characterMakers.push(() => makeCharacter(
  3796. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3797. {
  3798. front: {
  3799. height: math.unit(6, "feet"),
  3800. weight: math.unit(175, "lb"),
  3801. name: "Front",
  3802. image: {
  3803. source: "./media/characters/nebula/front.svg",
  3804. extra: 2566 / 2362,
  3805. bottom: 81 / 2644
  3806. }
  3807. }
  3808. },
  3809. [
  3810. {
  3811. name: "Small",
  3812. height: math.unit(4.5, "meters")
  3813. },
  3814. {
  3815. name: "Macro",
  3816. height: math.unit(1500, "meters"),
  3817. default: true
  3818. },
  3819. {
  3820. name: "Megamacro",
  3821. height: math.unit(150, "km")
  3822. },
  3823. {
  3824. name: "Gigamacro",
  3825. height: math.unit(27000, "km")
  3826. }
  3827. ]
  3828. ))
  3829. characterMakers.push(() => makeCharacter(
  3830. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3831. {
  3832. front: {
  3833. height: math.unit(6, "feet"),
  3834. weight: math.unit(225, "lb"),
  3835. name: "Front",
  3836. image: {
  3837. source: "./media/characters/abysgar/front.svg"
  3838. }
  3839. }
  3840. },
  3841. [
  3842. {
  3843. name: "Small",
  3844. height: math.unit(4.5, "meters")
  3845. },
  3846. {
  3847. name: "Macro",
  3848. height: math.unit(1250, "meters"),
  3849. default: true
  3850. },
  3851. {
  3852. name: "Megamacro",
  3853. height: math.unit(125, "km")
  3854. },
  3855. {
  3856. name: "Gigamacro",
  3857. height: math.unit(26000, "km")
  3858. }
  3859. ]
  3860. ))
  3861. characterMakers.push(() => makeCharacter(
  3862. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3863. {
  3864. front: {
  3865. height: math.unit(6, "feet"),
  3866. weight: math.unit(180, "lb"),
  3867. name: "Front",
  3868. image: {
  3869. source: "./media/characters/yakuz/front.svg"
  3870. }
  3871. }
  3872. },
  3873. [
  3874. {
  3875. name: "Small",
  3876. height: math.unit(5, "meters")
  3877. },
  3878. {
  3879. name: "Macro",
  3880. height: math.unit(1500, "meters"),
  3881. default: true
  3882. },
  3883. {
  3884. name: "Megamacro",
  3885. height: math.unit(200, "km")
  3886. },
  3887. {
  3888. name: "Gigamacro",
  3889. height: math.unit(100000, "km")
  3890. }
  3891. ]
  3892. ))
  3893. characterMakers.push(() => makeCharacter(
  3894. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3895. {
  3896. front: {
  3897. height: math.unit(6, "feet"),
  3898. weight: math.unit(175, "lb"),
  3899. name: "Front",
  3900. image: {
  3901. source: "./media/characters/mirova/front.svg",
  3902. extra: 3334 / 3071,
  3903. bottom: 42 / 3375.6
  3904. }
  3905. }
  3906. },
  3907. [
  3908. {
  3909. name: "Small",
  3910. height: math.unit(5, "meters")
  3911. },
  3912. {
  3913. name: "Macro",
  3914. height: math.unit(900, "meters"),
  3915. default: true
  3916. },
  3917. {
  3918. name: "Megamacro",
  3919. height: math.unit(135, "km")
  3920. },
  3921. {
  3922. name: "Gigamacro",
  3923. height: math.unit(20000, "km")
  3924. }
  3925. ]
  3926. ))
  3927. characterMakers.push(() => makeCharacter(
  3928. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3929. {
  3930. side: {
  3931. height: math.unit(28.35, "feet"),
  3932. weight: math.unit(99.75, "tons"),
  3933. name: "Side",
  3934. image: {
  3935. source: "./media/characters/asana-mech/side.svg",
  3936. extra: 923 / 699,
  3937. bottom: 50 / 975
  3938. }
  3939. },
  3940. chaingun: {
  3941. height: math.unit(7, "feet"),
  3942. weight: math.unit(2400, "lb"),
  3943. name: "Chaingun",
  3944. image: {
  3945. source: "./media/characters/asana-mech/chaingun.svg"
  3946. }
  3947. },
  3948. laser: {
  3949. height: math.unit(7.12, "feet"),
  3950. weight: math.unit(2000, "lb"),
  3951. name: "Laser",
  3952. image: {
  3953. source: "./media/characters/asana-mech/laser.svg"
  3954. }
  3955. },
  3956. },
  3957. [
  3958. {
  3959. name: "Normal",
  3960. height: math.unit(28.35, "feet"),
  3961. default: true
  3962. },
  3963. {
  3964. name: "Macro",
  3965. height: math.unit(2500, "feet")
  3966. },
  3967. {
  3968. name: "Megamacro",
  3969. height: math.unit(25, "miles")
  3970. },
  3971. {
  3972. name: "Examacro",
  3973. height: math.unit(6e8, "lightyears")
  3974. },
  3975. ]
  3976. ))
  3977. characterMakers.push(() => makeCharacter(
  3978. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3979. {
  3980. front: {
  3981. height: math.unit(5, "meters"),
  3982. weight: math.unit(1000, "kg"),
  3983. name: "Front",
  3984. image: {
  3985. source: "./media/characters/asche/front.svg",
  3986. extra: 1258 / 1190,
  3987. bottom: 47 / 1305
  3988. }
  3989. },
  3990. frontUnderwear: {
  3991. height: math.unit(5, "meters"),
  3992. weight: math.unit(1000, "kg"),
  3993. name: "Front (Underwear)",
  3994. image: {
  3995. source: "./media/characters/asche/front-underwear.svg",
  3996. extra: 1258 / 1190,
  3997. bottom: 47 / 1305
  3998. }
  3999. },
  4000. frontDressed: {
  4001. height: math.unit(5, "meters"),
  4002. weight: math.unit(1000, "kg"),
  4003. name: "Front (Dressed)",
  4004. image: {
  4005. source: "./media/characters/asche/front-dressed.svg",
  4006. extra: 1258 / 1190,
  4007. bottom: 47 / 1305
  4008. }
  4009. },
  4010. frontArmor: {
  4011. height: math.unit(5, "meters"),
  4012. weight: math.unit(1000, "kg"),
  4013. name: "Front (Armored)",
  4014. image: {
  4015. source: "./media/characters/asche/front-armored.svg",
  4016. extra: 1374 / 1308,
  4017. bottom: 23 / 1397
  4018. }
  4019. },
  4020. mp724: {
  4021. height: math.unit(0.96, "meters"),
  4022. weight: math.unit(38, "kg"),
  4023. name: "H&K MP724",
  4024. image: {
  4025. source: "./media/characters/asche/h&k-mp724.svg"
  4026. }
  4027. },
  4028. side: {
  4029. height: math.unit(5, "meters"),
  4030. weight: math.unit(1000, "kg"),
  4031. name: "Side",
  4032. image: {
  4033. source: "./media/characters/asche/side.svg",
  4034. extra: 1717 / 1609,
  4035. bottom: 0.005
  4036. }
  4037. },
  4038. back: {
  4039. height: math.unit(5, "meters"),
  4040. weight: math.unit(1000, "kg"),
  4041. name: "Back",
  4042. image: {
  4043. source: "./media/characters/asche/back.svg",
  4044. extra: 1570 / 1501
  4045. }
  4046. },
  4047. },
  4048. [
  4049. {
  4050. name: "DEFCON 5",
  4051. height: math.unit(5, "meters")
  4052. },
  4053. {
  4054. name: "DEFCON 4",
  4055. height: math.unit(500, "meters"),
  4056. default: true
  4057. },
  4058. {
  4059. name: "DEFCON 3",
  4060. height: math.unit(5, "km")
  4061. },
  4062. {
  4063. name: "DEFCON 2",
  4064. height: math.unit(500, "km")
  4065. },
  4066. {
  4067. name: "DEFCON 1",
  4068. height: math.unit(500000, "km")
  4069. },
  4070. {
  4071. name: "DEFCON 0",
  4072. height: math.unit(3, "gigaparsecs")
  4073. },
  4074. ]
  4075. ))
  4076. characterMakers.push(() => makeCharacter(
  4077. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4078. {
  4079. front: {
  4080. height: math.unit(2, "meters"),
  4081. weight: math.unit(76, "kg"),
  4082. name: "Front",
  4083. image: {
  4084. source: "./media/characters/gale/front.svg"
  4085. }
  4086. },
  4087. frontAlt1: {
  4088. height: math.unit(2, "meters"),
  4089. weight: math.unit(76, "kg"),
  4090. name: "Front (Alt 1)",
  4091. image: {
  4092. source: "./media/characters/gale/front-alt-1.svg"
  4093. }
  4094. },
  4095. frontAlt2: {
  4096. height: math.unit(2, "meters"),
  4097. weight: math.unit(76, "kg"),
  4098. name: "Front (Alt 2)",
  4099. image: {
  4100. source: "./media/characters/gale/front-alt-2.svg"
  4101. }
  4102. },
  4103. },
  4104. [
  4105. {
  4106. name: "Normal",
  4107. height: math.unit(7, "feet")
  4108. },
  4109. {
  4110. name: "Macro",
  4111. height: math.unit(150, "feet"),
  4112. default: true
  4113. },
  4114. {
  4115. name: "Macro+",
  4116. height: math.unit(300, "feet")
  4117. },
  4118. ]
  4119. ))
  4120. characterMakers.push(() => makeCharacter(
  4121. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4122. {
  4123. front: {
  4124. height: math.unit(2, "meters"),
  4125. weight: math.unit(76, "kg"),
  4126. name: "Front",
  4127. image: {
  4128. source: "./media/characters/draylen/front.svg"
  4129. }
  4130. }
  4131. },
  4132. [
  4133. {
  4134. name: "Macro",
  4135. height: math.unit(150, "feet"),
  4136. default: true
  4137. }
  4138. ]
  4139. ))
  4140. characterMakers.push(() => makeCharacter(
  4141. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4142. {
  4143. front: {
  4144. height: math.unit(7 + 9 / 12, "feet"),
  4145. weight: math.unit(379, "lbs"),
  4146. name: "Front",
  4147. image: {
  4148. source: "./media/characters/chez/front.svg"
  4149. }
  4150. },
  4151. side: {
  4152. height: math.unit(7 + 9 / 12, "feet"),
  4153. weight: math.unit(379, "lbs"),
  4154. name: "Side",
  4155. image: {
  4156. source: "./media/characters/chez/side.svg"
  4157. }
  4158. }
  4159. },
  4160. [
  4161. {
  4162. name: "Normal",
  4163. height: math.unit(7 + 9 / 12, "feet"),
  4164. default: true
  4165. },
  4166. {
  4167. name: "God King",
  4168. height: math.unit(9750000, "meters")
  4169. }
  4170. ]
  4171. ))
  4172. characterMakers.push(() => makeCharacter(
  4173. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4174. {
  4175. front: {
  4176. height: math.unit(6, "feet"),
  4177. weight: math.unit(275, "lbs"),
  4178. name: "Front",
  4179. image: {
  4180. source: "./media/characters/kaylum/front.svg",
  4181. bottom: 0.01,
  4182. extra: 1166 / 1031
  4183. }
  4184. },
  4185. frontWingless: {
  4186. height: math.unit(6, "feet"),
  4187. weight: math.unit(275, "lbs"),
  4188. name: "Front (Wingless)",
  4189. image: {
  4190. source: "./media/characters/kaylum/front-wingless.svg",
  4191. bottom: 0.01,
  4192. extra: 1117 / 1031
  4193. }
  4194. }
  4195. },
  4196. [
  4197. {
  4198. name: "Normal",
  4199. height: math.unit(3.05, "meters")
  4200. },
  4201. {
  4202. name: "Master",
  4203. height: math.unit(5.5, "meters")
  4204. },
  4205. {
  4206. name: "Rampage",
  4207. height: math.unit(19, "meters")
  4208. },
  4209. {
  4210. name: "Macro Lite",
  4211. height: math.unit(37, "meters")
  4212. },
  4213. {
  4214. name: "Hyper Predator",
  4215. height: math.unit(61, "meters")
  4216. },
  4217. {
  4218. name: "Macro",
  4219. height: math.unit(138, "meters"),
  4220. default: true
  4221. }
  4222. ]
  4223. ))
  4224. characterMakers.push(() => makeCharacter(
  4225. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4226. {
  4227. front: {
  4228. height: math.unit(6, "feet"),
  4229. weight: math.unit(150, "lbs"),
  4230. name: "Front",
  4231. image: {
  4232. source: "./media/characters/geta/front.svg"
  4233. }
  4234. }
  4235. },
  4236. [
  4237. {
  4238. name: "Micro",
  4239. height: math.unit(3, "inches"),
  4240. default: true
  4241. },
  4242. {
  4243. name: "Normal",
  4244. height: math.unit(5 + 5 / 12, "feet")
  4245. }
  4246. ]
  4247. ))
  4248. characterMakers.push(() => makeCharacter(
  4249. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4250. {
  4251. front: {
  4252. height: math.unit(6, "feet"),
  4253. weight: math.unit(300, "lbs"),
  4254. name: "Front",
  4255. image: {
  4256. source: "./media/characters/tyrnn/front.svg"
  4257. }
  4258. }
  4259. },
  4260. [
  4261. {
  4262. name: "Main Height",
  4263. height: math.unit(355, "feet"),
  4264. default: true
  4265. },
  4266. {
  4267. name: "Fave. Height",
  4268. height: math.unit(2400, "feet")
  4269. }
  4270. ]
  4271. ))
  4272. characterMakers.push(() => makeCharacter(
  4273. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4274. {
  4275. front: {
  4276. height: math.unit(6, "feet"),
  4277. weight: math.unit(300, "lbs"),
  4278. name: "Front",
  4279. image: {
  4280. source: "./media/characters/appledectomy/front.svg"
  4281. }
  4282. }
  4283. },
  4284. [
  4285. {
  4286. name: "Macro",
  4287. height: math.unit(2500, "feet")
  4288. },
  4289. {
  4290. name: "Megamacro",
  4291. height: math.unit(50, "miles"),
  4292. default: true
  4293. },
  4294. {
  4295. name: "Gigamacro",
  4296. height: math.unit(5000, "miles")
  4297. },
  4298. {
  4299. name: "Teramacro",
  4300. height: math.unit(250000, "miles")
  4301. },
  4302. ]
  4303. ))
  4304. characterMakers.push(() => makeCharacter(
  4305. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4306. {
  4307. front: {
  4308. height: math.unit(6, "feet"),
  4309. weight: math.unit(200, "lbs"),
  4310. name: "Front",
  4311. image: {
  4312. source: "./media/characters/vulpes/front.svg",
  4313. extra: 573 / 543,
  4314. bottom: 0.033
  4315. }
  4316. },
  4317. side: {
  4318. height: math.unit(6, "feet"),
  4319. weight: math.unit(200, "lbs"),
  4320. name: "Side",
  4321. image: {
  4322. source: "./media/characters/vulpes/side.svg",
  4323. extra: 577 / 549,
  4324. bottom: 11 / 588
  4325. }
  4326. },
  4327. back: {
  4328. height: math.unit(6, "feet"),
  4329. weight: math.unit(200, "lbs"),
  4330. name: "Back",
  4331. image: {
  4332. source: "./media/characters/vulpes/back.svg",
  4333. extra: 573 / 549,
  4334. bottom: 20 / 593
  4335. }
  4336. },
  4337. feet: {
  4338. height: math.unit(1.276, "feet"),
  4339. name: "Feet",
  4340. image: {
  4341. source: "./media/characters/vulpes/feet.svg"
  4342. }
  4343. },
  4344. maw: {
  4345. height: math.unit(1.18, "feet"),
  4346. name: "Maw",
  4347. image: {
  4348. source: "./media/characters/vulpes/maw.svg"
  4349. }
  4350. },
  4351. },
  4352. [
  4353. {
  4354. name: "Micro",
  4355. height: math.unit(2, "inches")
  4356. },
  4357. {
  4358. name: "Normal",
  4359. height: math.unit(6.3, "feet")
  4360. },
  4361. {
  4362. name: "Macro",
  4363. height: math.unit(850, "feet")
  4364. },
  4365. {
  4366. name: "Megamacro",
  4367. height: math.unit(7500, "feet"),
  4368. default: true
  4369. },
  4370. {
  4371. name: "Gigamacro",
  4372. height: math.unit(570000, "miles")
  4373. }
  4374. ]
  4375. ))
  4376. characterMakers.push(() => makeCharacter(
  4377. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4378. {
  4379. front: {
  4380. height: math.unit(6, "feet"),
  4381. weight: math.unit(210, "lbs"),
  4382. name: "Front",
  4383. image: {
  4384. source: "./media/characters/rain-fallen/front.svg"
  4385. }
  4386. },
  4387. side: {
  4388. height: math.unit(6, "feet"),
  4389. weight: math.unit(210, "lbs"),
  4390. name: "Side",
  4391. image: {
  4392. source: "./media/characters/rain-fallen/side.svg"
  4393. }
  4394. },
  4395. back: {
  4396. height: math.unit(6, "feet"),
  4397. weight: math.unit(210, "lbs"),
  4398. name: "Back",
  4399. image: {
  4400. source: "./media/characters/rain-fallen/back.svg"
  4401. }
  4402. },
  4403. feral: {
  4404. height: math.unit(9, "feet"),
  4405. weight: math.unit(700, "lbs"),
  4406. name: "Feral",
  4407. image: {
  4408. source: "./media/characters/rain-fallen/feral.svg"
  4409. }
  4410. },
  4411. },
  4412. [
  4413. {
  4414. name: "Meddling with Mortals",
  4415. height: math.unit(8 + 8/12, "feet")
  4416. },
  4417. {
  4418. name: "Normal",
  4419. height: math.unit(5, "meter")
  4420. },
  4421. {
  4422. name: "Macro",
  4423. height: math.unit(150, "meter"),
  4424. default: true
  4425. },
  4426. {
  4427. name: "Megamacro",
  4428. height: math.unit(278e6, "meter")
  4429. },
  4430. {
  4431. name: "Gigamacro",
  4432. height: math.unit(2e9, "meter")
  4433. },
  4434. {
  4435. name: "Teramacro",
  4436. height: math.unit(8e12, "meter")
  4437. },
  4438. {
  4439. name: "Devourer",
  4440. height: math.unit(14, "zettameters")
  4441. },
  4442. {
  4443. name: "Scarlet King",
  4444. height: math.unit(18, "yottameters")
  4445. },
  4446. {
  4447. name: "Void",
  4448. height: math.unit(1e88, "yottameters")
  4449. }
  4450. ]
  4451. ))
  4452. characterMakers.push(() => makeCharacter(
  4453. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4454. {
  4455. standing: {
  4456. height: math.unit(6, "feet"),
  4457. weight: math.unit(180, "lbs"),
  4458. name: "Standing",
  4459. image: {
  4460. source: "./media/characters/zaakira/standing.svg"
  4461. }
  4462. },
  4463. laying: {
  4464. height: math.unit(3, "feet"),
  4465. weight: math.unit(180, "lbs"),
  4466. name: "Laying",
  4467. image: {
  4468. source: "./media/characters/zaakira/laying.svg"
  4469. }
  4470. },
  4471. },
  4472. [
  4473. {
  4474. name: "Normal",
  4475. height: math.unit(12, "feet")
  4476. },
  4477. {
  4478. name: "Macro",
  4479. height: math.unit(279, "feet"),
  4480. default: true
  4481. }
  4482. ]
  4483. ))
  4484. characterMakers.push(() => makeCharacter(
  4485. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4486. {
  4487. femSfw: {
  4488. height: math.unit(8, "feet"),
  4489. weight: math.unit(350, "lb"),
  4490. name: "Fem",
  4491. image: {
  4492. source: "./media/characters/sigvald/fem-sfw.svg",
  4493. extra: 182 / 164,
  4494. bottom: 8.7 / 190.5
  4495. }
  4496. },
  4497. femNsfw: {
  4498. height: math.unit(8, "feet"),
  4499. weight: math.unit(350, "lb"),
  4500. name: "Fem (NSFW)",
  4501. image: {
  4502. source: "./media/characters/sigvald/fem-nsfw.svg",
  4503. extra: 182 / 164,
  4504. bottom: 8.7 / 190.5
  4505. }
  4506. },
  4507. maleNsfw: {
  4508. height: math.unit(8, "feet"),
  4509. weight: math.unit(350, "lb"),
  4510. name: "Male (NSFW)",
  4511. image: {
  4512. source: "./media/characters/sigvald/male-nsfw.svg",
  4513. extra: 182 / 164,
  4514. bottom: 8.7 / 190.5
  4515. }
  4516. },
  4517. hermNsfw: {
  4518. height: math.unit(8, "feet"),
  4519. weight: math.unit(350, "lb"),
  4520. name: "Herm (NSFW)",
  4521. image: {
  4522. source: "./media/characters/sigvald/herm-nsfw.svg",
  4523. extra: 182 / 164,
  4524. bottom: 8.7 / 190.5
  4525. }
  4526. },
  4527. dick: {
  4528. height: math.unit(2.36, "feet"),
  4529. name: "Dick",
  4530. image: {
  4531. source: "./media/characters/sigvald/dick.svg"
  4532. }
  4533. },
  4534. eye: {
  4535. height: math.unit(0.31, "feet"),
  4536. name: "Eye",
  4537. image: {
  4538. source: "./media/characters/sigvald/eye.svg"
  4539. }
  4540. },
  4541. mouth: {
  4542. height: math.unit(0.92, "feet"),
  4543. name: "Mouth",
  4544. image: {
  4545. source: "./media/characters/sigvald/mouth.svg"
  4546. }
  4547. },
  4548. paws: {
  4549. height: math.unit(2.2, "feet"),
  4550. name: "Paws",
  4551. image: {
  4552. source: "./media/characters/sigvald/paws.svg"
  4553. }
  4554. }
  4555. },
  4556. [
  4557. {
  4558. name: "Normal",
  4559. height: math.unit(8, "feet")
  4560. },
  4561. {
  4562. name: "Large",
  4563. height: math.unit(12, "feet")
  4564. },
  4565. {
  4566. name: "Larger",
  4567. height: math.unit(20, "feet")
  4568. },
  4569. {
  4570. name: "Macro",
  4571. height: math.unit(150, "feet")
  4572. },
  4573. {
  4574. name: "Macro+",
  4575. height: math.unit(200, "feet"),
  4576. default: true
  4577. },
  4578. ]
  4579. ))
  4580. characterMakers.push(() => makeCharacter(
  4581. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4582. {
  4583. side: {
  4584. height: math.unit(12, "feet"),
  4585. weight: math.unit(2000, "kg"),
  4586. name: "Side",
  4587. image: {
  4588. source: "./media/characters/scott/side.svg",
  4589. extra: 754 / 724,
  4590. bottom: 0.069
  4591. }
  4592. },
  4593. upright: {
  4594. height: math.unit(12, "feet"),
  4595. weight: math.unit(2000, "kg"),
  4596. name: "Upright",
  4597. image: {
  4598. source: "./media/characters/scott/upright.svg",
  4599. extra: 3881 / 3722,
  4600. bottom: 0.05
  4601. }
  4602. },
  4603. },
  4604. [
  4605. {
  4606. name: "Normal",
  4607. height: math.unit(12, "feet"),
  4608. default: true
  4609. },
  4610. ]
  4611. ))
  4612. characterMakers.push(() => makeCharacter(
  4613. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4614. {
  4615. side: {
  4616. height: math.unit(8, "meters"),
  4617. weight: math.unit(84755, "lbs"),
  4618. name: "Side",
  4619. image: {
  4620. source: "./media/characters/tobias/side.svg",
  4621. extra: 1474 / 1096,
  4622. bottom: 38.9 / 1513.1235
  4623. }
  4624. },
  4625. },
  4626. [
  4627. {
  4628. name: "Normal",
  4629. height: math.unit(8, "meters"),
  4630. default: true
  4631. },
  4632. ]
  4633. ))
  4634. characterMakers.push(() => makeCharacter(
  4635. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4636. {
  4637. front: {
  4638. height: math.unit(5.5, "feet"),
  4639. weight: math.unit(400, "lbs"),
  4640. name: "Front",
  4641. image: {
  4642. source: "./media/characters/kieran/front.svg",
  4643. extra: 2694 / 2364,
  4644. bottom: 217 / 2908
  4645. }
  4646. },
  4647. side: {
  4648. height: math.unit(5.5, "feet"),
  4649. weight: math.unit(400, "lbs"),
  4650. name: "Side",
  4651. image: {
  4652. source: "./media/characters/kieran/side.svg",
  4653. extra: 875 / 777,
  4654. bottom: 84.6 / 959
  4655. }
  4656. },
  4657. },
  4658. [
  4659. {
  4660. name: "Normal",
  4661. height: math.unit(5.5, "feet"),
  4662. default: true
  4663. },
  4664. ]
  4665. ))
  4666. characterMakers.push(() => makeCharacter(
  4667. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4668. {
  4669. side: {
  4670. height: math.unit(2, "meters"),
  4671. weight: math.unit(70, "kg"),
  4672. name: "Side",
  4673. image: {
  4674. source: "./media/characters/sanya/side.svg",
  4675. bottom: 0.02,
  4676. extra: 1.02
  4677. }
  4678. },
  4679. },
  4680. [
  4681. {
  4682. name: "Small",
  4683. height: math.unit(2, "meters")
  4684. },
  4685. {
  4686. name: "Normal",
  4687. height: math.unit(3, "meters")
  4688. },
  4689. {
  4690. name: "Macro",
  4691. height: math.unit(16, "meters"),
  4692. default: true
  4693. },
  4694. ]
  4695. ))
  4696. characterMakers.push(() => makeCharacter(
  4697. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4698. {
  4699. front: {
  4700. height: math.unit(2, "meters"),
  4701. weight: math.unit(120, "kg"),
  4702. name: "Front",
  4703. image: {
  4704. source: "./media/characters/miranda/front.svg",
  4705. extra: 195 / 185,
  4706. bottom: 10.9 / 206.5
  4707. }
  4708. },
  4709. back: {
  4710. height: math.unit(2, "meters"),
  4711. weight: math.unit(120, "kg"),
  4712. name: "Back",
  4713. image: {
  4714. source: "./media/characters/miranda/back.svg",
  4715. extra: 201 / 193,
  4716. bottom: 2.3 / 203.7
  4717. }
  4718. },
  4719. },
  4720. [
  4721. {
  4722. name: "Normal",
  4723. height: math.unit(10, "feet"),
  4724. default: true
  4725. }
  4726. ]
  4727. ))
  4728. characterMakers.push(() => makeCharacter(
  4729. { name: "James", species: ["deer"], tags: ["anthro"] },
  4730. {
  4731. side: {
  4732. height: math.unit(2, "meters"),
  4733. weight: math.unit(100, "kg"),
  4734. name: "Front",
  4735. image: {
  4736. source: "./media/characters/james/front.svg",
  4737. extra: 10 / 8.5
  4738. }
  4739. },
  4740. },
  4741. [
  4742. {
  4743. name: "Normal",
  4744. height: math.unit(8.5, "feet"),
  4745. default: true
  4746. }
  4747. ]
  4748. ))
  4749. characterMakers.push(() => makeCharacter(
  4750. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4751. {
  4752. side: {
  4753. height: math.unit(9.5, "feet"),
  4754. weight: math.unit(2500, "lbs"),
  4755. name: "Side",
  4756. image: {
  4757. source: "./media/characters/heather/side.svg"
  4758. }
  4759. },
  4760. },
  4761. [
  4762. {
  4763. name: "Normal",
  4764. height: math.unit(9.5, "feet"),
  4765. default: true
  4766. }
  4767. ]
  4768. ))
  4769. characterMakers.push(() => makeCharacter(
  4770. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4771. {
  4772. side: {
  4773. height: math.unit(6.5, "feet"),
  4774. weight: math.unit(400, "lbs"),
  4775. name: "Side",
  4776. image: {
  4777. source: "./media/characters/lukas/side.svg",
  4778. extra: 7.25 / 6.5
  4779. }
  4780. },
  4781. },
  4782. [
  4783. {
  4784. name: "Normal",
  4785. height: math.unit(6.5, "feet"),
  4786. default: true
  4787. }
  4788. ]
  4789. ))
  4790. characterMakers.push(() => makeCharacter(
  4791. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4792. {
  4793. side: {
  4794. height: math.unit(5, "feet"),
  4795. weight: math.unit(3000, "lbs"),
  4796. name: "Side",
  4797. image: {
  4798. source: "./media/characters/louise/side.svg"
  4799. }
  4800. },
  4801. },
  4802. [
  4803. {
  4804. name: "Normal",
  4805. height: math.unit(5, "feet"),
  4806. default: true
  4807. }
  4808. ]
  4809. ))
  4810. characterMakers.push(() => makeCharacter(
  4811. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4812. {
  4813. side: {
  4814. height: math.unit(6, "feet"),
  4815. weight: math.unit(150, "lbs"),
  4816. name: "Side",
  4817. image: {
  4818. source: "./media/characters/ramona/side.svg"
  4819. }
  4820. },
  4821. },
  4822. [
  4823. {
  4824. name: "Normal",
  4825. height: math.unit(5.3, "meters"),
  4826. default: true
  4827. },
  4828. {
  4829. name: "Macro",
  4830. height: math.unit(20, "stories")
  4831. },
  4832. {
  4833. name: "Macro+",
  4834. height: math.unit(50, "stories")
  4835. },
  4836. ]
  4837. ))
  4838. characterMakers.push(() => makeCharacter(
  4839. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4840. {
  4841. standing: {
  4842. height: math.unit(5.75, "feet"),
  4843. weight: math.unit(160, "lbs"),
  4844. name: "Standing",
  4845. image: {
  4846. source: "./media/characters/deerpuff/standing.svg",
  4847. extra: 682 / 624
  4848. }
  4849. },
  4850. sitting: {
  4851. height: math.unit(5.75 / 1.79, "feet"),
  4852. weight: math.unit(160, "lbs"),
  4853. name: "Sitting",
  4854. image: {
  4855. source: "./media/characters/deerpuff/sitting.svg",
  4856. bottom: 44 / 400,
  4857. extra: 1
  4858. }
  4859. },
  4860. taurLaying: {
  4861. height: math.unit(6, "feet"),
  4862. weight: math.unit(400, "lbs"),
  4863. name: "Taur (Laying)",
  4864. image: {
  4865. source: "./media/characters/deerpuff/taur-laying.svg"
  4866. }
  4867. },
  4868. },
  4869. [
  4870. {
  4871. name: "Puffball",
  4872. height: math.unit(6, "inches")
  4873. },
  4874. {
  4875. name: "Normalpuff",
  4876. height: math.unit(5.75, "feet")
  4877. },
  4878. {
  4879. name: "Macropuff",
  4880. height: math.unit(1500, "feet"),
  4881. default: true
  4882. },
  4883. {
  4884. name: "Megapuff",
  4885. height: math.unit(500, "miles")
  4886. },
  4887. {
  4888. name: "Gigapuff",
  4889. height: math.unit(250000, "miles")
  4890. },
  4891. {
  4892. name: "Omegapuff",
  4893. height: math.unit(1000, "lightyears")
  4894. },
  4895. ]
  4896. ))
  4897. characterMakers.push(() => makeCharacter(
  4898. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4899. {
  4900. stomping: {
  4901. height: math.unit(6, "feet"),
  4902. weight: math.unit(170, "lbs"),
  4903. name: "Stomping",
  4904. image: {
  4905. source: "./media/characters/vivian/stomping.svg"
  4906. }
  4907. },
  4908. sitting: {
  4909. height: math.unit(6 / 1.75, "feet"),
  4910. weight: math.unit(170, "lbs"),
  4911. name: "Sitting",
  4912. image: {
  4913. source: "./media/characters/vivian/sitting.svg",
  4914. bottom: 1 / 6.4,
  4915. extra: 1,
  4916. }
  4917. },
  4918. },
  4919. [
  4920. {
  4921. name: "Normal",
  4922. height: math.unit(7, "feet"),
  4923. default: true
  4924. },
  4925. {
  4926. name: "Macro",
  4927. height: math.unit(10, "stories")
  4928. },
  4929. {
  4930. name: "Macro+",
  4931. height: math.unit(30, "stories")
  4932. },
  4933. {
  4934. name: "Megamacro",
  4935. height: math.unit(10, "miles")
  4936. },
  4937. {
  4938. name: "Megamacro+",
  4939. height: math.unit(2750000, "meters")
  4940. },
  4941. ]
  4942. ))
  4943. characterMakers.push(() => makeCharacter(
  4944. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4945. {
  4946. front: {
  4947. height: math.unit(6, "feet"),
  4948. weight: math.unit(160, "lbs"),
  4949. name: "Front",
  4950. image: {
  4951. source: "./media/characters/prince/front.svg",
  4952. extra: 3400 / 3000
  4953. }
  4954. },
  4955. jumping: {
  4956. height: math.unit(6, "feet"),
  4957. weight: math.unit(160, "lbs"),
  4958. name: "Jumping",
  4959. image: {
  4960. source: "./media/characters/prince/jump.svg",
  4961. extra: 2555 / 2134
  4962. }
  4963. },
  4964. },
  4965. [
  4966. {
  4967. name: "Normal",
  4968. height: math.unit(7.75, "feet"),
  4969. default: true
  4970. },
  4971. {
  4972. name: "Not cute",
  4973. height: math.unit(17, "feet")
  4974. },
  4975. {
  4976. name: "I said NOT",
  4977. height: math.unit(91, "feet")
  4978. },
  4979. {
  4980. name: "Please stop",
  4981. height: math.unit(560, "feet")
  4982. },
  4983. {
  4984. name: "What have you done",
  4985. height: math.unit(2200, "feet")
  4986. },
  4987. {
  4988. name: "Deer God",
  4989. height: math.unit(3.6, "miles")
  4990. },
  4991. ]
  4992. ))
  4993. characterMakers.push(() => makeCharacter(
  4994. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4995. {
  4996. standing: {
  4997. height: math.unit(6, "feet"),
  4998. weight: math.unit(300, "lbs"),
  4999. name: "Standing",
  5000. image: {
  5001. source: "./media/characters/psymon/standing.svg",
  5002. extra: 1888 / 1810,
  5003. bottom: 0.05
  5004. }
  5005. },
  5006. slithering: {
  5007. height: math.unit(6, "feet"),
  5008. weight: math.unit(300, "lbs"),
  5009. name: "Slithering",
  5010. image: {
  5011. source: "./media/characters/psymon/slithering.svg",
  5012. extra: 1330 / 1224
  5013. }
  5014. },
  5015. slitheringAlt: {
  5016. height: math.unit(6, "feet"),
  5017. weight: math.unit(300, "lbs"),
  5018. name: "Slithering (Alt)",
  5019. image: {
  5020. source: "./media/characters/psymon/slithering-alt.svg",
  5021. extra: 1330 / 1224
  5022. }
  5023. },
  5024. },
  5025. [
  5026. {
  5027. name: "Normal",
  5028. height: math.unit(11.25, "feet"),
  5029. default: true
  5030. },
  5031. {
  5032. name: "Large",
  5033. height: math.unit(27, "feet")
  5034. },
  5035. {
  5036. name: "Giant",
  5037. height: math.unit(87, "feet")
  5038. },
  5039. {
  5040. name: "Macro",
  5041. height: math.unit(365, "feet")
  5042. },
  5043. {
  5044. name: "Megamacro",
  5045. height: math.unit(3, "miles")
  5046. },
  5047. {
  5048. name: "World Serpent",
  5049. height: math.unit(8000, "miles")
  5050. },
  5051. ]
  5052. ))
  5053. characterMakers.push(() => makeCharacter(
  5054. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5055. {
  5056. front: {
  5057. height: math.unit(6, "feet"),
  5058. weight: math.unit(180, "lbs"),
  5059. name: "Front",
  5060. image: {
  5061. source: "./media/characters/daimos/front.svg",
  5062. extra: 4160 / 3897,
  5063. bottom: 0.021
  5064. }
  5065. }
  5066. },
  5067. [
  5068. {
  5069. name: "Normal",
  5070. height: math.unit(8, "feet"),
  5071. default: true
  5072. },
  5073. {
  5074. name: "Big Dog",
  5075. height: math.unit(22, "feet")
  5076. },
  5077. {
  5078. name: "Macro",
  5079. height: math.unit(127, "feet")
  5080. },
  5081. {
  5082. name: "Megamacro",
  5083. height: math.unit(3600, "feet")
  5084. },
  5085. ]
  5086. ))
  5087. characterMakers.push(() => makeCharacter(
  5088. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5089. {
  5090. side: {
  5091. height: math.unit(6, "feet"),
  5092. weight: math.unit(180, "lbs"),
  5093. name: "Side",
  5094. image: {
  5095. source: "./media/characters/blake/side.svg",
  5096. extra: 1212 / 1120,
  5097. bottom: 0.05
  5098. }
  5099. },
  5100. crouched: {
  5101. height: math.unit(6 * 0.57, "feet"),
  5102. weight: math.unit(180, "lbs"),
  5103. name: "Crouched",
  5104. image: {
  5105. source: "./media/characters/blake/crouched.svg",
  5106. extra: 840 / 587,
  5107. bottom: 0.04
  5108. }
  5109. },
  5110. bent: {
  5111. height: math.unit(6 * 0.75, "feet"),
  5112. weight: math.unit(180, "lbs"),
  5113. name: "Bent",
  5114. image: {
  5115. source: "./media/characters/blake/bent.svg",
  5116. extra: 592 / 544,
  5117. bottom: 0.035
  5118. }
  5119. },
  5120. },
  5121. [
  5122. {
  5123. name: "Normal",
  5124. height: math.unit(8 + 1 / 6, "feet"),
  5125. default: true
  5126. },
  5127. {
  5128. name: "Big Backside",
  5129. height: math.unit(37, "feet")
  5130. },
  5131. {
  5132. name: "Subway Shredder",
  5133. height: math.unit(72, "feet")
  5134. },
  5135. {
  5136. name: "City Carver",
  5137. height: math.unit(1675, "feet")
  5138. },
  5139. {
  5140. name: "Tectonic Tweaker",
  5141. height: math.unit(2300, "miles")
  5142. },
  5143. ]
  5144. ))
  5145. characterMakers.push(() => makeCharacter(
  5146. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5147. {
  5148. front: {
  5149. height: math.unit(6, "feet"),
  5150. weight: math.unit(180, "lbs"),
  5151. name: "Front",
  5152. image: {
  5153. source: "./media/characters/guisetto/front.svg",
  5154. extra: 856 / 817,
  5155. bottom: 0.06
  5156. }
  5157. },
  5158. airborne: {
  5159. height: math.unit(6, "feet"),
  5160. weight: math.unit(180, "lbs"),
  5161. name: "Airborne",
  5162. image: {
  5163. source: "./media/characters/guisetto/airborne.svg",
  5164. extra: 584 / 525
  5165. }
  5166. },
  5167. },
  5168. [
  5169. {
  5170. name: "Normal",
  5171. height: math.unit(10 + 11 / 12, "feet"),
  5172. default: true
  5173. },
  5174. {
  5175. name: "Large",
  5176. height: math.unit(35, "feet")
  5177. },
  5178. {
  5179. name: "Macro",
  5180. height: math.unit(475, "feet")
  5181. },
  5182. ]
  5183. ))
  5184. characterMakers.push(() => makeCharacter(
  5185. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5186. {
  5187. front: {
  5188. height: math.unit(6, "feet"),
  5189. weight: math.unit(180, "lbs"),
  5190. name: "Front",
  5191. image: {
  5192. source: "./media/characters/luxor/front.svg",
  5193. extra: 2940 / 2152
  5194. }
  5195. },
  5196. back: {
  5197. height: math.unit(6, "feet"),
  5198. weight: math.unit(180, "lbs"),
  5199. name: "Back",
  5200. image: {
  5201. source: "./media/characters/luxor/back.svg",
  5202. extra: 1083 / 960
  5203. }
  5204. },
  5205. },
  5206. [
  5207. {
  5208. name: "Normal",
  5209. height: math.unit(5 + 5 / 6, "feet"),
  5210. default: true
  5211. },
  5212. {
  5213. name: "Lamp",
  5214. height: math.unit(50, "feet")
  5215. },
  5216. {
  5217. name: "Lämp",
  5218. height: math.unit(300, "feet")
  5219. },
  5220. {
  5221. name: "The sun is a lamp",
  5222. height: math.unit(250000, "miles")
  5223. },
  5224. ]
  5225. ))
  5226. characterMakers.push(() => makeCharacter(
  5227. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5228. {
  5229. front: {
  5230. height: math.unit(6, "feet"),
  5231. weight: math.unit(50, "lbs"),
  5232. name: "Front",
  5233. image: {
  5234. source: "./media/characters/huoyan/front.svg"
  5235. }
  5236. },
  5237. side: {
  5238. height: math.unit(6, "feet"),
  5239. weight: math.unit(180, "lbs"),
  5240. name: "Side",
  5241. image: {
  5242. source: "./media/characters/huoyan/side.svg"
  5243. }
  5244. },
  5245. },
  5246. [
  5247. {
  5248. name: "Chef",
  5249. height: math.unit(9, "feet")
  5250. },
  5251. {
  5252. name: "Normal",
  5253. height: math.unit(65, "feet"),
  5254. default: true
  5255. },
  5256. {
  5257. name: "Macro",
  5258. height: math.unit(780, "feet")
  5259. },
  5260. {
  5261. name: "Flaming Mountain",
  5262. height: math.unit(4.8, "miles")
  5263. },
  5264. {
  5265. name: "Celestial",
  5266. height: math.unit(765000, "miles")
  5267. },
  5268. ]
  5269. ))
  5270. characterMakers.push(() => makeCharacter(
  5271. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5272. {
  5273. front: {
  5274. height: math.unit(5 + 3 / 4, "feet"),
  5275. weight: math.unit(120, "lbs"),
  5276. name: "Front",
  5277. image: {
  5278. source: "./media/characters/tails/front.svg"
  5279. }
  5280. }
  5281. },
  5282. [
  5283. {
  5284. name: "Normal",
  5285. height: math.unit(5 + 3 / 4, "feet"),
  5286. default: true
  5287. }
  5288. ]
  5289. ))
  5290. characterMakers.push(() => makeCharacter(
  5291. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5292. {
  5293. front: {
  5294. height: math.unit(4, "feet"),
  5295. weight: math.unit(50, "lbs"),
  5296. name: "Front",
  5297. image: {
  5298. source: "./media/characters/rainy/front.svg"
  5299. }
  5300. }
  5301. },
  5302. [
  5303. {
  5304. name: "Macro",
  5305. height: math.unit(800, "feet"),
  5306. default: true
  5307. }
  5308. ]
  5309. ))
  5310. characterMakers.push(() => makeCharacter(
  5311. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5312. {
  5313. front: {
  5314. height: math.unit(6, "feet"),
  5315. weight: math.unit(150, "lbs"),
  5316. name: "Front",
  5317. image: {
  5318. source: "./media/characters/rainier/front.svg"
  5319. }
  5320. }
  5321. },
  5322. [
  5323. {
  5324. name: "Micro",
  5325. height: math.unit(2, "mm"),
  5326. default: true
  5327. }
  5328. ]
  5329. ))
  5330. characterMakers.push(() => makeCharacter(
  5331. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5332. {
  5333. front: {
  5334. height: math.unit(6, "feet"),
  5335. weight: math.unit(180, "lbs"),
  5336. name: "Front",
  5337. image: {
  5338. source: "./media/characters/andy/front.svg"
  5339. }
  5340. }
  5341. },
  5342. [
  5343. {
  5344. name: "Normal",
  5345. height: math.unit(8, "feet"),
  5346. default: true
  5347. },
  5348. {
  5349. name: "Macro",
  5350. height: math.unit(1000, "feet")
  5351. },
  5352. {
  5353. name: "Megamacro",
  5354. height: math.unit(5, "miles")
  5355. },
  5356. {
  5357. name: "Gigamacro",
  5358. height: math.unit(5000, "miles")
  5359. },
  5360. ]
  5361. ))
  5362. characterMakers.push(() => makeCharacter(
  5363. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5364. {
  5365. front: {
  5366. height: math.unit(6, "feet"),
  5367. weight: math.unit(210, "lbs"),
  5368. name: "Front",
  5369. image: {
  5370. source: "./media/characters/cimmaron/front-sfw.svg",
  5371. extra: 701 / 676,
  5372. bottom: 0.046
  5373. }
  5374. },
  5375. back: {
  5376. height: math.unit(6, "feet"),
  5377. weight: math.unit(210, "lbs"),
  5378. name: "Back",
  5379. image: {
  5380. source: "./media/characters/cimmaron/back-sfw.svg",
  5381. extra: 701 / 676,
  5382. bottom: 0.046
  5383. }
  5384. },
  5385. frontNsfw: {
  5386. height: math.unit(6, "feet"),
  5387. weight: math.unit(210, "lbs"),
  5388. name: "Front (NSFW)",
  5389. image: {
  5390. source: "./media/characters/cimmaron/front-nsfw.svg",
  5391. extra: 701 / 676,
  5392. bottom: 0.046
  5393. }
  5394. },
  5395. backNsfw: {
  5396. height: math.unit(6, "feet"),
  5397. weight: math.unit(210, "lbs"),
  5398. name: "Back (NSFW)",
  5399. image: {
  5400. source: "./media/characters/cimmaron/back-nsfw.svg",
  5401. extra: 701 / 676,
  5402. bottom: 0.046
  5403. }
  5404. },
  5405. dick: {
  5406. height: math.unit(1.714, "feet"),
  5407. name: "Dick",
  5408. image: {
  5409. source: "./media/characters/cimmaron/dick.svg"
  5410. }
  5411. },
  5412. },
  5413. [
  5414. {
  5415. name: "Normal",
  5416. height: math.unit(6, "feet"),
  5417. default: true
  5418. },
  5419. {
  5420. name: "Macro Mayor",
  5421. height: math.unit(350, "meters")
  5422. },
  5423. ]
  5424. ))
  5425. characterMakers.push(() => makeCharacter(
  5426. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5427. {
  5428. front: {
  5429. height: math.unit(6, "feet"),
  5430. weight: math.unit(200, "lbs"),
  5431. name: "Front",
  5432. image: {
  5433. source: "./media/characters/akari/front.svg",
  5434. extra: 962 / 901,
  5435. bottom: 0.04
  5436. }
  5437. }
  5438. },
  5439. [
  5440. {
  5441. name: "Micro",
  5442. height: math.unit(5, "inches"),
  5443. default: true
  5444. },
  5445. {
  5446. name: "Normal",
  5447. height: math.unit(7, "feet")
  5448. },
  5449. ]
  5450. ))
  5451. characterMakers.push(() => makeCharacter(
  5452. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5453. {
  5454. front: {
  5455. height: math.unit(6, "feet"),
  5456. weight: math.unit(140, "lbs"),
  5457. name: "Front",
  5458. image: {
  5459. source: "./media/characters/cynosura/front.svg",
  5460. extra: 896 / 847
  5461. }
  5462. },
  5463. back: {
  5464. height: math.unit(6, "feet"),
  5465. weight: math.unit(140, "lbs"),
  5466. name: "Back",
  5467. image: {
  5468. source: "./media/characters/cynosura/back.svg",
  5469. extra: 1365 / 1250
  5470. }
  5471. },
  5472. },
  5473. [
  5474. {
  5475. name: "Micro",
  5476. height: math.unit(4, "inches")
  5477. },
  5478. {
  5479. name: "Normal",
  5480. height: math.unit(5.75, "feet"),
  5481. default: true
  5482. },
  5483. {
  5484. name: "Tall",
  5485. height: math.unit(10, "feet")
  5486. },
  5487. {
  5488. name: "Big",
  5489. height: math.unit(20, "feet")
  5490. },
  5491. {
  5492. name: "Macro",
  5493. height: math.unit(50, "feet")
  5494. },
  5495. ]
  5496. ))
  5497. characterMakers.push(() => makeCharacter(
  5498. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5499. {
  5500. front: {
  5501. height: math.unit(6, "feet"),
  5502. weight: math.unit(170, "lbs"),
  5503. name: "Front",
  5504. image: {
  5505. source: "./media/characters/gin/front.svg",
  5506. extra: 1.053,
  5507. bottom: 0.025
  5508. }
  5509. },
  5510. foot: {
  5511. height: math.unit(6 / 4.25, "feet"),
  5512. name: "Foot",
  5513. image: {
  5514. source: "./media/characters/gin/foot.svg"
  5515. }
  5516. },
  5517. sole: {
  5518. height: math.unit(6 / 4.40, "feet"),
  5519. name: "Sole",
  5520. image: {
  5521. source: "./media/characters/gin/sole.svg"
  5522. }
  5523. },
  5524. },
  5525. [
  5526. {
  5527. name: "Normal",
  5528. height: math.unit(13 + 2 / 12, "feet")
  5529. },
  5530. {
  5531. name: "Macro",
  5532. height: math.unit(1500, "feet")
  5533. },
  5534. {
  5535. name: "Megamacro",
  5536. height: math.unit(200, "miles"),
  5537. default: true
  5538. },
  5539. {
  5540. name: "Gigamacro",
  5541. height: math.unit(500, "megameters")
  5542. },
  5543. {
  5544. name: "Teramacro",
  5545. height: math.unit(15, "lightyears")
  5546. }
  5547. ]
  5548. ))
  5549. characterMakers.push(() => makeCharacter(
  5550. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5551. {
  5552. front: {
  5553. height: math.unit(6 + 1 / 6, "feet"),
  5554. weight: math.unit(178, "lbs"),
  5555. name: "Front",
  5556. image: {
  5557. source: "./media/characters/guy/front.svg"
  5558. }
  5559. }
  5560. },
  5561. [
  5562. {
  5563. name: "Normal",
  5564. height: math.unit(6 + 1 / 6, "feet"),
  5565. default: true
  5566. },
  5567. {
  5568. name: "Large",
  5569. height: math.unit(25 + 7 / 12, "feet")
  5570. },
  5571. {
  5572. name: "Macro",
  5573. height: math.unit(60 + 9 / 12, "feet")
  5574. },
  5575. {
  5576. name: "Macro+",
  5577. height: math.unit(246, "feet")
  5578. },
  5579. {
  5580. name: "Macro++",
  5581. height: math.unit(878, "feet")
  5582. }
  5583. ]
  5584. ))
  5585. characterMakers.push(() => makeCharacter(
  5586. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5587. {
  5588. front: {
  5589. height: math.unit(9, "feet"),
  5590. weight: math.unit(800, "lbs"),
  5591. name: "Front",
  5592. image: {
  5593. source: "./media/characters/tiberius/front.svg",
  5594. extra: 2295 / 2071
  5595. }
  5596. },
  5597. back: {
  5598. height: math.unit(9, "feet"),
  5599. weight: math.unit(800, "lbs"),
  5600. name: "Back",
  5601. image: {
  5602. source: "./media/characters/tiberius/back.svg",
  5603. extra: 2373 / 2160
  5604. }
  5605. },
  5606. },
  5607. [
  5608. {
  5609. name: "Normal",
  5610. height: math.unit(9, "feet"),
  5611. default: true
  5612. }
  5613. ]
  5614. ))
  5615. characterMakers.push(() => makeCharacter(
  5616. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5617. {
  5618. front: {
  5619. height: math.unit(6, "feet"),
  5620. weight: math.unit(600, "lbs"),
  5621. name: "Front",
  5622. image: {
  5623. source: "./media/characters/surgo/front.svg",
  5624. extra: 3591 / 2227
  5625. }
  5626. },
  5627. back: {
  5628. height: math.unit(6, "feet"),
  5629. weight: math.unit(600, "lbs"),
  5630. name: "Back",
  5631. image: {
  5632. source: "./media/characters/surgo/back.svg",
  5633. extra: 3557 / 2228
  5634. }
  5635. },
  5636. laying: {
  5637. height: math.unit(6 * 0.85, "feet"),
  5638. weight: math.unit(600, "lbs"),
  5639. name: "Laying",
  5640. image: {
  5641. source: "./media/characters/surgo/laying.svg"
  5642. }
  5643. },
  5644. },
  5645. [
  5646. {
  5647. name: "Normal",
  5648. height: math.unit(6, "feet"),
  5649. default: true
  5650. }
  5651. ]
  5652. ))
  5653. characterMakers.push(() => makeCharacter(
  5654. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5655. {
  5656. side: {
  5657. height: math.unit(6, "feet"),
  5658. weight: math.unit(150, "lbs"),
  5659. name: "Side",
  5660. image: {
  5661. source: "./media/characters/cibus/side.svg",
  5662. extra: 800 / 400
  5663. }
  5664. },
  5665. },
  5666. [
  5667. {
  5668. name: "Normal",
  5669. height: math.unit(6, "feet"),
  5670. default: true
  5671. }
  5672. ]
  5673. ))
  5674. characterMakers.push(() => makeCharacter(
  5675. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5676. {
  5677. front: {
  5678. height: math.unit(6, "feet"),
  5679. weight: math.unit(240, "lbs"),
  5680. name: "Front",
  5681. image: {
  5682. source: "./media/characters/nibbles/front.svg"
  5683. }
  5684. },
  5685. side: {
  5686. height: math.unit(6, "feet"),
  5687. weight: math.unit(240, "lbs"),
  5688. name: "Side",
  5689. image: {
  5690. source: "./media/characters/nibbles/side.svg"
  5691. }
  5692. },
  5693. },
  5694. [
  5695. {
  5696. name: "Normal",
  5697. height: math.unit(9, "feet"),
  5698. default: true
  5699. }
  5700. ]
  5701. ))
  5702. characterMakers.push(() => makeCharacter(
  5703. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5704. {
  5705. side: {
  5706. height: math.unit(5 + 1 / 6, "feet"),
  5707. weight: math.unit(130, "lbs"),
  5708. name: "Side",
  5709. image: {
  5710. source: "./media/characters/rikky/side.svg",
  5711. extra: 851 / 801
  5712. }
  5713. },
  5714. },
  5715. [
  5716. {
  5717. name: "Normal",
  5718. height: math.unit(5 + 1 / 6, "feet")
  5719. },
  5720. {
  5721. name: "Macro",
  5722. height: math.unit(152, "feet"),
  5723. default: true
  5724. },
  5725. {
  5726. name: "Megamacro",
  5727. height: math.unit(7, "miles")
  5728. }
  5729. ]
  5730. ))
  5731. characterMakers.push(() => makeCharacter(
  5732. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5733. {
  5734. side: {
  5735. height: math.unit(370, "cm"),
  5736. weight: math.unit(350, "lbs"),
  5737. name: "Side",
  5738. image: {
  5739. source: "./media/characters/malfressa/side.svg"
  5740. }
  5741. },
  5742. walking: {
  5743. height: math.unit(370, "cm"),
  5744. weight: math.unit(350, "lbs"),
  5745. name: "Walking",
  5746. image: {
  5747. source: "./media/characters/malfressa/walking.svg"
  5748. }
  5749. },
  5750. feral: {
  5751. height: math.unit(2500, "cm"),
  5752. weight: math.unit(100000, "lbs"),
  5753. name: "Feral",
  5754. image: {
  5755. source: "./media/characters/malfressa/feral.svg",
  5756. extra: 2108 / 837,
  5757. bottom: 0.02
  5758. }
  5759. },
  5760. },
  5761. [
  5762. {
  5763. name: "Normal",
  5764. height: math.unit(370, "cm")
  5765. },
  5766. {
  5767. name: "Macro",
  5768. height: math.unit(300, "meters"),
  5769. default: true
  5770. }
  5771. ]
  5772. ))
  5773. characterMakers.push(() => makeCharacter(
  5774. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5775. {
  5776. front: {
  5777. height: math.unit(6, "feet"),
  5778. weight: math.unit(60, "kg"),
  5779. name: "Front",
  5780. image: {
  5781. source: "./media/characters/jaro/front.svg"
  5782. }
  5783. },
  5784. back: {
  5785. height: math.unit(6, "feet"),
  5786. weight: math.unit(60, "kg"),
  5787. name: "Back",
  5788. image: {
  5789. source: "./media/characters/jaro/back.svg"
  5790. }
  5791. },
  5792. },
  5793. [
  5794. {
  5795. name: "Micro",
  5796. height: math.unit(7, "inches")
  5797. },
  5798. {
  5799. name: "Normal",
  5800. height: math.unit(5.5, "feet"),
  5801. default: true
  5802. },
  5803. {
  5804. name: "Minimacro",
  5805. height: math.unit(20, "feet")
  5806. },
  5807. {
  5808. name: "Macro",
  5809. height: math.unit(200, "meters")
  5810. }
  5811. ]
  5812. ))
  5813. characterMakers.push(() => makeCharacter(
  5814. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5815. {
  5816. front: {
  5817. height: math.unit(6, "feet"),
  5818. weight: math.unit(195, "lb"),
  5819. name: "Front",
  5820. image: {
  5821. source: "./media/characters/rogue/front.svg"
  5822. }
  5823. },
  5824. },
  5825. [
  5826. {
  5827. name: "Macro",
  5828. height: math.unit(90, "feet"),
  5829. default: true
  5830. },
  5831. ]
  5832. ))
  5833. characterMakers.push(() => makeCharacter(
  5834. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5835. {
  5836. front: {
  5837. height: math.unit(5 + 8 / 12, "feet"),
  5838. weight: math.unit(140, "lb"),
  5839. name: "Front",
  5840. image: {
  5841. source: "./media/characters/piper/front.svg",
  5842. extra: 3948/3655,
  5843. bottom: 0/3948
  5844. }
  5845. },
  5846. },
  5847. [
  5848. {
  5849. name: "Micro",
  5850. height: math.unit(2, "inches")
  5851. },
  5852. {
  5853. name: "Normal",
  5854. height: math.unit(5 + 8 / 12, "feet")
  5855. },
  5856. {
  5857. name: "Macro",
  5858. height: math.unit(250, "feet"),
  5859. default: true
  5860. },
  5861. {
  5862. name: "Megamacro",
  5863. height: math.unit(7, "miles")
  5864. },
  5865. ]
  5866. ))
  5867. characterMakers.push(() => makeCharacter(
  5868. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5869. {
  5870. front: {
  5871. height: math.unit(6, "feet"),
  5872. weight: math.unit(220, "lb"),
  5873. name: "Front",
  5874. image: {
  5875. source: "./media/characters/gemini/front.svg"
  5876. }
  5877. },
  5878. back: {
  5879. height: math.unit(6, "feet"),
  5880. weight: math.unit(220, "lb"),
  5881. name: "Back",
  5882. image: {
  5883. source: "./media/characters/gemini/back.svg"
  5884. }
  5885. },
  5886. kneeling: {
  5887. height: math.unit(6 / 1.5, "feet"),
  5888. weight: math.unit(220, "lb"),
  5889. name: "Kneeling",
  5890. image: {
  5891. source: "./media/characters/gemini/kneeling.svg",
  5892. bottom: 0.02
  5893. }
  5894. },
  5895. },
  5896. [
  5897. {
  5898. name: "Macro",
  5899. height: math.unit(300, "meters"),
  5900. default: true
  5901. },
  5902. {
  5903. name: "Megamacro",
  5904. height: math.unit(6900, "meters")
  5905. },
  5906. ]
  5907. ))
  5908. characterMakers.push(() => makeCharacter(
  5909. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5910. {
  5911. anthro: {
  5912. height: math.unit(2.35, "meters"),
  5913. weight: math.unit(73, "kg"),
  5914. name: "Anthro",
  5915. image: {
  5916. source: "./media/characters/alicia/anthro.svg",
  5917. extra: 2571 / 2385,
  5918. bottom: 75 / 2648
  5919. }
  5920. },
  5921. paw: {
  5922. height: math.unit(1.32, "feet"),
  5923. name: "Paw",
  5924. image: {
  5925. source: "./media/characters/alicia/paw.svg"
  5926. }
  5927. },
  5928. feral: {
  5929. height: math.unit(1.69, "meters"),
  5930. weight: math.unit(73, "kg"),
  5931. name: "Feral",
  5932. image: {
  5933. source: "./media/characters/alicia/feral.svg",
  5934. extra: 2123 / 1715,
  5935. bottom: 222 / 2349
  5936. }
  5937. },
  5938. },
  5939. [
  5940. {
  5941. name: "Normal",
  5942. height: math.unit(2.35, "meters")
  5943. },
  5944. {
  5945. name: "Macro",
  5946. height: math.unit(60, "meters"),
  5947. default: true
  5948. },
  5949. {
  5950. name: "Megamacro",
  5951. height: math.unit(10000, "kilometers")
  5952. },
  5953. ]
  5954. ))
  5955. characterMakers.push(() => makeCharacter(
  5956. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5957. {
  5958. front: {
  5959. height: math.unit(7, "feet"),
  5960. weight: math.unit(250, "lbs"),
  5961. name: "Front",
  5962. image: {
  5963. source: "./media/characters/archy/front.svg"
  5964. }
  5965. }
  5966. },
  5967. [
  5968. {
  5969. name: "Micro",
  5970. height: math.unit(1, "inch")
  5971. },
  5972. {
  5973. name: "Shorty",
  5974. height: math.unit(5, "feet")
  5975. },
  5976. {
  5977. name: "Normal",
  5978. height: math.unit(7, "feet")
  5979. },
  5980. {
  5981. name: "Macro",
  5982. height: math.unit(600, "meters"),
  5983. default: true
  5984. },
  5985. {
  5986. name: "Megamacro",
  5987. height: math.unit(1, "mile")
  5988. },
  5989. ]
  5990. ))
  5991. characterMakers.push(() => makeCharacter(
  5992. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5993. {
  5994. front: {
  5995. height: math.unit(1.65, "meters"),
  5996. weight: math.unit(74, "kg"),
  5997. name: "Front",
  5998. image: {
  5999. source: "./media/characters/berri/front.svg",
  6000. extra: 857 / 837,
  6001. bottom: 18 / 877
  6002. }
  6003. },
  6004. bum: {
  6005. height: math.unit(1.46, "feet"),
  6006. name: "Bum",
  6007. image: {
  6008. source: "./media/characters/berri/bum.svg"
  6009. }
  6010. },
  6011. mouth: {
  6012. height: math.unit(0.44, "feet"),
  6013. name: "Mouth",
  6014. image: {
  6015. source: "./media/characters/berri/mouth.svg"
  6016. }
  6017. },
  6018. paw: {
  6019. height: math.unit(0.826, "feet"),
  6020. name: "Paw",
  6021. image: {
  6022. source: "./media/characters/berri/paw.svg"
  6023. }
  6024. },
  6025. },
  6026. [
  6027. {
  6028. name: "Normal",
  6029. height: math.unit(1.65, "meters")
  6030. },
  6031. {
  6032. name: "Macro",
  6033. height: math.unit(60, "m"),
  6034. default: true
  6035. },
  6036. {
  6037. name: "Megamacro",
  6038. height: math.unit(9.213, "km")
  6039. },
  6040. {
  6041. name: "Planet Eater",
  6042. height: math.unit(489, "megameters")
  6043. },
  6044. {
  6045. name: "Teramacro",
  6046. height: math.unit(2471635000000, "meters")
  6047. },
  6048. {
  6049. name: "Examacro",
  6050. height: math.unit(8.0624e+26, "meters")
  6051. }
  6052. ]
  6053. ))
  6054. characterMakers.push(() => makeCharacter(
  6055. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6056. {
  6057. front: {
  6058. height: math.unit(1.72, "meters"),
  6059. weight: math.unit(68, "kg"),
  6060. name: "Front",
  6061. image: {
  6062. source: "./media/characters/lexi/front.svg"
  6063. }
  6064. }
  6065. },
  6066. [
  6067. {
  6068. name: "Very Smol",
  6069. height: math.unit(10, "mm")
  6070. },
  6071. {
  6072. name: "Micro",
  6073. height: math.unit(6.8, "cm"),
  6074. default: true
  6075. },
  6076. {
  6077. name: "Normal",
  6078. height: math.unit(1.72, "m")
  6079. }
  6080. ]
  6081. ))
  6082. characterMakers.push(() => makeCharacter(
  6083. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6084. {
  6085. front: {
  6086. height: math.unit(1.69, "meters"),
  6087. weight: math.unit(68, "kg"),
  6088. name: "Front",
  6089. image: {
  6090. source: "./media/characters/martin/front.svg",
  6091. extra: 596 / 581
  6092. }
  6093. }
  6094. },
  6095. [
  6096. {
  6097. name: "Micro",
  6098. height: math.unit(6.85, "cm"),
  6099. default: true
  6100. },
  6101. {
  6102. name: "Normal",
  6103. height: math.unit(1.69, "m")
  6104. }
  6105. ]
  6106. ))
  6107. characterMakers.push(() => makeCharacter(
  6108. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6109. {
  6110. front: {
  6111. height: math.unit(1.69, "meters"),
  6112. weight: math.unit(68, "kg"),
  6113. name: "Front",
  6114. image: {
  6115. source: "./media/characters/juno/front.svg"
  6116. }
  6117. }
  6118. },
  6119. [
  6120. {
  6121. name: "Micro",
  6122. height: math.unit(7, "cm")
  6123. },
  6124. {
  6125. name: "Normal",
  6126. height: math.unit(1.89, "m")
  6127. },
  6128. {
  6129. name: "Macro",
  6130. height: math.unit(353, "meters"),
  6131. default: true
  6132. }
  6133. ]
  6134. ))
  6135. characterMakers.push(() => makeCharacter(
  6136. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6137. {
  6138. front: {
  6139. height: math.unit(1.93, "meters"),
  6140. weight: math.unit(83, "kg"),
  6141. name: "Front",
  6142. image: {
  6143. source: "./media/characters/samantha/front.svg"
  6144. }
  6145. },
  6146. frontClothed: {
  6147. height: math.unit(1.93, "meters"),
  6148. weight: math.unit(83, "kg"),
  6149. name: "Front (Clothed)",
  6150. image: {
  6151. source: "./media/characters/samantha/front-clothed.svg"
  6152. }
  6153. },
  6154. back: {
  6155. height: math.unit(1.93, "meters"),
  6156. weight: math.unit(83, "kg"),
  6157. name: "Back",
  6158. image: {
  6159. source: "./media/characters/samantha/back.svg"
  6160. }
  6161. },
  6162. },
  6163. [
  6164. {
  6165. name: "Normal",
  6166. height: math.unit(1.93, "m")
  6167. },
  6168. {
  6169. name: "Macro",
  6170. height: math.unit(74, "meters"),
  6171. default: true
  6172. },
  6173. {
  6174. name: "Macro+",
  6175. height: math.unit(223, "meters"),
  6176. },
  6177. {
  6178. name: "Megamacro",
  6179. height: math.unit(8381, "meters"),
  6180. },
  6181. {
  6182. name: "Megamacro+",
  6183. height: math.unit(12000, "kilometers")
  6184. },
  6185. ]
  6186. ))
  6187. characterMakers.push(() => makeCharacter(
  6188. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6189. {
  6190. front: {
  6191. height: math.unit(1.92, "meters"),
  6192. weight: math.unit(80, "kg"),
  6193. name: "Front",
  6194. image: {
  6195. source: "./media/characters/dr-clay/front.svg"
  6196. }
  6197. },
  6198. frontClothed: {
  6199. height: math.unit(1.92, "meters"),
  6200. weight: math.unit(80, "kg"),
  6201. name: "Front (Clothed)",
  6202. image: {
  6203. source: "./media/characters/dr-clay/front-clothed.svg"
  6204. }
  6205. }
  6206. },
  6207. [
  6208. {
  6209. name: "Normal",
  6210. height: math.unit(1.92, "m")
  6211. },
  6212. {
  6213. name: "Macro",
  6214. height: math.unit(214, "meters"),
  6215. default: true
  6216. },
  6217. {
  6218. name: "Macro+",
  6219. height: math.unit(12.237, "meters"),
  6220. },
  6221. {
  6222. name: "Megamacro",
  6223. height: math.unit(557, "megameters"),
  6224. },
  6225. {
  6226. name: "Unimaginable",
  6227. height: math.unit(120e9, "lightyears")
  6228. },
  6229. ]
  6230. ))
  6231. characterMakers.push(() => makeCharacter(
  6232. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6233. {
  6234. front: {
  6235. height: math.unit(2, "meters"),
  6236. weight: math.unit(80, "kg"),
  6237. name: "Front",
  6238. image: {
  6239. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6240. }
  6241. }
  6242. },
  6243. [
  6244. {
  6245. name: "Teramacro",
  6246. height: math.unit(500000, "lightyears"),
  6247. default: true
  6248. },
  6249. ]
  6250. ))
  6251. characterMakers.push(() => makeCharacter(
  6252. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6253. {
  6254. front: {
  6255. height: math.unit(2, "meters"),
  6256. weight: math.unit(150, "kg"),
  6257. name: "Front",
  6258. image: {
  6259. source: "./media/characters/vemus/front.svg",
  6260. extra: 2384 / 2084,
  6261. bottom: 0.0123
  6262. }
  6263. }
  6264. },
  6265. [
  6266. {
  6267. name: "Normal",
  6268. height: math.unit(3.75, "meters"),
  6269. default: true
  6270. },
  6271. {
  6272. name: "Big",
  6273. height: math.unit(8, "meters")
  6274. },
  6275. {
  6276. name: "Macro",
  6277. height: math.unit(100, "meters")
  6278. },
  6279. {
  6280. name: "Macro+",
  6281. height: math.unit(1500, "meters")
  6282. },
  6283. {
  6284. name: "Stellar",
  6285. height: math.unit(14e8, "meters")
  6286. },
  6287. ]
  6288. ))
  6289. characterMakers.push(() => makeCharacter(
  6290. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6291. {
  6292. front: {
  6293. height: math.unit(2, "meters"),
  6294. weight: math.unit(70, "kg"),
  6295. name: "Front",
  6296. image: {
  6297. source: "./media/characters/beherit/front.svg",
  6298. extra: 1408 / 1242
  6299. }
  6300. }
  6301. },
  6302. [
  6303. {
  6304. name: "Normal",
  6305. height: math.unit(6, "feet")
  6306. },
  6307. {
  6308. name: "Lorg",
  6309. height: math.unit(25, "feet"),
  6310. default: true
  6311. },
  6312. {
  6313. name: "Lorger",
  6314. height: math.unit(75, "feet")
  6315. },
  6316. {
  6317. name: "Macro",
  6318. height: math.unit(200, "meters")
  6319. },
  6320. ]
  6321. ))
  6322. characterMakers.push(() => makeCharacter(
  6323. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6324. {
  6325. front: {
  6326. height: math.unit(2, "meters"),
  6327. weight: math.unit(150, "kg"),
  6328. name: "Front",
  6329. image: {
  6330. source: "./media/characters/everett/front.svg",
  6331. extra: 2038 / 1737,
  6332. bottom: 0.03
  6333. }
  6334. },
  6335. paw: {
  6336. height: math.unit(2 / 3.6, "meters"),
  6337. name: "Paw",
  6338. image: {
  6339. source: "./media/characters/everett/paw.svg"
  6340. }
  6341. },
  6342. },
  6343. [
  6344. {
  6345. name: "Normal",
  6346. height: math.unit(15, "feet"),
  6347. default: true
  6348. },
  6349. {
  6350. name: "Lorg",
  6351. height: math.unit(70, "feet"),
  6352. default: true
  6353. },
  6354. {
  6355. name: "Lorger",
  6356. height: math.unit(250, "feet")
  6357. },
  6358. {
  6359. name: "Macro",
  6360. height: math.unit(500, "meters")
  6361. },
  6362. ]
  6363. ))
  6364. characterMakers.push(() => makeCharacter(
  6365. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6366. {
  6367. front: {
  6368. height: math.unit(2, "meters"),
  6369. weight: math.unit(86, "kg"),
  6370. name: "Front",
  6371. image: {
  6372. source: "./media/characters/rose/front.svg",
  6373. extra: 350/335,
  6374. bottom: 10/360
  6375. }
  6376. },
  6377. frontAlt: {
  6378. height: math.unit(1.6, "meters"),
  6379. weight: math.unit(86, "kg"),
  6380. name: "Front (Alt)",
  6381. image: {
  6382. source: "./media/characters/rose/front-alt.svg",
  6383. extra: 299/283,
  6384. bottom: 3/302
  6385. }
  6386. },
  6387. plush: {
  6388. height: math.unit(2, "meters"),
  6389. weight: math.unit(86/3, "kg"),
  6390. name: "Plush",
  6391. image: {
  6392. source: "./media/characters/rose/plush.svg",
  6393. extra: 361/337,
  6394. bottom: 11/372
  6395. }
  6396. },
  6397. },
  6398. [
  6399. {
  6400. name: "Mini-Micro",
  6401. height: math.unit(1, "cm")
  6402. },
  6403. {
  6404. name: "Micro",
  6405. height: math.unit(3.5, "inches"),
  6406. default: true
  6407. },
  6408. {
  6409. name: "Normal",
  6410. height: math.unit(6 + 1 / 6, "feet")
  6411. },
  6412. {
  6413. name: "Mini-Macro",
  6414. height: math.unit(9 + 10 / 12, "feet")
  6415. },
  6416. ]
  6417. ))
  6418. characterMakers.push(() => makeCharacter(
  6419. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6420. {
  6421. front: {
  6422. height: math.unit(2, "meters"),
  6423. weight: math.unit(350, "lbs"),
  6424. name: "Front",
  6425. image: {
  6426. source: "./media/characters/regal/front.svg"
  6427. }
  6428. },
  6429. back: {
  6430. height: math.unit(2, "meters"),
  6431. weight: math.unit(350, "lbs"),
  6432. name: "Back",
  6433. image: {
  6434. source: "./media/characters/regal/back.svg"
  6435. }
  6436. },
  6437. },
  6438. [
  6439. {
  6440. name: "Macro",
  6441. height: math.unit(350, "feet"),
  6442. default: true
  6443. }
  6444. ]
  6445. ))
  6446. characterMakers.push(() => makeCharacter(
  6447. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6448. {
  6449. front: {
  6450. height: math.unit(4 + 11 / 12, "feet"),
  6451. weight: math.unit(100, "lbs"),
  6452. name: "Front",
  6453. image: {
  6454. source: "./media/characters/opal/front.svg"
  6455. }
  6456. },
  6457. frontAlt: {
  6458. height: math.unit(4 + 11 / 12, "feet"),
  6459. weight: math.unit(100, "lbs"),
  6460. name: "Front (Alt)",
  6461. image: {
  6462. source: "./media/characters/opal/front-alt.svg"
  6463. }
  6464. },
  6465. },
  6466. [
  6467. {
  6468. name: "Small",
  6469. height: math.unit(4 + 11 / 12, "feet")
  6470. },
  6471. {
  6472. name: "Normal",
  6473. height: math.unit(20, "feet"),
  6474. default: true
  6475. },
  6476. {
  6477. name: "Macro",
  6478. height: math.unit(120, "feet")
  6479. },
  6480. {
  6481. name: "Megamacro",
  6482. height: math.unit(80, "miles")
  6483. },
  6484. {
  6485. name: "True Size",
  6486. height: math.unit(100000, "lightyears")
  6487. },
  6488. ]
  6489. ))
  6490. characterMakers.push(() => makeCharacter(
  6491. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6492. {
  6493. front: {
  6494. height: math.unit(6, "feet"),
  6495. weight: math.unit(200, "lbs"),
  6496. name: "Front",
  6497. image: {
  6498. source: "./media/characters/vector-wuff/front.svg"
  6499. }
  6500. }
  6501. },
  6502. [
  6503. {
  6504. name: "Normal",
  6505. height: math.unit(2.8, "meters")
  6506. },
  6507. {
  6508. name: "Macro",
  6509. height: math.unit(450, "meters"),
  6510. default: true
  6511. },
  6512. {
  6513. name: "Megamacro",
  6514. height: math.unit(15, "kilometers")
  6515. }
  6516. ]
  6517. ))
  6518. characterMakers.push(() => makeCharacter(
  6519. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6520. {
  6521. front: {
  6522. height: math.unit(6, "feet"),
  6523. weight: math.unit(256, "lbs"),
  6524. name: "Front",
  6525. image: {
  6526. source: "./media/characters/dannik/front.svg"
  6527. }
  6528. }
  6529. },
  6530. [
  6531. {
  6532. name: "Macro",
  6533. height: math.unit(69.57, "meters"),
  6534. default: true
  6535. },
  6536. ]
  6537. ))
  6538. characterMakers.push(() => makeCharacter(
  6539. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6540. {
  6541. front: {
  6542. height: math.unit(6, "feet"),
  6543. weight: math.unit(120, "lbs"),
  6544. name: "Front",
  6545. image: {
  6546. source: "./media/characters/azura-saharah/front.svg"
  6547. }
  6548. },
  6549. back: {
  6550. height: math.unit(6, "feet"),
  6551. weight: math.unit(120, "lbs"),
  6552. name: "Back",
  6553. image: {
  6554. source: "./media/characters/azura-saharah/back.svg"
  6555. }
  6556. },
  6557. },
  6558. [
  6559. {
  6560. name: "Macro",
  6561. height: math.unit(100, "feet"),
  6562. default: true
  6563. },
  6564. ]
  6565. ))
  6566. characterMakers.push(() => makeCharacter(
  6567. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6568. {
  6569. side: {
  6570. height: math.unit(5 + 4 / 12, "feet"),
  6571. weight: math.unit(163, "lbs"),
  6572. name: "Side",
  6573. image: {
  6574. source: "./media/characters/kennedy/side.svg"
  6575. }
  6576. }
  6577. },
  6578. [
  6579. {
  6580. name: "Standard Doggo",
  6581. height: math.unit(5 + 4 / 12, "feet")
  6582. },
  6583. {
  6584. name: "Big Doggo",
  6585. height: math.unit(25 + 3 / 12, "feet"),
  6586. default: true
  6587. },
  6588. ]
  6589. ))
  6590. characterMakers.push(() => makeCharacter(
  6591. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6592. {
  6593. front: {
  6594. height: math.unit(6, "feet"),
  6595. weight: math.unit(90, "lbs"),
  6596. name: "Front",
  6597. image: {
  6598. source: "./media/characters/odi-lunar/front.svg"
  6599. }
  6600. }
  6601. },
  6602. [
  6603. {
  6604. name: "Micro",
  6605. height: math.unit(3, "inches"),
  6606. default: true
  6607. },
  6608. {
  6609. name: "Normal",
  6610. height: math.unit(5.5, "feet")
  6611. }
  6612. ]
  6613. ))
  6614. characterMakers.push(() => makeCharacter(
  6615. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6616. {
  6617. back: {
  6618. height: math.unit(6, "feet"),
  6619. weight: math.unit(220, "lbs"),
  6620. name: "Back",
  6621. image: {
  6622. source: "./media/characters/mandake/back.svg"
  6623. }
  6624. }
  6625. },
  6626. [
  6627. {
  6628. name: "Normal",
  6629. height: math.unit(7, "feet"),
  6630. default: true
  6631. },
  6632. {
  6633. name: "Macro",
  6634. height: math.unit(78, "feet")
  6635. },
  6636. {
  6637. name: "Macro+",
  6638. height: math.unit(300, "meters")
  6639. },
  6640. {
  6641. name: "Macro++",
  6642. height: math.unit(2400, "feet")
  6643. },
  6644. {
  6645. name: "Megamacro",
  6646. height: math.unit(5167, "meters")
  6647. },
  6648. {
  6649. name: "Gigamacro",
  6650. height: math.unit(41769, "miles")
  6651. },
  6652. ]
  6653. ))
  6654. characterMakers.push(() => makeCharacter(
  6655. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6656. {
  6657. front: {
  6658. height: math.unit(6, "feet"),
  6659. weight: math.unit(120, "lbs"),
  6660. name: "Front",
  6661. image: {
  6662. source: "./media/characters/yozey/front.svg"
  6663. }
  6664. },
  6665. frontAlt: {
  6666. height: math.unit(6, "feet"),
  6667. weight: math.unit(120, "lbs"),
  6668. name: "Front (Alt)",
  6669. image: {
  6670. source: "./media/characters/yozey/front-alt.svg"
  6671. }
  6672. },
  6673. side: {
  6674. height: math.unit(6, "feet"),
  6675. weight: math.unit(120, "lbs"),
  6676. name: "Side",
  6677. image: {
  6678. source: "./media/characters/yozey/side.svg"
  6679. }
  6680. },
  6681. },
  6682. [
  6683. {
  6684. name: "Micro",
  6685. height: math.unit(3, "inches"),
  6686. default: true
  6687. },
  6688. {
  6689. name: "Normal",
  6690. height: math.unit(6, "feet")
  6691. }
  6692. ]
  6693. ))
  6694. characterMakers.push(() => makeCharacter(
  6695. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6696. {
  6697. front: {
  6698. height: math.unit(6, "feet"),
  6699. weight: math.unit(103, "lbs"),
  6700. name: "Front",
  6701. image: {
  6702. source: "./media/characters/valeska-voss/front.svg"
  6703. }
  6704. }
  6705. },
  6706. [
  6707. {
  6708. name: "Mini-Sized Sub",
  6709. height: math.unit(3.1, "inches")
  6710. },
  6711. {
  6712. name: "Mid-Sized Sub",
  6713. height: math.unit(6.2, "inches")
  6714. },
  6715. {
  6716. name: "Full-Sized Sub",
  6717. height: math.unit(9.3, "inches")
  6718. },
  6719. {
  6720. name: "Normal",
  6721. height: math.unit(5 + 2 / 12, "foot"),
  6722. default: true
  6723. },
  6724. ]
  6725. ))
  6726. characterMakers.push(() => makeCharacter(
  6727. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6728. {
  6729. front: {
  6730. height: math.unit(6, "feet"),
  6731. weight: math.unit(160, "lbs"),
  6732. name: "Front",
  6733. image: {
  6734. source: "./media/characters/gene-zeta/front.svg",
  6735. extra: 3006 / 2826,
  6736. bottom: 182 / 3188
  6737. }
  6738. }
  6739. },
  6740. [
  6741. {
  6742. name: "Micro",
  6743. height: math.unit(6, "inches")
  6744. },
  6745. {
  6746. name: "Normal",
  6747. height: math.unit(5 + 11 / 12, "foot"),
  6748. default: true
  6749. },
  6750. {
  6751. name: "Macro",
  6752. height: math.unit(140, "feet")
  6753. },
  6754. {
  6755. name: "Supercharged",
  6756. height: math.unit(2500, "feet")
  6757. },
  6758. ]
  6759. ))
  6760. characterMakers.push(() => makeCharacter(
  6761. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6762. {
  6763. front: {
  6764. height: math.unit(6, "feet"),
  6765. weight: math.unit(350, "lbs"),
  6766. name: "Front",
  6767. image: {
  6768. source: "./media/characters/razinox/front.svg",
  6769. extra: 1686 / 1548,
  6770. bottom: 28.2 / 1868
  6771. }
  6772. },
  6773. back: {
  6774. height: math.unit(6, "feet"),
  6775. weight: math.unit(350, "lbs"),
  6776. name: "Back",
  6777. image: {
  6778. source: "./media/characters/razinox/back.svg",
  6779. extra: 1660 / 1590,
  6780. bottom: 15 / 1665
  6781. }
  6782. },
  6783. },
  6784. [
  6785. {
  6786. name: "Normal",
  6787. height: math.unit(10 + 8 / 12, "foot")
  6788. },
  6789. {
  6790. name: "Minimacro",
  6791. height: math.unit(15, "foot")
  6792. },
  6793. {
  6794. name: "Macro",
  6795. height: math.unit(60, "foot"),
  6796. default: true
  6797. },
  6798. {
  6799. name: "Megamacro",
  6800. height: math.unit(5, "miles")
  6801. },
  6802. {
  6803. name: "Gigamacro",
  6804. height: math.unit(6000, "miles")
  6805. },
  6806. ]
  6807. ))
  6808. characterMakers.push(() => makeCharacter(
  6809. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6810. {
  6811. front: {
  6812. height: math.unit(6, "feet"),
  6813. weight: math.unit(150, "lbs"),
  6814. name: "Front",
  6815. image: {
  6816. source: "./media/characters/cobalt/front.svg"
  6817. }
  6818. }
  6819. },
  6820. [
  6821. {
  6822. name: "Normal",
  6823. height: math.unit(8 + 1 / 12, "foot")
  6824. },
  6825. {
  6826. name: "Macro",
  6827. height: math.unit(111, "foot"),
  6828. default: true
  6829. },
  6830. {
  6831. name: "Supracosmic",
  6832. height: math.unit(1e42, "feet")
  6833. },
  6834. ]
  6835. ))
  6836. characterMakers.push(() => makeCharacter(
  6837. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6838. {
  6839. front: {
  6840. height: math.unit(6, "feet"),
  6841. weight: math.unit(140, "lbs"),
  6842. name: "Front",
  6843. image: {
  6844. source: "./media/characters/amanda/front.svg"
  6845. }
  6846. }
  6847. },
  6848. [
  6849. {
  6850. name: "Micro",
  6851. height: math.unit(5, "inches"),
  6852. default: true
  6853. },
  6854. ]
  6855. ))
  6856. characterMakers.push(() => makeCharacter(
  6857. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6858. {
  6859. front: {
  6860. height: math.unit(2.75, "meters"),
  6861. weight: math.unit(1200, "lb"),
  6862. name: "Front",
  6863. image: {
  6864. source: "./media/characters/teal/front.svg",
  6865. extra: 2463 / 2320,
  6866. bottom: 166 / 2629
  6867. }
  6868. },
  6869. back: {
  6870. height: math.unit(2.75, "meters"),
  6871. weight: math.unit(1200, "lb"),
  6872. name: "Back",
  6873. image: {
  6874. source: "./media/characters/teal/back.svg",
  6875. extra: 2580 / 2489,
  6876. bottom: 151 / 2731
  6877. }
  6878. },
  6879. sitting: {
  6880. height: math.unit(1.9, "meters"),
  6881. weight: math.unit(1200, "lb"),
  6882. name: "Sitting",
  6883. image: {
  6884. source: "./media/characters/teal/sitting.svg",
  6885. extra: 623 / 590,
  6886. bottom: 121 / 744
  6887. }
  6888. },
  6889. standing: {
  6890. height: math.unit(2.75, "meters"),
  6891. weight: math.unit(1200, "lb"),
  6892. name: "Standing",
  6893. image: {
  6894. source: "./media/characters/teal/standing.svg",
  6895. extra: 923 / 893,
  6896. bottom: 60 / 983
  6897. }
  6898. },
  6899. stretching: {
  6900. height: math.unit(3.65, "meters"),
  6901. weight: math.unit(1200, "lb"),
  6902. name: "Stretching",
  6903. image: {
  6904. source: "./media/characters/teal/stretching.svg",
  6905. extra: 1276 / 1244,
  6906. bottom: 0 / 1276
  6907. }
  6908. },
  6909. legged: {
  6910. height: math.unit(1.3, "meters"),
  6911. weight: math.unit(100, "lb"),
  6912. name: "Legged",
  6913. image: {
  6914. source: "./media/characters/teal/legged.svg",
  6915. extra: 462 / 437,
  6916. bottom: 24 / 486
  6917. }
  6918. },
  6919. naga: {
  6920. height: math.unit(5.4, "meters"),
  6921. weight: math.unit(4000, "lb"),
  6922. name: "Naga",
  6923. image: {
  6924. source: "./media/characters/teal/naga.svg",
  6925. extra: 1902 / 1858,
  6926. bottom: 0 / 1902
  6927. }
  6928. },
  6929. hand: {
  6930. height: math.unit(0.52, "meters"),
  6931. name: "Hand",
  6932. image: {
  6933. source: "./media/characters/teal/hand.svg"
  6934. }
  6935. },
  6936. maw: {
  6937. height: math.unit(0.43, "meters"),
  6938. name: "Maw",
  6939. image: {
  6940. source: "./media/characters/teal/maw.svg"
  6941. }
  6942. },
  6943. slit: {
  6944. height: math.unit(0.25, "meters"),
  6945. name: "Slit",
  6946. image: {
  6947. source: "./media/characters/teal/slit.svg"
  6948. }
  6949. },
  6950. },
  6951. [
  6952. {
  6953. name: "Normal",
  6954. height: math.unit(2.75, "meters"),
  6955. default: true
  6956. },
  6957. {
  6958. name: "Macro",
  6959. height: math.unit(300, "feet")
  6960. },
  6961. {
  6962. name: "Macro+",
  6963. height: math.unit(2000, "feet")
  6964. },
  6965. ]
  6966. ))
  6967. characterMakers.push(() => makeCharacter(
  6968. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6969. {
  6970. frontCat: {
  6971. height: math.unit(6, "feet"),
  6972. weight: math.unit(180, "lbs"),
  6973. name: "Front (Cat)",
  6974. image: {
  6975. source: "./media/characters/ravin-amulet/front-cat.svg"
  6976. }
  6977. },
  6978. frontCatAlt: {
  6979. height: math.unit(6, "feet"),
  6980. weight: math.unit(180, "lbs"),
  6981. name: "Front (Alt, Cat)",
  6982. image: {
  6983. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6984. }
  6985. },
  6986. frontWerewolf: {
  6987. height: math.unit(6 * 1.2, "feet"),
  6988. weight: math.unit(225, "lbs"),
  6989. name: "Front (Werewolf)",
  6990. image: {
  6991. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6992. }
  6993. },
  6994. backWerewolf: {
  6995. height: math.unit(6 * 1.2, "feet"),
  6996. weight: math.unit(225, "lbs"),
  6997. name: "Back (Werewolf)",
  6998. image: {
  6999. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7000. }
  7001. },
  7002. },
  7003. [
  7004. {
  7005. name: "Nano",
  7006. height: math.unit(1, "micrometer")
  7007. },
  7008. {
  7009. name: "Micro",
  7010. height: math.unit(1, "inch")
  7011. },
  7012. {
  7013. name: "Normal",
  7014. height: math.unit(6, "feet"),
  7015. default: true
  7016. },
  7017. {
  7018. name: "Macro",
  7019. height: math.unit(60, "feet")
  7020. }
  7021. ]
  7022. ))
  7023. characterMakers.push(() => makeCharacter(
  7024. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7025. {
  7026. front: {
  7027. height: math.unit(6, "feet"),
  7028. weight: math.unit(165, "lbs"),
  7029. name: "Front",
  7030. image: {
  7031. source: "./media/characters/fluoresce/front.svg"
  7032. }
  7033. }
  7034. },
  7035. [
  7036. {
  7037. name: "Micro",
  7038. height: math.unit(6, "cm")
  7039. },
  7040. {
  7041. name: "Normal",
  7042. height: math.unit(5 + 7 / 12, "feet"),
  7043. default: true
  7044. },
  7045. {
  7046. name: "Macro",
  7047. height: math.unit(56, "feet")
  7048. },
  7049. {
  7050. name: "Megamacro",
  7051. height: math.unit(1.9, "miles")
  7052. },
  7053. ]
  7054. ))
  7055. characterMakers.push(() => makeCharacter(
  7056. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7057. {
  7058. front: {
  7059. height: math.unit(9 + 6 / 12, "feet"),
  7060. weight: math.unit(523, "lbs"),
  7061. name: "Side",
  7062. image: {
  7063. source: "./media/characters/aurora/side.svg"
  7064. }
  7065. }
  7066. },
  7067. [
  7068. {
  7069. name: "Normal",
  7070. height: math.unit(9 + 6 / 12, "feet")
  7071. },
  7072. {
  7073. name: "Macro",
  7074. height: math.unit(96, "feet"),
  7075. default: true
  7076. },
  7077. {
  7078. name: "Macro+",
  7079. height: math.unit(243, "feet")
  7080. },
  7081. ]
  7082. ))
  7083. characterMakers.push(() => makeCharacter(
  7084. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7085. {
  7086. front: {
  7087. height: math.unit(194, "cm"),
  7088. weight: math.unit(90, "kg"),
  7089. name: "Front",
  7090. image: {
  7091. source: "./media/characters/ranek/front.svg"
  7092. }
  7093. },
  7094. side: {
  7095. height: math.unit(194, "cm"),
  7096. weight: math.unit(90, "kg"),
  7097. name: "Side",
  7098. image: {
  7099. source: "./media/characters/ranek/side.svg"
  7100. }
  7101. },
  7102. back: {
  7103. height: math.unit(194, "cm"),
  7104. weight: math.unit(90, "kg"),
  7105. name: "Back",
  7106. image: {
  7107. source: "./media/characters/ranek/back.svg"
  7108. }
  7109. },
  7110. feral: {
  7111. height: math.unit(30, "cm"),
  7112. weight: math.unit(1.6, "lbs"),
  7113. name: "Feral",
  7114. image: {
  7115. source: "./media/characters/ranek/feral.svg"
  7116. }
  7117. },
  7118. },
  7119. [
  7120. {
  7121. name: "Normal",
  7122. height: math.unit(194, "cm"),
  7123. default: true
  7124. },
  7125. {
  7126. name: "Macro",
  7127. height: math.unit(100, "meters")
  7128. },
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(5 + 6 / 12, "feet"),
  7136. weight: math.unit(153, "lbs"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/andrew-cooper/front.svg"
  7140. }
  7141. },
  7142. },
  7143. [
  7144. {
  7145. name: "Nano",
  7146. height: math.unit(1, "mm")
  7147. },
  7148. {
  7149. name: "Micro",
  7150. height: math.unit(2, "inches")
  7151. },
  7152. {
  7153. name: "Normal",
  7154. height: math.unit(5 + 6 / 12, "feet"),
  7155. default: true
  7156. }
  7157. ]
  7158. ))
  7159. characterMakers.push(() => makeCharacter(
  7160. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7161. {
  7162. front: {
  7163. height: math.unit(6, "feet"),
  7164. weight: math.unit(180, "lbs"),
  7165. name: "Front",
  7166. image: {
  7167. source: "./media/characters/akane-sato/front.svg",
  7168. extra: 1219 / 1140
  7169. }
  7170. },
  7171. back: {
  7172. height: math.unit(6, "feet"),
  7173. weight: math.unit(180, "lbs"),
  7174. name: "Back",
  7175. image: {
  7176. source: "./media/characters/akane-sato/back.svg",
  7177. extra: 1219 / 1170
  7178. }
  7179. },
  7180. },
  7181. [
  7182. {
  7183. name: "Normal",
  7184. height: math.unit(2.5, "meters")
  7185. },
  7186. {
  7187. name: "Macro",
  7188. height: math.unit(250, "meters"),
  7189. default: true
  7190. },
  7191. {
  7192. name: "Megamacro",
  7193. height: math.unit(25, "km")
  7194. },
  7195. ]
  7196. ))
  7197. characterMakers.push(() => makeCharacter(
  7198. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7199. {
  7200. front: {
  7201. height: math.unit(6, "feet"),
  7202. weight: math.unit(65, "kg"),
  7203. name: "Front",
  7204. image: {
  7205. source: "./media/characters/rook/front.svg",
  7206. extra: 960 / 950
  7207. }
  7208. }
  7209. },
  7210. [
  7211. {
  7212. name: "Normal",
  7213. height: math.unit(8.8, "feet")
  7214. },
  7215. {
  7216. name: "Macro",
  7217. height: math.unit(88, "feet"),
  7218. default: true
  7219. },
  7220. {
  7221. name: "Megamacro",
  7222. height: math.unit(8, "miles")
  7223. },
  7224. ]
  7225. ))
  7226. characterMakers.push(() => makeCharacter(
  7227. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7228. {
  7229. front: {
  7230. height: math.unit(12 + 2 / 12, "feet"),
  7231. weight: math.unit(808, "lbs"),
  7232. name: "Front",
  7233. image: {
  7234. source: "./media/characters/prodigy/front.svg"
  7235. }
  7236. }
  7237. },
  7238. [
  7239. {
  7240. name: "Normal",
  7241. height: math.unit(12 + 2 / 12, "feet"),
  7242. default: true
  7243. },
  7244. {
  7245. name: "Macro",
  7246. height: math.unit(143, "feet")
  7247. },
  7248. {
  7249. name: "Macro+",
  7250. height: math.unit(400, "feet")
  7251. },
  7252. ]
  7253. ))
  7254. characterMakers.push(() => makeCharacter(
  7255. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7256. {
  7257. front: {
  7258. height: math.unit(6, "feet"),
  7259. weight: math.unit(225, "lbs"),
  7260. name: "Front",
  7261. image: {
  7262. source: "./media/characters/daniel/front.svg"
  7263. }
  7264. },
  7265. leaning: {
  7266. height: math.unit(6, "feet"),
  7267. weight: math.unit(225, "lbs"),
  7268. name: "Leaning",
  7269. image: {
  7270. source: "./media/characters/daniel/leaning.svg"
  7271. }
  7272. },
  7273. },
  7274. [
  7275. {
  7276. name: "Macro",
  7277. height: math.unit(1000, "feet"),
  7278. default: true
  7279. },
  7280. ]
  7281. ))
  7282. characterMakers.push(() => makeCharacter(
  7283. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7284. {
  7285. front: {
  7286. height: math.unit(6, "feet"),
  7287. weight: math.unit(88, "lbs"),
  7288. name: "Front",
  7289. image: {
  7290. source: "./media/characters/chiros/front.svg",
  7291. extra: 306 / 226
  7292. }
  7293. },
  7294. side: {
  7295. height: math.unit(6, "feet"),
  7296. weight: math.unit(88, "lbs"),
  7297. name: "Side",
  7298. image: {
  7299. source: "./media/characters/chiros/side.svg",
  7300. extra: 306 / 226
  7301. }
  7302. },
  7303. },
  7304. [
  7305. {
  7306. name: "Normal",
  7307. height: math.unit(6, "cm"),
  7308. default: true
  7309. },
  7310. ]
  7311. ))
  7312. characterMakers.push(() => makeCharacter(
  7313. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7314. {
  7315. front: {
  7316. height: math.unit(6, "feet"),
  7317. weight: math.unit(100, "lbs"),
  7318. name: "Front",
  7319. image: {
  7320. source: "./media/characters/selka/front.svg",
  7321. extra: 947 / 887
  7322. }
  7323. }
  7324. },
  7325. [
  7326. {
  7327. name: "Normal",
  7328. height: math.unit(5, "cm"),
  7329. default: true
  7330. },
  7331. ]
  7332. ))
  7333. characterMakers.push(() => makeCharacter(
  7334. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7335. {
  7336. front: {
  7337. height: math.unit(8 + 3 / 12, "feet"),
  7338. weight: math.unit(424, "lbs"),
  7339. name: "Front",
  7340. image: {
  7341. source: "./media/characters/verin/front.svg",
  7342. extra: 1845 / 1550
  7343. }
  7344. },
  7345. frontArmored: {
  7346. height: math.unit(8 + 3 / 12, "feet"),
  7347. weight: math.unit(424, "lbs"),
  7348. name: "Front (Armored)",
  7349. image: {
  7350. source: "./media/characters/verin/front-armor.svg",
  7351. extra: 1845 / 1550,
  7352. bottom: 0.01
  7353. }
  7354. },
  7355. back: {
  7356. height: math.unit(8 + 3 / 12, "feet"),
  7357. weight: math.unit(424, "lbs"),
  7358. name: "Back",
  7359. image: {
  7360. source: "./media/characters/verin/back.svg",
  7361. bottom: 0.1,
  7362. extra: 1
  7363. }
  7364. },
  7365. foot: {
  7366. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7367. name: "Foot",
  7368. image: {
  7369. source: "./media/characters/verin/foot.svg"
  7370. }
  7371. },
  7372. },
  7373. [
  7374. {
  7375. name: "Normal",
  7376. height: math.unit(8 + 3 / 12, "feet")
  7377. },
  7378. {
  7379. name: "Minimacro",
  7380. height: math.unit(21, "feet"),
  7381. default: true
  7382. },
  7383. {
  7384. name: "Macro",
  7385. height: math.unit(626, "feet")
  7386. },
  7387. ]
  7388. ))
  7389. characterMakers.push(() => makeCharacter(
  7390. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7391. {
  7392. front: {
  7393. height: math.unit(2.718, "meters"),
  7394. weight: math.unit(150, "lbs"),
  7395. name: "Front",
  7396. image: {
  7397. source: "./media/characters/sovrim-terraquian/front.svg"
  7398. }
  7399. },
  7400. back: {
  7401. height: math.unit(2.718, "meters"),
  7402. weight: math.unit(150, "lbs"),
  7403. name: "Back",
  7404. image: {
  7405. source: "./media/characters/sovrim-terraquian/back.svg"
  7406. }
  7407. }
  7408. },
  7409. [
  7410. {
  7411. name: "Micro",
  7412. height: math.unit(2, "inches")
  7413. },
  7414. {
  7415. name: "Small",
  7416. height: math.unit(1, "meter")
  7417. },
  7418. {
  7419. name: "Normal",
  7420. height: math.unit(Math.E, "meters"),
  7421. default: true
  7422. },
  7423. {
  7424. name: "Macro",
  7425. height: math.unit(20, "meters")
  7426. },
  7427. {
  7428. name: "Macro+",
  7429. height: math.unit(400, "meters")
  7430. },
  7431. ]
  7432. ))
  7433. characterMakers.push(() => makeCharacter(
  7434. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7435. {
  7436. front: {
  7437. height: math.unit(7, "feet"),
  7438. weight: math.unit(489, "lbs"),
  7439. name: "Front",
  7440. image: {
  7441. source: "./media/characters/reece-silvermane/front.svg",
  7442. bottom: 0.02,
  7443. extra: 1
  7444. }
  7445. },
  7446. },
  7447. [
  7448. {
  7449. name: "Macro",
  7450. height: math.unit(1.5, "miles"),
  7451. default: true
  7452. },
  7453. ]
  7454. ))
  7455. characterMakers.push(() => makeCharacter(
  7456. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7457. {
  7458. front: {
  7459. height: math.unit(6, "feet"),
  7460. weight: math.unit(78, "kg"),
  7461. name: "Front",
  7462. image: {
  7463. source: "./media/characters/kane/front.svg",
  7464. extra: 978 / 899
  7465. }
  7466. },
  7467. },
  7468. [
  7469. {
  7470. name: "Normal",
  7471. height: math.unit(2.1, "m"),
  7472. },
  7473. {
  7474. name: "Macro",
  7475. height: math.unit(1, "km"),
  7476. default: true
  7477. },
  7478. ]
  7479. ))
  7480. characterMakers.push(() => makeCharacter(
  7481. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7482. {
  7483. front: {
  7484. height: math.unit(6, "feet"),
  7485. weight: math.unit(200, "kg"),
  7486. name: "Front",
  7487. image: {
  7488. source: "./media/characters/tegon/front.svg",
  7489. bottom: 0.01,
  7490. extra: 1
  7491. }
  7492. },
  7493. },
  7494. [
  7495. {
  7496. name: "Micro",
  7497. height: math.unit(1, "inch")
  7498. },
  7499. {
  7500. name: "Normal",
  7501. height: math.unit(6 + 3 / 12, "feet"),
  7502. default: true
  7503. },
  7504. {
  7505. name: "Macro",
  7506. height: math.unit(300, "feet")
  7507. },
  7508. {
  7509. name: "Megamacro",
  7510. height: math.unit(69, "miles")
  7511. },
  7512. ]
  7513. ))
  7514. characterMakers.push(() => makeCharacter(
  7515. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7516. {
  7517. side: {
  7518. height: math.unit(6, "feet"),
  7519. weight: math.unit(2304, "lbs"),
  7520. name: "Side",
  7521. image: {
  7522. source: "./media/characters/arcturax/side.svg",
  7523. extra: 790 / 376,
  7524. bottom: 0.01
  7525. }
  7526. },
  7527. },
  7528. [
  7529. {
  7530. name: "Micro",
  7531. height: math.unit(2, "inch")
  7532. },
  7533. {
  7534. name: "Normal",
  7535. height: math.unit(6, "feet")
  7536. },
  7537. {
  7538. name: "Macro",
  7539. height: math.unit(39, "feet"),
  7540. default: true
  7541. },
  7542. {
  7543. name: "Megamacro",
  7544. height: math.unit(7, "miles")
  7545. },
  7546. ]
  7547. ))
  7548. characterMakers.push(() => makeCharacter(
  7549. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7550. {
  7551. front: {
  7552. height: math.unit(6, "feet"),
  7553. weight: math.unit(50, "lbs"),
  7554. name: "Front",
  7555. image: {
  7556. source: "./media/characters/sentri/front.svg",
  7557. extra: 1750 / 1570,
  7558. bottom: 0.025
  7559. }
  7560. },
  7561. frontAlt: {
  7562. height: math.unit(6, "feet"),
  7563. weight: math.unit(50, "lbs"),
  7564. name: "Front (Alt)",
  7565. image: {
  7566. source: "./media/characters/sentri/front-alt.svg",
  7567. extra: 1750 / 1570,
  7568. bottom: 0.025
  7569. }
  7570. },
  7571. },
  7572. [
  7573. {
  7574. name: "Normal",
  7575. height: math.unit(15, "feet"),
  7576. default: true
  7577. },
  7578. {
  7579. name: "Macro",
  7580. height: math.unit(2500, "feet")
  7581. }
  7582. ]
  7583. ))
  7584. characterMakers.push(() => makeCharacter(
  7585. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7586. {
  7587. front: {
  7588. height: math.unit(5 + 8 / 12, "feet"),
  7589. weight: math.unit(130, "lbs"),
  7590. name: "Front",
  7591. image: {
  7592. source: "./media/characters/corvin/front.svg",
  7593. extra: 1803 / 1629
  7594. }
  7595. },
  7596. frontShirt: {
  7597. height: math.unit(5 + 8 / 12, "feet"),
  7598. weight: math.unit(130, "lbs"),
  7599. name: "Front (Shirt)",
  7600. image: {
  7601. source: "./media/characters/corvin/front-shirt.svg",
  7602. extra: 1803 / 1629
  7603. }
  7604. },
  7605. frontPoncho: {
  7606. height: math.unit(5 + 8 / 12, "feet"),
  7607. weight: math.unit(130, "lbs"),
  7608. name: "Front (Poncho)",
  7609. image: {
  7610. source: "./media/characters/corvin/front-poncho.svg",
  7611. extra: 1803 / 1629
  7612. }
  7613. },
  7614. side: {
  7615. height: math.unit(5 + 8 / 12, "feet"),
  7616. weight: math.unit(130, "lbs"),
  7617. name: "Side",
  7618. image: {
  7619. source: "./media/characters/corvin/side.svg",
  7620. extra: 1012 / 945
  7621. }
  7622. },
  7623. back: {
  7624. height: math.unit(5 + 8 / 12, "feet"),
  7625. weight: math.unit(130, "lbs"),
  7626. name: "Back",
  7627. image: {
  7628. source: "./media/characters/corvin/back.svg",
  7629. extra: 1803 / 1629
  7630. }
  7631. },
  7632. },
  7633. [
  7634. {
  7635. name: "Micro",
  7636. height: math.unit(3, "inches")
  7637. },
  7638. {
  7639. name: "Normal",
  7640. height: math.unit(5 + 8 / 12, "feet")
  7641. },
  7642. {
  7643. name: "Macro",
  7644. height: math.unit(300, "feet"),
  7645. default: true
  7646. },
  7647. {
  7648. name: "Megamacro",
  7649. height: math.unit(500, "miles")
  7650. }
  7651. ]
  7652. ))
  7653. characterMakers.push(() => makeCharacter(
  7654. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7655. {
  7656. front: {
  7657. height: math.unit(6, "feet"),
  7658. weight: math.unit(135, "lbs"),
  7659. name: "Front",
  7660. image: {
  7661. source: "./media/characters/q/front.svg",
  7662. extra: 854 / 752,
  7663. bottom: 0.005
  7664. }
  7665. },
  7666. back: {
  7667. height: math.unit(6, "feet"),
  7668. weight: math.unit(130, "lbs"),
  7669. name: "Back",
  7670. image: {
  7671. source: "./media/characters/q/back.svg",
  7672. extra: 854 / 752
  7673. }
  7674. },
  7675. },
  7676. [
  7677. {
  7678. name: "Macro",
  7679. height: math.unit(90, "feet"),
  7680. default: true
  7681. },
  7682. {
  7683. name: "Extra Macro",
  7684. height: math.unit(300, "feet"),
  7685. },
  7686. {
  7687. name: "BIG WALF",
  7688. height: math.unit(750, "feet"),
  7689. },
  7690. ]
  7691. ))
  7692. characterMakers.push(() => makeCharacter(
  7693. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7694. {
  7695. front: {
  7696. height: math.unit(6, "feet"),
  7697. weight: math.unit(150, "lbs"),
  7698. name: "Front",
  7699. image: {
  7700. source: "./media/characters/carley/front.svg",
  7701. extra: 3927 / 3540,
  7702. bottom: 29.2 / 735
  7703. }
  7704. }
  7705. },
  7706. [
  7707. {
  7708. name: "Normal",
  7709. height: math.unit(6 + 3 / 12, "feet")
  7710. },
  7711. {
  7712. name: "Macro",
  7713. height: math.unit(185, "feet"),
  7714. default: true
  7715. },
  7716. {
  7717. name: "Megamacro",
  7718. height: math.unit(8, "miles"),
  7719. },
  7720. ]
  7721. ))
  7722. characterMakers.push(() => makeCharacter(
  7723. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7724. {
  7725. front: {
  7726. height: math.unit(3, "feet"),
  7727. weight: math.unit(28, "lbs"),
  7728. name: "Front",
  7729. image: {
  7730. source: "./media/characters/citrine/front.svg"
  7731. }
  7732. }
  7733. },
  7734. [
  7735. {
  7736. name: "Normal",
  7737. height: math.unit(3, "feet"),
  7738. default: true
  7739. }
  7740. ]
  7741. ))
  7742. characterMakers.push(() => makeCharacter(
  7743. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7744. {
  7745. front: {
  7746. height: math.unit(14, "feet"),
  7747. weight: math.unit(1450, "kg"),
  7748. capacity: math.unit(15, "people"),
  7749. name: "Front",
  7750. image: {
  7751. source: "./media/characters/aura-starwind/front.svg",
  7752. extra: 1455 / 1335
  7753. }
  7754. },
  7755. side: {
  7756. height: math.unit(14, "feet"),
  7757. weight: math.unit(1450, "kg"),
  7758. capacity: math.unit(15, "people"),
  7759. name: "Side",
  7760. image: {
  7761. source: "./media/characters/aura-starwind/side.svg",
  7762. extra: 1654 / 1497
  7763. }
  7764. },
  7765. taur: {
  7766. height: math.unit(18, "feet"),
  7767. weight: math.unit(5500, "kg"),
  7768. capacity: math.unit(50, "people"),
  7769. name: "Taur",
  7770. image: {
  7771. source: "./media/characters/aura-starwind/taur.svg",
  7772. extra: 1760 / 1650
  7773. }
  7774. },
  7775. feral: {
  7776. height: math.unit(46, "feet"),
  7777. weight: math.unit(25000, "kg"),
  7778. capacity: math.unit(120, "people"),
  7779. name: "Feral",
  7780. image: {
  7781. source: "./media/characters/aura-starwind/feral.svg"
  7782. }
  7783. },
  7784. },
  7785. [
  7786. {
  7787. name: "Normal",
  7788. height: math.unit(14, "feet"),
  7789. default: true
  7790. },
  7791. {
  7792. name: "Macro",
  7793. height: math.unit(50, "meters")
  7794. },
  7795. {
  7796. name: "Megamacro",
  7797. height: math.unit(5000, "meters")
  7798. },
  7799. {
  7800. name: "Gigamacro",
  7801. height: math.unit(100000, "kilometers")
  7802. },
  7803. ]
  7804. ))
  7805. characterMakers.push(() => makeCharacter(
  7806. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7807. {
  7808. front: {
  7809. height: math.unit(2 + 7 / 12, "feet"),
  7810. weight: math.unit(32, "lbs"),
  7811. name: "Front",
  7812. image: {
  7813. source: "./media/characters/rivet/front.svg",
  7814. extra: 1716 / 1658,
  7815. bottom: 0.03
  7816. }
  7817. },
  7818. foot: {
  7819. height: math.unit(0.551, "feet"),
  7820. name: "Rivet's Foot",
  7821. image: {
  7822. source: "./media/characters/rivet/foot.svg"
  7823. },
  7824. rename: true
  7825. }
  7826. },
  7827. [
  7828. {
  7829. name: "Micro",
  7830. height: math.unit(1.5, "inches"),
  7831. },
  7832. {
  7833. name: "Normal",
  7834. height: math.unit(2 + 7 / 12, "feet"),
  7835. default: true
  7836. },
  7837. {
  7838. name: "Macro",
  7839. height: math.unit(85, "feet")
  7840. },
  7841. {
  7842. name: "Megamacro",
  7843. height: math.unit(2.2, "km")
  7844. }
  7845. ]
  7846. ))
  7847. characterMakers.push(() => makeCharacter(
  7848. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7849. {
  7850. front: {
  7851. height: math.unit(5 + 9 / 12, "feet"),
  7852. weight: math.unit(150, "lbs"),
  7853. name: "Front",
  7854. image: {
  7855. source: "./media/characters/coffee/front.svg",
  7856. extra: 3666 / 3032,
  7857. bottom: 0.04
  7858. }
  7859. },
  7860. foot: {
  7861. height: math.unit(1.29, "feet"),
  7862. name: "Foot",
  7863. image: {
  7864. source: "./media/characters/coffee/foot.svg"
  7865. }
  7866. },
  7867. },
  7868. [
  7869. {
  7870. name: "Micro",
  7871. height: math.unit(2, "inches"),
  7872. },
  7873. {
  7874. name: "Normal",
  7875. height: math.unit(5 + 9 / 12, "feet"),
  7876. default: true
  7877. },
  7878. {
  7879. name: "Macro",
  7880. height: math.unit(800, "feet")
  7881. },
  7882. {
  7883. name: "Megamacro",
  7884. height: math.unit(25, "miles")
  7885. }
  7886. ]
  7887. ))
  7888. characterMakers.push(() => makeCharacter(
  7889. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7890. {
  7891. front: {
  7892. height: math.unit(6, "feet"),
  7893. weight: math.unit(200, "lbs"),
  7894. name: "Front",
  7895. image: {
  7896. source: "./media/characters/chari-gal/front.svg",
  7897. extra: 1568 / 1385,
  7898. bottom: 0.047
  7899. }
  7900. },
  7901. gigantamax: {
  7902. height: math.unit(6 * 16, "feet"),
  7903. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7904. name: "Gigantamax",
  7905. image: {
  7906. source: "./media/characters/chari-gal/gigantamax.svg",
  7907. extra: 1124 / 888,
  7908. bottom: 0.03
  7909. }
  7910. },
  7911. },
  7912. [
  7913. {
  7914. name: "Normal",
  7915. height: math.unit(5 + 7 / 12, "feet")
  7916. },
  7917. {
  7918. name: "Macro",
  7919. height: math.unit(200, "feet"),
  7920. default: true
  7921. }
  7922. ]
  7923. ))
  7924. characterMakers.push(() => makeCharacter(
  7925. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7926. {
  7927. front: {
  7928. height: math.unit(6, "feet"),
  7929. weight: math.unit(150, "lbs"),
  7930. name: "Front",
  7931. image: {
  7932. source: "./media/characters/nova/front.svg",
  7933. extra: 5000 / 4722,
  7934. bottom: 0.02
  7935. }
  7936. }
  7937. },
  7938. [
  7939. {
  7940. name: "Micro-",
  7941. height: math.unit(0.8, "inches")
  7942. },
  7943. {
  7944. name: "Micro",
  7945. height: math.unit(2, "inches"),
  7946. default: true
  7947. },
  7948. ]
  7949. ))
  7950. characterMakers.push(() => makeCharacter(
  7951. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7952. {
  7953. front: {
  7954. height: math.unit(3 + 1 / 12, "feet"),
  7955. weight: math.unit(21.7, "lbs"),
  7956. name: "Front",
  7957. image: {
  7958. source: "./media/characters/argent/front.svg",
  7959. extra: 1471 / 1331,
  7960. bottom: 100.8 / 1575.5
  7961. }
  7962. }
  7963. },
  7964. [
  7965. {
  7966. name: "Micro",
  7967. height: math.unit(2, "inches")
  7968. },
  7969. {
  7970. name: "Normal",
  7971. height: math.unit(3 + 1 / 12, "feet"),
  7972. default: true
  7973. },
  7974. {
  7975. name: "Macro",
  7976. height: math.unit(120, "feet")
  7977. },
  7978. ]
  7979. ))
  7980. characterMakers.push(() => makeCharacter(
  7981. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7982. {
  7983. lamp: {
  7984. height: math.unit(7 * 1559 / 989, "feet"),
  7985. name: "Magic Lamp",
  7986. image: {
  7987. source: "./media/characters/mira-al-cul/lamp.svg",
  7988. extra: 1617 / 1559
  7989. }
  7990. },
  7991. front: {
  7992. height: math.unit(7, "feet"),
  7993. name: "Front",
  7994. image: {
  7995. source: "./media/characters/mira-al-cul/front.svg",
  7996. extra: 1044 / 990
  7997. }
  7998. },
  7999. },
  8000. [
  8001. {
  8002. name: "Heavily Restricted",
  8003. height: math.unit(7 * 1559 / 989, "feet")
  8004. },
  8005. {
  8006. name: "Freshly Freed",
  8007. height: math.unit(50 * 1559 / 989, "feet")
  8008. },
  8009. {
  8010. name: "World Encompassing",
  8011. height: math.unit(10000 * 1559 / 989, "miles")
  8012. },
  8013. {
  8014. name: "Galactic",
  8015. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8016. },
  8017. {
  8018. name: "Palmed Universe",
  8019. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8020. default: true
  8021. },
  8022. {
  8023. name: "Multiversal Matriarch",
  8024. height: math.unit(8.87e10, "yottameters")
  8025. },
  8026. {
  8027. name: "Void Mother",
  8028. height: math.unit(3.14e110, "yottaparsecs")
  8029. },
  8030. {
  8031. name: "Toying with Transcendence",
  8032. height: math.unit(1e307, "meters")
  8033. },
  8034. ]
  8035. ))
  8036. characterMakers.push(() => makeCharacter(
  8037. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8038. {
  8039. front: {
  8040. height: math.unit(17 + 1 / 12, "feet"),
  8041. weight: math.unit(476.2 * 5, "lbs"),
  8042. name: "Front",
  8043. image: {
  8044. source: "./media/characters/kuro-shi-uchū/front.svg",
  8045. extra: 2329 / 1835,
  8046. bottom: 0.02
  8047. }
  8048. },
  8049. },
  8050. [
  8051. {
  8052. name: "Micro",
  8053. height: math.unit(2, "inches")
  8054. },
  8055. {
  8056. name: "Normal",
  8057. height: math.unit(12, "meters")
  8058. },
  8059. {
  8060. name: "Planetary",
  8061. height: math.unit(0.00929, "AU"),
  8062. default: true
  8063. },
  8064. {
  8065. name: "Universal",
  8066. height: math.unit(20, "gigaparsecs")
  8067. },
  8068. ]
  8069. ))
  8070. characterMakers.push(() => makeCharacter(
  8071. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8072. {
  8073. front: {
  8074. height: math.unit(5 + 2 / 12, "feet"),
  8075. weight: math.unit(120, "lbs"),
  8076. name: "Front",
  8077. image: {
  8078. source: "./media/characters/katherine/front.svg",
  8079. extra: 2075 / 1969
  8080. }
  8081. },
  8082. dress: {
  8083. height: math.unit(5 + 2 / 12, "feet"),
  8084. weight: math.unit(120, "lbs"),
  8085. name: "Dress",
  8086. image: {
  8087. source: "./media/characters/katherine/dress.svg",
  8088. extra: 2258 / 2064
  8089. }
  8090. },
  8091. },
  8092. [
  8093. {
  8094. name: "Micro",
  8095. height: math.unit(1, "inches"),
  8096. default: true
  8097. },
  8098. {
  8099. name: "Normal",
  8100. height: math.unit(5 + 2 / 12, "feet")
  8101. },
  8102. {
  8103. name: "Macro",
  8104. height: math.unit(100, "meters")
  8105. },
  8106. {
  8107. name: "Megamacro",
  8108. height: math.unit(80, "miles")
  8109. },
  8110. ]
  8111. ))
  8112. characterMakers.push(() => makeCharacter(
  8113. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8114. {
  8115. front: {
  8116. height: math.unit(7 + 8 / 12, "feet"),
  8117. weight: math.unit(250, "lbs"),
  8118. name: "Front",
  8119. image: {
  8120. source: "./media/characters/yevis/front.svg",
  8121. extra: 1938 / 1755
  8122. }
  8123. }
  8124. },
  8125. [
  8126. {
  8127. name: "Mortal",
  8128. height: math.unit(7 + 8 / 12, "feet")
  8129. },
  8130. {
  8131. name: "Battle",
  8132. height: math.unit(25 + 11 / 12, "feet")
  8133. },
  8134. {
  8135. name: "Wrath",
  8136. height: math.unit(1654 + 11 / 12, "feet")
  8137. },
  8138. {
  8139. name: "Planet Destroyer",
  8140. height: math.unit(12000, "miles")
  8141. },
  8142. {
  8143. name: "Galaxy Conqueror",
  8144. height: math.unit(1.45, "zettameters"),
  8145. default: true
  8146. },
  8147. {
  8148. name: "Universal War",
  8149. height: math.unit(184, "gigaparsecs")
  8150. },
  8151. {
  8152. name: "Eternity War",
  8153. height: math.unit(1.98e55, "yottaparsecs")
  8154. },
  8155. ]
  8156. ))
  8157. characterMakers.push(() => makeCharacter(
  8158. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8159. {
  8160. front: {
  8161. height: math.unit(5 + 8 / 12, "feet"),
  8162. weight: math.unit(63, "kg"),
  8163. name: "Front",
  8164. image: {
  8165. source: "./media/characters/xavier/front.svg",
  8166. extra: 944 / 883
  8167. }
  8168. },
  8169. frontStretch: {
  8170. height: math.unit(5 + 8 / 12, "feet"),
  8171. weight: math.unit(63, "kg"),
  8172. name: "Stretching",
  8173. image: {
  8174. source: "./media/characters/xavier/front-stretch.svg",
  8175. extra: 962 / 820
  8176. }
  8177. },
  8178. },
  8179. [
  8180. {
  8181. name: "Normal",
  8182. height: math.unit(5 + 8 / 12, "feet")
  8183. },
  8184. {
  8185. name: "Macro",
  8186. height: math.unit(100, "meters"),
  8187. default: true
  8188. },
  8189. {
  8190. name: "McLargeHuge",
  8191. height: math.unit(10, "miles")
  8192. },
  8193. ]
  8194. ))
  8195. characterMakers.push(() => makeCharacter(
  8196. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8197. {
  8198. front: {
  8199. height: math.unit(5 + 5 / 12, "feet"),
  8200. weight: math.unit(150, "lb"),
  8201. name: "Front",
  8202. image: {
  8203. source: "./media/characters/joshii/front.svg",
  8204. extra: 765 / 653,
  8205. bottom: 51 / 816
  8206. }
  8207. },
  8208. foot: {
  8209. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8210. name: "Foot",
  8211. image: {
  8212. source: "./media/characters/joshii/foot.svg"
  8213. }
  8214. },
  8215. },
  8216. [
  8217. {
  8218. name: "Micro",
  8219. height: math.unit(2, "inches"),
  8220. default: true
  8221. },
  8222. {
  8223. name: "Normal",
  8224. height: math.unit(5 + 5 / 12, "feet")
  8225. },
  8226. {
  8227. name: "Macro",
  8228. height: math.unit(785, "feet")
  8229. },
  8230. {
  8231. name: "Megamacro",
  8232. height: math.unit(24.5, "miles")
  8233. },
  8234. ]
  8235. ))
  8236. characterMakers.push(() => makeCharacter(
  8237. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8238. {
  8239. front: {
  8240. height: math.unit(6, "feet"),
  8241. weight: math.unit(150, "lb"),
  8242. name: "Front",
  8243. image: {
  8244. source: "./media/characters/goddess-elizabeth/front.svg",
  8245. extra: 1800 / 1525,
  8246. bottom: 0.005
  8247. }
  8248. },
  8249. foot: {
  8250. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8251. name: "Foot",
  8252. image: {
  8253. source: "./media/characters/goddess-elizabeth/foot.svg"
  8254. }
  8255. },
  8256. mouth: {
  8257. height: math.unit(6, "feet"),
  8258. name: "Mouth",
  8259. image: {
  8260. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8261. }
  8262. },
  8263. },
  8264. [
  8265. {
  8266. name: "Micro",
  8267. height: math.unit(12, "feet")
  8268. },
  8269. {
  8270. name: "Normal",
  8271. height: math.unit(80, "miles"),
  8272. default: true
  8273. },
  8274. {
  8275. name: "Macro",
  8276. height: math.unit(15000, "parsecs")
  8277. },
  8278. ]
  8279. ))
  8280. characterMakers.push(() => makeCharacter(
  8281. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8282. {
  8283. front: {
  8284. height: math.unit(5 + 9 / 12, "feet"),
  8285. weight: math.unit(144, "lb"),
  8286. name: "Front",
  8287. image: {
  8288. source: "./media/characters/kara/front.svg"
  8289. }
  8290. },
  8291. feet: {
  8292. height: math.unit(6 / 6.765, "feet"),
  8293. name: "Kara's Feet",
  8294. rename: true,
  8295. image: {
  8296. source: "./media/characters/kara/feet.svg"
  8297. }
  8298. },
  8299. },
  8300. [
  8301. {
  8302. name: "Normal",
  8303. height: math.unit(5 + 9 / 12, "feet")
  8304. },
  8305. {
  8306. name: "Macro",
  8307. height: math.unit(174, "feet"),
  8308. default: true
  8309. },
  8310. ]
  8311. ))
  8312. characterMakers.push(() => makeCharacter(
  8313. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8314. {
  8315. front: {
  8316. height: math.unit(18, "feet"),
  8317. weight: math.unit(4050, "lb"),
  8318. name: "Front",
  8319. image: {
  8320. source: "./media/characters/tyrone/front.svg",
  8321. extra: 2405 / 2270,
  8322. bottom: 182 / 2587
  8323. }
  8324. },
  8325. },
  8326. [
  8327. {
  8328. name: "Normal",
  8329. height: math.unit(18, "feet"),
  8330. default: true
  8331. },
  8332. {
  8333. name: "Macro",
  8334. height: math.unit(300, "feet")
  8335. },
  8336. {
  8337. name: "Megamacro",
  8338. height: math.unit(15, "km")
  8339. },
  8340. {
  8341. name: "Gigamacro",
  8342. height: math.unit(500, "km")
  8343. },
  8344. {
  8345. name: "Teramacro",
  8346. height: math.unit(0.5, "gigameters")
  8347. },
  8348. {
  8349. name: "Omnimacro",
  8350. height: math.unit(1e252, "yottauniverse")
  8351. },
  8352. ]
  8353. ))
  8354. characterMakers.push(() => makeCharacter(
  8355. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8356. {
  8357. front: {
  8358. height: math.unit(7 + 8 / 12, "feet"),
  8359. weight: math.unit(120, "lb"),
  8360. name: "Front",
  8361. image: {
  8362. source: "./media/characters/danny/front.svg",
  8363. extra: 1490 / 1350
  8364. }
  8365. },
  8366. back: {
  8367. height: math.unit(7 + 8 / 12, "feet"),
  8368. weight: math.unit(120, "lb"),
  8369. name: "Back",
  8370. image: {
  8371. source: "./media/characters/danny/back.svg",
  8372. extra: 1490 / 1350
  8373. }
  8374. },
  8375. },
  8376. [
  8377. {
  8378. name: "Normal",
  8379. height: math.unit(7 + 8 / 12, "feet"),
  8380. default: true
  8381. },
  8382. ]
  8383. ))
  8384. characterMakers.push(() => makeCharacter(
  8385. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8386. {
  8387. front: {
  8388. height: math.unit(3.5, "inches"),
  8389. weight: math.unit(19, "grams"),
  8390. name: "Front",
  8391. image: {
  8392. source: "./media/characters/mallow/front.svg",
  8393. extra: 471 / 431
  8394. }
  8395. },
  8396. back: {
  8397. height: math.unit(3.5, "inches"),
  8398. weight: math.unit(19, "grams"),
  8399. name: "Back",
  8400. image: {
  8401. source: "./media/characters/mallow/back.svg",
  8402. extra: 471 / 431
  8403. }
  8404. },
  8405. },
  8406. [
  8407. {
  8408. name: "Normal",
  8409. height: math.unit(3.5, "inches"),
  8410. default: true
  8411. },
  8412. ]
  8413. ))
  8414. characterMakers.push(() => makeCharacter(
  8415. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8416. {
  8417. front: {
  8418. height: math.unit(9, "feet"),
  8419. weight: math.unit(230, "kg"),
  8420. name: "Front",
  8421. image: {
  8422. source: "./media/characters/starry-aqua/front.svg"
  8423. }
  8424. },
  8425. back: {
  8426. height: math.unit(9, "feet"),
  8427. weight: math.unit(230, "kg"),
  8428. name: "Back",
  8429. image: {
  8430. source: "./media/characters/starry-aqua/back.svg"
  8431. }
  8432. },
  8433. hand: {
  8434. height: math.unit(9 * 0.1168, "feet"),
  8435. name: "Hand",
  8436. image: {
  8437. source: "./media/characters/starry-aqua/hand.svg"
  8438. }
  8439. },
  8440. foot: {
  8441. height: math.unit(9 * 0.18, "feet"),
  8442. name: "Foot",
  8443. image: {
  8444. source: "./media/characters/starry-aqua/foot.svg"
  8445. }
  8446. }
  8447. },
  8448. [
  8449. {
  8450. name: "Micro",
  8451. height: math.unit(3, "inches")
  8452. },
  8453. {
  8454. name: "Normal",
  8455. height: math.unit(9, "feet")
  8456. },
  8457. {
  8458. name: "Macro",
  8459. height: math.unit(300, "feet"),
  8460. default: true
  8461. },
  8462. {
  8463. name: "Megamacro",
  8464. height: math.unit(3200, "feet")
  8465. }
  8466. ]
  8467. ))
  8468. characterMakers.push(() => makeCharacter(
  8469. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8470. {
  8471. front: {
  8472. height: math.unit(6, "feet"),
  8473. weight: math.unit(230, "lb"),
  8474. name: "Front",
  8475. image: {
  8476. source: "./media/characters/luka/front.svg",
  8477. extra: 1,
  8478. bottom: 0.025
  8479. }
  8480. },
  8481. },
  8482. [
  8483. {
  8484. name: "Normal",
  8485. height: math.unit(12 + 8 / 12, "feet"),
  8486. default: true
  8487. },
  8488. {
  8489. name: "Minimacro",
  8490. height: math.unit(20, "feet")
  8491. },
  8492. {
  8493. name: "Macro",
  8494. height: math.unit(250, "feet")
  8495. },
  8496. {
  8497. name: "Megamacro",
  8498. height: math.unit(5, "miles")
  8499. },
  8500. {
  8501. name: "Gigamacro",
  8502. height: math.unit(8000, "miles")
  8503. },
  8504. ]
  8505. ))
  8506. characterMakers.push(() => makeCharacter(
  8507. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8508. {
  8509. front: {
  8510. height: math.unit(6, "feet"),
  8511. weight: math.unit(150, "lb"),
  8512. name: "Front",
  8513. image: {
  8514. source: "./media/characters/natalie-nightring/front.svg",
  8515. extra: 1,
  8516. bottom: 0.06
  8517. }
  8518. },
  8519. },
  8520. [
  8521. {
  8522. name: "Uh Oh",
  8523. height: math.unit(0.1, "mm")
  8524. },
  8525. {
  8526. name: "Small",
  8527. height: math.unit(3, "inches")
  8528. },
  8529. {
  8530. name: "Human Scale",
  8531. height: math.unit(6, "feet")
  8532. },
  8533. {
  8534. name: "Librarian",
  8535. height: math.unit(50, "feet"),
  8536. default: true
  8537. },
  8538. {
  8539. name: "Immense",
  8540. height: math.unit(200, "miles")
  8541. },
  8542. ]
  8543. ))
  8544. characterMakers.push(() => makeCharacter(
  8545. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8546. {
  8547. front: {
  8548. height: math.unit(6, "feet"),
  8549. weight: math.unit(180, "lbs"),
  8550. name: "Front",
  8551. image: {
  8552. source: "./media/characters/danni-rosie/front.svg",
  8553. extra: 1260 / 1128,
  8554. bottom: 0.022
  8555. }
  8556. },
  8557. },
  8558. [
  8559. {
  8560. name: "Micro",
  8561. height: math.unit(2, "inches"),
  8562. default: true
  8563. },
  8564. ]
  8565. ))
  8566. characterMakers.push(() => makeCharacter(
  8567. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8568. {
  8569. front: {
  8570. height: math.unit(5 + 9 / 12, "feet"),
  8571. weight: math.unit(220, "lb"),
  8572. name: "Front",
  8573. image: {
  8574. source: "./media/characters/samantha-kruse/front.svg",
  8575. extra: (985 / 935),
  8576. bottom: 0.03
  8577. }
  8578. },
  8579. frontUndressed: {
  8580. height: math.unit(5 + 9 / 12, "feet"),
  8581. weight: math.unit(220, "lb"),
  8582. name: "Front (Undressed)",
  8583. image: {
  8584. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8585. extra: (973 / 923),
  8586. bottom: 0.025
  8587. }
  8588. },
  8589. fat: {
  8590. height: math.unit(5 + 9 / 12, "feet"),
  8591. weight: math.unit(900, "lb"),
  8592. name: "Front (Fat)",
  8593. image: {
  8594. source: "./media/characters/samantha-kruse/fat.svg",
  8595. extra: 2688 / 2561
  8596. }
  8597. },
  8598. },
  8599. [
  8600. {
  8601. name: "Normal",
  8602. height: math.unit(5 + 9 / 12, "feet"),
  8603. default: true
  8604. }
  8605. ]
  8606. ))
  8607. characterMakers.push(() => makeCharacter(
  8608. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8609. {
  8610. back: {
  8611. height: math.unit(5 + 4 / 12, "feet"),
  8612. weight: math.unit(4963, "lb"),
  8613. name: "Back",
  8614. image: {
  8615. source: "./media/characters/amelia-rosie/back.svg",
  8616. extra: 1113 / 963,
  8617. bottom: 0.01
  8618. }
  8619. },
  8620. },
  8621. [
  8622. {
  8623. name: "Level 0",
  8624. height: math.unit(5 + 4 / 12, "feet")
  8625. },
  8626. {
  8627. name: "Level 1",
  8628. height: math.unit(164597, "feet"),
  8629. default: true
  8630. },
  8631. {
  8632. name: "Level 2",
  8633. height: math.unit(956243, "miles")
  8634. },
  8635. {
  8636. name: "Level 3",
  8637. height: math.unit(29421709423, "miles")
  8638. },
  8639. {
  8640. name: "Level 4",
  8641. height: math.unit(154, "lightyears")
  8642. },
  8643. {
  8644. name: "Level 5",
  8645. height: math.unit(4738272, "lightyears")
  8646. },
  8647. {
  8648. name: "Level 6",
  8649. height: math.unit(145787152896, "lightyears")
  8650. },
  8651. ]
  8652. ))
  8653. characterMakers.push(() => makeCharacter(
  8654. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8655. {
  8656. front: {
  8657. height: math.unit(5 + 11 / 12, "feet"),
  8658. weight: math.unit(65, "kg"),
  8659. name: "Front",
  8660. image: {
  8661. source: "./media/characters/rook-kitara/front.svg",
  8662. extra: 1347 / 1274,
  8663. bottom: 0.005
  8664. }
  8665. },
  8666. },
  8667. [
  8668. {
  8669. name: "Totally Unfair",
  8670. height: math.unit(1.8, "mm")
  8671. },
  8672. {
  8673. name: "Lap Rookie",
  8674. height: math.unit(1.4, "feet")
  8675. },
  8676. {
  8677. name: "Normal",
  8678. height: math.unit(5 + 11 / 12, "feet"),
  8679. default: true
  8680. },
  8681. {
  8682. name: "How Did This Happen",
  8683. height: math.unit(80, "miles")
  8684. }
  8685. ]
  8686. ))
  8687. characterMakers.push(() => makeCharacter(
  8688. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8689. {
  8690. front: {
  8691. height: math.unit(7, "feet"),
  8692. weight: math.unit(300, "lb"),
  8693. name: "Front",
  8694. image: {
  8695. source: "./media/characters/pisces/front.svg",
  8696. extra: 2255 / 2115,
  8697. bottom: 0.03
  8698. }
  8699. },
  8700. back: {
  8701. height: math.unit(7, "feet"),
  8702. weight: math.unit(300, "lb"),
  8703. name: "Back",
  8704. image: {
  8705. source: "./media/characters/pisces/back.svg",
  8706. extra: 2146 / 2055,
  8707. bottom: 0.04
  8708. }
  8709. },
  8710. },
  8711. [
  8712. {
  8713. name: "Normal",
  8714. height: math.unit(7, "feet"),
  8715. default: true
  8716. },
  8717. {
  8718. name: "Swimming Pool",
  8719. height: math.unit(12.2, "meters")
  8720. },
  8721. {
  8722. name: "Olympic Swimming Pool",
  8723. height: math.unit(56.3, "meters")
  8724. },
  8725. {
  8726. name: "Lake Superior",
  8727. height: math.unit(93900, "meters")
  8728. },
  8729. {
  8730. name: "Mediterranean Sea",
  8731. height: math.unit(644457, "meters")
  8732. },
  8733. {
  8734. name: "World's Oceans",
  8735. height: math.unit(4567491, "meters")
  8736. },
  8737. ]
  8738. ))
  8739. characterMakers.push(() => makeCharacter(
  8740. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8741. {
  8742. front: {
  8743. height: math.unit(2.3, "meters"),
  8744. weight: math.unit(120, "kg"),
  8745. name: "Front",
  8746. image: {
  8747. source: "./media/characters/zelas/front.svg"
  8748. }
  8749. },
  8750. side: {
  8751. height: math.unit(2.3, "meters"),
  8752. weight: math.unit(120, "kg"),
  8753. name: "Side",
  8754. image: {
  8755. source: "./media/characters/zelas/side.svg"
  8756. }
  8757. },
  8758. back: {
  8759. height: math.unit(2.3, "meters"),
  8760. weight: math.unit(120, "kg"),
  8761. name: "Back",
  8762. image: {
  8763. source: "./media/characters/zelas/back.svg"
  8764. }
  8765. },
  8766. foot: {
  8767. height: math.unit(1.116, "feet"),
  8768. name: "Foot",
  8769. image: {
  8770. source: "./media/characters/zelas/foot.svg"
  8771. }
  8772. },
  8773. },
  8774. [
  8775. {
  8776. name: "Normal",
  8777. height: math.unit(2.3, "meters")
  8778. },
  8779. {
  8780. name: "Macro",
  8781. height: math.unit(30, "meters"),
  8782. default: true
  8783. },
  8784. ]
  8785. ))
  8786. characterMakers.push(() => makeCharacter(
  8787. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8788. {
  8789. front: {
  8790. height: math.unit(1, "inch"),
  8791. weight: math.unit(0.21, "grams"),
  8792. name: "Front",
  8793. image: {
  8794. source: "./media/characters/talbot/front.svg",
  8795. extra: 594 / 544
  8796. }
  8797. },
  8798. },
  8799. [
  8800. {
  8801. name: "Micro",
  8802. height: math.unit(1, "inch"),
  8803. default: true
  8804. },
  8805. ]
  8806. ))
  8807. characterMakers.push(() => makeCharacter(
  8808. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8809. {
  8810. front: {
  8811. height: math.unit(3 + 3 / 12, "feet"),
  8812. weight: math.unit(51.8, "lb"),
  8813. name: "Front",
  8814. image: {
  8815. source: "./media/characters/fliss/front.svg",
  8816. extra: 840 / 640
  8817. }
  8818. },
  8819. },
  8820. [
  8821. {
  8822. name: "Teeny Tiny",
  8823. height: math.unit(1, "mm")
  8824. },
  8825. {
  8826. name: "Small",
  8827. height: math.unit(1, "inch"),
  8828. default: true
  8829. },
  8830. {
  8831. name: "Standard Sylveon",
  8832. height: math.unit(3 + 3 / 12, "feet")
  8833. },
  8834. {
  8835. name: "Large Nuisance",
  8836. height: math.unit(33, "feet")
  8837. },
  8838. {
  8839. name: "City Filler",
  8840. height: math.unit(3000, "feet")
  8841. },
  8842. {
  8843. name: "New Horizon",
  8844. height: math.unit(6000, "miles")
  8845. },
  8846. ]
  8847. ))
  8848. characterMakers.push(() => makeCharacter(
  8849. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8850. {
  8851. front: {
  8852. height: math.unit(5, "cm"),
  8853. weight: math.unit(1.94, "g"),
  8854. name: "Front",
  8855. image: {
  8856. source: "./media/characters/fleta/front.svg",
  8857. extra: 835 / 803
  8858. }
  8859. },
  8860. back: {
  8861. height: math.unit(5, "cm"),
  8862. weight: math.unit(1.94, "g"),
  8863. name: "Back",
  8864. image: {
  8865. source: "./media/characters/fleta/back.svg",
  8866. extra: 835 / 803
  8867. }
  8868. },
  8869. },
  8870. [
  8871. {
  8872. name: "Micro",
  8873. height: math.unit(5, "cm"),
  8874. default: true
  8875. },
  8876. ]
  8877. ))
  8878. characterMakers.push(() => makeCharacter(
  8879. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8880. {
  8881. front: {
  8882. height: math.unit(6, "feet"),
  8883. weight: math.unit(225, "lb"),
  8884. name: "Front",
  8885. image: {
  8886. source: "./media/characters/dominic/front.svg",
  8887. extra: 1770 / 1620,
  8888. bottom: 0.025
  8889. }
  8890. },
  8891. back: {
  8892. height: math.unit(6, "feet"),
  8893. weight: math.unit(225, "lb"),
  8894. name: "Back",
  8895. image: {
  8896. source: "./media/characters/dominic/back.svg",
  8897. extra: 1745 / 1620,
  8898. bottom: 0.065
  8899. }
  8900. },
  8901. },
  8902. [
  8903. {
  8904. name: "Nano",
  8905. height: math.unit(0.1, "mm")
  8906. },
  8907. {
  8908. name: "Micro-",
  8909. height: math.unit(1, "mm")
  8910. },
  8911. {
  8912. name: "Micro",
  8913. height: math.unit(4, "inches")
  8914. },
  8915. {
  8916. name: "Normal",
  8917. height: math.unit(6 + 4 / 12, "feet"),
  8918. default: true
  8919. },
  8920. {
  8921. name: "Macro",
  8922. height: math.unit(115, "feet")
  8923. },
  8924. {
  8925. name: "Macro+",
  8926. height: math.unit(955, "feet")
  8927. },
  8928. {
  8929. name: "Megamacro",
  8930. height: math.unit(8990, "feet")
  8931. },
  8932. {
  8933. name: "Gigmacro",
  8934. height: math.unit(9310, "miles")
  8935. },
  8936. {
  8937. name: "Teramacro",
  8938. height: math.unit(1567005010, "miles")
  8939. },
  8940. {
  8941. name: "Examacro",
  8942. height: math.unit(1425, "parsecs")
  8943. },
  8944. ]
  8945. ))
  8946. characterMakers.push(() => makeCharacter(
  8947. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8948. {
  8949. front: {
  8950. height: math.unit(400, "feet"),
  8951. weight: math.unit(44444444, "lb"),
  8952. name: "Front",
  8953. image: {
  8954. source: "./media/characters/major-colonel/front.svg"
  8955. }
  8956. },
  8957. back: {
  8958. height: math.unit(400, "feet"),
  8959. weight: math.unit(44444444, "lb"),
  8960. name: "Back",
  8961. image: {
  8962. source: "./media/characters/major-colonel/back.svg"
  8963. }
  8964. },
  8965. },
  8966. [
  8967. {
  8968. name: "Macro",
  8969. height: math.unit(400, "feet"),
  8970. default: true
  8971. },
  8972. ]
  8973. ))
  8974. characterMakers.push(() => makeCharacter(
  8975. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8976. {
  8977. catFront: {
  8978. height: math.unit(6, "feet"),
  8979. weight: math.unit(120, "lb"),
  8980. name: "Front (Cat Side)",
  8981. image: {
  8982. source: "./media/characters/axel-lycan/cat-front.svg",
  8983. extra: 430 / 402,
  8984. bottom: 43 / 472.35
  8985. }
  8986. },
  8987. catBack: {
  8988. height: math.unit(6, "feet"),
  8989. weight: math.unit(120, "lb"),
  8990. name: "Back (Cat Side)",
  8991. image: {
  8992. source: "./media/characters/axel-lycan/cat-back.svg",
  8993. extra: 447 / 419,
  8994. bottom: 23.3 / 469
  8995. }
  8996. },
  8997. wolfFront: {
  8998. height: math.unit(6, "feet"),
  8999. weight: math.unit(120, "lb"),
  9000. name: "Front (Wolf Side)",
  9001. image: {
  9002. source: "./media/characters/axel-lycan/wolf-front.svg",
  9003. extra: 485 / 456,
  9004. bottom: 19 / 504
  9005. }
  9006. },
  9007. wolfBack: {
  9008. height: math.unit(6, "feet"),
  9009. weight: math.unit(120, "lb"),
  9010. name: "Back (Wolf Side)",
  9011. image: {
  9012. source: "./media/characters/axel-lycan/wolf-back.svg",
  9013. extra: 475 / 438,
  9014. bottom: 39.2 / 514
  9015. }
  9016. },
  9017. },
  9018. [
  9019. {
  9020. name: "Macro",
  9021. height: math.unit(1, "km"),
  9022. default: true
  9023. },
  9024. ]
  9025. ))
  9026. characterMakers.push(() => makeCharacter(
  9027. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9028. {
  9029. front: {
  9030. height: math.unit(5 + 9 / 12, "feet"),
  9031. weight: math.unit(175, "lb"),
  9032. name: "Front",
  9033. image: {
  9034. source: "./media/characters/vanrel-hyena/front.svg",
  9035. extra: 1086 / 1010,
  9036. bottom: 0.04
  9037. }
  9038. },
  9039. },
  9040. [
  9041. {
  9042. name: "Normal",
  9043. height: math.unit(5 + 9 / 12, "feet"),
  9044. default: true
  9045. },
  9046. ]
  9047. ))
  9048. characterMakers.push(() => makeCharacter(
  9049. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9050. {
  9051. front: {
  9052. height: math.unit(6, "feet"),
  9053. weight: math.unit(103, "lb"),
  9054. name: "Front",
  9055. image: {
  9056. source: "./media/characters/abbott-absol/front.svg",
  9057. extra: 2010 / 1842
  9058. }
  9059. },
  9060. },
  9061. [
  9062. {
  9063. name: "Megamicro",
  9064. height: math.unit(0.1, "mm")
  9065. },
  9066. {
  9067. name: "Micro",
  9068. height: math.unit(1, "inch")
  9069. },
  9070. {
  9071. name: "Normal",
  9072. height: math.unit(6, "feet"),
  9073. default: true
  9074. },
  9075. ]
  9076. ))
  9077. characterMakers.push(() => makeCharacter(
  9078. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9079. {
  9080. front: {
  9081. height: math.unit(6, "feet"),
  9082. weight: math.unit(264, "lb"),
  9083. name: "Front",
  9084. image: {
  9085. source: "./media/characters/hector/front.svg",
  9086. extra: 2280 / 2130,
  9087. bottom: 0.07
  9088. }
  9089. },
  9090. },
  9091. [
  9092. {
  9093. name: "Normal",
  9094. height: math.unit(12.25, "foot"),
  9095. default: true
  9096. },
  9097. {
  9098. name: "Macro",
  9099. height: math.unit(160, "feet")
  9100. },
  9101. ]
  9102. ))
  9103. characterMakers.push(() => makeCharacter(
  9104. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9105. {
  9106. front: {
  9107. height: math.unit(6, "feet"),
  9108. weight: math.unit(150, "lb"),
  9109. name: "Front",
  9110. image: {
  9111. source: "./media/characters/sal/front.svg",
  9112. extra: 1846 / 1699,
  9113. bottom: 0.04
  9114. }
  9115. },
  9116. },
  9117. [
  9118. {
  9119. name: "Megamacro",
  9120. height: math.unit(10, "miles"),
  9121. default: true
  9122. },
  9123. ]
  9124. ))
  9125. characterMakers.push(() => makeCharacter(
  9126. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9127. {
  9128. front: {
  9129. height: math.unit(3, "meters"),
  9130. weight: math.unit(450, "kg"),
  9131. name: "front",
  9132. image: {
  9133. source: "./media/characters/ranger/front.svg",
  9134. extra: 2401 / 2243,
  9135. bottom: 0.05
  9136. }
  9137. },
  9138. },
  9139. [
  9140. {
  9141. name: "Normal",
  9142. height: math.unit(3, "meters"),
  9143. default: true
  9144. },
  9145. ]
  9146. ))
  9147. characterMakers.push(() => makeCharacter(
  9148. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9149. {
  9150. front: {
  9151. height: math.unit(14, "feet"),
  9152. weight: math.unit(800, "kg"),
  9153. name: "Front",
  9154. image: {
  9155. source: "./media/characters/theresa/front.svg",
  9156. extra: 3575 / 3346,
  9157. bottom: 0.03
  9158. }
  9159. },
  9160. },
  9161. [
  9162. {
  9163. name: "Normal",
  9164. height: math.unit(14, "feet"),
  9165. default: true
  9166. },
  9167. ]
  9168. ))
  9169. characterMakers.push(() => makeCharacter(
  9170. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9171. {
  9172. front: {
  9173. height: math.unit(6, "feet"),
  9174. weight: math.unit(3, "kg"),
  9175. name: "Front",
  9176. image: {
  9177. source: "./media/characters/ine/front.svg",
  9178. extra: 678 / 539,
  9179. bottom: 0.023
  9180. }
  9181. },
  9182. },
  9183. [
  9184. {
  9185. name: "Normal",
  9186. height: math.unit(2.265, "feet"),
  9187. default: true
  9188. },
  9189. ]
  9190. ))
  9191. characterMakers.push(() => makeCharacter(
  9192. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9193. {
  9194. front: {
  9195. height: math.unit(5, "feet"),
  9196. weight: math.unit(30, "kg"),
  9197. name: "Front",
  9198. image: {
  9199. source: "./media/characters/vial/front.svg",
  9200. extra: 1365 / 1277,
  9201. bottom: 0.04
  9202. }
  9203. },
  9204. },
  9205. [
  9206. {
  9207. name: "Normal",
  9208. height: math.unit(5, "feet"),
  9209. default: true
  9210. },
  9211. ]
  9212. ))
  9213. characterMakers.push(() => makeCharacter(
  9214. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9215. {
  9216. side: {
  9217. height: math.unit(3.4, "meters"),
  9218. weight: math.unit(1000, "lb"),
  9219. name: "Side",
  9220. image: {
  9221. source: "./media/characters/rovoska/side.svg",
  9222. extra: 4403 / 1515
  9223. }
  9224. },
  9225. },
  9226. [
  9227. {
  9228. name: "Normal",
  9229. height: math.unit(3.4, "meters"),
  9230. default: true
  9231. },
  9232. ]
  9233. ))
  9234. characterMakers.push(() => makeCharacter(
  9235. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9236. {
  9237. front: {
  9238. height: math.unit(8, "feet"),
  9239. weight: math.unit(315, "lb"),
  9240. name: "Front",
  9241. image: {
  9242. source: "./media/characters/gunner-rotthbauer/front.svg"
  9243. }
  9244. },
  9245. back: {
  9246. height: math.unit(8, "feet"),
  9247. weight: math.unit(315, "lb"),
  9248. name: "Back",
  9249. image: {
  9250. source: "./media/characters/gunner-rotthbauer/back.svg"
  9251. }
  9252. },
  9253. },
  9254. [
  9255. {
  9256. name: "Micro",
  9257. height: math.unit(3.5, "inches")
  9258. },
  9259. {
  9260. name: "Normal",
  9261. height: math.unit(8, "feet"),
  9262. default: true
  9263. },
  9264. {
  9265. name: "Macro",
  9266. height: math.unit(250, "feet")
  9267. },
  9268. {
  9269. name: "Megamacro",
  9270. height: math.unit(1, "AU")
  9271. },
  9272. ]
  9273. ))
  9274. characterMakers.push(() => makeCharacter(
  9275. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9276. {
  9277. front: {
  9278. height: math.unit(5 + 5 / 12, "feet"),
  9279. weight: math.unit(140, "lb"),
  9280. name: "Front",
  9281. image: {
  9282. source: "./media/characters/allatia/front.svg",
  9283. extra: 1227 / 1180,
  9284. bottom: 0.027
  9285. }
  9286. },
  9287. },
  9288. [
  9289. {
  9290. name: "Normal",
  9291. height: math.unit(5 + 5 / 12, "feet")
  9292. },
  9293. {
  9294. name: "Macro",
  9295. height: math.unit(250, "feet"),
  9296. default: true
  9297. },
  9298. {
  9299. name: "Megamacro",
  9300. height: math.unit(8, "miles")
  9301. }
  9302. ]
  9303. ))
  9304. characterMakers.push(() => makeCharacter(
  9305. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9306. {
  9307. front: {
  9308. height: math.unit(6, "feet"),
  9309. weight: math.unit(120, "lb"),
  9310. name: "Front",
  9311. image: {
  9312. source: "./media/characters/tene/front.svg",
  9313. extra: 1728 / 1578,
  9314. bottom: 0.022
  9315. }
  9316. },
  9317. stomping: {
  9318. height: math.unit(2.025, "meters"),
  9319. weight: math.unit(120, "lb"),
  9320. name: "Stomping",
  9321. image: {
  9322. source: "./media/characters/tene/stomping.svg",
  9323. extra: 938 / 873,
  9324. bottom: 0.01
  9325. }
  9326. },
  9327. sitting: {
  9328. height: math.unit(1, "meter"),
  9329. weight: math.unit(120, "lb"),
  9330. name: "Sitting",
  9331. image: {
  9332. source: "./media/characters/tene/sitting.svg",
  9333. extra: 437 / 415,
  9334. bottom: 0.1
  9335. }
  9336. },
  9337. feral: {
  9338. height: math.unit(3.9, "feet"),
  9339. weight: math.unit(250, "lb"),
  9340. name: "Feral",
  9341. image: {
  9342. source: "./media/characters/tene/feral.svg",
  9343. extra: 717 / 458,
  9344. bottom: 0.179
  9345. }
  9346. },
  9347. },
  9348. [
  9349. {
  9350. name: "Normal",
  9351. height: math.unit(6, "feet")
  9352. },
  9353. {
  9354. name: "Macro",
  9355. height: math.unit(300, "feet"),
  9356. default: true
  9357. },
  9358. {
  9359. name: "Megamacro",
  9360. height: math.unit(5, "miles")
  9361. },
  9362. ]
  9363. ))
  9364. characterMakers.push(() => makeCharacter(
  9365. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9366. {
  9367. side: {
  9368. height: math.unit(6, "feet"),
  9369. name: "Side",
  9370. image: {
  9371. source: "./media/characters/evander/side.svg",
  9372. extra: 877 / 477
  9373. }
  9374. },
  9375. },
  9376. [
  9377. {
  9378. name: "Normal",
  9379. height: math.unit(0.83, "meters"),
  9380. default: true
  9381. },
  9382. ]
  9383. ))
  9384. characterMakers.push(() => makeCharacter(
  9385. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9386. {
  9387. front: {
  9388. height: math.unit(12, "feet"),
  9389. weight: math.unit(1000, "lb"),
  9390. name: "Front",
  9391. image: {
  9392. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9393. extra: 1762 / 1611
  9394. }
  9395. },
  9396. back: {
  9397. height: math.unit(12, "feet"),
  9398. weight: math.unit(1000, "lb"),
  9399. name: "Back",
  9400. image: {
  9401. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9402. extra: 1762 / 1611
  9403. }
  9404. },
  9405. },
  9406. [
  9407. {
  9408. name: "Normal",
  9409. height: math.unit(12, "feet"),
  9410. default: true
  9411. },
  9412. {
  9413. name: "Kaiju",
  9414. height: math.unit(150, "feet")
  9415. },
  9416. ]
  9417. ))
  9418. characterMakers.push(() => makeCharacter(
  9419. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9420. {
  9421. front: {
  9422. height: math.unit(6, "feet"),
  9423. weight: math.unit(150, "lb"),
  9424. name: "Front",
  9425. image: {
  9426. source: "./media/characters/zero-alurus/front.svg"
  9427. }
  9428. },
  9429. back: {
  9430. height: math.unit(6, "feet"),
  9431. weight: math.unit(150, "lb"),
  9432. name: "Back",
  9433. image: {
  9434. source: "./media/characters/zero-alurus/back.svg"
  9435. }
  9436. },
  9437. },
  9438. [
  9439. {
  9440. name: "Normal",
  9441. height: math.unit(5 + 10 / 12, "feet")
  9442. },
  9443. {
  9444. name: "Macro",
  9445. height: math.unit(60, "feet"),
  9446. default: true
  9447. },
  9448. {
  9449. name: "Macro+",
  9450. height: math.unit(450, "feet")
  9451. },
  9452. ]
  9453. ))
  9454. characterMakers.push(() => makeCharacter(
  9455. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9456. {
  9457. front: {
  9458. height: math.unit(6, "feet"),
  9459. weight: math.unit(200, "lb"),
  9460. name: "Front",
  9461. image: {
  9462. source: "./media/characters/mega-shi/front.svg",
  9463. extra: 1279 / 1250,
  9464. bottom: 0.02
  9465. }
  9466. },
  9467. back: {
  9468. height: math.unit(6, "feet"),
  9469. weight: math.unit(200, "lb"),
  9470. name: "Back",
  9471. image: {
  9472. source: "./media/characters/mega-shi/back.svg",
  9473. extra: 1279 / 1250,
  9474. bottom: 0.02
  9475. }
  9476. },
  9477. },
  9478. [
  9479. {
  9480. name: "Micro",
  9481. height: math.unit(16 + 6 / 12, "feet")
  9482. },
  9483. {
  9484. name: "Third Dimension",
  9485. height: math.unit(40, "meters")
  9486. },
  9487. {
  9488. name: "Normal",
  9489. height: math.unit(660, "feet"),
  9490. default: true
  9491. },
  9492. {
  9493. name: "Megamacro",
  9494. height: math.unit(10, "miles")
  9495. },
  9496. {
  9497. name: "Planetary Launch",
  9498. height: math.unit(500, "miles")
  9499. },
  9500. {
  9501. name: "Interstellar",
  9502. height: math.unit(1e9, "miles")
  9503. },
  9504. {
  9505. name: "Leaving the Universe",
  9506. height: math.unit(1, "gigaparsec")
  9507. },
  9508. {
  9509. name: "Travelling Universes",
  9510. height: math.unit(30e15, "parsecs")
  9511. },
  9512. ]
  9513. ))
  9514. characterMakers.push(() => makeCharacter(
  9515. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9516. {
  9517. front: {
  9518. height: math.unit(6, "feet"),
  9519. weight: math.unit(150, "lb"),
  9520. name: "Front",
  9521. image: {
  9522. source: "./media/characters/odyssey/front.svg",
  9523. extra: 1782 / 1582,
  9524. bottom: 0.01
  9525. }
  9526. },
  9527. side: {
  9528. height: math.unit(5.7, "feet"),
  9529. weight: math.unit(140, "lb"),
  9530. name: "Side",
  9531. image: {
  9532. source: "./media/characters/odyssey/side.svg",
  9533. extra: 6462 / 5700
  9534. }
  9535. },
  9536. },
  9537. [
  9538. {
  9539. name: "Normal",
  9540. height: math.unit(5 + 4 / 12, "feet")
  9541. },
  9542. {
  9543. name: "Macro",
  9544. height: math.unit(1, "km")
  9545. },
  9546. {
  9547. name: "Megamacro",
  9548. height: math.unit(3000, "km")
  9549. },
  9550. {
  9551. name: "Gigamacro",
  9552. height: math.unit(1, "AU"),
  9553. default: true
  9554. },
  9555. {
  9556. name: "Omniversal",
  9557. height: math.unit(100e14, "lightyears")
  9558. },
  9559. ]
  9560. ))
  9561. characterMakers.push(() => makeCharacter(
  9562. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9563. {
  9564. front: {
  9565. height: math.unit(6, "feet"),
  9566. weight: math.unit(300, "lb"),
  9567. name: "Front",
  9568. image: {
  9569. source: "./media/characters/mekuto/front.svg",
  9570. extra: 921 / 832,
  9571. bottom: 0.03
  9572. }
  9573. },
  9574. hand: {
  9575. height: math.unit(6 / 10.24, "feet"),
  9576. name: "Hand",
  9577. image: {
  9578. source: "./media/characters/mekuto/hand.svg"
  9579. }
  9580. },
  9581. foot: {
  9582. height: math.unit(6 / 5.05, "feet"),
  9583. name: "Foot",
  9584. image: {
  9585. source: "./media/characters/mekuto/foot.svg"
  9586. }
  9587. },
  9588. },
  9589. [
  9590. {
  9591. name: "Minimicro",
  9592. height: math.unit(0.2, "inches")
  9593. },
  9594. {
  9595. name: "Micro",
  9596. height: math.unit(1.5, "inches")
  9597. },
  9598. {
  9599. name: "Normal",
  9600. height: math.unit(5 + 11 / 12, "feet"),
  9601. default: true
  9602. },
  9603. {
  9604. name: "Minimacro",
  9605. height: math.unit(17 + 9 / 12, "feet")
  9606. },
  9607. {
  9608. name: "Macro",
  9609. height: math.unit(177.5, "feet")
  9610. },
  9611. {
  9612. name: "Megamacro",
  9613. height: math.unit(152, "miles")
  9614. },
  9615. ]
  9616. ))
  9617. characterMakers.push(() => makeCharacter(
  9618. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9619. {
  9620. front: {
  9621. height: math.unit(6.5, "inches"),
  9622. weight: math.unit(13, "oz"),
  9623. name: "Front",
  9624. image: {
  9625. source: "./media/characters/dafydd-tomos/front.svg",
  9626. extra: 2990 / 2603,
  9627. bottom: 0.03
  9628. }
  9629. },
  9630. },
  9631. [
  9632. {
  9633. name: "Micro",
  9634. height: math.unit(6.5, "inches"),
  9635. default: true
  9636. },
  9637. ]
  9638. ))
  9639. characterMakers.push(() => makeCharacter(
  9640. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9641. {
  9642. front: {
  9643. height: math.unit(6, "feet"),
  9644. weight: math.unit(150, "lb"),
  9645. name: "Front",
  9646. image: {
  9647. source: "./media/characters/splinter/front.svg",
  9648. extra: 2990 / 2882,
  9649. bottom: 0.04
  9650. }
  9651. },
  9652. back: {
  9653. height: math.unit(6, "feet"),
  9654. weight: math.unit(150, "lb"),
  9655. name: "Back",
  9656. image: {
  9657. source: "./media/characters/splinter/back.svg",
  9658. extra: 2990 / 2882,
  9659. bottom: 0.04
  9660. }
  9661. },
  9662. },
  9663. [
  9664. {
  9665. name: "Normal",
  9666. height: math.unit(6, "feet")
  9667. },
  9668. {
  9669. name: "Macro",
  9670. height: math.unit(230, "meters"),
  9671. default: true
  9672. },
  9673. ]
  9674. ))
  9675. characterMakers.push(() => makeCharacter(
  9676. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9677. {
  9678. front: {
  9679. height: math.unit(4 + 10 / 12, "feet"),
  9680. weight: math.unit(480, "lb"),
  9681. name: "Front",
  9682. image: {
  9683. source: "./media/characters/snow-gabumon/front.svg",
  9684. extra: 1140 / 963,
  9685. bottom: 0.058
  9686. }
  9687. },
  9688. back: {
  9689. height: math.unit(4 + 10 / 12, "feet"),
  9690. weight: math.unit(480, "lb"),
  9691. name: "Back",
  9692. image: {
  9693. source: "./media/characters/snow-gabumon/back.svg",
  9694. extra: 1115 / 962,
  9695. bottom: 0.041
  9696. }
  9697. },
  9698. frontUndresed: {
  9699. height: math.unit(4 + 10 / 12, "feet"),
  9700. weight: math.unit(480, "lb"),
  9701. name: "Front (Undressed)",
  9702. image: {
  9703. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9704. extra: 1061 / 960,
  9705. bottom: 0.045
  9706. }
  9707. },
  9708. },
  9709. [
  9710. {
  9711. name: "Micro",
  9712. height: math.unit(1, "inch")
  9713. },
  9714. {
  9715. name: "Normal",
  9716. height: math.unit(4 + 10 / 12, "feet"),
  9717. default: true
  9718. },
  9719. {
  9720. name: "Macro",
  9721. height: math.unit(200, "feet")
  9722. },
  9723. {
  9724. name: "Megamacro",
  9725. height: math.unit(120, "miles")
  9726. },
  9727. {
  9728. name: "Gigamacro",
  9729. height: math.unit(9800, "miles")
  9730. },
  9731. ]
  9732. ))
  9733. characterMakers.push(() => makeCharacter(
  9734. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9735. {
  9736. front: {
  9737. height: math.unit(1.7, "meters"),
  9738. weight: math.unit(140, "lb"),
  9739. name: "Front",
  9740. image: {
  9741. source: "./media/characters/moody/front.svg",
  9742. extra: 3226 / 3007,
  9743. bottom: 0.087
  9744. }
  9745. },
  9746. },
  9747. [
  9748. {
  9749. name: "Micro",
  9750. height: math.unit(1, "mm")
  9751. },
  9752. {
  9753. name: "Normal",
  9754. height: math.unit(1.7, "meters"),
  9755. default: true
  9756. },
  9757. {
  9758. name: "Macro",
  9759. height: math.unit(80, "meters")
  9760. },
  9761. {
  9762. name: "Macro+",
  9763. height: math.unit(500, "meters")
  9764. },
  9765. ]
  9766. ))
  9767. characterMakers.push(() => makeCharacter(
  9768. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9769. {
  9770. front: {
  9771. height: math.unit(6, "feet"),
  9772. weight: math.unit(150, "lb"),
  9773. name: "Front",
  9774. image: {
  9775. source: "./media/characters/zyas/front.svg",
  9776. extra: 1180 / 1120,
  9777. bottom: 0.045
  9778. }
  9779. },
  9780. },
  9781. [
  9782. {
  9783. name: "Normal",
  9784. height: math.unit(10, "feet"),
  9785. default: true
  9786. },
  9787. {
  9788. name: "Macro",
  9789. height: math.unit(500, "feet")
  9790. },
  9791. {
  9792. name: "Megamacro",
  9793. height: math.unit(5, "miles")
  9794. },
  9795. {
  9796. name: "Teramacro",
  9797. height: math.unit(150000, "miles")
  9798. },
  9799. ]
  9800. ))
  9801. characterMakers.push(() => makeCharacter(
  9802. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9803. {
  9804. front: {
  9805. height: math.unit(6, "feet"),
  9806. weight: math.unit(150, "lb"),
  9807. name: "Front",
  9808. image: {
  9809. source: "./media/characters/cuon/front.svg",
  9810. extra: 1390 / 1320,
  9811. bottom: 0.008
  9812. }
  9813. },
  9814. },
  9815. [
  9816. {
  9817. name: "Micro",
  9818. height: math.unit(3, "inches")
  9819. },
  9820. {
  9821. name: "Normal",
  9822. height: math.unit(18 + 9 / 12, "feet"),
  9823. default: true
  9824. },
  9825. {
  9826. name: "Macro",
  9827. height: math.unit(360, "feet")
  9828. },
  9829. {
  9830. name: "Megamacro",
  9831. height: math.unit(360, "miles")
  9832. },
  9833. ]
  9834. ))
  9835. characterMakers.push(() => makeCharacter(
  9836. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9837. {
  9838. front: {
  9839. height: math.unit(2.4, "meters"),
  9840. weight: math.unit(70, "kg"),
  9841. name: "Front",
  9842. image: {
  9843. source: "./media/characters/nyanuxk/front.svg",
  9844. extra: 1172 / 1084,
  9845. bottom: 0.065
  9846. }
  9847. },
  9848. side: {
  9849. height: math.unit(2.4, "meters"),
  9850. weight: math.unit(70, "kg"),
  9851. name: "Side",
  9852. image: {
  9853. source: "./media/characters/nyanuxk/side.svg",
  9854. extra: 1190 / 1132,
  9855. bottom: 0.007
  9856. }
  9857. },
  9858. back: {
  9859. height: math.unit(2.4, "meters"),
  9860. weight: math.unit(70, "kg"),
  9861. name: "Back",
  9862. image: {
  9863. source: "./media/characters/nyanuxk/back.svg",
  9864. extra: 1200 / 1141,
  9865. bottom: 0.015
  9866. }
  9867. },
  9868. foot: {
  9869. height: math.unit(0.52, "meters"),
  9870. name: "Foot",
  9871. image: {
  9872. source: "./media/characters/nyanuxk/foot.svg"
  9873. }
  9874. },
  9875. },
  9876. [
  9877. {
  9878. name: "Micro",
  9879. height: math.unit(2, "cm")
  9880. },
  9881. {
  9882. name: "Normal",
  9883. height: math.unit(2.4, "meters"),
  9884. default: true
  9885. },
  9886. {
  9887. name: "Smaller Macro",
  9888. height: math.unit(120, "meters")
  9889. },
  9890. {
  9891. name: "Bigger Macro",
  9892. height: math.unit(1.2, "km")
  9893. },
  9894. {
  9895. name: "Megamacro",
  9896. height: math.unit(15, "kilometers")
  9897. },
  9898. {
  9899. name: "Gigamacro",
  9900. height: math.unit(2000, "km")
  9901. },
  9902. {
  9903. name: "Teramacro",
  9904. height: math.unit(500000, "km")
  9905. },
  9906. ]
  9907. ))
  9908. characterMakers.push(() => makeCharacter(
  9909. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9910. {
  9911. side: {
  9912. height: math.unit(6, "feet"),
  9913. name: "Side",
  9914. image: {
  9915. source: "./media/characters/ailbhe/side.svg",
  9916. extra: 757 / 464,
  9917. bottom: 0.041
  9918. }
  9919. },
  9920. },
  9921. [
  9922. {
  9923. name: "Normal",
  9924. height: math.unit(1.07, "meters"),
  9925. default: true
  9926. },
  9927. ]
  9928. ))
  9929. characterMakers.push(() => makeCharacter(
  9930. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9931. {
  9932. front: {
  9933. height: math.unit(6, "feet"),
  9934. weight: math.unit(120, "kg"),
  9935. name: "Front",
  9936. image: {
  9937. source: "./media/characters/zevulfius/front.svg",
  9938. extra: 965 / 903
  9939. }
  9940. },
  9941. side: {
  9942. height: math.unit(6, "feet"),
  9943. weight: math.unit(120, "kg"),
  9944. name: "Side",
  9945. image: {
  9946. source: "./media/characters/zevulfius/side.svg",
  9947. extra: 939 / 900
  9948. }
  9949. },
  9950. back: {
  9951. height: math.unit(6, "feet"),
  9952. weight: math.unit(120, "kg"),
  9953. name: "Back",
  9954. image: {
  9955. source: "./media/characters/zevulfius/back.svg",
  9956. extra: 918 / 854,
  9957. bottom: 0.005
  9958. }
  9959. },
  9960. foot: {
  9961. height: math.unit(6 / 3.72, "feet"),
  9962. name: "Foot",
  9963. image: {
  9964. source: "./media/characters/zevulfius/foot.svg"
  9965. }
  9966. },
  9967. },
  9968. [
  9969. {
  9970. name: "Macro",
  9971. height: math.unit(750, "meters")
  9972. },
  9973. {
  9974. name: "Megamacro",
  9975. height: math.unit(20, "km"),
  9976. default: true
  9977. },
  9978. {
  9979. name: "Gigamacro",
  9980. height: math.unit(2000, "km")
  9981. },
  9982. {
  9983. name: "Teramacro",
  9984. height: math.unit(250000, "km")
  9985. },
  9986. ]
  9987. ))
  9988. characterMakers.push(() => makeCharacter(
  9989. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9990. {
  9991. front: {
  9992. height: math.unit(100, "feet"),
  9993. weight: math.unit(350, "kg"),
  9994. name: "Front",
  9995. image: {
  9996. source: "./media/characters/rikes/front.svg",
  9997. extra: 1565 / 1483,
  9998. bottom: 0.017
  9999. }
  10000. },
  10001. },
  10002. [
  10003. {
  10004. name: "Macro",
  10005. height: math.unit(100, "feet"),
  10006. default: true
  10007. },
  10008. ]
  10009. ))
  10010. characterMakers.push(() => makeCharacter(
  10011. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10012. {
  10013. anthro: {
  10014. height: math.unit(8, "feet"),
  10015. weight: math.unit(120, "kg"),
  10016. name: "Anthro",
  10017. image: {
  10018. source: "./media/characters/adam-silver-mane/anthro.svg",
  10019. extra: 5743 / 5339,
  10020. bottom: 0.07
  10021. }
  10022. },
  10023. taur: {
  10024. height: math.unit(16, "feet"),
  10025. weight: math.unit(1500, "kg"),
  10026. name: "Taur",
  10027. image: {
  10028. source: "./media/characters/adam-silver-mane/taur.svg",
  10029. extra: 1713 / 1571,
  10030. bottom: 0.01
  10031. }
  10032. },
  10033. },
  10034. [
  10035. {
  10036. name: "Normal",
  10037. height: math.unit(8, "feet")
  10038. },
  10039. {
  10040. name: "Minimacro",
  10041. height: math.unit(80, "feet")
  10042. },
  10043. {
  10044. name: "Macro",
  10045. height: math.unit(800, "feet"),
  10046. default: true
  10047. },
  10048. {
  10049. name: "Megamacro",
  10050. height: math.unit(8000, "feet")
  10051. },
  10052. {
  10053. name: "Gigamacro",
  10054. height: math.unit(800, "miles")
  10055. },
  10056. {
  10057. name: "Teramacro",
  10058. height: math.unit(80000, "miles")
  10059. },
  10060. {
  10061. name: "Celestial",
  10062. height: math.unit(8e6, "miles")
  10063. },
  10064. {
  10065. name: "Star Dragon",
  10066. height: math.unit(800000, "parsecs")
  10067. },
  10068. {
  10069. name: "Godly",
  10070. height: math.unit(800, "teraparsecs")
  10071. },
  10072. ]
  10073. ))
  10074. characterMakers.push(() => makeCharacter(
  10075. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10076. {
  10077. front: {
  10078. height: math.unit(6, "feet"),
  10079. weight: math.unit(150, "lb"),
  10080. name: "Front",
  10081. image: {
  10082. source: "./media/characters/ky'owin/front.svg",
  10083. extra: 3888 / 3068,
  10084. bottom: 0.015
  10085. }
  10086. },
  10087. },
  10088. [
  10089. {
  10090. name: "Normal",
  10091. height: math.unit(6 + 8 / 12, "feet")
  10092. },
  10093. {
  10094. name: "Large",
  10095. height: math.unit(68, "feet")
  10096. },
  10097. {
  10098. name: "Macro",
  10099. height: math.unit(132, "feet")
  10100. },
  10101. {
  10102. name: "Macro+",
  10103. height: math.unit(340, "feet")
  10104. },
  10105. {
  10106. name: "Macro++",
  10107. height: math.unit(680, "feet"),
  10108. default: true
  10109. },
  10110. {
  10111. name: "Megamacro",
  10112. height: math.unit(1, "mile")
  10113. },
  10114. {
  10115. name: "Megamacro+",
  10116. height: math.unit(10, "miles")
  10117. },
  10118. ]
  10119. ))
  10120. characterMakers.push(() => makeCharacter(
  10121. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10122. {
  10123. front: {
  10124. height: math.unit(4, "feet"),
  10125. weight: math.unit(50, "lb"),
  10126. name: "Front",
  10127. image: {
  10128. source: "./media/characters/mal/front.svg",
  10129. extra: 785 / 724,
  10130. bottom: 0.07
  10131. }
  10132. },
  10133. },
  10134. [
  10135. {
  10136. name: "Micro",
  10137. height: math.unit(4, "inches")
  10138. },
  10139. {
  10140. name: "Normal",
  10141. height: math.unit(4, "feet"),
  10142. default: true
  10143. },
  10144. {
  10145. name: "Macro",
  10146. height: math.unit(200, "feet")
  10147. },
  10148. ]
  10149. ))
  10150. characterMakers.push(() => makeCharacter(
  10151. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10152. {
  10153. front: {
  10154. height: math.unit(6, "feet"),
  10155. weight: math.unit(150, "lb"),
  10156. name: "Front",
  10157. image: {
  10158. source: "./media/characters/jordan-deware/front.svg",
  10159. extra: 1191 / 1012
  10160. }
  10161. },
  10162. },
  10163. [
  10164. {
  10165. name: "Nano",
  10166. height: math.unit(0.01, "mm")
  10167. },
  10168. {
  10169. name: "Minimicro",
  10170. height: math.unit(1, "mm")
  10171. },
  10172. {
  10173. name: "Micro",
  10174. height: math.unit(0.5, "inches")
  10175. },
  10176. {
  10177. name: "Normal",
  10178. height: math.unit(4, "feet"),
  10179. default: true
  10180. },
  10181. {
  10182. name: "Minimacro",
  10183. height: math.unit(40, "meters")
  10184. },
  10185. {
  10186. name: "Small Macro",
  10187. height: math.unit(400, "meters")
  10188. },
  10189. {
  10190. name: "Macro",
  10191. height: math.unit(4, "miles")
  10192. },
  10193. {
  10194. name: "Megamacro",
  10195. height: math.unit(40, "miles")
  10196. },
  10197. {
  10198. name: "Megamacro+",
  10199. height: math.unit(400, "miles")
  10200. },
  10201. {
  10202. name: "Gigamacro",
  10203. height: math.unit(400000, "miles")
  10204. },
  10205. ]
  10206. ))
  10207. characterMakers.push(() => makeCharacter(
  10208. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10209. {
  10210. side: {
  10211. height: math.unit(6, "feet"),
  10212. weight: math.unit(150, "lb"),
  10213. name: "Side",
  10214. image: {
  10215. source: "./media/characters/kimiko/side.svg",
  10216. extra: 600 / 358
  10217. }
  10218. },
  10219. },
  10220. [
  10221. {
  10222. name: "Normal",
  10223. height: math.unit(15, "feet"),
  10224. default: true
  10225. },
  10226. {
  10227. name: "Macro",
  10228. height: math.unit(220, "feet")
  10229. },
  10230. {
  10231. name: "Macro+",
  10232. height: math.unit(1450, "feet")
  10233. },
  10234. {
  10235. name: "Megamacro",
  10236. height: math.unit(11500, "feet")
  10237. },
  10238. {
  10239. name: "Gigamacro",
  10240. height: math.unit(9500, "miles")
  10241. },
  10242. {
  10243. name: "Teramacro",
  10244. height: math.unit(2208005005, "miles")
  10245. },
  10246. {
  10247. name: "Examacro",
  10248. height: math.unit(2750, "parsecs")
  10249. },
  10250. {
  10251. name: "Zettamacro",
  10252. height: math.unit(101500, "parsecs")
  10253. },
  10254. ]
  10255. ))
  10256. characterMakers.push(() => makeCharacter(
  10257. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10258. {
  10259. front: {
  10260. height: math.unit(6, "feet"),
  10261. weight: math.unit(70, "kg"),
  10262. name: "Front",
  10263. image: {
  10264. source: "./media/characters/andrew-sleepy/front.svg"
  10265. }
  10266. },
  10267. side: {
  10268. height: math.unit(6, "feet"),
  10269. weight: math.unit(70, "kg"),
  10270. name: "Side",
  10271. image: {
  10272. source: "./media/characters/andrew-sleepy/side.svg"
  10273. }
  10274. },
  10275. },
  10276. [
  10277. {
  10278. name: "Micro",
  10279. height: math.unit(1, "mm"),
  10280. default: true
  10281. },
  10282. ]
  10283. ))
  10284. characterMakers.push(() => makeCharacter(
  10285. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10286. {
  10287. front: {
  10288. height: math.unit(6, "feet"),
  10289. weight: math.unit(150, "lb"),
  10290. name: "Front",
  10291. image: {
  10292. source: "./media/characters/judio/front.svg",
  10293. extra: 1258 / 1110
  10294. }
  10295. },
  10296. },
  10297. [
  10298. {
  10299. name: "Normal",
  10300. height: math.unit(5 + 6 / 12, "feet")
  10301. },
  10302. {
  10303. name: "Macro",
  10304. height: math.unit(1000, "feet"),
  10305. default: true
  10306. },
  10307. {
  10308. name: "Megamacro",
  10309. height: math.unit(10, "miles")
  10310. },
  10311. ]
  10312. ))
  10313. characterMakers.push(() => makeCharacter(
  10314. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10315. {
  10316. front: {
  10317. height: math.unit(6, "feet"),
  10318. weight: math.unit(68, "kg"),
  10319. name: "Front",
  10320. image: {
  10321. source: "./media/characters/nomaxice/front.svg",
  10322. extra: 1498 / 1073,
  10323. bottom: 0.075
  10324. }
  10325. },
  10326. foot: {
  10327. height: math.unit(1.1, "feet"),
  10328. name: "Foot",
  10329. image: {
  10330. source: "./media/characters/nomaxice/foot.svg"
  10331. }
  10332. },
  10333. },
  10334. [
  10335. {
  10336. name: "Micro",
  10337. height: math.unit(8, "cm")
  10338. },
  10339. {
  10340. name: "Norm",
  10341. height: math.unit(1.82, "m")
  10342. },
  10343. {
  10344. name: "Norm+",
  10345. height: math.unit(8.8, "feet")
  10346. },
  10347. {
  10348. name: "Big",
  10349. height: math.unit(8, "meters"),
  10350. default: true
  10351. },
  10352. {
  10353. name: "Macro",
  10354. height: math.unit(18, "meters")
  10355. },
  10356. {
  10357. name: "Macro+",
  10358. height: math.unit(88, "meters")
  10359. },
  10360. ]
  10361. ))
  10362. characterMakers.push(() => makeCharacter(
  10363. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10364. {
  10365. front: {
  10366. height: math.unit(12, "feet"),
  10367. weight: math.unit(1.5, "tons"),
  10368. name: "Front",
  10369. image: {
  10370. source: "./media/characters/dydros/front.svg",
  10371. extra: 863 / 800,
  10372. bottom: 0.015
  10373. }
  10374. },
  10375. back: {
  10376. height: math.unit(12, "feet"),
  10377. weight: math.unit(1.5, "tons"),
  10378. name: "Back",
  10379. image: {
  10380. source: "./media/characters/dydros/back.svg",
  10381. extra: 900 / 843,
  10382. bottom: 0.005
  10383. }
  10384. },
  10385. },
  10386. [
  10387. {
  10388. name: "Normal",
  10389. height: math.unit(12, "feet"),
  10390. default: true
  10391. },
  10392. ]
  10393. ))
  10394. characterMakers.push(() => makeCharacter(
  10395. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10396. {
  10397. front: {
  10398. height: math.unit(6, "feet"),
  10399. weight: math.unit(100, "kg"),
  10400. name: "Front",
  10401. image: {
  10402. source: "./media/characters/riggi/front.svg",
  10403. extra: 5787 / 5303
  10404. }
  10405. },
  10406. hyper: {
  10407. height: math.unit(6 * 5 / 3, "feet"),
  10408. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10409. name: "Hyper",
  10410. image: {
  10411. source: "./media/characters/riggi/hyper.svg",
  10412. extra: 3595 / 3485
  10413. }
  10414. },
  10415. },
  10416. [
  10417. {
  10418. name: "Small Macro",
  10419. height: math.unit(50, "feet")
  10420. },
  10421. {
  10422. name: "Default",
  10423. height: math.unit(200, "feet"),
  10424. default: true
  10425. },
  10426. {
  10427. name: "Loom",
  10428. height: math.unit(10000, "feet")
  10429. },
  10430. {
  10431. name: "Cruising Altitude",
  10432. height: math.unit(30000, "feet")
  10433. },
  10434. {
  10435. name: "Megamacro",
  10436. height: math.unit(100, "miles")
  10437. },
  10438. {
  10439. name: "Continent Sized",
  10440. height: math.unit(2800, "miles")
  10441. },
  10442. {
  10443. name: "Earth Sized",
  10444. height: math.unit(8000, "miles")
  10445. },
  10446. ]
  10447. ))
  10448. characterMakers.push(() => makeCharacter(
  10449. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10450. {
  10451. front: {
  10452. height: math.unit(6, "feet"),
  10453. weight: math.unit(250, "lb"),
  10454. name: "Front",
  10455. image: {
  10456. source: "./media/characters/alexi/front.svg",
  10457. extra: 3483 / 3291,
  10458. bottom: 0.04
  10459. }
  10460. },
  10461. back: {
  10462. height: math.unit(6, "feet"),
  10463. weight: math.unit(250, "lb"),
  10464. name: "Back",
  10465. image: {
  10466. source: "./media/characters/alexi/back.svg",
  10467. extra: 3533 / 3356,
  10468. bottom: 0.021
  10469. }
  10470. },
  10471. frontTransforming: {
  10472. height: math.unit(8.58, "feet"),
  10473. weight: math.unit(1300, "lb"),
  10474. name: "Transforming",
  10475. image: {
  10476. source: "./media/characters/alexi/front-transforming.svg",
  10477. extra: 437 / 409,
  10478. bottom: 19 / 458.66
  10479. }
  10480. },
  10481. frontTransformed: {
  10482. height: math.unit(12.5, "feet"),
  10483. weight: math.unit(4000, "lb"),
  10484. name: "Transformed",
  10485. image: {
  10486. source: "./media/characters/alexi/front-transformed.svg",
  10487. extra: 639 / 614,
  10488. bottom: 30.55 / 671
  10489. }
  10490. },
  10491. },
  10492. [
  10493. {
  10494. name: "Normal",
  10495. height: math.unit(14, "feet"),
  10496. default: true
  10497. },
  10498. {
  10499. name: "Minimacro",
  10500. height: math.unit(30, "meters")
  10501. },
  10502. {
  10503. name: "Macro",
  10504. height: math.unit(500, "meters")
  10505. },
  10506. {
  10507. name: "Megamacro",
  10508. height: math.unit(9000, "km")
  10509. },
  10510. {
  10511. name: "Teramacro",
  10512. height: math.unit(384000, "km")
  10513. },
  10514. ]
  10515. ))
  10516. characterMakers.push(() => makeCharacter(
  10517. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10518. {
  10519. front: {
  10520. height: math.unit(6, "feet"),
  10521. weight: math.unit(150, "lb"),
  10522. name: "Front",
  10523. image: {
  10524. source: "./media/characters/kayroo/front.svg",
  10525. extra: 1153 / 1038,
  10526. bottom: 0.06
  10527. }
  10528. },
  10529. foot: {
  10530. height: math.unit(6, "feet"),
  10531. weight: math.unit(150, "lb"),
  10532. name: "Foot",
  10533. image: {
  10534. source: "./media/characters/kayroo/foot.svg"
  10535. }
  10536. },
  10537. },
  10538. [
  10539. {
  10540. name: "Normal",
  10541. height: math.unit(8, "feet"),
  10542. default: true
  10543. },
  10544. {
  10545. name: "Minimacro",
  10546. height: math.unit(250, "feet")
  10547. },
  10548. {
  10549. name: "Macro",
  10550. height: math.unit(2800, "feet")
  10551. },
  10552. {
  10553. name: "Megamacro",
  10554. height: math.unit(5200, "feet")
  10555. },
  10556. {
  10557. name: "Gigamacro",
  10558. height: math.unit(27000, "feet")
  10559. },
  10560. {
  10561. name: "Omega",
  10562. height: math.unit(45000, "feet")
  10563. },
  10564. ]
  10565. ))
  10566. characterMakers.push(() => makeCharacter(
  10567. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10568. {
  10569. front: {
  10570. height: math.unit(18, "feet"),
  10571. weight: math.unit(5800, "lb"),
  10572. name: "Front",
  10573. image: {
  10574. source: "./media/characters/rhys/front.svg",
  10575. extra: 3386 / 3090,
  10576. bottom: 0.07
  10577. }
  10578. },
  10579. },
  10580. [
  10581. {
  10582. name: "Normal",
  10583. height: math.unit(18, "feet"),
  10584. default: true
  10585. },
  10586. {
  10587. name: "Working Size",
  10588. height: math.unit(200, "feet")
  10589. },
  10590. {
  10591. name: "Demolition Size",
  10592. height: math.unit(2000, "feet")
  10593. },
  10594. {
  10595. name: "Maximum Licensed Size",
  10596. height: math.unit(5, "miles")
  10597. },
  10598. {
  10599. name: "Maximum Observed Size",
  10600. height: math.unit(10, "yottameters")
  10601. },
  10602. ]
  10603. ))
  10604. characterMakers.push(() => makeCharacter(
  10605. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10606. {
  10607. front: {
  10608. height: math.unit(6, "feet"),
  10609. weight: math.unit(250, "lb"),
  10610. name: "Front",
  10611. image: {
  10612. source: "./media/characters/toto/front.svg",
  10613. extra: 527 / 479,
  10614. bottom: 0.05
  10615. }
  10616. },
  10617. },
  10618. [
  10619. {
  10620. name: "Micro",
  10621. height: math.unit(3, "feet")
  10622. },
  10623. {
  10624. name: "Normal",
  10625. height: math.unit(10, "feet")
  10626. },
  10627. {
  10628. name: "Macro",
  10629. height: math.unit(150, "feet"),
  10630. default: true
  10631. },
  10632. {
  10633. name: "Megamacro",
  10634. height: math.unit(1200, "feet")
  10635. },
  10636. ]
  10637. ))
  10638. characterMakers.push(() => makeCharacter(
  10639. { name: "King", species: ["lion"], tags: ["anthro"] },
  10640. {
  10641. back: {
  10642. height: math.unit(6, "feet"),
  10643. weight: math.unit(150, "lb"),
  10644. name: "Back",
  10645. image: {
  10646. source: "./media/characters/king/back.svg"
  10647. }
  10648. },
  10649. },
  10650. [
  10651. {
  10652. name: "Micro",
  10653. height: math.unit(2, "inches")
  10654. },
  10655. {
  10656. name: "Normal",
  10657. height: math.unit(8, "feet")
  10658. },
  10659. {
  10660. name: "Macro",
  10661. height: math.unit(200, "feet"),
  10662. default: true
  10663. },
  10664. {
  10665. name: "Megamacro",
  10666. height: math.unit(50, "miles")
  10667. },
  10668. ]
  10669. ))
  10670. characterMakers.push(() => makeCharacter(
  10671. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10672. {
  10673. anthro: {
  10674. height: math.unit(6 + 5 / 12, "feet"),
  10675. weight: math.unit(280, "lb"),
  10676. name: "Anthro",
  10677. image: {
  10678. source: "./media/characters/cordite/anthro.svg",
  10679. extra: 1986 / 1905,
  10680. bottom: 0.025
  10681. }
  10682. },
  10683. feral: {
  10684. height: math.unit(2, "feet"),
  10685. weight: math.unit(90, "lb"),
  10686. name: "Feral",
  10687. image: {
  10688. source: "./media/characters/cordite/feral.svg",
  10689. extra: 1260 / 755,
  10690. bottom: 0.05
  10691. }
  10692. },
  10693. },
  10694. [
  10695. {
  10696. name: "Normal",
  10697. height: math.unit(6 + 5 / 12, "feet"),
  10698. default: true
  10699. },
  10700. ]
  10701. ))
  10702. characterMakers.push(() => makeCharacter(
  10703. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10704. {
  10705. front: {
  10706. height: math.unit(6, "feet"),
  10707. weight: math.unit(150, "lb"),
  10708. name: "Front",
  10709. image: {
  10710. source: "./media/characters/pianostrong/front.svg",
  10711. extra: 6577 / 6254,
  10712. bottom: 0.02
  10713. }
  10714. },
  10715. side: {
  10716. height: math.unit(6, "feet"),
  10717. weight: math.unit(150, "lb"),
  10718. name: "Side",
  10719. image: {
  10720. source: "./media/characters/pianostrong/side.svg",
  10721. extra: 6106 / 5730
  10722. }
  10723. },
  10724. back: {
  10725. height: math.unit(6, "feet"),
  10726. weight: math.unit(150, "lb"),
  10727. name: "Back",
  10728. image: {
  10729. source: "./media/characters/pianostrong/back.svg",
  10730. extra: 6085 / 5733,
  10731. bottom: 0.01
  10732. }
  10733. },
  10734. },
  10735. [
  10736. {
  10737. name: "Macro",
  10738. height: math.unit(100, "feet")
  10739. },
  10740. {
  10741. name: "Macro+",
  10742. height: math.unit(300, "feet"),
  10743. default: true
  10744. },
  10745. {
  10746. name: "Macro++",
  10747. height: math.unit(1000, "feet")
  10748. },
  10749. ]
  10750. ))
  10751. characterMakers.push(() => makeCharacter(
  10752. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10753. {
  10754. front: {
  10755. height: math.unit(6, "feet"),
  10756. weight: math.unit(150, "lb"),
  10757. name: "Front",
  10758. image: {
  10759. source: "./media/characters/kona/front.svg",
  10760. extra: 2960 / 2629,
  10761. bottom: 0.005
  10762. }
  10763. },
  10764. },
  10765. [
  10766. {
  10767. name: "Normal",
  10768. height: math.unit(11 + 8 / 12, "feet")
  10769. },
  10770. {
  10771. name: "Macro",
  10772. height: math.unit(850, "feet"),
  10773. default: true
  10774. },
  10775. {
  10776. name: "Macro+",
  10777. height: math.unit(1.5, "km"),
  10778. default: true
  10779. },
  10780. {
  10781. name: "Megamacro",
  10782. height: math.unit(80, "miles")
  10783. },
  10784. {
  10785. name: "Gigamacro",
  10786. height: math.unit(3500, "miles")
  10787. },
  10788. ]
  10789. ))
  10790. characterMakers.push(() => makeCharacter(
  10791. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10792. {
  10793. side: {
  10794. height: math.unit(1.9, "meters"),
  10795. weight: math.unit(326, "kg"),
  10796. name: "Side",
  10797. image: {
  10798. source: "./media/characters/levi/side.svg",
  10799. extra: 1704 / 1334,
  10800. bottom: 0.02
  10801. }
  10802. },
  10803. },
  10804. [
  10805. {
  10806. name: "Normal",
  10807. height: math.unit(1.9, "meters"),
  10808. default: true
  10809. },
  10810. {
  10811. name: "Macro",
  10812. height: math.unit(20, "meters")
  10813. },
  10814. {
  10815. name: "Macro+",
  10816. height: math.unit(200, "meters")
  10817. },
  10818. {
  10819. name: "Megamacro",
  10820. height: math.unit(2, "km")
  10821. },
  10822. {
  10823. name: "Megamacro+",
  10824. height: math.unit(20, "km")
  10825. },
  10826. {
  10827. name: "Gigamacro",
  10828. height: math.unit(2500, "km")
  10829. },
  10830. {
  10831. name: "Gigamacro+",
  10832. height: math.unit(120000, "km")
  10833. },
  10834. {
  10835. name: "Teramacro",
  10836. height: math.unit(7.77e6, "km")
  10837. },
  10838. ]
  10839. ))
  10840. characterMakers.push(() => makeCharacter(
  10841. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10842. {
  10843. front: {
  10844. height: math.unit(6 + 4 / 12, "feet"),
  10845. weight: math.unit(188, "lb"),
  10846. name: "Front",
  10847. image: {
  10848. source: "./media/characters/bmc/front.svg",
  10849. extra: 1067 / 1022,
  10850. bottom: 0.047
  10851. }
  10852. },
  10853. },
  10854. [
  10855. {
  10856. name: "Human-sized",
  10857. height: math.unit(6 + 4 / 12, "feet")
  10858. },
  10859. {
  10860. name: "Small",
  10861. height: math.unit(250, "feet")
  10862. },
  10863. {
  10864. name: "Normal",
  10865. height: math.unit(1250, "feet"),
  10866. default: true
  10867. },
  10868. {
  10869. name: "Good Day",
  10870. height: math.unit(88, "miles")
  10871. },
  10872. {
  10873. name: "Largest Measured Size",
  10874. height: math.unit(11.2e6, "lightyears")
  10875. },
  10876. ]
  10877. ))
  10878. characterMakers.push(() => makeCharacter(
  10879. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10880. {
  10881. front: {
  10882. height: math.unit(20, "feet"),
  10883. weight: math.unit(2016, "kg"),
  10884. name: "Front",
  10885. image: {
  10886. source: "./media/characters/sven-the-kaiju/front.svg",
  10887. extra: 1479 / 1449,
  10888. bottom: 0.05
  10889. }
  10890. },
  10891. },
  10892. [
  10893. {
  10894. name: "Fairy",
  10895. height: math.unit(6, "inches")
  10896. },
  10897. {
  10898. name: "Normal",
  10899. height: math.unit(20, "feet"),
  10900. default: true
  10901. },
  10902. {
  10903. name: "Rampage",
  10904. height: math.unit(200, "feet")
  10905. },
  10906. {
  10907. name: "Archfey Forest Guardian",
  10908. height: math.unit(1, "mile")
  10909. },
  10910. ]
  10911. ))
  10912. characterMakers.push(() => makeCharacter(
  10913. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10914. {
  10915. front: {
  10916. height: math.unit(4, "meters"),
  10917. weight: math.unit(2, "tons"),
  10918. name: "Front",
  10919. image: {
  10920. source: "./media/characters/marik/front.svg",
  10921. extra: 1057 / 1003,
  10922. bottom: 0.08
  10923. }
  10924. },
  10925. },
  10926. [
  10927. {
  10928. name: "Normal",
  10929. height: math.unit(4, "meters"),
  10930. default: true
  10931. },
  10932. {
  10933. name: "Macro",
  10934. height: math.unit(20, "meters")
  10935. },
  10936. {
  10937. name: "Megamacro",
  10938. height: math.unit(50, "km")
  10939. },
  10940. {
  10941. name: "Gigamacro",
  10942. height: math.unit(100, "km")
  10943. },
  10944. {
  10945. name: "Alpha Macro",
  10946. height: math.unit(7.88e7, "yottameters")
  10947. },
  10948. ]
  10949. ))
  10950. characterMakers.push(() => makeCharacter(
  10951. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10952. {
  10953. front: {
  10954. height: math.unit(6, "feet"),
  10955. weight: math.unit(110, "lb"),
  10956. name: "Front",
  10957. image: {
  10958. source: "./media/characters/mel/front.svg",
  10959. extra: 736 / 617,
  10960. bottom: 0.017
  10961. }
  10962. },
  10963. },
  10964. [
  10965. {
  10966. name: "Pico",
  10967. height: math.unit(3, "pm")
  10968. },
  10969. {
  10970. name: "Nano",
  10971. height: math.unit(3, "nm")
  10972. },
  10973. {
  10974. name: "Micro",
  10975. height: math.unit(0.3, "mm"),
  10976. default: true
  10977. },
  10978. {
  10979. name: "Micro+",
  10980. height: math.unit(3, "mm")
  10981. },
  10982. {
  10983. name: "Normal",
  10984. height: math.unit(5 + 10.5 / 12, "feet")
  10985. },
  10986. ]
  10987. ))
  10988. characterMakers.push(() => makeCharacter(
  10989. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10990. {
  10991. kaiju: {
  10992. height: math.unit(1.75, "meters"),
  10993. weight: math.unit(55, "kg"),
  10994. name: "Kaiju",
  10995. image: {
  10996. source: "./media/characters/lykonous/kaiju.svg",
  10997. extra: 1055 / 946,
  10998. bottom: 0.135
  10999. }
  11000. },
  11001. },
  11002. [
  11003. {
  11004. name: "Normal",
  11005. height: math.unit(2.5, "meters"),
  11006. default: true
  11007. },
  11008. {
  11009. name: "Kaiju Dragon",
  11010. height: math.unit(60, "meters")
  11011. },
  11012. {
  11013. name: "Mega Kaiju",
  11014. height: math.unit(120, "km")
  11015. },
  11016. {
  11017. name: "Giga Kaiju",
  11018. height: math.unit(200, "megameters")
  11019. },
  11020. {
  11021. name: "Terra Kaiju",
  11022. height: math.unit(400, "gigameters")
  11023. },
  11024. {
  11025. name: "Kaiju Dragon God",
  11026. height: math.unit(13000, "exaparsecs")
  11027. },
  11028. ]
  11029. ))
  11030. characterMakers.push(() => makeCharacter(
  11031. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11032. {
  11033. front: {
  11034. height: math.unit(6, "feet"),
  11035. weight: math.unit(150, "lb"),
  11036. name: "Front",
  11037. image: {
  11038. source: "./media/characters/blü/front.svg",
  11039. extra: 1883 / 1564,
  11040. bottom: 0.031
  11041. }
  11042. },
  11043. },
  11044. [
  11045. {
  11046. name: "Normal",
  11047. height: math.unit(13, "feet"),
  11048. default: true
  11049. },
  11050. {
  11051. name: "Big Boi",
  11052. height: math.unit(150, "meters")
  11053. },
  11054. {
  11055. name: "Mini Stomper",
  11056. height: math.unit(300, "meters")
  11057. },
  11058. {
  11059. name: "Macro",
  11060. height: math.unit(1000, "meters")
  11061. },
  11062. {
  11063. name: "Megamacro",
  11064. height: math.unit(11000, "meters")
  11065. },
  11066. {
  11067. name: "Gigamacro",
  11068. height: math.unit(11000, "km")
  11069. },
  11070. {
  11071. name: "Teramacro",
  11072. height: math.unit(420000, "km")
  11073. },
  11074. {
  11075. name: "Examacro",
  11076. height: math.unit(120, "parsecs")
  11077. },
  11078. {
  11079. name: "God Tho",
  11080. height: math.unit(98000000000, "parsecs")
  11081. },
  11082. ]
  11083. ))
  11084. characterMakers.push(() => makeCharacter(
  11085. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11086. {
  11087. taurFront: {
  11088. height: math.unit(6, "feet"),
  11089. weight: math.unit(200, "lb"),
  11090. name: "Taur (Front)",
  11091. image: {
  11092. source: "./media/characters/scales/taur-front.svg",
  11093. extra: 1,
  11094. bottom: 0.05
  11095. }
  11096. },
  11097. taurBack: {
  11098. height: math.unit(6, "feet"),
  11099. weight: math.unit(200, "lb"),
  11100. name: "Taur (Back)",
  11101. image: {
  11102. source: "./media/characters/scales/taur-back.svg",
  11103. extra: 1,
  11104. bottom: 0.08
  11105. }
  11106. },
  11107. anthro: {
  11108. height: math.unit(6 * 7 / 12, "feet"),
  11109. weight: math.unit(100, "lb"),
  11110. name: "Anthro",
  11111. image: {
  11112. source: "./media/characters/scales/anthro.svg",
  11113. extra: 1,
  11114. bottom: 0.06
  11115. }
  11116. },
  11117. },
  11118. [
  11119. {
  11120. name: "Normal",
  11121. height: math.unit(12, "feet"),
  11122. default: true
  11123. },
  11124. ]
  11125. ))
  11126. characterMakers.push(() => makeCharacter(
  11127. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11128. {
  11129. front: {
  11130. height: math.unit(6, "feet"),
  11131. weight: math.unit(150, "lb"),
  11132. name: "Front",
  11133. image: {
  11134. source: "./media/characters/koragos/front.svg",
  11135. extra: 841 / 794,
  11136. bottom: 0.035
  11137. }
  11138. },
  11139. back: {
  11140. height: math.unit(6, "feet"),
  11141. weight: math.unit(150, "lb"),
  11142. name: "Back",
  11143. image: {
  11144. source: "./media/characters/koragos/back.svg",
  11145. extra: 841 / 810,
  11146. bottom: 0.022
  11147. }
  11148. },
  11149. },
  11150. [
  11151. {
  11152. name: "Normal",
  11153. height: math.unit(6 + 11 / 12, "feet"),
  11154. default: true
  11155. },
  11156. {
  11157. name: "Macro",
  11158. height: math.unit(490, "feet")
  11159. },
  11160. {
  11161. name: "Megamacro",
  11162. height: math.unit(10, "miles")
  11163. },
  11164. {
  11165. name: "Gigamacro",
  11166. height: math.unit(50, "miles")
  11167. },
  11168. ]
  11169. ))
  11170. characterMakers.push(() => makeCharacter(
  11171. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11172. {
  11173. front: {
  11174. height: math.unit(6, "feet"),
  11175. weight: math.unit(250, "lb"),
  11176. name: "Front",
  11177. image: {
  11178. source: "./media/characters/xylrem/front.svg",
  11179. extra: 3323 / 3050,
  11180. bottom: 0.065
  11181. }
  11182. },
  11183. },
  11184. [
  11185. {
  11186. name: "Micro",
  11187. height: math.unit(4, "feet")
  11188. },
  11189. {
  11190. name: "Normal",
  11191. height: math.unit(16, "feet"),
  11192. default: true
  11193. },
  11194. {
  11195. name: "Macro",
  11196. height: math.unit(2720, "feet")
  11197. },
  11198. {
  11199. name: "Megamacro",
  11200. height: math.unit(25000, "miles")
  11201. },
  11202. ]
  11203. ))
  11204. characterMakers.push(() => makeCharacter(
  11205. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11206. {
  11207. front: {
  11208. height: math.unit(8, "feet"),
  11209. weight: math.unit(250, "kg"),
  11210. name: "Front",
  11211. image: {
  11212. source: "./media/characters/ikideru/front.svg",
  11213. extra: 930 / 870,
  11214. bottom: 0.087
  11215. }
  11216. },
  11217. back: {
  11218. height: math.unit(8, "feet"),
  11219. weight: math.unit(250, "kg"),
  11220. name: "Back",
  11221. image: {
  11222. source: "./media/characters/ikideru/back.svg",
  11223. extra: 919 / 852,
  11224. bottom: 0.055
  11225. }
  11226. },
  11227. },
  11228. [
  11229. {
  11230. name: "Rare",
  11231. height: math.unit(8, "feet"),
  11232. default: true
  11233. },
  11234. {
  11235. name: "Playful Loom",
  11236. height: math.unit(80, "feet")
  11237. },
  11238. {
  11239. name: "City Leaner",
  11240. height: math.unit(230, "feet")
  11241. },
  11242. {
  11243. name: "Megamacro",
  11244. height: math.unit(2500, "feet")
  11245. },
  11246. {
  11247. name: "Gigamacro",
  11248. height: math.unit(26400, "feet")
  11249. },
  11250. {
  11251. name: "Tectonic Shifter",
  11252. height: math.unit(1.7, "megameters")
  11253. },
  11254. {
  11255. name: "Planet Carer",
  11256. height: math.unit(21, "megameters")
  11257. },
  11258. {
  11259. name: "God",
  11260. height: math.unit(11157.22, "parsecs")
  11261. },
  11262. ]
  11263. ))
  11264. characterMakers.push(() => makeCharacter(
  11265. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11266. {
  11267. front: {
  11268. height: math.unit(6, "feet"),
  11269. weight: math.unit(120, "lb"),
  11270. name: "Front",
  11271. image: {
  11272. source: "./media/characters/neo/front.svg"
  11273. }
  11274. },
  11275. },
  11276. [
  11277. {
  11278. name: "Micro",
  11279. height: math.unit(2, "inches"),
  11280. default: true
  11281. },
  11282. {
  11283. name: "Human Size",
  11284. height: math.unit(5 + 8 / 12, "feet")
  11285. },
  11286. ]
  11287. ))
  11288. characterMakers.push(() => makeCharacter(
  11289. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11290. {
  11291. front: {
  11292. height: math.unit(13 + 10 / 12, "feet"),
  11293. weight: math.unit(5320, "lb"),
  11294. name: "Front",
  11295. image: {
  11296. source: "./media/characters/chauncey-chantz/front.svg",
  11297. extra: 1587 / 1435,
  11298. bottom: 0.02
  11299. }
  11300. },
  11301. },
  11302. [
  11303. {
  11304. name: "Normal",
  11305. height: math.unit(13 + 10 / 12, "feet"),
  11306. default: true
  11307. },
  11308. {
  11309. name: "Macro",
  11310. height: math.unit(45, "feet")
  11311. },
  11312. {
  11313. name: "Megamacro",
  11314. height: math.unit(250, "miles")
  11315. },
  11316. {
  11317. name: "Planetary",
  11318. height: math.unit(10000, "miles")
  11319. },
  11320. {
  11321. name: "Galactic",
  11322. height: math.unit(40000, "parsecs")
  11323. },
  11324. {
  11325. name: "Universal",
  11326. height: math.unit(1, "yottameter")
  11327. },
  11328. ]
  11329. ))
  11330. characterMakers.push(() => makeCharacter(
  11331. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11332. {
  11333. front: {
  11334. height: math.unit(6, "feet"),
  11335. weight: math.unit(150, "lb"),
  11336. name: "Front",
  11337. image: {
  11338. source: "./media/characters/epifox/front.svg",
  11339. extra: 1,
  11340. bottom: 0.075
  11341. }
  11342. },
  11343. },
  11344. [
  11345. {
  11346. name: "Micro",
  11347. height: math.unit(6, "inches")
  11348. },
  11349. {
  11350. name: "Normal",
  11351. height: math.unit(12, "feet"),
  11352. default: true
  11353. },
  11354. {
  11355. name: "Macro",
  11356. height: math.unit(3810, "feet")
  11357. },
  11358. {
  11359. name: "Megamacro",
  11360. height: math.unit(500, "miles")
  11361. },
  11362. ]
  11363. ))
  11364. characterMakers.push(() => makeCharacter(
  11365. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11366. {
  11367. front: {
  11368. height: math.unit(1.8796, "m"),
  11369. weight: math.unit(230, "lb"),
  11370. name: "Front",
  11371. image: {
  11372. source: "./media/characters/colin-t/front.svg",
  11373. extra: 1272 / 1193,
  11374. bottom: 0.07
  11375. }
  11376. },
  11377. },
  11378. [
  11379. {
  11380. name: "Micro",
  11381. height: math.unit(0.571, "meters")
  11382. },
  11383. {
  11384. name: "Normal",
  11385. height: math.unit(1.8796, "meters"),
  11386. default: true
  11387. },
  11388. {
  11389. name: "Tall",
  11390. height: math.unit(4, "meters")
  11391. },
  11392. {
  11393. name: "Macro",
  11394. height: math.unit(67.241, "meters")
  11395. },
  11396. {
  11397. name: "Megamacro",
  11398. height: math.unit(371.856, "meters")
  11399. },
  11400. {
  11401. name: "Planetary",
  11402. height: math.unit(12631.5689, "km")
  11403. },
  11404. ]
  11405. ))
  11406. characterMakers.push(() => makeCharacter(
  11407. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11408. {
  11409. front: {
  11410. height: math.unit(1.85, "meters"),
  11411. weight: math.unit(80, "kg"),
  11412. name: "Front",
  11413. image: {
  11414. source: "./media/characters/matvei/front.svg",
  11415. extra: 614 / 594,
  11416. bottom: 0.01
  11417. }
  11418. },
  11419. },
  11420. [
  11421. {
  11422. name: "Normal",
  11423. height: math.unit(1.85, "meters"),
  11424. default: true
  11425. },
  11426. ]
  11427. ))
  11428. characterMakers.push(() => makeCharacter(
  11429. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11430. {
  11431. front: {
  11432. height: math.unit(5 + 9 / 12, "feet"),
  11433. weight: math.unit(70, "lb"),
  11434. name: "Front",
  11435. image: {
  11436. source: "./media/characters/quincy/front.svg",
  11437. extra: 3041 / 2751
  11438. }
  11439. },
  11440. back: {
  11441. height: math.unit(5 + 9 / 12, "feet"),
  11442. weight: math.unit(70, "lb"),
  11443. name: "Back",
  11444. image: {
  11445. source: "./media/characters/quincy/back.svg",
  11446. extra: 3041 / 2751
  11447. }
  11448. },
  11449. flying: {
  11450. height: math.unit(5 + 4 / 12, "feet"),
  11451. weight: math.unit(70, "lb"),
  11452. name: "Flying",
  11453. image: {
  11454. source: "./media/characters/quincy/flying.svg",
  11455. extra: 1044 / 930
  11456. }
  11457. },
  11458. },
  11459. [
  11460. {
  11461. name: "Micro",
  11462. height: math.unit(3, "cm")
  11463. },
  11464. {
  11465. name: "Normal",
  11466. height: math.unit(5 + 9 / 12, "feet")
  11467. },
  11468. {
  11469. name: "Macro",
  11470. height: math.unit(200, "meters"),
  11471. default: true
  11472. },
  11473. {
  11474. name: "Megamacro",
  11475. height: math.unit(1000, "meters")
  11476. },
  11477. ]
  11478. ))
  11479. characterMakers.push(() => makeCharacter(
  11480. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11481. {
  11482. front: {
  11483. height: math.unit(4 + 7 / 12, "feet"),
  11484. weight: math.unit(50, "lb"),
  11485. name: "Front",
  11486. image: {
  11487. source: "./media/characters/vanrel/front.svg",
  11488. extra: 1,
  11489. bottom: 0.02
  11490. }
  11491. },
  11492. frontAlt: {
  11493. height: math.unit(4 + 7 / 12, "feet"),
  11494. weight: math.unit(50, "lb"),
  11495. name: "Front-alt",
  11496. image: {
  11497. source: "./media/characters/vanrel/front-alt.svg",
  11498. extra: 1,
  11499. bottom: 15 / 1511
  11500. }
  11501. },
  11502. elemental: {
  11503. height: math.unit(3, "feet"),
  11504. weight: math.unit(50, "lb"),
  11505. name: "Elemental",
  11506. image: {
  11507. source: "./media/characters/vanrel/elemental.svg",
  11508. extra: 192.3 / 162.8,
  11509. bottom: 1.79 / 194.17
  11510. }
  11511. },
  11512. side: {
  11513. height: math.unit(4 + 7 / 12, "feet"),
  11514. weight: math.unit(50, "lb"),
  11515. name: "Side",
  11516. image: {
  11517. source: "./media/characters/vanrel/side.svg",
  11518. extra: 1,
  11519. bottom: 0.025
  11520. }
  11521. },
  11522. tome: {
  11523. height: math.unit(1.35, "feet"),
  11524. weight: math.unit(10, "lb"),
  11525. name: "Vanrel's Tome",
  11526. rename: true,
  11527. image: {
  11528. source: "./media/characters/vanrel/tome.svg"
  11529. }
  11530. },
  11531. beans: {
  11532. height: math.unit(0.89, "feet"),
  11533. name: "Beans",
  11534. image: {
  11535. source: "./media/characters/vanrel/beans.svg"
  11536. }
  11537. },
  11538. },
  11539. [
  11540. {
  11541. name: "Normal",
  11542. height: math.unit(4 + 7 / 12, "feet"),
  11543. default: true
  11544. },
  11545. ]
  11546. ))
  11547. characterMakers.push(() => makeCharacter(
  11548. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11549. {
  11550. front: {
  11551. height: math.unit(7 + 5 / 12, "feet"),
  11552. weight: math.unit(150, "lb"),
  11553. name: "Front",
  11554. image: {
  11555. source: "./media/characters/kuiper-vanrel/front.svg",
  11556. extra: 1118 / 1068,
  11557. bottom: 0.09
  11558. }
  11559. },
  11560. foot: {
  11561. height: math.unit(0.55, "meters"),
  11562. name: "Foot",
  11563. image: {
  11564. source: "./media/characters/kuiper-vanrel/foot.svg",
  11565. }
  11566. },
  11567. battle: {
  11568. height: math.unit(6.824, "feet"),
  11569. weight: math.unit(150, "lb"),
  11570. name: "Battle",
  11571. image: {
  11572. source: "./media/characters/kuiper-vanrel/battle.svg",
  11573. extra: 1466 / 1327,
  11574. bottom: 29 / 1492.5
  11575. }
  11576. },
  11577. battleAlt: {
  11578. height: math.unit(6.824, "feet"),
  11579. weight: math.unit(150, "lb"),
  11580. name: "Battle (Alt)",
  11581. image: {
  11582. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11583. extra: 2081 / 1965,
  11584. bottom: 40 / 2121
  11585. }
  11586. },
  11587. },
  11588. [
  11589. {
  11590. name: "Normal",
  11591. height: math.unit(7 + 5 / 12, "feet"),
  11592. default: true
  11593. },
  11594. ]
  11595. ))
  11596. characterMakers.push(() => makeCharacter(
  11597. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11598. {
  11599. front: {
  11600. height: math.unit(8 + 5 / 12, "feet"),
  11601. weight: math.unit(150, "lb"),
  11602. name: "Front",
  11603. image: {
  11604. source: "./media/characters/keset-vanrel/front.svg",
  11605. extra: 1150 / 1084,
  11606. bottom: 0.05
  11607. }
  11608. },
  11609. hand: {
  11610. height: math.unit(0.6, "meters"),
  11611. name: "Hand",
  11612. image: {
  11613. source: "./media/characters/keset-vanrel/hand.svg"
  11614. }
  11615. },
  11616. foot: {
  11617. height: math.unit(0.94978, "meters"),
  11618. name: "Foot",
  11619. image: {
  11620. source: "./media/characters/keset-vanrel/foot.svg"
  11621. }
  11622. },
  11623. battle: {
  11624. height: math.unit(7.408, "feet"),
  11625. weight: math.unit(150, "lb"),
  11626. name: "Battle",
  11627. image: {
  11628. source: "./media/characters/keset-vanrel/battle.svg",
  11629. extra: 1890 / 1386,
  11630. bottom: 73.28 / 1970
  11631. }
  11632. },
  11633. },
  11634. [
  11635. {
  11636. name: "Normal",
  11637. height: math.unit(8 + 5 / 12, "feet"),
  11638. default: true
  11639. },
  11640. ]
  11641. ))
  11642. characterMakers.push(() => makeCharacter(
  11643. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11644. {
  11645. front: {
  11646. height: math.unit(6, "feet"),
  11647. weight: math.unit(150, "lb"),
  11648. name: "Front",
  11649. image: {
  11650. source: "./media/characters/neos/front.svg",
  11651. extra: 1696 / 992,
  11652. bottom: 0.14
  11653. }
  11654. },
  11655. },
  11656. [
  11657. {
  11658. name: "Normal",
  11659. height: math.unit(54, "cm"),
  11660. default: true
  11661. },
  11662. {
  11663. name: "Macro",
  11664. height: math.unit(100, "m")
  11665. },
  11666. {
  11667. name: "Megamacro",
  11668. height: math.unit(10, "km")
  11669. },
  11670. {
  11671. name: "Megamacro+",
  11672. height: math.unit(100, "km")
  11673. },
  11674. {
  11675. name: "Gigamacro",
  11676. height: math.unit(100, "Mm")
  11677. },
  11678. {
  11679. name: "Teramacro",
  11680. height: math.unit(100, "Gm")
  11681. },
  11682. {
  11683. name: "Examacro",
  11684. height: math.unit(100, "Em")
  11685. },
  11686. {
  11687. name: "Godly",
  11688. height: math.unit(10000, "Ym")
  11689. },
  11690. {
  11691. name: "Beyond Godly",
  11692. height: math.unit(25, "multiverses")
  11693. },
  11694. ]
  11695. ))
  11696. characterMakers.push(() => makeCharacter(
  11697. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11698. {
  11699. feminine: {
  11700. height: math.unit(5, "feet"),
  11701. weight: math.unit(100, "lb"),
  11702. name: "Feminine",
  11703. image: {
  11704. source: "./media/characters/sammy-mouse/feminine.svg",
  11705. extra: 2526 / 2425,
  11706. bottom: 0.123
  11707. }
  11708. },
  11709. masculine: {
  11710. height: math.unit(5, "feet"),
  11711. weight: math.unit(100, "lb"),
  11712. name: "Masculine",
  11713. image: {
  11714. source: "./media/characters/sammy-mouse/masculine.svg",
  11715. extra: 2526 / 2425,
  11716. bottom: 0.123
  11717. }
  11718. },
  11719. },
  11720. [
  11721. {
  11722. name: "Micro",
  11723. height: math.unit(5, "inches")
  11724. },
  11725. {
  11726. name: "Normal",
  11727. height: math.unit(5, "feet"),
  11728. default: true
  11729. },
  11730. {
  11731. name: "Macro",
  11732. height: math.unit(60, "feet")
  11733. },
  11734. ]
  11735. ))
  11736. characterMakers.push(() => makeCharacter(
  11737. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11738. {
  11739. front: {
  11740. height: math.unit(4, "feet"),
  11741. weight: math.unit(50, "lb"),
  11742. name: "Front",
  11743. image: {
  11744. source: "./media/characters/kole/front.svg",
  11745. extra: 1423 / 1303,
  11746. bottom: 0.025
  11747. }
  11748. },
  11749. back: {
  11750. height: math.unit(4, "feet"),
  11751. weight: math.unit(50, "lb"),
  11752. name: "Back",
  11753. image: {
  11754. source: "./media/characters/kole/back.svg",
  11755. extra: 1426 / 1280,
  11756. bottom: 0.02
  11757. }
  11758. },
  11759. },
  11760. [
  11761. {
  11762. name: "Normal",
  11763. height: math.unit(4, "feet"),
  11764. default: true
  11765. },
  11766. ]
  11767. ))
  11768. characterMakers.push(() => makeCharacter(
  11769. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11770. {
  11771. front: {
  11772. height: math.unit(2 + 6 / 12, "feet"),
  11773. weight: math.unit(20, "lb"),
  11774. name: "Front",
  11775. image: {
  11776. source: "./media/characters/rufran/front.svg",
  11777. extra: 2041 / 1839,
  11778. bottom: 0.055
  11779. }
  11780. },
  11781. back: {
  11782. height: math.unit(2 + 6 / 12, "feet"),
  11783. weight: math.unit(20, "lb"),
  11784. name: "Back",
  11785. image: {
  11786. source: "./media/characters/rufran/back.svg",
  11787. extra: 2054 / 1839,
  11788. bottom: 0.01
  11789. }
  11790. },
  11791. hand: {
  11792. height: math.unit(0.2166, "meters"),
  11793. name: "Hand",
  11794. image: {
  11795. source: "./media/characters/rufran/hand.svg"
  11796. }
  11797. },
  11798. foot: {
  11799. height: math.unit(0.185, "meters"),
  11800. name: "Foot",
  11801. image: {
  11802. source: "./media/characters/rufran/foot.svg"
  11803. }
  11804. },
  11805. },
  11806. [
  11807. {
  11808. name: "Micro",
  11809. height: math.unit(1, "inch")
  11810. },
  11811. {
  11812. name: "Normal",
  11813. height: math.unit(2 + 6 / 12, "feet"),
  11814. default: true
  11815. },
  11816. {
  11817. name: "Big",
  11818. height: math.unit(60, "feet")
  11819. },
  11820. {
  11821. name: "Macro",
  11822. height: math.unit(325, "feet")
  11823. },
  11824. ]
  11825. ))
  11826. characterMakers.push(() => makeCharacter(
  11827. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11828. {
  11829. front: {
  11830. height: math.unit(0.3, "meters"),
  11831. weight: math.unit(3.5, "kg"),
  11832. name: "Front",
  11833. image: {
  11834. source: "./media/characters/chip/front.svg",
  11835. extra: 748 / 674
  11836. }
  11837. },
  11838. },
  11839. [
  11840. {
  11841. name: "Micro",
  11842. height: math.unit(1, "inch"),
  11843. default: true
  11844. },
  11845. ]
  11846. ))
  11847. characterMakers.push(() => makeCharacter(
  11848. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11849. {
  11850. side: {
  11851. height: math.unit(2.3, "meters"),
  11852. weight: math.unit(3500, "lb"),
  11853. name: "Side",
  11854. image: {
  11855. source: "./media/characters/torvid/side.svg",
  11856. extra: 1972 / 722,
  11857. bottom: 0.035
  11858. }
  11859. },
  11860. },
  11861. [
  11862. {
  11863. name: "Normal",
  11864. height: math.unit(2.3, "meters"),
  11865. default: true
  11866. },
  11867. ]
  11868. ))
  11869. characterMakers.push(() => makeCharacter(
  11870. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11871. {
  11872. front: {
  11873. height: math.unit(2, "meters"),
  11874. weight: math.unit(150.5, "kg"),
  11875. name: "Front",
  11876. image: {
  11877. source: "./media/characters/susan/front.svg",
  11878. extra: 693 / 635,
  11879. bottom: 0.05
  11880. }
  11881. },
  11882. },
  11883. [
  11884. {
  11885. name: "Megamacro",
  11886. height: math.unit(505, "miles"),
  11887. default: true
  11888. },
  11889. ]
  11890. ))
  11891. characterMakers.push(() => makeCharacter(
  11892. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11893. {
  11894. front: {
  11895. height: math.unit(6, "feet"),
  11896. weight: math.unit(150, "lb"),
  11897. name: "Front",
  11898. image: {
  11899. source: "./media/characters/raindrops/front.svg",
  11900. extra: 2655 / 2461,
  11901. bottom: 49 / 2705
  11902. }
  11903. },
  11904. back: {
  11905. height: math.unit(6, "feet"),
  11906. weight: math.unit(150, "lb"),
  11907. name: "Back",
  11908. image: {
  11909. source: "./media/characters/raindrops/back.svg",
  11910. extra: 2574 / 2400,
  11911. bottom: 65 / 2634
  11912. }
  11913. },
  11914. },
  11915. [
  11916. {
  11917. name: "Micro",
  11918. height: math.unit(6, "inches")
  11919. },
  11920. {
  11921. name: "Normal",
  11922. height: math.unit(6 + 2 / 12, "feet")
  11923. },
  11924. {
  11925. name: "Macro",
  11926. height: math.unit(131, "feet"),
  11927. default: true
  11928. },
  11929. {
  11930. name: "Megamacro",
  11931. height: math.unit(15, "miles")
  11932. },
  11933. {
  11934. name: "Gigamacro",
  11935. height: math.unit(4000, "miles")
  11936. },
  11937. {
  11938. name: "Teramacro",
  11939. height: math.unit(315000, "miles")
  11940. },
  11941. ]
  11942. ))
  11943. characterMakers.push(() => makeCharacter(
  11944. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11945. {
  11946. front: {
  11947. height: math.unit(2.794, "meters"),
  11948. weight: math.unit(325, "kg"),
  11949. name: "Front",
  11950. image: {
  11951. source: "./media/characters/tezwa/front.svg",
  11952. extra: 2083 / 1906,
  11953. bottom: 0.031
  11954. }
  11955. },
  11956. foot: {
  11957. height: math.unit(0.687, "meters"),
  11958. name: "Foot",
  11959. image: {
  11960. source: "./media/characters/tezwa/foot.svg"
  11961. }
  11962. },
  11963. },
  11964. [
  11965. {
  11966. name: "Normal",
  11967. height: math.unit(9 + 2 / 12, "feet"),
  11968. default: true
  11969. },
  11970. ]
  11971. ))
  11972. characterMakers.push(() => makeCharacter(
  11973. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11974. {
  11975. front: {
  11976. height: math.unit(58, "feet"),
  11977. weight: math.unit(89000, "lb"),
  11978. name: "Front",
  11979. image: {
  11980. source: "./media/characters/typhus/front.svg",
  11981. extra: 816 / 800,
  11982. bottom: 0.065
  11983. }
  11984. },
  11985. },
  11986. [
  11987. {
  11988. name: "Macro",
  11989. height: math.unit(58, "feet"),
  11990. default: true
  11991. },
  11992. ]
  11993. ))
  11994. characterMakers.push(() => makeCharacter(
  11995. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11996. {
  11997. front: {
  11998. height: math.unit(12, "feet"),
  11999. weight: math.unit(6, "tonnes"),
  12000. name: "Front",
  12001. image: {
  12002. source: "./media/characters/lyra-von-wulf/front.svg",
  12003. extra: 1,
  12004. bottom: 0.10
  12005. }
  12006. },
  12007. frontMecha: {
  12008. height: math.unit(12, "feet"),
  12009. weight: math.unit(12, "tonnes"),
  12010. name: "Front (Mecha)",
  12011. image: {
  12012. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12013. extra: 1,
  12014. bottom: 0.042
  12015. }
  12016. },
  12017. maw: {
  12018. height: math.unit(2.2, "feet"),
  12019. name: "Maw",
  12020. image: {
  12021. source: "./media/characters/lyra-von-wulf/maw.svg"
  12022. }
  12023. },
  12024. },
  12025. [
  12026. {
  12027. name: "Normal",
  12028. height: math.unit(12, "feet"),
  12029. default: true
  12030. },
  12031. {
  12032. name: "Classic",
  12033. height: math.unit(50, "feet")
  12034. },
  12035. {
  12036. name: "Macro",
  12037. height: math.unit(500, "feet")
  12038. },
  12039. {
  12040. name: "Megamacro",
  12041. height: math.unit(1, "mile")
  12042. },
  12043. {
  12044. name: "Gigamacro",
  12045. height: math.unit(400, "miles")
  12046. },
  12047. {
  12048. name: "Teramacro",
  12049. height: math.unit(22000, "miles")
  12050. },
  12051. {
  12052. name: "Solarmacro",
  12053. height: math.unit(8600000, "miles")
  12054. },
  12055. {
  12056. name: "Galactic",
  12057. height: math.unit(1057000, "lightyears")
  12058. },
  12059. ]
  12060. ))
  12061. characterMakers.push(() => makeCharacter(
  12062. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12063. {
  12064. front: {
  12065. height: math.unit(6 + 10 / 12, "feet"),
  12066. weight: math.unit(150, "lb"),
  12067. name: "Front",
  12068. image: {
  12069. source: "./media/characters/dixon/front.svg",
  12070. extra: 3361 / 3209,
  12071. bottom: 0.01
  12072. }
  12073. },
  12074. },
  12075. [
  12076. {
  12077. name: "Normal",
  12078. height: math.unit(6 + 10 / 12, "feet"),
  12079. default: true
  12080. },
  12081. {
  12082. name: "Big",
  12083. height: math.unit(12, "meters")
  12084. },
  12085. {
  12086. name: "Macro",
  12087. height: math.unit(500, "meters")
  12088. },
  12089. {
  12090. name: "Megamacro",
  12091. height: math.unit(2, "km")
  12092. },
  12093. ]
  12094. ))
  12095. characterMakers.push(() => makeCharacter(
  12096. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12097. {
  12098. front: {
  12099. height: math.unit(185, "cm"),
  12100. weight: math.unit(68, "kg"),
  12101. name: "Front",
  12102. image: {
  12103. source: "./media/characters/kauko/front.svg",
  12104. extra: 1455 / 1421,
  12105. bottom: 0.03
  12106. }
  12107. },
  12108. back: {
  12109. height: math.unit(185, "cm"),
  12110. weight: math.unit(68, "kg"),
  12111. name: "Back",
  12112. image: {
  12113. source: "./media/characters/kauko/back.svg",
  12114. extra: 1455 / 1421,
  12115. bottom: 0.004
  12116. }
  12117. },
  12118. },
  12119. [
  12120. {
  12121. name: "Normal",
  12122. height: math.unit(185, "cm"),
  12123. default: true
  12124. },
  12125. ]
  12126. ))
  12127. characterMakers.push(() => makeCharacter(
  12128. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12129. {
  12130. front: {
  12131. height: math.unit(6, "feet"),
  12132. weight: math.unit(150, "kg"),
  12133. name: "Front",
  12134. image: {
  12135. source: "./media/characters/varg/front.svg",
  12136. extra: 1108 / 1018,
  12137. bottom: 0.0375
  12138. }
  12139. },
  12140. },
  12141. [
  12142. {
  12143. name: "Normal",
  12144. height: math.unit(5, "meters")
  12145. },
  12146. {
  12147. name: "Macro",
  12148. height: math.unit(200, "meters")
  12149. },
  12150. {
  12151. name: "Megamacro",
  12152. height: math.unit(20, "kilometers")
  12153. },
  12154. {
  12155. name: "True Size",
  12156. height: math.unit(211, "km"),
  12157. default: true
  12158. },
  12159. {
  12160. name: "Gigamacro",
  12161. height: math.unit(1000, "km")
  12162. },
  12163. {
  12164. name: "Gigamacro+",
  12165. height: math.unit(8000, "km")
  12166. },
  12167. {
  12168. name: "Teramacro",
  12169. height: math.unit(1000000, "km")
  12170. },
  12171. ]
  12172. ))
  12173. characterMakers.push(() => makeCharacter(
  12174. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12175. {
  12176. front: {
  12177. height: math.unit(7 + 7 / 12, "feet"),
  12178. weight: math.unit(267, "lb"),
  12179. name: "Front",
  12180. image: {
  12181. source: "./media/characters/dayza/front.svg",
  12182. extra: 1262 / 1200,
  12183. bottom: 0.035
  12184. }
  12185. },
  12186. side: {
  12187. height: math.unit(7 + 7 / 12, "feet"),
  12188. weight: math.unit(267, "lb"),
  12189. name: "Side",
  12190. image: {
  12191. source: "./media/characters/dayza/side.svg",
  12192. extra: 1295 / 1245,
  12193. bottom: 0.05
  12194. }
  12195. },
  12196. back: {
  12197. height: math.unit(7 + 7 / 12, "feet"),
  12198. weight: math.unit(267, "lb"),
  12199. name: "Back",
  12200. image: {
  12201. source: "./media/characters/dayza/back.svg",
  12202. extra: 1241 / 1170
  12203. }
  12204. },
  12205. },
  12206. [
  12207. {
  12208. name: "Normal",
  12209. height: math.unit(7 + 7 / 12, "feet"),
  12210. default: true
  12211. },
  12212. {
  12213. name: "Macro",
  12214. height: math.unit(155, "feet")
  12215. },
  12216. ]
  12217. ))
  12218. characterMakers.push(() => makeCharacter(
  12219. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12220. {
  12221. front: {
  12222. height: math.unit(6 + 5 / 12, "feet"),
  12223. weight: math.unit(160, "lb"),
  12224. name: "Front",
  12225. image: {
  12226. source: "./media/characters/xanthos/front.svg",
  12227. extra: 1,
  12228. bottom: 0.04
  12229. }
  12230. },
  12231. back: {
  12232. height: math.unit(6 + 5 / 12, "feet"),
  12233. weight: math.unit(160, "lb"),
  12234. name: "Back",
  12235. image: {
  12236. source: "./media/characters/xanthos/back.svg",
  12237. extra: 1,
  12238. bottom: 0.03
  12239. }
  12240. },
  12241. hand: {
  12242. height: math.unit(0.928, "feet"),
  12243. name: "Hand",
  12244. image: {
  12245. source: "./media/characters/xanthos/hand.svg"
  12246. }
  12247. },
  12248. foot: {
  12249. height: math.unit(1.286, "feet"),
  12250. name: "Foot",
  12251. image: {
  12252. source: "./media/characters/xanthos/foot.svg"
  12253. }
  12254. },
  12255. },
  12256. [
  12257. {
  12258. name: "Normal",
  12259. height: math.unit(6 + 5 / 12, "feet"),
  12260. default: true
  12261. },
  12262. {
  12263. name: "Normal+",
  12264. height: math.unit(6, "meters")
  12265. },
  12266. {
  12267. name: "Macro",
  12268. height: math.unit(40, "feet")
  12269. },
  12270. {
  12271. name: "Macro+",
  12272. height: math.unit(200, "meters")
  12273. },
  12274. {
  12275. name: "Megamacro",
  12276. height: math.unit(20, "km")
  12277. },
  12278. {
  12279. name: "Megamacro+",
  12280. height: math.unit(100, "km")
  12281. },
  12282. ]
  12283. ))
  12284. characterMakers.push(() => makeCharacter(
  12285. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12286. {
  12287. front: {
  12288. height: math.unit(6 + 3 / 12, "feet"),
  12289. weight: math.unit(215, "lb"),
  12290. name: "Front",
  12291. image: {
  12292. source: "./media/characters/grynn/front.svg",
  12293. extra: 4627 / 4209,
  12294. bottom: 0.047
  12295. }
  12296. },
  12297. },
  12298. [
  12299. {
  12300. name: "Micro",
  12301. height: math.unit(6, "inches")
  12302. },
  12303. {
  12304. name: "Normal",
  12305. height: math.unit(6 + 3 / 12, "feet"),
  12306. default: true
  12307. },
  12308. {
  12309. name: "Big",
  12310. height: math.unit(104, "feet")
  12311. },
  12312. {
  12313. name: "Macro",
  12314. height: math.unit(944, "feet")
  12315. },
  12316. {
  12317. name: "Macro+",
  12318. height: math.unit(9480, "feet")
  12319. },
  12320. {
  12321. name: "Megamacro",
  12322. height: math.unit(78752, "feet")
  12323. },
  12324. {
  12325. name: "Megamacro+",
  12326. height: math.unit(630128, "feet")
  12327. },
  12328. {
  12329. name: "Megamacro++",
  12330. height: math.unit(3150695, "feet")
  12331. },
  12332. ]
  12333. ))
  12334. characterMakers.push(() => makeCharacter(
  12335. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12336. {
  12337. front: {
  12338. height: math.unit(7 + 5 / 12, "feet"),
  12339. weight: math.unit(450, "lb"),
  12340. name: "Front",
  12341. image: {
  12342. source: "./media/characters/mocha-aura/front.svg",
  12343. extra: 1907 / 1817,
  12344. bottom: 0.04
  12345. }
  12346. },
  12347. back: {
  12348. height: math.unit(7 + 5 / 12, "feet"),
  12349. weight: math.unit(450, "lb"),
  12350. name: "Back",
  12351. image: {
  12352. source: "./media/characters/mocha-aura/back.svg",
  12353. extra: 1900 / 1825,
  12354. bottom: 0.045
  12355. }
  12356. },
  12357. },
  12358. [
  12359. {
  12360. name: "Nano",
  12361. height: math.unit(1, "nm")
  12362. },
  12363. {
  12364. name: "Megamicro",
  12365. height: math.unit(1, "mm")
  12366. },
  12367. {
  12368. name: "Micro",
  12369. height: math.unit(3, "inches")
  12370. },
  12371. {
  12372. name: "Normal",
  12373. height: math.unit(7 + 5 / 12, "feet"),
  12374. default: true
  12375. },
  12376. {
  12377. name: "Macro",
  12378. height: math.unit(30, "feet")
  12379. },
  12380. {
  12381. name: "Megamacro",
  12382. height: math.unit(3500, "feet")
  12383. },
  12384. {
  12385. name: "Teramacro",
  12386. height: math.unit(500000, "miles")
  12387. },
  12388. {
  12389. name: "Petamacro",
  12390. height: math.unit(50000000000000000, "parsecs")
  12391. },
  12392. ]
  12393. ))
  12394. characterMakers.push(() => makeCharacter(
  12395. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12396. {
  12397. front: {
  12398. height: math.unit(6, "feet"),
  12399. weight: math.unit(150, "lb"),
  12400. name: "Front",
  12401. image: {
  12402. source: "./media/characters/ilisha-devya/front.svg",
  12403. extra: 1,
  12404. bottom: 0.175
  12405. }
  12406. },
  12407. back: {
  12408. height: math.unit(6, "feet"),
  12409. weight: math.unit(150, "lb"),
  12410. name: "Back",
  12411. image: {
  12412. source: "./media/characters/ilisha-devya/back.svg",
  12413. extra: 1,
  12414. bottom: 0.015
  12415. }
  12416. },
  12417. },
  12418. [
  12419. {
  12420. name: "Macro",
  12421. height: math.unit(500, "feet"),
  12422. default: true
  12423. },
  12424. {
  12425. name: "Megamacro",
  12426. height: math.unit(10, "miles")
  12427. },
  12428. {
  12429. name: "Gigamacro",
  12430. height: math.unit(100000, "miles")
  12431. },
  12432. {
  12433. name: "Examacro",
  12434. height: math.unit(1e9, "lightyears")
  12435. },
  12436. {
  12437. name: "Omniversal",
  12438. height: math.unit(1e33, "lightyears")
  12439. },
  12440. {
  12441. name: "Beyond Infinite",
  12442. height: math.unit(1e100, "lightyears")
  12443. },
  12444. ]
  12445. ))
  12446. characterMakers.push(() => makeCharacter(
  12447. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12448. {
  12449. Side: {
  12450. height: math.unit(6, "feet"),
  12451. weight: math.unit(150, "lb"),
  12452. name: "Side",
  12453. image: {
  12454. source: "./media/characters/mira/side.svg",
  12455. extra: 900 / 799,
  12456. bottom: 0.02
  12457. }
  12458. },
  12459. },
  12460. [
  12461. {
  12462. name: "Human Size",
  12463. height: math.unit(6, "feet")
  12464. },
  12465. {
  12466. name: "Macro",
  12467. height: math.unit(100, "feet"),
  12468. default: true
  12469. },
  12470. {
  12471. name: "Megamacro",
  12472. height: math.unit(10, "miles")
  12473. },
  12474. {
  12475. name: "Gigamacro",
  12476. height: math.unit(25000, "miles")
  12477. },
  12478. {
  12479. name: "Teramacro",
  12480. height: math.unit(300, "AU")
  12481. },
  12482. {
  12483. name: "Full Size",
  12484. height: math.unit(4.5e10, "lightyears")
  12485. },
  12486. ]
  12487. ))
  12488. characterMakers.push(() => makeCharacter(
  12489. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12490. {
  12491. front: {
  12492. height: math.unit(6, "feet"),
  12493. weight: math.unit(150, "lb"),
  12494. name: "Front",
  12495. image: {
  12496. source: "./media/characters/holly/front.svg",
  12497. extra: 639 / 606
  12498. }
  12499. },
  12500. back: {
  12501. height: math.unit(6, "feet"),
  12502. weight: math.unit(150, "lb"),
  12503. name: "Back",
  12504. image: {
  12505. source: "./media/characters/holly/back.svg",
  12506. extra: 623 / 598
  12507. }
  12508. },
  12509. frontWorking: {
  12510. height: math.unit(6, "feet"),
  12511. weight: math.unit(150, "lb"),
  12512. name: "Front (Working)",
  12513. image: {
  12514. source: "./media/characters/holly/front-working.svg",
  12515. extra: 607 / 577,
  12516. bottom: 0.048
  12517. }
  12518. },
  12519. },
  12520. [
  12521. {
  12522. name: "Normal",
  12523. height: math.unit(12 + 3 / 12, "feet"),
  12524. default: true
  12525. },
  12526. ]
  12527. ))
  12528. characterMakers.push(() => makeCharacter(
  12529. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12530. {
  12531. front: {
  12532. height: math.unit(6, "feet"),
  12533. weight: math.unit(150, "lb"),
  12534. name: "Front",
  12535. image: {
  12536. source: "./media/characters/porter/front.svg",
  12537. extra: 1,
  12538. bottom: 0.01
  12539. }
  12540. },
  12541. frontRobes: {
  12542. height: math.unit(6, "feet"),
  12543. weight: math.unit(150, "lb"),
  12544. name: "Front (Robes)",
  12545. image: {
  12546. source: "./media/characters/porter/front-robes.svg",
  12547. extra: 1.01,
  12548. bottom: 0.01
  12549. }
  12550. },
  12551. },
  12552. [
  12553. {
  12554. name: "Normal",
  12555. height: math.unit(11 + 9 / 12, "feet"),
  12556. default: true
  12557. },
  12558. ]
  12559. ))
  12560. characterMakers.push(() => makeCharacter(
  12561. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12562. {
  12563. legendary: {
  12564. height: math.unit(6, "feet"),
  12565. weight: math.unit(150, "lb"),
  12566. name: "Legendary",
  12567. image: {
  12568. source: "./media/characters/lucy/legendary.svg",
  12569. extra: 1355 / 1100,
  12570. bottom: 0.045
  12571. }
  12572. },
  12573. },
  12574. [
  12575. {
  12576. name: "Legendary",
  12577. height: math.unit(86882 * 2, "miles"),
  12578. default: true
  12579. },
  12580. ]
  12581. ))
  12582. characterMakers.push(() => makeCharacter(
  12583. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12584. {
  12585. front: {
  12586. height: math.unit(6, "feet"),
  12587. weight: math.unit(150, "lb"),
  12588. name: "Front",
  12589. image: {
  12590. source: "./media/characters/drusilla/front.svg",
  12591. extra: 678 / 635,
  12592. bottom: 0.03
  12593. }
  12594. },
  12595. back: {
  12596. height: math.unit(6, "feet"),
  12597. weight: math.unit(150, "lb"),
  12598. name: "Back",
  12599. image: {
  12600. source: "./media/characters/drusilla/back.svg",
  12601. extra: 678 / 635,
  12602. bottom: 0.005
  12603. }
  12604. },
  12605. },
  12606. [
  12607. {
  12608. name: "Macro",
  12609. height: math.unit(100, "feet")
  12610. },
  12611. {
  12612. name: "Canon Height",
  12613. height: math.unit(2000, "feet"),
  12614. default: true
  12615. },
  12616. ]
  12617. ))
  12618. characterMakers.push(() => makeCharacter(
  12619. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12620. {
  12621. front: {
  12622. height: math.unit(6, "feet"),
  12623. weight: math.unit(180, "lb"),
  12624. name: "Front",
  12625. image: {
  12626. source: "./media/characters/renard-thatch/front.svg",
  12627. extra: 2411 / 2275,
  12628. bottom: 0.01
  12629. }
  12630. },
  12631. frontPosing: {
  12632. height: math.unit(6, "feet"),
  12633. weight: math.unit(180, "lb"),
  12634. name: "Front (Posing)",
  12635. image: {
  12636. source: "./media/characters/renard-thatch/front-posing.svg",
  12637. extra: 2381 / 2261,
  12638. bottom: 0.01
  12639. }
  12640. },
  12641. back: {
  12642. height: math.unit(6, "feet"),
  12643. weight: math.unit(180, "lb"),
  12644. name: "Back",
  12645. image: {
  12646. source: "./media/characters/renard-thatch/back.svg",
  12647. extra: 2428 / 2288
  12648. }
  12649. },
  12650. },
  12651. [
  12652. {
  12653. name: "Micro",
  12654. height: math.unit(3, "inches")
  12655. },
  12656. {
  12657. name: "Default",
  12658. height: math.unit(6, "feet"),
  12659. default: true
  12660. },
  12661. {
  12662. name: "Macro",
  12663. height: math.unit(75, "feet")
  12664. },
  12665. ]
  12666. ))
  12667. characterMakers.push(() => makeCharacter(
  12668. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12669. {
  12670. front: {
  12671. height: math.unit(1450, "feet"),
  12672. weight: math.unit(1.21e6, "tons"),
  12673. name: "Front",
  12674. image: {
  12675. source: "./media/characters/sekvra/front.svg",
  12676. extra: 1,
  12677. bottom: 0.03
  12678. }
  12679. },
  12680. frontClothed: {
  12681. height: math.unit(1450, "feet"),
  12682. weight: math.unit(1.21e6, "tons"),
  12683. name: "Front (Clothed)",
  12684. image: {
  12685. source: "./media/characters/sekvra/front-clothed.svg",
  12686. extra: 1,
  12687. bottom: 0.03
  12688. }
  12689. },
  12690. side: {
  12691. height: math.unit(1450, "feet"),
  12692. weight: math.unit(1.21e6, "tons"),
  12693. name: "Side",
  12694. image: {
  12695. source: "./media/characters/sekvra/side.svg",
  12696. extra: 1,
  12697. bottom: 0.025
  12698. }
  12699. },
  12700. back: {
  12701. height: math.unit(1450, "feet"),
  12702. weight: math.unit(1.21e6, "tons"),
  12703. name: "Back",
  12704. image: {
  12705. source: "./media/characters/sekvra/back.svg",
  12706. extra: 1,
  12707. bottom: 0.005
  12708. }
  12709. },
  12710. },
  12711. [
  12712. {
  12713. name: "Macro",
  12714. height: math.unit(1450, "feet"),
  12715. default: true
  12716. },
  12717. {
  12718. name: "Megamacro",
  12719. height: math.unit(15000, "feet")
  12720. },
  12721. ]
  12722. ))
  12723. characterMakers.push(() => makeCharacter(
  12724. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12725. {
  12726. front: {
  12727. height: math.unit(6, "feet"),
  12728. weight: math.unit(150, "lb"),
  12729. name: "Front",
  12730. image: {
  12731. source: "./media/characters/carmine/front.svg",
  12732. extra: 1,
  12733. bottom: 0.035
  12734. }
  12735. },
  12736. frontArmor: {
  12737. height: math.unit(6, "feet"),
  12738. weight: math.unit(150, "lb"),
  12739. name: "Front (Armor)",
  12740. image: {
  12741. source: "./media/characters/carmine/front-armor.svg",
  12742. extra: 1,
  12743. bottom: 0.035
  12744. }
  12745. },
  12746. },
  12747. [
  12748. {
  12749. name: "Large",
  12750. height: math.unit(1, "mile")
  12751. },
  12752. {
  12753. name: "Huge",
  12754. height: math.unit(40, "miles"),
  12755. default: true
  12756. },
  12757. {
  12758. name: "Colossal",
  12759. height: math.unit(2500, "miles")
  12760. },
  12761. ]
  12762. ))
  12763. characterMakers.push(() => makeCharacter(
  12764. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12765. {
  12766. front: {
  12767. height: math.unit(6, "feet"),
  12768. weight: math.unit(150, "lb"),
  12769. name: "Front",
  12770. image: {
  12771. source: "./media/characters/elyssia/front.svg",
  12772. extra: 2201 / 2035,
  12773. bottom: 0.05
  12774. }
  12775. },
  12776. frontClothed: {
  12777. height: math.unit(6, "feet"),
  12778. weight: math.unit(150, "lb"),
  12779. name: "Front (Clothed)",
  12780. image: {
  12781. source: "./media/characters/elyssia/front-clothed.svg",
  12782. extra: 2201 / 2035,
  12783. bottom: 0.05
  12784. }
  12785. },
  12786. back: {
  12787. height: math.unit(6, "feet"),
  12788. weight: math.unit(150, "lb"),
  12789. name: "Back",
  12790. image: {
  12791. source: "./media/characters/elyssia/back.svg",
  12792. extra: 2201 / 2035,
  12793. bottom: 0.013
  12794. }
  12795. },
  12796. },
  12797. [
  12798. {
  12799. name: "Smaller",
  12800. height: math.unit(150, "feet")
  12801. },
  12802. {
  12803. name: "Standard",
  12804. height: math.unit(1400, "feet"),
  12805. default: true
  12806. },
  12807. {
  12808. name: "Distracted",
  12809. height: math.unit(15000, "feet")
  12810. },
  12811. ]
  12812. ))
  12813. characterMakers.push(() => makeCharacter(
  12814. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12815. {
  12816. front: {
  12817. height: math.unit(7 + 4 / 12, "feet"),
  12818. weight: math.unit(500, "lb"),
  12819. name: "Front",
  12820. image: {
  12821. source: "./media/characters/geno-maxwell/front.svg",
  12822. extra: 2207 / 2040,
  12823. bottom: 0.015
  12824. }
  12825. },
  12826. },
  12827. [
  12828. {
  12829. name: "Micro",
  12830. height: math.unit(3, "inches")
  12831. },
  12832. {
  12833. name: "Normal",
  12834. height: math.unit(7 + 4 / 12, "feet"),
  12835. default: true
  12836. },
  12837. {
  12838. name: "Macro",
  12839. height: math.unit(220, "feet")
  12840. },
  12841. {
  12842. name: "Megamacro",
  12843. height: math.unit(11, "miles")
  12844. },
  12845. ]
  12846. ))
  12847. characterMakers.push(() => makeCharacter(
  12848. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12849. {
  12850. front: {
  12851. height: math.unit(7 + 4 / 12, "feet"),
  12852. weight: math.unit(500, "lb"),
  12853. name: "Front",
  12854. image: {
  12855. source: "./media/characters/regena-maxwell/front.svg",
  12856. extra: 3115 / 2770,
  12857. bottom: 0.02
  12858. }
  12859. },
  12860. },
  12861. [
  12862. {
  12863. name: "Normal",
  12864. height: math.unit(7 + 4 / 12, "feet"),
  12865. default: true
  12866. },
  12867. {
  12868. name: "Macro",
  12869. height: math.unit(220, "feet")
  12870. },
  12871. {
  12872. name: "Megamacro",
  12873. height: math.unit(11, "miles")
  12874. },
  12875. ]
  12876. ))
  12877. characterMakers.push(() => makeCharacter(
  12878. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12879. {
  12880. front: {
  12881. height: math.unit(6, "feet"),
  12882. weight: math.unit(150, "lb"),
  12883. name: "Front",
  12884. image: {
  12885. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12886. extra: 860 / 690,
  12887. bottom: 0.03
  12888. }
  12889. },
  12890. },
  12891. [
  12892. {
  12893. name: "Normal",
  12894. height: math.unit(1.7, "meters"),
  12895. default: true
  12896. },
  12897. ]
  12898. ))
  12899. characterMakers.push(() => makeCharacter(
  12900. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12901. {
  12902. front: {
  12903. height: math.unit(6, "feet"),
  12904. weight: math.unit(150, "lb"),
  12905. name: "Front",
  12906. image: {
  12907. source: "./media/characters/quilly/front.svg",
  12908. extra: 890 / 776
  12909. }
  12910. },
  12911. },
  12912. [
  12913. {
  12914. name: "Gigamacro",
  12915. height: math.unit(404090, "miles"),
  12916. default: true
  12917. },
  12918. ]
  12919. ))
  12920. characterMakers.push(() => makeCharacter(
  12921. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12922. {
  12923. front: {
  12924. height: math.unit(7 + 8 / 12, "feet"),
  12925. weight: math.unit(350, "lb"),
  12926. name: "Front",
  12927. image: {
  12928. source: "./media/characters/tempest/front.svg",
  12929. extra: 1175 / 1086,
  12930. bottom: 0.02
  12931. }
  12932. },
  12933. },
  12934. [
  12935. {
  12936. name: "Normal",
  12937. height: math.unit(7 + 8 / 12, "feet"),
  12938. default: true
  12939. },
  12940. ]
  12941. ))
  12942. characterMakers.push(() => makeCharacter(
  12943. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12944. {
  12945. side: {
  12946. height: math.unit(4 + 5 / 12, "feet"),
  12947. weight: math.unit(80, "lb"),
  12948. name: "Side",
  12949. image: {
  12950. source: "./media/characters/rodger/side.svg",
  12951. extra: 1235 / 1118
  12952. }
  12953. },
  12954. },
  12955. [
  12956. {
  12957. name: "Micro",
  12958. height: math.unit(1, "inch")
  12959. },
  12960. {
  12961. name: "Normal",
  12962. height: math.unit(4 + 5 / 12, "feet"),
  12963. default: true
  12964. },
  12965. {
  12966. name: "Macro",
  12967. height: math.unit(120, "feet")
  12968. },
  12969. ]
  12970. ))
  12971. characterMakers.push(() => makeCharacter(
  12972. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12973. {
  12974. front: {
  12975. height: math.unit(6, "feet"),
  12976. weight: math.unit(150, "lb"),
  12977. name: "Front",
  12978. image: {
  12979. source: "./media/characters/danyel/front.svg",
  12980. extra: 1185 / 1123,
  12981. bottom: 0.05
  12982. }
  12983. },
  12984. },
  12985. [
  12986. {
  12987. name: "Shrunken",
  12988. height: math.unit(0.5, "mm")
  12989. },
  12990. {
  12991. name: "Micro",
  12992. height: math.unit(1, "mm"),
  12993. default: true
  12994. },
  12995. {
  12996. name: "Upsized",
  12997. height: math.unit(5 + 5 / 12, "feet")
  12998. },
  12999. ]
  13000. ))
  13001. characterMakers.push(() => makeCharacter(
  13002. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13003. {
  13004. front: {
  13005. height: math.unit(5 + 6 / 12, "feet"),
  13006. weight: math.unit(200, "lb"),
  13007. name: "Front",
  13008. image: {
  13009. source: "./media/characters/vivian-bijoux/front.svg",
  13010. extra: 1,
  13011. bottom: 0.072
  13012. }
  13013. },
  13014. },
  13015. [
  13016. {
  13017. name: "Normal",
  13018. height: math.unit(5 + 6 / 12, "feet"),
  13019. default: true
  13020. },
  13021. {
  13022. name: "Bad Dream",
  13023. height: math.unit(500, "feet")
  13024. },
  13025. {
  13026. name: "Nightmare",
  13027. height: math.unit(500, "miles")
  13028. },
  13029. ]
  13030. ))
  13031. characterMakers.push(() => makeCharacter(
  13032. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13033. {
  13034. front: {
  13035. height: math.unit(6 + 1 / 12, "feet"),
  13036. weight: math.unit(260, "lb"),
  13037. name: "Front",
  13038. image: {
  13039. source: "./media/characters/zeta/front.svg",
  13040. extra: 1968 / 1889,
  13041. bottom: 0.06
  13042. }
  13043. },
  13044. back: {
  13045. height: math.unit(6 + 1 / 12, "feet"),
  13046. weight: math.unit(260, "lb"),
  13047. name: "Back",
  13048. image: {
  13049. source: "./media/characters/zeta/back.svg",
  13050. extra: 1944 / 1858,
  13051. bottom: 0.03
  13052. }
  13053. },
  13054. hand: {
  13055. height: math.unit(1.112, "feet"),
  13056. name: "Hand",
  13057. image: {
  13058. source: "./media/characters/zeta/hand.svg"
  13059. }
  13060. },
  13061. foot: {
  13062. height: math.unit(1.48, "feet"),
  13063. name: "Foot",
  13064. image: {
  13065. source: "./media/characters/zeta/foot.svg"
  13066. }
  13067. },
  13068. },
  13069. [
  13070. {
  13071. name: "Micro",
  13072. height: math.unit(6, "inches")
  13073. },
  13074. {
  13075. name: "Normal",
  13076. height: math.unit(6 + 1 / 12, "feet"),
  13077. default: true
  13078. },
  13079. {
  13080. name: "Macro",
  13081. height: math.unit(20, "feet")
  13082. },
  13083. ]
  13084. ))
  13085. characterMakers.push(() => makeCharacter(
  13086. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13087. {
  13088. front: {
  13089. height: math.unit(6, "feet"),
  13090. weight: math.unit(150, "lb"),
  13091. name: "Front",
  13092. image: {
  13093. source: "./media/characters/jamie-larsen/front.svg",
  13094. extra: 962 / 933,
  13095. bottom: 0.02
  13096. }
  13097. },
  13098. back: {
  13099. height: math.unit(6, "feet"),
  13100. weight: math.unit(150, "lb"),
  13101. name: "Back",
  13102. image: {
  13103. source: "./media/characters/jamie-larsen/back.svg",
  13104. extra: 997 / 946
  13105. }
  13106. },
  13107. },
  13108. [
  13109. {
  13110. name: "Macro",
  13111. height: math.unit(28 + 7 / 12, "feet"),
  13112. default: true
  13113. },
  13114. {
  13115. name: "Macro+",
  13116. height: math.unit(180, "feet")
  13117. },
  13118. {
  13119. name: "Megamacro",
  13120. height: math.unit(10, "miles")
  13121. },
  13122. {
  13123. name: "Gigamacro",
  13124. height: math.unit(200000, "miles")
  13125. },
  13126. ]
  13127. ))
  13128. characterMakers.push(() => makeCharacter(
  13129. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13130. {
  13131. front: {
  13132. height: math.unit(6, "feet"),
  13133. weight: math.unit(120, "lb"),
  13134. name: "Front",
  13135. image: {
  13136. source: "./media/characters/vance/front.svg",
  13137. extra: 1980 / 1890,
  13138. bottom: 0.09
  13139. }
  13140. },
  13141. back: {
  13142. height: math.unit(6, "feet"),
  13143. weight: math.unit(120, "lb"),
  13144. name: "Back",
  13145. image: {
  13146. source: "./media/characters/vance/back.svg",
  13147. extra: 2081 / 1994,
  13148. bottom: 0.014
  13149. }
  13150. },
  13151. hand: {
  13152. height: math.unit(0.88, "feet"),
  13153. name: "Hand",
  13154. image: {
  13155. source: "./media/characters/vance/hand.svg"
  13156. }
  13157. },
  13158. foot: {
  13159. height: math.unit(0.64, "feet"),
  13160. name: "Foot",
  13161. image: {
  13162. source: "./media/characters/vance/foot.svg"
  13163. }
  13164. },
  13165. },
  13166. [
  13167. {
  13168. name: "Small",
  13169. height: math.unit(90, "feet"),
  13170. default: true
  13171. },
  13172. {
  13173. name: "Macro",
  13174. height: math.unit(100, "meters")
  13175. },
  13176. {
  13177. name: "Megamacro",
  13178. height: math.unit(15, "miles")
  13179. },
  13180. ]
  13181. ))
  13182. characterMakers.push(() => makeCharacter(
  13183. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13184. {
  13185. front: {
  13186. height: math.unit(6, "feet"),
  13187. weight: math.unit(180, "lb"),
  13188. name: "Front",
  13189. image: {
  13190. source: "./media/characters/xochitl/front.svg",
  13191. extra: 2297 / 2261,
  13192. bottom: 0.065
  13193. }
  13194. },
  13195. back: {
  13196. height: math.unit(6, "feet"),
  13197. weight: math.unit(180, "lb"),
  13198. name: "Back",
  13199. image: {
  13200. source: "./media/characters/xochitl/back.svg",
  13201. extra: 2386 / 2354,
  13202. bottom: 0.01
  13203. }
  13204. },
  13205. foot: {
  13206. height: math.unit(6 / 5 * 1.15, "feet"),
  13207. weight: math.unit(150, "lb"),
  13208. name: "Foot",
  13209. image: {
  13210. source: "./media/characters/xochitl/foot.svg"
  13211. }
  13212. },
  13213. },
  13214. [
  13215. {
  13216. name: "Macro",
  13217. height: math.unit(80, "feet")
  13218. },
  13219. {
  13220. name: "Macro+",
  13221. height: math.unit(400, "feet"),
  13222. default: true
  13223. },
  13224. {
  13225. name: "Gigamacro",
  13226. height: math.unit(80000, "miles")
  13227. },
  13228. {
  13229. name: "Gigamacro+",
  13230. height: math.unit(400000, "miles")
  13231. },
  13232. {
  13233. name: "Teramacro",
  13234. height: math.unit(300, "AU")
  13235. },
  13236. ]
  13237. ))
  13238. characterMakers.push(() => makeCharacter(
  13239. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13240. {
  13241. front: {
  13242. height: math.unit(6, "feet"),
  13243. weight: math.unit(150, "lb"),
  13244. name: "Front",
  13245. image: {
  13246. source: "./media/characters/vincent/front.svg",
  13247. extra: 1130 / 1080,
  13248. bottom: 0.055
  13249. }
  13250. },
  13251. beak: {
  13252. height: math.unit(6 * 0.1, "feet"),
  13253. name: "Beak",
  13254. image: {
  13255. source: "./media/characters/vincent/beak.svg"
  13256. }
  13257. },
  13258. hand: {
  13259. height: math.unit(6 * 0.85, "feet"),
  13260. weight: math.unit(150, "lb"),
  13261. name: "Hand",
  13262. image: {
  13263. source: "./media/characters/vincent/hand.svg"
  13264. }
  13265. },
  13266. foot: {
  13267. height: math.unit(6 * 0.19, "feet"),
  13268. weight: math.unit(150, "lb"),
  13269. name: "Foot",
  13270. image: {
  13271. source: "./media/characters/vincent/foot.svg"
  13272. }
  13273. },
  13274. },
  13275. [
  13276. {
  13277. name: "Base",
  13278. height: math.unit(6 + 5 / 12, "feet"),
  13279. default: true
  13280. },
  13281. {
  13282. name: "Macro",
  13283. height: math.unit(300, "feet")
  13284. },
  13285. {
  13286. name: "Megamacro",
  13287. height: math.unit(2, "miles")
  13288. },
  13289. {
  13290. name: "Gigamacro",
  13291. height: math.unit(1000, "miles")
  13292. },
  13293. ]
  13294. ))
  13295. characterMakers.push(() => makeCharacter(
  13296. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13297. {
  13298. front: {
  13299. height: math.unit(6 + 2 / 12, "feet"),
  13300. weight: math.unit(265, "lb"),
  13301. name: "Front",
  13302. image: {
  13303. source: "./media/characters/jay/front.svg",
  13304. extra: 1510 / 1430,
  13305. bottom: 0.042
  13306. }
  13307. },
  13308. back: {
  13309. height: math.unit(6 + 2 / 12, "feet"),
  13310. weight: math.unit(265, "lb"),
  13311. name: "Back",
  13312. image: {
  13313. source: "./media/characters/jay/back.svg",
  13314. extra: 1510 / 1430,
  13315. bottom: 0.025
  13316. }
  13317. },
  13318. clothed: {
  13319. height: math.unit(6 + 2 / 12, "feet"),
  13320. weight: math.unit(265, "lb"),
  13321. name: "Front (Clothed)",
  13322. image: {
  13323. source: "./media/characters/jay/clothed.svg",
  13324. extra: 744 / 699,
  13325. bottom: 0.043
  13326. }
  13327. },
  13328. head: {
  13329. height: math.unit(1.772, "feet"),
  13330. name: "Head",
  13331. image: {
  13332. source: "./media/characters/jay/head.svg"
  13333. }
  13334. },
  13335. sizeRay: {
  13336. height: math.unit(1.331, "feet"),
  13337. name: "Size Ray",
  13338. image: {
  13339. source: "./media/characters/jay/size-ray.svg"
  13340. }
  13341. },
  13342. },
  13343. [
  13344. {
  13345. name: "Micro",
  13346. height: math.unit(1, "inch")
  13347. },
  13348. {
  13349. name: "Normal",
  13350. height: math.unit(6 + 2 / 12, "feet"),
  13351. default: true
  13352. },
  13353. {
  13354. name: "Macro",
  13355. height: math.unit(1, "mile")
  13356. },
  13357. {
  13358. name: "Megamacro",
  13359. height: math.unit(100, "miles")
  13360. },
  13361. ]
  13362. ))
  13363. characterMakers.push(() => makeCharacter(
  13364. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13365. {
  13366. front: {
  13367. height: math.unit(2, "meters"),
  13368. weight: math.unit(500, "kg"),
  13369. name: "Front",
  13370. image: {
  13371. source: "./media/characters/coatl/front.svg",
  13372. extra: 3948 / 3500,
  13373. bottom: 0.082
  13374. }
  13375. },
  13376. },
  13377. [
  13378. {
  13379. name: "Normal",
  13380. height: math.unit(4, "meters")
  13381. },
  13382. {
  13383. name: "Macro",
  13384. height: math.unit(100, "meters"),
  13385. default: true
  13386. },
  13387. {
  13388. name: "Macro+",
  13389. height: math.unit(300, "meters")
  13390. },
  13391. {
  13392. name: "Megamacro",
  13393. height: math.unit(3, "gigameters")
  13394. },
  13395. {
  13396. name: "Megamacro+",
  13397. height: math.unit(300, "terameters")
  13398. },
  13399. {
  13400. name: "Megamacro++",
  13401. height: math.unit(3, "lightyears")
  13402. },
  13403. ]
  13404. ))
  13405. characterMakers.push(() => makeCharacter(
  13406. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13407. {
  13408. front: {
  13409. height: math.unit(6, "feet"),
  13410. weight: math.unit(50, "kg"),
  13411. name: "front",
  13412. image: {
  13413. source: "./media/characters/shiroryu/front.svg",
  13414. extra: 1990 / 1935
  13415. }
  13416. },
  13417. },
  13418. [
  13419. {
  13420. name: "Mortal Mingling",
  13421. height: math.unit(3, "meters")
  13422. },
  13423. {
  13424. name: "Kaiju-ish",
  13425. height: math.unit(250, "meters")
  13426. },
  13427. {
  13428. name: "Somewhat Godly",
  13429. height: math.unit(400, "km"),
  13430. default: true
  13431. },
  13432. {
  13433. name: "Planetary",
  13434. height: math.unit(300, "megameters")
  13435. },
  13436. {
  13437. name: "Galaxy-dwarfing",
  13438. height: math.unit(450, "kiloparsecs")
  13439. },
  13440. {
  13441. name: "Universe Eater",
  13442. height: math.unit(150, "gigaparsecs")
  13443. },
  13444. {
  13445. name: "Almost Immeasurable",
  13446. height: math.unit(1.3e266, "yottaparsecs")
  13447. },
  13448. ]
  13449. ))
  13450. characterMakers.push(() => makeCharacter(
  13451. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13452. {
  13453. front: {
  13454. height: math.unit(6, "feet"),
  13455. weight: math.unit(150, "lb"),
  13456. name: "Front",
  13457. image: {
  13458. source: "./media/characters/umeko/front.svg",
  13459. extra: 1,
  13460. bottom: 0.019
  13461. }
  13462. },
  13463. frontArmored: {
  13464. height: math.unit(6, "feet"),
  13465. weight: math.unit(150, "lb"),
  13466. name: "Front (Armored)",
  13467. image: {
  13468. source: "./media/characters/umeko/front-armored.svg",
  13469. extra: 1,
  13470. bottom: 0.021
  13471. }
  13472. },
  13473. },
  13474. [
  13475. {
  13476. name: "Macro",
  13477. height: math.unit(220, "feet"),
  13478. default: true
  13479. },
  13480. {
  13481. name: "Guardian Dragon",
  13482. height: math.unit(50, "miles")
  13483. },
  13484. {
  13485. name: "Cosmic",
  13486. height: math.unit(800000, "miles")
  13487. },
  13488. ]
  13489. ))
  13490. characterMakers.push(() => makeCharacter(
  13491. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13492. {
  13493. front: {
  13494. height: math.unit(6, "feet"),
  13495. weight: math.unit(150, "lb"),
  13496. name: "Front",
  13497. image: {
  13498. source: "./media/characters/cassidy/front.svg",
  13499. extra: 1,
  13500. bottom: 0.043
  13501. }
  13502. },
  13503. },
  13504. [
  13505. {
  13506. name: "Canon Height",
  13507. height: math.unit(120, "feet"),
  13508. default: true
  13509. },
  13510. {
  13511. name: "Macro+",
  13512. height: math.unit(400, "feet")
  13513. },
  13514. {
  13515. name: "Macro++",
  13516. height: math.unit(4000, "feet")
  13517. },
  13518. {
  13519. name: "Megamacro",
  13520. height: math.unit(3, "miles")
  13521. },
  13522. ]
  13523. ))
  13524. characterMakers.push(() => makeCharacter(
  13525. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13526. {
  13527. front: {
  13528. height: math.unit(6, "feet"),
  13529. weight: math.unit(150, "lb"),
  13530. name: "Front",
  13531. image: {
  13532. source: "./media/characters/isaac/front.svg",
  13533. extra: 896 / 815,
  13534. bottom: 0.11
  13535. }
  13536. },
  13537. },
  13538. [
  13539. {
  13540. name: "Human Size",
  13541. height: math.unit(8, "feet"),
  13542. default: true
  13543. },
  13544. {
  13545. name: "Macro",
  13546. height: math.unit(400, "feet")
  13547. },
  13548. {
  13549. name: "Megamacro",
  13550. height: math.unit(50, "miles")
  13551. },
  13552. {
  13553. name: "Canon Height",
  13554. height: math.unit(200, "AU")
  13555. },
  13556. ]
  13557. ))
  13558. characterMakers.push(() => makeCharacter(
  13559. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13560. {
  13561. front: {
  13562. height: math.unit(6, "feet"),
  13563. weight: math.unit(72, "kg"),
  13564. name: "Front",
  13565. image: {
  13566. source: "./media/characters/sleekit/front.svg",
  13567. extra: 4693 / 4487,
  13568. bottom: 0.012
  13569. }
  13570. },
  13571. },
  13572. [
  13573. {
  13574. name: "Minimum Height",
  13575. height: math.unit(10, "meters")
  13576. },
  13577. {
  13578. name: "Smaller",
  13579. height: math.unit(25, "meters")
  13580. },
  13581. {
  13582. name: "Larger",
  13583. height: math.unit(38, "meters"),
  13584. default: true
  13585. },
  13586. {
  13587. name: "Maximum height",
  13588. height: math.unit(100, "meters")
  13589. },
  13590. ]
  13591. ))
  13592. characterMakers.push(() => makeCharacter(
  13593. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13594. {
  13595. front: {
  13596. height: math.unit(6, "feet"),
  13597. weight: math.unit(150, "lb"),
  13598. name: "Front",
  13599. image: {
  13600. source: "./media/characters/nillia/front.svg",
  13601. extra: 2195 / 2037,
  13602. bottom: 0.005
  13603. }
  13604. },
  13605. back: {
  13606. height: math.unit(6, "feet"),
  13607. weight: math.unit(150, "lb"),
  13608. name: "Back",
  13609. image: {
  13610. source: "./media/characters/nillia/back.svg",
  13611. extra: 2195 / 2037,
  13612. bottom: 0.005
  13613. }
  13614. },
  13615. },
  13616. [
  13617. {
  13618. name: "Canon Height",
  13619. height: math.unit(489, "feet"),
  13620. default: true
  13621. }
  13622. ]
  13623. ))
  13624. characterMakers.push(() => makeCharacter(
  13625. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13626. {
  13627. front: {
  13628. height: math.unit(6, "feet"),
  13629. weight: math.unit(150, "lb"),
  13630. name: "Front",
  13631. image: {
  13632. source: "./media/characters/mesmyriza/front.svg",
  13633. extra: 2067 / 1784,
  13634. bottom: 0.035
  13635. }
  13636. },
  13637. foot: {
  13638. height: math.unit(6 / (250 / 35), "feet"),
  13639. name: "Foot",
  13640. image: {
  13641. source: "./media/characters/mesmyriza/foot.svg"
  13642. }
  13643. },
  13644. },
  13645. [
  13646. {
  13647. name: "Macro",
  13648. height: math.unit(457, "meters"),
  13649. default: true
  13650. },
  13651. {
  13652. name: "Megamacro",
  13653. height: math.unit(8, "megameters")
  13654. },
  13655. ]
  13656. ))
  13657. characterMakers.push(() => makeCharacter(
  13658. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13659. {
  13660. front: {
  13661. height: math.unit(6, "feet"),
  13662. weight: math.unit(250, "lb"),
  13663. name: "Front",
  13664. image: {
  13665. source: "./media/characters/saudade/front.svg",
  13666. extra: 1172 / 1139,
  13667. bottom: 0.035
  13668. }
  13669. },
  13670. },
  13671. [
  13672. {
  13673. name: "Micro",
  13674. height: math.unit(3, "inches")
  13675. },
  13676. {
  13677. name: "Normal",
  13678. height: math.unit(6, "feet"),
  13679. default: true
  13680. },
  13681. {
  13682. name: "Macro",
  13683. height: math.unit(50, "feet")
  13684. },
  13685. {
  13686. name: "Megamacro",
  13687. height: math.unit(2800, "feet")
  13688. },
  13689. ]
  13690. ))
  13691. characterMakers.push(() => makeCharacter(
  13692. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13693. {
  13694. front: {
  13695. height: math.unit(5 + 4 / 12, "feet"),
  13696. weight: math.unit(100, "lb"),
  13697. name: "Front",
  13698. image: {
  13699. source: "./media/characters/keireer/front.svg",
  13700. extra: 716 / 666,
  13701. bottom: 0.05
  13702. }
  13703. },
  13704. },
  13705. [
  13706. {
  13707. name: "Normal",
  13708. height: math.unit(5 + 4 / 12, "feet"),
  13709. default: true
  13710. },
  13711. ]
  13712. ))
  13713. characterMakers.push(() => makeCharacter(
  13714. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13715. {
  13716. front: {
  13717. height: math.unit(6, "feet"),
  13718. weight: math.unit(90, "kg"),
  13719. name: "Front",
  13720. image: {
  13721. source: "./media/characters/mirja/front.svg",
  13722. extra: 1789 / 1683,
  13723. bottom: 0.05
  13724. }
  13725. },
  13726. frontDressed: {
  13727. height: math.unit(6, "feet"),
  13728. weight: math.unit(90, "lb"),
  13729. name: "Front (Dressed)",
  13730. image: {
  13731. source: "./media/characters/mirja/front-dressed.svg",
  13732. extra: 1789 / 1683,
  13733. bottom: 0.05
  13734. }
  13735. },
  13736. back: {
  13737. height: math.unit(6, "feet"),
  13738. weight: math.unit(90, "lb"),
  13739. name: "Back",
  13740. image: {
  13741. source: "./media/characters/mirja/back.svg",
  13742. extra: 953 / 917,
  13743. bottom: 0.017
  13744. }
  13745. },
  13746. },
  13747. [
  13748. {
  13749. name: "\"Incognito\"",
  13750. height: math.unit(3, "meters")
  13751. },
  13752. {
  13753. name: "Strolling Size",
  13754. height: math.unit(15, "km")
  13755. },
  13756. {
  13757. name: "Larger Strolling Size",
  13758. height: math.unit(400, "km")
  13759. },
  13760. {
  13761. name: "Preferred Size",
  13762. height: math.unit(5000, "km")
  13763. },
  13764. {
  13765. name: "True Size",
  13766. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13767. default: true
  13768. },
  13769. ]
  13770. ))
  13771. characterMakers.push(() => makeCharacter(
  13772. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13773. {
  13774. front: {
  13775. height: math.unit(15, "feet"),
  13776. weight: math.unit(880, "kg"),
  13777. name: "Front",
  13778. image: {
  13779. source: "./media/characters/nightraver/front.svg",
  13780. extra: 2444 / 2160,
  13781. bottom: 0.027
  13782. }
  13783. },
  13784. back: {
  13785. height: math.unit(15, "feet"),
  13786. weight: math.unit(880, "kg"),
  13787. name: "Back",
  13788. image: {
  13789. source: "./media/characters/nightraver/back.svg",
  13790. extra: 2309 / 2180,
  13791. bottom: 0.005
  13792. }
  13793. },
  13794. sole: {
  13795. height: math.unit(2.878, "feet"),
  13796. name: "Sole",
  13797. image: {
  13798. source: "./media/characters/nightraver/sole.svg"
  13799. }
  13800. },
  13801. foot: {
  13802. height: math.unit(2.285, "feet"),
  13803. name: "Foot",
  13804. image: {
  13805. source: "./media/characters/nightraver/foot.svg"
  13806. }
  13807. },
  13808. maw: {
  13809. height: math.unit(2.67, "feet"),
  13810. name: "Maw",
  13811. image: {
  13812. source: "./media/characters/nightraver/maw.svg"
  13813. }
  13814. },
  13815. },
  13816. [
  13817. {
  13818. name: "Micro",
  13819. height: math.unit(1, "cm")
  13820. },
  13821. {
  13822. name: "Normal",
  13823. height: math.unit(15, "feet"),
  13824. default: true
  13825. },
  13826. {
  13827. name: "Macro",
  13828. height: math.unit(300, "feet")
  13829. },
  13830. {
  13831. name: "Megamacro",
  13832. height: math.unit(300, "miles")
  13833. },
  13834. {
  13835. name: "Gigamacro",
  13836. height: math.unit(10000, "miles")
  13837. },
  13838. ]
  13839. ))
  13840. characterMakers.push(() => makeCharacter(
  13841. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13842. {
  13843. side: {
  13844. height: math.unit(2, "inches"),
  13845. weight: math.unit(5, "grams"),
  13846. name: "Side",
  13847. image: {
  13848. source: "./media/characters/arc/side.svg"
  13849. }
  13850. },
  13851. },
  13852. [
  13853. {
  13854. name: "Micro",
  13855. height: math.unit(2, "inches"),
  13856. default: true
  13857. },
  13858. ]
  13859. ))
  13860. characterMakers.push(() => makeCharacter(
  13861. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13862. {
  13863. front: {
  13864. height: math.unit(1.1938, "meters"),
  13865. weight: math.unit(54, "kg"),
  13866. name: "Front",
  13867. image: {
  13868. source: "./media/characters/nebula-shahar/front.svg",
  13869. extra: 1642 / 1436,
  13870. bottom: 0.06
  13871. }
  13872. },
  13873. },
  13874. [
  13875. {
  13876. name: "Megamicro",
  13877. height: math.unit(0.3, "mm")
  13878. },
  13879. {
  13880. name: "Micro",
  13881. height: math.unit(3, "cm")
  13882. },
  13883. {
  13884. name: "Normal",
  13885. height: math.unit(138, "cm"),
  13886. default: true
  13887. },
  13888. {
  13889. name: "Macro",
  13890. height: math.unit(30, "m")
  13891. },
  13892. ]
  13893. ))
  13894. characterMakers.push(() => makeCharacter(
  13895. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13896. {
  13897. front: {
  13898. height: math.unit(5.24, "feet"),
  13899. weight: math.unit(150, "lb"),
  13900. name: "Front",
  13901. image: {
  13902. source: "./media/characters/shayla/front.svg",
  13903. extra: 1512 / 1414,
  13904. bottom: 0.01
  13905. }
  13906. },
  13907. back: {
  13908. height: math.unit(5.24, "feet"),
  13909. weight: math.unit(150, "lb"),
  13910. name: "Back",
  13911. image: {
  13912. source: "./media/characters/shayla/back.svg",
  13913. extra: 1512 / 1414
  13914. }
  13915. },
  13916. hand: {
  13917. height: math.unit(0.7781496062992126, "feet"),
  13918. name: "Hand",
  13919. image: {
  13920. source: "./media/characters/shayla/hand.svg"
  13921. }
  13922. },
  13923. foot: {
  13924. height: math.unit(1.4206036745406823, "feet"),
  13925. name: "Foot",
  13926. image: {
  13927. source: "./media/characters/shayla/foot.svg"
  13928. }
  13929. },
  13930. },
  13931. [
  13932. {
  13933. name: "Micro",
  13934. height: math.unit(0.32, "feet")
  13935. },
  13936. {
  13937. name: "Normal",
  13938. height: math.unit(5.24, "feet"),
  13939. default: true
  13940. },
  13941. {
  13942. name: "Macro",
  13943. height: math.unit(492.12, "feet")
  13944. },
  13945. {
  13946. name: "Megamacro",
  13947. height: math.unit(186.41, "miles")
  13948. },
  13949. ]
  13950. ))
  13951. characterMakers.push(() => makeCharacter(
  13952. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13953. {
  13954. front: {
  13955. height: math.unit(2.2, "m"),
  13956. weight: math.unit(120, "kg"),
  13957. name: "Front",
  13958. image: {
  13959. source: "./media/characters/pia-jr/front.svg",
  13960. extra: 1000 / 970,
  13961. bottom: 0.035
  13962. }
  13963. },
  13964. hand: {
  13965. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13966. name: "Hand",
  13967. image: {
  13968. source: "./media/characters/pia-jr/hand.svg"
  13969. }
  13970. },
  13971. paw: {
  13972. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13973. name: "Paw",
  13974. image: {
  13975. source: "./media/characters/pia-jr/paw.svg"
  13976. }
  13977. },
  13978. },
  13979. [
  13980. {
  13981. name: "Micro",
  13982. height: math.unit(1.2, "cm")
  13983. },
  13984. {
  13985. name: "Normal",
  13986. height: math.unit(2.2, "m"),
  13987. default: true
  13988. },
  13989. {
  13990. name: "Macro",
  13991. height: math.unit(180, "m")
  13992. },
  13993. {
  13994. name: "Megamacro",
  13995. height: math.unit(420, "km")
  13996. },
  13997. ]
  13998. ))
  13999. characterMakers.push(() => makeCharacter(
  14000. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14001. {
  14002. front: {
  14003. height: math.unit(2, "m"),
  14004. weight: math.unit(115, "kg"),
  14005. name: "Front",
  14006. image: {
  14007. source: "./media/characters/pia-sr/front.svg",
  14008. extra: 760 / 730,
  14009. bottom: 0.015
  14010. }
  14011. },
  14012. back: {
  14013. height: math.unit(2, "m"),
  14014. weight: math.unit(115, "kg"),
  14015. name: "Back",
  14016. image: {
  14017. source: "./media/characters/pia-sr/back.svg",
  14018. extra: 760 / 730,
  14019. bottom: 0.01
  14020. }
  14021. },
  14022. hand: {
  14023. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14024. name: "Hand",
  14025. image: {
  14026. source: "./media/characters/pia-sr/hand.svg"
  14027. }
  14028. },
  14029. foot: {
  14030. height: math.unit(1.83, "feet"),
  14031. name: "Foot",
  14032. image: {
  14033. source: "./media/characters/pia-sr/foot.svg"
  14034. }
  14035. },
  14036. },
  14037. [
  14038. {
  14039. name: "Micro",
  14040. height: math.unit(88, "mm")
  14041. },
  14042. {
  14043. name: "Normal",
  14044. height: math.unit(2, "m"),
  14045. default: true
  14046. },
  14047. {
  14048. name: "Macro",
  14049. height: math.unit(200, "m")
  14050. },
  14051. {
  14052. name: "Megamacro",
  14053. height: math.unit(420, "km")
  14054. },
  14055. ]
  14056. ))
  14057. characterMakers.push(() => makeCharacter(
  14058. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14059. {
  14060. front: {
  14061. height: math.unit(8 + 2 / 12, "feet"),
  14062. weight: math.unit(300, "lb"),
  14063. name: "Front",
  14064. image: {
  14065. source: "./media/characters/kibibyte/front.svg",
  14066. extra: 2221 / 2098,
  14067. bottom: 0.04
  14068. }
  14069. },
  14070. },
  14071. [
  14072. {
  14073. name: "Normal",
  14074. height: math.unit(8 + 2 / 12, "feet"),
  14075. default: true
  14076. },
  14077. {
  14078. name: "Socialable Macro",
  14079. height: math.unit(50, "feet")
  14080. },
  14081. {
  14082. name: "Macro",
  14083. height: math.unit(300, "feet")
  14084. },
  14085. {
  14086. name: "Megamacro",
  14087. height: math.unit(500, "miles")
  14088. },
  14089. ]
  14090. ))
  14091. characterMakers.push(() => makeCharacter(
  14092. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14093. {
  14094. front: {
  14095. height: math.unit(6, "feet"),
  14096. weight: math.unit(150, "lb"),
  14097. name: "Front",
  14098. image: {
  14099. source: "./media/characters/felix/front.svg",
  14100. extra: 762 / 722,
  14101. bottom: 0.02
  14102. }
  14103. },
  14104. frontClothed: {
  14105. height: math.unit(6, "feet"),
  14106. weight: math.unit(150, "lb"),
  14107. name: "Front (Clothed)",
  14108. image: {
  14109. source: "./media/characters/felix/front-clothed.svg",
  14110. extra: 762 / 722,
  14111. bottom: 0.02
  14112. }
  14113. },
  14114. },
  14115. [
  14116. {
  14117. name: "Normal",
  14118. height: math.unit(6 + 8 / 12, "feet"),
  14119. default: true
  14120. },
  14121. {
  14122. name: "Macro",
  14123. height: math.unit(2600, "feet")
  14124. },
  14125. {
  14126. name: "Megamacro",
  14127. height: math.unit(450, "miles")
  14128. },
  14129. ]
  14130. ))
  14131. characterMakers.push(() => makeCharacter(
  14132. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14133. {
  14134. front: {
  14135. height: math.unit(6 + 1 / 12, "feet"),
  14136. weight: math.unit(250, "lb"),
  14137. name: "Front",
  14138. image: {
  14139. source: "./media/characters/tobo/front.svg",
  14140. extra: 608 / 586,
  14141. bottom: 0.023
  14142. }
  14143. },
  14144. back: {
  14145. height: math.unit(6 + 1 / 12, "feet"),
  14146. weight: math.unit(250, "lb"),
  14147. name: "Back",
  14148. image: {
  14149. source: "./media/characters/tobo/back.svg",
  14150. extra: 608 / 586
  14151. }
  14152. },
  14153. },
  14154. [
  14155. {
  14156. name: "Nano",
  14157. height: math.unit(2, "nm")
  14158. },
  14159. {
  14160. name: "Megamicro",
  14161. height: math.unit(0.1, "mm")
  14162. },
  14163. {
  14164. name: "Micro",
  14165. height: math.unit(1, "inch"),
  14166. default: true
  14167. },
  14168. {
  14169. name: "Human-sized",
  14170. height: math.unit(6 + 1 / 12, "feet")
  14171. },
  14172. {
  14173. name: "Macro",
  14174. height: math.unit(250, "feet")
  14175. },
  14176. {
  14177. name: "Megamacro",
  14178. height: math.unit(75, "miles")
  14179. },
  14180. {
  14181. name: "Texas-sized",
  14182. height: math.unit(750, "miles")
  14183. },
  14184. {
  14185. name: "Teramacro",
  14186. height: math.unit(50000, "miles")
  14187. },
  14188. ]
  14189. ))
  14190. characterMakers.push(() => makeCharacter(
  14191. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14192. {
  14193. front: {
  14194. height: math.unit(6, "feet"),
  14195. weight: math.unit(269, "lb"),
  14196. name: "Front",
  14197. image: {
  14198. source: "./media/characters/danny-kapowsky/front.svg",
  14199. extra: 766 / 736,
  14200. bottom: 0.044
  14201. }
  14202. },
  14203. back: {
  14204. height: math.unit(6, "feet"),
  14205. weight: math.unit(269, "lb"),
  14206. name: "Back",
  14207. image: {
  14208. source: "./media/characters/danny-kapowsky/back.svg",
  14209. extra: 797 / 760,
  14210. bottom: 0.025
  14211. }
  14212. },
  14213. },
  14214. [
  14215. {
  14216. name: "Macro",
  14217. height: math.unit(150, "feet"),
  14218. default: true
  14219. },
  14220. {
  14221. name: "Macro+",
  14222. height: math.unit(200, "feet")
  14223. },
  14224. {
  14225. name: "Macro++",
  14226. height: math.unit(300, "feet")
  14227. },
  14228. {
  14229. name: "Macro+++",
  14230. height: math.unit(400, "feet")
  14231. },
  14232. ]
  14233. ))
  14234. characterMakers.push(() => makeCharacter(
  14235. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14236. {
  14237. side: {
  14238. height: math.unit(6, "feet"),
  14239. weight: math.unit(170, "lb"),
  14240. name: "Side",
  14241. image: {
  14242. source: "./media/characters/finn/side.svg",
  14243. extra: 1953 / 1807,
  14244. bottom: 0.057
  14245. }
  14246. },
  14247. },
  14248. [
  14249. {
  14250. name: "Megamacro",
  14251. height: math.unit(14445, "feet"),
  14252. default: true
  14253. },
  14254. ]
  14255. ))
  14256. characterMakers.push(() => makeCharacter(
  14257. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14258. {
  14259. front: {
  14260. height: math.unit(5 + 6 / 12, "feet"),
  14261. weight: math.unit(125, "lb"),
  14262. name: "Front",
  14263. image: {
  14264. source: "./media/characters/roy/front.svg",
  14265. extra: 1,
  14266. bottom: 0.11
  14267. }
  14268. },
  14269. },
  14270. [
  14271. {
  14272. name: "Micro",
  14273. height: math.unit(3, "inches"),
  14274. default: true
  14275. },
  14276. {
  14277. name: "Normal",
  14278. height: math.unit(5 + 6 / 12, "feet")
  14279. },
  14280. {
  14281. name: "Lesser Macro",
  14282. height: math.unit(60, "feet")
  14283. },
  14284. {
  14285. name: "Greater Macro",
  14286. height: math.unit(120, "feet")
  14287. },
  14288. ]
  14289. ))
  14290. characterMakers.push(() => makeCharacter(
  14291. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14292. {
  14293. front: {
  14294. height: math.unit(6, "feet"),
  14295. weight: math.unit(100, "lb"),
  14296. name: "Front",
  14297. image: {
  14298. source: "./media/characters/aevsivs/front.svg",
  14299. extra: 1,
  14300. bottom: 0.03
  14301. }
  14302. },
  14303. back: {
  14304. height: math.unit(6, "feet"),
  14305. weight: math.unit(100, "lb"),
  14306. name: "Back",
  14307. image: {
  14308. source: "./media/characters/aevsivs/back.svg"
  14309. }
  14310. },
  14311. },
  14312. [
  14313. {
  14314. name: "Micro",
  14315. height: math.unit(2, "inches"),
  14316. default: true
  14317. },
  14318. {
  14319. name: "Normal",
  14320. height: math.unit(5, "feet")
  14321. },
  14322. ]
  14323. ))
  14324. characterMakers.push(() => makeCharacter(
  14325. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14326. {
  14327. front: {
  14328. height: math.unit(5 + 7 / 12, "feet"),
  14329. weight: math.unit(159, "lb"),
  14330. name: "Front",
  14331. image: {
  14332. source: "./media/characters/hildegard/front.svg",
  14333. extra: 289 / 269,
  14334. bottom: 7.63 / 297.8
  14335. }
  14336. },
  14337. back: {
  14338. height: math.unit(5 + 7 / 12, "feet"),
  14339. weight: math.unit(159, "lb"),
  14340. name: "Back",
  14341. image: {
  14342. source: "./media/characters/hildegard/back.svg",
  14343. extra: 280 / 260,
  14344. bottom: 2.3 / 282
  14345. }
  14346. },
  14347. },
  14348. [
  14349. {
  14350. name: "Normal",
  14351. height: math.unit(5 + 7 / 12, "feet"),
  14352. default: true
  14353. },
  14354. ]
  14355. ))
  14356. characterMakers.push(() => makeCharacter(
  14357. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14358. {
  14359. bernard: {
  14360. height: math.unit(2 + 7 / 12, "feet"),
  14361. weight: math.unit(66, "lb"),
  14362. name: "Bernard",
  14363. rename: true,
  14364. image: {
  14365. source: "./media/characters/bernard-wilder/bernard.svg",
  14366. extra: 192 / 128,
  14367. bottom: 0.05
  14368. }
  14369. },
  14370. wilder: {
  14371. height: math.unit(5 + 8 / 12, "feet"),
  14372. weight: math.unit(143, "lb"),
  14373. name: "Wilder",
  14374. rename: true,
  14375. image: {
  14376. source: "./media/characters/bernard-wilder/wilder.svg",
  14377. extra: 361 / 312,
  14378. bottom: 0.02
  14379. }
  14380. },
  14381. },
  14382. [
  14383. {
  14384. name: "Normal",
  14385. height: math.unit(2 + 7 / 12, "feet"),
  14386. default: true
  14387. },
  14388. ]
  14389. ))
  14390. characterMakers.push(() => makeCharacter(
  14391. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14392. {
  14393. anthro: {
  14394. height: math.unit(6 + 1 / 12, "feet"),
  14395. weight: math.unit(155, "lb"),
  14396. name: "Anthro",
  14397. image: {
  14398. source: "./media/characters/hearth/anthro.svg",
  14399. extra: 260 / 250,
  14400. bottom: 0.02
  14401. }
  14402. },
  14403. feral: {
  14404. height: math.unit(3.78, "feet"),
  14405. weight: math.unit(35, "kg"),
  14406. name: "Feral",
  14407. image: {
  14408. source: "./media/characters/hearth/feral.svg",
  14409. extra: 153 / 135,
  14410. bottom: 0.03
  14411. }
  14412. },
  14413. },
  14414. [
  14415. {
  14416. name: "Normal",
  14417. height: math.unit(6 + 1 / 12, "feet"),
  14418. default: true
  14419. },
  14420. ]
  14421. ))
  14422. characterMakers.push(() => makeCharacter(
  14423. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14424. {
  14425. front: {
  14426. height: math.unit(6, "feet"),
  14427. weight: math.unit(182, "lb"),
  14428. name: "Front",
  14429. image: {
  14430. source: "./media/characters/ingrid/front.svg",
  14431. extra: 294 / 268,
  14432. bottom: 0.027
  14433. }
  14434. },
  14435. },
  14436. [
  14437. {
  14438. name: "Normal",
  14439. height: math.unit(6, "feet"),
  14440. default: true
  14441. },
  14442. ]
  14443. ))
  14444. characterMakers.push(() => makeCharacter(
  14445. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14446. {
  14447. eevee: {
  14448. height: math.unit(2 + 10 / 12, "feet"),
  14449. weight: math.unit(86, "lb"),
  14450. name: "Malgam",
  14451. image: {
  14452. source: "./media/characters/malgam/eevee.svg",
  14453. extra: 218 / 180,
  14454. bottom: 0.2
  14455. }
  14456. },
  14457. sylveon: {
  14458. height: math.unit(4, "feet"),
  14459. weight: math.unit(101, "lb"),
  14460. name: "Future Malgam",
  14461. rename: true,
  14462. image: {
  14463. source: "./media/characters/malgam/sylveon.svg",
  14464. extra: 371 / 325,
  14465. bottom: 0.015
  14466. }
  14467. },
  14468. gigantamax: {
  14469. height: math.unit(50, "feet"),
  14470. name: "Gigantamax Malgam",
  14471. rename: true,
  14472. image: {
  14473. source: "./media/characters/malgam/gigantamax.svg"
  14474. }
  14475. },
  14476. },
  14477. [
  14478. {
  14479. name: "Normal",
  14480. height: math.unit(2 + 10 / 12, "feet"),
  14481. default: true
  14482. },
  14483. ]
  14484. ))
  14485. characterMakers.push(() => makeCharacter(
  14486. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14487. {
  14488. front: {
  14489. height: math.unit(5 + 11 / 12, "feet"),
  14490. weight: math.unit(188, "lb"),
  14491. name: "Front",
  14492. image: {
  14493. source: "./media/characters/fleur/front.svg",
  14494. extra: 309 / 283,
  14495. bottom: 0.007
  14496. }
  14497. },
  14498. },
  14499. [
  14500. {
  14501. name: "Normal",
  14502. height: math.unit(5 + 11 / 12, "feet"),
  14503. default: true
  14504. },
  14505. ]
  14506. ))
  14507. characterMakers.push(() => makeCharacter(
  14508. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14509. {
  14510. front: {
  14511. height: math.unit(5 + 4 / 12, "feet"),
  14512. weight: math.unit(122, "lb"),
  14513. name: "Front",
  14514. image: {
  14515. source: "./media/characters/jude/front.svg",
  14516. extra: 288 / 273,
  14517. bottom: 0.03
  14518. }
  14519. },
  14520. },
  14521. [
  14522. {
  14523. name: "Normal",
  14524. height: math.unit(5 + 4 / 12, "feet"),
  14525. default: true
  14526. },
  14527. ]
  14528. ))
  14529. characterMakers.push(() => makeCharacter(
  14530. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14531. {
  14532. front: {
  14533. height: math.unit(5 + 11 / 12, "feet"),
  14534. weight: math.unit(190, "lb"),
  14535. name: "Front",
  14536. image: {
  14537. source: "./media/characters/seara/front.svg",
  14538. extra: 1,
  14539. bottom: 0.05
  14540. }
  14541. },
  14542. },
  14543. [
  14544. {
  14545. name: "Normal",
  14546. height: math.unit(5 + 11 / 12, "feet"),
  14547. default: true
  14548. },
  14549. ]
  14550. ))
  14551. characterMakers.push(() => makeCharacter(
  14552. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14553. {
  14554. front: {
  14555. height: math.unit(16 + 5 / 12, "feet"),
  14556. weight: math.unit(524, "lb"),
  14557. name: "Front",
  14558. image: {
  14559. source: "./media/characters/caspian/front.svg",
  14560. extra: 1,
  14561. bottom: 0.04
  14562. }
  14563. },
  14564. },
  14565. [
  14566. {
  14567. name: "Normal",
  14568. height: math.unit(16 + 5 / 12, "feet"),
  14569. default: true
  14570. },
  14571. ]
  14572. ))
  14573. characterMakers.push(() => makeCharacter(
  14574. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14575. {
  14576. front: {
  14577. height: math.unit(5 + 7 / 12, "feet"),
  14578. weight: math.unit(170, "lb"),
  14579. name: "Front",
  14580. image: {
  14581. source: "./media/characters/mika/front.svg",
  14582. extra: 1,
  14583. bottom: 0.016
  14584. }
  14585. },
  14586. },
  14587. [
  14588. {
  14589. name: "Normal",
  14590. height: math.unit(5 + 7 / 12, "feet"),
  14591. default: true
  14592. },
  14593. ]
  14594. ))
  14595. characterMakers.push(() => makeCharacter(
  14596. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14597. {
  14598. front: {
  14599. height: math.unit(6 + 2 / 12, "feet"),
  14600. weight: math.unit(268, "lb"),
  14601. name: "Front",
  14602. image: {
  14603. source: "./media/characters/sol/front.svg",
  14604. extra: 247 / 231,
  14605. bottom: 0.05
  14606. }
  14607. },
  14608. },
  14609. [
  14610. {
  14611. name: "Normal",
  14612. height: math.unit(6 + 2 / 12, "feet"),
  14613. default: true
  14614. },
  14615. ]
  14616. ))
  14617. characterMakers.push(() => makeCharacter(
  14618. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14619. {
  14620. buizel: {
  14621. height: math.unit(2 + 5 / 12, "feet"),
  14622. weight: math.unit(87, "lb"),
  14623. name: "Buizel",
  14624. image: {
  14625. source: "./media/characters/umiko/buizel.svg",
  14626. extra: 172 / 157,
  14627. bottom: 0.01
  14628. }
  14629. },
  14630. floatzel: {
  14631. height: math.unit(5 + 9 / 12, "feet"),
  14632. weight: math.unit(250, "lb"),
  14633. name: "Floatzel",
  14634. image: {
  14635. source: "./media/characters/umiko/floatzel.svg",
  14636. extra: 262 / 248
  14637. }
  14638. },
  14639. },
  14640. [
  14641. {
  14642. name: "Normal",
  14643. height: math.unit(2 + 5 / 12, "feet"),
  14644. default: true
  14645. },
  14646. ]
  14647. ))
  14648. characterMakers.push(() => makeCharacter(
  14649. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14650. {
  14651. front: {
  14652. height: math.unit(6 + 2 / 12, "feet"),
  14653. weight: math.unit(146, "lb"),
  14654. name: "Front",
  14655. image: {
  14656. source: "./media/characters/iliac/front.svg",
  14657. extra: 389 / 365,
  14658. bottom: 0.035
  14659. }
  14660. },
  14661. },
  14662. [
  14663. {
  14664. name: "Normal",
  14665. height: math.unit(6 + 2 / 12, "feet"),
  14666. default: true
  14667. },
  14668. ]
  14669. ))
  14670. characterMakers.push(() => makeCharacter(
  14671. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14672. {
  14673. front: {
  14674. height: math.unit(6, "feet"),
  14675. weight: math.unit(170, "lb"),
  14676. name: "Front",
  14677. image: {
  14678. source: "./media/characters/topaz/front.svg",
  14679. extra: 317 / 303,
  14680. bottom: 0.055
  14681. }
  14682. },
  14683. },
  14684. [
  14685. {
  14686. name: "Normal",
  14687. height: math.unit(6, "feet"),
  14688. default: true
  14689. },
  14690. ]
  14691. ))
  14692. characterMakers.push(() => makeCharacter(
  14693. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14694. {
  14695. front: {
  14696. height: math.unit(5 + 11 / 12, "feet"),
  14697. weight: math.unit(144, "lb"),
  14698. name: "Front",
  14699. image: {
  14700. source: "./media/characters/gabriel/front.svg",
  14701. extra: 285 / 262,
  14702. bottom: 0.004
  14703. }
  14704. },
  14705. },
  14706. [
  14707. {
  14708. name: "Normal",
  14709. height: math.unit(5 + 11 / 12, "feet"),
  14710. default: true
  14711. },
  14712. ]
  14713. ))
  14714. characterMakers.push(() => makeCharacter(
  14715. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14716. {
  14717. side: {
  14718. height: math.unit(6 + 5 / 12, "feet"),
  14719. weight: math.unit(300, "lb"),
  14720. name: "Side",
  14721. image: {
  14722. source: "./media/characters/tempest-suicune/side.svg",
  14723. extra: 195 / 154,
  14724. bottom: 0.04
  14725. }
  14726. },
  14727. },
  14728. [
  14729. {
  14730. name: "Normal",
  14731. height: math.unit(6 + 5 / 12, "feet"),
  14732. default: true
  14733. },
  14734. ]
  14735. ))
  14736. characterMakers.push(() => makeCharacter(
  14737. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14738. {
  14739. front: {
  14740. height: math.unit(7 + 2 / 12, "feet"),
  14741. weight: math.unit(322, "lb"),
  14742. name: "Front",
  14743. image: {
  14744. source: "./media/characters/vulcan/front.svg",
  14745. extra: 154 / 147,
  14746. bottom: 0.04
  14747. }
  14748. },
  14749. },
  14750. [
  14751. {
  14752. name: "Normal",
  14753. height: math.unit(7 + 2 / 12, "feet"),
  14754. default: true
  14755. },
  14756. ]
  14757. ))
  14758. characterMakers.push(() => makeCharacter(
  14759. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14760. {
  14761. front: {
  14762. height: math.unit(5 + 10 / 12, "feet"),
  14763. weight: math.unit(264, "lb"),
  14764. name: "Front",
  14765. image: {
  14766. source: "./media/characters/gault/front.svg",
  14767. extra: 161 / 140,
  14768. bottom: 0.028
  14769. }
  14770. },
  14771. },
  14772. [
  14773. {
  14774. name: "Normal",
  14775. height: math.unit(5 + 10 / 12, "feet"),
  14776. default: true
  14777. },
  14778. ]
  14779. ))
  14780. characterMakers.push(() => makeCharacter(
  14781. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14782. {
  14783. front: {
  14784. height: math.unit(6, "feet"),
  14785. weight: math.unit(150, "lb"),
  14786. name: "Front",
  14787. image: {
  14788. source: "./media/characters/shard/front.svg",
  14789. extra: 273 / 238,
  14790. bottom: 0.02
  14791. }
  14792. },
  14793. },
  14794. [
  14795. {
  14796. name: "Normal",
  14797. height: math.unit(3 + 6 / 12, "feet"),
  14798. default: true
  14799. },
  14800. ]
  14801. ))
  14802. characterMakers.push(() => makeCharacter(
  14803. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14804. {
  14805. front: {
  14806. height: math.unit(5 + 11 / 12, "feet"),
  14807. weight: math.unit(146, "lb"),
  14808. name: "Front",
  14809. image: {
  14810. source: "./media/characters/ashe/front.svg",
  14811. extra: 400 / 373,
  14812. bottom: 0.01
  14813. }
  14814. },
  14815. },
  14816. [
  14817. {
  14818. name: "Normal",
  14819. height: math.unit(5 + 11 / 12, "feet"),
  14820. default: true
  14821. },
  14822. ]
  14823. ))
  14824. characterMakers.push(() => makeCharacter(
  14825. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14826. {
  14827. front: {
  14828. height: math.unit(5 + 5 / 12, "feet"),
  14829. weight: math.unit(135, "lb"),
  14830. name: "Front",
  14831. image: {
  14832. source: "./media/characters/beatrix/front.svg",
  14833. extra: 392 / 379,
  14834. bottom: 0.01
  14835. }
  14836. },
  14837. },
  14838. [
  14839. {
  14840. name: "Normal",
  14841. height: math.unit(6, "feet"),
  14842. default: true
  14843. },
  14844. ]
  14845. ))
  14846. characterMakers.push(() => makeCharacter(
  14847. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14848. {
  14849. front: {
  14850. height: math.unit(6, "feet"),
  14851. weight: math.unit(150, "lb"),
  14852. name: "Front",
  14853. image: {
  14854. source: "./media/characters/ignatius/front.svg",
  14855. extra: 245 / 222,
  14856. bottom: 0.01
  14857. }
  14858. },
  14859. },
  14860. [
  14861. {
  14862. name: "Normal",
  14863. height: math.unit(5 + 5 / 12, "feet"),
  14864. default: true
  14865. },
  14866. ]
  14867. ))
  14868. characterMakers.push(() => makeCharacter(
  14869. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14870. {
  14871. front: {
  14872. height: math.unit(6 + 2 / 12, "feet"),
  14873. weight: math.unit(138, "lb"),
  14874. name: "Front",
  14875. image: {
  14876. source: "./media/characters/mei-li/front.svg",
  14877. extra: 237 / 229,
  14878. bottom: 0.03
  14879. }
  14880. },
  14881. },
  14882. [
  14883. {
  14884. name: "Normal",
  14885. height: math.unit(6 + 2 / 12, "feet"),
  14886. default: true
  14887. },
  14888. ]
  14889. ))
  14890. characterMakers.push(() => makeCharacter(
  14891. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14892. {
  14893. front: {
  14894. height: math.unit(2 + 4 / 12, "feet"),
  14895. weight: math.unit(62, "lb"),
  14896. name: "Front",
  14897. image: {
  14898. source: "./media/characters/puru/front.svg",
  14899. extra: 206 / 149,
  14900. bottom: 0.06
  14901. }
  14902. },
  14903. },
  14904. [
  14905. {
  14906. name: "Normal",
  14907. height: math.unit(2 + 4 / 12, "feet"),
  14908. default: true
  14909. },
  14910. ]
  14911. ))
  14912. characterMakers.push(() => makeCharacter(
  14913. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14914. {
  14915. taur: {
  14916. height: math.unit(11, "feet"),
  14917. weight: math.unit(500, "lb"),
  14918. name: "Taur",
  14919. image: {
  14920. source: "./media/characters/kee/taur.svg",
  14921. extra: 1,
  14922. bottom: 0.04
  14923. }
  14924. },
  14925. },
  14926. [
  14927. {
  14928. name: "Normal",
  14929. height: math.unit(11, "feet"),
  14930. default: true
  14931. },
  14932. ]
  14933. ))
  14934. characterMakers.push(() => makeCharacter(
  14935. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14936. {
  14937. anthro: {
  14938. height: math.unit(7, "feet"),
  14939. weight: math.unit(190, "lb"),
  14940. name: "Anthro",
  14941. image: {
  14942. source: "./media/characters/cobalt-dracha/anthro.svg",
  14943. extra: 231 / 225,
  14944. bottom: 0.04
  14945. }
  14946. },
  14947. feral: {
  14948. height: math.unit(9 + 7 / 12, "feet"),
  14949. weight: math.unit(294, "lb"),
  14950. name: "Feral",
  14951. image: {
  14952. source: "./media/characters/cobalt-dracha/feral.svg",
  14953. extra: 692 / 633,
  14954. bottom: 0.05
  14955. }
  14956. },
  14957. },
  14958. [
  14959. {
  14960. name: "Normal",
  14961. height: math.unit(7, "feet"),
  14962. default: true
  14963. },
  14964. ]
  14965. ))
  14966. characterMakers.push(() => makeCharacter(
  14967. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14968. {
  14969. fallen: {
  14970. height: math.unit(11 + 8 / 12, "feet"),
  14971. weight: math.unit(485, "lb"),
  14972. name: "Java (Fallen)",
  14973. rename: true,
  14974. image: {
  14975. source: "./media/characters/java/fallen.svg",
  14976. extra: 226 / 208,
  14977. bottom: 0.005
  14978. }
  14979. },
  14980. godkin: {
  14981. height: math.unit(10 + 6 / 12, "feet"),
  14982. weight: math.unit(328, "lb"),
  14983. name: "Java (Godkin)",
  14984. rename: true,
  14985. image: {
  14986. source: "./media/characters/java/godkin.svg",
  14987. extra: 270 / 262,
  14988. bottom: 0.02
  14989. }
  14990. },
  14991. },
  14992. [
  14993. {
  14994. name: "Normal",
  14995. height: math.unit(11 + 8 / 12, "feet"),
  14996. default: true
  14997. },
  14998. ]
  14999. ))
  15000. characterMakers.push(() => makeCharacter(
  15001. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15002. {
  15003. front: {
  15004. height: math.unit(7 + 8 / 12, "feet"),
  15005. weight: math.unit(320, "lb"),
  15006. name: "Front",
  15007. image: {
  15008. source: "./media/characters/skoll/front.svg",
  15009. extra: 232 / 220,
  15010. bottom: 0.02
  15011. }
  15012. },
  15013. },
  15014. [
  15015. {
  15016. name: "Normal",
  15017. height: math.unit(7 + 8 / 12, "feet"),
  15018. default: true
  15019. },
  15020. ]
  15021. ))
  15022. characterMakers.push(() => makeCharacter(
  15023. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15024. {
  15025. front: {
  15026. height: math.unit(5 + 9 / 12, "feet"),
  15027. weight: math.unit(170, "lb"),
  15028. name: "Front",
  15029. image: {
  15030. source: "./media/characters/purna/front.svg",
  15031. extra: 239 / 229,
  15032. bottom: 0.01
  15033. }
  15034. },
  15035. },
  15036. [
  15037. {
  15038. name: "Normal",
  15039. height: math.unit(5 + 9 / 12, "feet"),
  15040. default: true
  15041. },
  15042. ]
  15043. ))
  15044. characterMakers.push(() => makeCharacter(
  15045. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15046. {
  15047. front: {
  15048. height: math.unit(5 + 9 / 12, "feet"),
  15049. weight: math.unit(142, "lb"),
  15050. name: "Front",
  15051. image: {
  15052. source: "./media/characters/kuva/front.svg",
  15053. extra: 281 / 271,
  15054. bottom: 0.006
  15055. }
  15056. },
  15057. },
  15058. [
  15059. {
  15060. name: "Normal",
  15061. height: math.unit(5 + 9 / 12, "feet"),
  15062. default: true
  15063. },
  15064. ]
  15065. ))
  15066. characterMakers.push(() => makeCharacter(
  15067. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15068. {
  15069. anthro: {
  15070. height: math.unit(9 + 2 / 12, "feet"),
  15071. weight: math.unit(270, "lb"),
  15072. name: "Anthro",
  15073. image: {
  15074. source: "./media/characters/embra/anthro.svg",
  15075. extra: 200 / 187,
  15076. bottom: 0.02
  15077. }
  15078. },
  15079. feral: {
  15080. height: math.unit(18 + 8 / 12, "feet"),
  15081. weight: math.unit(576, "lb"),
  15082. name: "Feral",
  15083. image: {
  15084. source: "./media/characters/embra/feral.svg",
  15085. extra: 152 / 137,
  15086. bottom: 0.037
  15087. }
  15088. },
  15089. },
  15090. [
  15091. {
  15092. name: "Normal",
  15093. height: math.unit(9 + 2 / 12, "feet"),
  15094. default: true
  15095. },
  15096. ]
  15097. ))
  15098. characterMakers.push(() => makeCharacter(
  15099. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15100. {
  15101. anthro: {
  15102. height: math.unit(10 + 9 / 12, "feet"),
  15103. weight: math.unit(224, "lb"),
  15104. name: "Anthro",
  15105. image: {
  15106. source: "./media/characters/grottos/anthro.svg",
  15107. extra: 350 / 332,
  15108. bottom: 0.045
  15109. }
  15110. },
  15111. feral: {
  15112. height: math.unit(20 + 7 / 12, "feet"),
  15113. weight: math.unit(629, "lb"),
  15114. name: "Feral",
  15115. image: {
  15116. source: "./media/characters/grottos/feral.svg",
  15117. extra: 207 / 190,
  15118. bottom: 0.05
  15119. }
  15120. },
  15121. },
  15122. [
  15123. {
  15124. name: "Normal",
  15125. height: math.unit(10 + 9 / 12, "feet"),
  15126. default: true
  15127. },
  15128. ]
  15129. ))
  15130. characterMakers.push(() => makeCharacter(
  15131. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15132. {
  15133. anthro: {
  15134. height: math.unit(9 + 6 / 12, "feet"),
  15135. weight: math.unit(298, "lb"),
  15136. name: "Anthro",
  15137. image: {
  15138. source: "./media/characters/frifna/anthro.svg",
  15139. extra: 282 / 269,
  15140. bottom: 0.015
  15141. }
  15142. },
  15143. feral: {
  15144. height: math.unit(16 + 2 / 12, "feet"),
  15145. weight: math.unit(624, "lb"),
  15146. name: "Feral",
  15147. image: {
  15148. source: "./media/characters/frifna/feral.svg"
  15149. }
  15150. },
  15151. },
  15152. [
  15153. {
  15154. name: "Normal",
  15155. height: math.unit(9 + 6 / 12, "feet"),
  15156. default: true
  15157. },
  15158. ]
  15159. ))
  15160. characterMakers.push(() => makeCharacter(
  15161. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15162. {
  15163. front: {
  15164. height: math.unit(6 + 2 / 12, "feet"),
  15165. weight: math.unit(168, "lb"),
  15166. name: "Front",
  15167. image: {
  15168. source: "./media/characters/elise/front.svg",
  15169. extra: 276 / 271
  15170. }
  15171. },
  15172. },
  15173. [
  15174. {
  15175. name: "Normal",
  15176. height: math.unit(6 + 2 / 12, "feet"),
  15177. default: true
  15178. },
  15179. ]
  15180. ))
  15181. characterMakers.push(() => makeCharacter(
  15182. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15183. {
  15184. front: {
  15185. height: math.unit(5 + 10 / 12, "feet"),
  15186. weight: math.unit(210, "lb"),
  15187. name: "Front",
  15188. image: {
  15189. source: "./media/characters/glade/front.svg",
  15190. extra: 258 / 247,
  15191. bottom: 0.008
  15192. }
  15193. },
  15194. },
  15195. [
  15196. {
  15197. name: "Normal",
  15198. height: math.unit(5 + 10 / 12, "feet"),
  15199. default: true
  15200. },
  15201. ]
  15202. ))
  15203. characterMakers.push(() => makeCharacter(
  15204. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15205. {
  15206. front: {
  15207. height: math.unit(5 + 10 / 12, "feet"),
  15208. weight: math.unit(129, "lb"),
  15209. name: "Front",
  15210. image: {
  15211. source: "./media/characters/rina/front.svg",
  15212. extra: 266 / 255,
  15213. bottom: 0.005
  15214. }
  15215. },
  15216. },
  15217. [
  15218. {
  15219. name: "Normal",
  15220. height: math.unit(5 + 10 / 12, "feet"),
  15221. default: true
  15222. },
  15223. ]
  15224. ))
  15225. characterMakers.push(() => makeCharacter(
  15226. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15227. {
  15228. front: {
  15229. height: math.unit(6 + 1 / 12, "feet"),
  15230. weight: math.unit(192, "lb"),
  15231. name: "Front",
  15232. image: {
  15233. source: "./media/characters/veronica/front.svg",
  15234. extra: 319 / 309,
  15235. bottom: 0.005
  15236. }
  15237. },
  15238. },
  15239. [
  15240. {
  15241. name: "Normal",
  15242. height: math.unit(6 + 1 / 12, "feet"),
  15243. default: true
  15244. },
  15245. ]
  15246. ))
  15247. characterMakers.push(() => makeCharacter(
  15248. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15249. {
  15250. front: {
  15251. height: math.unit(9 + 3 / 12, "feet"),
  15252. weight: math.unit(1100, "lb"),
  15253. name: "Front",
  15254. image: {
  15255. source: "./media/characters/braxton/front.svg",
  15256. extra: 1057 / 984,
  15257. bottom: 0.05
  15258. }
  15259. },
  15260. },
  15261. [
  15262. {
  15263. name: "Normal",
  15264. height: math.unit(9 + 3 / 12, "feet")
  15265. },
  15266. {
  15267. name: "Giant",
  15268. height: math.unit(300, "feet"),
  15269. default: true
  15270. },
  15271. {
  15272. name: "Macro",
  15273. height: math.unit(700, "feet")
  15274. },
  15275. {
  15276. name: "Megamacro",
  15277. height: math.unit(6000, "feet")
  15278. },
  15279. ]
  15280. ))
  15281. characterMakers.push(() => makeCharacter(
  15282. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15283. {
  15284. front: {
  15285. height: math.unit(6 + 7 / 12, "feet"),
  15286. weight: math.unit(150, "lb"),
  15287. name: "Front",
  15288. image: {
  15289. source: "./media/characters/blue-feyonics/front.svg",
  15290. extra: 1403 / 1306,
  15291. bottom: 0.047
  15292. }
  15293. },
  15294. },
  15295. [
  15296. {
  15297. name: "Normal",
  15298. height: math.unit(6 + 7 / 12, "feet"),
  15299. default: true
  15300. },
  15301. ]
  15302. ))
  15303. characterMakers.push(() => makeCharacter(
  15304. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15305. {
  15306. front: {
  15307. height: math.unit(1.8, "meters"),
  15308. weight: math.unit(60, "kg"),
  15309. name: "Front",
  15310. image: {
  15311. source: "./media/characters/maxwell/front.svg",
  15312. extra: 2060 / 1873
  15313. }
  15314. },
  15315. },
  15316. [
  15317. {
  15318. name: "Micro",
  15319. height: math.unit(1, "mm")
  15320. },
  15321. {
  15322. name: "Normal",
  15323. height: math.unit(1.8, "meter"),
  15324. default: true
  15325. },
  15326. {
  15327. name: "Macro",
  15328. height: math.unit(30, "meters")
  15329. },
  15330. {
  15331. name: "Megamacro",
  15332. height: math.unit(10, "km")
  15333. },
  15334. ]
  15335. ))
  15336. characterMakers.push(() => makeCharacter(
  15337. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15338. {
  15339. front: {
  15340. height: math.unit(6, "feet"),
  15341. weight: math.unit(150, "lb"),
  15342. name: "Front",
  15343. image: {
  15344. source: "./media/characters/jack/front.svg",
  15345. extra: 1754 / 1640,
  15346. bottom: 0.01
  15347. }
  15348. },
  15349. },
  15350. [
  15351. {
  15352. name: "Normal",
  15353. height: math.unit(80000, "feet"),
  15354. default: true
  15355. },
  15356. {
  15357. name: "Max size",
  15358. height: math.unit(10, "lightyears")
  15359. },
  15360. ]
  15361. ))
  15362. characterMakers.push(() => makeCharacter(
  15363. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15364. {
  15365. upright: {
  15366. height: math.unit(7, "feet"),
  15367. weight: math.unit(170, "lb"),
  15368. name: "Upright",
  15369. image: {
  15370. source: "./media/characters/cafat/upright.svg",
  15371. bottom: 0.01
  15372. }
  15373. },
  15374. uprightFull: {
  15375. height: math.unit(7, "feet"),
  15376. weight: math.unit(170, "lb"),
  15377. name: "Upright (Full)",
  15378. image: {
  15379. source: "./media/characters/cafat/upright-full.svg",
  15380. bottom: 0.01
  15381. }
  15382. },
  15383. side: {
  15384. height: math.unit(5, "feet"),
  15385. weight: math.unit(150, "lb"),
  15386. name: "Side",
  15387. image: {
  15388. source: "./media/characters/cafat/side.svg"
  15389. }
  15390. },
  15391. },
  15392. [
  15393. {
  15394. name: "Small",
  15395. height: math.unit(7, "feet"),
  15396. default: true
  15397. },
  15398. {
  15399. name: "Large",
  15400. height: math.unit(15.5, "feet")
  15401. },
  15402. ]
  15403. ))
  15404. characterMakers.push(() => makeCharacter(
  15405. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15406. {
  15407. front: {
  15408. height: math.unit(6, "feet"),
  15409. weight: math.unit(150, "lb"),
  15410. name: "Front",
  15411. image: {
  15412. source: "./media/characters/verin-raharra/front.svg",
  15413. extra: 5019 / 4835,
  15414. bottom: 0.023
  15415. }
  15416. },
  15417. },
  15418. [
  15419. {
  15420. name: "Normal",
  15421. height: math.unit(7 + 5 / 12, "feet"),
  15422. default: true
  15423. },
  15424. {
  15425. name: "Upsized",
  15426. height: math.unit(20, "feet")
  15427. },
  15428. ]
  15429. ))
  15430. characterMakers.push(() => makeCharacter(
  15431. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15432. {
  15433. front: {
  15434. height: math.unit(7, "feet"),
  15435. weight: math.unit(230, "lb"),
  15436. name: "Front",
  15437. image: {
  15438. source: "./media/characters/nakata/front.svg",
  15439. extra: 1.005,
  15440. bottom: 0.01
  15441. }
  15442. },
  15443. },
  15444. [
  15445. {
  15446. name: "Normal",
  15447. height: math.unit(7, "feet"),
  15448. default: true
  15449. },
  15450. {
  15451. name: "Big",
  15452. height: math.unit(14, "feet")
  15453. },
  15454. {
  15455. name: "Macro",
  15456. height: math.unit(400, "feet")
  15457. },
  15458. ]
  15459. ))
  15460. characterMakers.push(() => makeCharacter(
  15461. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15462. {
  15463. front: {
  15464. height: math.unit(4.91, "feet"),
  15465. weight: math.unit(100, "lb"),
  15466. name: "Front",
  15467. image: {
  15468. source: "./media/characters/lily/front.svg",
  15469. extra: 1585 / 1415,
  15470. bottom: 0.02
  15471. }
  15472. },
  15473. },
  15474. [
  15475. {
  15476. name: "Normal",
  15477. height: math.unit(4.91, "feet"),
  15478. default: true
  15479. },
  15480. ]
  15481. ))
  15482. characterMakers.push(() => makeCharacter(
  15483. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15484. {
  15485. laying: {
  15486. height: math.unit(4 + 4 / 12, "feet"),
  15487. weight: math.unit(600, "lb"),
  15488. name: "Laying",
  15489. image: {
  15490. source: "./media/characters/sheila/laying.svg",
  15491. extra: 1333 / 1265,
  15492. bottom: 0.16
  15493. }
  15494. },
  15495. },
  15496. [
  15497. {
  15498. name: "Normal",
  15499. height: math.unit(4 + 4 / 12, "feet"),
  15500. default: true
  15501. },
  15502. ]
  15503. ))
  15504. characterMakers.push(() => makeCharacter(
  15505. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15506. {
  15507. front: {
  15508. height: math.unit(6, "feet"),
  15509. weight: math.unit(190, "lb"),
  15510. name: "Front",
  15511. image: {
  15512. source: "./media/characters/sax/front.svg",
  15513. extra: 1187 / 973,
  15514. bottom: 0.042
  15515. }
  15516. },
  15517. },
  15518. [
  15519. {
  15520. name: "Micro",
  15521. height: math.unit(4, "inches"),
  15522. default: true
  15523. },
  15524. ]
  15525. ))
  15526. characterMakers.push(() => makeCharacter(
  15527. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15528. {
  15529. front: {
  15530. height: math.unit(6, "feet"),
  15531. weight: math.unit(150, "lb"),
  15532. name: "Front",
  15533. image: {
  15534. source: "./media/characters/pandora/front.svg",
  15535. extra: 2720 / 2556,
  15536. bottom: 0.015
  15537. }
  15538. },
  15539. back: {
  15540. height: math.unit(6, "feet"),
  15541. weight: math.unit(150, "lb"),
  15542. name: "Back",
  15543. image: {
  15544. source: "./media/characters/pandora/back.svg",
  15545. extra: 2720 / 2556,
  15546. bottom: 0.01
  15547. }
  15548. },
  15549. beans: {
  15550. height: math.unit(6 / 8, "feet"),
  15551. name: "Beans",
  15552. image: {
  15553. source: "./media/characters/pandora/beans.svg"
  15554. }
  15555. },
  15556. skirt: {
  15557. height: math.unit(6, "feet"),
  15558. weight: math.unit(150, "lb"),
  15559. name: "Skirt",
  15560. image: {
  15561. source: "./media/characters/pandora/skirt.svg",
  15562. extra: 1622 / 1525,
  15563. bottom: 0.015
  15564. }
  15565. },
  15566. hoodie: {
  15567. height: math.unit(6, "feet"),
  15568. weight: math.unit(150, "lb"),
  15569. name: "Hoodie",
  15570. image: {
  15571. source: "./media/characters/pandora/hoodie.svg",
  15572. extra: 1622 / 1525,
  15573. bottom: 0.015
  15574. }
  15575. },
  15576. casual: {
  15577. height: math.unit(6, "feet"),
  15578. weight: math.unit(150, "lb"),
  15579. name: "Casual",
  15580. image: {
  15581. source: "./media/characters/pandora/casual.svg",
  15582. extra: 1622 / 1525,
  15583. bottom: 0.015
  15584. }
  15585. },
  15586. },
  15587. [
  15588. {
  15589. name: "Normal",
  15590. height: math.unit(6, "feet")
  15591. },
  15592. {
  15593. name: "Big Steppy",
  15594. height: math.unit(1, "km"),
  15595. default: true
  15596. },
  15597. ]
  15598. ))
  15599. characterMakers.push(() => makeCharacter(
  15600. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15601. {
  15602. side: {
  15603. height: math.unit(10, "feet"),
  15604. weight: math.unit(800, "kg"),
  15605. name: "Side",
  15606. image: {
  15607. source: "./media/characters/venio-darcony/side.svg",
  15608. extra: 1373 / 1003,
  15609. bottom: 0.037
  15610. }
  15611. },
  15612. front: {
  15613. height: math.unit(19, "feet"),
  15614. weight: math.unit(800, "kg"),
  15615. name: "Front",
  15616. image: {
  15617. source: "./media/characters/venio-darcony/front.svg"
  15618. }
  15619. },
  15620. back: {
  15621. height: math.unit(19, "feet"),
  15622. weight: math.unit(800, "kg"),
  15623. name: "Back",
  15624. image: {
  15625. source: "./media/characters/venio-darcony/back.svg"
  15626. }
  15627. },
  15628. sideNsfw: {
  15629. height: math.unit(10, "feet"),
  15630. weight: math.unit(800, "kg"),
  15631. name: "Side (NSFW)",
  15632. image: {
  15633. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15634. extra: 1373 / 1003,
  15635. bottom: 0.037
  15636. }
  15637. },
  15638. frontNsfw: {
  15639. height: math.unit(19, "feet"),
  15640. weight: math.unit(800, "kg"),
  15641. name: "Front (NSFW)",
  15642. image: {
  15643. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15644. }
  15645. },
  15646. backNsfw: {
  15647. height: math.unit(19, "feet"),
  15648. weight: math.unit(800, "kg"),
  15649. name: "Back (NSFW)",
  15650. image: {
  15651. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15652. }
  15653. },
  15654. sideArmored: {
  15655. height: math.unit(10, "feet"),
  15656. weight: math.unit(800, "kg"),
  15657. name: "Side (Armored)",
  15658. image: {
  15659. source: "./media/characters/venio-darcony/side-armored.svg",
  15660. extra: 1373 / 1003,
  15661. bottom: 0.037
  15662. }
  15663. },
  15664. frontArmored: {
  15665. height: math.unit(19, "feet"),
  15666. weight: math.unit(900, "kg"),
  15667. name: "Front (Armored)",
  15668. image: {
  15669. source: "./media/characters/venio-darcony/front-armored.svg"
  15670. }
  15671. },
  15672. backArmored: {
  15673. height: math.unit(19, "feet"),
  15674. weight: math.unit(900, "kg"),
  15675. name: "Back (Armored)",
  15676. image: {
  15677. source: "./media/characters/venio-darcony/back-armored.svg"
  15678. }
  15679. },
  15680. sword: {
  15681. height: math.unit(10, "feet"),
  15682. weight: math.unit(50, "lb"),
  15683. name: "Sword",
  15684. image: {
  15685. source: "./media/characters/venio-darcony/sword.svg"
  15686. }
  15687. },
  15688. },
  15689. [
  15690. {
  15691. name: "Normal",
  15692. height: math.unit(10, "feet")
  15693. },
  15694. {
  15695. name: "Macro",
  15696. height: math.unit(130, "feet"),
  15697. default: true
  15698. },
  15699. {
  15700. name: "Macro+",
  15701. height: math.unit(240, "feet")
  15702. },
  15703. ]
  15704. ))
  15705. characterMakers.push(() => makeCharacter(
  15706. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15707. {
  15708. front: {
  15709. height: math.unit(6, "feet"),
  15710. weight: math.unit(150, "lb"),
  15711. name: "Front",
  15712. image: {
  15713. source: "./media/characters/veski/front.svg",
  15714. extra: 1299 / 1225,
  15715. bottom: 0.04
  15716. }
  15717. },
  15718. back: {
  15719. height: math.unit(6, "feet"),
  15720. weight: math.unit(150, "lb"),
  15721. name: "Back",
  15722. image: {
  15723. source: "./media/characters/veski/back.svg",
  15724. extra: 1299 / 1225,
  15725. bottom: 0.008
  15726. }
  15727. },
  15728. maw: {
  15729. height: math.unit(1.5 * 1.21, "feet"),
  15730. name: "Maw",
  15731. image: {
  15732. source: "./media/characters/veski/maw.svg"
  15733. }
  15734. },
  15735. },
  15736. [
  15737. {
  15738. name: "Macro",
  15739. height: math.unit(2, "km"),
  15740. default: true
  15741. },
  15742. ]
  15743. ))
  15744. characterMakers.push(() => makeCharacter(
  15745. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15746. {
  15747. front: {
  15748. height: math.unit(5 + 7 / 12, "feet"),
  15749. name: "Front",
  15750. image: {
  15751. source: "./media/characters/isabelle/front.svg",
  15752. extra: 2130 / 1976,
  15753. bottom: 0.05
  15754. }
  15755. },
  15756. },
  15757. [
  15758. {
  15759. name: "Supermicro",
  15760. height: math.unit(10, "micrometers")
  15761. },
  15762. {
  15763. name: "Micro",
  15764. height: math.unit(1, "inch")
  15765. },
  15766. {
  15767. name: "Tiny",
  15768. height: math.unit(5, "inches")
  15769. },
  15770. {
  15771. name: "Standard",
  15772. height: math.unit(5 + 7 / 12, "inches")
  15773. },
  15774. {
  15775. name: "Macro",
  15776. height: math.unit(80, "meters"),
  15777. default: true
  15778. },
  15779. {
  15780. name: "Megamacro",
  15781. height: math.unit(250, "meters")
  15782. },
  15783. {
  15784. name: "Gigamacro",
  15785. height: math.unit(5, "km")
  15786. },
  15787. {
  15788. name: "Cosmic",
  15789. height: math.unit(2.5e6, "miles")
  15790. },
  15791. ]
  15792. ))
  15793. characterMakers.push(() => makeCharacter(
  15794. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15795. {
  15796. front: {
  15797. height: math.unit(6, "feet"),
  15798. weight: math.unit(150, "lb"),
  15799. name: "Front",
  15800. image: {
  15801. source: "./media/characters/hanzo/front.svg",
  15802. extra: 374 / 344,
  15803. bottom: 0.02
  15804. }
  15805. },
  15806. },
  15807. [
  15808. {
  15809. name: "Normal",
  15810. height: math.unit(8, "feet"),
  15811. default: true
  15812. },
  15813. ]
  15814. ))
  15815. characterMakers.push(() => makeCharacter(
  15816. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15817. {
  15818. front: {
  15819. height: math.unit(7, "feet"),
  15820. weight: math.unit(130, "lb"),
  15821. name: "Front",
  15822. image: {
  15823. source: "./media/characters/anna/front.svg",
  15824. extra: 169 / 145,
  15825. bottom: 0.06
  15826. }
  15827. },
  15828. full: {
  15829. height: math.unit(4.96, "feet"),
  15830. weight: math.unit(220, "lb"),
  15831. name: "Full",
  15832. image: {
  15833. source: "./media/characters/anna/full.svg",
  15834. extra: 138 / 114,
  15835. bottom: 0.15
  15836. }
  15837. },
  15838. tongue: {
  15839. height: math.unit(2.53, "feet"),
  15840. name: "Tongue",
  15841. image: {
  15842. source: "./media/characters/anna/tongue.svg"
  15843. }
  15844. },
  15845. },
  15846. [
  15847. {
  15848. name: "Normal",
  15849. height: math.unit(7, "feet"),
  15850. default: true
  15851. },
  15852. ]
  15853. ))
  15854. characterMakers.push(() => makeCharacter(
  15855. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15856. {
  15857. front: {
  15858. height: math.unit(7, "feet"),
  15859. weight: math.unit(150, "lb"),
  15860. name: "Front",
  15861. image: {
  15862. source: "./media/characters/ian-corvid/front.svg",
  15863. extra: 150 / 142,
  15864. bottom: 0.02
  15865. }
  15866. },
  15867. back: {
  15868. height: math.unit(7, "feet"),
  15869. weight: math.unit(150, "lb"),
  15870. name: "Back",
  15871. image: {
  15872. source: "./media/characters/ian-corvid/back.svg",
  15873. extra: 150 / 143,
  15874. bottom: 0.01
  15875. }
  15876. },
  15877. stomping: {
  15878. height: math.unit(7, "feet"),
  15879. weight: math.unit(150, "lb"),
  15880. name: "Stomping",
  15881. image: {
  15882. source: "./media/characters/ian-corvid/stomping.svg",
  15883. extra: 76 / 72
  15884. }
  15885. },
  15886. sitting: {
  15887. height: math.unit(7 / 1.8, "feet"),
  15888. weight: math.unit(150, "lb"),
  15889. name: "Sitting",
  15890. image: {
  15891. source: "./media/characters/ian-corvid/sitting.svg",
  15892. extra: 1400 / 1269,
  15893. bottom: 0.15
  15894. }
  15895. },
  15896. },
  15897. [
  15898. {
  15899. name: "Tiny Microw",
  15900. height: math.unit(1, "inch")
  15901. },
  15902. {
  15903. name: "Microw",
  15904. height: math.unit(6, "inches")
  15905. },
  15906. {
  15907. name: "Crow",
  15908. height: math.unit(7 + 1 / 12, "feet"),
  15909. default: true
  15910. },
  15911. {
  15912. name: "Macrow",
  15913. height: math.unit(176, "feet")
  15914. },
  15915. ]
  15916. ))
  15917. characterMakers.push(() => makeCharacter(
  15918. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15919. {
  15920. front: {
  15921. height: math.unit(5 + 7 / 12, "feet"),
  15922. weight: math.unit(147, "lb"),
  15923. name: "Front",
  15924. image: {
  15925. source: "./media/characters/natalie-kellon/front.svg",
  15926. extra: 1214 / 1141,
  15927. bottom: 0.02
  15928. }
  15929. },
  15930. },
  15931. [
  15932. {
  15933. name: "Micro",
  15934. height: math.unit(1 / 16, "inch")
  15935. },
  15936. {
  15937. name: "Tiny",
  15938. height: math.unit(4, "inches")
  15939. },
  15940. {
  15941. name: "Normal",
  15942. height: math.unit(5 + 7 / 12, "feet"),
  15943. default: true
  15944. },
  15945. {
  15946. name: "Amazon",
  15947. height: math.unit(12, "feet")
  15948. },
  15949. {
  15950. name: "Giantess",
  15951. height: math.unit(160, "meters")
  15952. },
  15953. {
  15954. name: "Titaness",
  15955. height: math.unit(800, "meters")
  15956. },
  15957. ]
  15958. ))
  15959. characterMakers.push(() => makeCharacter(
  15960. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15961. {
  15962. front: {
  15963. height: math.unit(6, "feet"),
  15964. weight: math.unit(150, "lb"),
  15965. name: "Front",
  15966. image: {
  15967. source: "./media/characters/alluria/front.svg",
  15968. extra: 806 / 738,
  15969. bottom: 0.01
  15970. }
  15971. },
  15972. side: {
  15973. height: math.unit(6, "feet"),
  15974. weight: math.unit(150, "lb"),
  15975. name: "Side",
  15976. image: {
  15977. source: "./media/characters/alluria/side.svg",
  15978. extra: 800 / 750,
  15979. }
  15980. },
  15981. back: {
  15982. height: math.unit(6, "feet"),
  15983. weight: math.unit(150, "lb"),
  15984. name: "Back",
  15985. image: {
  15986. source: "./media/characters/alluria/back.svg",
  15987. extra: 806 / 738,
  15988. }
  15989. },
  15990. frontMaid: {
  15991. height: math.unit(6, "feet"),
  15992. weight: math.unit(150, "lb"),
  15993. name: "Front (Maid)",
  15994. image: {
  15995. source: "./media/characters/alluria/front-maid.svg",
  15996. extra: 806 / 738,
  15997. bottom: 0.01
  15998. }
  15999. },
  16000. sideMaid: {
  16001. height: math.unit(6, "feet"),
  16002. weight: math.unit(150, "lb"),
  16003. name: "Side (Maid)",
  16004. image: {
  16005. source: "./media/characters/alluria/side-maid.svg",
  16006. extra: 800 / 750,
  16007. bottom: 0.005
  16008. }
  16009. },
  16010. backMaid: {
  16011. height: math.unit(6, "feet"),
  16012. weight: math.unit(150, "lb"),
  16013. name: "Back (Maid)",
  16014. image: {
  16015. source: "./media/characters/alluria/back-maid.svg",
  16016. extra: 806 / 738,
  16017. }
  16018. },
  16019. },
  16020. [
  16021. {
  16022. name: "Micro",
  16023. height: math.unit(6, "inches"),
  16024. default: true
  16025. },
  16026. ]
  16027. ))
  16028. characterMakers.push(() => makeCharacter(
  16029. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16030. {
  16031. front: {
  16032. height: math.unit(6, "feet"),
  16033. weight: math.unit(150, "lb"),
  16034. name: "Front",
  16035. image: {
  16036. source: "./media/characters/kyle/front.svg",
  16037. extra: 1069 / 962,
  16038. bottom: 77.228 / 1727.45
  16039. }
  16040. },
  16041. },
  16042. [
  16043. {
  16044. name: "Macro",
  16045. height: math.unit(150, "feet"),
  16046. default: true
  16047. },
  16048. ]
  16049. ))
  16050. characterMakers.push(() => makeCharacter(
  16051. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16052. {
  16053. front: {
  16054. height: math.unit(6, "feet"),
  16055. weight: math.unit(300, "lb"),
  16056. name: "Front",
  16057. image: {
  16058. source: "./media/characters/duncan/front.svg",
  16059. extra: 1650 / 1482,
  16060. bottom: 0.05
  16061. }
  16062. },
  16063. },
  16064. [
  16065. {
  16066. name: "Macro",
  16067. height: math.unit(100, "feet"),
  16068. default: true
  16069. },
  16070. ]
  16071. ))
  16072. characterMakers.push(() => makeCharacter(
  16073. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16074. {
  16075. front: {
  16076. height: math.unit(5 + 4 / 12, "feet"),
  16077. weight: math.unit(220, "lb"),
  16078. name: "Front",
  16079. image: {
  16080. source: "./media/characters/memory/front.svg",
  16081. extra: 3641 / 3545,
  16082. bottom: 0.03
  16083. }
  16084. },
  16085. back: {
  16086. height: math.unit(5 + 4 / 12, "feet"),
  16087. weight: math.unit(220, "lb"),
  16088. name: "Back",
  16089. image: {
  16090. source: "./media/characters/memory/back.svg",
  16091. extra: 3641 / 3545,
  16092. bottom: 0.025
  16093. }
  16094. },
  16095. frontSkirt: {
  16096. height: math.unit(5 + 4 / 12, "feet"),
  16097. weight: math.unit(220, "lb"),
  16098. name: "Front (Skirt)",
  16099. image: {
  16100. source: "./media/characters/memory/front-skirt.svg",
  16101. extra: 3641 / 3545,
  16102. bottom: 0.03
  16103. }
  16104. },
  16105. frontDress: {
  16106. height: math.unit(5 + 4 / 12, "feet"),
  16107. weight: math.unit(220, "lb"),
  16108. name: "Front (Dress)",
  16109. image: {
  16110. source: "./media/characters/memory/front-dress.svg",
  16111. extra: 3641 / 3545,
  16112. bottom: 0.03
  16113. }
  16114. },
  16115. },
  16116. [
  16117. {
  16118. name: "Micro",
  16119. height: math.unit(6, "inches"),
  16120. default: true
  16121. },
  16122. {
  16123. name: "Normal",
  16124. height: math.unit(5 + 4 / 12, "feet")
  16125. },
  16126. ]
  16127. ))
  16128. characterMakers.push(() => makeCharacter(
  16129. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16130. {
  16131. front: {
  16132. height: math.unit(4 + 11 / 12, "feet"),
  16133. weight: math.unit(100, "lb"),
  16134. name: "Front",
  16135. image: {
  16136. source: "./media/characters/luno/front.svg",
  16137. extra: 1535 / 1487,
  16138. bottom: 0.03
  16139. }
  16140. },
  16141. },
  16142. [
  16143. {
  16144. name: "Micro",
  16145. height: math.unit(3, "inches")
  16146. },
  16147. {
  16148. name: "Normal",
  16149. height: math.unit(4 + 11 / 12, "feet"),
  16150. default: true
  16151. },
  16152. {
  16153. name: "Macro",
  16154. height: math.unit(300, "feet")
  16155. },
  16156. {
  16157. name: "Megamacro",
  16158. height: math.unit(700, "miles")
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16164. {
  16165. front: {
  16166. height: math.unit(6 + 2 / 12, "feet"),
  16167. weight: math.unit(170, "lb"),
  16168. name: "Front",
  16169. image: {
  16170. source: "./media/characters/jamesy/front.svg",
  16171. extra: 440 / 382,
  16172. bottom: 0.005
  16173. }
  16174. },
  16175. },
  16176. [
  16177. {
  16178. name: "Micro",
  16179. height: math.unit(3, "inches")
  16180. },
  16181. {
  16182. name: "Normal",
  16183. height: math.unit(6 + 2 / 12, "feet"),
  16184. default: true
  16185. },
  16186. {
  16187. name: "Macro",
  16188. height: math.unit(300, "feet")
  16189. },
  16190. {
  16191. name: "Megamacro",
  16192. height: math.unit(700, "miles")
  16193. },
  16194. ]
  16195. ))
  16196. characterMakers.push(() => makeCharacter(
  16197. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16198. {
  16199. front: {
  16200. height: math.unit(6, "feet"),
  16201. weight: math.unit(160, "lb"),
  16202. name: "Front",
  16203. image: {
  16204. source: "./media/characters/mark/front.svg",
  16205. extra: 3300 / 3100,
  16206. bottom: 136.42 / 3440.47
  16207. }
  16208. },
  16209. },
  16210. [
  16211. {
  16212. name: "Macro",
  16213. height: math.unit(120, "meters")
  16214. },
  16215. {
  16216. name: "Bigger Macro",
  16217. height: math.unit(350, "meters")
  16218. },
  16219. {
  16220. name: "Megamacro",
  16221. height: math.unit(8, "km"),
  16222. default: true
  16223. },
  16224. {
  16225. name: "Continental",
  16226. height: math.unit(4550, "km")
  16227. },
  16228. {
  16229. name: "Planetary",
  16230. height: math.unit(65000, "km")
  16231. },
  16232. ]
  16233. ))
  16234. characterMakers.push(() => makeCharacter(
  16235. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16236. {
  16237. front: {
  16238. height: math.unit(6, "feet"),
  16239. weight: math.unit(400, "lb"),
  16240. name: "Front",
  16241. image: {
  16242. source: "./media/characters/mac/front.svg",
  16243. extra: 1048 / 987.7,
  16244. bottom: 60 / 1107.6,
  16245. }
  16246. },
  16247. },
  16248. [
  16249. {
  16250. name: "Macro",
  16251. height: math.unit(500, "feet"),
  16252. default: true
  16253. },
  16254. ]
  16255. ))
  16256. characterMakers.push(() => makeCharacter(
  16257. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16258. {
  16259. front: {
  16260. height: math.unit(5 + 2 / 12, "feet"),
  16261. weight: math.unit(190, "lb"),
  16262. name: "Front",
  16263. image: {
  16264. source: "./media/characters/bari/front.svg",
  16265. extra: 3156 / 2880,
  16266. bottom: 0.03
  16267. }
  16268. },
  16269. back: {
  16270. height: math.unit(5 + 2 / 12, "feet"),
  16271. weight: math.unit(190, "lb"),
  16272. name: "Back",
  16273. image: {
  16274. source: "./media/characters/bari/back.svg",
  16275. extra: 3260 / 2834,
  16276. bottom: 0.025
  16277. }
  16278. },
  16279. frontPlush: {
  16280. height: math.unit(5 + 2 / 12, "feet"),
  16281. weight: math.unit(190, "lb"),
  16282. name: "Front (Plush)",
  16283. image: {
  16284. source: "./media/characters/bari/front-plush.svg",
  16285. extra: 1112 / 1061,
  16286. bottom: 0.002
  16287. }
  16288. },
  16289. },
  16290. [
  16291. {
  16292. name: "Micro",
  16293. height: math.unit(3, "inches")
  16294. },
  16295. {
  16296. name: "Normal",
  16297. height: math.unit(5 + 2 / 12, "feet"),
  16298. default: true
  16299. },
  16300. {
  16301. name: "Macro",
  16302. height: math.unit(20, "feet")
  16303. },
  16304. ]
  16305. ))
  16306. characterMakers.push(() => makeCharacter(
  16307. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16308. {
  16309. front: {
  16310. height: math.unit(6 + 1 / 12, "feet"),
  16311. weight: math.unit(275, "lb"),
  16312. name: "Front",
  16313. image: {
  16314. source: "./media/characters/hunter-misha-raven/front.svg"
  16315. }
  16316. },
  16317. },
  16318. [
  16319. {
  16320. name: "Mortal",
  16321. height: math.unit(6 + 1 / 12, "feet")
  16322. },
  16323. {
  16324. name: "Divine",
  16325. height: math.unit(1.12134e34, "parsecs"),
  16326. default: true
  16327. },
  16328. ]
  16329. ))
  16330. characterMakers.push(() => makeCharacter(
  16331. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16332. {
  16333. front: {
  16334. height: math.unit(6 + 3 / 12, "feet"),
  16335. weight: math.unit(220, "lb"),
  16336. name: "Front",
  16337. image: {
  16338. source: "./media/characters/max-calore/front.svg",
  16339. extra: 1700 / 1648,
  16340. bottom: 0.01
  16341. }
  16342. },
  16343. back: {
  16344. height: math.unit(6 + 3 / 12, "feet"),
  16345. weight: math.unit(220, "lb"),
  16346. name: "Back",
  16347. image: {
  16348. source: "./media/characters/max-calore/back.svg",
  16349. extra: 1700 / 1648,
  16350. bottom: 0.01
  16351. }
  16352. },
  16353. },
  16354. [
  16355. {
  16356. name: "Normal",
  16357. height: math.unit(6 + 3 / 12, "feet"),
  16358. default: true
  16359. },
  16360. ]
  16361. ))
  16362. characterMakers.push(() => makeCharacter(
  16363. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16364. {
  16365. side: {
  16366. height: math.unit(2 + 8 / 12, "feet"),
  16367. weight: math.unit(99, "lb"),
  16368. name: "Side",
  16369. image: {
  16370. source: "./media/characters/aspen/side.svg",
  16371. extra: 152 / 138,
  16372. bottom: 0.032
  16373. }
  16374. },
  16375. },
  16376. [
  16377. {
  16378. name: "Normal",
  16379. height: math.unit(2 + 8 / 12, "feet"),
  16380. default: true
  16381. },
  16382. ]
  16383. ))
  16384. characterMakers.push(() => makeCharacter(
  16385. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16386. {
  16387. side: {
  16388. height: math.unit(3 + 2 / 12, "feet"),
  16389. weight: math.unit(224, "lb"),
  16390. name: "Side",
  16391. image: {
  16392. source: "./media/characters/sheila-feral-wolf/side.svg",
  16393. extra: 179 / 166,
  16394. bottom: 0.03
  16395. }
  16396. },
  16397. },
  16398. [
  16399. {
  16400. name: "Normal",
  16401. height: math.unit(3 + 2 / 12, "feet"),
  16402. default: true
  16403. },
  16404. ]
  16405. ))
  16406. characterMakers.push(() => makeCharacter(
  16407. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16408. {
  16409. side: {
  16410. height: math.unit(1 + 9 / 12, "feet"),
  16411. weight: math.unit(38, "lb"),
  16412. name: "Side",
  16413. image: {
  16414. source: "./media/characters/michelle/side.svg",
  16415. extra: 147 / 136.7,
  16416. bottom: 0.03
  16417. }
  16418. },
  16419. },
  16420. [
  16421. {
  16422. name: "Normal",
  16423. height: math.unit(1 + 9 / 12, "feet"),
  16424. default: true
  16425. },
  16426. ]
  16427. ))
  16428. characterMakers.push(() => makeCharacter(
  16429. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16430. {
  16431. front: {
  16432. height: math.unit(1 + 1 / 12, "feet"),
  16433. weight: math.unit(18, "lb"),
  16434. name: "Front",
  16435. image: {
  16436. source: "./media/characters/nino/front.svg"
  16437. }
  16438. },
  16439. },
  16440. [
  16441. {
  16442. name: "Normal",
  16443. height: math.unit(1 + 1 / 12, "feet"),
  16444. default: true
  16445. },
  16446. ]
  16447. ))
  16448. characterMakers.push(() => makeCharacter(
  16449. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16450. {
  16451. front: {
  16452. height: math.unit(1, "feet"),
  16453. weight: math.unit(16, "lb"),
  16454. name: "Front",
  16455. image: {
  16456. source: "./media/characters/viola/front.svg"
  16457. }
  16458. },
  16459. },
  16460. [
  16461. {
  16462. name: "Normal",
  16463. height: math.unit(1, "feet"),
  16464. default: true
  16465. },
  16466. ]
  16467. ))
  16468. characterMakers.push(() => makeCharacter(
  16469. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16470. {
  16471. front: {
  16472. height: math.unit(6 + 5 / 12, "feet"),
  16473. weight: math.unit(580, "lb"),
  16474. name: "Front",
  16475. image: {
  16476. source: "./media/characters/atlas/front.svg",
  16477. extra: 298.5 / 290,
  16478. bottom: 0.015
  16479. }
  16480. },
  16481. },
  16482. [
  16483. {
  16484. name: "Normal",
  16485. height: math.unit(6 + 5 / 12, "feet"),
  16486. default: true
  16487. },
  16488. ]
  16489. ))
  16490. characterMakers.push(() => makeCharacter(
  16491. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16492. {
  16493. side: {
  16494. height: math.unit(1 + 10 / 12, "feet"),
  16495. weight: math.unit(25, "lb"),
  16496. name: "Side",
  16497. image: {
  16498. source: "./media/characters/davy/side.svg",
  16499. extra: 200 / 170,
  16500. bottom: 0.01
  16501. }
  16502. },
  16503. },
  16504. [
  16505. {
  16506. name: "Normal",
  16507. height: math.unit(1 + 10 / 12, "feet"),
  16508. default: true
  16509. },
  16510. ]
  16511. ))
  16512. characterMakers.push(() => makeCharacter(
  16513. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16514. {
  16515. side: {
  16516. height: math.unit(4 + 8 / 12, "feet"),
  16517. weight: math.unit(166, "lb"),
  16518. name: "Side",
  16519. image: {
  16520. source: "./media/characters/fiona/side.svg",
  16521. extra: 232 / 220,
  16522. bottom: 0.03
  16523. }
  16524. },
  16525. },
  16526. [
  16527. {
  16528. name: "Normal",
  16529. height: math.unit(4 + 8 / 12, "feet"),
  16530. default: true
  16531. },
  16532. ]
  16533. ))
  16534. characterMakers.push(() => makeCharacter(
  16535. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16536. {
  16537. front: {
  16538. height: math.unit(2, "feet"),
  16539. weight: math.unit(62, "lb"),
  16540. name: "Front",
  16541. image: {
  16542. source: "./media/characters/lyla/front.svg",
  16543. bottom: 0.1
  16544. }
  16545. },
  16546. },
  16547. [
  16548. {
  16549. name: "Normal",
  16550. height: math.unit(2, "feet"),
  16551. default: true
  16552. },
  16553. ]
  16554. ))
  16555. characterMakers.push(() => makeCharacter(
  16556. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16557. {
  16558. side: {
  16559. height: math.unit(1.8, "feet"),
  16560. weight: math.unit(44, "lb"),
  16561. name: "Side",
  16562. image: {
  16563. source: "./media/characters/perseus/side.svg",
  16564. bottom: 0.21
  16565. }
  16566. },
  16567. },
  16568. [
  16569. {
  16570. name: "Normal",
  16571. height: math.unit(1.8, "feet"),
  16572. default: true
  16573. },
  16574. ]
  16575. ))
  16576. characterMakers.push(() => makeCharacter(
  16577. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16578. {
  16579. side: {
  16580. height: math.unit(4 + 2 / 12, "feet"),
  16581. weight: math.unit(20, "lb"),
  16582. name: "Side",
  16583. image: {
  16584. source: "./media/characters/remus/side.svg"
  16585. }
  16586. },
  16587. },
  16588. [
  16589. {
  16590. name: "Normal",
  16591. height: math.unit(4 + 2 / 12, "feet"),
  16592. default: true
  16593. },
  16594. ]
  16595. ))
  16596. characterMakers.push(() => makeCharacter(
  16597. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16598. {
  16599. front: {
  16600. height: math.unit(4 + 11 / 12, "feet"),
  16601. weight: math.unit(114, "lb"),
  16602. name: "Front",
  16603. image: {
  16604. source: "./media/characters/raf/front.svg",
  16605. bottom: 20.5 / 1863
  16606. }
  16607. },
  16608. side: {
  16609. height: math.unit(4 + 11 / 12, "feet"),
  16610. weight: math.unit(114, "lb"),
  16611. name: "Side",
  16612. image: {
  16613. source: "./media/characters/raf/side.svg",
  16614. bottom: 22 / 1822
  16615. }
  16616. },
  16617. },
  16618. [
  16619. {
  16620. name: "Micro",
  16621. height: math.unit(2, "inches")
  16622. },
  16623. {
  16624. name: "Normal",
  16625. height: math.unit(4 + 11 / 12, "feet"),
  16626. default: true
  16627. },
  16628. {
  16629. name: "Macro",
  16630. height: math.unit(70, "feet")
  16631. },
  16632. ]
  16633. ))
  16634. characterMakers.push(() => makeCharacter(
  16635. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16636. {
  16637. front: {
  16638. height: math.unit(1.5, "meters"),
  16639. weight: math.unit(68, "kg"),
  16640. name: "Front",
  16641. image: {
  16642. source: "./media/characters/liam-einarr/front.svg",
  16643. extra: 2822 / 2666
  16644. }
  16645. },
  16646. back: {
  16647. height: math.unit(1.5, "meters"),
  16648. weight: math.unit(68, "kg"),
  16649. name: "Back",
  16650. image: {
  16651. source: "./media/characters/liam-einarr/back.svg",
  16652. extra: 2822 / 2666,
  16653. bottom: 0.015
  16654. }
  16655. },
  16656. },
  16657. [
  16658. {
  16659. name: "Normal",
  16660. height: math.unit(1.5, "meters"),
  16661. default: true
  16662. },
  16663. {
  16664. name: "Macro",
  16665. height: math.unit(150, "meters")
  16666. },
  16667. {
  16668. name: "Megamacro",
  16669. height: math.unit(35, "km")
  16670. },
  16671. ]
  16672. ))
  16673. characterMakers.push(() => makeCharacter(
  16674. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16675. {
  16676. front: {
  16677. height: math.unit(6, "feet"),
  16678. weight: math.unit(75, "kg"),
  16679. name: "Front",
  16680. image: {
  16681. source: "./media/characters/linda/front.svg",
  16682. extra: 930 / 874,
  16683. bottom: 0.004
  16684. }
  16685. },
  16686. },
  16687. [
  16688. {
  16689. name: "Normal",
  16690. height: math.unit(6, "feet"),
  16691. default: true
  16692. },
  16693. ]
  16694. ))
  16695. characterMakers.push(() => makeCharacter(
  16696. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16697. {
  16698. front: {
  16699. height: math.unit(6 + 8 / 12, "feet"),
  16700. weight: math.unit(220, "lb"),
  16701. name: "Front",
  16702. image: {
  16703. source: "./media/characters/caylex/front.svg",
  16704. extra: 821 / 772,
  16705. bottom: 0.07
  16706. }
  16707. },
  16708. back: {
  16709. height: math.unit(6 + 8 / 12, "feet"),
  16710. weight: math.unit(220, "lb"),
  16711. name: "Back",
  16712. image: {
  16713. source: "./media/characters/caylex/back.svg",
  16714. extra: 821 / 772,
  16715. bottom: 0.022
  16716. }
  16717. },
  16718. hand: {
  16719. height: math.unit(1.25, "feet"),
  16720. name: "Hand",
  16721. image: {
  16722. source: "./media/characters/caylex/hand.svg"
  16723. }
  16724. },
  16725. foot: {
  16726. height: math.unit(1.6, "feet"),
  16727. name: "Foot",
  16728. image: {
  16729. source: "./media/characters/caylex/foot.svg"
  16730. }
  16731. },
  16732. armored: {
  16733. height: math.unit(6 + 8 / 12, "feet"),
  16734. weight: math.unit(250, "lb"),
  16735. name: "Armored",
  16736. image: {
  16737. source: "./media/characters/caylex/armored.svg",
  16738. extra: 1420 / 1310,
  16739. bottom: 0.045
  16740. }
  16741. },
  16742. },
  16743. [
  16744. {
  16745. name: "Normal",
  16746. height: math.unit(6 + 8 / 12, "feet"),
  16747. default: true
  16748. },
  16749. {
  16750. name: "Normal+",
  16751. height: math.unit(12, "feet")
  16752. },
  16753. ]
  16754. ))
  16755. characterMakers.push(() => makeCharacter(
  16756. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16757. {
  16758. front: {
  16759. height: math.unit(7 + 6 / 12, "feet"),
  16760. weight: math.unit(288, "lb"),
  16761. name: "Front",
  16762. image: {
  16763. source: "./media/characters/alana/front.svg",
  16764. extra: 679 / 653,
  16765. bottom: 22.5 / 701
  16766. }
  16767. },
  16768. },
  16769. [
  16770. {
  16771. name: "Normal",
  16772. height: math.unit(7 + 6 / 12, "feet")
  16773. },
  16774. {
  16775. name: "Large",
  16776. height: math.unit(50, "feet")
  16777. },
  16778. {
  16779. name: "Macro",
  16780. height: math.unit(100, "feet"),
  16781. default: true
  16782. },
  16783. {
  16784. name: "Macro+",
  16785. height: math.unit(200, "feet")
  16786. },
  16787. ]
  16788. ))
  16789. characterMakers.push(() => makeCharacter(
  16790. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16791. {
  16792. front: {
  16793. height: math.unit(6 + 1 / 12, "feet"),
  16794. weight: math.unit(210, "lb"),
  16795. name: "Front",
  16796. image: {
  16797. source: "./media/characters/hasani/front.svg",
  16798. extra: 244 / 232,
  16799. bottom: 0.01
  16800. }
  16801. },
  16802. back: {
  16803. height: math.unit(6 + 1 / 12, "feet"),
  16804. weight: math.unit(210, "lb"),
  16805. name: "Back",
  16806. image: {
  16807. source: "./media/characters/hasani/back.svg",
  16808. extra: 244 / 232,
  16809. bottom: 0.01
  16810. }
  16811. },
  16812. },
  16813. [
  16814. {
  16815. name: "Normal",
  16816. height: math.unit(6 + 1 / 12, "feet")
  16817. },
  16818. {
  16819. name: "Macro",
  16820. height: math.unit(175, "feet"),
  16821. default: true
  16822. },
  16823. ]
  16824. ))
  16825. characterMakers.push(() => makeCharacter(
  16826. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16827. {
  16828. front: {
  16829. height: math.unit(1.82, "meters"),
  16830. weight: math.unit(140, "lb"),
  16831. name: "Front",
  16832. image: {
  16833. source: "./media/characters/nita/front.svg",
  16834. extra: 2473 / 2363,
  16835. bottom: 0.01
  16836. }
  16837. },
  16838. },
  16839. [
  16840. {
  16841. name: "Normal",
  16842. height: math.unit(1.82, "m")
  16843. },
  16844. {
  16845. name: "Macro",
  16846. height: math.unit(300, "m")
  16847. },
  16848. {
  16849. name: "Mistake Canon",
  16850. height: math.unit(0.5, "miles"),
  16851. default: true
  16852. },
  16853. {
  16854. name: "Big Mistake",
  16855. height: math.unit(13, "miles")
  16856. },
  16857. {
  16858. name: "Playing God",
  16859. height: math.unit(2450, "miles")
  16860. },
  16861. ]
  16862. ))
  16863. characterMakers.push(() => makeCharacter(
  16864. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16865. {
  16866. front: {
  16867. height: math.unit(4, "feet"),
  16868. weight: math.unit(120, "lb"),
  16869. name: "Front",
  16870. image: {
  16871. source: "./media/characters/shiriko/front.svg",
  16872. extra: 195 / 188
  16873. }
  16874. },
  16875. },
  16876. [
  16877. {
  16878. name: "Normal",
  16879. height: math.unit(4, "feet"),
  16880. default: true
  16881. },
  16882. ]
  16883. ))
  16884. characterMakers.push(() => makeCharacter(
  16885. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16886. {
  16887. front: {
  16888. height: math.unit(6, "feet"),
  16889. name: "front",
  16890. image: {
  16891. source: "./media/characters/deja/front.svg",
  16892. extra: 926 / 840,
  16893. bottom: 0.07
  16894. }
  16895. },
  16896. },
  16897. [
  16898. {
  16899. name: "Planck Length",
  16900. height: math.unit(1.6e-35, "meters")
  16901. },
  16902. {
  16903. name: "Normal",
  16904. height: math.unit(30.48, "meters"),
  16905. default: true
  16906. },
  16907. {
  16908. name: "Universal",
  16909. height: math.unit(8.8e26, "meters")
  16910. },
  16911. ]
  16912. ))
  16913. characterMakers.push(() => makeCharacter(
  16914. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16915. {
  16916. side: {
  16917. height: math.unit(8, "feet"),
  16918. weight: math.unit(6300, "lb"),
  16919. name: "Side",
  16920. image: {
  16921. source: "./media/characters/anima/side.svg",
  16922. bottom: 0.035
  16923. }
  16924. },
  16925. },
  16926. [
  16927. {
  16928. name: "Normal",
  16929. height: math.unit(8, "feet"),
  16930. default: true
  16931. },
  16932. ]
  16933. ))
  16934. characterMakers.push(() => makeCharacter(
  16935. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16936. {
  16937. front: {
  16938. height: math.unit(8, "feet"),
  16939. weight: math.unit(350, "lb"),
  16940. name: "Front",
  16941. image: {
  16942. source: "./media/characters/bianca/front.svg",
  16943. extra: 234 / 225,
  16944. bottom: 0.03
  16945. }
  16946. },
  16947. },
  16948. [
  16949. {
  16950. name: "Normal",
  16951. height: math.unit(8, "feet"),
  16952. default: true
  16953. },
  16954. ]
  16955. ))
  16956. characterMakers.push(() => makeCharacter(
  16957. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16958. {
  16959. front: {
  16960. height: math.unit(6, "feet"),
  16961. weight: math.unit(150, "lb"),
  16962. name: "Front",
  16963. image: {
  16964. source: "./media/characters/adinia/front.svg",
  16965. extra: 1845 / 1672,
  16966. bottom: 0.02
  16967. }
  16968. },
  16969. back: {
  16970. height: math.unit(6, "feet"),
  16971. weight: math.unit(150, "lb"),
  16972. name: "Back",
  16973. image: {
  16974. source: "./media/characters/adinia/back.svg",
  16975. extra: 1845 / 1672,
  16976. bottom: 0.002
  16977. }
  16978. },
  16979. },
  16980. [
  16981. {
  16982. name: "Normal",
  16983. height: math.unit(11 + 5 / 12, "feet"),
  16984. default: true
  16985. },
  16986. ]
  16987. ))
  16988. characterMakers.push(() => makeCharacter(
  16989. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16990. {
  16991. front: {
  16992. height: math.unit(3, "meters"),
  16993. weight: math.unit(200, "kg"),
  16994. name: "Front",
  16995. image: {
  16996. source: "./media/characters/lykasa/front.svg",
  16997. extra: 1076 / 976,
  16998. bottom: 0.06
  16999. }
  17000. },
  17001. },
  17002. [
  17003. {
  17004. name: "Normal",
  17005. height: math.unit(3, "meters")
  17006. },
  17007. {
  17008. name: "Kaiju",
  17009. height: math.unit(120, "meters"),
  17010. default: true
  17011. },
  17012. {
  17013. name: "Mega Kaiju",
  17014. height: math.unit(240, "km")
  17015. },
  17016. {
  17017. name: "Giga Kaiju",
  17018. height: math.unit(400, "megameters")
  17019. },
  17020. {
  17021. name: "Tera Kaiju",
  17022. height: math.unit(800, "gigameters")
  17023. },
  17024. {
  17025. name: "Kaiju Dragon Goddess",
  17026. height: math.unit(26, "zettaparsecs")
  17027. },
  17028. ]
  17029. ))
  17030. characterMakers.push(() => makeCharacter(
  17031. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17032. {
  17033. side: {
  17034. height: math.unit(283 / 124 * 6, "feet"),
  17035. weight: math.unit(35000, "lb"),
  17036. name: "Side",
  17037. image: {
  17038. source: "./media/characters/malfaren/side.svg",
  17039. extra: 2500 / 1010,
  17040. bottom: 0.01
  17041. }
  17042. },
  17043. front: {
  17044. height: math.unit(22.36, "feet"),
  17045. weight: math.unit(35000, "lb"),
  17046. name: "Front",
  17047. image: {
  17048. source: "./media/characters/malfaren/front.svg",
  17049. extra: 1631 / 1476,
  17050. bottom: 0.01
  17051. }
  17052. },
  17053. maw: {
  17054. height: math.unit(6.9, "feet"),
  17055. name: "Maw",
  17056. image: {
  17057. source: "./media/characters/malfaren/maw.svg"
  17058. }
  17059. },
  17060. },
  17061. [
  17062. {
  17063. name: "Big",
  17064. height: math.unit(283 / 162 * 6, "feet"),
  17065. },
  17066. {
  17067. name: "Bigger",
  17068. height: math.unit(283 / 124 * 6, "feet")
  17069. },
  17070. {
  17071. name: "Massive",
  17072. height: math.unit(283 / 92 * 6, "feet"),
  17073. default: true
  17074. },
  17075. {
  17076. name: "👀💦",
  17077. height: math.unit(283 / 73 * 6, "feet"),
  17078. },
  17079. ]
  17080. ))
  17081. characterMakers.push(() => makeCharacter(
  17082. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17083. {
  17084. front: {
  17085. height: math.unit(1.7, "m"),
  17086. weight: math.unit(70, "kg"),
  17087. name: "Front",
  17088. image: {
  17089. source: "./media/characters/kernel/front.svg",
  17090. extra: 222 / 210,
  17091. bottom: 0.007
  17092. }
  17093. },
  17094. },
  17095. [
  17096. {
  17097. name: "Nano",
  17098. height: math.unit(17, "micrometers")
  17099. },
  17100. {
  17101. name: "Micro",
  17102. height: math.unit(1.7, "mm")
  17103. },
  17104. {
  17105. name: "Small",
  17106. height: math.unit(1.7, "cm")
  17107. },
  17108. {
  17109. name: "Normal",
  17110. height: math.unit(1.7, "m"),
  17111. default: true
  17112. },
  17113. ]
  17114. ))
  17115. characterMakers.push(() => makeCharacter(
  17116. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17117. {
  17118. front: {
  17119. height: math.unit(1.75, "meters"),
  17120. weight: math.unit(65, "kg"),
  17121. name: "Front",
  17122. image: {
  17123. source: "./media/characters/jayne-folest/front.svg",
  17124. extra: 2115 / 2007,
  17125. bottom: 0.02
  17126. }
  17127. },
  17128. back: {
  17129. height: math.unit(1.75, "meters"),
  17130. weight: math.unit(65, "kg"),
  17131. name: "Back",
  17132. image: {
  17133. source: "./media/characters/jayne-folest/back.svg",
  17134. extra: 2115 / 2007,
  17135. bottom: 0.005
  17136. }
  17137. },
  17138. frontClothed: {
  17139. height: math.unit(1.75, "meters"),
  17140. weight: math.unit(65, "kg"),
  17141. name: "Front (Clothed)",
  17142. image: {
  17143. source: "./media/characters/jayne-folest/front-clothed.svg",
  17144. extra: 2115 / 2007,
  17145. bottom: 0.035
  17146. }
  17147. },
  17148. hand: {
  17149. height: math.unit(1 / 1.260, "feet"),
  17150. name: "Hand",
  17151. image: {
  17152. source: "./media/characters/jayne-folest/hand.svg"
  17153. }
  17154. },
  17155. foot: {
  17156. height: math.unit(1 / 0.918, "feet"),
  17157. name: "Foot",
  17158. image: {
  17159. source: "./media/characters/jayne-folest/foot.svg"
  17160. }
  17161. },
  17162. },
  17163. [
  17164. {
  17165. name: "Micro",
  17166. height: math.unit(4, "cm")
  17167. },
  17168. {
  17169. name: "Normal",
  17170. height: math.unit(1.75, "meters")
  17171. },
  17172. {
  17173. name: "Macro",
  17174. height: math.unit(47.5, "meters"),
  17175. default: true
  17176. },
  17177. ]
  17178. ))
  17179. characterMakers.push(() => makeCharacter(
  17180. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17181. {
  17182. front: {
  17183. height: math.unit(180, "cm"),
  17184. weight: math.unit(70, "kg"),
  17185. name: "Front",
  17186. image: {
  17187. source: "./media/characters/algier/front.svg",
  17188. extra: 596 / 572,
  17189. bottom: 0.04
  17190. }
  17191. },
  17192. back: {
  17193. height: math.unit(180, "cm"),
  17194. weight: math.unit(70, "kg"),
  17195. name: "Back",
  17196. image: {
  17197. source: "./media/characters/algier/back.svg",
  17198. extra: 596 / 572,
  17199. bottom: 0.025
  17200. }
  17201. },
  17202. frontdressed: {
  17203. height: math.unit(180, "cm"),
  17204. weight: math.unit(150, "kg"),
  17205. name: "Front-dressed",
  17206. image: {
  17207. source: "./media/characters/algier/front-dressed.svg",
  17208. extra: 596 / 572,
  17209. bottom: 0.038
  17210. }
  17211. },
  17212. },
  17213. [
  17214. {
  17215. name: "Micro",
  17216. height: math.unit(5, "cm")
  17217. },
  17218. {
  17219. name: "Normal",
  17220. height: math.unit(180, "cm"),
  17221. default: true
  17222. },
  17223. {
  17224. name: "Macro",
  17225. height: math.unit(64, "m")
  17226. },
  17227. ]
  17228. ))
  17229. characterMakers.push(() => makeCharacter(
  17230. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17231. {
  17232. upright: {
  17233. height: math.unit(7, "feet"),
  17234. weight: math.unit(300, "lb"),
  17235. name: "Upright",
  17236. image: {
  17237. source: "./media/characters/pretzel/upright.svg",
  17238. extra: 534 / 522,
  17239. bottom: 0.065
  17240. }
  17241. },
  17242. sprawling: {
  17243. height: math.unit(3.75, "feet"),
  17244. weight: math.unit(300, "lb"),
  17245. name: "Sprawling",
  17246. image: {
  17247. source: "./media/characters/pretzel/sprawling.svg",
  17248. extra: 314 / 281,
  17249. bottom: 0.1
  17250. }
  17251. },
  17252. tongue: {
  17253. height: math.unit(2, "feet"),
  17254. name: "Tongue",
  17255. image: {
  17256. source: "./media/characters/pretzel/tongue.svg"
  17257. }
  17258. },
  17259. },
  17260. [
  17261. {
  17262. name: "Normal",
  17263. height: math.unit(7, "feet"),
  17264. default: true
  17265. },
  17266. {
  17267. name: "Oversized",
  17268. height: math.unit(15, "feet")
  17269. },
  17270. {
  17271. name: "Huge",
  17272. height: math.unit(30, "feet")
  17273. },
  17274. {
  17275. name: "Macro",
  17276. height: math.unit(250, "feet")
  17277. },
  17278. ]
  17279. ))
  17280. characterMakers.push(() => makeCharacter(
  17281. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17282. {
  17283. sideFront: {
  17284. height: math.unit(5 + 2 / 12, "feet"),
  17285. weight: math.unit(120, "lb"),
  17286. name: "Front Side",
  17287. image: {
  17288. source: "./media/characters/roxi/side-front.svg",
  17289. extra: 2924 / 2717,
  17290. bottom: 0.08
  17291. }
  17292. },
  17293. sideBack: {
  17294. height: math.unit(5 + 2 / 12, "feet"),
  17295. weight: math.unit(120, "lb"),
  17296. name: "Back Side",
  17297. image: {
  17298. source: "./media/characters/roxi/side-back.svg",
  17299. extra: 2904 / 2693,
  17300. bottom: 0.06
  17301. }
  17302. },
  17303. front: {
  17304. height: math.unit(5 + 2 / 12, "feet"),
  17305. weight: math.unit(120, "lb"),
  17306. name: "Front",
  17307. image: {
  17308. source: "./media/characters/roxi/front.svg",
  17309. extra: 2028 / 1907,
  17310. bottom: 0.01
  17311. }
  17312. },
  17313. frontAlt: {
  17314. height: math.unit(5 + 2 / 12, "feet"),
  17315. weight: math.unit(120, "lb"),
  17316. name: "Front (Alt)",
  17317. image: {
  17318. source: "./media/characters/roxi/front-alt.svg",
  17319. extra: 1828 / 1798,
  17320. bottom: 0.01
  17321. }
  17322. },
  17323. sitting: {
  17324. height: math.unit(2.8, "feet"),
  17325. weight: math.unit(120, "lb"),
  17326. name: "Sitting",
  17327. image: {
  17328. source: "./media/characters/roxi/sitting.svg",
  17329. extra: 2660 / 2462,
  17330. bottom: 0.1
  17331. }
  17332. },
  17333. },
  17334. [
  17335. {
  17336. name: "Normal",
  17337. height: math.unit(5 + 2 / 12, "feet"),
  17338. default: true
  17339. },
  17340. ]
  17341. ))
  17342. characterMakers.push(() => makeCharacter(
  17343. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17344. {
  17345. side: {
  17346. height: math.unit(55, "feet"),
  17347. weight: math.unit(153, "tons"),
  17348. name: "Side",
  17349. image: {
  17350. source: "./media/characters/shadow/side.svg",
  17351. extra: 701 / 628,
  17352. bottom: 0.02
  17353. }
  17354. },
  17355. flying: {
  17356. height: math.unit(145, "feet"),
  17357. weight: math.unit(153, "tons"),
  17358. name: "Flying",
  17359. image: {
  17360. source: "./media/characters/shadow/flying.svg"
  17361. }
  17362. },
  17363. },
  17364. [
  17365. {
  17366. name: "Normal",
  17367. height: math.unit(55, "feet"),
  17368. default: true
  17369. },
  17370. ]
  17371. ))
  17372. characterMakers.push(() => makeCharacter(
  17373. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17374. {
  17375. front: {
  17376. height: math.unit(6, "feet"),
  17377. weight: math.unit(200, "lb"),
  17378. name: "Front",
  17379. image: {
  17380. source: "./media/characters/marcie/front.svg",
  17381. extra: 960 / 876,
  17382. bottom: 58 / 1017.87
  17383. }
  17384. },
  17385. },
  17386. [
  17387. {
  17388. name: "Macro",
  17389. height: math.unit(1, "mile"),
  17390. default: true
  17391. },
  17392. ]
  17393. ))
  17394. characterMakers.push(() => makeCharacter(
  17395. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17396. {
  17397. front: {
  17398. height: math.unit(7, "feet"),
  17399. weight: math.unit(200, "lb"),
  17400. name: "Front",
  17401. image: {
  17402. source: "./media/characters/kachina/front.svg",
  17403. extra: 1290.68 / 1119,
  17404. bottom: 36.5 / 1327.18
  17405. }
  17406. },
  17407. },
  17408. [
  17409. {
  17410. name: "Normal",
  17411. height: math.unit(7, "feet"),
  17412. default: true
  17413. },
  17414. ]
  17415. ))
  17416. characterMakers.push(() => makeCharacter(
  17417. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17418. {
  17419. looking: {
  17420. height: math.unit(2, "meters"),
  17421. weight: math.unit(300, "kg"),
  17422. name: "Looking",
  17423. image: {
  17424. source: "./media/characters/kash/looking.svg",
  17425. extra: 474 / 344,
  17426. bottom: 0.03
  17427. }
  17428. },
  17429. side: {
  17430. height: math.unit(2, "meters"),
  17431. weight: math.unit(300, "kg"),
  17432. name: "Side",
  17433. image: {
  17434. source: "./media/characters/kash/side.svg",
  17435. extra: 302 / 251,
  17436. bottom: 0.03
  17437. }
  17438. },
  17439. front: {
  17440. height: math.unit(2, "meters"),
  17441. weight: math.unit(300, "kg"),
  17442. name: "Front",
  17443. image: {
  17444. source: "./media/characters/kash/front.svg",
  17445. extra: 495 / 360,
  17446. bottom: 0.015
  17447. }
  17448. },
  17449. },
  17450. [
  17451. {
  17452. name: "Normal",
  17453. height: math.unit(2, "meters"),
  17454. default: true
  17455. },
  17456. {
  17457. name: "Big",
  17458. height: math.unit(3, "meters")
  17459. },
  17460. {
  17461. name: "Large",
  17462. height: math.unit(5, "meters")
  17463. },
  17464. ]
  17465. ))
  17466. characterMakers.push(() => makeCharacter(
  17467. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17468. {
  17469. feeding: {
  17470. height: math.unit(6.7, "feet"),
  17471. weight: math.unit(350, "lb"),
  17472. name: "Feeding",
  17473. image: {
  17474. source: "./media/characters/lalim/feeding.svg",
  17475. }
  17476. },
  17477. },
  17478. [
  17479. {
  17480. name: "Normal",
  17481. height: math.unit(6.7, "feet"),
  17482. default: true
  17483. },
  17484. ]
  17485. ))
  17486. characterMakers.push(() => makeCharacter(
  17487. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17488. {
  17489. front: {
  17490. height: math.unit(9.5, "feet"),
  17491. weight: math.unit(600, "lb"),
  17492. name: "Front",
  17493. image: {
  17494. source: "./media/characters/de'vout/front.svg",
  17495. extra: 1443 / 1328,
  17496. bottom: 0.025
  17497. }
  17498. },
  17499. back: {
  17500. height: math.unit(9.5, "feet"),
  17501. weight: math.unit(600, "lb"),
  17502. name: "Back",
  17503. image: {
  17504. source: "./media/characters/de'vout/back.svg",
  17505. extra: 1443 / 1328
  17506. }
  17507. },
  17508. frontDressed: {
  17509. height: math.unit(9.5, "feet"),
  17510. weight: math.unit(600, "lb"),
  17511. name: "Front (Dressed",
  17512. image: {
  17513. source: "./media/characters/de'vout/front-dressed.svg",
  17514. extra: 1443 / 1328,
  17515. bottom: 0.025
  17516. }
  17517. },
  17518. backDressed: {
  17519. height: math.unit(9.5, "feet"),
  17520. weight: math.unit(600, "lb"),
  17521. name: "Back (Dressed",
  17522. image: {
  17523. source: "./media/characters/de'vout/back-dressed.svg",
  17524. extra: 1443 / 1328
  17525. }
  17526. },
  17527. },
  17528. [
  17529. {
  17530. name: "Normal",
  17531. height: math.unit(9.5, "feet"),
  17532. default: true
  17533. },
  17534. ]
  17535. ))
  17536. characterMakers.push(() => makeCharacter(
  17537. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17538. {
  17539. front: {
  17540. height: math.unit(8, "feet"),
  17541. weight: math.unit(225, "lb"),
  17542. name: "Front",
  17543. image: {
  17544. source: "./media/characters/talana/front.svg",
  17545. extra: 1410 / 1300,
  17546. bottom: 0.015
  17547. }
  17548. },
  17549. frontDressed: {
  17550. height: math.unit(8, "feet"),
  17551. weight: math.unit(225, "lb"),
  17552. name: "Front (Dressed",
  17553. image: {
  17554. source: "./media/characters/talana/front-dressed.svg",
  17555. extra: 1410 / 1300,
  17556. bottom: 0.015
  17557. }
  17558. },
  17559. },
  17560. [
  17561. {
  17562. name: "Normal",
  17563. height: math.unit(8, "feet"),
  17564. default: true
  17565. },
  17566. ]
  17567. ))
  17568. characterMakers.push(() => makeCharacter(
  17569. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17570. {
  17571. side: {
  17572. height: math.unit(7.2, "feet"),
  17573. weight: math.unit(150, "lb"),
  17574. name: "Side",
  17575. image: {
  17576. source: "./media/characters/xeauvok/side.svg",
  17577. extra: 1975 / 1523,
  17578. bottom: 0.07
  17579. }
  17580. },
  17581. },
  17582. [
  17583. {
  17584. name: "Normal",
  17585. height: math.unit(7.2, "feet"),
  17586. default: true
  17587. },
  17588. ]
  17589. ))
  17590. characterMakers.push(() => makeCharacter(
  17591. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17592. {
  17593. side: {
  17594. height: math.unit(10, "feet"),
  17595. weight: math.unit(900, "kg"),
  17596. name: "Side",
  17597. image: {
  17598. source: "./media/characters/zara/side.svg",
  17599. extra: 504 / 498
  17600. }
  17601. },
  17602. },
  17603. [
  17604. {
  17605. name: "Normal",
  17606. height: math.unit(10, "feet"),
  17607. default: true
  17608. },
  17609. ]
  17610. ))
  17611. characterMakers.push(() => makeCharacter(
  17612. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17613. {
  17614. side: {
  17615. height: math.unit(6, "feet"),
  17616. weight: math.unit(150, "lb"),
  17617. name: "Side",
  17618. image: {
  17619. source: "./media/characters/richard-dragon/side.svg",
  17620. extra: 845 / 340,
  17621. bottom: 0.017
  17622. }
  17623. },
  17624. maw: {
  17625. height: math.unit(2.97, "feet"),
  17626. name: "Maw",
  17627. image: {
  17628. source: "./media/characters/richard-dragon/maw.svg"
  17629. }
  17630. },
  17631. },
  17632. [
  17633. ]
  17634. ))
  17635. characterMakers.push(() => makeCharacter(
  17636. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17637. {
  17638. front: {
  17639. height: math.unit(4, "feet"),
  17640. weight: math.unit(100, "lb"),
  17641. name: "Front",
  17642. image: {
  17643. source: "./media/characters/richard-smeargle/front.svg",
  17644. extra: 2952 / 2820,
  17645. bottom: 0.028
  17646. }
  17647. },
  17648. },
  17649. [
  17650. {
  17651. name: "Normal",
  17652. height: math.unit(4, "feet"),
  17653. default: true
  17654. },
  17655. {
  17656. name: "Dynamax",
  17657. height: math.unit(20, "meters")
  17658. },
  17659. ]
  17660. ))
  17661. characterMakers.push(() => makeCharacter(
  17662. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17663. {
  17664. front: {
  17665. height: math.unit(6, "feet"),
  17666. weight: math.unit(110, "lb"),
  17667. name: "Front",
  17668. image: {
  17669. source: "./media/characters/klay/front.svg",
  17670. extra: 962 / 883,
  17671. bottom: 0.04
  17672. }
  17673. },
  17674. back: {
  17675. height: math.unit(6, "feet"),
  17676. weight: math.unit(110, "lb"),
  17677. name: "Back",
  17678. image: {
  17679. source: "./media/characters/klay/back.svg",
  17680. extra: 962 / 883
  17681. }
  17682. },
  17683. beans: {
  17684. height: math.unit(1.15, "feet"),
  17685. name: "Beans",
  17686. image: {
  17687. source: "./media/characters/klay/beans.svg"
  17688. }
  17689. },
  17690. },
  17691. [
  17692. {
  17693. name: "Micro",
  17694. height: math.unit(6, "inches")
  17695. },
  17696. {
  17697. name: "Mini",
  17698. height: math.unit(3, "feet")
  17699. },
  17700. {
  17701. name: "Normal",
  17702. height: math.unit(6, "feet"),
  17703. default: true
  17704. },
  17705. {
  17706. name: "Big",
  17707. height: math.unit(25, "feet")
  17708. },
  17709. {
  17710. name: "Macro",
  17711. height: math.unit(100, "feet")
  17712. },
  17713. {
  17714. name: "Megamacro",
  17715. height: math.unit(400, "feet")
  17716. },
  17717. ]
  17718. ))
  17719. characterMakers.push(() => makeCharacter(
  17720. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17721. {
  17722. front: {
  17723. height: math.unit(6, "feet"),
  17724. weight: math.unit(160, "lb"),
  17725. name: "Front",
  17726. image: {
  17727. source: "./media/characters/marcus/front.svg",
  17728. extra: 734 / 676,
  17729. bottom: 0.03
  17730. }
  17731. },
  17732. },
  17733. [
  17734. {
  17735. name: "Little",
  17736. height: math.unit(6, "feet")
  17737. },
  17738. {
  17739. name: "Normal",
  17740. height: math.unit(110, "feet"),
  17741. default: true
  17742. },
  17743. {
  17744. name: "Macro",
  17745. height: math.unit(250, "feet")
  17746. },
  17747. {
  17748. name: "Megamacro",
  17749. height: math.unit(1000, "feet")
  17750. },
  17751. ]
  17752. ))
  17753. characterMakers.push(() => makeCharacter(
  17754. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17755. {
  17756. front: {
  17757. height: math.unit(7, "feet"),
  17758. weight: math.unit(275, "lb"),
  17759. name: "Front",
  17760. image: {
  17761. source: "./media/characters/claude-delroute/front.svg",
  17762. extra: 230 / 214,
  17763. bottom: 0.007
  17764. }
  17765. },
  17766. side: {
  17767. height: math.unit(7, "feet"),
  17768. weight: math.unit(275, "lb"),
  17769. name: "Side",
  17770. image: {
  17771. source: "./media/characters/claude-delroute/side.svg",
  17772. extra: 222 / 214,
  17773. bottom: 0.01
  17774. }
  17775. },
  17776. back: {
  17777. height: math.unit(7, "feet"),
  17778. weight: math.unit(275, "lb"),
  17779. name: "Back",
  17780. image: {
  17781. source: "./media/characters/claude-delroute/back.svg",
  17782. extra: 230 / 214,
  17783. bottom: 0.015
  17784. }
  17785. },
  17786. maw: {
  17787. height: math.unit(0.6407, "meters"),
  17788. name: "Maw",
  17789. image: {
  17790. source: "./media/characters/claude-delroute/maw.svg"
  17791. }
  17792. },
  17793. },
  17794. [
  17795. {
  17796. name: "Normal",
  17797. height: math.unit(7, "feet"),
  17798. default: true
  17799. },
  17800. {
  17801. name: "Lorge",
  17802. height: math.unit(20, "feet")
  17803. },
  17804. ]
  17805. ))
  17806. characterMakers.push(() => makeCharacter(
  17807. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17808. {
  17809. front: {
  17810. height: math.unit(8 + 4 / 12, "feet"),
  17811. weight: math.unit(600, "lb"),
  17812. name: "Front",
  17813. image: {
  17814. source: "./media/characters/dragonien/front.svg",
  17815. extra: 100 / 94,
  17816. bottom: 3.3 / 103.3445
  17817. }
  17818. },
  17819. back: {
  17820. height: math.unit(8 + 4 / 12, "feet"),
  17821. weight: math.unit(600, "lb"),
  17822. name: "Back",
  17823. image: {
  17824. source: "./media/characters/dragonien/back.svg",
  17825. extra: 776 / 746,
  17826. bottom: 6.4 / 782.0616
  17827. }
  17828. },
  17829. foot: {
  17830. height: math.unit(1.54, "feet"),
  17831. name: "Foot",
  17832. image: {
  17833. source: "./media/characters/dragonien/foot.svg",
  17834. }
  17835. },
  17836. },
  17837. [
  17838. {
  17839. name: "Normal",
  17840. height: math.unit(8 + 4 / 12, "feet"),
  17841. default: true
  17842. },
  17843. {
  17844. name: "Macro",
  17845. height: math.unit(200, "feet")
  17846. },
  17847. {
  17848. name: "Megamacro",
  17849. height: math.unit(1, "mile")
  17850. },
  17851. {
  17852. name: "Gigamacro",
  17853. height: math.unit(1000, "miles")
  17854. },
  17855. ]
  17856. ))
  17857. characterMakers.push(() => makeCharacter(
  17858. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17859. {
  17860. front: {
  17861. height: math.unit(5 + 2 / 12, "feet"),
  17862. weight: math.unit(110, "lb"),
  17863. name: "Front",
  17864. image: {
  17865. source: "./media/characters/desta/front.svg",
  17866. extra: 767 / 726,
  17867. bottom: 11.7 / 779
  17868. }
  17869. },
  17870. back: {
  17871. height: math.unit(5 + 2 / 12, "feet"),
  17872. weight: math.unit(110, "lb"),
  17873. name: "Back",
  17874. image: {
  17875. source: "./media/characters/desta/back.svg",
  17876. extra: 777 / 728,
  17877. bottom: 6 / 784
  17878. }
  17879. },
  17880. frontAlt: {
  17881. height: math.unit(5 + 2 / 12, "feet"),
  17882. weight: math.unit(110, "lb"),
  17883. name: "Front",
  17884. image: {
  17885. source: "./media/characters/desta/front-alt.svg",
  17886. extra: 1482 / 1417
  17887. }
  17888. },
  17889. side: {
  17890. height: math.unit(5 + 2 / 12, "feet"),
  17891. weight: math.unit(110, "lb"),
  17892. name: "Side",
  17893. image: {
  17894. source: "./media/characters/desta/side.svg",
  17895. extra: 2579 / 2491,
  17896. bottom: 0.053
  17897. }
  17898. },
  17899. },
  17900. [
  17901. {
  17902. name: "Micro",
  17903. height: math.unit(6, "inches")
  17904. },
  17905. {
  17906. name: "Normal",
  17907. height: math.unit(5 + 2 / 12, "feet"),
  17908. default: true
  17909. },
  17910. {
  17911. name: "Macro",
  17912. height: math.unit(62, "feet")
  17913. },
  17914. {
  17915. name: "Megamacro",
  17916. height: math.unit(1800, "feet")
  17917. },
  17918. ]
  17919. ))
  17920. characterMakers.push(() => makeCharacter(
  17921. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17922. {
  17923. front: {
  17924. height: math.unit(10, "feet"),
  17925. weight: math.unit(700, "lb"),
  17926. name: "Front",
  17927. image: {
  17928. source: "./media/characters/storm-alystar/front.svg",
  17929. extra: 2112 / 1898,
  17930. bottom: 0.034
  17931. }
  17932. },
  17933. },
  17934. [
  17935. {
  17936. name: "Micro",
  17937. height: math.unit(3.5, "inches")
  17938. },
  17939. {
  17940. name: "Normal",
  17941. height: math.unit(10, "feet"),
  17942. default: true
  17943. },
  17944. {
  17945. name: "Macro",
  17946. height: math.unit(400, "feet")
  17947. },
  17948. {
  17949. name: "Deific",
  17950. height: math.unit(60, "miles")
  17951. },
  17952. ]
  17953. ))
  17954. characterMakers.push(() => makeCharacter(
  17955. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17956. {
  17957. front: {
  17958. height: math.unit(2.35, "meters"),
  17959. weight: math.unit(119, "kg"),
  17960. name: "Front",
  17961. image: {
  17962. source: "./media/characters/ilia/front.svg",
  17963. extra: 1285 / 1255,
  17964. bottom: 0.06
  17965. }
  17966. },
  17967. },
  17968. [
  17969. {
  17970. name: "Normal",
  17971. height: math.unit(2.35, "meters")
  17972. },
  17973. {
  17974. name: "Macro",
  17975. height: math.unit(140, "meters"),
  17976. default: true
  17977. },
  17978. {
  17979. name: "Megamacro",
  17980. height: math.unit(100, "miles")
  17981. },
  17982. ]
  17983. ))
  17984. characterMakers.push(() => makeCharacter(
  17985. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17986. {
  17987. front: {
  17988. height: math.unit(6 + 5 / 12, "feet"),
  17989. weight: math.unit(190, "lb"),
  17990. name: "Front",
  17991. image: {
  17992. source: "./media/characters/kingdead/front.svg",
  17993. extra: 1228 / 1177
  17994. }
  17995. },
  17996. },
  17997. [
  17998. {
  17999. name: "Micro",
  18000. height: math.unit(7, "inches")
  18001. },
  18002. {
  18003. name: "Normal",
  18004. height: math.unit(6 + 5 / 12, "feet")
  18005. },
  18006. {
  18007. name: "Macro",
  18008. height: math.unit(150, "feet"),
  18009. default: true
  18010. },
  18011. {
  18012. name: "Megamacro",
  18013. height: math.unit(200, "miles")
  18014. },
  18015. ]
  18016. ))
  18017. characterMakers.push(() => makeCharacter(
  18018. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18019. {
  18020. front: {
  18021. height: math.unit(8, "feet"),
  18022. weight: math.unit(600, "lb"),
  18023. name: "Front",
  18024. image: {
  18025. source: "./media/characters/kyrehx/front.svg",
  18026. extra: 1195 / 1095,
  18027. bottom: 0.034
  18028. }
  18029. },
  18030. },
  18031. [
  18032. {
  18033. name: "Micro",
  18034. height: math.unit(2, "inches")
  18035. },
  18036. {
  18037. name: "Normal",
  18038. height: math.unit(8, "feet"),
  18039. default: true
  18040. },
  18041. {
  18042. name: "Macro",
  18043. height: math.unit(255, "feet")
  18044. },
  18045. ]
  18046. ))
  18047. characterMakers.push(() => makeCharacter(
  18048. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18049. {
  18050. front: {
  18051. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18052. weight: math.unit(184, "lb"),
  18053. name: "Front",
  18054. image: {
  18055. source: "./media/characters/xang/front.svg",
  18056. extra: 845 / 755
  18057. }
  18058. },
  18059. },
  18060. [
  18061. {
  18062. name: "Normal",
  18063. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18064. default: true
  18065. },
  18066. {
  18067. name: "Macro",
  18068. height: math.unit(0.935 * 146, "feet")
  18069. },
  18070. {
  18071. name: "Megamacro",
  18072. height: math.unit(0.935 * 3, "miles")
  18073. },
  18074. ]
  18075. ))
  18076. characterMakers.push(() => makeCharacter(
  18077. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18078. {
  18079. frontDressed: {
  18080. height: math.unit(5 + 7 / 12, "feet"),
  18081. weight: math.unit(140, "lb"),
  18082. name: "Front (Dressed)",
  18083. image: {
  18084. source: "./media/characters/doc-weardno/front-dressed.svg",
  18085. extra: 263 / 234
  18086. }
  18087. },
  18088. backDressed: {
  18089. height: math.unit(5 + 7 / 12, "feet"),
  18090. weight: math.unit(140, "lb"),
  18091. name: "Back (Dressed)",
  18092. image: {
  18093. source: "./media/characters/doc-weardno/back-dressed.svg",
  18094. extra: 266 / 238
  18095. }
  18096. },
  18097. front: {
  18098. height: math.unit(5 + 7 / 12, "feet"),
  18099. weight: math.unit(140, "lb"),
  18100. name: "Front",
  18101. image: {
  18102. source: "./media/characters/doc-weardno/front.svg",
  18103. extra: 254 / 233
  18104. }
  18105. },
  18106. },
  18107. [
  18108. {
  18109. name: "Micro",
  18110. height: math.unit(3, "inches")
  18111. },
  18112. {
  18113. name: "Normal",
  18114. height: math.unit(5 + 7 / 12, "feet"),
  18115. default: true
  18116. },
  18117. {
  18118. name: "Macro",
  18119. height: math.unit(25, "feet")
  18120. },
  18121. {
  18122. name: "Megamacro",
  18123. height: math.unit(2, "miles")
  18124. },
  18125. ]
  18126. ))
  18127. characterMakers.push(() => makeCharacter(
  18128. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18129. {
  18130. front: {
  18131. height: math.unit(6 + 2 / 12, "feet"),
  18132. weight: math.unit(153, "lb"),
  18133. name: "Front",
  18134. image: {
  18135. source: "./media/characters/seth-whilst/front.svg",
  18136. bottom: 0.07
  18137. }
  18138. },
  18139. },
  18140. [
  18141. {
  18142. name: "Micro",
  18143. height: math.unit(5, "inches")
  18144. },
  18145. {
  18146. name: "Normal",
  18147. height: math.unit(6 + 2 / 12, "feet"),
  18148. default: true
  18149. },
  18150. ]
  18151. ))
  18152. characterMakers.push(() => makeCharacter(
  18153. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18154. {
  18155. front: {
  18156. height: math.unit(3, "inches"),
  18157. weight: math.unit(8, "grams"),
  18158. name: "Front",
  18159. image: {
  18160. source: "./media/characters/pocket-jabari/front.svg",
  18161. extra: 1024 / 974,
  18162. bottom: 0.039
  18163. }
  18164. },
  18165. },
  18166. [
  18167. {
  18168. name: "Minimicro",
  18169. height: math.unit(8, "mm")
  18170. },
  18171. {
  18172. name: "Micro",
  18173. height: math.unit(3, "inches"),
  18174. default: true
  18175. },
  18176. {
  18177. name: "Normal",
  18178. height: math.unit(3, "feet")
  18179. },
  18180. ]
  18181. ))
  18182. characterMakers.push(() => makeCharacter(
  18183. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18184. {
  18185. front: {
  18186. height: math.unit(15, "feet"),
  18187. weight: math.unit(3280, "lb"),
  18188. name: "Front",
  18189. image: {
  18190. source: "./media/characters/sapphy/front.svg",
  18191. extra: 671 / 577,
  18192. bottom: 0.085
  18193. }
  18194. },
  18195. back: {
  18196. height: math.unit(15, "feet"),
  18197. weight: math.unit(3280, "lb"),
  18198. name: "Back",
  18199. image: {
  18200. source: "./media/characters/sapphy/back.svg",
  18201. extra: 631 / 607,
  18202. bottom: 0.045
  18203. }
  18204. },
  18205. },
  18206. [
  18207. {
  18208. name: "Normal",
  18209. height: math.unit(15, "feet")
  18210. },
  18211. {
  18212. name: "Casual Macro",
  18213. height: math.unit(120, "feet")
  18214. },
  18215. {
  18216. name: "Macro",
  18217. height: math.unit(2150, "feet"),
  18218. default: true
  18219. },
  18220. {
  18221. name: "Megamacro",
  18222. height: math.unit(8, "miles")
  18223. },
  18224. {
  18225. name: "Galaxy Mom",
  18226. height: math.unit(6, "megalightyears")
  18227. },
  18228. ]
  18229. ))
  18230. characterMakers.push(() => makeCharacter(
  18231. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18232. {
  18233. front: {
  18234. height: math.unit(6, "feet"),
  18235. weight: math.unit(170, "lb"),
  18236. name: "Front",
  18237. image: {
  18238. source: "./media/characters/kiro/front.svg",
  18239. extra: 1064 / 1012,
  18240. bottom: 0.052
  18241. }
  18242. },
  18243. },
  18244. [
  18245. {
  18246. name: "Micro",
  18247. height: math.unit(6, "inches")
  18248. },
  18249. {
  18250. name: "Normal",
  18251. height: math.unit(6, "feet"),
  18252. default: true
  18253. },
  18254. {
  18255. name: "Macro",
  18256. height: math.unit(72, "feet")
  18257. },
  18258. ]
  18259. ))
  18260. characterMakers.push(() => makeCharacter(
  18261. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18262. {
  18263. front: {
  18264. height: math.unit(5 + 9 / 12, "feet"),
  18265. weight: math.unit(175, "lb"),
  18266. name: "Front",
  18267. image: {
  18268. source: "./media/characters/irishfox/front.svg",
  18269. extra: 1912 / 1680,
  18270. bottom: 0.02
  18271. }
  18272. },
  18273. },
  18274. [
  18275. {
  18276. name: "Nano",
  18277. height: math.unit(1, "mm")
  18278. },
  18279. {
  18280. name: "Micro",
  18281. height: math.unit(2, "inches")
  18282. },
  18283. {
  18284. name: "Normal",
  18285. height: math.unit(5 + 9 / 12, "feet"),
  18286. default: true
  18287. },
  18288. {
  18289. name: "Macro",
  18290. height: math.unit(45, "feet")
  18291. },
  18292. ]
  18293. ))
  18294. characterMakers.push(() => makeCharacter(
  18295. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18296. {
  18297. front: {
  18298. height: math.unit(6 + 1 / 12, "feet"),
  18299. weight: math.unit(75, "lb"),
  18300. name: "Front",
  18301. image: {
  18302. source: "./media/characters/aronai-sieyes/front.svg",
  18303. extra: 1556 / 1480,
  18304. bottom: 0.015
  18305. }
  18306. },
  18307. side: {
  18308. height: math.unit(6 + 1 / 12, "feet"),
  18309. weight: math.unit(75, "lb"),
  18310. name: "Side",
  18311. image: {
  18312. source: "./media/characters/aronai-sieyes/side.svg",
  18313. extra: 1433 / 1390,
  18314. bottom: 0.0393
  18315. }
  18316. },
  18317. back: {
  18318. height: math.unit(6 + 1 / 12, "feet"),
  18319. weight: math.unit(75, "lb"),
  18320. name: "Back",
  18321. image: {
  18322. source: "./media/characters/aronai-sieyes/back.svg",
  18323. extra: 1544 / 1494,
  18324. bottom: 0.02
  18325. }
  18326. },
  18327. frontClothed: {
  18328. height: math.unit(6 + 1 / 12, "feet"),
  18329. weight: math.unit(75, "lb"),
  18330. name: "Front (Clothed)",
  18331. image: {
  18332. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18333. extra: 1582 / 1527
  18334. }
  18335. },
  18336. feral: {
  18337. height: math.unit(18, "feet"),
  18338. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18339. name: "Feral",
  18340. image: {
  18341. source: "./media/characters/aronai-sieyes/feral.svg",
  18342. extra: 1530 / 1240,
  18343. bottom: 0.035
  18344. }
  18345. },
  18346. },
  18347. [
  18348. {
  18349. name: "Micro",
  18350. height: math.unit(2, "inches")
  18351. },
  18352. {
  18353. name: "Normal",
  18354. height: math.unit(6 + 1 / 12, "feet"),
  18355. default: true
  18356. }
  18357. ]
  18358. ))
  18359. characterMakers.push(() => makeCharacter(
  18360. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18361. {
  18362. front: {
  18363. height: math.unit(12, "feet"),
  18364. weight: math.unit(410, "kg"),
  18365. name: "Front",
  18366. image: {
  18367. source: "./media/characters/xuna/front.svg",
  18368. extra: 2184 / 1980
  18369. }
  18370. },
  18371. side: {
  18372. height: math.unit(12, "feet"),
  18373. weight: math.unit(410, "kg"),
  18374. name: "Side",
  18375. image: {
  18376. source: "./media/characters/xuna/side.svg",
  18377. extra: 2184 / 1980
  18378. }
  18379. },
  18380. back: {
  18381. height: math.unit(12, "feet"),
  18382. weight: math.unit(410, "kg"),
  18383. name: "Back",
  18384. image: {
  18385. source: "./media/characters/xuna/back.svg",
  18386. extra: 2184 / 1980
  18387. }
  18388. },
  18389. },
  18390. [
  18391. {
  18392. name: "Nano glow",
  18393. height: math.unit(10, "nm")
  18394. },
  18395. {
  18396. name: "Micro floof",
  18397. height: math.unit(0.3, "m")
  18398. },
  18399. {
  18400. name: "Huggable softy boi",
  18401. height: math.unit(3.6576, "m"),
  18402. default: true
  18403. },
  18404. {
  18405. name: "Admirable floof",
  18406. height: math.unit(80, "meters")
  18407. },
  18408. {
  18409. name: "Gentle macro",
  18410. height: math.unit(300, "meters")
  18411. },
  18412. {
  18413. name: "Very careful floof",
  18414. height: math.unit(3200, "meters")
  18415. },
  18416. {
  18417. name: "The mega floof",
  18418. height: math.unit(36000, "meters")
  18419. },
  18420. {
  18421. name: "Giga-fur-Wicker",
  18422. height: math.unit(4800000, "meters")
  18423. },
  18424. {
  18425. name: "Licky world",
  18426. height: math.unit(20000000, "meters")
  18427. },
  18428. {
  18429. name: "Floofy cyan sun",
  18430. height: math.unit(1500000000, "meters")
  18431. },
  18432. {
  18433. name: "Milky Wicker",
  18434. height: math.unit(1000000000000000000000, "meters")
  18435. },
  18436. {
  18437. name: "The observing Wicker",
  18438. height: math.unit(999999999999999999999999999, "meters")
  18439. },
  18440. ]
  18441. ))
  18442. characterMakers.push(() => makeCharacter(
  18443. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18444. {
  18445. front: {
  18446. height: math.unit(5 + 9 / 12, "feet"),
  18447. weight: math.unit(150, "lb"),
  18448. name: "Front",
  18449. image: {
  18450. source: "./media/characters/arokha-sieyes/front.svg",
  18451. extra: 1425 / 1284,
  18452. bottom: 0.05
  18453. }
  18454. },
  18455. },
  18456. [
  18457. {
  18458. name: "Normal",
  18459. height: math.unit(5 + 9 / 12, "feet")
  18460. },
  18461. {
  18462. name: "Macro",
  18463. height: math.unit(30, "meters"),
  18464. default: true
  18465. },
  18466. ]
  18467. ))
  18468. characterMakers.push(() => makeCharacter(
  18469. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18470. {
  18471. front: {
  18472. height: math.unit(6, "feet"),
  18473. weight: math.unit(180, "lb"),
  18474. name: "Front",
  18475. image: {
  18476. source: "./media/characters/arokh-sieyes/front.svg",
  18477. extra: 1830 / 1769,
  18478. bottom: 0.01
  18479. }
  18480. },
  18481. },
  18482. [
  18483. {
  18484. name: "Normal",
  18485. height: math.unit(6, "feet")
  18486. },
  18487. {
  18488. name: "Macro",
  18489. height: math.unit(30, "meters"),
  18490. default: true
  18491. },
  18492. ]
  18493. ))
  18494. characterMakers.push(() => makeCharacter(
  18495. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18496. {
  18497. side: {
  18498. height: math.unit(13 + 1 / 12, "feet"),
  18499. weight: math.unit(8.5, "tonnes"),
  18500. name: "Side",
  18501. image: {
  18502. source: "./media/characters/goldeneye/side.svg",
  18503. extra: 1182 / 778,
  18504. bottom: 0.067
  18505. }
  18506. },
  18507. paw: {
  18508. height: math.unit(3.4, "feet"),
  18509. name: "Paw",
  18510. image: {
  18511. source: "./media/characters/goldeneye/paw.svg"
  18512. }
  18513. },
  18514. },
  18515. [
  18516. {
  18517. name: "Normal",
  18518. height: math.unit(13 + 1 / 12, "feet"),
  18519. default: true
  18520. },
  18521. ]
  18522. ))
  18523. characterMakers.push(() => makeCharacter(
  18524. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18525. {
  18526. front: {
  18527. height: math.unit(6 + 1 / 12, "feet"),
  18528. weight: math.unit(210, "lb"),
  18529. name: "Front",
  18530. image: {
  18531. source: "./media/characters/leonardo-lycheborne/front.svg",
  18532. extra: 390 / 365,
  18533. bottom: 0.032
  18534. }
  18535. },
  18536. side: {
  18537. height: math.unit(6 + 1 / 12, "feet"),
  18538. weight: math.unit(210, "lb"),
  18539. name: "Side",
  18540. image: {
  18541. source: "./media/characters/leonardo-lycheborne/side.svg",
  18542. extra: 390 / 365,
  18543. bottom: 0.005
  18544. }
  18545. },
  18546. back: {
  18547. height: math.unit(6 + 1 / 12, "feet"),
  18548. weight: math.unit(210, "lb"),
  18549. name: "Back",
  18550. image: {
  18551. source: "./media/characters/leonardo-lycheborne/back.svg",
  18552. extra: 392 / 366,
  18553. bottom: 0.01
  18554. }
  18555. },
  18556. hand: {
  18557. height: math.unit(1.08, "feet"),
  18558. name: "Hand",
  18559. image: {
  18560. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18561. }
  18562. },
  18563. foot: {
  18564. height: math.unit(1.32, "feet"),
  18565. name: "Foot",
  18566. image: {
  18567. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18568. }
  18569. },
  18570. were: {
  18571. height: math.unit(20, "feet"),
  18572. weight: math.unit(7800, "lb"),
  18573. name: "Were",
  18574. image: {
  18575. source: "./media/characters/leonardo-lycheborne/were.svg",
  18576. extra: 308 / 294,
  18577. bottom: 0.048
  18578. }
  18579. },
  18580. feral: {
  18581. height: math.unit(7.5, "feet"),
  18582. weight: math.unit(600, "lb"),
  18583. name: "Feral",
  18584. image: {
  18585. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18586. extra: 210 / 186,
  18587. bottom: 0.108
  18588. }
  18589. },
  18590. taur: {
  18591. height: math.unit(11, "feet"),
  18592. weight: math.unit(3300, "lb"),
  18593. name: "Taur",
  18594. image: {
  18595. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18596. extra: 320 / 303,
  18597. bottom: 0.025
  18598. }
  18599. },
  18600. barghest: {
  18601. height: math.unit(11, "feet"),
  18602. weight: math.unit(1300, "lb"),
  18603. name: "Barghest",
  18604. image: {
  18605. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18606. extra: 323 / 302,
  18607. bottom: 0.027
  18608. }
  18609. },
  18610. dick: {
  18611. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18612. name: "Dick",
  18613. image: {
  18614. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18615. }
  18616. },
  18617. dickWere: {
  18618. height: math.unit((20) / 3.8, "feet"),
  18619. name: "Dick (Were)",
  18620. image: {
  18621. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18622. }
  18623. },
  18624. },
  18625. [
  18626. {
  18627. name: "Normal",
  18628. height: math.unit(6 + 1 / 12, "feet"),
  18629. default: true
  18630. },
  18631. ]
  18632. ))
  18633. characterMakers.push(() => makeCharacter(
  18634. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18635. {
  18636. front: {
  18637. height: math.unit(10, "feet"),
  18638. weight: math.unit(350, "lb"),
  18639. name: "Front",
  18640. image: {
  18641. source: "./media/characters/jet/front.svg",
  18642. extra: 2050 / 1980,
  18643. bottom: 0.013
  18644. }
  18645. },
  18646. back: {
  18647. height: math.unit(10, "feet"),
  18648. weight: math.unit(350, "lb"),
  18649. name: "Back",
  18650. image: {
  18651. source: "./media/characters/jet/back.svg",
  18652. extra: 2050 / 1980,
  18653. bottom: 0.013
  18654. }
  18655. },
  18656. },
  18657. [
  18658. {
  18659. name: "Micro",
  18660. height: math.unit(6, "inches")
  18661. },
  18662. {
  18663. name: "Normal",
  18664. height: math.unit(10, "feet"),
  18665. default: true
  18666. },
  18667. {
  18668. name: "Macro",
  18669. height: math.unit(100, "feet")
  18670. },
  18671. ]
  18672. ))
  18673. characterMakers.push(() => makeCharacter(
  18674. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18675. {
  18676. front: {
  18677. height: math.unit(15, "feet"),
  18678. weight: math.unit(2800, "lb"),
  18679. name: "Front",
  18680. image: {
  18681. source: "./media/characters/tanarath/front.svg",
  18682. extra: 2392 / 2220,
  18683. bottom: 0.03
  18684. }
  18685. },
  18686. back: {
  18687. height: math.unit(15, "feet"),
  18688. weight: math.unit(2800, "lb"),
  18689. name: "Back",
  18690. image: {
  18691. source: "./media/characters/tanarath/back.svg",
  18692. extra: 2392 / 2220,
  18693. bottom: 0.03
  18694. }
  18695. },
  18696. },
  18697. [
  18698. {
  18699. name: "Normal",
  18700. height: math.unit(15, "feet"),
  18701. default: true
  18702. },
  18703. ]
  18704. ))
  18705. characterMakers.push(() => makeCharacter(
  18706. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18707. {
  18708. front: {
  18709. height: math.unit(7 + 1 / 12, "feet"),
  18710. weight: math.unit(175, "lb"),
  18711. name: "Front",
  18712. image: {
  18713. source: "./media/characters/patty-cattybatty/front.svg",
  18714. extra: 908 / 874,
  18715. bottom: 0.025
  18716. }
  18717. },
  18718. },
  18719. [
  18720. {
  18721. name: "Micro",
  18722. height: math.unit(1, "inch")
  18723. },
  18724. {
  18725. name: "Normal",
  18726. height: math.unit(7 + 1 / 12, "feet")
  18727. },
  18728. {
  18729. name: "Mini Macro",
  18730. height: math.unit(155, "feet")
  18731. },
  18732. {
  18733. name: "Macro",
  18734. height: math.unit(1077, "feet")
  18735. },
  18736. {
  18737. name: "Mega Macro",
  18738. height: math.unit(47650, "feet"),
  18739. default: true
  18740. },
  18741. {
  18742. name: "Giga Macro",
  18743. height: math.unit(440, "miles")
  18744. },
  18745. {
  18746. name: "Tera Macro",
  18747. height: math.unit(8700, "miles")
  18748. },
  18749. {
  18750. name: "Planetary Macro",
  18751. height: math.unit(32700, "miles")
  18752. },
  18753. {
  18754. name: "Solar Macro",
  18755. height: math.unit(550000, "miles")
  18756. },
  18757. {
  18758. name: "Celestial Macro",
  18759. height: math.unit(2.5, "AU")
  18760. },
  18761. ]
  18762. ))
  18763. characterMakers.push(() => makeCharacter(
  18764. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18765. {
  18766. front: {
  18767. height: math.unit(4 + 5 / 12, "feet"),
  18768. weight: math.unit(90, "lb"),
  18769. name: "Front",
  18770. image: {
  18771. source: "./media/characters/cappu/front.svg",
  18772. extra: 1247 / 1152,
  18773. bottom: 0.012
  18774. }
  18775. },
  18776. },
  18777. [
  18778. {
  18779. name: "Normal",
  18780. height: math.unit(4 + 5 / 12, "feet"),
  18781. default: true
  18782. },
  18783. ]
  18784. ))
  18785. characterMakers.push(() => makeCharacter(
  18786. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18787. {
  18788. frontDressed: {
  18789. height: math.unit(70, "cm"),
  18790. weight: math.unit(6, "kg"),
  18791. name: "Front (Dressed)",
  18792. image: {
  18793. source: "./media/characters/sebi/front-dressed.svg",
  18794. extra: 713.5 / 686.5,
  18795. bottom: 0.003
  18796. }
  18797. },
  18798. front: {
  18799. height: math.unit(70, "cm"),
  18800. weight: math.unit(5, "kg"),
  18801. name: "Front",
  18802. image: {
  18803. source: "./media/characters/sebi/front.svg",
  18804. extra: 713.5 / 686.5,
  18805. bottom: 0.003
  18806. }
  18807. }
  18808. },
  18809. [
  18810. {
  18811. name: "Normal",
  18812. height: math.unit(70, "cm"),
  18813. default: true
  18814. },
  18815. {
  18816. name: "Macro",
  18817. height: math.unit(8, "meters")
  18818. },
  18819. ]
  18820. ))
  18821. characterMakers.push(() => makeCharacter(
  18822. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18823. {
  18824. front: {
  18825. height: math.unit(6, "feet"),
  18826. weight: math.unit(150, "lb"),
  18827. name: "Front",
  18828. image: {
  18829. source: "./media/characters/typhek/front.svg",
  18830. extra: 1948 / 1929,
  18831. bottom: 0.025
  18832. }
  18833. },
  18834. side: {
  18835. height: math.unit(6, "feet"),
  18836. weight: math.unit(150, "lb"),
  18837. name: "Side",
  18838. image: {
  18839. source: "./media/characters/typhek/side.svg",
  18840. extra: 2034 / 2010,
  18841. bottom: 0.003
  18842. }
  18843. },
  18844. back: {
  18845. height: math.unit(6, "feet"),
  18846. weight: math.unit(150, "lb"),
  18847. name: "Back",
  18848. image: {
  18849. source: "./media/characters/typhek/back.svg",
  18850. extra: 2005 / 1978,
  18851. bottom: 0.004
  18852. }
  18853. },
  18854. palm: {
  18855. height: math.unit(1.2, "feet"),
  18856. name: "Palm",
  18857. image: {
  18858. source: "./media/characters/typhek/palm.svg"
  18859. }
  18860. },
  18861. fist: {
  18862. height: math.unit(1.1, "feet"),
  18863. name: "Fist",
  18864. image: {
  18865. source: "./media/characters/typhek/fist.svg"
  18866. }
  18867. },
  18868. foot: {
  18869. height: math.unit(1.57, "feet"),
  18870. name: "Foot",
  18871. image: {
  18872. source: "./media/characters/typhek/foot.svg"
  18873. }
  18874. },
  18875. sole: {
  18876. height: math.unit(2.05, "feet"),
  18877. name: "Sole",
  18878. image: {
  18879. source: "./media/characters/typhek/sole.svg"
  18880. }
  18881. },
  18882. },
  18883. [
  18884. {
  18885. name: "Macro",
  18886. height: math.unit(40, "stories"),
  18887. default: true
  18888. },
  18889. {
  18890. name: "Megamacro",
  18891. height: math.unit(1, "mile")
  18892. },
  18893. {
  18894. name: "Gigamacro",
  18895. height: math.unit(4000, "solarradii")
  18896. },
  18897. {
  18898. name: "Universal",
  18899. height: math.unit(1.1, "universes")
  18900. }
  18901. ]
  18902. ))
  18903. characterMakers.push(() => makeCharacter(
  18904. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18905. {
  18906. side: {
  18907. height: math.unit(5 + 7 / 12, "feet"),
  18908. weight: math.unit(150, "lb"),
  18909. name: "Side",
  18910. image: {
  18911. source: "./media/characters/kassy/side.svg",
  18912. extra: 1280 / 1225,
  18913. bottom: 0.002
  18914. }
  18915. },
  18916. front: {
  18917. height: math.unit(5 + 7 / 12, "feet"),
  18918. weight: math.unit(150, "lb"),
  18919. name: "Front",
  18920. image: {
  18921. source: "./media/characters/kassy/front.svg",
  18922. extra: 1280 / 1225,
  18923. bottom: 0.025
  18924. }
  18925. },
  18926. back: {
  18927. height: math.unit(5 + 7 / 12, "feet"),
  18928. weight: math.unit(150, "lb"),
  18929. name: "Back",
  18930. image: {
  18931. source: "./media/characters/kassy/back.svg",
  18932. extra: 1280 / 1225,
  18933. bottom: 0.002
  18934. }
  18935. },
  18936. foot: {
  18937. height: math.unit(1.266, "feet"),
  18938. name: "Foot",
  18939. image: {
  18940. source: "./media/characters/kassy/foot.svg"
  18941. }
  18942. },
  18943. },
  18944. [
  18945. {
  18946. name: "Normal",
  18947. height: math.unit(5 + 7 / 12, "feet")
  18948. },
  18949. {
  18950. name: "Macro",
  18951. height: math.unit(137, "feet"),
  18952. default: true
  18953. },
  18954. {
  18955. name: "Megamacro",
  18956. height: math.unit(1, "mile")
  18957. },
  18958. ]
  18959. ))
  18960. characterMakers.push(() => makeCharacter(
  18961. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18962. {
  18963. front: {
  18964. height: math.unit(6 + 1 / 12, "feet"),
  18965. weight: math.unit(200, "lb"),
  18966. name: "Front",
  18967. image: {
  18968. source: "./media/characters/neil/front.svg",
  18969. extra: 1326 / 1250,
  18970. bottom: 0.023
  18971. }
  18972. },
  18973. },
  18974. [
  18975. {
  18976. name: "Normal",
  18977. height: math.unit(6 + 1 / 12, "feet"),
  18978. default: true
  18979. },
  18980. {
  18981. name: "Macro",
  18982. height: math.unit(200, "feet")
  18983. },
  18984. ]
  18985. ))
  18986. characterMakers.push(() => makeCharacter(
  18987. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18988. {
  18989. front: {
  18990. height: math.unit(5 + 9 / 12, "feet"),
  18991. weight: math.unit(190, "lb"),
  18992. name: "Front",
  18993. image: {
  18994. source: "./media/characters/atticus/front.svg",
  18995. extra: 2934 / 2785,
  18996. bottom: 0.025
  18997. }
  18998. },
  18999. },
  19000. [
  19001. {
  19002. name: "Normal",
  19003. height: math.unit(5 + 9 / 12, "feet"),
  19004. default: true
  19005. },
  19006. {
  19007. name: "Macro",
  19008. height: math.unit(180, "feet")
  19009. },
  19010. ]
  19011. ))
  19012. characterMakers.push(() => makeCharacter(
  19013. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19014. {
  19015. side: {
  19016. height: math.unit(9, "feet"),
  19017. weight: math.unit(650, "lb"),
  19018. name: "Side",
  19019. image: {
  19020. source: "./media/characters/milo/side.svg",
  19021. extra: 2644 / 2310,
  19022. bottom: 0.032
  19023. }
  19024. },
  19025. },
  19026. [
  19027. {
  19028. name: "Normal",
  19029. height: math.unit(9, "feet"),
  19030. default: true
  19031. },
  19032. {
  19033. name: "Macro",
  19034. height: math.unit(300, "feet")
  19035. },
  19036. ]
  19037. ))
  19038. characterMakers.push(() => makeCharacter(
  19039. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19040. {
  19041. side: {
  19042. height: math.unit(8, "meters"),
  19043. weight: math.unit(90000, "kg"),
  19044. name: "Side",
  19045. image: {
  19046. source: "./media/characters/ijzer/side.svg",
  19047. extra: 2756 / 1600,
  19048. bottom: 0.01
  19049. }
  19050. },
  19051. },
  19052. [
  19053. {
  19054. name: "Small",
  19055. height: math.unit(3, "meters")
  19056. },
  19057. {
  19058. name: "Normal",
  19059. height: math.unit(8, "meters"),
  19060. default: true
  19061. },
  19062. {
  19063. name: "Normal+",
  19064. height: math.unit(10, "meters")
  19065. },
  19066. {
  19067. name: "Bigger",
  19068. height: math.unit(24, "meters")
  19069. },
  19070. {
  19071. name: "Huge",
  19072. height: math.unit(80, "meters")
  19073. },
  19074. ]
  19075. ))
  19076. characterMakers.push(() => makeCharacter(
  19077. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19078. {
  19079. front: {
  19080. height: math.unit(6 + 2 / 12, "feet"),
  19081. weight: math.unit(153, "lb"),
  19082. name: "Front",
  19083. image: {
  19084. source: "./media/characters/luca-cervicum/front.svg",
  19085. extra: 370 / 327,
  19086. bottom: 0.015
  19087. }
  19088. },
  19089. back: {
  19090. height: math.unit(6 + 2 / 12, "feet"),
  19091. weight: math.unit(153, "lb"),
  19092. name: "Back",
  19093. image: {
  19094. source: "./media/characters/luca-cervicum/back.svg",
  19095. extra: 367 / 333,
  19096. bottom: 0.005
  19097. }
  19098. },
  19099. frontGear: {
  19100. height: math.unit(6 + 2 / 12, "feet"),
  19101. weight: math.unit(173, "lb"),
  19102. name: "Front (Gear)",
  19103. image: {
  19104. source: "./media/characters/luca-cervicum/front-gear.svg",
  19105. extra: 377 / 333,
  19106. bottom: 0.006
  19107. }
  19108. },
  19109. },
  19110. [
  19111. {
  19112. name: "Normal",
  19113. height: math.unit(6 + 2 / 12, "feet"),
  19114. default: true
  19115. },
  19116. ]
  19117. ))
  19118. characterMakers.push(() => makeCharacter(
  19119. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19120. {
  19121. front: {
  19122. height: math.unit(6 + 1 / 12, "feet"),
  19123. weight: math.unit(304, "lb"),
  19124. name: "Front",
  19125. image: {
  19126. source: "./media/characters/oliver/front.svg",
  19127. extra: 157 / 143,
  19128. bottom: 0.08
  19129. }
  19130. },
  19131. },
  19132. [
  19133. {
  19134. name: "Normal",
  19135. height: math.unit(6 + 1 / 12, "feet"),
  19136. default: true
  19137. },
  19138. ]
  19139. ))
  19140. characterMakers.push(() => makeCharacter(
  19141. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19142. {
  19143. front: {
  19144. height: math.unit(5 + 7 / 12, "feet"),
  19145. weight: math.unit(140, "lb"),
  19146. name: "Front",
  19147. image: {
  19148. source: "./media/characters/shane/front.svg",
  19149. extra: 304 / 289,
  19150. bottom: 0.005
  19151. }
  19152. },
  19153. },
  19154. [
  19155. {
  19156. name: "Normal",
  19157. height: math.unit(5 + 7 / 12, "feet"),
  19158. default: true
  19159. },
  19160. ]
  19161. ))
  19162. characterMakers.push(() => makeCharacter(
  19163. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19164. {
  19165. front: {
  19166. height: math.unit(5 + 9 / 12, "feet"),
  19167. weight: math.unit(178, "lb"),
  19168. name: "Front",
  19169. image: {
  19170. source: "./media/characters/shin/front.svg",
  19171. extra: 159 / 151,
  19172. bottom: 0.015
  19173. }
  19174. },
  19175. },
  19176. [
  19177. {
  19178. name: "Normal",
  19179. height: math.unit(5 + 9 / 12, "feet"),
  19180. default: true
  19181. },
  19182. ]
  19183. ))
  19184. characterMakers.push(() => makeCharacter(
  19185. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19186. {
  19187. front: {
  19188. height: math.unit(5 + 10 / 12, "feet"),
  19189. weight: math.unit(168, "lb"),
  19190. name: "Front",
  19191. image: {
  19192. source: "./media/characters/xerxes/front.svg",
  19193. extra: 282 / 260,
  19194. bottom: 0.045
  19195. }
  19196. },
  19197. },
  19198. [
  19199. {
  19200. name: "Normal",
  19201. height: math.unit(5 + 10 / 12, "feet"),
  19202. default: true
  19203. },
  19204. ]
  19205. ))
  19206. characterMakers.push(() => makeCharacter(
  19207. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19208. {
  19209. front: {
  19210. height: math.unit(6 + 7 / 12, "feet"),
  19211. weight: math.unit(208, "lb"),
  19212. name: "Front",
  19213. image: {
  19214. source: "./media/characters/chaska/front.svg",
  19215. extra: 332 / 319,
  19216. bottom: 0.015
  19217. }
  19218. },
  19219. },
  19220. [
  19221. {
  19222. name: "Normal",
  19223. height: math.unit(6 + 7 / 12, "feet"),
  19224. default: true
  19225. },
  19226. ]
  19227. ))
  19228. characterMakers.push(() => makeCharacter(
  19229. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19230. {
  19231. front: {
  19232. height: math.unit(5 + 8 / 12, "feet"),
  19233. weight: math.unit(208, "lb"),
  19234. name: "Front",
  19235. image: {
  19236. source: "./media/characters/enuk/front.svg",
  19237. extra: 437 / 406,
  19238. bottom: 0.02
  19239. }
  19240. },
  19241. },
  19242. [
  19243. {
  19244. name: "Normal",
  19245. height: math.unit(5 + 8 / 12, "feet"),
  19246. default: true
  19247. },
  19248. ]
  19249. ))
  19250. characterMakers.push(() => makeCharacter(
  19251. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19252. {
  19253. front: {
  19254. height: math.unit(5 + 10 / 12, "feet"),
  19255. weight: math.unit(252, "lb"),
  19256. name: "Front",
  19257. image: {
  19258. source: "./media/characters/bruun/front.svg",
  19259. extra: 197 / 187,
  19260. bottom: 0.012
  19261. }
  19262. },
  19263. },
  19264. [
  19265. {
  19266. name: "Normal",
  19267. height: math.unit(5 + 10 / 12, "feet"),
  19268. default: true
  19269. },
  19270. ]
  19271. ))
  19272. characterMakers.push(() => makeCharacter(
  19273. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19274. {
  19275. front: {
  19276. height: math.unit(6 + 10 / 12, "feet"),
  19277. weight: math.unit(255, "lb"),
  19278. name: "Front",
  19279. image: {
  19280. source: "./media/characters/alexeev/front.svg",
  19281. extra: 213 / 200,
  19282. bottom: 0.05
  19283. }
  19284. },
  19285. },
  19286. [
  19287. {
  19288. name: "Normal",
  19289. height: math.unit(6 + 10 / 12, "feet"),
  19290. default: true
  19291. },
  19292. ]
  19293. ))
  19294. characterMakers.push(() => makeCharacter(
  19295. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19296. {
  19297. front: {
  19298. height: math.unit(2 + 8 / 12, "feet"),
  19299. weight: math.unit(22, "lb"),
  19300. name: "Front",
  19301. image: {
  19302. source: "./media/characters/evelyn/front.svg",
  19303. extra: 208 / 180
  19304. }
  19305. },
  19306. },
  19307. [
  19308. {
  19309. name: "Normal",
  19310. height: math.unit(2 + 8 / 12, "feet"),
  19311. default: true
  19312. },
  19313. ]
  19314. ))
  19315. characterMakers.push(() => makeCharacter(
  19316. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19317. {
  19318. front: {
  19319. height: math.unit(5 + 9 / 12, "feet"),
  19320. weight: math.unit(139, "lb"),
  19321. name: "Front",
  19322. image: {
  19323. source: "./media/characters/inca/front.svg",
  19324. extra: 294 / 291,
  19325. bottom: 0.03
  19326. }
  19327. },
  19328. },
  19329. [
  19330. {
  19331. name: "Normal",
  19332. height: math.unit(5 + 9 / 12, "feet"),
  19333. default: true
  19334. },
  19335. ]
  19336. ))
  19337. characterMakers.push(() => makeCharacter(
  19338. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19339. {
  19340. front: {
  19341. height: math.unit(5 + 1 / 12, "feet"),
  19342. weight: math.unit(84, "lb"),
  19343. name: "Front",
  19344. image: {
  19345. source: "./media/characters/magdalene/front.svg",
  19346. extra: 293 / 273
  19347. }
  19348. },
  19349. },
  19350. [
  19351. {
  19352. name: "Normal",
  19353. height: math.unit(5 + 1 / 12, "feet"),
  19354. default: true
  19355. },
  19356. ]
  19357. ))
  19358. characterMakers.push(() => makeCharacter(
  19359. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19360. {
  19361. front: {
  19362. height: math.unit(6 + 3 / 12, "feet"),
  19363. weight: math.unit(185, "lb"),
  19364. name: "Front",
  19365. image: {
  19366. source: "./media/characters/mera/front.svg",
  19367. extra: 291 / 277,
  19368. bottom: 0.03
  19369. }
  19370. },
  19371. },
  19372. [
  19373. {
  19374. name: "Normal",
  19375. height: math.unit(6 + 3 / 12, "feet"),
  19376. default: true
  19377. },
  19378. ]
  19379. ))
  19380. characterMakers.push(() => makeCharacter(
  19381. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19382. {
  19383. front: {
  19384. height: math.unit(6 + 7 / 12, "feet"),
  19385. weight: math.unit(160, "lb"),
  19386. name: "Front",
  19387. image: {
  19388. source: "./media/characters/ceres/front.svg",
  19389. extra: 1023 / 950,
  19390. bottom: 0.027
  19391. }
  19392. },
  19393. back: {
  19394. height: math.unit(6 + 7 / 12, "feet"),
  19395. weight: math.unit(160, "lb"),
  19396. name: "Back",
  19397. image: {
  19398. source: "./media/characters/ceres/back.svg",
  19399. extra: 1023 / 950
  19400. }
  19401. },
  19402. },
  19403. [
  19404. {
  19405. name: "Normal",
  19406. height: math.unit(6 + 7 / 12, "feet"),
  19407. default: true
  19408. },
  19409. ]
  19410. ))
  19411. characterMakers.push(() => makeCharacter(
  19412. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19413. {
  19414. front: {
  19415. height: math.unit(5 + 10 / 12, "feet"),
  19416. weight: math.unit(150, "lb"),
  19417. name: "Front",
  19418. image: {
  19419. source: "./media/characters/kris/front.svg",
  19420. extra: 885 / 803,
  19421. bottom: 0.03
  19422. }
  19423. },
  19424. },
  19425. [
  19426. {
  19427. name: "Normal",
  19428. height: math.unit(5 + 10 / 12, "feet"),
  19429. default: true
  19430. },
  19431. ]
  19432. ))
  19433. characterMakers.push(() => makeCharacter(
  19434. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19435. {
  19436. front: {
  19437. height: math.unit(7, "feet"),
  19438. weight: math.unit(120, "kg"),
  19439. name: "Front",
  19440. image: {
  19441. source: "./media/characters/taluthus/front.svg",
  19442. extra: 903 / 833,
  19443. bottom: 0.015
  19444. }
  19445. },
  19446. },
  19447. [
  19448. {
  19449. name: "Normal",
  19450. height: math.unit(7, "feet"),
  19451. default: true
  19452. },
  19453. {
  19454. name: "Macro",
  19455. height: math.unit(300, "feet")
  19456. },
  19457. ]
  19458. ))
  19459. characterMakers.push(() => makeCharacter(
  19460. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19461. {
  19462. front: {
  19463. height: math.unit(5 + 9 / 12, "feet"),
  19464. weight: math.unit(145, "lb"),
  19465. name: "Front",
  19466. image: {
  19467. source: "./media/characters/dawn/front.svg",
  19468. extra: 2094 / 2016,
  19469. bottom: 0.025
  19470. }
  19471. },
  19472. back: {
  19473. height: math.unit(5 + 9 / 12, "feet"),
  19474. weight: math.unit(160, "lb"),
  19475. name: "Back",
  19476. image: {
  19477. source: "./media/characters/dawn/back.svg",
  19478. extra: 2112 / 2080,
  19479. bottom: 0.005
  19480. }
  19481. },
  19482. },
  19483. [
  19484. {
  19485. name: "Normal",
  19486. height: math.unit(6 + 7 / 12, "feet"),
  19487. default: true
  19488. },
  19489. ]
  19490. ))
  19491. characterMakers.push(() => makeCharacter(
  19492. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19493. {
  19494. anthro: {
  19495. height: math.unit(8 + 3 / 12, "feet"),
  19496. weight: math.unit(450, "lb"),
  19497. name: "Anthro",
  19498. image: {
  19499. source: "./media/characters/arador/anthro.svg",
  19500. extra: 1835 / 1718,
  19501. bottom: 0.025
  19502. }
  19503. },
  19504. feral: {
  19505. height: math.unit(4, "feet"),
  19506. weight: math.unit(200, "lb"),
  19507. name: "Feral",
  19508. image: {
  19509. source: "./media/characters/arador/feral.svg",
  19510. extra: 1683 / 1514,
  19511. bottom: 0.07
  19512. }
  19513. },
  19514. },
  19515. [
  19516. {
  19517. name: "Normal",
  19518. height: math.unit(8 + 3 / 12, "feet")
  19519. },
  19520. {
  19521. name: "Macro",
  19522. height: math.unit(82.5, "feet"),
  19523. default: true
  19524. },
  19525. ]
  19526. ))
  19527. characterMakers.push(() => makeCharacter(
  19528. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19529. {
  19530. front: {
  19531. height: math.unit(5 + 10 / 12, "feet"),
  19532. weight: math.unit(125, "lb"),
  19533. name: "Front",
  19534. image: {
  19535. source: "./media/characters/dharsi/front.svg",
  19536. extra: 716 / 630,
  19537. bottom: 0.035
  19538. }
  19539. },
  19540. },
  19541. [
  19542. {
  19543. name: "Nano",
  19544. height: math.unit(100, "nm")
  19545. },
  19546. {
  19547. name: "Micro",
  19548. height: math.unit(2, "inches")
  19549. },
  19550. {
  19551. name: "Normal",
  19552. height: math.unit(5 + 10 / 12, "feet"),
  19553. default: true
  19554. },
  19555. {
  19556. name: "Macro",
  19557. height: math.unit(1000, "feet")
  19558. },
  19559. {
  19560. name: "Megamacro",
  19561. height: math.unit(10, "miles")
  19562. },
  19563. {
  19564. name: "Gigamacro",
  19565. height: math.unit(3000, "miles")
  19566. },
  19567. {
  19568. name: "Teramacro",
  19569. height: math.unit(500000, "miles")
  19570. },
  19571. {
  19572. name: "Teramacro+",
  19573. height: math.unit(30, "galaxies")
  19574. },
  19575. ]
  19576. ))
  19577. characterMakers.push(() => makeCharacter(
  19578. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19579. {
  19580. front: {
  19581. height: math.unit(6, "feet"),
  19582. weight: math.unit(150, "lb"),
  19583. name: "Front",
  19584. image: {
  19585. source: "./media/characters/deathy/front.svg",
  19586. extra: 1552 / 1463,
  19587. bottom: 0.025
  19588. }
  19589. },
  19590. side: {
  19591. height: math.unit(6, "feet"),
  19592. weight: math.unit(150, "lb"),
  19593. name: "Side",
  19594. image: {
  19595. source: "./media/characters/deathy/side.svg",
  19596. extra: 1604 / 1455,
  19597. bottom: 0.025
  19598. }
  19599. },
  19600. back: {
  19601. height: math.unit(6, "feet"),
  19602. weight: math.unit(150, "lb"),
  19603. name: "Back",
  19604. image: {
  19605. source: "./media/characters/deathy/back.svg",
  19606. extra: 1580 / 1463,
  19607. bottom: 0.005
  19608. }
  19609. },
  19610. },
  19611. [
  19612. {
  19613. name: "Micro",
  19614. height: math.unit(5, "millimeters")
  19615. },
  19616. {
  19617. name: "Normal",
  19618. height: math.unit(6 + 5 / 12, "feet"),
  19619. default: true
  19620. },
  19621. ]
  19622. ))
  19623. characterMakers.push(() => makeCharacter(
  19624. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19625. {
  19626. front: {
  19627. height: math.unit(16, "feet"),
  19628. weight: math.unit(4000, "lb"),
  19629. name: "Front",
  19630. image: {
  19631. source: "./media/characters/juniper/front.svg",
  19632. bottom: 0.04
  19633. }
  19634. },
  19635. },
  19636. [
  19637. {
  19638. name: "Normal",
  19639. height: math.unit(16, "feet"),
  19640. default: true
  19641. },
  19642. ]
  19643. ))
  19644. characterMakers.push(() => makeCharacter(
  19645. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19646. {
  19647. front: {
  19648. height: math.unit(6, "feet"),
  19649. weight: math.unit(150, "lb"),
  19650. name: "Front",
  19651. image: {
  19652. source: "./media/characters/hipster/front.svg",
  19653. extra: 1312 / 1209,
  19654. bottom: 0.025
  19655. }
  19656. },
  19657. back: {
  19658. height: math.unit(6, "feet"),
  19659. weight: math.unit(150, "lb"),
  19660. name: "Back",
  19661. image: {
  19662. source: "./media/characters/hipster/back.svg",
  19663. extra: 1281 / 1196,
  19664. bottom: 0.01
  19665. }
  19666. },
  19667. },
  19668. [
  19669. {
  19670. name: "Micro",
  19671. height: math.unit(1, "mm")
  19672. },
  19673. {
  19674. name: "Normal",
  19675. height: math.unit(4, "inches"),
  19676. default: true
  19677. },
  19678. {
  19679. name: "Macro",
  19680. height: math.unit(500, "feet")
  19681. },
  19682. {
  19683. name: "Megamacro",
  19684. height: math.unit(1000, "miles")
  19685. },
  19686. ]
  19687. ))
  19688. characterMakers.push(() => makeCharacter(
  19689. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19690. {
  19691. front: {
  19692. height: math.unit(6, "feet"),
  19693. weight: math.unit(150, "lb"),
  19694. name: "Front",
  19695. image: {
  19696. source: "./media/characters/tendirmuldr/front.svg",
  19697. extra: 1878 / 1772,
  19698. bottom: 0.015
  19699. }
  19700. },
  19701. },
  19702. [
  19703. {
  19704. name: "Megamacro",
  19705. height: math.unit(1500, "miles"),
  19706. default: true
  19707. },
  19708. ]
  19709. ))
  19710. characterMakers.push(() => makeCharacter(
  19711. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19712. {
  19713. front: {
  19714. height: math.unit(14, "feet"),
  19715. weight: math.unit(12000, "lb"),
  19716. name: "Front",
  19717. image: {
  19718. source: "./media/characters/mort/front.svg",
  19719. extra: 365 / 318,
  19720. bottom: 0.01
  19721. }
  19722. },
  19723. side: {
  19724. height: math.unit(14, "feet"),
  19725. weight: math.unit(12000, "lb"),
  19726. name: "Side",
  19727. image: {
  19728. source: "./media/characters/mort/side.svg",
  19729. extra: 365 / 318,
  19730. bottom: 0.052
  19731. },
  19732. default: true
  19733. },
  19734. back: {
  19735. height: math.unit(14, "feet"),
  19736. weight: math.unit(12000, "lb"),
  19737. name: "Back",
  19738. image: {
  19739. source: "./media/characters/mort/back.svg",
  19740. extra: 371 / 332,
  19741. bottom: 0.18
  19742. }
  19743. },
  19744. },
  19745. [
  19746. {
  19747. name: "Normal",
  19748. height: math.unit(14, "feet"),
  19749. default: true
  19750. },
  19751. ]
  19752. ))
  19753. characterMakers.push(() => makeCharacter(
  19754. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19755. {
  19756. front: {
  19757. height: math.unit(8, "feet"),
  19758. weight: math.unit(1, "ton"),
  19759. name: "Front",
  19760. image: {
  19761. source: "./media/characters/lycoa/front.svg",
  19762. extra: 1875 / 1789,
  19763. bottom: 0.022
  19764. }
  19765. },
  19766. back: {
  19767. height: math.unit(8, "feet"),
  19768. weight: math.unit(1, "ton"),
  19769. name: "Back",
  19770. image: {
  19771. source: "./media/characters/lycoa/back.svg",
  19772. extra: 1835 / 1781,
  19773. bottom: 0.03
  19774. }
  19775. },
  19776. head: {
  19777. height: math.unit(2.1, "feet"),
  19778. name: "Head",
  19779. image: {
  19780. source: "./media/characters/lycoa/head.svg"
  19781. }
  19782. },
  19783. tailmaw: {
  19784. height: math.unit(1.9, "feet"),
  19785. name: "Tailmaw",
  19786. image: {
  19787. source: "./media/characters/lycoa/tailmaw.svg"
  19788. }
  19789. },
  19790. tentacles: {
  19791. height: math.unit(2.1, "feet"),
  19792. name: "Tentacles",
  19793. image: {
  19794. source: "./media/characters/lycoa/tentacles.svg"
  19795. }
  19796. },
  19797. dick: {
  19798. height: math.unit(1.73, "feet"),
  19799. name: "Dick",
  19800. image: {
  19801. source: "./media/characters/lycoa/dick.svg"
  19802. }
  19803. },
  19804. },
  19805. [
  19806. {
  19807. name: "Normal",
  19808. height: math.unit(8, "feet"),
  19809. default: true
  19810. },
  19811. {
  19812. name: "Macro",
  19813. height: math.unit(30, "feet")
  19814. },
  19815. ]
  19816. ))
  19817. characterMakers.push(() => makeCharacter(
  19818. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19819. {
  19820. front: {
  19821. height: math.unit(4 + 2 / 12, "feet"),
  19822. weight: math.unit(70, "lb"),
  19823. name: "Front",
  19824. image: {
  19825. source: "./media/characters/naldara/front.svg",
  19826. extra: 841 / 720,
  19827. bottom: 0.04
  19828. }
  19829. },
  19830. naga: {
  19831. height: math.unit(23, "feet"),
  19832. weight: math.unit(15000, "kg"),
  19833. name: "Naga",
  19834. image: {
  19835. source: "./media/characters/naldara/naga.svg",
  19836. extra: 3290 / 2959,
  19837. bottom: 124 / 3432
  19838. }
  19839. },
  19840. },
  19841. [
  19842. {
  19843. name: "Normal",
  19844. height: math.unit(4 + 2 / 12, "feet"),
  19845. default: true
  19846. },
  19847. ]
  19848. ))
  19849. characterMakers.push(() => makeCharacter(
  19850. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19851. {
  19852. front: {
  19853. height: math.unit(13 + 7 / 12, "feet"),
  19854. weight: math.unit(1500, "lb"),
  19855. name: "Front",
  19856. image: {
  19857. source: "./media/characters/briar/front.svg",
  19858. extra: 626 / 596,
  19859. bottom: 0.08
  19860. }
  19861. },
  19862. },
  19863. [
  19864. {
  19865. name: "Normal",
  19866. height: math.unit(13 + 7 / 12, "feet"),
  19867. default: true
  19868. },
  19869. ]
  19870. ))
  19871. characterMakers.push(() => makeCharacter(
  19872. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19873. {
  19874. side: {
  19875. height: math.unit(10, "feet"),
  19876. weight: math.unit(500, "lb"),
  19877. name: "Side",
  19878. image: {
  19879. source: "./media/characters/vanguard/side.svg",
  19880. extra: 502 / 425,
  19881. bottom: 0.087
  19882. }
  19883. },
  19884. },
  19885. [
  19886. {
  19887. name: "Normal",
  19888. height: math.unit(10, "feet"),
  19889. default: true
  19890. },
  19891. ]
  19892. ))
  19893. characterMakers.push(() => makeCharacter(
  19894. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19895. {
  19896. front: {
  19897. height: math.unit(7.5, "feet"),
  19898. weight: math.unit(2, "lb"),
  19899. name: "Front",
  19900. image: {
  19901. source: "./media/characters/artemis/front.svg",
  19902. extra: 1192 / 1075,
  19903. bottom: 0.07
  19904. }
  19905. },
  19906. frontNsfw: {
  19907. height: math.unit(7.5, "feet"),
  19908. weight: math.unit(2, "lb"),
  19909. name: "Front (NSFW)",
  19910. image: {
  19911. source: "./media/characters/artemis/front-nsfw.svg",
  19912. extra: 1192 / 1075,
  19913. bottom: 0.07
  19914. }
  19915. },
  19916. frontNsfwer: {
  19917. height: math.unit(7.5, "feet"),
  19918. weight: math.unit(2, "lb"),
  19919. name: "Front (NSFW-er)",
  19920. image: {
  19921. source: "./media/characters/artemis/front-nsfwer.svg",
  19922. extra: 1192 / 1075,
  19923. bottom: 0.07
  19924. }
  19925. },
  19926. side: {
  19927. height: math.unit(7.5, "feet"),
  19928. weight: math.unit(2, "lb"),
  19929. name: "Side",
  19930. image: {
  19931. source: "./media/characters/artemis/side.svg",
  19932. extra: 1192 / 1075,
  19933. bottom: 0.07
  19934. }
  19935. },
  19936. sideNsfw: {
  19937. height: math.unit(7.5, "feet"),
  19938. weight: math.unit(2, "lb"),
  19939. name: "Side (NSFW)",
  19940. image: {
  19941. source: "./media/characters/artemis/side-nsfw.svg",
  19942. extra: 1192 / 1075,
  19943. bottom: 0.07
  19944. }
  19945. },
  19946. sideNsfwer: {
  19947. height: math.unit(7.5, "feet"),
  19948. weight: math.unit(2, "lb"),
  19949. name: "Side (NSFW-er)",
  19950. image: {
  19951. source: "./media/characters/artemis/side-nsfwer.svg",
  19952. extra: 1192 / 1075,
  19953. bottom: 0.07
  19954. }
  19955. },
  19956. maw: {
  19957. height: math.unit(1.1, "feet"),
  19958. name: "Maw",
  19959. image: {
  19960. source: "./media/characters/artemis/maw.svg"
  19961. }
  19962. },
  19963. stomach: {
  19964. height: math.unit(0.95, "feet"),
  19965. name: "Stomach",
  19966. image: {
  19967. source: "./media/characters/artemis/stomach.svg"
  19968. }
  19969. },
  19970. dickCanine: {
  19971. height: math.unit(1, "feet"),
  19972. name: "Dick (Canine)",
  19973. image: {
  19974. source: "./media/characters/artemis/dick-canine.svg"
  19975. }
  19976. },
  19977. dickEquine: {
  19978. height: math.unit(0.85, "feet"),
  19979. name: "Dick (Equine)",
  19980. image: {
  19981. source: "./media/characters/artemis/dick-equine.svg"
  19982. }
  19983. },
  19984. dickExotic: {
  19985. height: math.unit(0.85, "feet"),
  19986. name: "Dick (Exotic)",
  19987. image: {
  19988. source: "./media/characters/artemis/dick-exotic.svg"
  19989. }
  19990. },
  19991. },
  19992. [
  19993. {
  19994. name: "Normal",
  19995. height: math.unit(7.5, "feet"),
  19996. default: true
  19997. },
  19998. {
  19999. name: "Enlarged",
  20000. height: math.unit(12, "feet")
  20001. },
  20002. ]
  20003. ))
  20004. characterMakers.push(() => makeCharacter(
  20005. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20006. {
  20007. front: {
  20008. height: math.unit(5 + 3 / 12, "feet"),
  20009. weight: math.unit(160, "lb"),
  20010. name: "Front",
  20011. image: {
  20012. source: "./media/characters/kira/front.svg",
  20013. extra: 906 / 786,
  20014. bottom: 0.01
  20015. }
  20016. },
  20017. back: {
  20018. height: math.unit(5 + 3 / 12, "feet"),
  20019. weight: math.unit(160, "lb"),
  20020. name: "Back",
  20021. image: {
  20022. source: "./media/characters/kira/back.svg",
  20023. extra: 882 / 757,
  20024. bottom: 0.005
  20025. }
  20026. },
  20027. frontDressed: {
  20028. height: math.unit(5 + 3 / 12, "feet"),
  20029. weight: math.unit(160, "lb"),
  20030. name: "Front (Dressed)",
  20031. image: {
  20032. source: "./media/characters/kira/front-dressed.svg",
  20033. extra: 906 / 786,
  20034. bottom: 0.01
  20035. }
  20036. },
  20037. beans: {
  20038. height: math.unit(0.92, "feet"),
  20039. name: "Beans",
  20040. image: {
  20041. source: "./media/characters/kira/beans.svg"
  20042. }
  20043. },
  20044. },
  20045. [
  20046. {
  20047. name: "Normal",
  20048. height: math.unit(5 + 3 / 12, "feet"),
  20049. default: true
  20050. },
  20051. ]
  20052. ))
  20053. characterMakers.push(() => makeCharacter(
  20054. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20055. {
  20056. front: {
  20057. height: math.unit(5 + 4 / 12, "feet"),
  20058. weight: math.unit(145, "lb"),
  20059. name: "Front",
  20060. image: {
  20061. source: "./media/characters/scramble/front.svg",
  20062. extra: 763 / 727,
  20063. bottom: 0.05
  20064. }
  20065. },
  20066. back: {
  20067. height: math.unit(5 + 4 / 12, "feet"),
  20068. weight: math.unit(145, "lb"),
  20069. name: "Back",
  20070. image: {
  20071. source: "./media/characters/scramble/back.svg",
  20072. extra: 826 / 737,
  20073. bottom: 0.002
  20074. }
  20075. },
  20076. },
  20077. [
  20078. {
  20079. name: "Normal",
  20080. height: math.unit(5 + 4 / 12, "feet"),
  20081. default: true
  20082. },
  20083. ]
  20084. ))
  20085. characterMakers.push(() => makeCharacter(
  20086. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20087. {
  20088. side: {
  20089. height: math.unit(6 + 2 / 12, "feet"),
  20090. weight: math.unit(190, "lb"),
  20091. name: "Side",
  20092. image: {
  20093. source: "./media/characters/biscuit/side.svg",
  20094. extra: 858 / 791,
  20095. bottom: 0.044
  20096. }
  20097. },
  20098. },
  20099. [
  20100. {
  20101. name: "Normal",
  20102. height: math.unit(6 + 2 / 12, "feet"),
  20103. default: true
  20104. },
  20105. ]
  20106. ))
  20107. characterMakers.push(() => makeCharacter(
  20108. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20109. {
  20110. front: {
  20111. height: math.unit(5 + 2 / 12, "feet"),
  20112. weight: math.unit(120, "lb"),
  20113. name: "Front",
  20114. image: {
  20115. source: "./media/characters/poffin/front.svg",
  20116. extra: 786 / 680,
  20117. bottom: 0.005
  20118. }
  20119. },
  20120. },
  20121. [
  20122. {
  20123. name: "Normal",
  20124. height: math.unit(5 + 2 / 12, "feet"),
  20125. default: true
  20126. },
  20127. ]
  20128. ))
  20129. characterMakers.push(() => makeCharacter(
  20130. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20131. {
  20132. front: {
  20133. height: math.unit(6 + 3 / 12, "feet"),
  20134. weight: math.unit(519, "lb"),
  20135. name: "Front",
  20136. image: {
  20137. source: "./media/characters/dhari/front.svg",
  20138. extra: 1048 / 946,
  20139. bottom: 0.015
  20140. }
  20141. },
  20142. back: {
  20143. height: math.unit(6 + 3 / 12, "feet"),
  20144. weight: math.unit(519, "lb"),
  20145. name: "Back",
  20146. image: {
  20147. source: "./media/characters/dhari/back.svg",
  20148. extra: 1048 / 931,
  20149. bottom: 0.005
  20150. }
  20151. },
  20152. frontDressed: {
  20153. height: math.unit(6 + 3 / 12, "feet"),
  20154. weight: math.unit(519, "lb"),
  20155. name: "Front (Dressed)",
  20156. image: {
  20157. source: "./media/characters/dhari/front-dressed.svg",
  20158. extra: 1713 / 1546,
  20159. bottom: 0.02
  20160. }
  20161. },
  20162. backDressed: {
  20163. height: math.unit(6 + 3 / 12, "feet"),
  20164. weight: math.unit(519, "lb"),
  20165. name: "Back (Dressed)",
  20166. image: {
  20167. source: "./media/characters/dhari/back-dressed.svg",
  20168. extra: 1699 / 1537,
  20169. bottom: 0.01
  20170. }
  20171. },
  20172. maw: {
  20173. height: math.unit(0.95, "feet"),
  20174. name: "Maw",
  20175. image: {
  20176. source: "./media/characters/dhari/maw.svg"
  20177. }
  20178. },
  20179. wereFront: {
  20180. height: math.unit(12 + 8 / 12, "feet"),
  20181. weight: math.unit(4000, "lb"),
  20182. name: "Front (Were)",
  20183. image: {
  20184. source: "./media/characters/dhari/were-front.svg",
  20185. extra: 1065 / 969,
  20186. bottom: 0.015
  20187. }
  20188. },
  20189. wereBack: {
  20190. height: math.unit(12 + 8 / 12, "feet"),
  20191. weight: math.unit(4000, "lb"),
  20192. name: "Back (Were)",
  20193. image: {
  20194. source: "./media/characters/dhari/were-back.svg",
  20195. extra: 1065 / 969,
  20196. bottom: 0.012
  20197. }
  20198. },
  20199. wereMaw: {
  20200. height: math.unit(0.625, "meters"),
  20201. name: "Maw (Were)",
  20202. image: {
  20203. source: "./media/characters/dhari/were-maw.svg"
  20204. }
  20205. },
  20206. },
  20207. [
  20208. {
  20209. name: "Normal",
  20210. height: math.unit(6 + 3 / 12, "feet"),
  20211. default: true
  20212. },
  20213. ]
  20214. ))
  20215. characterMakers.push(() => makeCharacter(
  20216. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20217. {
  20218. anthro: {
  20219. height: math.unit(5 + 7 / 12, "feet"),
  20220. weight: math.unit(175, "lb"),
  20221. name: "Anthro",
  20222. image: {
  20223. source: "./media/characters/rena-dyne/anthro.svg",
  20224. extra: 1849 / 1785,
  20225. bottom: 0.005
  20226. }
  20227. },
  20228. taur: {
  20229. height: math.unit(15 + 6 / 12, "feet"),
  20230. weight: math.unit(8000, "lb"),
  20231. name: "Taur",
  20232. image: {
  20233. source: "./media/characters/rena-dyne/taur.svg",
  20234. extra: 2315 / 2234,
  20235. bottom: 0.033
  20236. }
  20237. },
  20238. },
  20239. [
  20240. {
  20241. name: "Normal",
  20242. height: math.unit(5 + 7 / 12, "feet"),
  20243. default: true
  20244. },
  20245. ]
  20246. ))
  20247. characterMakers.push(() => makeCharacter(
  20248. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20249. {
  20250. front: {
  20251. height: math.unit(8, "feet"),
  20252. weight: math.unit(600, "lb"),
  20253. name: "Front",
  20254. image: {
  20255. source: "./media/characters/weremeep/front.svg",
  20256. extra: 967 / 862,
  20257. bottom: 0.01
  20258. }
  20259. },
  20260. },
  20261. [
  20262. {
  20263. name: "Normal",
  20264. height: math.unit(8, "feet"),
  20265. default: true
  20266. },
  20267. {
  20268. name: "Lorg",
  20269. height: math.unit(12, "feet")
  20270. },
  20271. {
  20272. name: "Oh Lawd She Comin'",
  20273. height: math.unit(20, "feet")
  20274. },
  20275. ]
  20276. ))
  20277. characterMakers.push(() => makeCharacter(
  20278. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20279. {
  20280. front: {
  20281. height: math.unit(4, "feet"),
  20282. weight: math.unit(90, "lb"),
  20283. name: "Front",
  20284. image: {
  20285. source: "./media/characters/reza/front.svg",
  20286. extra: 1183 / 1111,
  20287. bottom: 0.017
  20288. }
  20289. },
  20290. back: {
  20291. height: math.unit(4, "feet"),
  20292. weight: math.unit(90, "lb"),
  20293. name: "Back",
  20294. image: {
  20295. source: "./media/characters/reza/back.svg",
  20296. extra: 1183 / 1111,
  20297. bottom: 0.01
  20298. }
  20299. },
  20300. drake: {
  20301. height: math.unit(30, "feet"),
  20302. weight: math.unit(246960, "lb"),
  20303. name: "Drake",
  20304. image: {
  20305. source: "./media/characters/reza/drake.svg",
  20306. extra: 2350 / 2024,
  20307. bottom: 60.7 / 2403
  20308. }
  20309. },
  20310. },
  20311. [
  20312. {
  20313. name: "Normal",
  20314. height: math.unit(4, "feet"),
  20315. default: true
  20316. },
  20317. ]
  20318. ))
  20319. characterMakers.push(() => makeCharacter(
  20320. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20321. {
  20322. side: {
  20323. height: math.unit(15, "feet"),
  20324. weight: math.unit(14, "tons"),
  20325. name: "Side",
  20326. image: {
  20327. source: "./media/characters/athea/side.svg",
  20328. extra: 960 / 540,
  20329. bottom: 0.003
  20330. }
  20331. },
  20332. sitting: {
  20333. height: math.unit(6 * 2.85, "feet"),
  20334. weight: math.unit(14, "tons"),
  20335. name: "Sitting",
  20336. image: {
  20337. source: "./media/characters/athea/sitting.svg",
  20338. extra: 621 / 581,
  20339. bottom: 0.075
  20340. }
  20341. },
  20342. maw: {
  20343. height: math.unit(7.59498031496063, "feet"),
  20344. name: "Maw",
  20345. image: {
  20346. source: "./media/characters/athea/maw.svg"
  20347. }
  20348. },
  20349. },
  20350. [
  20351. {
  20352. name: "Lap Cat",
  20353. height: math.unit(2.5, "feet")
  20354. },
  20355. {
  20356. name: "Minimacro",
  20357. height: math.unit(15, "feet"),
  20358. default: true
  20359. },
  20360. {
  20361. name: "Macro",
  20362. height: math.unit(120, "feet")
  20363. },
  20364. {
  20365. name: "Macro+",
  20366. height: math.unit(640, "feet")
  20367. },
  20368. {
  20369. name: "Colossus",
  20370. height: math.unit(2.2, "miles")
  20371. },
  20372. ]
  20373. ))
  20374. characterMakers.push(() => makeCharacter(
  20375. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20376. {
  20377. front: {
  20378. height: math.unit(8 + 8 / 12, "feet"),
  20379. weight: math.unit(130, "kg"),
  20380. name: "Front",
  20381. image: {
  20382. source: "./media/characters/seroko/front.svg",
  20383. extra: 1385 / 1280,
  20384. bottom: 0.025
  20385. }
  20386. },
  20387. back: {
  20388. height: math.unit(8 + 8 / 12, "feet"),
  20389. weight: math.unit(130, "kg"),
  20390. name: "Back",
  20391. image: {
  20392. source: "./media/characters/seroko/back.svg",
  20393. extra: 1369 / 1238,
  20394. bottom: 0.018
  20395. }
  20396. },
  20397. frontDressed: {
  20398. height: math.unit(8 + 8 / 12, "feet"),
  20399. weight: math.unit(130, "kg"),
  20400. name: "Front (Dressed)",
  20401. image: {
  20402. source: "./media/characters/seroko/front-dressed.svg",
  20403. extra: 1366 / 1275,
  20404. bottom: 0.03
  20405. }
  20406. },
  20407. },
  20408. [
  20409. {
  20410. name: "Normal",
  20411. height: math.unit(8 + 8 / 12, "feet"),
  20412. default: true
  20413. },
  20414. ]
  20415. ))
  20416. characterMakers.push(() => makeCharacter(
  20417. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20418. {
  20419. front: {
  20420. height: math.unit(5.5, "feet"),
  20421. weight: math.unit(160, "lb"),
  20422. name: "Front",
  20423. image: {
  20424. source: "./media/characters/quatzi/front.svg",
  20425. extra: 2346 / 2242,
  20426. bottom: 0.015
  20427. }
  20428. },
  20429. },
  20430. [
  20431. {
  20432. name: "Normal",
  20433. height: math.unit(5.5, "feet"),
  20434. default: true
  20435. },
  20436. {
  20437. name: "Big",
  20438. height: math.unit(7.7, "feet")
  20439. },
  20440. ]
  20441. ))
  20442. characterMakers.push(() => makeCharacter(
  20443. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20444. {
  20445. front: {
  20446. height: math.unit(5 + 11 / 12, "feet"),
  20447. weight: math.unit(180, "lb"),
  20448. name: "Front",
  20449. image: {
  20450. source: "./media/characters/sen/front.svg",
  20451. extra: 1321 / 1254,
  20452. bottom: 0.015
  20453. }
  20454. },
  20455. side: {
  20456. height: math.unit(5 + 11 / 12, "feet"),
  20457. weight: math.unit(180, "lb"),
  20458. name: "Side",
  20459. image: {
  20460. source: "./media/characters/sen/side.svg",
  20461. extra: 1321 / 1254,
  20462. bottom: 0.007
  20463. }
  20464. },
  20465. back: {
  20466. height: math.unit(5 + 11 / 12, "feet"),
  20467. weight: math.unit(180, "lb"),
  20468. name: "Back",
  20469. image: {
  20470. source: "./media/characters/sen/back.svg",
  20471. extra: 1321 / 1254
  20472. }
  20473. },
  20474. },
  20475. [
  20476. {
  20477. name: "Normal",
  20478. height: math.unit(5 + 11 / 12, "feet"),
  20479. default: true
  20480. },
  20481. ]
  20482. ))
  20483. characterMakers.push(() => makeCharacter(
  20484. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20485. {
  20486. front: {
  20487. height: math.unit(166.6, "cm"),
  20488. weight: math.unit(66.6, "kg"),
  20489. name: "Front",
  20490. image: {
  20491. source: "./media/characters/fruity/front.svg",
  20492. extra: 1510 / 1386,
  20493. bottom: 0.04
  20494. }
  20495. },
  20496. back: {
  20497. height: math.unit(166.6, "cm"),
  20498. weight: math.unit(66.6, "lb"),
  20499. name: "Back",
  20500. image: {
  20501. source: "./media/characters/fruity/back.svg",
  20502. extra: 1563 / 1435,
  20503. bottom: 0.005
  20504. }
  20505. },
  20506. },
  20507. [
  20508. {
  20509. name: "Normal",
  20510. height: math.unit(166.6, "cm"),
  20511. default: true
  20512. },
  20513. {
  20514. name: "Demonic",
  20515. height: math.unit(166.6, "feet")
  20516. },
  20517. ]
  20518. ))
  20519. characterMakers.push(() => makeCharacter(
  20520. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20521. {
  20522. side: {
  20523. height: math.unit(10, "feet"),
  20524. weight: math.unit(500, "lb"),
  20525. name: "Side",
  20526. image: {
  20527. source: "./media/characters/zost/side.svg",
  20528. extra: 966 / 880,
  20529. bottom: 0.075
  20530. }
  20531. },
  20532. mawFront: {
  20533. height: math.unit(1.08, "meters"),
  20534. name: "Maw (Front)",
  20535. image: {
  20536. source: "./media/characters/zost/maw-front.svg"
  20537. }
  20538. },
  20539. mawSide: {
  20540. height: math.unit(2.66, "feet"),
  20541. name: "Maw (Side)",
  20542. image: {
  20543. source: "./media/characters/zost/maw-side.svg"
  20544. }
  20545. },
  20546. },
  20547. [
  20548. {
  20549. name: "Normal",
  20550. height: math.unit(10, "feet"),
  20551. default: true
  20552. },
  20553. ]
  20554. ))
  20555. characterMakers.push(() => makeCharacter(
  20556. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20557. {
  20558. front: {
  20559. height: math.unit(5 + 4 / 12, "feet"),
  20560. weight: math.unit(120, "lb"),
  20561. name: "Front",
  20562. image: {
  20563. source: "./media/characters/luci/front.svg",
  20564. extra: 1985 / 1884,
  20565. bottom: 0.04
  20566. }
  20567. },
  20568. back: {
  20569. height: math.unit(5 + 4 / 12, "feet"),
  20570. weight: math.unit(120, "lb"),
  20571. name: "Back",
  20572. image: {
  20573. source: "./media/characters/luci/back.svg",
  20574. extra: 1892 / 1791,
  20575. bottom: 0.002
  20576. }
  20577. },
  20578. },
  20579. [
  20580. {
  20581. name: "Normal",
  20582. height: math.unit(5 + 4 / 12, "feet"),
  20583. default: true
  20584. },
  20585. ]
  20586. ))
  20587. characterMakers.push(() => makeCharacter(
  20588. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20589. {
  20590. front: {
  20591. height: math.unit(1500, "feet"),
  20592. weight: math.unit(3.8e6, "tons"),
  20593. name: "Front",
  20594. image: {
  20595. source: "./media/characters/2th/front.svg",
  20596. extra: 3489 / 3350,
  20597. bottom: 0.1
  20598. }
  20599. },
  20600. foot: {
  20601. height: math.unit(461, "feet"),
  20602. name: "Foot",
  20603. image: {
  20604. source: "./media/characters/2th/foot.svg"
  20605. }
  20606. },
  20607. },
  20608. [
  20609. {
  20610. name: "\"Micro\"",
  20611. height: math.unit(15 + 7 / 12, "feet")
  20612. },
  20613. {
  20614. name: "Normal",
  20615. height: math.unit(1500, "feet"),
  20616. default: true
  20617. },
  20618. {
  20619. name: "Macro",
  20620. height: math.unit(5000, "feet")
  20621. },
  20622. {
  20623. name: "Megamacro",
  20624. height: math.unit(15, "miles")
  20625. },
  20626. {
  20627. name: "Gigamacro",
  20628. height: math.unit(4000, "miles")
  20629. },
  20630. {
  20631. name: "Galactic",
  20632. height: math.unit(50, "AU")
  20633. },
  20634. ]
  20635. ))
  20636. characterMakers.push(() => makeCharacter(
  20637. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20638. {
  20639. front: {
  20640. height: math.unit(5 + 6 / 12, "feet"),
  20641. weight: math.unit(220, "lb"),
  20642. name: "Front",
  20643. image: {
  20644. source: "./media/characters/amethyst/front.svg",
  20645. extra: 2078 / 2040,
  20646. bottom: 0.045
  20647. }
  20648. },
  20649. back: {
  20650. height: math.unit(5 + 6 / 12, "feet"),
  20651. weight: math.unit(220, "lb"),
  20652. name: "Back",
  20653. image: {
  20654. source: "./media/characters/amethyst/back.svg",
  20655. extra: 2021 / 1989,
  20656. bottom: 0.02
  20657. }
  20658. },
  20659. },
  20660. [
  20661. {
  20662. name: "Normal",
  20663. height: math.unit(5 + 6 / 12, "feet"),
  20664. default: true
  20665. },
  20666. ]
  20667. ))
  20668. characterMakers.push(() => makeCharacter(
  20669. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20670. {
  20671. front: {
  20672. height: math.unit(4 + 11 / 12, "feet"),
  20673. weight: math.unit(120, "lb"),
  20674. name: "Front",
  20675. image: {
  20676. source: "./media/characters/yumi-akiyama/front.svg",
  20677. extra: 1327 / 1235,
  20678. bottom: 0.02
  20679. }
  20680. },
  20681. back: {
  20682. height: math.unit(4 + 11 / 12, "feet"),
  20683. weight: math.unit(120, "lb"),
  20684. name: "Back",
  20685. image: {
  20686. source: "./media/characters/yumi-akiyama/back.svg",
  20687. extra: 1287 / 1245,
  20688. bottom: 0.002
  20689. }
  20690. },
  20691. },
  20692. [
  20693. {
  20694. name: "Galactic",
  20695. height: math.unit(50, "galaxies"),
  20696. default: true
  20697. },
  20698. {
  20699. name: "Universal",
  20700. height: math.unit(100, "universes")
  20701. },
  20702. ]
  20703. ))
  20704. characterMakers.push(() => makeCharacter(
  20705. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20706. {
  20707. front: {
  20708. height: math.unit(8, "feet"),
  20709. weight: math.unit(500, "lb"),
  20710. name: "Front",
  20711. image: {
  20712. source: "./media/characters/rifter-yrmori/front.svg",
  20713. extra: 1180 / 1125,
  20714. bottom: 0.02
  20715. }
  20716. },
  20717. back: {
  20718. height: math.unit(8, "feet"),
  20719. weight: math.unit(500, "lb"),
  20720. name: "Back",
  20721. image: {
  20722. source: "./media/characters/rifter-yrmori/back.svg",
  20723. extra: 1190 / 1145,
  20724. bottom: 0.001
  20725. }
  20726. },
  20727. wings: {
  20728. height: math.unit(7.75, "feet"),
  20729. weight: math.unit(500, "lb"),
  20730. name: "Wings",
  20731. image: {
  20732. source: "./media/characters/rifter-yrmori/wings.svg",
  20733. extra: 1357 / 1285
  20734. }
  20735. },
  20736. maw: {
  20737. height: math.unit(0.8, "feet"),
  20738. name: "Maw",
  20739. image: {
  20740. source: "./media/characters/rifter-yrmori/maw.svg"
  20741. }
  20742. },
  20743. mawfront: {
  20744. height: math.unit(1.45, "feet"),
  20745. name: "Maw (Front)",
  20746. image: {
  20747. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20748. }
  20749. },
  20750. },
  20751. [
  20752. {
  20753. name: "Normal",
  20754. height: math.unit(8, "feet"),
  20755. default: true
  20756. },
  20757. {
  20758. name: "Macro",
  20759. height: math.unit(42, "meters")
  20760. },
  20761. ]
  20762. ))
  20763. characterMakers.push(() => makeCharacter(
  20764. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20765. {
  20766. were: {
  20767. height: math.unit(25 + 6 / 12, "feet"),
  20768. weight: math.unit(10000, "lb"),
  20769. name: "Were",
  20770. image: {
  20771. source: "./media/characters/tahajin/were.svg",
  20772. extra: 801 / 770,
  20773. bottom: 0.042
  20774. }
  20775. },
  20776. aquatic: {
  20777. height: math.unit(6 + 4 / 12, "feet"),
  20778. weight: math.unit(160, "lb"),
  20779. name: "Aquatic",
  20780. image: {
  20781. source: "./media/characters/tahajin/aquatic.svg",
  20782. extra: 572 / 542,
  20783. bottom: 0.04
  20784. }
  20785. },
  20786. chow: {
  20787. height: math.unit(8 + 11 / 12, "feet"),
  20788. weight: math.unit(450, "lb"),
  20789. name: "Chow",
  20790. image: {
  20791. source: "./media/characters/tahajin/chow.svg",
  20792. extra: 660 / 640,
  20793. bottom: 0.015
  20794. }
  20795. },
  20796. demiNaga: {
  20797. height: math.unit(6 + 8 / 12, "feet"),
  20798. weight: math.unit(300, "lb"),
  20799. name: "Demi Naga",
  20800. image: {
  20801. source: "./media/characters/tahajin/demi-naga.svg",
  20802. extra: 643 / 615,
  20803. bottom: 0.1
  20804. }
  20805. },
  20806. data: {
  20807. height: math.unit(5, "inches"),
  20808. weight: math.unit(0.1, "lb"),
  20809. name: "Data",
  20810. image: {
  20811. source: "./media/characters/tahajin/data.svg"
  20812. }
  20813. },
  20814. fluu: {
  20815. height: math.unit(5 + 7 / 12, "feet"),
  20816. weight: math.unit(140, "lb"),
  20817. name: "Fluu",
  20818. image: {
  20819. source: "./media/characters/tahajin/fluu.svg",
  20820. extra: 628 / 592,
  20821. bottom: 0.02
  20822. }
  20823. },
  20824. starWarrior: {
  20825. height: math.unit(4 + 5 / 12, "feet"),
  20826. weight: math.unit(50, "lb"),
  20827. name: "Star Warrior",
  20828. image: {
  20829. source: "./media/characters/tahajin/star-warrior.svg"
  20830. }
  20831. },
  20832. },
  20833. [
  20834. {
  20835. name: "Normal",
  20836. height: math.unit(25 + 6 / 12, "feet"),
  20837. default: true
  20838. },
  20839. ]
  20840. ))
  20841. characterMakers.push(() => makeCharacter(
  20842. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20843. {
  20844. front: {
  20845. height: math.unit(8, "feet"),
  20846. weight: math.unit(350, "lb"),
  20847. name: "Front",
  20848. image: {
  20849. source: "./media/characters/gabira/front.svg",
  20850. extra: 608 / 580,
  20851. bottom: 0.03
  20852. }
  20853. },
  20854. back: {
  20855. height: math.unit(8, "feet"),
  20856. weight: math.unit(350, "lb"),
  20857. name: "Back",
  20858. image: {
  20859. source: "./media/characters/gabira/back.svg",
  20860. extra: 608 / 580,
  20861. bottom: 0.03
  20862. }
  20863. },
  20864. },
  20865. [
  20866. {
  20867. name: "Normal",
  20868. height: math.unit(8, "feet"),
  20869. default: true
  20870. },
  20871. ]
  20872. ))
  20873. characterMakers.push(() => makeCharacter(
  20874. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20875. {
  20876. front: {
  20877. height: math.unit(5 + 3 / 12, "feet"),
  20878. weight: math.unit(137, "lb"),
  20879. name: "Front",
  20880. image: {
  20881. source: "./media/characters/sasha-katraine/front.svg",
  20882. bottom: 0.045
  20883. }
  20884. },
  20885. },
  20886. [
  20887. {
  20888. name: "Micro",
  20889. height: math.unit(5, "inches")
  20890. },
  20891. {
  20892. name: "Normal",
  20893. height: math.unit(5 + 3 / 12, "feet"),
  20894. default: true
  20895. },
  20896. ]
  20897. ))
  20898. characterMakers.push(() => makeCharacter(
  20899. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20900. {
  20901. side: {
  20902. height: math.unit(4, "inches"),
  20903. weight: math.unit(200, "grams"),
  20904. name: "Side",
  20905. image: {
  20906. source: "./media/characters/der/side.svg",
  20907. extra: 719 / 400,
  20908. bottom: 30.6 / 749.9187
  20909. }
  20910. },
  20911. },
  20912. [
  20913. {
  20914. name: "Micro",
  20915. height: math.unit(4, "inches"),
  20916. default: true
  20917. },
  20918. ]
  20919. ))
  20920. characterMakers.push(() => makeCharacter(
  20921. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20922. {
  20923. side: {
  20924. height: math.unit(30, "meters"),
  20925. weight: math.unit(700, "tonnes"),
  20926. name: "Side",
  20927. image: {
  20928. source: "./media/characters/fixerdragon/side.svg",
  20929. extra: (1293.0514 - 116.03) / 1106.86,
  20930. bottom: 116.03 / 1293.0514
  20931. }
  20932. },
  20933. },
  20934. [
  20935. {
  20936. name: "Planck",
  20937. height: math.unit(1.6e-35, "meters")
  20938. },
  20939. {
  20940. name: "Micro",
  20941. height: math.unit(0.4, "meters")
  20942. },
  20943. {
  20944. name: "Normal",
  20945. height: math.unit(30, "meters"),
  20946. default: true
  20947. },
  20948. {
  20949. name: "Megamacro",
  20950. height: math.unit(1.2, "megameters")
  20951. },
  20952. {
  20953. name: "Teramacro",
  20954. height: math.unit(130, "terameters")
  20955. },
  20956. {
  20957. name: "Yottamacro",
  20958. height: math.unit(6200, "yottameters")
  20959. },
  20960. ]
  20961. ));
  20962. characterMakers.push(() => makeCharacter(
  20963. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20964. {
  20965. front: {
  20966. height: math.unit(8, "feet"),
  20967. weight: math.unit(250, "lb"),
  20968. name: "Front",
  20969. image: {
  20970. source: "./media/characters/kite/front.svg",
  20971. extra: 2796 / 2659,
  20972. bottom: 0.002
  20973. }
  20974. },
  20975. },
  20976. [
  20977. {
  20978. name: "Normal",
  20979. height: math.unit(8, "feet"),
  20980. default: true
  20981. },
  20982. {
  20983. name: "Macro",
  20984. height: math.unit(360, "feet")
  20985. },
  20986. {
  20987. name: "Megamacro",
  20988. height: math.unit(1500, "feet")
  20989. },
  20990. ]
  20991. ))
  20992. characterMakers.push(() => makeCharacter(
  20993. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20994. {
  20995. front: {
  20996. height: math.unit(5 + 10 / 12, "feet"),
  20997. weight: math.unit(150, "lb"),
  20998. name: "Front",
  20999. image: {
  21000. source: "./media/characters/poojawa-vynar/front.svg",
  21001. extra: (1506.1547 - 55) / 1356.6,
  21002. bottom: 55 / 1506.1547
  21003. }
  21004. },
  21005. frontTailless: {
  21006. height: math.unit(5 + 10 / 12, "feet"),
  21007. weight: math.unit(150, "lb"),
  21008. name: "Front (Tailless)",
  21009. image: {
  21010. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21011. extra: (1506.1547 - 55) / 1356.6,
  21012. bottom: 55 / 1506.1547
  21013. }
  21014. },
  21015. },
  21016. [
  21017. {
  21018. name: "Normal",
  21019. height: math.unit(5 + 10 / 12, "feet"),
  21020. default: true
  21021. },
  21022. ]
  21023. ))
  21024. characterMakers.push(() => makeCharacter(
  21025. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21026. {
  21027. front: {
  21028. height: math.unit(293, "meters"),
  21029. weight: math.unit(70400, "tons"),
  21030. name: "Front",
  21031. image: {
  21032. source: "./media/characters/violette/front.svg",
  21033. extra: 1227 / 1180,
  21034. bottom: 0.005
  21035. }
  21036. },
  21037. back: {
  21038. height: math.unit(293, "meters"),
  21039. weight: math.unit(70400, "tons"),
  21040. name: "Back",
  21041. image: {
  21042. source: "./media/characters/violette/back.svg",
  21043. extra: 1227 / 1180,
  21044. bottom: 0.005
  21045. }
  21046. },
  21047. },
  21048. [
  21049. {
  21050. name: "Macro",
  21051. height: math.unit(293, "meters"),
  21052. default: true
  21053. },
  21054. ]
  21055. ))
  21056. characterMakers.push(() => makeCharacter(
  21057. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21058. {
  21059. front: {
  21060. height: math.unit(1050, "feet"),
  21061. weight: math.unit(200000, "tons"),
  21062. name: "Front",
  21063. image: {
  21064. source: "./media/characters/alessandra/front.svg",
  21065. extra: 960 / 912,
  21066. bottom: 0.06
  21067. }
  21068. },
  21069. },
  21070. [
  21071. {
  21072. name: "Macro",
  21073. height: math.unit(1050, "feet")
  21074. },
  21075. {
  21076. name: "Macro+",
  21077. height: math.unit(900, "meters"),
  21078. default: true
  21079. },
  21080. ]
  21081. ))
  21082. characterMakers.push(() => makeCharacter(
  21083. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21084. {
  21085. front: {
  21086. height: math.unit(5, "feet"),
  21087. weight: math.unit(187, "lb"),
  21088. name: "Front",
  21089. image: {
  21090. source: "./media/characters/person/front.svg",
  21091. extra: 3087 / 2945,
  21092. bottom: 91 / 3181
  21093. }
  21094. },
  21095. },
  21096. [
  21097. {
  21098. name: "Micro",
  21099. height: math.unit(3, "inches")
  21100. },
  21101. {
  21102. name: "Normal",
  21103. height: math.unit(5, "feet"),
  21104. default: true
  21105. },
  21106. {
  21107. name: "Macro",
  21108. height: math.unit(90, "feet")
  21109. },
  21110. {
  21111. name: "Max Size",
  21112. height: math.unit(280, "feet")
  21113. },
  21114. ]
  21115. ))
  21116. characterMakers.push(() => makeCharacter(
  21117. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21118. {
  21119. front: {
  21120. height: math.unit(4.5, "meters"),
  21121. weight: math.unit(3200, "lb"),
  21122. name: "Front",
  21123. image: {
  21124. source: "./media/characters/ty/front.svg",
  21125. extra: 1038 / 960,
  21126. bottom: 31.156 / 1068
  21127. }
  21128. },
  21129. back: {
  21130. height: math.unit(4.5, "meters"),
  21131. weight: math.unit(3200, "lb"),
  21132. name: "Back",
  21133. image: {
  21134. source: "./media/characters/ty/back.svg",
  21135. extra: 1044 / 966,
  21136. bottom: 7.48 / 1049
  21137. }
  21138. },
  21139. },
  21140. [
  21141. {
  21142. name: "Normal",
  21143. height: math.unit(4.5, "meters"),
  21144. default: true
  21145. },
  21146. ]
  21147. ))
  21148. characterMakers.push(() => makeCharacter(
  21149. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21150. {
  21151. front: {
  21152. height: math.unit(5 + 4 / 12, "feet"),
  21153. weight: math.unit(115, "lb"),
  21154. name: "Front",
  21155. image: {
  21156. source: "./media/characters/rocky/front.svg",
  21157. extra: 1012 / 975,
  21158. bottom: 54 / 1066
  21159. }
  21160. },
  21161. },
  21162. [
  21163. {
  21164. name: "Normal",
  21165. height: math.unit(5 + 4 / 12, "feet"),
  21166. default: true
  21167. },
  21168. ]
  21169. ))
  21170. characterMakers.push(() => makeCharacter(
  21171. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21172. {
  21173. upright: {
  21174. height: math.unit(6, "meters"),
  21175. weight: math.unit(4000, "kg"),
  21176. name: "Upright",
  21177. image: {
  21178. source: "./media/characters/ruin/upright.svg",
  21179. extra: 668 / 661,
  21180. bottom: 42 / 799.8396
  21181. }
  21182. },
  21183. },
  21184. [
  21185. {
  21186. name: "Normal",
  21187. height: math.unit(6, "meters"),
  21188. default: true
  21189. },
  21190. ]
  21191. ))
  21192. characterMakers.push(() => makeCharacter(
  21193. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21194. {
  21195. front: {
  21196. height: math.unit(5, "feet"),
  21197. weight: math.unit(106, "lb"),
  21198. name: "Front",
  21199. image: {
  21200. source: "./media/characters/robin/front.svg",
  21201. extra: 862 / 799,
  21202. bottom: 42.4 / 914.8856
  21203. }
  21204. },
  21205. },
  21206. [
  21207. {
  21208. name: "Normal",
  21209. height: math.unit(5, "feet"),
  21210. default: true
  21211. },
  21212. ]
  21213. ))
  21214. characterMakers.push(() => makeCharacter(
  21215. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21216. {
  21217. side: {
  21218. height: math.unit(3, "feet"),
  21219. weight: math.unit(225, "lb"),
  21220. name: "Side",
  21221. image: {
  21222. source: "./media/characters/saian/side.svg",
  21223. extra: 566 / 356,
  21224. bottom: 79.7 / 643
  21225. }
  21226. },
  21227. maw: {
  21228. height: math.unit(2.85, "feet"),
  21229. name: "Maw",
  21230. image: {
  21231. source: "./media/characters/saian/maw.svg"
  21232. }
  21233. },
  21234. },
  21235. [
  21236. {
  21237. name: "Normal",
  21238. height: math.unit(3, "feet"),
  21239. default: true
  21240. },
  21241. ]
  21242. ))
  21243. characterMakers.push(() => makeCharacter(
  21244. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21245. {
  21246. side: {
  21247. height: math.unit(8, "feet"),
  21248. weight: math.unit(300, "lb"),
  21249. name: "Side",
  21250. image: {
  21251. source: "./media/characters/equus-silvermane/side.svg",
  21252. extra: 2176 / 2050,
  21253. bottom: 65.7 / 2245
  21254. }
  21255. },
  21256. front: {
  21257. height: math.unit(8, "feet"),
  21258. weight: math.unit(300, "lb"),
  21259. name: "Front",
  21260. image: {
  21261. source: "./media/characters/equus-silvermane/front.svg",
  21262. extra: 4633 / 4400,
  21263. bottom: 71.3 / 4706.915
  21264. }
  21265. },
  21266. sideStepping: {
  21267. height: math.unit(8, "feet"),
  21268. weight: math.unit(300, "lb"),
  21269. name: "Side (Stepping)",
  21270. image: {
  21271. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21272. extra: 1968 / 1860,
  21273. bottom: 16.4 / 1989
  21274. }
  21275. },
  21276. },
  21277. [
  21278. {
  21279. name: "Normal",
  21280. height: math.unit(8, "feet")
  21281. },
  21282. {
  21283. name: "Minimacro",
  21284. height: math.unit(75, "feet"),
  21285. default: true
  21286. },
  21287. {
  21288. name: "Macro",
  21289. height: math.unit(150, "feet")
  21290. },
  21291. {
  21292. name: "Macro+",
  21293. height: math.unit(1000, "feet")
  21294. },
  21295. {
  21296. name: "Megamacro",
  21297. height: math.unit(1, "mile")
  21298. },
  21299. ]
  21300. ))
  21301. characterMakers.push(() => makeCharacter(
  21302. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21303. {
  21304. side: {
  21305. height: math.unit(20, "feet"),
  21306. weight: math.unit(30000, "kg"),
  21307. name: "Side",
  21308. image: {
  21309. source: "./media/characters/windar/side.svg",
  21310. extra: 1491 / 1248,
  21311. bottom: 82.56 / 1568
  21312. }
  21313. },
  21314. },
  21315. [
  21316. {
  21317. name: "Normal",
  21318. height: math.unit(20, "feet"),
  21319. default: true
  21320. },
  21321. ]
  21322. ))
  21323. characterMakers.push(() => makeCharacter(
  21324. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21325. {
  21326. side: {
  21327. height: math.unit(15.66, "feet"),
  21328. weight: math.unit(150, "lb"),
  21329. name: "Side",
  21330. image: {
  21331. source: "./media/characters/melody/side.svg",
  21332. extra: 1097 / 944,
  21333. bottom: 11.8 / 1109
  21334. }
  21335. },
  21336. sideOutfit: {
  21337. height: math.unit(15.66, "feet"),
  21338. weight: math.unit(150, "lb"),
  21339. name: "Side (Outfit)",
  21340. image: {
  21341. source: "./media/characters/melody/side-outfit.svg",
  21342. extra: 1097 / 944,
  21343. bottom: 11.8 / 1109
  21344. }
  21345. },
  21346. },
  21347. [
  21348. {
  21349. name: "Normal",
  21350. height: math.unit(15.66, "feet"),
  21351. default: true
  21352. },
  21353. ]
  21354. ))
  21355. characterMakers.push(() => makeCharacter(
  21356. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21357. {
  21358. front: {
  21359. height: math.unit(8, "feet"),
  21360. weight: math.unit(325, "lb"),
  21361. name: "Front",
  21362. image: {
  21363. source: "./media/characters/windera/front.svg",
  21364. extra: 3180 / 2845,
  21365. bottom: 178 / 3365
  21366. }
  21367. },
  21368. },
  21369. [
  21370. {
  21371. name: "Normal",
  21372. height: math.unit(8, "feet"),
  21373. default: true
  21374. },
  21375. ]
  21376. ))
  21377. characterMakers.push(() => makeCharacter(
  21378. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21379. {
  21380. front: {
  21381. height: math.unit(28.75, "feet"),
  21382. weight: math.unit(2000, "kg"),
  21383. name: "Front",
  21384. image: {
  21385. source: "./media/characters/sonear/front.svg",
  21386. extra: 1041.1 / 964.9,
  21387. bottom: 53.7 / 1096.6
  21388. }
  21389. },
  21390. },
  21391. [
  21392. {
  21393. name: "Normal",
  21394. height: math.unit(28.75, "feet"),
  21395. default: true
  21396. },
  21397. ]
  21398. ))
  21399. characterMakers.push(() => makeCharacter(
  21400. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21401. {
  21402. side: {
  21403. height: math.unit(25.5, "feet"),
  21404. weight: math.unit(23000, "kg"),
  21405. name: "Side",
  21406. image: {
  21407. source: "./media/characters/kanara/side.svg"
  21408. }
  21409. },
  21410. },
  21411. [
  21412. {
  21413. name: "Normal",
  21414. height: math.unit(25.5, "feet"),
  21415. default: true
  21416. },
  21417. ]
  21418. ))
  21419. characterMakers.push(() => makeCharacter(
  21420. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21421. {
  21422. side: {
  21423. height: math.unit(10, "feet"),
  21424. weight: math.unit(1000, "kg"),
  21425. name: "Side",
  21426. image: {
  21427. source: "./media/characters/ereus/side.svg",
  21428. extra: 1157 / 959,
  21429. bottom: 153 / 1312.5
  21430. }
  21431. },
  21432. },
  21433. [
  21434. {
  21435. name: "Normal",
  21436. height: math.unit(10, "feet"),
  21437. default: true
  21438. },
  21439. ]
  21440. ))
  21441. characterMakers.push(() => makeCharacter(
  21442. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21443. {
  21444. side: {
  21445. height: math.unit(4.5, "feet"),
  21446. weight: math.unit(500, "lb"),
  21447. name: "Side",
  21448. image: {
  21449. source: "./media/characters/e-ter/side.svg",
  21450. extra: 1550 / 1248,
  21451. bottom: 146 / 1694
  21452. }
  21453. },
  21454. },
  21455. [
  21456. {
  21457. name: "Normal",
  21458. height: math.unit(4.5, "feet"),
  21459. default: true
  21460. },
  21461. ]
  21462. ))
  21463. characterMakers.push(() => makeCharacter(
  21464. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21465. {
  21466. side: {
  21467. height: math.unit(9.7, "feet"),
  21468. weight: math.unit(4000, "kg"),
  21469. name: "Side",
  21470. image: {
  21471. source: "./media/characters/yamie/side.svg"
  21472. }
  21473. },
  21474. },
  21475. [
  21476. {
  21477. name: "Normal",
  21478. height: math.unit(9.7, "feet"),
  21479. default: true
  21480. },
  21481. ]
  21482. ))
  21483. characterMakers.push(() => makeCharacter(
  21484. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21485. {
  21486. front: {
  21487. height: math.unit(50, "feet"),
  21488. weight: math.unit(50000, "kg"),
  21489. name: "Front",
  21490. image: {
  21491. source: "./media/characters/anders/front.svg",
  21492. extra: 570 / 539,
  21493. bottom: 14.7 / 586.7
  21494. }
  21495. },
  21496. },
  21497. [
  21498. {
  21499. name: "Large",
  21500. height: math.unit(50, "feet")
  21501. },
  21502. {
  21503. name: "Macro",
  21504. height: math.unit(2000, "feet"),
  21505. default: true
  21506. },
  21507. {
  21508. name: "Megamacro",
  21509. height: math.unit(12, "miles")
  21510. },
  21511. ]
  21512. ))
  21513. characterMakers.push(() => makeCharacter(
  21514. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21515. {
  21516. front: {
  21517. height: math.unit(7 + 2 / 12, "feet"),
  21518. weight: math.unit(300, "lb"),
  21519. name: "Front",
  21520. image: {
  21521. source: "./media/characters/reban/front.svg",
  21522. extra: 516 / 487,
  21523. bottom: 42.82 / 558.356
  21524. }
  21525. },
  21526. dick: {
  21527. height: math.unit(7 / 5, "feet"),
  21528. name: "Dick",
  21529. image: {
  21530. source: "./media/characters/reban/dick.svg"
  21531. }
  21532. },
  21533. },
  21534. [
  21535. {
  21536. name: "Natural Height",
  21537. height: math.unit(7 + 2 / 12, "feet")
  21538. },
  21539. {
  21540. name: "Macro",
  21541. height: math.unit(500, "feet"),
  21542. default: true
  21543. },
  21544. {
  21545. name: "Canon Height",
  21546. height: math.unit(50, "AU")
  21547. },
  21548. ]
  21549. ))
  21550. characterMakers.push(() => makeCharacter(
  21551. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21552. {
  21553. front: {
  21554. height: math.unit(6, "feet"),
  21555. weight: math.unit(150, "lb"),
  21556. name: "Front",
  21557. image: {
  21558. source: "./media/characters/terrance-keayes/front.svg",
  21559. extra: 1.005,
  21560. bottom: 151 / 1615
  21561. }
  21562. },
  21563. side: {
  21564. height: math.unit(6, "feet"),
  21565. weight: math.unit(150, "lb"),
  21566. name: "Side",
  21567. image: {
  21568. source: "./media/characters/terrance-keayes/side.svg",
  21569. extra: 1.005,
  21570. bottom: 129.4 / 1544
  21571. }
  21572. },
  21573. back: {
  21574. height: math.unit(6, "feet"),
  21575. weight: math.unit(150, "lb"),
  21576. name: "Back",
  21577. image: {
  21578. source: "./media/characters/terrance-keayes/back.svg",
  21579. extra: 1.005,
  21580. bottom: 58.4 / 1557.3
  21581. }
  21582. },
  21583. dick: {
  21584. height: math.unit(6 * 0.208, "feet"),
  21585. name: "Dick",
  21586. image: {
  21587. source: "./media/characters/terrance-keayes/dick.svg"
  21588. }
  21589. },
  21590. },
  21591. [
  21592. {
  21593. name: "Canon Height",
  21594. height: math.unit(35, "miles"),
  21595. default: true
  21596. },
  21597. ]
  21598. ))
  21599. characterMakers.push(() => makeCharacter(
  21600. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21601. {
  21602. front: {
  21603. height: math.unit(6, "feet"),
  21604. weight: math.unit(150, "lb"),
  21605. name: "Front",
  21606. image: {
  21607. source: "./media/characters/ofelia/front.svg",
  21608. extra: 546 / 541,
  21609. bottom: 39 / 583
  21610. }
  21611. },
  21612. back: {
  21613. height: math.unit(6, "feet"),
  21614. weight: math.unit(150, "lb"),
  21615. name: "Back",
  21616. image: {
  21617. source: "./media/characters/ofelia/back.svg",
  21618. extra: 564 / 559.5,
  21619. bottom: 8.69 / 573.02
  21620. }
  21621. },
  21622. maw: {
  21623. height: math.unit(1, "feet"),
  21624. name: "Maw",
  21625. image: {
  21626. source: "./media/characters/ofelia/maw.svg"
  21627. }
  21628. },
  21629. foot: {
  21630. height: math.unit(1.949, "feet"),
  21631. name: "Foot",
  21632. image: {
  21633. source: "./media/characters/ofelia/foot.svg"
  21634. }
  21635. },
  21636. },
  21637. [
  21638. {
  21639. name: "Canon Height",
  21640. height: math.unit(2000, "miles"),
  21641. default: true
  21642. },
  21643. ]
  21644. ))
  21645. characterMakers.push(() => makeCharacter(
  21646. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21647. {
  21648. front: {
  21649. height: math.unit(6, "feet"),
  21650. weight: math.unit(150, "lb"),
  21651. name: "Front",
  21652. image: {
  21653. source: "./media/characters/samuel/front.svg",
  21654. extra: 265 / 258,
  21655. bottom: 2 / 266.1566
  21656. }
  21657. },
  21658. },
  21659. [
  21660. {
  21661. name: "Macro",
  21662. height: math.unit(100, "feet"),
  21663. default: true
  21664. },
  21665. {
  21666. name: "Full Size",
  21667. height: math.unit(1000, "miles")
  21668. },
  21669. ]
  21670. ))
  21671. characterMakers.push(() => makeCharacter(
  21672. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21673. {
  21674. front: {
  21675. height: math.unit(6, "feet"),
  21676. weight: math.unit(300, "lb"),
  21677. name: "Front",
  21678. image: {
  21679. source: "./media/characters/beishir-kiel/front.svg",
  21680. extra: 569 / 547,
  21681. bottom: 41.9 / 609
  21682. }
  21683. },
  21684. maw: {
  21685. height: math.unit(6 * 0.202, "feet"),
  21686. name: "Maw",
  21687. image: {
  21688. source: "./media/characters/beishir-kiel/maw.svg"
  21689. }
  21690. },
  21691. },
  21692. [
  21693. {
  21694. name: "Macro",
  21695. height: math.unit(300, "feet"),
  21696. default: true
  21697. },
  21698. ]
  21699. ))
  21700. characterMakers.push(() => makeCharacter(
  21701. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21702. {
  21703. front: {
  21704. height: math.unit(5 + 8 / 12, "feet"),
  21705. weight: math.unit(120, "lb"),
  21706. name: "Front",
  21707. image: {
  21708. source: "./media/characters/logan-grey/front.svg",
  21709. extra: 2539 / 2393,
  21710. bottom: 97.6 / 2636.37
  21711. }
  21712. },
  21713. frontAlt: {
  21714. height: math.unit(5 + 8 / 12, "feet"),
  21715. weight: math.unit(120, "lb"),
  21716. name: "Front (Alt)",
  21717. image: {
  21718. source: "./media/characters/logan-grey/front-alt.svg",
  21719. extra: 958 / 893,
  21720. bottom: 15 / 970.768
  21721. }
  21722. },
  21723. back: {
  21724. height: math.unit(5 + 8 / 12, "feet"),
  21725. weight: math.unit(120, "lb"),
  21726. name: "Back",
  21727. image: {
  21728. source: "./media/characters/logan-grey/back.svg",
  21729. extra: 958 / 893,
  21730. bottom: 2.1881 / 970.9788
  21731. }
  21732. },
  21733. dick: {
  21734. height: math.unit(1.437, "feet"),
  21735. name: "Dick",
  21736. image: {
  21737. source: "./media/characters/logan-grey/dick.svg"
  21738. }
  21739. },
  21740. },
  21741. [
  21742. {
  21743. name: "Normal",
  21744. height: math.unit(5 + 8 / 12, "feet")
  21745. },
  21746. {
  21747. name: "The 500 Foot Femboy",
  21748. height: math.unit(500, "feet"),
  21749. default: true
  21750. },
  21751. {
  21752. name: "Megmacro",
  21753. height: math.unit(20, "miles")
  21754. },
  21755. ]
  21756. ))
  21757. characterMakers.push(() => makeCharacter(
  21758. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21759. {
  21760. front: {
  21761. height: math.unit(8 + 2 / 12, "feet"),
  21762. weight: math.unit(275, "lb"),
  21763. name: "Front",
  21764. image: {
  21765. source: "./media/characters/draganta/front.svg",
  21766. extra: 1177 / 1135,
  21767. bottom: 33.46 / 1212.1
  21768. }
  21769. },
  21770. },
  21771. [
  21772. {
  21773. name: "Normal",
  21774. height: math.unit(8 + 6 / 12, "feet"),
  21775. default: true
  21776. },
  21777. {
  21778. name: "Macro",
  21779. height: math.unit(150, "feet")
  21780. },
  21781. {
  21782. name: "Megamacro",
  21783. height: math.unit(1000, "miles")
  21784. },
  21785. ]
  21786. ))
  21787. characterMakers.push(() => makeCharacter(
  21788. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21789. {
  21790. front: {
  21791. height: math.unit(1.72, "m"),
  21792. weight: math.unit(80, "lb"),
  21793. name: "Front",
  21794. image: {
  21795. source: "./media/characters/voski/front.svg",
  21796. extra: 2076.22 / 2022.4,
  21797. bottom: 102.7 / 2177.3866
  21798. }
  21799. },
  21800. frontNsfw: {
  21801. height: math.unit(1.72, "m"),
  21802. weight: math.unit(80, "lb"),
  21803. name: "Front (NSFW)",
  21804. image: {
  21805. source: "./media/characters/voski/front-nsfw.svg",
  21806. extra: 2076.22 / 2022.4,
  21807. bottom: 102.7 / 2177.3866
  21808. }
  21809. },
  21810. back: {
  21811. height: math.unit(1.72, "m"),
  21812. weight: math.unit(80, "lb"),
  21813. name: "Back",
  21814. image: {
  21815. source: "./media/characters/voski/back.svg",
  21816. extra: 2104 / 2051,
  21817. bottom: 10.45 / 2113.63
  21818. }
  21819. },
  21820. },
  21821. [
  21822. {
  21823. name: "Normal",
  21824. height: math.unit(1.72, "m")
  21825. },
  21826. {
  21827. name: "Macro",
  21828. height: math.unit(55, "m"),
  21829. default: true
  21830. },
  21831. {
  21832. name: "Macro+",
  21833. height: math.unit(300, "m")
  21834. },
  21835. {
  21836. name: "Macro++",
  21837. height: math.unit(700, "m")
  21838. },
  21839. {
  21840. name: "Macro+++",
  21841. height: math.unit(4500, "m")
  21842. },
  21843. {
  21844. name: "Macro++++",
  21845. height: math.unit(45, "km")
  21846. },
  21847. {
  21848. name: "Macro+++++",
  21849. height: math.unit(1220, "km")
  21850. },
  21851. ]
  21852. ))
  21853. characterMakers.push(() => makeCharacter(
  21854. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21855. {
  21856. front: {
  21857. height: math.unit(2.3, "m"),
  21858. weight: math.unit(304, "kg"),
  21859. name: "Front",
  21860. image: {
  21861. source: "./media/characters/icowom-lee/front.svg",
  21862. extra: 985 / 955,
  21863. bottom: 25.4 / 1012
  21864. }
  21865. },
  21866. fronttentacles: {
  21867. height: math.unit(2.3, "m"),
  21868. weight: math.unit(304, "kg"),
  21869. name: "Front-tentacles",
  21870. image: {
  21871. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21872. extra: 985 / 955,
  21873. bottom: 25.4 / 1012
  21874. }
  21875. },
  21876. back: {
  21877. height: math.unit(2.3, "m"),
  21878. weight: math.unit(304, "kg"),
  21879. name: "Back",
  21880. image: {
  21881. source: "./media/characters/icowom-lee/back.svg",
  21882. extra: 975 / 954,
  21883. bottom: 9.5 / 985
  21884. }
  21885. },
  21886. backtentacles: {
  21887. height: math.unit(2.3, "m"),
  21888. weight: math.unit(304, "kg"),
  21889. name: "Back-tentacles",
  21890. image: {
  21891. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21892. extra: 975 / 954,
  21893. bottom: 9.5 / 985
  21894. }
  21895. },
  21896. frontDressed: {
  21897. height: math.unit(2.3, "m"),
  21898. weight: math.unit(304, "kg"),
  21899. name: "Front (Dressed)",
  21900. image: {
  21901. source: "./media/characters/icowom-lee/front-dressed.svg",
  21902. extra: 3076 / 2933,
  21903. bottom: 51.4 / 3125.1889
  21904. }
  21905. },
  21906. rump: {
  21907. height: math.unit(0.776, "meters"),
  21908. name: "Rump",
  21909. image: {
  21910. source: "./media/characters/icowom-lee/rump.svg"
  21911. }
  21912. },
  21913. genitals: {
  21914. height: math.unit(0.78, "meters"),
  21915. name: "Genitals",
  21916. image: {
  21917. source: "./media/characters/icowom-lee/genitals.svg"
  21918. }
  21919. },
  21920. },
  21921. [
  21922. {
  21923. name: "Normal",
  21924. height: math.unit(2.3, "meters"),
  21925. default: true
  21926. },
  21927. {
  21928. name: "Macro",
  21929. height: math.unit(94, "meters"),
  21930. default: true
  21931. },
  21932. ]
  21933. ))
  21934. characterMakers.push(() => makeCharacter(
  21935. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21936. {
  21937. front: {
  21938. height: math.unit(22, "meters"),
  21939. weight: math.unit(21000, "kg"),
  21940. name: "Front",
  21941. image: {
  21942. source: "./media/characters/shock-diamond/front.svg",
  21943. extra: 2204 / 2053,
  21944. bottom: 65 / 2239.47
  21945. }
  21946. },
  21947. frontNude: {
  21948. height: math.unit(22, "meters"),
  21949. weight: math.unit(21000, "kg"),
  21950. name: "Front (Nude)",
  21951. image: {
  21952. source: "./media/characters/shock-diamond/front-nude.svg",
  21953. extra: 2514 / 2285,
  21954. bottom: 13 / 2527.56
  21955. }
  21956. },
  21957. },
  21958. [
  21959. {
  21960. name: "Normal",
  21961. height: math.unit(3, "meters")
  21962. },
  21963. {
  21964. name: "Macro",
  21965. height: math.unit(22, "meters"),
  21966. default: true
  21967. },
  21968. ]
  21969. ))
  21970. characterMakers.push(() => makeCharacter(
  21971. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21972. {
  21973. front: {
  21974. height: math.unit(5 + 4 / 12, "feet"),
  21975. weight: math.unit(120, "lb"),
  21976. name: "Front",
  21977. image: {
  21978. source: "./media/characters/rory/front.svg",
  21979. extra: 589 / 556,
  21980. bottom: 45.7 / 635.76
  21981. }
  21982. },
  21983. frontNude: {
  21984. height: math.unit(5 + 4 / 12, "feet"),
  21985. weight: math.unit(120, "lb"),
  21986. name: "Front (Nude)",
  21987. image: {
  21988. source: "./media/characters/rory/front-nude.svg",
  21989. extra: 589 / 556,
  21990. bottom: 45.7 / 635.76
  21991. }
  21992. },
  21993. side: {
  21994. height: math.unit(5 + 4 / 12, "feet"),
  21995. weight: math.unit(120, "lb"),
  21996. name: "Side",
  21997. image: {
  21998. source: "./media/characters/rory/side.svg",
  21999. extra: 597 / 564,
  22000. bottom: 55 / 653
  22001. }
  22002. },
  22003. back: {
  22004. height: math.unit(5 + 4 / 12, "feet"),
  22005. weight: math.unit(120, "lb"),
  22006. name: "Back",
  22007. image: {
  22008. source: "./media/characters/rory/back.svg",
  22009. extra: 620 / 585,
  22010. bottom: 8.86 / 630.43
  22011. }
  22012. },
  22013. dick: {
  22014. height: math.unit(0.86, "feet"),
  22015. name: "Dick",
  22016. image: {
  22017. source: "./media/characters/rory/dick.svg"
  22018. }
  22019. },
  22020. },
  22021. [
  22022. {
  22023. name: "Normal",
  22024. height: math.unit(5 + 4 / 12, "feet"),
  22025. default: true
  22026. },
  22027. {
  22028. name: "Macro",
  22029. height: math.unit(100, "feet")
  22030. },
  22031. {
  22032. name: "Macro+",
  22033. height: math.unit(140, "feet")
  22034. },
  22035. {
  22036. name: "Macro++",
  22037. height: math.unit(300, "feet")
  22038. },
  22039. ]
  22040. ))
  22041. characterMakers.push(() => makeCharacter(
  22042. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22043. {
  22044. front: {
  22045. height: math.unit(5 + 9 / 12, "feet"),
  22046. weight: math.unit(190, "lb"),
  22047. name: "Front",
  22048. image: {
  22049. source: "./media/characters/sprisk/front.svg",
  22050. extra: 1225 / 1180,
  22051. bottom: 42.7 / 1266.4
  22052. }
  22053. },
  22054. frontNsfw: {
  22055. height: math.unit(5 + 9 / 12, "feet"),
  22056. weight: math.unit(190, "lb"),
  22057. name: "Front (NSFW)",
  22058. image: {
  22059. source: "./media/characters/sprisk/front-nsfw.svg",
  22060. extra: 1225 / 1180,
  22061. bottom: 42.7 / 1266.4
  22062. }
  22063. },
  22064. back: {
  22065. height: math.unit(5 + 9 / 12, "feet"),
  22066. weight: math.unit(190, "lb"),
  22067. name: "Back",
  22068. image: {
  22069. source: "./media/characters/sprisk/back.svg",
  22070. extra: 1247 / 1200,
  22071. bottom: 5.6 / 1253.04
  22072. }
  22073. },
  22074. },
  22075. [
  22076. {
  22077. name: "Tiny",
  22078. height: math.unit(2, "inches")
  22079. },
  22080. {
  22081. name: "Normal",
  22082. height: math.unit(5 + 9 / 12, "feet"),
  22083. default: true
  22084. },
  22085. {
  22086. name: "Mini Macro",
  22087. height: math.unit(18, "feet")
  22088. },
  22089. {
  22090. name: "Macro",
  22091. height: math.unit(100, "feet")
  22092. },
  22093. {
  22094. name: "MACRO",
  22095. height: math.unit(50, "miles")
  22096. },
  22097. {
  22098. name: "M A C R O",
  22099. height: math.unit(300, "miles")
  22100. },
  22101. ]
  22102. ))
  22103. characterMakers.push(() => makeCharacter(
  22104. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22105. {
  22106. side: {
  22107. height: math.unit(15.6, "meters"),
  22108. weight: math.unit(700000, "kg"),
  22109. name: "Side",
  22110. image: {
  22111. source: "./media/characters/bunsen/side.svg",
  22112. extra: 1644 / 358
  22113. }
  22114. },
  22115. foot: {
  22116. height: math.unit(1.611 * 1644 / 358, "meter"),
  22117. name: "Foot",
  22118. image: {
  22119. source: "./media/characters/bunsen/foot.svg"
  22120. }
  22121. },
  22122. },
  22123. [
  22124. {
  22125. name: "Small",
  22126. height: math.unit(10, "feet")
  22127. },
  22128. {
  22129. name: "Normal",
  22130. height: math.unit(15.6, "meters"),
  22131. default: true
  22132. },
  22133. ]
  22134. ))
  22135. characterMakers.push(() => makeCharacter(
  22136. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22137. {
  22138. front: {
  22139. height: math.unit(4 + 11 / 12, "feet"),
  22140. weight: math.unit(140, "lb"),
  22141. name: "Front",
  22142. image: {
  22143. source: "./media/characters/sesh/front.svg",
  22144. extra: 3420 / 3231,
  22145. bottom: 72 / 3949.5
  22146. }
  22147. },
  22148. },
  22149. [
  22150. {
  22151. name: "Normal",
  22152. height: math.unit(4 + 11 / 12, "feet")
  22153. },
  22154. {
  22155. name: "Grown",
  22156. height: math.unit(15, "feet"),
  22157. default: true
  22158. },
  22159. {
  22160. name: "Macro",
  22161. height: math.unit(1500, "feet")
  22162. },
  22163. {
  22164. name: "Megamacro",
  22165. height: math.unit(30, "miles")
  22166. },
  22167. {
  22168. name: "Continental",
  22169. height: math.unit(3000, "miles")
  22170. },
  22171. {
  22172. name: "Gravity Mass",
  22173. height: math.unit(300000, "miles")
  22174. },
  22175. {
  22176. name: "Planet Buster",
  22177. height: math.unit(30000000, "miles")
  22178. },
  22179. {
  22180. name: "Big",
  22181. height: math.unit(3000000000, "miles")
  22182. },
  22183. ]
  22184. ))
  22185. characterMakers.push(() => makeCharacter(
  22186. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22187. {
  22188. front: {
  22189. height: math.unit(9, "feet"),
  22190. weight: math.unit(350, "lb"),
  22191. name: "Front",
  22192. image: {
  22193. source: "./media/characters/pepper/front.svg",
  22194. extra: 1448 / 1312,
  22195. bottom: 9.4 / 1457.88
  22196. }
  22197. },
  22198. back: {
  22199. height: math.unit(9, "feet"),
  22200. weight: math.unit(350, "lb"),
  22201. name: "Back",
  22202. image: {
  22203. source: "./media/characters/pepper/back.svg",
  22204. extra: 1423 / 1300,
  22205. bottom: 4.6 / 1429
  22206. }
  22207. },
  22208. maw: {
  22209. height: math.unit(0.932, "feet"),
  22210. name: "Maw",
  22211. image: {
  22212. source: "./media/characters/pepper/maw.svg"
  22213. }
  22214. },
  22215. },
  22216. [
  22217. {
  22218. name: "Normal",
  22219. height: math.unit(9, "feet"),
  22220. default: true
  22221. },
  22222. ]
  22223. ))
  22224. characterMakers.push(() => makeCharacter(
  22225. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22226. {
  22227. front: {
  22228. height: math.unit(6, "feet"),
  22229. weight: math.unit(150, "lb"),
  22230. name: "Front",
  22231. image: {
  22232. source: "./media/characters/maelstrom/front.svg",
  22233. extra: 2100 / 1883,
  22234. bottom: 94 / 2196.7
  22235. }
  22236. },
  22237. },
  22238. [
  22239. {
  22240. name: "Less Kaiju",
  22241. height: math.unit(200, "feet")
  22242. },
  22243. {
  22244. name: "Kaiju",
  22245. height: math.unit(400, "feet"),
  22246. default: true
  22247. },
  22248. {
  22249. name: "Kaiju-er",
  22250. height: math.unit(600, "feet")
  22251. },
  22252. ]
  22253. ))
  22254. characterMakers.push(() => makeCharacter(
  22255. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22256. {
  22257. front: {
  22258. height: math.unit(6 + 5 / 12, "feet"),
  22259. weight: math.unit(180, "lb"),
  22260. name: "Front",
  22261. image: {
  22262. source: "./media/characters/lexir/front.svg",
  22263. extra: 180 / 172,
  22264. bottom: 12 / 192
  22265. }
  22266. },
  22267. back: {
  22268. height: math.unit(6 + 5 / 12, "feet"),
  22269. weight: math.unit(180, "lb"),
  22270. name: "Back",
  22271. image: {
  22272. source: "./media/characters/lexir/back.svg",
  22273. extra: 183.84 / 175.5,
  22274. bottom: 3.1 / 187
  22275. }
  22276. },
  22277. },
  22278. [
  22279. {
  22280. name: "Very Smal",
  22281. height: math.unit(1, "nm")
  22282. },
  22283. {
  22284. name: "Normal",
  22285. height: math.unit(6 + 5 / 12, "feet"),
  22286. default: true
  22287. },
  22288. {
  22289. name: "Macro",
  22290. height: math.unit(1, "mile")
  22291. },
  22292. {
  22293. name: "Megamacro",
  22294. height: math.unit(50, "miles")
  22295. },
  22296. ]
  22297. ))
  22298. characterMakers.push(() => makeCharacter(
  22299. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22300. {
  22301. front: {
  22302. height: math.unit(1.5, "meters"),
  22303. weight: math.unit(100, "lb"),
  22304. name: "Front",
  22305. image: {
  22306. source: "./media/characters/maksio/front.svg",
  22307. extra: 1549 / 1531,
  22308. bottom: 123.7 / 1674.5429
  22309. }
  22310. },
  22311. back: {
  22312. height: math.unit(1.5, "meters"),
  22313. weight: math.unit(100, "lb"),
  22314. name: "Back",
  22315. image: {
  22316. source: "./media/characters/maksio/back.svg",
  22317. extra: 1541 / 1509,
  22318. bottom: 97 / 1639
  22319. }
  22320. },
  22321. hand: {
  22322. height: math.unit(0.621, "feet"),
  22323. name: "Hand",
  22324. image: {
  22325. source: "./media/characters/maksio/hand.svg"
  22326. }
  22327. },
  22328. foot: {
  22329. height: math.unit(1.611, "feet"),
  22330. name: "Foot",
  22331. image: {
  22332. source: "./media/characters/maksio/foot.svg"
  22333. }
  22334. },
  22335. },
  22336. [
  22337. {
  22338. name: "Shrunken",
  22339. height: math.unit(10, "cm")
  22340. },
  22341. {
  22342. name: "Normal",
  22343. height: math.unit(150, "cm"),
  22344. default: true
  22345. },
  22346. ]
  22347. ))
  22348. characterMakers.push(() => makeCharacter(
  22349. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22350. {
  22351. front: {
  22352. height: math.unit(100, "feet"),
  22353. name: "Front",
  22354. image: {
  22355. source: "./media/characters/erza-bear/front.svg",
  22356. extra: 2449 / 2390,
  22357. bottom: 46 / 2494
  22358. }
  22359. },
  22360. back: {
  22361. height: math.unit(100, "feet"),
  22362. name: "Back",
  22363. image: {
  22364. source: "./media/characters/erza-bear/back.svg",
  22365. extra: 2489 / 2430,
  22366. bottom: 85.4 / 2480
  22367. }
  22368. },
  22369. tail: {
  22370. height: math.unit(42, "feet"),
  22371. name: "Tail",
  22372. image: {
  22373. source: "./media/characters/erza-bear/tail.svg"
  22374. }
  22375. },
  22376. tongue: {
  22377. height: math.unit(8, "feet"),
  22378. name: "Tongue",
  22379. image: {
  22380. source: "./media/characters/erza-bear/tongue.svg"
  22381. }
  22382. },
  22383. dick: {
  22384. height: math.unit(10.5, "feet"),
  22385. name: "Dick",
  22386. image: {
  22387. source: "./media/characters/erza-bear/dick.svg"
  22388. }
  22389. },
  22390. dickVertical: {
  22391. height: math.unit(16.9, "feet"),
  22392. name: "Dick (Vertical)",
  22393. image: {
  22394. source: "./media/characters/erza-bear/dick-vertical.svg"
  22395. }
  22396. },
  22397. },
  22398. [
  22399. {
  22400. name: "Macro",
  22401. height: math.unit(100, "feet"),
  22402. default: true
  22403. },
  22404. ]
  22405. ))
  22406. characterMakers.push(() => makeCharacter(
  22407. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22408. {
  22409. front: {
  22410. height: math.unit(172, "cm"),
  22411. weight: math.unit(73, "kg"),
  22412. name: "Front",
  22413. image: {
  22414. source: "./media/characters/violet-flor/front.svg",
  22415. extra: 1530 / 1442,
  22416. bottom: 61.9 / 1588.8
  22417. }
  22418. },
  22419. back: {
  22420. height: math.unit(180, "cm"),
  22421. weight: math.unit(73, "kg"),
  22422. name: "Back",
  22423. image: {
  22424. source: "./media/characters/violet-flor/back.svg",
  22425. extra: 1692 / 1630,
  22426. bottom: 20 / 1712
  22427. }
  22428. },
  22429. },
  22430. [
  22431. {
  22432. name: "Normal",
  22433. height: math.unit(172, "cm"),
  22434. default: true
  22435. },
  22436. ]
  22437. ))
  22438. characterMakers.push(() => makeCharacter(
  22439. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22440. {
  22441. front: {
  22442. height: math.unit(6, "feet"),
  22443. weight: math.unit(220, "lb"),
  22444. name: "Front",
  22445. image: {
  22446. source: "./media/characters/lynn-rhea/front.svg",
  22447. extra: 310 / 273
  22448. }
  22449. },
  22450. back: {
  22451. height: math.unit(6, "feet"),
  22452. weight: math.unit(220, "lb"),
  22453. name: "Back",
  22454. image: {
  22455. source: "./media/characters/lynn-rhea/back.svg",
  22456. extra: 310 / 273
  22457. }
  22458. },
  22459. dicks: {
  22460. height: math.unit(0.9, "feet"),
  22461. name: "Dicks",
  22462. image: {
  22463. source: "./media/characters/lynn-rhea/dicks.svg"
  22464. }
  22465. },
  22466. slit: {
  22467. height: math.unit(0.4, "feet"),
  22468. name: "Slit",
  22469. image: {
  22470. source: "./media/characters/lynn-rhea/slit.svg"
  22471. }
  22472. },
  22473. },
  22474. [
  22475. {
  22476. name: "Micro",
  22477. height: math.unit(1, "inch")
  22478. },
  22479. {
  22480. name: "Macro",
  22481. height: math.unit(60, "feet"),
  22482. default: true
  22483. },
  22484. {
  22485. name: "Megamacro",
  22486. height: math.unit(2, "miles")
  22487. },
  22488. {
  22489. name: "Gigamacro",
  22490. height: math.unit(3, "earths")
  22491. },
  22492. {
  22493. name: "Galactic",
  22494. height: math.unit(0.8, "galaxies")
  22495. },
  22496. ]
  22497. ))
  22498. characterMakers.push(() => makeCharacter(
  22499. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22500. {
  22501. front: {
  22502. height: math.unit(1600, "feet"),
  22503. weight: math.unit(85758785169, "kg"),
  22504. name: "Front",
  22505. image: {
  22506. source: "./media/characters/valathos/front.svg",
  22507. extra: 1451 / 1339
  22508. }
  22509. },
  22510. },
  22511. [
  22512. {
  22513. name: "Macro",
  22514. height: math.unit(1600, "feet"),
  22515. default: true
  22516. },
  22517. ]
  22518. ))
  22519. characterMakers.push(() => makeCharacter(
  22520. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22521. {
  22522. front: {
  22523. height: math.unit(7 + 5 / 12, "feet"),
  22524. weight: math.unit(300, "lb"),
  22525. name: "Front",
  22526. image: {
  22527. source: "./media/characters/azula/front.svg",
  22528. extra: 3208 / 2880,
  22529. bottom: 80.2 / 3277
  22530. }
  22531. },
  22532. back: {
  22533. height: math.unit(7 + 5 / 12, "feet"),
  22534. weight: math.unit(300, "lb"),
  22535. name: "Back",
  22536. image: {
  22537. source: "./media/characters/azula/back.svg",
  22538. extra: 3169 / 2822,
  22539. bottom: 150.6 / 3321
  22540. }
  22541. },
  22542. },
  22543. [
  22544. {
  22545. name: "Normal",
  22546. height: math.unit(7 + 5 / 12, "feet"),
  22547. default: true
  22548. },
  22549. {
  22550. name: "Big",
  22551. height: math.unit(20, "feet")
  22552. },
  22553. ]
  22554. ))
  22555. characterMakers.push(() => makeCharacter(
  22556. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22557. {
  22558. front: {
  22559. height: math.unit(5 + 1 / 12, "feet"),
  22560. weight: math.unit(110, "lb"),
  22561. name: "Front",
  22562. image: {
  22563. source: "./media/characters/rupert/front.svg",
  22564. extra: 1549 / 1495,
  22565. bottom: 54.2 / 1604.4
  22566. }
  22567. },
  22568. },
  22569. [
  22570. {
  22571. name: "Normal",
  22572. height: math.unit(5 + 1 / 12, "feet"),
  22573. default: true
  22574. },
  22575. ]
  22576. ))
  22577. characterMakers.push(() => makeCharacter(
  22578. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22579. {
  22580. front: {
  22581. height: math.unit(8 + 4 / 12, "feet"),
  22582. weight: math.unit(350, "lb"),
  22583. name: "Front",
  22584. image: {
  22585. source: "./media/characters/sheera-castellar/front.svg",
  22586. extra: 1957 / 1894,
  22587. bottom: 26.97 / 1975.017
  22588. }
  22589. },
  22590. side: {
  22591. height: math.unit(8 + 4 / 12, "feet"),
  22592. weight: math.unit(350, "lb"),
  22593. name: "Side",
  22594. image: {
  22595. source: "./media/characters/sheera-castellar/side.svg",
  22596. extra: 1957 / 1894
  22597. }
  22598. },
  22599. back: {
  22600. height: math.unit(8 + 4 / 12, "feet"),
  22601. weight: math.unit(350, "lb"),
  22602. name: "Back",
  22603. image: {
  22604. source: "./media/characters/sheera-castellar/back.svg",
  22605. extra: 1957 / 1894
  22606. }
  22607. },
  22608. angled: {
  22609. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22610. weight: math.unit(350, "lb"),
  22611. name: "Angled",
  22612. image: {
  22613. source: "./media/characters/sheera-castellar/angled.svg",
  22614. extra: 1807 / 1707,
  22615. bottom: 68 / 1875
  22616. }
  22617. },
  22618. genitals: {
  22619. height: math.unit(2.2, "feet"),
  22620. name: "Genitals",
  22621. image: {
  22622. source: "./media/characters/sheera-castellar/genitals.svg"
  22623. }
  22624. },
  22625. },
  22626. [
  22627. {
  22628. name: "Normal",
  22629. height: math.unit(8 + 4 / 12, "feet")
  22630. },
  22631. {
  22632. name: "Macro",
  22633. height: math.unit(150, "feet"),
  22634. default: true
  22635. },
  22636. {
  22637. name: "Macro+",
  22638. height: math.unit(800, "feet")
  22639. },
  22640. ]
  22641. ))
  22642. characterMakers.push(() => makeCharacter(
  22643. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22644. {
  22645. front: {
  22646. height: math.unit(6, "feet"),
  22647. weight: math.unit(150, "lb"),
  22648. name: "Front",
  22649. image: {
  22650. source: "./media/characters/jaipur/front.svg",
  22651. extra: 3860 / 3731,
  22652. bottom: 287 / 4140
  22653. }
  22654. },
  22655. back: {
  22656. height: math.unit(6, "feet"),
  22657. weight: math.unit(150, "lb"),
  22658. name: "Back",
  22659. image: {
  22660. source: "./media/characters/jaipur/back.svg",
  22661. extra: 4060 / 3930,
  22662. bottom: 151 / 4200
  22663. }
  22664. },
  22665. },
  22666. [
  22667. {
  22668. name: "Normal",
  22669. height: math.unit(1.85, "meters"),
  22670. default: true
  22671. },
  22672. {
  22673. name: "Macro",
  22674. height: math.unit(150, "meters")
  22675. },
  22676. {
  22677. name: "Macro+",
  22678. height: math.unit(0.5, "miles")
  22679. },
  22680. {
  22681. name: "Macro++",
  22682. height: math.unit(2.5, "miles")
  22683. },
  22684. {
  22685. name: "Macro+++",
  22686. height: math.unit(12, "miles")
  22687. },
  22688. {
  22689. name: "Macro++++",
  22690. height: math.unit(120, "miles")
  22691. },
  22692. {
  22693. name: "Macro+++++",
  22694. height: math.unit(1200, "miles")
  22695. },
  22696. ]
  22697. ))
  22698. characterMakers.push(() => makeCharacter(
  22699. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22700. {
  22701. front: {
  22702. height: math.unit(6, "feet"),
  22703. weight: math.unit(150, "lb"),
  22704. name: "Front",
  22705. image: {
  22706. source: "./media/characters/sheila-wolf/front.svg",
  22707. extra: 1931 / 1808,
  22708. bottom: 29.5 / 1960
  22709. }
  22710. },
  22711. dick: {
  22712. height: math.unit(1.464, "feet"),
  22713. name: "Dick",
  22714. image: {
  22715. source: "./media/characters/sheila-wolf/dick.svg"
  22716. }
  22717. },
  22718. muzzle: {
  22719. height: math.unit(0.513, "feet"),
  22720. name: "Muzzle",
  22721. image: {
  22722. source: "./media/characters/sheila-wolf/muzzle.svg"
  22723. }
  22724. },
  22725. },
  22726. [
  22727. {
  22728. name: "Macro",
  22729. height: math.unit(70, "feet"),
  22730. default: true
  22731. },
  22732. ]
  22733. ))
  22734. characterMakers.push(() => makeCharacter(
  22735. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22736. {
  22737. front: {
  22738. height: math.unit(32, "meters"),
  22739. weight: math.unit(300000, "kg"),
  22740. name: "Front",
  22741. image: {
  22742. source: "./media/characters/almor/front.svg",
  22743. extra: 1408 / 1322,
  22744. bottom: 94.6 / 1506.5
  22745. }
  22746. },
  22747. },
  22748. [
  22749. {
  22750. name: "Macro",
  22751. height: math.unit(32, "meters"),
  22752. default: true
  22753. },
  22754. ]
  22755. ))
  22756. characterMakers.push(() => makeCharacter(
  22757. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22758. {
  22759. front: {
  22760. height: math.unit(7, "feet"),
  22761. weight: math.unit(200, "lb"),
  22762. name: "Front",
  22763. image: {
  22764. source: "./media/characters/silver/front.svg",
  22765. extra: 472.1 / 450.5,
  22766. bottom: 26.5 / 499.424
  22767. }
  22768. },
  22769. },
  22770. [
  22771. {
  22772. name: "Normal",
  22773. height: math.unit(7, "feet"),
  22774. default: true
  22775. },
  22776. {
  22777. name: "Macro",
  22778. height: math.unit(800, "feet")
  22779. },
  22780. {
  22781. name: "Megamacro",
  22782. height: math.unit(250, "miles")
  22783. },
  22784. ]
  22785. ))
  22786. characterMakers.push(() => makeCharacter(
  22787. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22788. {
  22789. front: {
  22790. height: math.unit(6, "feet"),
  22791. weight: math.unit(150, "lb"),
  22792. name: "Front",
  22793. image: {
  22794. source: "./media/characters/pliskin/front.svg",
  22795. extra: 1469 / 1359,
  22796. bottom: 70 / 1540
  22797. }
  22798. },
  22799. },
  22800. [
  22801. {
  22802. name: "Micro",
  22803. height: math.unit(3, "inches")
  22804. },
  22805. {
  22806. name: "Normal",
  22807. height: math.unit(5 + 11 / 12, "feet"),
  22808. default: true
  22809. },
  22810. {
  22811. name: "Macro",
  22812. height: math.unit(120, "feet")
  22813. },
  22814. ]
  22815. ))
  22816. characterMakers.push(() => makeCharacter(
  22817. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22818. {
  22819. front: {
  22820. height: math.unit(6, "feet"),
  22821. weight: math.unit(150, "lb"),
  22822. name: "Front",
  22823. image: {
  22824. source: "./media/characters/sammy/front.svg",
  22825. extra: 1193 / 1089,
  22826. bottom: 30.5 / 1226
  22827. }
  22828. },
  22829. },
  22830. [
  22831. {
  22832. name: "Macro",
  22833. height: math.unit(1700, "feet"),
  22834. default: true
  22835. },
  22836. {
  22837. name: "Examacro",
  22838. height: math.unit(2.5e9, "lightyears")
  22839. },
  22840. ]
  22841. ))
  22842. characterMakers.push(() => makeCharacter(
  22843. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22844. {
  22845. front: {
  22846. height: math.unit(21, "meters"),
  22847. weight: math.unit(12, "tonnes"),
  22848. name: "Front",
  22849. image: {
  22850. source: "./media/characters/kuru/front.svg",
  22851. extra: 4301 / 3785,
  22852. bottom: 371.3 / 4691
  22853. }
  22854. },
  22855. },
  22856. [
  22857. {
  22858. name: "Macro",
  22859. height: math.unit(21, "meters"),
  22860. default: true
  22861. },
  22862. ]
  22863. ))
  22864. characterMakers.push(() => makeCharacter(
  22865. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22866. {
  22867. front: {
  22868. height: math.unit(23, "meters"),
  22869. weight: math.unit(12.2, "tonnes"),
  22870. name: "Front",
  22871. image: {
  22872. source: "./media/characters/rakka/front.svg",
  22873. extra: 4670 / 4169,
  22874. bottom: 301 / 4968.7
  22875. }
  22876. },
  22877. },
  22878. [
  22879. {
  22880. name: "Macro",
  22881. height: math.unit(23, "meters"),
  22882. default: true
  22883. },
  22884. ]
  22885. ))
  22886. characterMakers.push(() => makeCharacter(
  22887. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22888. {
  22889. front: {
  22890. height: math.unit(6, "feet"),
  22891. weight: math.unit(150, "lb"),
  22892. name: "Front",
  22893. image: {
  22894. source: "./media/characters/rhys-feline/front.svg",
  22895. extra: 2488 / 2308,
  22896. bottom: 35.67 / 2519.19
  22897. }
  22898. },
  22899. },
  22900. [
  22901. {
  22902. name: "Really Small",
  22903. height: math.unit(1, "nm")
  22904. },
  22905. {
  22906. name: "Micro",
  22907. height: math.unit(4, "inches")
  22908. },
  22909. {
  22910. name: "Normal",
  22911. height: math.unit(4 + 10 / 12, "feet"),
  22912. default: true
  22913. },
  22914. {
  22915. name: "Macro",
  22916. height: math.unit(100, "feet")
  22917. },
  22918. {
  22919. name: "Megamacto",
  22920. height: math.unit(50, "miles")
  22921. },
  22922. ]
  22923. ))
  22924. characterMakers.push(() => makeCharacter(
  22925. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22926. {
  22927. side: {
  22928. height: math.unit(30, "feet"),
  22929. weight: math.unit(35000, "kg"),
  22930. name: "Side",
  22931. image: {
  22932. source: "./media/characters/alydar/side.svg",
  22933. extra: 234 / 222,
  22934. bottom: 6.5 / 241
  22935. }
  22936. },
  22937. front: {
  22938. height: math.unit(30, "feet"),
  22939. weight: math.unit(35000, "kg"),
  22940. name: "Front",
  22941. image: {
  22942. source: "./media/characters/alydar/front.svg",
  22943. extra: 223.37 / 210.2,
  22944. bottom: 22.3 / 246.76
  22945. }
  22946. },
  22947. top: {
  22948. height: math.unit(64.54, "feet"),
  22949. weight: math.unit(35000, "kg"),
  22950. name: "Top",
  22951. image: {
  22952. source: "./media/characters/alydar/top.svg"
  22953. }
  22954. },
  22955. anthro: {
  22956. height: math.unit(30, "feet"),
  22957. weight: math.unit(9000, "kg"),
  22958. name: "Anthro",
  22959. image: {
  22960. source: "./media/characters/alydar/anthro.svg",
  22961. extra: 432 / 421,
  22962. bottom: 7.18 / 440
  22963. }
  22964. },
  22965. maw: {
  22966. height: math.unit(11.693, "feet"),
  22967. name: "Maw",
  22968. image: {
  22969. source: "./media/characters/alydar/maw.svg"
  22970. }
  22971. },
  22972. head: {
  22973. height: math.unit(11.693, "feet"),
  22974. name: "Head",
  22975. image: {
  22976. source: "./media/characters/alydar/head.svg"
  22977. }
  22978. },
  22979. headAlt: {
  22980. height: math.unit(12.861, "feet"),
  22981. name: "Head (Alt)",
  22982. image: {
  22983. source: "./media/characters/alydar/head-alt.svg"
  22984. }
  22985. },
  22986. wing: {
  22987. height: math.unit(20.712, "feet"),
  22988. name: "Wing",
  22989. image: {
  22990. source: "./media/characters/alydar/wing.svg"
  22991. }
  22992. },
  22993. wingFeather: {
  22994. height: math.unit(9.662, "feet"),
  22995. name: "Wing Feather",
  22996. image: {
  22997. source: "./media/characters/alydar/wing-feather.svg"
  22998. }
  22999. },
  23000. countourFeather: {
  23001. height: math.unit(4.154, "feet"),
  23002. name: "Contour Feather",
  23003. image: {
  23004. source: "./media/characters/alydar/contour-feather.svg"
  23005. }
  23006. },
  23007. },
  23008. [
  23009. {
  23010. name: "Diplomatic",
  23011. height: math.unit(13, "feet"),
  23012. default: true
  23013. },
  23014. {
  23015. name: "Small",
  23016. height: math.unit(30, "feet")
  23017. },
  23018. {
  23019. name: "Normal",
  23020. height: math.unit(95, "feet"),
  23021. default: true
  23022. },
  23023. {
  23024. name: "Large",
  23025. height: math.unit(285, "feet")
  23026. },
  23027. {
  23028. name: "Incomprehensible",
  23029. height: math.unit(450, "megameters")
  23030. },
  23031. ]
  23032. ))
  23033. characterMakers.push(() => makeCharacter(
  23034. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23035. {
  23036. side: {
  23037. height: math.unit(11, "feet"),
  23038. weight: math.unit(1750, "kg"),
  23039. name: "Side",
  23040. image: {
  23041. source: "./media/characters/selicia/side.svg",
  23042. extra: 440 / 396,
  23043. bottom: 24.8 / 465.979
  23044. }
  23045. },
  23046. maw: {
  23047. height: math.unit(4.665, "feet"),
  23048. name: "Maw",
  23049. image: {
  23050. source: "./media/characters/selicia/maw.svg"
  23051. }
  23052. },
  23053. },
  23054. [
  23055. {
  23056. name: "Normal",
  23057. height: math.unit(11, "feet"),
  23058. default: true
  23059. },
  23060. ]
  23061. ))
  23062. characterMakers.push(() => makeCharacter(
  23063. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23064. {
  23065. side: {
  23066. height: math.unit(2 + 6 / 12, "feet"),
  23067. weight: math.unit(30, "lb"),
  23068. name: "Side",
  23069. image: {
  23070. source: "./media/characters/layla/side.svg",
  23071. extra: 244 / 188,
  23072. bottom: 18.2 / 262.1
  23073. }
  23074. },
  23075. back: {
  23076. height: math.unit(2 + 6 / 12, "feet"),
  23077. weight: math.unit(30, "lb"),
  23078. name: "Back",
  23079. image: {
  23080. source: "./media/characters/layla/back.svg",
  23081. extra: 308 / 241.5,
  23082. bottom: 8.9 / 316.8
  23083. }
  23084. },
  23085. cumming: {
  23086. height: math.unit(2 + 6 / 12, "feet"),
  23087. weight: math.unit(30, "lb"),
  23088. name: "Cumming",
  23089. image: {
  23090. source: "./media/characters/layla/cumming.svg",
  23091. extra: 342 / 279,
  23092. bottom: 595 / 938
  23093. }
  23094. },
  23095. dickFlaccid: {
  23096. height: math.unit(2.595, "feet"),
  23097. name: "Flaccid Genitals",
  23098. image: {
  23099. source: "./media/characters/layla/dick-flaccid.svg"
  23100. }
  23101. },
  23102. dickErect: {
  23103. height: math.unit(2.359, "feet"),
  23104. name: "Erect Genitals",
  23105. image: {
  23106. source: "./media/characters/layla/dick-erect.svg"
  23107. }
  23108. },
  23109. },
  23110. [
  23111. {
  23112. name: "Micro",
  23113. height: math.unit(1, "inch")
  23114. },
  23115. {
  23116. name: "Small",
  23117. height: math.unit(1, "foot")
  23118. },
  23119. {
  23120. name: "Normal",
  23121. height: math.unit(2 + 6 / 12, "feet"),
  23122. default: true
  23123. },
  23124. {
  23125. name: "Macro",
  23126. height: math.unit(200, "feet")
  23127. },
  23128. {
  23129. name: "Megamacro",
  23130. height: math.unit(1000, "miles")
  23131. },
  23132. {
  23133. name: "Planetary",
  23134. height: math.unit(8000, "miles")
  23135. },
  23136. {
  23137. name: "True Layla",
  23138. height: math.unit(200000 * 7, "multiverses")
  23139. },
  23140. ]
  23141. ))
  23142. characterMakers.push(() => makeCharacter(
  23143. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23144. {
  23145. back: {
  23146. height: math.unit(10.5, "feet"),
  23147. weight: math.unit(800, "lb"),
  23148. name: "Back",
  23149. image: {
  23150. source: "./media/characters/knox/back.svg",
  23151. extra: 1486 / 1089,
  23152. bottom: 107 / 1601.4
  23153. }
  23154. },
  23155. side: {
  23156. height: math.unit(10.5, "feet"),
  23157. weight: math.unit(800, "lb"),
  23158. name: "Side",
  23159. image: {
  23160. source: "./media/characters/knox/side.svg",
  23161. extra: 244 / 218,
  23162. bottom: 14 / 260
  23163. }
  23164. },
  23165. },
  23166. [
  23167. {
  23168. name: "Compact",
  23169. height: math.unit(10.5, "feet"),
  23170. default: true
  23171. },
  23172. {
  23173. name: "Dynamax",
  23174. height: math.unit(210, "feet")
  23175. },
  23176. {
  23177. name: "Full Macro",
  23178. height: math.unit(850, "feet")
  23179. },
  23180. ]
  23181. ))
  23182. characterMakers.push(() => makeCharacter(
  23183. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23184. {
  23185. front: {
  23186. height: math.unit(6, "feet"),
  23187. weight: math.unit(152, "lb"),
  23188. name: "Front",
  23189. image: {
  23190. source: "./media/characters/shin-pikachu/front.svg",
  23191. extra: 1574 / 1480,
  23192. bottom: 53.3 / 1626
  23193. }
  23194. },
  23195. hand: {
  23196. height: math.unit(1.055, "feet"),
  23197. name: "Hand",
  23198. image: {
  23199. source: "./media/characters/shin-pikachu/hand.svg"
  23200. }
  23201. },
  23202. foot: {
  23203. height: math.unit(1.1, "feet"),
  23204. name: "Foot",
  23205. image: {
  23206. source: "./media/characters/shin-pikachu/foot.svg"
  23207. }
  23208. },
  23209. collar: {
  23210. height: math.unit(0.386, "feet"),
  23211. name: "Collar",
  23212. image: {
  23213. source: "./media/characters/shin-pikachu/collar.svg"
  23214. }
  23215. },
  23216. },
  23217. [
  23218. {
  23219. name: "Smallest",
  23220. height: math.unit(0.5, "inches")
  23221. },
  23222. {
  23223. name: "Micro",
  23224. height: math.unit(6, "inches")
  23225. },
  23226. {
  23227. name: "Normal",
  23228. height: math.unit(6, "feet"),
  23229. default: true
  23230. },
  23231. {
  23232. name: "Macro",
  23233. height: math.unit(150, "feet")
  23234. },
  23235. ]
  23236. ))
  23237. characterMakers.push(() => makeCharacter(
  23238. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23239. {
  23240. front: {
  23241. height: math.unit(28, "feet"),
  23242. weight: math.unit(10500, "lb"),
  23243. name: "Front",
  23244. image: {
  23245. source: "./media/characters/kayda/front.svg",
  23246. extra: 1536 / 1428,
  23247. bottom: 68.7 / 1603
  23248. }
  23249. },
  23250. back: {
  23251. height: math.unit(28, "feet"),
  23252. weight: math.unit(10500, "lb"),
  23253. name: "Back",
  23254. image: {
  23255. source: "./media/characters/kayda/back.svg",
  23256. extra: 1557 / 1464,
  23257. bottom: 39.5 / 1597.49
  23258. }
  23259. },
  23260. dick: {
  23261. height: math.unit(3.858, "feet"),
  23262. name: "Dick",
  23263. image: {
  23264. source: "./media/characters/kayda/dick.svg"
  23265. }
  23266. },
  23267. },
  23268. [
  23269. {
  23270. name: "Macro",
  23271. height: math.unit(28, "feet"),
  23272. default: true
  23273. },
  23274. ]
  23275. ))
  23276. characterMakers.push(() => makeCharacter(
  23277. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23278. {
  23279. front: {
  23280. height: math.unit(10 + 11 / 12, "feet"),
  23281. weight: math.unit(1400, "lb"),
  23282. name: "Front",
  23283. image: {
  23284. source: "./media/characters/brian/front.svg",
  23285. extra: 737 / 692,
  23286. bottom: 55.4 / 785
  23287. }
  23288. },
  23289. },
  23290. [
  23291. {
  23292. name: "Normal",
  23293. height: math.unit(10 + 11 / 12, "feet"),
  23294. default: true
  23295. },
  23296. ]
  23297. ))
  23298. characterMakers.push(() => makeCharacter(
  23299. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23300. {
  23301. front: {
  23302. height: math.unit(5 + 8 / 12, "feet"),
  23303. weight: math.unit(140, "lb"),
  23304. name: "Front",
  23305. image: {
  23306. source: "./media/characters/khemri/front.svg",
  23307. extra: 4780 / 4059,
  23308. bottom: 80.1 / 4859.25
  23309. }
  23310. },
  23311. },
  23312. [
  23313. {
  23314. name: "Micro",
  23315. height: math.unit(6, "inches")
  23316. },
  23317. {
  23318. name: "Normal",
  23319. height: math.unit(5 + 8 / 12, "feet"),
  23320. default: true
  23321. },
  23322. ]
  23323. ))
  23324. characterMakers.push(() => makeCharacter(
  23325. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23326. {
  23327. front: {
  23328. height: math.unit(13, "feet"),
  23329. weight: math.unit(1700, "lb"),
  23330. name: "Front",
  23331. image: {
  23332. source: "./media/characters/felix-braveheart/front.svg",
  23333. extra: 1222 / 1157,
  23334. bottom: 53.2 / 1280
  23335. }
  23336. },
  23337. back: {
  23338. height: math.unit(13, "feet"),
  23339. weight: math.unit(1700, "lb"),
  23340. name: "Back",
  23341. image: {
  23342. source: "./media/characters/felix-braveheart/back.svg",
  23343. extra: 1277 / 1203,
  23344. bottom: 50.2 / 1327
  23345. }
  23346. },
  23347. feral: {
  23348. height: math.unit(6, "feet"),
  23349. weight: math.unit(400, "lb"),
  23350. name: "Feral",
  23351. image: {
  23352. source: "./media/characters/felix-braveheart/feral.svg",
  23353. extra: 682 / 625,
  23354. bottom: 6.9 / 688
  23355. }
  23356. },
  23357. },
  23358. [
  23359. {
  23360. name: "Normal",
  23361. height: math.unit(13, "feet"),
  23362. default: true
  23363. },
  23364. ]
  23365. ))
  23366. characterMakers.push(() => makeCharacter(
  23367. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23368. {
  23369. side: {
  23370. height: math.unit(5 + 11 / 12, "feet"),
  23371. weight: math.unit(1400, "lb"),
  23372. name: "Side",
  23373. image: {
  23374. source: "./media/characters/shadow-blade/side.svg",
  23375. extra: 1726 / 1267,
  23376. bottom: 58.4 / 1785
  23377. }
  23378. },
  23379. },
  23380. [
  23381. {
  23382. name: "Normal",
  23383. height: math.unit(5 + 11 / 12, "feet"),
  23384. default: true
  23385. },
  23386. ]
  23387. ))
  23388. characterMakers.push(() => makeCharacter(
  23389. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23390. {
  23391. front: {
  23392. height: math.unit(1 + 6 / 12, "feet"),
  23393. weight: math.unit(25, "lb"),
  23394. name: "Front",
  23395. image: {
  23396. source: "./media/characters/karla-halldor/front.svg",
  23397. extra: 1459 / 1383,
  23398. bottom: 12 / 1472
  23399. }
  23400. },
  23401. },
  23402. [
  23403. {
  23404. name: "Normal",
  23405. height: math.unit(1 + 6 / 12, "feet"),
  23406. default: true
  23407. },
  23408. ]
  23409. ))
  23410. characterMakers.push(() => makeCharacter(
  23411. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23412. {
  23413. front: {
  23414. height: math.unit(6 + 2 / 12, "feet"),
  23415. weight: math.unit(160, "lb"),
  23416. name: "Front",
  23417. image: {
  23418. source: "./media/characters/ariam/front.svg",
  23419. extra: 714 / 617,
  23420. bottom: 23.4 / 737,
  23421. }
  23422. },
  23423. squatting: {
  23424. height: math.unit(4.1, "feet"),
  23425. weight: math.unit(160, "lb"),
  23426. name: "Squatting",
  23427. image: {
  23428. source: "./media/characters/ariam/squatting.svg",
  23429. extra: 2617 / 2112,
  23430. bottom: 61.2 / 2681,
  23431. }
  23432. },
  23433. },
  23434. [
  23435. {
  23436. name: "Normal",
  23437. height: math.unit(6 + 2 / 12, "feet"),
  23438. default: true
  23439. },
  23440. {
  23441. name: "Normal+",
  23442. height: math.unit(4, "meters")
  23443. },
  23444. {
  23445. name: "Macro",
  23446. height: math.unit(50, "meters")
  23447. },
  23448. {
  23449. name: "Macro+",
  23450. height: math.unit(100, "meters")
  23451. },
  23452. {
  23453. name: "Megamacro",
  23454. height: math.unit(20, "km")
  23455. },
  23456. ]
  23457. ))
  23458. characterMakers.push(() => makeCharacter(
  23459. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23460. {
  23461. front: {
  23462. height: math.unit(1.67, "meters"),
  23463. weight: math.unit(140, "lb"),
  23464. name: "Front",
  23465. image: {
  23466. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23467. extra: 438 / 410,
  23468. bottom: 0.75 / 439
  23469. }
  23470. },
  23471. },
  23472. [
  23473. {
  23474. name: "Shrunken",
  23475. height: math.unit(7.6, "cm")
  23476. },
  23477. {
  23478. name: "Human Scale",
  23479. height: math.unit(1.67, "meters")
  23480. },
  23481. {
  23482. name: "Wolxi Scale",
  23483. height: math.unit(36.7, "meters"),
  23484. default: true
  23485. },
  23486. ]
  23487. ))
  23488. characterMakers.push(() => makeCharacter(
  23489. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23490. {
  23491. front: {
  23492. height: math.unit(1.73, "meters"),
  23493. weight: math.unit(240, "lb"),
  23494. name: "Front",
  23495. image: {
  23496. source: "./media/characters/izue-two-mothers/front.svg",
  23497. extra: 469 / 437,
  23498. bottom: 1.24 / 470.6
  23499. }
  23500. },
  23501. },
  23502. [
  23503. {
  23504. name: "Shrunken",
  23505. height: math.unit(7.86, "cm")
  23506. },
  23507. {
  23508. name: "Human Scale",
  23509. height: math.unit(1.73, "meters")
  23510. },
  23511. {
  23512. name: "Wolxi Scale",
  23513. height: math.unit(38, "meters"),
  23514. default: true
  23515. },
  23516. ]
  23517. ))
  23518. characterMakers.push(() => makeCharacter(
  23519. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23520. {
  23521. front: {
  23522. height: math.unit(1.55, "meters"),
  23523. weight: math.unit(120, "lb"),
  23524. name: "Front",
  23525. image: {
  23526. source: "./media/characters/teeku-love-shack/front.svg",
  23527. extra: 387 / 362,
  23528. bottom: 1.51 / 388
  23529. }
  23530. },
  23531. },
  23532. [
  23533. {
  23534. name: "Shrunken",
  23535. height: math.unit(7, "cm")
  23536. },
  23537. {
  23538. name: "Human Scale",
  23539. height: math.unit(1.55, "meters")
  23540. },
  23541. {
  23542. name: "Wolxi Scale",
  23543. height: math.unit(34.1, "meters"),
  23544. default: true
  23545. },
  23546. ]
  23547. ))
  23548. characterMakers.push(() => makeCharacter(
  23549. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23550. {
  23551. front: {
  23552. height: math.unit(1.83, "meters"),
  23553. weight: math.unit(135, "lb"),
  23554. name: "Front",
  23555. image: {
  23556. source: "./media/characters/dejma-the-red/front.svg",
  23557. extra: 480 / 458,
  23558. bottom: 1.8 / 482
  23559. }
  23560. },
  23561. },
  23562. [
  23563. {
  23564. name: "Shrunken",
  23565. height: math.unit(8.3, "cm")
  23566. },
  23567. {
  23568. name: "Human Scale",
  23569. height: math.unit(1.83, "meters")
  23570. },
  23571. {
  23572. name: "Wolxi Scale",
  23573. height: math.unit(40, "meters"),
  23574. default: true
  23575. },
  23576. ]
  23577. ))
  23578. characterMakers.push(() => makeCharacter(
  23579. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23580. {
  23581. front: {
  23582. height: math.unit(1.78, "meters"),
  23583. weight: math.unit(65, "kg"),
  23584. name: "Front",
  23585. image: {
  23586. source: "./media/characters/aki/front.svg",
  23587. extra: 452 / 415
  23588. }
  23589. },
  23590. frontNsfw: {
  23591. height: math.unit(1.78, "meters"),
  23592. weight: math.unit(65, "kg"),
  23593. name: "Front (NSFW)",
  23594. image: {
  23595. source: "./media/characters/aki/front-nsfw.svg",
  23596. extra: 452 / 415
  23597. }
  23598. },
  23599. back: {
  23600. height: math.unit(1.78, "meters"),
  23601. weight: math.unit(65, "kg"),
  23602. name: "Back",
  23603. image: {
  23604. source: "./media/characters/aki/back.svg",
  23605. extra: 452 / 415
  23606. }
  23607. },
  23608. rump: {
  23609. height: math.unit(2.05, "feet"),
  23610. name: "Rump",
  23611. image: {
  23612. source: "./media/characters/aki/rump.svg"
  23613. }
  23614. },
  23615. dick: {
  23616. height: math.unit(0.95, "feet"),
  23617. name: "Dick",
  23618. image: {
  23619. source: "./media/characters/aki/dick.svg"
  23620. }
  23621. },
  23622. },
  23623. [
  23624. {
  23625. name: "Micro",
  23626. height: math.unit(15, "cm")
  23627. },
  23628. {
  23629. name: "Normal",
  23630. height: math.unit(178, "cm"),
  23631. default: true
  23632. },
  23633. {
  23634. name: "Macro",
  23635. height: math.unit(214, "m")
  23636. },
  23637. {
  23638. name: "Macro+",
  23639. height: math.unit(534, "m")
  23640. },
  23641. ]
  23642. ))
  23643. characterMakers.push(() => makeCharacter(
  23644. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23645. {
  23646. front: {
  23647. height: math.unit(5 + 5 / 12, "feet"),
  23648. weight: math.unit(120, "lb"),
  23649. name: "Front",
  23650. image: {
  23651. source: "./media/characters/ari/front.svg",
  23652. extra: 714.5 / 682,
  23653. bottom: 8 / 722.5
  23654. }
  23655. },
  23656. },
  23657. [
  23658. {
  23659. name: "Normal",
  23660. height: math.unit(5 + 5 / 12, "feet")
  23661. },
  23662. {
  23663. name: "Macro",
  23664. height: math.unit(100, "feet"),
  23665. default: true
  23666. },
  23667. {
  23668. name: "Megamacro",
  23669. height: math.unit(100, "miles")
  23670. },
  23671. {
  23672. name: "Gigamacro",
  23673. height: math.unit(80000, "miles")
  23674. },
  23675. ]
  23676. ))
  23677. characterMakers.push(() => makeCharacter(
  23678. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23679. {
  23680. side: {
  23681. height: math.unit(9, "feet"),
  23682. weight: math.unit(400, "kg"),
  23683. name: "Side",
  23684. image: {
  23685. source: "./media/characters/bolt/side.svg",
  23686. extra: 1126 / 896,
  23687. bottom: 60 / 1187.3,
  23688. }
  23689. },
  23690. },
  23691. [
  23692. {
  23693. name: "Micro",
  23694. height: math.unit(5, "inches")
  23695. },
  23696. {
  23697. name: "Normal",
  23698. height: math.unit(9, "feet"),
  23699. default: true
  23700. },
  23701. {
  23702. name: "Macro",
  23703. height: math.unit(700, "feet")
  23704. },
  23705. {
  23706. name: "Max Size",
  23707. height: math.unit(1.52e22, "yottameters")
  23708. },
  23709. ]
  23710. ))
  23711. characterMakers.push(() => makeCharacter(
  23712. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23713. {
  23714. front: {
  23715. height: math.unit(4.53, "meters"),
  23716. weight: math.unit(3, "tons"),
  23717. name: "Front",
  23718. image: {
  23719. source: "./media/characters/draekon-sylviar/front.svg",
  23720. extra: 1228 / 1068,
  23721. bottom: 41 / 1270
  23722. }
  23723. },
  23724. tail: {
  23725. height: math.unit(1.772, "meter"),
  23726. name: "Tail",
  23727. image: {
  23728. source: "./media/characters/draekon-sylviar/tail.svg"
  23729. }
  23730. },
  23731. head: {
  23732. height: math.unit(1.331, "meter"),
  23733. name: "Head",
  23734. image: {
  23735. source: "./media/characters/draekon-sylviar/head.svg"
  23736. }
  23737. },
  23738. hand: {
  23739. height: math.unit(0.564, "meter"),
  23740. name: "Hand",
  23741. image: {
  23742. source: "./media/characters/draekon-sylviar/hand.svg"
  23743. }
  23744. },
  23745. foot: {
  23746. height: math.unit(0.621, "meter"),
  23747. name: "Foot",
  23748. image: {
  23749. source: "./media/characters/draekon-sylviar/foot.svg",
  23750. bottom: 32 / 324
  23751. }
  23752. },
  23753. dick: {
  23754. height: math.unit(61, "cm"),
  23755. name: "Dick",
  23756. image: {
  23757. source: "./media/characters/draekon-sylviar/dick.svg"
  23758. }
  23759. },
  23760. dickseparated: {
  23761. height: math.unit(61, "cm"),
  23762. name: "Dick-separated",
  23763. image: {
  23764. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23765. }
  23766. },
  23767. },
  23768. [
  23769. {
  23770. name: "Small",
  23771. height: math.unit(4.53 / 2, "meters"),
  23772. default: true
  23773. },
  23774. {
  23775. name: "Normal",
  23776. height: math.unit(4.53, "meters"),
  23777. default: true
  23778. },
  23779. {
  23780. name: "Large",
  23781. height: math.unit(4.53 * 2, "meters"),
  23782. },
  23783. ]
  23784. ))
  23785. characterMakers.push(() => makeCharacter(
  23786. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23787. {
  23788. front: {
  23789. height: math.unit(6 + 2 / 12, "feet"),
  23790. weight: math.unit(180, "lb"),
  23791. name: "Front",
  23792. image: {
  23793. source: "./media/characters/brawler/front.svg",
  23794. extra: 3301 / 3027,
  23795. bottom: 138 / 3439
  23796. }
  23797. },
  23798. },
  23799. [
  23800. {
  23801. name: "Normal",
  23802. height: math.unit(6 + 2 / 12, "feet"),
  23803. default: true
  23804. },
  23805. ]
  23806. ))
  23807. characterMakers.push(() => makeCharacter(
  23808. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23809. {
  23810. front: {
  23811. height: math.unit(11, "feet"),
  23812. weight: math.unit(1000, "lb"),
  23813. name: "Front",
  23814. image: {
  23815. source: "./media/characters/alex/front.svg",
  23816. bottom: 44.5 / 620
  23817. }
  23818. },
  23819. },
  23820. [
  23821. {
  23822. name: "Micro",
  23823. height: math.unit(5, "inches")
  23824. },
  23825. {
  23826. name: "Normal",
  23827. height: math.unit(11, "feet"),
  23828. default: true
  23829. },
  23830. {
  23831. name: "Macro",
  23832. height: math.unit(9.5e9, "feet")
  23833. },
  23834. {
  23835. name: "Max Size",
  23836. height: math.unit(1.4e283, "yottameters")
  23837. },
  23838. ]
  23839. ))
  23840. characterMakers.push(() => makeCharacter(
  23841. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23842. {
  23843. female: {
  23844. height: math.unit(29.9, "m"),
  23845. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23846. name: "Female",
  23847. image: {
  23848. source: "./media/characters/zenari/female.svg",
  23849. extra: 3281.6 / 3217,
  23850. bottom: 72.2 / 3353
  23851. }
  23852. },
  23853. male: {
  23854. height: math.unit(27.7, "m"),
  23855. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23856. name: "Male",
  23857. image: {
  23858. source: "./media/characters/zenari/male.svg",
  23859. extra: 3008 / 2991,
  23860. bottom: 54.6 / 3069
  23861. }
  23862. },
  23863. },
  23864. [
  23865. {
  23866. name: "Macro",
  23867. height: math.unit(29.7, "meters"),
  23868. default: true
  23869. },
  23870. ]
  23871. ))
  23872. characterMakers.push(() => makeCharacter(
  23873. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23874. {
  23875. female: {
  23876. height: math.unit(23.8, "m"),
  23877. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23878. name: "Female",
  23879. image: {
  23880. source: "./media/characters/mactarian/female.svg",
  23881. extra: 2662 / 2569,
  23882. bottom: 73 / 2736
  23883. }
  23884. },
  23885. male: {
  23886. height: math.unit(23.8, "m"),
  23887. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23888. name: "Male",
  23889. image: {
  23890. source: "./media/characters/mactarian/male.svg",
  23891. extra: 2673 / 2600,
  23892. bottom: 76 / 2750
  23893. }
  23894. },
  23895. },
  23896. [
  23897. {
  23898. name: "Macro",
  23899. height: math.unit(23.8, "meters"),
  23900. default: true
  23901. },
  23902. ]
  23903. ))
  23904. characterMakers.push(() => makeCharacter(
  23905. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23906. {
  23907. female: {
  23908. height: math.unit(19.3, "m"),
  23909. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23910. name: "Female",
  23911. image: {
  23912. source: "./media/characters/umok/female.svg",
  23913. extra: 2186 / 2078,
  23914. bottom: 87 / 2277
  23915. }
  23916. },
  23917. male: {
  23918. height: math.unit(19.5, "m"),
  23919. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23920. name: "Male",
  23921. image: {
  23922. source: "./media/characters/umok/male.svg",
  23923. extra: 2233 / 2140,
  23924. bottom: 24.4 / 2258
  23925. }
  23926. },
  23927. },
  23928. [
  23929. {
  23930. name: "Macro",
  23931. height: math.unit(19.3, "meters"),
  23932. default: true
  23933. },
  23934. ]
  23935. ))
  23936. characterMakers.push(() => makeCharacter(
  23937. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23938. {
  23939. female: {
  23940. height: math.unit(26.15, "m"),
  23941. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23942. name: "Female",
  23943. image: {
  23944. source: "./media/characters/joraxian/female.svg",
  23945. extra: 2912 / 2824,
  23946. bottom: 36 / 2956
  23947. }
  23948. },
  23949. male: {
  23950. height: math.unit(25.4, "m"),
  23951. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23952. name: "Male",
  23953. image: {
  23954. source: "./media/characters/joraxian/male.svg",
  23955. extra: 2877 / 2721,
  23956. bottom: 82 / 2967
  23957. }
  23958. },
  23959. },
  23960. [
  23961. {
  23962. name: "Macro",
  23963. height: math.unit(26.15, "meters"),
  23964. default: true
  23965. },
  23966. ]
  23967. ))
  23968. characterMakers.push(() => makeCharacter(
  23969. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23970. {
  23971. female: {
  23972. height: math.unit(21.6, "m"),
  23973. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23974. name: "Female",
  23975. image: {
  23976. source: "./media/characters/sthara/female.svg",
  23977. extra: 2516 / 2347,
  23978. bottom: 21.5 / 2537
  23979. }
  23980. },
  23981. male: {
  23982. height: math.unit(24, "m"),
  23983. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23984. name: "Male",
  23985. image: {
  23986. source: "./media/characters/sthara/male.svg",
  23987. extra: 2732 / 2607,
  23988. bottom: 23 / 2732
  23989. }
  23990. },
  23991. },
  23992. [
  23993. {
  23994. name: "Macro",
  23995. height: math.unit(21.6, "meters"),
  23996. default: true
  23997. },
  23998. ]
  23999. ))
  24000. characterMakers.push(() => makeCharacter(
  24001. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24002. {
  24003. front: {
  24004. height: math.unit(6 + 4 / 12, "feet"),
  24005. weight: math.unit(175, "lb"),
  24006. name: "Front",
  24007. image: {
  24008. source: "./media/characters/luka-bryzant/front.svg",
  24009. extra: 311 / 289,
  24010. bottom: 4 / 315
  24011. }
  24012. },
  24013. back: {
  24014. height: math.unit(6 + 4 / 12, "feet"),
  24015. weight: math.unit(175, "lb"),
  24016. name: "Back",
  24017. image: {
  24018. source: "./media/characters/luka-bryzant/back.svg",
  24019. extra: 311 / 289,
  24020. bottom: 3.8 / 313.7
  24021. }
  24022. },
  24023. },
  24024. [
  24025. {
  24026. name: "Micro",
  24027. height: math.unit(10, "inches")
  24028. },
  24029. {
  24030. name: "Normal",
  24031. height: math.unit(6 + 4 / 12, "feet"),
  24032. default: true
  24033. },
  24034. {
  24035. name: "Large",
  24036. height: math.unit(12, "feet")
  24037. },
  24038. ]
  24039. ))
  24040. characterMakers.push(() => makeCharacter(
  24041. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24042. {
  24043. front: {
  24044. height: math.unit(5 + 7 / 12, "feet"),
  24045. weight: math.unit(185, "lb"),
  24046. name: "Front",
  24047. image: {
  24048. source: "./media/characters/aman-aquila/front.svg",
  24049. extra: 1013 / 976,
  24050. bottom: 45.6 / 1057
  24051. }
  24052. },
  24053. side: {
  24054. height: math.unit(5 + 7 / 12, "feet"),
  24055. weight: math.unit(185, "lb"),
  24056. name: "Side",
  24057. image: {
  24058. source: "./media/characters/aman-aquila/side.svg",
  24059. extra: 1054 / 1011,
  24060. bottom: 15 / 1070
  24061. }
  24062. },
  24063. back: {
  24064. height: math.unit(5 + 7 / 12, "feet"),
  24065. weight: math.unit(185, "lb"),
  24066. name: "Back",
  24067. image: {
  24068. source: "./media/characters/aman-aquila/back.svg",
  24069. extra: 1026 / 970,
  24070. bottom: 12 / 1039
  24071. }
  24072. },
  24073. head: {
  24074. height: math.unit(1.211, "feet"),
  24075. name: "Head",
  24076. image: {
  24077. source: "./media/characters/aman-aquila/head.svg",
  24078. }
  24079. },
  24080. },
  24081. [
  24082. {
  24083. name: "Minimicro",
  24084. height: math.unit(0.057, "inches")
  24085. },
  24086. {
  24087. name: "Micro",
  24088. height: math.unit(7, "inches")
  24089. },
  24090. {
  24091. name: "Mini",
  24092. height: math.unit(3 + 7 / 12, "feet")
  24093. },
  24094. {
  24095. name: "Normal",
  24096. height: math.unit(5 + 7 / 12, "feet"),
  24097. default: true
  24098. },
  24099. {
  24100. name: "Macro",
  24101. height: math.unit(157 + 7 / 12, "feet")
  24102. },
  24103. {
  24104. name: "Megamacro",
  24105. height: math.unit(1557 + 7 / 12, "feet")
  24106. },
  24107. {
  24108. name: "Gigamacro",
  24109. height: math.unit(15557 + 7 / 12, "feet")
  24110. },
  24111. ]
  24112. ))
  24113. characterMakers.push(() => makeCharacter(
  24114. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24115. {
  24116. front: {
  24117. height: math.unit(3 + 2 / 12, "inches"),
  24118. weight: math.unit(0.3, "ounces"),
  24119. name: "Front",
  24120. image: {
  24121. source: "./media/characters/hiphae/front.svg",
  24122. extra: 1931 / 1683,
  24123. bottom: 24 / 1955
  24124. }
  24125. },
  24126. },
  24127. [
  24128. {
  24129. name: "Normal",
  24130. height: math.unit(3 + 1 / 2, "inches"),
  24131. default: true
  24132. },
  24133. ]
  24134. ))
  24135. characterMakers.push(() => makeCharacter(
  24136. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24137. {
  24138. front: {
  24139. height: math.unit(5 + 10 / 12, "feet"),
  24140. weight: math.unit(165, "lb"),
  24141. name: "Front",
  24142. image: {
  24143. source: "./media/characters/nicky/front.svg",
  24144. extra: 3144 / 2886,
  24145. bottom: 45.6 / 3192
  24146. }
  24147. },
  24148. back: {
  24149. height: math.unit(5 + 10 / 12, "feet"),
  24150. weight: math.unit(165, "lb"),
  24151. name: "Back",
  24152. image: {
  24153. source: "./media/characters/nicky/back.svg",
  24154. extra: 3055 / 2804,
  24155. bottom: 28.4 / 3087
  24156. }
  24157. },
  24158. frontclothed: {
  24159. height: math.unit(5 + 10 / 12, "feet"),
  24160. weight: math.unit(165, "lb"),
  24161. name: "Front-clothed",
  24162. image: {
  24163. source: "./media/characters/nicky/front-clothed.svg",
  24164. extra: 3184.9 / 2926.9,
  24165. bottom: 86.5 / 3239.9
  24166. }
  24167. },
  24168. foot: {
  24169. height: math.unit(1.16, "feet"),
  24170. name: "Foot",
  24171. image: {
  24172. source: "./media/characters/nicky/foot.svg"
  24173. }
  24174. },
  24175. feet: {
  24176. height: math.unit(1.34, "feet"),
  24177. name: "Feet",
  24178. image: {
  24179. source: "./media/characters/nicky/feet.svg"
  24180. }
  24181. },
  24182. maw: {
  24183. height: math.unit(0.9, "feet"),
  24184. name: "Maw",
  24185. image: {
  24186. source: "./media/characters/nicky/maw.svg"
  24187. }
  24188. },
  24189. },
  24190. [
  24191. {
  24192. name: "Normal",
  24193. height: math.unit(5 + 10 / 12, "feet"),
  24194. default: true
  24195. },
  24196. {
  24197. name: "Macro",
  24198. height: math.unit(60, "feet")
  24199. },
  24200. {
  24201. name: "Megamacro",
  24202. height: math.unit(1, "mile")
  24203. },
  24204. ]
  24205. ))
  24206. characterMakers.push(() => makeCharacter(
  24207. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24208. {
  24209. side: {
  24210. height: math.unit(10, "feet"),
  24211. weight: math.unit(600, "lb"),
  24212. name: "Side",
  24213. image: {
  24214. source: "./media/characters/blair/side.svg",
  24215. bottom: 16.6 / 475,
  24216. extra: 458 / 431
  24217. }
  24218. },
  24219. },
  24220. [
  24221. {
  24222. name: "Micro",
  24223. height: math.unit(8, "inches")
  24224. },
  24225. {
  24226. name: "Normal",
  24227. height: math.unit(10, "feet"),
  24228. default: true
  24229. },
  24230. {
  24231. name: "Macro",
  24232. height: math.unit(180, "feet")
  24233. },
  24234. ]
  24235. ))
  24236. characterMakers.push(() => makeCharacter(
  24237. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24238. {
  24239. front: {
  24240. height: math.unit(5 + 4 / 12, "feet"),
  24241. weight: math.unit(125, "lb"),
  24242. name: "Front",
  24243. image: {
  24244. source: "./media/characters/fisher/front.svg",
  24245. extra: 444 / 390,
  24246. bottom: 2 / 444.8
  24247. }
  24248. },
  24249. },
  24250. [
  24251. {
  24252. name: "Micro",
  24253. height: math.unit(4, "inches")
  24254. },
  24255. {
  24256. name: "Normal",
  24257. height: math.unit(5 + 4 / 12, "feet"),
  24258. default: true
  24259. },
  24260. {
  24261. name: "Macro",
  24262. height: math.unit(100, "feet")
  24263. },
  24264. ]
  24265. ))
  24266. characterMakers.push(() => makeCharacter(
  24267. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24268. {
  24269. front: {
  24270. height: math.unit(6.71, "feet"),
  24271. weight: math.unit(200, "lb"),
  24272. capacity: math.unit(1000000, "people"),
  24273. name: "Front",
  24274. image: {
  24275. source: "./media/characters/gliss/front.svg",
  24276. extra: 2347 / 2231,
  24277. bottom: 113 / 2462
  24278. }
  24279. },
  24280. hammerspaceSize: {
  24281. height: math.unit(6.71 * 717, "feet"),
  24282. weight: math.unit(200, "lb"),
  24283. capacity: math.unit(1000000, "people"),
  24284. name: "Hammerspace Size",
  24285. image: {
  24286. source: "./media/characters/gliss/front.svg",
  24287. extra: 2347 / 2231,
  24288. bottom: 113 / 2462
  24289. }
  24290. },
  24291. },
  24292. [
  24293. {
  24294. name: "Normal",
  24295. height: math.unit(6.71, "feet"),
  24296. default: true
  24297. },
  24298. ]
  24299. ))
  24300. characterMakers.push(() => makeCharacter(
  24301. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24302. {
  24303. side: {
  24304. height: math.unit(1.44, "m"),
  24305. weight: math.unit(80, "kg"),
  24306. name: "Side",
  24307. image: {
  24308. source: "./media/characters/dune-anderson/side.svg",
  24309. bottom: 49 / 1426
  24310. }
  24311. },
  24312. },
  24313. [
  24314. {
  24315. name: "Wolf-sized",
  24316. height: math.unit(1.44, "meters")
  24317. },
  24318. {
  24319. name: "Normal",
  24320. height: math.unit(5.05, "meters"),
  24321. default: true
  24322. },
  24323. {
  24324. name: "Big",
  24325. height: math.unit(14.4, "meters")
  24326. },
  24327. {
  24328. name: "Huge",
  24329. height: math.unit(144, "meters")
  24330. },
  24331. ]
  24332. ))
  24333. characterMakers.push(() => makeCharacter(
  24334. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24335. {
  24336. front: {
  24337. height: math.unit(7, "feet"),
  24338. weight: math.unit(425, "lb"),
  24339. name: "Front",
  24340. image: {
  24341. source: "./media/characters/hind/front.svg",
  24342. extra: 2091 / 1860,
  24343. bottom: 129 / 2220
  24344. }
  24345. },
  24346. back: {
  24347. height: math.unit(7, "feet"),
  24348. weight: math.unit(425, "lb"),
  24349. name: "Back",
  24350. image: {
  24351. source: "./media/characters/hind/back.svg",
  24352. extra: 2091 / 1860,
  24353. bottom: 24.6 / 2309
  24354. }
  24355. },
  24356. tail: {
  24357. height: math.unit(2.8, "feet"),
  24358. name: "Tail",
  24359. image: {
  24360. source: "./media/characters/hind/tail.svg"
  24361. }
  24362. },
  24363. head: {
  24364. height: math.unit(2.55, "feet"),
  24365. name: "Head",
  24366. image: {
  24367. source: "./media/characters/hind/head.svg"
  24368. }
  24369. },
  24370. },
  24371. [
  24372. {
  24373. name: "XS",
  24374. height: math.unit(0.7, "feet")
  24375. },
  24376. {
  24377. name: "Normal",
  24378. height: math.unit(7, "feet"),
  24379. default: true
  24380. },
  24381. {
  24382. name: "XL",
  24383. height: math.unit(70, "feet")
  24384. },
  24385. ]
  24386. ))
  24387. characterMakers.push(() => makeCharacter(
  24388. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24389. {
  24390. front: {
  24391. height: math.unit(6, "feet"),
  24392. weight: math.unit(150, "lb"),
  24393. name: "Front",
  24394. image: {
  24395. source: "./media/characters/dylan-skaven/front.svg",
  24396. extra: 2318 / 2063,
  24397. bottom: 93.4 / 2410
  24398. }
  24399. },
  24400. },
  24401. [
  24402. {
  24403. name: "Nano",
  24404. height: math.unit(1, "mm")
  24405. },
  24406. {
  24407. name: "Micro",
  24408. height: math.unit(1, "cm")
  24409. },
  24410. {
  24411. name: "Normal",
  24412. height: math.unit(2.1, "meters"),
  24413. default: true
  24414. },
  24415. ]
  24416. ))
  24417. characterMakers.push(() => makeCharacter(
  24418. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24419. {
  24420. front: {
  24421. height: math.unit(7 + 5 / 12, "feet"),
  24422. weight: math.unit(357, "lb"),
  24423. name: "Front",
  24424. image: {
  24425. source: "./media/characters/solex-draconov/front.svg",
  24426. extra: 1993 / 1865,
  24427. bottom: 117 / 2111
  24428. }
  24429. },
  24430. },
  24431. [
  24432. {
  24433. name: "Natural Height",
  24434. height: math.unit(7 + 5 / 12, "feet"),
  24435. default: true
  24436. },
  24437. {
  24438. name: "Macro",
  24439. height: math.unit(350, "feet")
  24440. },
  24441. {
  24442. name: "Macro+",
  24443. height: math.unit(1000, "feet")
  24444. },
  24445. {
  24446. name: "Megamacro",
  24447. height: math.unit(20, "km")
  24448. },
  24449. {
  24450. name: "Megamacro+",
  24451. height: math.unit(1000, "km")
  24452. },
  24453. {
  24454. name: "Gigamacro",
  24455. height: math.unit(2.5, "Gm")
  24456. },
  24457. {
  24458. name: "Teramacro",
  24459. height: math.unit(15, "Tm")
  24460. },
  24461. {
  24462. name: "Galactic",
  24463. height: math.unit(30, "Zm")
  24464. },
  24465. {
  24466. name: "Universal",
  24467. height: math.unit(21000, "Ym")
  24468. },
  24469. {
  24470. name: "Omniversal",
  24471. height: math.unit(9.861e50, "Ym")
  24472. },
  24473. {
  24474. name: "Existential",
  24475. height: math.unit(1e300, "meters")
  24476. },
  24477. ]
  24478. ))
  24479. characterMakers.push(() => makeCharacter(
  24480. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24481. {
  24482. side: {
  24483. height: math.unit(25, "feet"),
  24484. weight: math.unit(90000, "lb"),
  24485. name: "Side",
  24486. image: {
  24487. source: "./media/characters/mandarax/side.svg",
  24488. extra: 614 / 332,
  24489. bottom: 55 / 630
  24490. }
  24491. },
  24492. head: {
  24493. height: math.unit(11.4, "feet"),
  24494. name: "Head",
  24495. image: {
  24496. source: "./media/characters/mandarax/head.svg"
  24497. }
  24498. },
  24499. belly: {
  24500. height: math.unit(33, "feet"),
  24501. name: "Belly",
  24502. capacity: math.unit(500, "people"),
  24503. image: {
  24504. source: "./media/characters/mandarax/belly.svg"
  24505. }
  24506. },
  24507. dick: {
  24508. height: math.unit(8.46, "feet"),
  24509. name: "Dick",
  24510. image: {
  24511. source: "./media/characters/mandarax/dick.svg"
  24512. }
  24513. },
  24514. top: {
  24515. height: math.unit(28, "meters"),
  24516. name: "Top",
  24517. image: {
  24518. source: "./media/characters/mandarax/top.svg"
  24519. }
  24520. },
  24521. },
  24522. [
  24523. {
  24524. name: "Normal",
  24525. height: math.unit(25, "feet"),
  24526. default: true
  24527. },
  24528. ]
  24529. ))
  24530. characterMakers.push(() => makeCharacter(
  24531. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24532. {
  24533. front: {
  24534. height: math.unit(5, "feet"),
  24535. weight: math.unit(90, "lb"),
  24536. name: "Front",
  24537. image: {
  24538. source: "./media/characters/pixil/front.svg",
  24539. extra: 2000 / 1618,
  24540. bottom: 12.3 / 2011
  24541. }
  24542. },
  24543. },
  24544. [
  24545. {
  24546. name: "Normal",
  24547. height: math.unit(5, "feet"),
  24548. default: true
  24549. },
  24550. {
  24551. name: "Megamacro",
  24552. height: math.unit(10, "miles"),
  24553. },
  24554. ]
  24555. ))
  24556. characterMakers.push(() => makeCharacter(
  24557. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24558. {
  24559. front: {
  24560. height: math.unit(7 + 2 / 12, "feet"),
  24561. weight: math.unit(200, "lb"),
  24562. name: "Front",
  24563. image: {
  24564. source: "./media/characters/angel/front.svg",
  24565. extra: 1830 / 1737,
  24566. bottom: 22.6 / 1854,
  24567. }
  24568. },
  24569. },
  24570. [
  24571. {
  24572. name: "Normal",
  24573. height: math.unit(7 + 2 / 12, "feet"),
  24574. default: true
  24575. },
  24576. {
  24577. name: "Macro",
  24578. height: math.unit(1000, "feet")
  24579. },
  24580. {
  24581. name: "Megamacro",
  24582. height: math.unit(2, "miles")
  24583. },
  24584. {
  24585. name: "Gigamacro",
  24586. height: math.unit(20, "earths")
  24587. },
  24588. ]
  24589. ))
  24590. characterMakers.push(() => makeCharacter(
  24591. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24592. {
  24593. front: {
  24594. height: math.unit(5, "feet"),
  24595. weight: math.unit(180, "lb"),
  24596. name: "Front",
  24597. image: {
  24598. source: "./media/characters/mekana/front.svg",
  24599. extra: 1671 / 1605,
  24600. bottom: 3.5 / 1691
  24601. }
  24602. },
  24603. side: {
  24604. height: math.unit(5, "feet"),
  24605. weight: math.unit(180, "lb"),
  24606. name: "Side",
  24607. image: {
  24608. source: "./media/characters/mekana/side.svg",
  24609. extra: 1671 / 1605,
  24610. bottom: 3.5 / 1691
  24611. }
  24612. },
  24613. back: {
  24614. height: math.unit(5, "feet"),
  24615. weight: math.unit(180, "lb"),
  24616. name: "Back",
  24617. image: {
  24618. source: "./media/characters/mekana/back.svg",
  24619. extra: 1671 / 1605,
  24620. bottom: 3.5 / 1691
  24621. }
  24622. },
  24623. },
  24624. [
  24625. {
  24626. name: "Normal",
  24627. height: math.unit(5, "feet"),
  24628. default: true
  24629. },
  24630. ]
  24631. ))
  24632. characterMakers.push(() => makeCharacter(
  24633. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24634. {
  24635. front: {
  24636. height: math.unit(4 + 6 / 12, "feet"),
  24637. weight: math.unit(80, "lb"),
  24638. name: "Front",
  24639. image: {
  24640. source: "./media/characters/pixie/front.svg",
  24641. extra: 1924 / 1825,
  24642. bottom: 22.4 / 1946
  24643. }
  24644. },
  24645. },
  24646. [
  24647. {
  24648. name: "Normal",
  24649. height: math.unit(4 + 6 / 12, "feet"),
  24650. default: true
  24651. },
  24652. {
  24653. name: "Macro",
  24654. height: math.unit(40, "feet")
  24655. },
  24656. ]
  24657. ))
  24658. characterMakers.push(() => makeCharacter(
  24659. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24660. {
  24661. front: {
  24662. height: math.unit(2.1, "meters"),
  24663. weight: math.unit(200, "lb"),
  24664. name: "Front",
  24665. image: {
  24666. source: "./media/characters/the-lascivious/front.svg",
  24667. extra: 1 / 0.893,
  24668. bottom: 3.5 / 573.7
  24669. }
  24670. },
  24671. },
  24672. [
  24673. {
  24674. name: "Human Scale",
  24675. height: math.unit(2.1, "meters")
  24676. },
  24677. {
  24678. name: "Wolxi Scale",
  24679. height: math.unit(46.2, "m"),
  24680. default: true
  24681. },
  24682. {
  24683. name: "Boinker of Buildings",
  24684. height: math.unit(10, "km")
  24685. },
  24686. {
  24687. name: "Shagger of Skyscrapers",
  24688. height: math.unit(40, "km")
  24689. },
  24690. {
  24691. name: "Banger of Boroughs",
  24692. height: math.unit(4000, "km")
  24693. },
  24694. {
  24695. name: "Screwer of States",
  24696. height: math.unit(100000, "km")
  24697. },
  24698. {
  24699. name: "Pounder of Planets",
  24700. height: math.unit(2000000, "km")
  24701. },
  24702. ]
  24703. ))
  24704. characterMakers.push(() => makeCharacter(
  24705. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24706. {
  24707. front: {
  24708. height: math.unit(6, "feet"),
  24709. weight: math.unit(150, "lb"),
  24710. name: "Front",
  24711. image: {
  24712. source: "./media/characters/aj/front.svg",
  24713. extra: 2039 / 1562,
  24714. bottom: 40 / 2079
  24715. }
  24716. },
  24717. },
  24718. [
  24719. {
  24720. name: "Normal",
  24721. height: math.unit(11 + 6 / 12, "feet"),
  24722. default: true
  24723. },
  24724. {
  24725. name: "Megamacro",
  24726. height: math.unit(60, "megameters")
  24727. },
  24728. ]
  24729. ))
  24730. characterMakers.push(() => makeCharacter(
  24731. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24732. {
  24733. side: {
  24734. height: math.unit(31 + 8 / 12, "feet"),
  24735. weight: math.unit(75000, "kg"),
  24736. name: "Side",
  24737. image: {
  24738. source: "./media/characters/koros/side.svg",
  24739. extra: 1442 / 1297,
  24740. bottom: 122.7 / 1562
  24741. }
  24742. },
  24743. dicksKingsCrown: {
  24744. height: math.unit(6, "feet"),
  24745. name: "Dicks (King's Crown)",
  24746. image: {
  24747. source: "./media/characters/koros/dicks-kings-crown.svg"
  24748. }
  24749. },
  24750. dicksTailSet: {
  24751. height: math.unit(3, "feet"),
  24752. name: "Dicks (Tail Set)",
  24753. image: {
  24754. source: "./media/characters/koros/dicks-tail-set.svg"
  24755. }
  24756. },
  24757. dickCumming: {
  24758. height: math.unit(7.98, "feet"),
  24759. name: "Dick (Cumming)",
  24760. image: {
  24761. source: "./media/characters/koros/dick-cumming.svg"
  24762. }
  24763. },
  24764. dicksBack: {
  24765. height: math.unit(5.9, "feet"),
  24766. name: "Dicks (Back)",
  24767. image: {
  24768. source: "./media/characters/koros/dicks-back.svg"
  24769. }
  24770. },
  24771. dicksFront: {
  24772. height: math.unit(3.72, "feet"),
  24773. name: "Dicks (Front)",
  24774. image: {
  24775. source: "./media/characters/koros/dicks-front.svg"
  24776. }
  24777. },
  24778. dicksPeeking: {
  24779. height: math.unit(3.0, "feet"),
  24780. name: "Dicks (Peeking)",
  24781. image: {
  24782. source: "./media/characters/koros/dicks-peeking.svg"
  24783. }
  24784. },
  24785. eye: {
  24786. height: math.unit(1.7, "feet"),
  24787. name: "Eye",
  24788. image: {
  24789. source: "./media/characters/koros/eye.svg"
  24790. }
  24791. },
  24792. headFront: {
  24793. height: math.unit(11.69, "feet"),
  24794. name: "Head (Front)",
  24795. image: {
  24796. source: "./media/characters/koros/head-front.svg"
  24797. }
  24798. },
  24799. headSide: {
  24800. height: math.unit(14, "feet"),
  24801. name: "Head (Side)",
  24802. image: {
  24803. source: "./media/characters/koros/head-side.svg"
  24804. }
  24805. },
  24806. leg: {
  24807. height: math.unit(17, "feet"),
  24808. name: "Leg",
  24809. image: {
  24810. source: "./media/characters/koros/leg.svg"
  24811. }
  24812. },
  24813. mawSide: {
  24814. height: math.unit(12.8, "feet"),
  24815. name: "Maw (Side)",
  24816. image: {
  24817. source: "./media/characters/koros/maw-side.svg"
  24818. }
  24819. },
  24820. mawSpitting: {
  24821. height: math.unit(17, "feet"),
  24822. name: "Maw (Spitting)",
  24823. image: {
  24824. source: "./media/characters/koros/maw-spitting.svg"
  24825. }
  24826. },
  24827. slit: {
  24828. height: math.unit(2.8, "feet"),
  24829. name: "Slit",
  24830. image: {
  24831. source: "./media/characters/koros/slit.svg"
  24832. }
  24833. },
  24834. stomach: {
  24835. height: math.unit(6.8, "feet"),
  24836. capacity: math.unit(20, "people"),
  24837. name: "Stomach",
  24838. image: {
  24839. source: "./media/characters/koros/stomach.svg"
  24840. }
  24841. },
  24842. wingspanBottom: {
  24843. height: math.unit(114, "feet"),
  24844. name: "Wingspan (Bottom)",
  24845. image: {
  24846. source: "./media/characters/koros/wingspan-bottom.svg"
  24847. }
  24848. },
  24849. wingspanTop: {
  24850. height: math.unit(104, "feet"),
  24851. name: "Wingspan (Top)",
  24852. image: {
  24853. source: "./media/characters/koros/wingspan-top.svg"
  24854. }
  24855. },
  24856. },
  24857. [
  24858. {
  24859. name: "Normal",
  24860. height: math.unit(31 + 8 / 12, "feet"),
  24861. default: true
  24862. },
  24863. ]
  24864. ))
  24865. characterMakers.push(() => makeCharacter(
  24866. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24867. {
  24868. front: {
  24869. height: math.unit(18 + 5 / 12, "feet"),
  24870. weight: math.unit(3750, "kg"),
  24871. name: "Front",
  24872. image: {
  24873. source: "./media/characters/vexx/front.svg",
  24874. extra: 426 / 396,
  24875. bottom: 31.5 / 458
  24876. }
  24877. },
  24878. maw: {
  24879. height: math.unit(6, "feet"),
  24880. name: "Maw",
  24881. image: {
  24882. source: "./media/characters/vexx/maw.svg"
  24883. }
  24884. },
  24885. },
  24886. [
  24887. {
  24888. name: "Normal",
  24889. height: math.unit(18 + 5 / 12, "feet"),
  24890. default: true
  24891. },
  24892. ]
  24893. ))
  24894. characterMakers.push(() => makeCharacter(
  24895. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24896. {
  24897. front: {
  24898. height: math.unit(17 + 6 / 12, "feet"),
  24899. weight: math.unit(150, "lb"),
  24900. name: "Front",
  24901. image: {
  24902. source: "./media/characters/baadra/front.svg",
  24903. extra: 3137 / 2890,
  24904. bottom: 168.4 / 3305
  24905. }
  24906. },
  24907. back: {
  24908. height: math.unit(17 + 6 / 12, "feet"),
  24909. weight: math.unit(150, "lb"),
  24910. name: "Back",
  24911. image: {
  24912. source: "./media/characters/baadra/back.svg",
  24913. extra: 3142 / 2890,
  24914. bottom: 220 / 3371
  24915. }
  24916. },
  24917. head: {
  24918. height: math.unit(5.45, "feet"),
  24919. name: "Head",
  24920. image: {
  24921. source: "./media/characters/baadra/head.svg"
  24922. }
  24923. },
  24924. headAngry: {
  24925. height: math.unit(4.95, "feet"),
  24926. name: "Head (Angry)",
  24927. image: {
  24928. source: "./media/characters/baadra/head-angry.svg"
  24929. }
  24930. },
  24931. headOpen: {
  24932. height: math.unit(6, "feet"),
  24933. name: "Head (Open)",
  24934. image: {
  24935. source: "./media/characters/baadra/head-open.svg"
  24936. }
  24937. },
  24938. },
  24939. [
  24940. {
  24941. name: "Normal",
  24942. height: math.unit(17 + 6 / 12, "feet"),
  24943. default: true
  24944. },
  24945. ]
  24946. ))
  24947. characterMakers.push(() => makeCharacter(
  24948. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24949. {
  24950. front: {
  24951. height: math.unit(7 + 3 / 12, "feet"),
  24952. weight: math.unit(180, "lb"),
  24953. name: "Front",
  24954. image: {
  24955. source: "./media/characters/juri/front.svg",
  24956. extra: 1401 / 1237,
  24957. bottom: 18.5 / 1418
  24958. }
  24959. },
  24960. side: {
  24961. height: math.unit(7 + 3 / 12, "feet"),
  24962. weight: math.unit(180, "lb"),
  24963. name: "Side",
  24964. image: {
  24965. source: "./media/characters/juri/side.svg",
  24966. extra: 1424 / 1242,
  24967. bottom: 18.5 / 1447
  24968. }
  24969. },
  24970. sitting: {
  24971. height: math.unit(6, "feet"),
  24972. weight: math.unit(180, "lb"),
  24973. name: "Sitting",
  24974. image: {
  24975. source: "./media/characters/juri/sitting.svg",
  24976. extra: 1270 / 1143,
  24977. bottom: 100 / 1343
  24978. }
  24979. },
  24980. back: {
  24981. height: math.unit(7 + 3 / 12, "feet"),
  24982. weight: math.unit(180, "lb"),
  24983. name: "Back",
  24984. image: {
  24985. source: "./media/characters/juri/back.svg",
  24986. extra: 1377 / 1240,
  24987. bottom: 23.7 / 1405
  24988. }
  24989. },
  24990. maw: {
  24991. height: math.unit(2.8, "feet"),
  24992. name: "Maw",
  24993. image: {
  24994. source: "./media/characters/juri/maw.svg"
  24995. }
  24996. },
  24997. stomach: {
  24998. height: math.unit(0.89, "feet"),
  24999. capacity: math.unit(4, "liters"),
  25000. name: "Stomach",
  25001. image: {
  25002. source: "./media/characters/juri/stomach.svg"
  25003. }
  25004. },
  25005. },
  25006. [
  25007. {
  25008. name: "Normal",
  25009. height: math.unit(7 + 3 / 12, "feet"),
  25010. default: true
  25011. },
  25012. ]
  25013. ))
  25014. characterMakers.push(() => makeCharacter(
  25015. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25016. {
  25017. fox: {
  25018. height: math.unit(5 + 6 / 12, "feet"),
  25019. weight: math.unit(140, "lb"),
  25020. name: "Fox",
  25021. image: {
  25022. source: "./media/characters/maxene-sita/fox.svg",
  25023. extra: 146 / 138,
  25024. bottom: 2.1 / 148.19
  25025. }
  25026. },
  25027. foxLaying: {
  25028. height: math.unit(1.70, "feet"),
  25029. weight: math.unit(140, "lb"),
  25030. name: "Fox (Laying)",
  25031. image: {
  25032. source: "./media/characters/maxene-sita/fox-laying.svg",
  25033. extra: 910 / 572,
  25034. bottom: 71 / 981
  25035. }
  25036. },
  25037. kitsune: {
  25038. height: math.unit(10, "feet"),
  25039. weight: math.unit(800, "lb"),
  25040. name: "Kitsune",
  25041. image: {
  25042. source: "./media/characters/maxene-sita/kitsune.svg",
  25043. extra: 185 / 176,
  25044. bottom: 4.7 / 189.9
  25045. }
  25046. },
  25047. hellhound: {
  25048. height: math.unit(10, "feet"),
  25049. weight: math.unit(700, "lb"),
  25050. name: "Hellhound",
  25051. image: {
  25052. source: "./media/characters/maxene-sita/hellhound.svg",
  25053. extra: 1600 / 1545,
  25054. bottom: 81 / 1681
  25055. }
  25056. },
  25057. },
  25058. [
  25059. {
  25060. name: "Normal",
  25061. height: math.unit(5 + 6 / 12, "feet"),
  25062. default: true
  25063. },
  25064. ]
  25065. ))
  25066. characterMakers.push(() => makeCharacter(
  25067. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25068. {
  25069. front: {
  25070. height: math.unit(3 + 4 / 12, "feet"),
  25071. weight: math.unit(70, "lb"),
  25072. name: "Front",
  25073. image: {
  25074. source: "./media/characters/maia/front.svg",
  25075. extra: 227 / 219.5,
  25076. bottom: 40 / 267
  25077. }
  25078. },
  25079. back: {
  25080. height: math.unit(3 + 4 / 12, "feet"),
  25081. weight: math.unit(70, "lb"),
  25082. name: "Back",
  25083. image: {
  25084. source: "./media/characters/maia/back.svg",
  25085. extra: 237 / 225
  25086. }
  25087. },
  25088. },
  25089. [
  25090. {
  25091. name: "Normal",
  25092. height: math.unit(3 + 4 / 12, "feet"),
  25093. default: true
  25094. },
  25095. ]
  25096. ))
  25097. characterMakers.push(() => makeCharacter(
  25098. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25099. {
  25100. front: {
  25101. height: math.unit(5 + 10 / 12, "feet"),
  25102. weight: math.unit(197, "lb"),
  25103. name: "Front",
  25104. image: {
  25105. source: "./media/characters/jabaro/front.svg",
  25106. extra: 225 / 216,
  25107. bottom: 5.06 / 230
  25108. }
  25109. },
  25110. back: {
  25111. height: math.unit(5 + 10 / 12, "feet"),
  25112. weight: math.unit(197, "lb"),
  25113. name: "Back",
  25114. image: {
  25115. source: "./media/characters/jabaro/back.svg",
  25116. extra: 225 / 219,
  25117. bottom: 1.9 / 227
  25118. }
  25119. },
  25120. },
  25121. [
  25122. {
  25123. name: "Normal",
  25124. height: math.unit(5 + 10 / 12, "feet"),
  25125. default: true
  25126. },
  25127. ]
  25128. ))
  25129. characterMakers.push(() => makeCharacter(
  25130. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25131. {
  25132. front: {
  25133. height: math.unit(5 + 8 / 12, "feet"),
  25134. weight: math.unit(139, "lb"),
  25135. name: "Front",
  25136. image: {
  25137. source: "./media/characters/risa/front.svg",
  25138. extra: 270 / 260,
  25139. bottom: 11.2 / 282
  25140. }
  25141. },
  25142. back: {
  25143. height: math.unit(5 + 8 / 12, "feet"),
  25144. weight: math.unit(139, "lb"),
  25145. name: "Back",
  25146. image: {
  25147. source: "./media/characters/risa/back.svg",
  25148. extra: 264 / 255,
  25149. bottom: 4 / 268
  25150. }
  25151. },
  25152. },
  25153. [
  25154. {
  25155. name: "Normal",
  25156. height: math.unit(5 + 8 / 12, "feet"),
  25157. default: true
  25158. },
  25159. ]
  25160. ))
  25161. characterMakers.push(() => makeCharacter(
  25162. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25163. {
  25164. front: {
  25165. height: math.unit(2 + 11 / 12, "feet"),
  25166. weight: math.unit(30, "lb"),
  25167. name: "Front",
  25168. image: {
  25169. source: "./media/characters/weatley/front.svg",
  25170. bottom: 10.7 / 414,
  25171. extra: 403.5 / 362
  25172. }
  25173. },
  25174. back: {
  25175. height: math.unit(2 + 11 / 12, "feet"),
  25176. weight: math.unit(30, "lb"),
  25177. name: "Back",
  25178. image: {
  25179. source: "./media/characters/weatley/back.svg",
  25180. bottom: 10.7 / 414,
  25181. extra: 403.5 / 362
  25182. }
  25183. },
  25184. },
  25185. [
  25186. {
  25187. name: "Normal",
  25188. height: math.unit(2 + 11 / 12, "feet"),
  25189. default: true
  25190. },
  25191. ]
  25192. ))
  25193. characterMakers.push(() => makeCharacter(
  25194. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25195. {
  25196. front: {
  25197. height: math.unit(5 + 2 / 12, "feet"),
  25198. weight: math.unit(50, "kg"),
  25199. name: "Front",
  25200. image: {
  25201. source: "./media/characters/mercury-crescent/front.svg",
  25202. extra: 1088 / 1033,
  25203. bottom: 18.9 / 1109
  25204. }
  25205. },
  25206. },
  25207. [
  25208. {
  25209. name: "Normal",
  25210. height: math.unit(5 + 2 / 12, "feet"),
  25211. default: true
  25212. },
  25213. ]
  25214. ))
  25215. characterMakers.push(() => makeCharacter(
  25216. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25217. {
  25218. front: {
  25219. height: math.unit(2, "feet"),
  25220. weight: math.unit(15, "kg"),
  25221. name: "Front",
  25222. image: {
  25223. source: "./media/characters/diamond-jones/front.svg",
  25224. bottom: 16 / 568
  25225. }
  25226. },
  25227. },
  25228. [
  25229. {
  25230. name: "Normal",
  25231. height: math.unit(2, "feet"),
  25232. default: true
  25233. },
  25234. ]
  25235. ))
  25236. characterMakers.push(() => makeCharacter(
  25237. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25238. {
  25239. front: {
  25240. height: math.unit(3, "feet"),
  25241. weight: math.unit(30, "kg"),
  25242. name: "Front",
  25243. image: {
  25244. source: "./media/characters/sweet-bit/front.svg",
  25245. extra: 675 / 567,
  25246. bottom: 27.7 / 703
  25247. }
  25248. },
  25249. },
  25250. [
  25251. {
  25252. name: "Normal",
  25253. height: math.unit(3, "feet"),
  25254. default: true
  25255. },
  25256. ]
  25257. ))
  25258. characterMakers.push(() => makeCharacter(
  25259. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25260. {
  25261. side: {
  25262. height: math.unit(9.178, "feet"),
  25263. weight: math.unit(500, "lb"),
  25264. name: "Side",
  25265. image: {
  25266. source: "./media/characters/umbrazen/side.svg",
  25267. extra: 1730 / 1473,
  25268. bottom: 34.6 / 1765
  25269. }
  25270. },
  25271. },
  25272. [
  25273. {
  25274. name: "Normal",
  25275. height: math.unit(9.178, "feet"),
  25276. default: true
  25277. },
  25278. ]
  25279. ))
  25280. characterMakers.push(() => makeCharacter(
  25281. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25282. {
  25283. front: {
  25284. height: math.unit(10, "feet"),
  25285. weight: math.unit(750, "lb"),
  25286. name: "Front",
  25287. image: {
  25288. source: "./media/characters/arlist/front.svg",
  25289. extra: 961 / 778,
  25290. bottom: 6.2 / 986
  25291. }
  25292. },
  25293. },
  25294. [
  25295. {
  25296. name: "Normal",
  25297. height: math.unit(10, "feet"),
  25298. default: true
  25299. },
  25300. ]
  25301. ))
  25302. characterMakers.push(() => makeCharacter(
  25303. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25304. {
  25305. front: {
  25306. height: math.unit(5 + 1 / 12, "feet"),
  25307. weight: math.unit(110, "lb"),
  25308. name: "Front",
  25309. image: {
  25310. source: "./media/characters/aradel/front.svg",
  25311. extra: 324 / 303,
  25312. bottom: 3.6 / 329.4
  25313. }
  25314. },
  25315. },
  25316. [
  25317. {
  25318. name: "Normal",
  25319. height: math.unit(5 + 1 / 12, "feet"),
  25320. default: true
  25321. },
  25322. ]
  25323. ))
  25324. characterMakers.push(() => makeCharacter(
  25325. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25326. {
  25327. front: {
  25328. height: math.unit(3 + 8 / 12, "feet"),
  25329. weight: math.unit(50, "lb"),
  25330. name: "Front",
  25331. image: {
  25332. source: "./media/characters/serryn/front.svg",
  25333. extra: 1792 / 1656,
  25334. bottom: 43.5 / 1840
  25335. }
  25336. },
  25337. },
  25338. [
  25339. {
  25340. name: "Normal",
  25341. height: math.unit(3 + 8 / 12, "feet"),
  25342. default: true
  25343. },
  25344. ]
  25345. ))
  25346. characterMakers.push(() => makeCharacter(
  25347. { name: "Xavier Thyme" },
  25348. {
  25349. front: {
  25350. height: math.unit(7 + 10 / 12, "feet"),
  25351. weight: math.unit(255, "lb"),
  25352. name: "Front",
  25353. image: {
  25354. source: "./media/characters/xavier-thyme/front.svg",
  25355. extra: 3733 / 3642,
  25356. bottom: 131 / 3869
  25357. }
  25358. },
  25359. frontRaven: {
  25360. height: math.unit(7 + 10 / 12, "feet"),
  25361. weight: math.unit(255, "lb"),
  25362. name: "Front (Raven)",
  25363. image: {
  25364. source: "./media/characters/xavier-thyme/front-raven.svg",
  25365. extra: 4385 / 3642,
  25366. bottom: 131 / 4517
  25367. }
  25368. },
  25369. },
  25370. [
  25371. {
  25372. name: "Normal",
  25373. height: math.unit(7 + 10 / 12, "feet"),
  25374. default: true
  25375. },
  25376. ]
  25377. ))
  25378. characterMakers.push(() => makeCharacter(
  25379. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25380. {
  25381. front: {
  25382. height: math.unit(1.6, "m"),
  25383. weight: math.unit(50, "kg"),
  25384. name: "Front",
  25385. image: {
  25386. source: "./media/characters/kiki/front.svg",
  25387. extra: 4682 / 3610,
  25388. bottom: 115 / 4777
  25389. }
  25390. },
  25391. },
  25392. [
  25393. {
  25394. name: "Normal",
  25395. height: math.unit(1.6, "meters"),
  25396. default: true
  25397. },
  25398. ]
  25399. ))
  25400. characterMakers.push(() => makeCharacter(
  25401. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25402. {
  25403. front: {
  25404. height: math.unit(50, "m"),
  25405. weight: math.unit(500, "tonnes"),
  25406. name: "Front",
  25407. image: {
  25408. source: "./media/characters/ryoko/front.svg",
  25409. extra: 4632 / 3926,
  25410. bottom: 193 / 4823
  25411. }
  25412. },
  25413. },
  25414. [
  25415. {
  25416. name: "Normal",
  25417. height: math.unit(50, "meters"),
  25418. default: true
  25419. },
  25420. ]
  25421. ))
  25422. characterMakers.push(() => makeCharacter(
  25423. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25424. {
  25425. front: {
  25426. height: math.unit(30, "m"),
  25427. weight: math.unit(22, "tonnes"),
  25428. name: "Front",
  25429. image: {
  25430. source: "./media/characters/elio/front.svg",
  25431. extra: 4582 / 3720,
  25432. bottom: 236 / 4828
  25433. }
  25434. },
  25435. },
  25436. [
  25437. {
  25438. name: "Normal",
  25439. height: math.unit(30, "meters"),
  25440. default: true
  25441. },
  25442. ]
  25443. ))
  25444. characterMakers.push(() => makeCharacter(
  25445. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25446. {
  25447. front: {
  25448. height: math.unit(6 + 3 / 12, "feet"),
  25449. weight: math.unit(120, "lb"),
  25450. name: "Front",
  25451. image: {
  25452. source: "./media/characters/azura/front.svg",
  25453. extra: 1149 / 1135,
  25454. bottom: 45 / 1194
  25455. }
  25456. },
  25457. frontClothed: {
  25458. height: math.unit(6 + 3 / 12, "feet"),
  25459. weight: math.unit(120, "lb"),
  25460. name: "Front (Clothed)",
  25461. image: {
  25462. source: "./media/characters/azura/front-clothed.svg",
  25463. extra: 1149 / 1135,
  25464. bottom: 45 / 1194
  25465. }
  25466. },
  25467. },
  25468. [
  25469. {
  25470. name: "Normal",
  25471. height: math.unit(6 + 3 / 12, "feet"),
  25472. default: true
  25473. },
  25474. {
  25475. name: "Macro",
  25476. height: math.unit(20 + 6 / 12, "feet")
  25477. },
  25478. {
  25479. name: "Megamacro",
  25480. height: math.unit(12, "miles")
  25481. },
  25482. {
  25483. name: "Gigamacro",
  25484. height: math.unit(10000, "miles")
  25485. },
  25486. {
  25487. name: "Teramacro",
  25488. height: math.unit(900000, "miles")
  25489. },
  25490. ]
  25491. ))
  25492. characterMakers.push(() => makeCharacter(
  25493. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25494. {
  25495. front: {
  25496. height: math.unit(12, "feet"),
  25497. weight: math.unit(1, "ton"),
  25498. capacity: math.unit(660000, "gallons"),
  25499. name: "Front",
  25500. image: {
  25501. source: "./media/characters/zeus/front.svg",
  25502. extra: 5005 / 4717,
  25503. bottom: 363 / 5388
  25504. }
  25505. },
  25506. },
  25507. [
  25508. {
  25509. name: "Normal",
  25510. height: math.unit(12, "feet")
  25511. },
  25512. {
  25513. name: "Preferred Size",
  25514. height: math.unit(0.5, "miles"),
  25515. default: true
  25516. },
  25517. {
  25518. name: "Giga Horse",
  25519. height: math.unit(300, "miles")
  25520. },
  25521. {
  25522. name: "Riding Planets",
  25523. height: math.unit(30, "megameters")
  25524. },
  25525. {
  25526. name: "Cosmic Giant",
  25527. height: math.unit(3, "zettameters")
  25528. },
  25529. {
  25530. name: "Breeding God",
  25531. height: math.unit(9.92e22, "yottameters")
  25532. },
  25533. ]
  25534. ))
  25535. characterMakers.push(() => makeCharacter(
  25536. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25537. {
  25538. side: {
  25539. height: math.unit(9, "feet"),
  25540. weight: math.unit(1500, "kg"),
  25541. name: "Side",
  25542. image: {
  25543. source: "./media/characters/fang/side.svg",
  25544. extra: 924 / 866,
  25545. bottom: 47.5 / 972.3
  25546. }
  25547. },
  25548. },
  25549. [
  25550. {
  25551. name: "Normal",
  25552. height: math.unit(9, "feet"),
  25553. default: true
  25554. },
  25555. {
  25556. name: "Macro",
  25557. height: math.unit(75 + 6 / 12, "feet")
  25558. },
  25559. {
  25560. name: "Teramacro",
  25561. height: math.unit(50000, "miles")
  25562. },
  25563. ]
  25564. ))
  25565. characterMakers.push(() => makeCharacter(
  25566. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25567. {
  25568. front: {
  25569. height: math.unit(10, "feet"),
  25570. weight: math.unit(2, "tons"),
  25571. name: "Front",
  25572. image: {
  25573. source: "./media/characters/rekhit/front.svg",
  25574. extra: 2796 / 2590,
  25575. bottom: 225 / 3022
  25576. }
  25577. },
  25578. },
  25579. [
  25580. {
  25581. name: "Normal",
  25582. height: math.unit(10, "feet"),
  25583. default: true
  25584. },
  25585. {
  25586. name: "Macro",
  25587. height: math.unit(500, "feet")
  25588. },
  25589. ]
  25590. ))
  25591. characterMakers.push(() => makeCharacter(
  25592. { name: "Dahlia Verrick" },
  25593. {
  25594. front: {
  25595. height: math.unit(7 + 6.451 / 12, "feet"),
  25596. weight: math.unit(310, "lb"),
  25597. name: "Front",
  25598. image: {
  25599. source: "./media/characters/dahlia-verrick/front.svg",
  25600. extra: 1488 / 1365,
  25601. bottom: 6.2 / 1495
  25602. }
  25603. },
  25604. back: {
  25605. height: math.unit(7 + 6.451 / 12, "feet"),
  25606. weight: math.unit(310, "lb"),
  25607. name: "Back",
  25608. image: {
  25609. source: "./media/characters/dahlia-verrick/back.svg",
  25610. extra: 1472 / 1351,
  25611. bottom: 5.28 / 1477
  25612. }
  25613. },
  25614. frontBusiness: {
  25615. height: math.unit(7 + 6.451 / 12, "feet"),
  25616. weight: math.unit(200, "lb"),
  25617. name: "Front (Business)",
  25618. image: {
  25619. source: "./media/characters/dahlia-verrick/front-business.svg",
  25620. extra: 1478 / 1381,
  25621. bottom: 5.5 / 1484
  25622. }
  25623. },
  25624. frontCasual: {
  25625. height: math.unit(7 + 6.451 / 12, "feet"),
  25626. weight: math.unit(200, "lb"),
  25627. name: "Front (Casual)",
  25628. image: {
  25629. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25630. extra: 1478 / 1381,
  25631. bottom: 5.5 / 1484
  25632. }
  25633. },
  25634. },
  25635. [
  25636. {
  25637. name: "Travel-Sized",
  25638. height: math.unit(7.45, "inches")
  25639. },
  25640. {
  25641. name: "Normal",
  25642. height: math.unit(7 + 6.451 / 12, "feet"),
  25643. default: true
  25644. },
  25645. {
  25646. name: "Hitting the Town",
  25647. height: math.unit(37 + 8 / 12, "feet")
  25648. },
  25649. {
  25650. name: "Stomp in the Suburbs",
  25651. height: math.unit(964 + 9.728 / 12, "feet")
  25652. },
  25653. {
  25654. name: "Sit on the City",
  25655. height: math.unit(61747 + 10.592 / 12, "feet")
  25656. },
  25657. {
  25658. name: "Glomp the Globe",
  25659. height: math.unit(252919327 + 4.832 / 12, "feet")
  25660. },
  25661. ]
  25662. ))
  25663. characterMakers.push(() => makeCharacter(
  25664. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25665. {
  25666. front: {
  25667. height: math.unit(6 + 4 / 12, "feet"),
  25668. weight: math.unit(320, "lb"),
  25669. name: "Front",
  25670. image: {
  25671. source: "./media/characters/balina-mahigan/front.svg",
  25672. extra: 447 / 428,
  25673. bottom: 18 / 466
  25674. }
  25675. },
  25676. back: {
  25677. height: math.unit(6 + 4 / 12, "feet"),
  25678. weight: math.unit(320, "lb"),
  25679. name: "Back",
  25680. image: {
  25681. source: "./media/characters/balina-mahigan/back.svg",
  25682. extra: 445 / 428,
  25683. bottom: 4.07 / 448
  25684. }
  25685. },
  25686. arm: {
  25687. height: math.unit(1.88, "feet"),
  25688. name: "Arm",
  25689. image: {
  25690. source: "./media/characters/balina-mahigan/arm.svg"
  25691. }
  25692. },
  25693. backPort: {
  25694. height: math.unit(0.685, "feet"),
  25695. name: "Back Port",
  25696. image: {
  25697. source: "./media/characters/balina-mahigan/back-port.svg"
  25698. }
  25699. },
  25700. hoofpaw: {
  25701. height: math.unit(1.41, "feet"),
  25702. name: "Hoofpaw",
  25703. image: {
  25704. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25705. }
  25706. },
  25707. leftHandBack: {
  25708. height: math.unit(0.938, "feet"),
  25709. name: "Left Hand (Back)",
  25710. image: {
  25711. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25712. }
  25713. },
  25714. leftHandFront: {
  25715. height: math.unit(0.938, "feet"),
  25716. name: "Left Hand (Front)",
  25717. image: {
  25718. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25719. }
  25720. },
  25721. rightHandBack: {
  25722. height: math.unit(0.95, "feet"),
  25723. name: "Right Hand (Back)",
  25724. image: {
  25725. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25726. }
  25727. },
  25728. rightHandFront: {
  25729. height: math.unit(0.95, "feet"),
  25730. name: "Right Hand (Front)",
  25731. image: {
  25732. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25733. }
  25734. },
  25735. },
  25736. [
  25737. {
  25738. name: "Normal",
  25739. height: math.unit(6 + 4 / 12, "feet"),
  25740. default: true
  25741. },
  25742. ]
  25743. ))
  25744. characterMakers.push(() => makeCharacter(
  25745. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25746. {
  25747. front: {
  25748. height: math.unit(6, "feet"),
  25749. weight: math.unit(320, "lb"),
  25750. name: "Front",
  25751. image: {
  25752. source: "./media/characters/balina-mejeri/front.svg",
  25753. extra: 517 / 488,
  25754. bottom: 44.2 / 561
  25755. }
  25756. },
  25757. },
  25758. [
  25759. {
  25760. name: "Normal",
  25761. height: math.unit(6 + 4 / 12, "feet")
  25762. },
  25763. {
  25764. name: "Business",
  25765. height: math.unit(155, "feet"),
  25766. default: true
  25767. },
  25768. ]
  25769. ))
  25770. characterMakers.push(() => makeCharacter(
  25771. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25772. {
  25773. kneeling: {
  25774. height: math.unit(6 + 4 / 12, "feet"),
  25775. weight: math.unit(300 * 20, "lb"),
  25776. name: "Kneeling",
  25777. image: {
  25778. source: "./media/characters/balbarian/kneeling.svg",
  25779. extra: 922 / 862,
  25780. bottom: 42.4 / 965
  25781. }
  25782. },
  25783. },
  25784. [
  25785. {
  25786. name: "Normal",
  25787. height: math.unit(6 + 4 / 12, "feet")
  25788. },
  25789. {
  25790. name: "Treasured",
  25791. height: math.unit(18 + 9 / 12, "feet"),
  25792. default: true
  25793. },
  25794. {
  25795. name: "Macro",
  25796. height: math.unit(900, "feet")
  25797. },
  25798. ]
  25799. ))
  25800. characterMakers.push(() => makeCharacter(
  25801. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25802. {
  25803. front: {
  25804. height: math.unit(6 + 4 / 12, "feet"),
  25805. weight: math.unit(325, "lb"),
  25806. name: "Front",
  25807. image: {
  25808. source: "./media/characters/balina-amarini/front.svg",
  25809. extra: 415 / 403,
  25810. bottom: 19 / 433.4
  25811. }
  25812. },
  25813. back: {
  25814. height: math.unit(6 + 4 / 12, "feet"),
  25815. weight: math.unit(325, "lb"),
  25816. name: "Back",
  25817. image: {
  25818. source: "./media/characters/balina-amarini/back.svg",
  25819. extra: 415 / 403,
  25820. bottom: 13.5 / 432
  25821. }
  25822. },
  25823. overdrive: {
  25824. height: math.unit(6 + 4 / 12, "feet"),
  25825. weight: math.unit(400, "lb"),
  25826. name: "Overdrive",
  25827. image: {
  25828. source: "./media/characters/balina-amarini/overdrive.svg",
  25829. extra: 269 / 259,
  25830. bottom: 12 / 282
  25831. }
  25832. },
  25833. },
  25834. [
  25835. {
  25836. name: "Boom",
  25837. height: math.unit(9 + 10 / 12, "feet"),
  25838. default: true
  25839. },
  25840. {
  25841. name: "Macro",
  25842. height: math.unit(280, "feet")
  25843. },
  25844. ]
  25845. ))
  25846. characterMakers.push(() => makeCharacter(
  25847. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25848. {
  25849. goddess: {
  25850. height: math.unit(600, "feet"),
  25851. weight: math.unit(2000000, "tons"),
  25852. name: "Goddess",
  25853. image: {
  25854. source: "./media/characters/lady-kubwa/goddess.svg",
  25855. extra: 1240.5 / 1223,
  25856. bottom: 22 / 1263
  25857. }
  25858. },
  25859. goddesser: {
  25860. height: math.unit(900, "feet"),
  25861. weight: math.unit(20000000, "lb"),
  25862. name: "Goddess-er",
  25863. image: {
  25864. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25865. extra: 899 / 888,
  25866. bottom: 12.6 / 912
  25867. }
  25868. },
  25869. },
  25870. [
  25871. {
  25872. name: "Macro",
  25873. height: math.unit(600, "feet"),
  25874. default: true
  25875. },
  25876. {
  25877. name: "Megamacro",
  25878. height: math.unit(250, "miles")
  25879. },
  25880. ]
  25881. ))
  25882. characterMakers.push(() => makeCharacter(
  25883. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25884. {
  25885. front: {
  25886. height: math.unit(7 + 7 / 12, "feet"),
  25887. weight: math.unit(250, "lb"),
  25888. name: "Front",
  25889. image: {
  25890. source: "./media/characters/tala-grovehorn/front.svg",
  25891. extra: 2636 / 2525,
  25892. bottom: 147 / 2781
  25893. }
  25894. },
  25895. back: {
  25896. height: math.unit(7 + 7 / 12, "feet"),
  25897. weight: math.unit(250, "lb"),
  25898. name: "Back",
  25899. image: {
  25900. source: "./media/characters/tala-grovehorn/back.svg",
  25901. extra: 2635 / 2539,
  25902. bottom: 100 / 2732.8
  25903. }
  25904. },
  25905. mouth: {
  25906. height: math.unit(1.15, "feet"),
  25907. name: "Mouth",
  25908. image: {
  25909. source: "./media/characters/tala-grovehorn/mouth.svg"
  25910. }
  25911. },
  25912. dick: {
  25913. height: math.unit(2.36, "feet"),
  25914. name: "Dick",
  25915. image: {
  25916. source: "./media/characters/tala-grovehorn/dick.svg"
  25917. }
  25918. },
  25919. slit: {
  25920. height: math.unit(0.61, "feet"),
  25921. name: "Slit",
  25922. image: {
  25923. source: "./media/characters/tala-grovehorn/slit.svg"
  25924. }
  25925. },
  25926. },
  25927. [
  25928. ]
  25929. ))
  25930. characterMakers.push(() => makeCharacter(
  25931. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25932. {
  25933. front: {
  25934. height: math.unit(7 + 7 / 12, "feet"),
  25935. weight: math.unit(225, "lb"),
  25936. name: "Front",
  25937. image: {
  25938. source: "./media/characters/epona/front.svg",
  25939. extra: 2445 / 2290,
  25940. bottom: 251 / 2696
  25941. }
  25942. },
  25943. back: {
  25944. height: math.unit(7 + 7 / 12, "feet"),
  25945. weight: math.unit(225, "lb"),
  25946. name: "Back",
  25947. image: {
  25948. source: "./media/characters/epona/back.svg",
  25949. extra: 2546 / 2408,
  25950. bottom: 44 / 2589
  25951. }
  25952. },
  25953. genitals: {
  25954. height: math.unit(1.5, "feet"),
  25955. name: "Genitals",
  25956. image: {
  25957. source: "./media/characters/epona/genitals.svg"
  25958. }
  25959. },
  25960. },
  25961. [
  25962. {
  25963. name: "Normal",
  25964. height: math.unit(7 + 7 / 12, "feet"),
  25965. default: true
  25966. },
  25967. ]
  25968. ))
  25969. characterMakers.push(() => makeCharacter(
  25970. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25971. {
  25972. front: {
  25973. height: math.unit(7, "feet"),
  25974. weight: math.unit(518, "lb"),
  25975. name: "Front",
  25976. image: {
  25977. source: "./media/characters/avia-bloodbourn/front.svg",
  25978. extra: 1466 / 1350,
  25979. bottom: 65 / 1527
  25980. }
  25981. },
  25982. },
  25983. [
  25984. ]
  25985. ))
  25986. characterMakers.push(() => makeCharacter(
  25987. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25988. {
  25989. front: {
  25990. height: math.unit(9.35, "feet"),
  25991. weight: math.unit(600, "lb"),
  25992. name: "Front",
  25993. image: {
  25994. source: "./media/characters/amera/front.svg",
  25995. extra: 891 / 818,
  25996. bottom: 30 / 922.7
  25997. }
  25998. },
  25999. back: {
  26000. height: math.unit(9.35, "feet"),
  26001. weight: math.unit(600, "lb"),
  26002. name: "Back",
  26003. image: {
  26004. source: "./media/characters/amera/back.svg",
  26005. extra: 876 / 824,
  26006. bottom: 6.8 / 884
  26007. }
  26008. },
  26009. dick: {
  26010. height: math.unit(2.14, "feet"),
  26011. name: "Dick",
  26012. image: {
  26013. source: "./media/characters/amera/dick.svg"
  26014. }
  26015. },
  26016. },
  26017. [
  26018. {
  26019. name: "Normal",
  26020. height: math.unit(9.35, "feet"),
  26021. default: true
  26022. },
  26023. ]
  26024. ))
  26025. characterMakers.push(() => makeCharacter(
  26026. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26027. {
  26028. kneeling: {
  26029. height: math.unit(3 + 4 / 12, "feet"),
  26030. weight: math.unit(90, "lb"),
  26031. name: "Kneeling",
  26032. image: {
  26033. source: "./media/characters/rosewen/kneeling.svg",
  26034. extra: 1835 / 1571,
  26035. bottom: 27.7 / 1862
  26036. }
  26037. },
  26038. },
  26039. [
  26040. {
  26041. name: "Normal",
  26042. height: math.unit(3 + 4 / 12, "feet"),
  26043. default: true
  26044. },
  26045. ]
  26046. ))
  26047. characterMakers.push(() => makeCharacter(
  26048. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26049. {
  26050. front: {
  26051. height: math.unit(5 + 10 / 12, "feet"),
  26052. weight: math.unit(200, "lb"),
  26053. name: "Front",
  26054. image: {
  26055. source: "./media/characters/sabah/front.svg",
  26056. extra: 849 / 763,
  26057. bottom: 33.9 / 881
  26058. }
  26059. },
  26060. },
  26061. [
  26062. {
  26063. name: "Normal",
  26064. height: math.unit(5 + 10 / 12, "feet"),
  26065. default: true
  26066. },
  26067. ]
  26068. ))
  26069. characterMakers.push(() => makeCharacter(
  26070. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26071. {
  26072. front: {
  26073. height: math.unit(3 + 5 / 12, "feet"),
  26074. weight: math.unit(40, "kg"),
  26075. name: "Front",
  26076. image: {
  26077. source: "./media/characters/purple-flame/front.svg",
  26078. extra: 1577 / 1412,
  26079. bottom: 97 / 1694
  26080. }
  26081. },
  26082. frontDressed: {
  26083. height: math.unit(3 + 5 / 12, "feet"),
  26084. weight: math.unit(40, "kg"),
  26085. name: "Front (Dressed)",
  26086. image: {
  26087. source: "./media/characters/purple-flame/front-dressed.svg",
  26088. extra: 1577 / 1412,
  26089. bottom: 97 / 1694
  26090. }
  26091. },
  26092. headphones: {
  26093. height: math.unit(0.85, "feet"),
  26094. name: "Headphones",
  26095. image: {
  26096. source: "./media/characters/purple-flame/headphones.svg"
  26097. }
  26098. },
  26099. },
  26100. [
  26101. {
  26102. name: "Really Small",
  26103. height: math.unit(5, "cm")
  26104. },
  26105. {
  26106. name: "Micro",
  26107. height: math.unit(1 + 5 / 12, "feet")
  26108. },
  26109. {
  26110. name: "Normal",
  26111. height: math.unit(3 + 5 / 12, "feet"),
  26112. default: true
  26113. },
  26114. {
  26115. name: "Minimacro",
  26116. height: math.unit(125, "feet")
  26117. },
  26118. {
  26119. name: "Macro",
  26120. height: math.unit(0.5, "miles")
  26121. },
  26122. {
  26123. name: "Megamacro",
  26124. height: math.unit(50, "miles")
  26125. },
  26126. {
  26127. name: "Gigantic",
  26128. height: math.unit(750, "miles")
  26129. },
  26130. {
  26131. name: "Planetary",
  26132. height: math.unit(15000, "miles")
  26133. },
  26134. ]
  26135. ))
  26136. characterMakers.push(() => makeCharacter(
  26137. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26138. {
  26139. front: {
  26140. height: math.unit(14, "feet"),
  26141. weight: math.unit(959, "lb"),
  26142. name: "Front",
  26143. image: {
  26144. source: "./media/characters/arsenal/front.svg",
  26145. extra: 2357 / 2157,
  26146. bottom: 93 / 2458
  26147. }
  26148. },
  26149. },
  26150. [
  26151. {
  26152. name: "Normal",
  26153. height: math.unit(14, "feet"),
  26154. default: true
  26155. },
  26156. ]
  26157. ))
  26158. characterMakers.push(() => makeCharacter(
  26159. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26160. {
  26161. front: {
  26162. height: math.unit(6, "feet"),
  26163. weight: math.unit(150, "lb"),
  26164. name: "Front",
  26165. image: {
  26166. source: "./media/characters/adira/front.svg",
  26167. extra: 1078 / 1029,
  26168. bottom: 87 / 1166
  26169. }
  26170. },
  26171. },
  26172. [
  26173. {
  26174. name: "Micro",
  26175. height: math.unit(4, "inches"),
  26176. default: true
  26177. },
  26178. {
  26179. name: "Macro",
  26180. height: math.unit(50, "feet")
  26181. },
  26182. ]
  26183. ))
  26184. characterMakers.push(() => makeCharacter(
  26185. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26186. {
  26187. front: {
  26188. height: math.unit(16, "feet"),
  26189. weight: math.unit(1000, "lb"),
  26190. name: "Front",
  26191. image: {
  26192. source: "./media/characters/grim/front.svg",
  26193. extra: 622 / 614,
  26194. bottom: 18.1 / 642
  26195. }
  26196. },
  26197. back: {
  26198. height: math.unit(16, "feet"),
  26199. weight: math.unit(1000, "lb"),
  26200. name: "Back",
  26201. image: {
  26202. source: "./media/characters/grim/back.svg",
  26203. extra: 610.6 / 602,
  26204. bottom: 40.8 / 652
  26205. }
  26206. },
  26207. hunched: {
  26208. height: math.unit(9.75, "feet"),
  26209. weight: math.unit(1000, "lb"),
  26210. name: "Hunched",
  26211. image: {
  26212. source: "./media/characters/grim/hunched.svg",
  26213. extra: 304 / 297,
  26214. bottom: 35.4 / 394
  26215. }
  26216. },
  26217. },
  26218. [
  26219. {
  26220. name: "Normal",
  26221. height: math.unit(16, "feet"),
  26222. default: true
  26223. },
  26224. ]
  26225. ))
  26226. characterMakers.push(() => makeCharacter(
  26227. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26228. {
  26229. front: {
  26230. height: math.unit(2.3, "meters"),
  26231. weight: math.unit(300, "lb"),
  26232. name: "Front",
  26233. image: {
  26234. source: "./media/characters/sinja/front-sfw.svg",
  26235. extra: 1393 / 1294,
  26236. bottom: 70 / 1463
  26237. }
  26238. },
  26239. frontNsfw: {
  26240. height: math.unit(2.3, "meters"),
  26241. weight: math.unit(300, "lb"),
  26242. name: "Front (NSFW)",
  26243. image: {
  26244. source: "./media/characters/sinja/front-nsfw.svg",
  26245. extra: 1393 / 1294,
  26246. bottom: 70 / 1463
  26247. }
  26248. },
  26249. back: {
  26250. height: math.unit(2.3, "meters"),
  26251. weight: math.unit(300, "lb"),
  26252. name: "Back",
  26253. image: {
  26254. source: "./media/characters/sinja/back.svg",
  26255. extra: 1393 / 1294,
  26256. bottom: 70 / 1463
  26257. }
  26258. },
  26259. head: {
  26260. height: math.unit(1.771, "feet"),
  26261. name: "Head",
  26262. image: {
  26263. source: "./media/characters/sinja/head.svg"
  26264. }
  26265. },
  26266. slit: {
  26267. height: math.unit(0.8, "feet"),
  26268. name: "Slit",
  26269. image: {
  26270. source: "./media/characters/sinja/slit.svg"
  26271. }
  26272. },
  26273. },
  26274. [
  26275. {
  26276. name: "Normal",
  26277. height: math.unit(2.3, "meters")
  26278. },
  26279. {
  26280. name: "Macro",
  26281. height: math.unit(91, "meters"),
  26282. default: true
  26283. },
  26284. {
  26285. name: "Megamacro",
  26286. height: math.unit(91440, "meters")
  26287. },
  26288. {
  26289. name: "Gigamacro",
  26290. height: math.unit(60960000, "meters")
  26291. },
  26292. {
  26293. name: "Teramacro",
  26294. height: math.unit(9144000000, "meters")
  26295. },
  26296. ]
  26297. ))
  26298. characterMakers.push(() => makeCharacter(
  26299. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26300. {
  26301. front: {
  26302. height: math.unit(1.7, "meters"),
  26303. weight: math.unit(130, "lb"),
  26304. name: "Front",
  26305. image: {
  26306. source: "./media/characters/kyu/front.svg",
  26307. extra: 415 / 395,
  26308. bottom: 5 / 420
  26309. }
  26310. },
  26311. head: {
  26312. height: math.unit(1.75, "feet"),
  26313. name: "Head",
  26314. image: {
  26315. source: "./media/characters/kyu/head.svg"
  26316. }
  26317. },
  26318. foot: {
  26319. height: math.unit(0.81, "feet"),
  26320. name: "Foot",
  26321. image: {
  26322. source: "./media/characters/kyu/foot.svg"
  26323. }
  26324. },
  26325. },
  26326. [
  26327. {
  26328. name: "Normal",
  26329. height: math.unit(1.7, "meters")
  26330. },
  26331. {
  26332. name: "Macro",
  26333. height: math.unit(131, "feet"),
  26334. default: true
  26335. },
  26336. {
  26337. name: "Megamacro",
  26338. height: math.unit(91440, "meters")
  26339. },
  26340. {
  26341. name: "Gigamacro",
  26342. height: math.unit(60960000, "meters")
  26343. },
  26344. {
  26345. name: "Teramacro",
  26346. height: math.unit(9144000000, "meters")
  26347. },
  26348. ]
  26349. ))
  26350. characterMakers.push(() => makeCharacter(
  26351. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26352. {
  26353. front: {
  26354. height: math.unit(7 + 1 / 12, "feet"),
  26355. weight: math.unit(250, "lb"),
  26356. name: "Front",
  26357. image: {
  26358. source: "./media/characters/joey/front.svg",
  26359. extra: 1791 / 1537,
  26360. bottom: 28 / 1816
  26361. }
  26362. },
  26363. },
  26364. [
  26365. {
  26366. name: "Micro",
  26367. height: math.unit(3, "inches")
  26368. },
  26369. {
  26370. name: "Normal",
  26371. height: math.unit(7 + 1 / 12, "feet"),
  26372. default: true
  26373. },
  26374. ]
  26375. ))
  26376. characterMakers.push(() => makeCharacter(
  26377. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26378. {
  26379. front: {
  26380. height: math.unit(165, "cm"),
  26381. weight: math.unit(140, "lb"),
  26382. name: "Front",
  26383. image: {
  26384. source: "./media/characters/sam-evans/front.svg",
  26385. extra: 3417 / 3230,
  26386. bottom: 41.3 / 3417
  26387. }
  26388. },
  26389. frontSixTails: {
  26390. height: math.unit(165, "cm"),
  26391. weight: math.unit(140, "lb"),
  26392. name: "Front-six-tails",
  26393. image: {
  26394. source: "./media/characters/sam-evans/front-six-tails.svg",
  26395. extra: 3417 / 3230,
  26396. bottom: 41.3 / 3417
  26397. }
  26398. },
  26399. back: {
  26400. height: math.unit(165, "cm"),
  26401. weight: math.unit(140, "lb"),
  26402. name: "Back",
  26403. image: {
  26404. source: "./media/characters/sam-evans/back.svg",
  26405. extra: 3227 / 3032,
  26406. bottom: 6.8 / 3234
  26407. }
  26408. },
  26409. face: {
  26410. height: math.unit(0.68, "feet"),
  26411. name: "Face",
  26412. image: {
  26413. source: "./media/characters/sam-evans/face.svg"
  26414. }
  26415. },
  26416. },
  26417. [
  26418. {
  26419. name: "Normal",
  26420. height: math.unit(165, "cm"),
  26421. default: true
  26422. },
  26423. {
  26424. name: "Macro",
  26425. height: math.unit(100, "meters")
  26426. },
  26427. {
  26428. name: "Macro+",
  26429. height: math.unit(800, "meters")
  26430. },
  26431. {
  26432. name: "Macro++",
  26433. height: math.unit(3, "km")
  26434. },
  26435. {
  26436. name: "Macro+++",
  26437. height: math.unit(30, "km")
  26438. },
  26439. ]
  26440. ))
  26441. characterMakers.push(() => makeCharacter(
  26442. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26443. {
  26444. front: {
  26445. height: math.unit(10, "feet"),
  26446. weight: math.unit(750, "lb"),
  26447. name: "Front",
  26448. image: {
  26449. source: "./media/characters/juliet-a/front.svg",
  26450. extra: 1766 / 1720,
  26451. bottom: 43 / 1809
  26452. }
  26453. },
  26454. back: {
  26455. height: math.unit(10, "feet"),
  26456. weight: math.unit(750, "lb"),
  26457. name: "Back",
  26458. image: {
  26459. source: "./media/characters/juliet-a/back.svg",
  26460. extra: 1781 / 1734,
  26461. bottom: 35 / 1810,
  26462. }
  26463. },
  26464. },
  26465. [
  26466. {
  26467. name: "Normal",
  26468. height: math.unit(10, "feet"),
  26469. default: true
  26470. },
  26471. {
  26472. name: "Dragon Form",
  26473. height: math.unit(250, "feet")
  26474. },
  26475. {
  26476. name: "Macro",
  26477. height: math.unit(1000, "feet")
  26478. },
  26479. {
  26480. name: "Megamacro",
  26481. height: math.unit(10000, "feet")
  26482. }
  26483. ]
  26484. ))
  26485. characterMakers.push(() => makeCharacter(
  26486. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26487. {
  26488. regular: {
  26489. height: math.unit(7 + 3 / 12, "feet"),
  26490. weight: math.unit(260, "lb"),
  26491. name: "Regular",
  26492. image: {
  26493. source: "./media/characters/wild/regular.svg",
  26494. extra: 97.45 / 92,
  26495. bottom: 6.8 / 104.3
  26496. }
  26497. },
  26498. biggums: {
  26499. height: math.unit(8 + 6 / 12, "feet"),
  26500. weight: math.unit(425, "lb"),
  26501. name: "Biggums",
  26502. image: {
  26503. source: "./media/characters/wild/biggums.svg",
  26504. extra: 97.45 / 92,
  26505. bottom: 7.5 / 132.34
  26506. }
  26507. },
  26508. mawRegular: {
  26509. height: math.unit(1.24, "feet"),
  26510. name: "Maw (Regular)",
  26511. image: {
  26512. source: "./media/characters/wild/maw.svg"
  26513. }
  26514. },
  26515. mawBiggums: {
  26516. height: math.unit(1.47, "feet"),
  26517. name: "Maw (Biggums)",
  26518. image: {
  26519. source: "./media/characters/wild/maw.svg"
  26520. }
  26521. },
  26522. },
  26523. [
  26524. {
  26525. name: "Normal",
  26526. height: math.unit(7 + 3 / 12, "feet"),
  26527. default: true
  26528. },
  26529. ]
  26530. ))
  26531. characterMakers.push(() => makeCharacter(
  26532. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26533. {
  26534. front: {
  26535. height: math.unit(2.5, "meters"),
  26536. weight: math.unit(200, "kg"),
  26537. name: "Front",
  26538. image: {
  26539. source: "./media/characters/vidar/front.svg",
  26540. extra: 2994 / 2795,
  26541. bottom: 56 / 3061
  26542. }
  26543. },
  26544. back: {
  26545. height: math.unit(2.5, "meters"),
  26546. weight: math.unit(200, "kg"),
  26547. name: "Back",
  26548. image: {
  26549. source: "./media/characters/vidar/back.svg",
  26550. extra: 3131 / 2928,
  26551. bottom: 13.5 / 3141.5
  26552. }
  26553. },
  26554. feral: {
  26555. height: math.unit(2.5, "meters"),
  26556. weight: math.unit(2000, "kg"),
  26557. name: "Feral",
  26558. image: {
  26559. source: "./media/characters/vidar/feral.svg",
  26560. extra: 2790 / 1765,
  26561. bottom: 6 / 2796
  26562. }
  26563. },
  26564. },
  26565. [
  26566. {
  26567. name: "Normal",
  26568. height: math.unit(2.5, "meters"),
  26569. default: true
  26570. },
  26571. {
  26572. name: "Macro",
  26573. height: math.unit(100, "meters")
  26574. },
  26575. ]
  26576. ))
  26577. characterMakers.push(() => makeCharacter(
  26578. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26579. {
  26580. front: {
  26581. height: math.unit(5 + 9 / 12, "feet"),
  26582. weight: math.unit(120, "lb"),
  26583. name: "Front",
  26584. image: {
  26585. source: "./media/characters/ash/front.svg",
  26586. extra: 2189 / 1961,
  26587. bottom: 5.2 / 2194
  26588. }
  26589. },
  26590. },
  26591. [
  26592. {
  26593. name: "Normal",
  26594. height: math.unit(5 + 9 / 12, "feet"),
  26595. default: true
  26596. },
  26597. ]
  26598. ))
  26599. characterMakers.push(() => makeCharacter(
  26600. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26601. {
  26602. front: {
  26603. height: math.unit(9, "feet"),
  26604. weight: math.unit(10000, "lb"),
  26605. name: "Front",
  26606. image: {
  26607. source: "./media/characters/gygabite/front.svg",
  26608. bottom: 31.7 / 537.8,
  26609. extra: 505 / 370
  26610. }
  26611. },
  26612. },
  26613. [
  26614. {
  26615. name: "Normal",
  26616. height: math.unit(9, "feet"),
  26617. default: true
  26618. },
  26619. ]
  26620. ))
  26621. characterMakers.push(() => makeCharacter(
  26622. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26623. {
  26624. front: {
  26625. height: math.unit(12, "feet"),
  26626. weight: math.unit(35000, "lb"),
  26627. name: "Front",
  26628. image: {
  26629. source: "./media/characters/p0tat0/front.svg",
  26630. extra: 1065 / 921,
  26631. bottom: 55.7 / 1121.25
  26632. }
  26633. },
  26634. },
  26635. [
  26636. {
  26637. name: "Normal",
  26638. height: math.unit(12, "feet"),
  26639. default: true
  26640. },
  26641. ]
  26642. ))
  26643. characterMakers.push(() => makeCharacter(
  26644. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26645. {
  26646. side: {
  26647. height: math.unit(6.5, "feet"),
  26648. weight: math.unit(800, "lb"),
  26649. name: "Side",
  26650. image: {
  26651. source: "./media/characters/dusk/side.svg",
  26652. extra: 615 / 373,
  26653. bottom: 53 / 664
  26654. }
  26655. },
  26656. sitting: {
  26657. height: math.unit(7, "feet"),
  26658. weight: math.unit(800, "lb"),
  26659. name: "Sitting",
  26660. image: {
  26661. source: "./media/characters/dusk/sitting.svg",
  26662. extra: 753 / 425,
  26663. bottom: 33 / 774
  26664. }
  26665. },
  26666. head: {
  26667. height: math.unit(6.1, "feet"),
  26668. name: "Head",
  26669. image: {
  26670. source: "./media/characters/dusk/head.svg"
  26671. }
  26672. },
  26673. },
  26674. [
  26675. {
  26676. name: "Normal",
  26677. height: math.unit(7, "feet"),
  26678. default: true
  26679. },
  26680. ]
  26681. ))
  26682. characterMakers.push(() => makeCharacter(
  26683. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26684. {
  26685. front: {
  26686. height: math.unit(15, "feet"),
  26687. weight: math.unit(7000, "lb"),
  26688. name: "Front",
  26689. image: {
  26690. source: "./media/characters/jay-direwolf/front.svg",
  26691. extra: 1810 / 1732,
  26692. bottom: 66 / 1892
  26693. }
  26694. },
  26695. },
  26696. [
  26697. {
  26698. name: "Normal",
  26699. height: math.unit(15, "feet"),
  26700. default: true
  26701. },
  26702. ]
  26703. ))
  26704. characterMakers.push(() => makeCharacter(
  26705. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26706. {
  26707. front: {
  26708. height: math.unit(4 + 9 / 12, "feet"),
  26709. weight: math.unit(130, "lb"),
  26710. name: "Front",
  26711. image: {
  26712. source: "./media/characters/anchovie/front.svg",
  26713. extra: 382 / 350,
  26714. bottom: 25 / 409
  26715. }
  26716. },
  26717. back: {
  26718. height: math.unit(4 + 9 / 12, "feet"),
  26719. weight: math.unit(130, "lb"),
  26720. name: "Back",
  26721. image: {
  26722. source: "./media/characters/anchovie/back.svg",
  26723. extra: 385 / 352,
  26724. bottom: 16.6 / 402
  26725. }
  26726. },
  26727. frontDressed: {
  26728. height: math.unit(4 + 9 / 12, "feet"),
  26729. weight: math.unit(130, "lb"),
  26730. name: "Front (Dressed)",
  26731. image: {
  26732. source: "./media/characters/anchovie/front-dressed.svg",
  26733. extra: 382 / 350,
  26734. bottom: 25 / 409
  26735. }
  26736. },
  26737. backDressed: {
  26738. height: math.unit(4 + 9 / 12, "feet"),
  26739. weight: math.unit(130, "lb"),
  26740. name: "Back (Dressed)",
  26741. image: {
  26742. source: "./media/characters/anchovie/back-dressed.svg",
  26743. extra: 385 / 352,
  26744. bottom: 16.6 / 402
  26745. }
  26746. },
  26747. },
  26748. [
  26749. {
  26750. name: "Micro",
  26751. height: math.unit(6.4, "inches")
  26752. },
  26753. {
  26754. name: "Normal",
  26755. height: math.unit(4 + 9 / 12, "feet"),
  26756. default: true
  26757. },
  26758. ]
  26759. ))
  26760. characterMakers.push(() => makeCharacter(
  26761. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26762. {
  26763. front: {
  26764. height: math.unit(2, "meters"),
  26765. weight: math.unit(180, "lb"),
  26766. name: "Front",
  26767. image: {
  26768. source: "./media/characters/acidrenamon/front.svg",
  26769. extra: 987 / 890,
  26770. bottom: 22.8 / 1009
  26771. }
  26772. },
  26773. back: {
  26774. height: math.unit(2, "meters"),
  26775. weight: math.unit(180, "lb"),
  26776. name: "Back",
  26777. image: {
  26778. source: "./media/characters/acidrenamon/back.svg",
  26779. extra: 983 / 891,
  26780. bottom: 8.4 / 992
  26781. }
  26782. },
  26783. head: {
  26784. height: math.unit(1.92, "feet"),
  26785. name: "Head",
  26786. image: {
  26787. source: "./media/characters/acidrenamon/head.svg"
  26788. }
  26789. },
  26790. rump: {
  26791. height: math.unit(1.72, "feet"),
  26792. name: "Rump",
  26793. image: {
  26794. source: "./media/characters/acidrenamon/rump.svg"
  26795. }
  26796. },
  26797. tail: {
  26798. height: math.unit(4.2, "feet"),
  26799. name: "Tail",
  26800. image: {
  26801. source: "./media/characters/acidrenamon/tail.svg"
  26802. }
  26803. },
  26804. },
  26805. [
  26806. {
  26807. name: "Normal",
  26808. height: math.unit(2, "meters"),
  26809. default: true
  26810. },
  26811. {
  26812. name: "Minimacro",
  26813. height: math.unit(7, "meters")
  26814. },
  26815. {
  26816. name: "Macro",
  26817. height: math.unit(200, "meters")
  26818. },
  26819. {
  26820. name: "Gigamacro",
  26821. height: math.unit(0.2, "earths")
  26822. },
  26823. ]
  26824. ))
  26825. characterMakers.push(() => makeCharacter(
  26826. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26827. {
  26828. front: {
  26829. height: math.unit(6, "feet"),
  26830. weight: math.unit(150, "lb"),
  26831. name: "Front",
  26832. image: {
  26833. source: "./media/characters/kenzie-lee/front.svg",
  26834. extra: 1525 / 1465,
  26835. bottom: 45 / 1570
  26836. }
  26837. },
  26838. side: {
  26839. height: math.unit(6, "feet"),
  26840. weight: math.unit(150, "lb"),
  26841. name: "Side",
  26842. image: {
  26843. source: "./media/characters/kenzie-lee/side.svg",
  26844. extra: 5505 / 5383,
  26845. bottom: 60 / 5573
  26846. }
  26847. },
  26848. paw: {
  26849. height: math.unit(0.57, "feet"),
  26850. name: "Paw",
  26851. image: {
  26852. source: "./media/characters/kenzie-lee/paw.svg"
  26853. }
  26854. },
  26855. },
  26856. [
  26857. {
  26858. name: "Normal",
  26859. height: math.unit(152, "feet"),
  26860. default: true
  26861. },
  26862. {
  26863. name: "Megamacro",
  26864. height: math.unit(7, "miles")
  26865. },
  26866. {
  26867. name: "Gigamacro",
  26868. height: math.unit(8000, "miles")
  26869. },
  26870. ]
  26871. ))
  26872. characterMakers.push(() => makeCharacter(
  26873. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26874. {
  26875. side: {
  26876. height: math.unit(6, "feet"),
  26877. weight: math.unit(150, "lb"),
  26878. name: "Side",
  26879. image: {
  26880. source: "./media/characters/withers/side.svg",
  26881. extra: 1830 / 1728,
  26882. bottom: 96 / 1927
  26883. }
  26884. },
  26885. front: {
  26886. height: math.unit(6, "feet"),
  26887. weight: math.unit(150, "lb"),
  26888. name: "Front",
  26889. image: {
  26890. source: "./media/characters/withers/front.svg",
  26891. extra: 1514 / 1438,
  26892. bottom: 118 / 1632
  26893. }
  26894. },
  26895. },
  26896. [
  26897. {
  26898. name: "Macro",
  26899. height: math.unit(168, "feet"),
  26900. default: true
  26901. },
  26902. {
  26903. name: "Megamacro",
  26904. height: math.unit(15, "miles")
  26905. }
  26906. ]
  26907. ))
  26908. characterMakers.push(() => makeCharacter(
  26909. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26910. {
  26911. front: {
  26912. height: math.unit(6 + 7 / 12, "feet"),
  26913. weight: math.unit(250, "lb"),
  26914. name: "Front",
  26915. image: {
  26916. source: "./media/characters/nemoskii/front.svg",
  26917. extra: 2270 / 1734,
  26918. bottom: 86 / 2354
  26919. }
  26920. },
  26921. back: {
  26922. height: math.unit(6 + 7 / 12, "feet"),
  26923. weight: math.unit(250, "lb"),
  26924. name: "Back",
  26925. image: {
  26926. source: "./media/characters/nemoskii/back.svg",
  26927. extra: 1845 / 1788,
  26928. bottom: 10.5 / 1852
  26929. }
  26930. },
  26931. head: {
  26932. height: math.unit(1.31, "feet"),
  26933. name: "Head",
  26934. image: {
  26935. source: "./media/characters/nemoskii/head.svg"
  26936. }
  26937. },
  26938. },
  26939. [
  26940. {
  26941. name: "Micro",
  26942. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  26943. },
  26944. {
  26945. name: "Normal",
  26946. height: math.unit(6 + 7 / 12, "feet"),
  26947. default: true
  26948. },
  26949. {
  26950. name: "Macro",
  26951. height: math.unit((6 + 7 / 12) * 150, "feet")
  26952. },
  26953. {
  26954. name: "Macro+",
  26955. height: math.unit((6 + 7 / 12) * 500, "feet")
  26956. },
  26957. {
  26958. name: "Megamacro",
  26959. height: math.unit((6 + 7 / 12) * 100000, "feet")
  26960. },
  26961. ]
  26962. ))
  26963. characterMakers.push(() => makeCharacter(
  26964. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26965. {
  26966. front: {
  26967. height: math.unit(1, "mile"),
  26968. weight: math.unit(265261.9, "lb"),
  26969. name: "Front",
  26970. image: {
  26971. source: "./media/characters/shui/front.svg",
  26972. extra: 1633 / 1564,
  26973. bottom: 91.5 / 1726
  26974. }
  26975. },
  26976. },
  26977. [
  26978. {
  26979. name: "Macro",
  26980. height: math.unit(1, "mile"),
  26981. default: true
  26982. },
  26983. ]
  26984. ))
  26985. characterMakers.push(() => makeCharacter(
  26986. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26987. {
  26988. front: {
  26989. height: math.unit(12 + 6 / 12, "feet"),
  26990. weight: math.unit(1342, "lb"),
  26991. name: "Front",
  26992. image: {
  26993. source: "./media/characters/arokh-takakura/front.svg",
  26994. extra: 1089 / 1043,
  26995. bottom: 77.4 / 1176.7
  26996. }
  26997. },
  26998. back: {
  26999. height: math.unit(12 + 6 / 12, "feet"),
  27000. weight: math.unit(1342, "lb"),
  27001. name: "Back",
  27002. image: {
  27003. source: "./media/characters/arokh-takakura/back.svg",
  27004. extra: 1046 / 1019,
  27005. bottom: 102 / 1150
  27006. }
  27007. },
  27008. },
  27009. [
  27010. {
  27011. name: "Big",
  27012. height: math.unit(12 + 6 / 12, "feet"),
  27013. default: true
  27014. },
  27015. ]
  27016. ))
  27017. characterMakers.push(() => makeCharacter(
  27018. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27019. {
  27020. front: {
  27021. height: math.unit(5 + 6 / 12, "feet"),
  27022. weight: math.unit(150, "lb"),
  27023. name: "Front",
  27024. image: {
  27025. source: "./media/characters/theo/front.svg",
  27026. extra: 1184 / 1131,
  27027. bottom: 7.4 / 1191
  27028. }
  27029. },
  27030. },
  27031. [
  27032. {
  27033. name: "Micro",
  27034. height: math.unit(5, "inches")
  27035. },
  27036. {
  27037. name: "Normal",
  27038. height: math.unit(5 + 6 / 12, "feet"),
  27039. default: true
  27040. },
  27041. ]
  27042. ))
  27043. characterMakers.push(() => makeCharacter(
  27044. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27045. {
  27046. front: {
  27047. height: math.unit(5 + 9 / 12, "feet"),
  27048. weight: math.unit(130, "lb"),
  27049. name: "Front",
  27050. image: {
  27051. source: "./media/characters/cecelia-swift/front.svg",
  27052. extra: 502 / 484,
  27053. bottom: 23 / 523
  27054. }
  27055. },
  27056. back: {
  27057. height: math.unit(5 + 9 / 12, "feet"),
  27058. weight: math.unit(130, "lb"),
  27059. name: "Back",
  27060. image: {
  27061. source: "./media/characters/cecelia-swift/back.svg",
  27062. extra: 499 / 485,
  27063. bottom: 12 / 511
  27064. }
  27065. },
  27066. head: {
  27067. height: math.unit(0.90, "feet"),
  27068. name: "Head",
  27069. image: {
  27070. source: "./media/characters/cecelia-swift/head.svg"
  27071. }
  27072. },
  27073. rump: {
  27074. height: math.unit(1.75, "feet"),
  27075. name: "Rump",
  27076. image: {
  27077. source: "./media/characters/cecelia-swift/rump.svg"
  27078. }
  27079. },
  27080. },
  27081. [
  27082. {
  27083. name: "Normal",
  27084. height: math.unit(5 + 9 / 12, "feet"),
  27085. default: true
  27086. },
  27087. {
  27088. name: "Big",
  27089. height: math.unit(50, "feet")
  27090. },
  27091. {
  27092. name: "Macro",
  27093. height: math.unit(100, "feet")
  27094. },
  27095. {
  27096. name: "Macro+",
  27097. height: math.unit(500, "feet")
  27098. },
  27099. {
  27100. name: "Macro++",
  27101. height: math.unit(1000, "feet")
  27102. },
  27103. ]
  27104. ))
  27105. characterMakers.push(() => makeCharacter(
  27106. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27107. {
  27108. front: {
  27109. height: math.unit(6, "feet"),
  27110. weight: math.unit(150, "lb"),
  27111. name: "Front",
  27112. image: {
  27113. source: "./media/characters/kaunan/front.svg",
  27114. extra: 2890 / 2523,
  27115. bottom: 49 / 2939
  27116. }
  27117. },
  27118. },
  27119. [
  27120. {
  27121. name: "Macro",
  27122. height: math.unit(150, "feet"),
  27123. default: true
  27124. },
  27125. ]
  27126. ))
  27127. characterMakers.push(() => makeCharacter(
  27128. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27129. {
  27130. front: {
  27131. height: math.unit(175, "cm"),
  27132. weight: math.unit(60, "kg"),
  27133. name: "Front",
  27134. image: {
  27135. source: "./media/characters/fei/front.svg",
  27136. extra: 2581 / 2400,
  27137. bottom: 82.2 / 2663
  27138. }
  27139. },
  27140. },
  27141. [
  27142. {
  27143. name: "Mortal",
  27144. height: math.unit(175, "cm")
  27145. },
  27146. {
  27147. name: "Normal",
  27148. height: math.unit(3500, "m"),
  27149. default: true
  27150. },
  27151. {
  27152. name: "Stroll",
  27153. height: math.unit(17.5, "km")
  27154. },
  27155. {
  27156. name: "Showoff",
  27157. height: math.unit(175, "km")
  27158. },
  27159. ]
  27160. ))
  27161. characterMakers.push(() => makeCharacter(
  27162. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27163. {
  27164. front: {
  27165. height: math.unit(7, "feet"),
  27166. weight: math.unit(1000, "kg"),
  27167. name: "Front",
  27168. image: {
  27169. source: "./media/characters/edrax/front.svg",
  27170. extra: 2838 / 2550,
  27171. bottom: 130 / 2968
  27172. }
  27173. },
  27174. },
  27175. [
  27176. {
  27177. name: "Small",
  27178. height: math.unit(7, "feet")
  27179. },
  27180. {
  27181. name: "Normal",
  27182. height: math.unit(1500, "meters")
  27183. },
  27184. {
  27185. name: "Mega",
  27186. height: math.unit(12000000, "km"),
  27187. default: true
  27188. },
  27189. {
  27190. name: "Megamacro",
  27191. height: math.unit(10600000, "lightyears")
  27192. },
  27193. {
  27194. name: "Hypermacro",
  27195. height: math.unit(256, "yottameters")
  27196. },
  27197. ]
  27198. ))
  27199. characterMakers.push(() => makeCharacter(
  27200. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27201. {
  27202. front: {
  27203. height: math.unit(10, "feet"),
  27204. weight: math.unit(750, "lb"),
  27205. name: "Front",
  27206. image: {
  27207. source: "./media/characters/clove/front.svg",
  27208. extra: 2031 / 1860,
  27209. bottom: 47.8 / 2080
  27210. }
  27211. },
  27212. back: {
  27213. height: math.unit(10, "feet"),
  27214. weight: math.unit(750, "lb"),
  27215. name: "Back",
  27216. image: {
  27217. source: "./media/characters/clove/back.svg",
  27218. extra: 2025 / 1859,
  27219. bottom: 46 / 2071
  27220. }
  27221. },
  27222. },
  27223. [
  27224. {
  27225. name: "Normal",
  27226. height: math.unit(10, "feet"),
  27227. default: true
  27228. },
  27229. ]
  27230. ))
  27231. characterMakers.push(() => makeCharacter(
  27232. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27233. {
  27234. front: {
  27235. height: math.unit(4, "feet"),
  27236. weight: math.unit(50, "lb"),
  27237. name: "Front",
  27238. image: {
  27239. source: "./media/characters/alex-rabbit/front.svg",
  27240. extra: 507 / 458,
  27241. bottom: 18.5 / 527
  27242. }
  27243. },
  27244. back: {
  27245. height: math.unit(4, "feet"),
  27246. weight: math.unit(50, "lb"),
  27247. name: "Back",
  27248. image: {
  27249. source: "./media/characters/alex-rabbit/back.svg",
  27250. extra: 502 / 460,
  27251. bottom: 18.9 / 521
  27252. }
  27253. },
  27254. },
  27255. [
  27256. {
  27257. name: "Normal",
  27258. height: math.unit(4, "feet"),
  27259. default: true
  27260. },
  27261. ]
  27262. ))
  27263. characterMakers.push(() => makeCharacter(
  27264. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27265. {
  27266. front: {
  27267. height: math.unit(1 + 3 / 12, "feet"),
  27268. weight: math.unit(80, "lb"),
  27269. name: "Front",
  27270. image: {
  27271. source: "./media/characters/zander-rose/front.svg",
  27272. extra: 916 / 797,
  27273. bottom: 17 / 933
  27274. }
  27275. },
  27276. back: {
  27277. height: math.unit(1 + 3 / 12, "feet"),
  27278. weight: math.unit(80, "lb"),
  27279. name: "Back",
  27280. image: {
  27281. source: "./media/characters/zander-rose/back.svg",
  27282. extra: 903 / 779,
  27283. bottom: 31 / 934
  27284. }
  27285. },
  27286. },
  27287. [
  27288. {
  27289. name: "Normal",
  27290. height: math.unit(1 + 3 / 12, "feet"),
  27291. default: true
  27292. },
  27293. ]
  27294. ))
  27295. characterMakers.push(() => makeCharacter(
  27296. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27297. {
  27298. anthro: {
  27299. height: math.unit(6, "feet"),
  27300. weight: math.unit(150, "lb"),
  27301. name: "Anthro",
  27302. image: {
  27303. source: "./media/characters/razz/anthro.svg",
  27304. extra: 1437 / 1343,
  27305. bottom: 48 / 1485
  27306. }
  27307. },
  27308. feral: {
  27309. height: math.unit(6, "feet"),
  27310. weight: math.unit(150, "lb"),
  27311. name: "Feral",
  27312. image: {
  27313. source: "./media/characters/razz/feral.svg",
  27314. extra: 2569 / 1385,
  27315. bottom: 95 / 2664
  27316. }
  27317. },
  27318. },
  27319. [
  27320. {
  27321. name: "Normal",
  27322. height: math.unit(6, "feet"),
  27323. default: true
  27324. },
  27325. ]
  27326. ))
  27327. characterMakers.push(() => makeCharacter(
  27328. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27329. {
  27330. front: {
  27331. height: math.unit(9 + 4 / 12, "feet"),
  27332. weight: math.unit(500, "lb"),
  27333. name: "Front",
  27334. image: {
  27335. source: "./media/characters/morrigan/front.svg",
  27336. extra: 2707 / 2579,
  27337. bottom: 156 / 2863
  27338. }
  27339. },
  27340. },
  27341. [
  27342. {
  27343. name: "Normal",
  27344. height: math.unit(9 + 4 / 12, "feet"),
  27345. default: true
  27346. },
  27347. ]
  27348. ))
  27349. characterMakers.push(() => makeCharacter(
  27350. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27351. {
  27352. front: {
  27353. height: math.unit(5, "stories"),
  27354. weight: math.unit(4000, "lb"),
  27355. name: "Front",
  27356. image: {
  27357. source: "./media/characters/jenene/front.svg",
  27358. extra: 1780 / 1710,
  27359. bottom: 57 / 1837
  27360. }
  27361. },
  27362. },
  27363. [
  27364. {
  27365. name: "Normal",
  27366. height: math.unit(5, "stories"),
  27367. default: true
  27368. },
  27369. ]
  27370. ))
  27371. characterMakers.push(() => makeCharacter(
  27372. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27373. {
  27374. front: {
  27375. height: math.unit(6, "feet"),
  27376. weight: math.unit(150, "lb"),
  27377. name: "Front",
  27378. image: {
  27379. source: "./media/characters/vix-archaser/front.svg",
  27380. extra: 2767 / 2562,
  27381. bottom: 36 / 2803
  27382. }
  27383. },
  27384. },
  27385. [
  27386. {
  27387. name: "Micro",
  27388. height: math.unit(1, "foot")
  27389. },
  27390. {
  27391. name: "Normal",
  27392. height: math.unit(6 + 5 / 12, "feet")
  27393. },
  27394. {
  27395. name: "Minimacro",
  27396. height: math.unit(500, "feet")
  27397. },
  27398. {
  27399. name: "Macro",
  27400. height: math.unit(4, "miles")
  27401. },
  27402. {
  27403. name: "Megamacro",
  27404. height: math.unit(250, "miles"),
  27405. default: true
  27406. },
  27407. {
  27408. name: "Gigamacro",
  27409. height: math.unit(1, "universe")
  27410. },
  27411. {
  27412. name: "Endgame",
  27413. height: math.unit(100, "multiverses")
  27414. }
  27415. ]
  27416. ))
  27417. characterMakers.push(() => makeCharacter(
  27418. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27419. {
  27420. taurSfw: {
  27421. height: math.unit(10, "meters"),
  27422. weight: math.unit(17500, "kg"),
  27423. name: "Taur",
  27424. image: {
  27425. source: "./media/characters/faey/taur-sfw.svg",
  27426. extra: 1200 / 968,
  27427. bottom: 41 / 1241
  27428. }
  27429. },
  27430. chestmaw: {
  27431. height: math.unit(2.01, "meters"),
  27432. name: "Chestmaw",
  27433. image: {
  27434. source: "./media/characters/faey/chestmaw.svg"
  27435. }
  27436. },
  27437. foot: {
  27438. height: math.unit(2.43, "meters"),
  27439. name: "Foot",
  27440. image: {
  27441. source: "./media/characters/faey/foot.svg"
  27442. }
  27443. },
  27444. jaws: {
  27445. height: math.unit(1.66, "meters"),
  27446. name: "Jaws",
  27447. image: {
  27448. source: "./media/characters/faey/jaws.svg"
  27449. }
  27450. },
  27451. tongues: {
  27452. height: math.unit(2.01, "meters"),
  27453. name: "Tongues",
  27454. image: {
  27455. source: "./media/characters/faey/tongues.svg"
  27456. }
  27457. },
  27458. },
  27459. [
  27460. {
  27461. name: "Small",
  27462. height: math.unit(10, "meters"),
  27463. default: true
  27464. },
  27465. {
  27466. name: "Big",
  27467. height: math.unit(500000, "km")
  27468. },
  27469. ]
  27470. ))
  27471. characterMakers.push(() => makeCharacter(
  27472. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27473. {
  27474. front: {
  27475. height: math.unit(7, "feet"),
  27476. weight: math.unit(275, "lb"),
  27477. name: "Front",
  27478. image: {
  27479. source: "./media/characters/roku/front.svg",
  27480. extra: 903 / 878,
  27481. bottom: 37 / 940
  27482. }
  27483. },
  27484. },
  27485. [
  27486. {
  27487. name: "Normal",
  27488. height: math.unit(7, "feet"),
  27489. default: true
  27490. },
  27491. {
  27492. name: "Macro",
  27493. height: math.unit(500, "feet")
  27494. },
  27495. {
  27496. name: "Megamacro",
  27497. height: math.unit(200, "miles")
  27498. },
  27499. ]
  27500. ))
  27501. characterMakers.push(() => makeCharacter(
  27502. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27503. {
  27504. front: {
  27505. height: math.unit(6 + 2 / 12, "feet"),
  27506. weight: math.unit(150, "lb"),
  27507. name: "Front",
  27508. image: {
  27509. source: "./media/characters/lira/front.svg",
  27510. extra: 1727 / 1605,
  27511. bottom: 26 / 1753
  27512. }
  27513. },
  27514. back: {
  27515. height: math.unit(6 + 2 / 12, "feet"),
  27516. weight: math.unit(150, "lb"),
  27517. name: "Back",
  27518. image: {
  27519. source: "./media/characters/lira/back.svg",
  27520. extra: 1713 / 159,
  27521. bottom: 20 / 1733
  27522. }
  27523. },
  27524. hand: {
  27525. height: math.unit(0.75, "feet"),
  27526. name: "Hand",
  27527. image: {
  27528. source: "./media/characters/lira/hand.svg"
  27529. }
  27530. },
  27531. maw: {
  27532. height: math.unit(0.65, "feet"),
  27533. name: "Maw",
  27534. image: {
  27535. source: "./media/characters/lira/maw.svg"
  27536. }
  27537. },
  27538. pawDigi: {
  27539. height: math.unit(1.6, "feet"),
  27540. name: "Paw Digi",
  27541. image: {
  27542. source: "./media/characters/lira/paw-digi.svg"
  27543. }
  27544. },
  27545. pawPlanti: {
  27546. height: math.unit(1.4, "feet"),
  27547. name: "Paw Planti",
  27548. image: {
  27549. source: "./media/characters/lira/paw-planti.svg"
  27550. }
  27551. },
  27552. },
  27553. [
  27554. {
  27555. name: "Normal",
  27556. height: math.unit(6 + 2 / 12, "feet"),
  27557. default: true
  27558. },
  27559. {
  27560. name: "Macro",
  27561. height: math.unit(100, "feet")
  27562. },
  27563. {
  27564. name: "Macro²",
  27565. height: math.unit(1600, "feet")
  27566. },
  27567. {
  27568. name: "Planetary",
  27569. height: math.unit(20, "earths")
  27570. },
  27571. ]
  27572. ))
  27573. characterMakers.push(() => makeCharacter(
  27574. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27575. {
  27576. front: {
  27577. height: math.unit(6, "feet"),
  27578. weight: math.unit(150, "lb"),
  27579. name: "Front",
  27580. image: {
  27581. source: "./media/characters/hadjet/front.svg",
  27582. extra: 1480 / 1346,
  27583. bottom: 26 / 1506
  27584. }
  27585. },
  27586. frontNsfw: {
  27587. height: math.unit(6, "feet"),
  27588. weight: math.unit(150, "lb"),
  27589. name: "Front (NSFW)",
  27590. image: {
  27591. source: "./media/characters/hadjet/front-nsfw.svg",
  27592. extra: 1440 / 1358,
  27593. bottom: 52 / 1492
  27594. }
  27595. },
  27596. },
  27597. [
  27598. {
  27599. name: "Macro",
  27600. height: math.unit(10, "stories"),
  27601. default: true
  27602. },
  27603. {
  27604. name: "Megamacro",
  27605. height: math.unit(1.5, "miles")
  27606. },
  27607. {
  27608. name: "Megamacro+",
  27609. height: math.unit(5, "miles")
  27610. },
  27611. ]
  27612. ))
  27613. characterMakers.push(() => makeCharacter(
  27614. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27615. {
  27616. side: {
  27617. height: math.unit(106, "feet"),
  27618. weight: math.unit(500, "tonnes"),
  27619. name: "Side",
  27620. image: {
  27621. source: "./media/characters/kodran/side.svg",
  27622. extra: 553 / 480,
  27623. bottom: 33 / 586
  27624. }
  27625. },
  27626. front: {
  27627. height: math.unit(132, "feet"),
  27628. weight: math.unit(500, "tonnes"),
  27629. name: "Front",
  27630. image: {
  27631. source: "./media/characters/kodran/front.svg",
  27632. extra: 667 / 643,
  27633. bottom: 42 / 709
  27634. }
  27635. },
  27636. flying: {
  27637. height: math.unit(350, "feet"),
  27638. weight: math.unit(500, "tonnes"),
  27639. name: "Flying",
  27640. image: {
  27641. source: "./media/characters/kodran/flying.svg"
  27642. }
  27643. },
  27644. foot: {
  27645. height: math.unit(33, "feet"),
  27646. name: "Foot",
  27647. image: {
  27648. source: "./media/characters/kodran/foot.svg"
  27649. }
  27650. },
  27651. footFront: {
  27652. height: math.unit(19, "feet"),
  27653. name: "Foot (Front)",
  27654. image: {
  27655. source: "./media/characters/kodran/foot-front.svg",
  27656. extra: 261 / 261,
  27657. bottom: 91 / 352
  27658. }
  27659. },
  27660. headFront: {
  27661. height: math.unit(53, "feet"),
  27662. name: "Head (Front)",
  27663. image: {
  27664. source: "./media/characters/kodran/head-front.svg"
  27665. }
  27666. },
  27667. headSide: {
  27668. height: math.unit(65, "feet"),
  27669. name: "Head (Side)",
  27670. image: {
  27671. source: "./media/characters/kodran/head-side.svg"
  27672. }
  27673. },
  27674. throat: {
  27675. height: math.unit(79, "feet"),
  27676. name: "Throat",
  27677. image: {
  27678. source: "./media/characters/kodran/throat.svg"
  27679. }
  27680. },
  27681. },
  27682. [
  27683. {
  27684. name: "Large",
  27685. height: math.unit(106, "feet"),
  27686. default: true
  27687. },
  27688. ]
  27689. ))
  27690. characterMakers.push(() => makeCharacter(
  27691. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27692. {
  27693. side: {
  27694. height: math.unit(11, "feet"),
  27695. weight: math.unit(150, "lb"),
  27696. name: "Side",
  27697. image: {
  27698. source: "./media/characters/pyxaron/side.svg",
  27699. extra: 305 / 195,
  27700. bottom: 17 / 322
  27701. }
  27702. },
  27703. },
  27704. [
  27705. {
  27706. name: "Normal",
  27707. height: math.unit(11, "feet"),
  27708. default: true
  27709. },
  27710. ]
  27711. ))
  27712. characterMakers.push(() => makeCharacter(
  27713. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27714. {
  27715. front: {
  27716. height: math.unit(6, "feet"),
  27717. weight: math.unit(150, "lb"),
  27718. name: "Front",
  27719. image: {
  27720. source: "./media/characters/meep/front.svg",
  27721. extra: 88 / 80,
  27722. bottom: 6 / 94
  27723. }
  27724. },
  27725. },
  27726. [
  27727. {
  27728. name: "Fun Sized",
  27729. height: math.unit(2, "inches"),
  27730. default: true
  27731. },
  27732. {
  27733. name: "Friend Sized",
  27734. height: math.unit(8, "inches")
  27735. },
  27736. ]
  27737. ))
  27738. characterMakers.push(() => makeCharacter(
  27739. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27740. {
  27741. front: {
  27742. height: math.unit(15, "feet"),
  27743. weight: math.unit(2500, "lb"),
  27744. name: "Front",
  27745. image: {
  27746. source: "./media/characters/holly-rabbit/front.svg",
  27747. extra: 1433 / 1233,
  27748. bottom: 125 / 1558
  27749. }
  27750. },
  27751. dick: {
  27752. height: math.unit(4.6, "feet"),
  27753. name: "Dick",
  27754. image: {
  27755. source: "./media/characters/holly-rabbit/dick.svg"
  27756. }
  27757. },
  27758. },
  27759. [
  27760. {
  27761. name: "Normal",
  27762. height: math.unit(15, "feet"),
  27763. default: true
  27764. },
  27765. {
  27766. name: "Macro",
  27767. height: math.unit(250, "feet")
  27768. },
  27769. {
  27770. name: "Macro+",
  27771. height: math.unit(2500, "feet")
  27772. },
  27773. ]
  27774. ))
  27775. characterMakers.push(() => makeCharacter(
  27776. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27777. {
  27778. front: {
  27779. height: math.unit(3.02, "meters"),
  27780. weight: math.unit(500, "kg"),
  27781. name: "Front",
  27782. image: {
  27783. source: "./media/characters/drena/front.svg",
  27784. extra: 282 / 243,
  27785. bottom: 8 / 290
  27786. }
  27787. },
  27788. side: {
  27789. height: math.unit(3.02, "meters"),
  27790. weight: math.unit(500, "kg"),
  27791. name: "Side",
  27792. image: {
  27793. source: "./media/characters/drena/side.svg",
  27794. extra: 280 / 245,
  27795. bottom: 10 / 290
  27796. }
  27797. },
  27798. back: {
  27799. height: math.unit(3.02, "meters"),
  27800. weight: math.unit(500, "kg"),
  27801. name: "Back",
  27802. image: {
  27803. source: "./media/characters/drena/back.svg",
  27804. extra: 278 / 243,
  27805. bottom: 2 / 280
  27806. }
  27807. },
  27808. foot: {
  27809. height: math.unit(0.75, "meters"),
  27810. name: "Foot",
  27811. image: {
  27812. source: "./media/characters/drena/foot.svg"
  27813. }
  27814. },
  27815. maw: {
  27816. height: math.unit(0.82, "meters"),
  27817. name: "Maw",
  27818. image: {
  27819. source: "./media/characters/drena/maw.svg"
  27820. }
  27821. },
  27822. rump: {
  27823. height: math.unit(0.93, "meters"),
  27824. name: "Rump",
  27825. image: {
  27826. source: "./media/characters/drena/rump.svg"
  27827. }
  27828. },
  27829. },
  27830. [
  27831. {
  27832. name: "Normal",
  27833. height: math.unit(3.02, "meters"),
  27834. default: true
  27835. },
  27836. ]
  27837. ))
  27838. characterMakers.push(() => makeCharacter(
  27839. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27840. {
  27841. front: {
  27842. height: math.unit(6 + 4 / 12, "feet"),
  27843. weight: math.unit(250, "lb"),
  27844. name: "Front",
  27845. image: {
  27846. source: "./media/characters/remmyzilla/front.svg",
  27847. extra: 4033 / 3588,
  27848. bottom: 123 / 4156
  27849. }
  27850. },
  27851. back: {
  27852. height: math.unit(6 + 4 / 12, "feet"),
  27853. weight: math.unit(250, "lb"),
  27854. name: "Back",
  27855. image: {
  27856. source: "./media/characters/remmyzilla/back.svg",
  27857. extra: 2687 / 2555,
  27858. bottom: 48 / 2735
  27859. }
  27860. },
  27861. frontFancy: {
  27862. height: math.unit(6 + 4 / 12, "feet"),
  27863. weight: math.unit(250, "lb"),
  27864. name: "Front (Fancy)",
  27865. image: {
  27866. source: "./media/characters/remmyzilla/front-fancy.svg",
  27867. extra: 4119 / 3419,
  27868. bottom: 237 / 4356
  27869. }
  27870. },
  27871. paw: {
  27872. height: math.unit(1.73, "feet"),
  27873. name: "Paw",
  27874. image: {
  27875. source: "./media/characters/remmyzilla/paw.svg"
  27876. }
  27877. },
  27878. maw: {
  27879. height: math.unit(1.73, "feet"),
  27880. name: "Maw",
  27881. image: {
  27882. source: "./media/characters/remmyzilla/maw.svg"
  27883. }
  27884. },
  27885. },
  27886. [
  27887. {
  27888. name: "Normal",
  27889. height: math.unit(6 + 4 / 12, "feet")
  27890. },
  27891. {
  27892. name: "Minimacro",
  27893. height: math.unit(12 + 8 / 12, "feet")
  27894. },
  27895. {
  27896. name: "Normal",
  27897. height: math.unit(640, "feet"),
  27898. default: true
  27899. },
  27900. {
  27901. name: "Megamacro",
  27902. height: math.unit(6400, "feet")
  27903. },
  27904. {
  27905. name: "Gigamacro",
  27906. height: math.unit(64000, "miles")
  27907. },
  27908. ]
  27909. ))
  27910. characterMakers.push(() => makeCharacter(
  27911. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27912. {
  27913. front: {
  27914. height: math.unit(2.5, "meters"),
  27915. weight: math.unit(300, "lb"),
  27916. name: "Front",
  27917. image: {
  27918. source: "./media/characters/lawrence/front.svg",
  27919. extra: 357 / 335,
  27920. bottom: 30 / 387
  27921. }
  27922. },
  27923. back: {
  27924. height: math.unit(2.5, "meters"),
  27925. weight: math.unit(300, "lb"),
  27926. name: "Back",
  27927. image: {
  27928. source: "./media/characters/lawrence/back.svg",
  27929. extra: 357 / 338,
  27930. bottom: 16 / 373
  27931. }
  27932. },
  27933. head: {
  27934. height: math.unit(0.9, "meter"),
  27935. name: "Head",
  27936. image: {
  27937. source: "./media/characters/lawrence/head.svg"
  27938. }
  27939. },
  27940. maw: {
  27941. height: math.unit(0.7, "meter"),
  27942. name: "Maw",
  27943. image: {
  27944. source: "./media/characters/lawrence/maw.svg"
  27945. }
  27946. },
  27947. footBottom: {
  27948. height: math.unit(0.5, "meter"),
  27949. name: "Foot (Bottom)",
  27950. image: {
  27951. source: "./media/characters/lawrence/foot-bottom.svg"
  27952. }
  27953. },
  27954. footTop: {
  27955. height: math.unit(0.5, "meter"),
  27956. name: "Foot (Top)",
  27957. image: {
  27958. source: "./media/characters/lawrence/foot-top.svg"
  27959. }
  27960. },
  27961. },
  27962. [
  27963. {
  27964. name: "Normal",
  27965. height: math.unit(2.5, "meters"),
  27966. default: true
  27967. },
  27968. {
  27969. name: "Macro",
  27970. height: math.unit(95, "meters")
  27971. },
  27972. {
  27973. name: "Megamacro",
  27974. height: math.unit(150, "km")
  27975. },
  27976. ]
  27977. ))
  27978. characterMakers.push(() => makeCharacter(
  27979. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27980. {
  27981. front: {
  27982. height: math.unit(4.2, "meters"),
  27983. name: "Front",
  27984. image: {
  27985. source: "./media/characters/sydney/front.svg",
  27986. extra: 1323 / 1277,
  27987. bottom: 111 / 1434
  27988. }
  27989. },
  27990. },
  27991. [
  27992. {
  27993. name: "Normal",
  27994. height: math.unit(4.2, "meters"),
  27995. default: true
  27996. },
  27997. ]
  27998. ))
  27999. characterMakers.push(() => makeCharacter(
  28000. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28001. {
  28002. back: {
  28003. height: math.unit(201, "feet"),
  28004. name: "Back",
  28005. image: {
  28006. source: "./media/characters/jessica/back.svg",
  28007. extra: 273 / 259,
  28008. bottom: 7 / 280
  28009. }
  28010. },
  28011. },
  28012. [
  28013. {
  28014. name: "Normal",
  28015. height: math.unit(201, "feet"),
  28016. default: true
  28017. },
  28018. {
  28019. name: "Megamacro",
  28020. height: math.unit(8, "miles")
  28021. },
  28022. ]
  28023. ))
  28024. characterMakers.push(() => makeCharacter(
  28025. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28026. {
  28027. side: {
  28028. height: math.unit(320, "cm"),
  28029. name: "Side",
  28030. image: {
  28031. source: "./media/characters/victoria/side.svg",
  28032. extra: 778 / 346,
  28033. bottom: 56 / 834
  28034. }
  28035. },
  28036. maw: {
  28037. height: math.unit(5.9, "feet"),
  28038. name: "Maw",
  28039. image: {
  28040. source: "./media/characters/victoria/maw.svg"
  28041. }
  28042. },
  28043. },
  28044. [
  28045. {
  28046. name: "Normal",
  28047. height: math.unit(320, "cm"),
  28048. default: true
  28049. },
  28050. ]
  28051. ))
  28052. characterMakers.push(() => makeCharacter(
  28053. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28054. {
  28055. front: {
  28056. height: math.unit(5 + 6 / 12, "feet"),
  28057. name: "Front",
  28058. image: {
  28059. source: "./media/characters/cat/front.svg",
  28060. extra: 1374 / 1257,
  28061. bottom: 59 / 1433
  28062. }
  28063. },
  28064. back: {
  28065. height: math.unit(5 + 6 / 12, "feet"),
  28066. name: "Back",
  28067. image: {
  28068. source: "./media/characters/cat/back.svg",
  28069. extra: 1337 / 1226,
  28070. bottom: 34 / 1371
  28071. }
  28072. },
  28073. taur: {
  28074. height: math.unit(7, "feet"),
  28075. name: "Taur",
  28076. image: {
  28077. source: "./media/characters/cat/taur.svg",
  28078. extra: 1345 / 1231,
  28079. bottom: 66 / 1411
  28080. }
  28081. },
  28082. lucario: {
  28083. height: math.unit(4, "feet"),
  28084. name: "Lucario",
  28085. image: {
  28086. source: "./media/characters/cat/lucario.svg",
  28087. extra: 1470 / 1318,
  28088. bottom: 65 / 1535
  28089. }
  28090. },
  28091. megaLucario: {
  28092. height: math.unit(4, "feet"),
  28093. name: "Mega Lucario",
  28094. image: {
  28095. source: "./media/characters/cat/mega-lucario.svg",
  28096. extra: 1515 / 1319,
  28097. bottom: 63 / 1578
  28098. }
  28099. },
  28100. nickit: {
  28101. height: math.unit(2, "feet"),
  28102. name: "Nickit",
  28103. image: {
  28104. source: "./media/characters/cat/nickit.svg",
  28105. extra: 1980 / 1585,
  28106. bottom: 102 / 2082
  28107. }
  28108. },
  28109. lopunnyFront: {
  28110. height: math.unit(5, "feet"),
  28111. name: "Lopunny (Front)",
  28112. image: {
  28113. source: "./media/characters/cat/lopunny-front.svg",
  28114. extra: 1782 / 1469,
  28115. bottom: 38 / 1820
  28116. }
  28117. },
  28118. lopunnyBack: {
  28119. height: math.unit(5, "feet"),
  28120. name: "Lopunny (Back)",
  28121. image: {
  28122. source: "./media/characters/cat/lopunny-back.svg",
  28123. extra: 1660 / 1490,
  28124. bottom: 25 / 1685
  28125. }
  28126. },
  28127. },
  28128. [
  28129. {
  28130. name: "Really small",
  28131. height: math.unit(1, "nm")
  28132. },
  28133. {
  28134. name: "Micro",
  28135. height: math.unit(5, "inches")
  28136. },
  28137. {
  28138. name: "Normal",
  28139. height: math.unit(5 + 6 / 12, "feet"),
  28140. default: true
  28141. },
  28142. {
  28143. name: "Macro",
  28144. height: math.unit(50, "feet")
  28145. },
  28146. {
  28147. name: "Macro+",
  28148. height: math.unit(150, "feet")
  28149. },
  28150. {
  28151. name: "Megamacro",
  28152. height: math.unit(100, "miles")
  28153. },
  28154. ]
  28155. ))
  28156. characterMakers.push(() => makeCharacter(
  28157. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28158. {
  28159. front: {
  28160. height: math.unit(63.4, "meters"),
  28161. weight: math.unit(3.28349e+6, "kilograms"),
  28162. name: "Front",
  28163. image: {
  28164. source: "./media/characters/kirina-violet/front.svg",
  28165. extra: 2812 / 2725,
  28166. bottom: 0 / 2812
  28167. }
  28168. },
  28169. back: {
  28170. height: math.unit(63.4, "meters"),
  28171. weight: math.unit(3.28349e+6, "kilograms"),
  28172. name: "Back",
  28173. image: {
  28174. source: "./media/characters/kirina-violet/back.svg",
  28175. extra: 2812 / 2725,
  28176. bottom: 0 / 2812
  28177. }
  28178. },
  28179. mouth: {
  28180. height: math.unit(4.35, "meters"),
  28181. name: "Mouth",
  28182. image: {
  28183. source: "./media/characters/kirina-violet/mouth.svg"
  28184. }
  28185. },
  28186. paw: {
  28187. height: math.unit(5.6, "meters"),
  28188. name: "Paw",
  28189. image: {
  28190. source: "./media/characters/kirina-violet/paw.svg"
  28191. }
  28192. },
  28193. tail: {
  28194. height: math.unit(18, "meters"),
  28195. name: "Tail",
  28196. image: {
  28197. source: "./media/characters/kirina-violet/tail.svg"
  28198. }
  28199. },
  28200. },
  28201. [
  28202. {
  28203. name: "Macro",
  28204. height: math.unit(63.4, "meters"),
  28205. default: true
  28206. },
  28207. ]
  28208. ))
  28209. characterMakers.push(() => makeCharacter(
  28210. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28211. {
  28212. front: {
  28213. height: math.unit(60, "feet"),
  28214. name: "Front",
  28215. image: {
  28216. source: "./media/characters/cat-gigachu/front.svg",
  28217. extra: 1024 / 780,
  28218. bottom: 23 / 1047
  28219. }
  28220. },
  28221. back: {
  28222. height: math.unit(60, "feet"),
  28223. name: "Back",
  28224. image: {
  28225. source: "./media/characters/cat-gigachu/back.svg",
  28226. extra: 1024 / 780,
  28227. bottom: 23 / 1047
  28228. }
  28229. },
  28230. },
  28231. [
  28232. {
  28233. name: "Dynamax",
  28234. height: math.unit(60, "feet"),
  28235. default: true
  28236. },
  28237. ]
  28238. ))
  28239. characterMakers.push(() => makeCharacter(
  28240. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28241. {
  28242. front: {
  28243. height: math.unit(6, "feet"),
  28244. weight: math.unit(150, "lb"),
  28245. name: "Front",
  28246. image: {
  28247. source: "./media/characters/sfaiyan/front.svg",
  28248. extra: 999 / 978,
  28249. bottom: 5 / 1004
  28250. }
  28251. },
  28252. },
  28253. [
  28254. {
  28255. name: "Normal",
  28256. height: math.unit(1.82, "meters")
  28257. },
  28258. {
  28259. name: "Giant",
  28260. height: math.unit(2.27, "km"),
  28261. default: true
  28262. },
  28263. ]
  28264. ))
  28265. characterMakers.push(() => makeCharacter(
  28266. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28267. {
  28268. front: {
  28269. height: math.unit(179, "cm"),
  28270. weight: math.unit(100, "kg"),
  28271. name: "Front",
  28272. image: {
  28273. source: "./media/characters/raunehkeli/front.svg",
  28274. extra: 1934 / 1926,
  28275. bottom: 0 / 1934
  28276. }
  28277. },
  28278. },
  28279. [
  28280. {
  28281. name: "Normal",
  28282. height: math.unit(179, "cm")
  28283. },
  28284. {
  28285. name: "Maximum",
  28286. height: math.unit(575, "meters"),
  28287. default: true
  28288. },
  28289. ]
  28290. ))
  28291. characterMakers.push(() => makeCharacter(
  28292. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28293. {
  28294. front: {
  28295. height: math.unit(6, "feet"),
  28296. weight: math.unit(150, "lb"),
  28297. name: "Front",
  28298. image: {
  28299. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28300. extra: 2625 / 2518,
  28301. bottom: 60 / 2685
  28302. }
  28303. },
  28304. },
  28305. [
  28306. {
  28307. name: "Normal",
  28308. height: math.unit(6 + 2 / 12, "feet")
  28309. },
  28310. {
  28311. name: "Macro",
  28312. height: math.unit(1180, "feet"),
  28313. default: true
  28314. },
  28315. ]
  28316. ))
  28317. characterMakers.push(() => makeCharacter(
  28318. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28319. {
  28320. front: {
  28321. height: math.unit(5 + 6 / 12, "feet"),
  28322. weight: math.unit(108, "lb"),
  28323. name: "Front",
  28324. image: {
  28325. source: "./media/characters/lilith-zott/front.svg",
  28326. extra: 2510 / 2238,
  28327. bottom: 100 / 2610
  28328. }
  28329. },
  28330. frontDressed: {
  28331. height: math.unit(5 + 6 / 12, "feet"),
  28332. weight: math.unit(108, "lb"),
  28333. name: "Front (Dressed)",
  28334. image: {
  28335. source: "./media/characters/lilith-zott/front-dressed.svg",
  28336. extra: 2510 / 2238,
  28337. bottom: 100 / 2610
  28338. }
  28339. },
  28340. },
  28341. [
  28342. {
  28343. name: "Normal",
  28344. height: math.unit(5 + 6 / 12, "feet")
  28345. },
  28346. {
  28347. name: "Macro",
  28348. height: math.unit(1030, "feet"),
  28349. default: true
  28350. },
  28351. ]
  28352. ))
  28353. characterMakers.push(() => makeCharacter(
  28354. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28355. {
  28356. front: {
  28357. height: math.unit(6, "feet"),
  28358. weight: math.unit(150, "lb"),
  28359. name: "Front",
  28360. image: {
  28361. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28362. extra: 2567 / 2435,
  28363. bottom: 39 / 2606
  28364. }
  28365. },
  28366. frontSuper: {
  28367. height: math.unit(6, "feet"),
  28368. name: "Front (Super)",
  28369. image: {
  28370. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28371. extra: 2567 / 2435,
  28372. bottom: 39 / 2606
  28373. }
  28374. },
  28375. },
  28376. [
  28377. {
  28378. name: "Normal",
  28379. height: math.unit(5 + 10 / 12, "feet")
  28380. },
  28381. {
  28382. name: "Macro",
  28383. height: math.unit(1100, "feet"),
  28384. default: true
  28385. },
  28386. ]
  28387. ))
  28388. characterMakers.push(() => makeCharacter(
  28389. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28390. {
  28391. front: {
  28392. height: math.unit(100, "miles"),
  28393. name: "Front",
  28394. image: {
  28395. source: "./media/characters/sona/front.svg",
  28396. extra: 2433 / 2201,
  28397. bottom: 53 / 2486
  28398. }
  28399. },
  28400. foot: {
  28401. height: math.unit(16.1, "miles"),
  28402. name: "Foot",
  28403. image: {
  28404. source: "./media/characters/sona/foot.svg"
  28405. }
  28406. },
  28407. },
  28408. [
  28409. {
  28410. name: "Macro",
  28411. height: math.unit(100, "miles"),
  28412. default: true
  28413. },
  28414. ]
  28415. ))
  28416. characterMakers.push(() => makeCharacter(
  28417. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28418. {
  28419. front: {
  28420. height: math.unit(6, "feet"),
  28421. weight: math.unit(150, "lb"),
  28422. name: "Front",
  28423. image: {
  28424. source: "./media/characters/bailey/front.svg",
  28425. extra: 1778 / 1724,
  28426. bottom: 30 / 1808
  28427. }
  28428. },
  28429. },
  28430. [
  28431. {
  28432. name: "Micro",
  28433. height: math.unit(4, "inches")
  28434. },
  28435. {
  28436. name: "Normal",
  28437. height: math.unit(5 + 5 / 12, "feet"),
  28438. default: true
  28439. },
  28440. {
  28441. name: "Macro",
  28442. height: math.unit(250, "feet")
  28443. },
  28444. {
  28445. name: "Megamacro",
  28446. height: math.unit(100, "miles")
  28447. },
  28448. ]
  28449. ))
  28450. characterMakers.push(() => makeCharacter(
  28451. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28452. {
  28453. front: {
  28454. height: math.unit(5 + 2 / 12, "feet"),
  28455. weight: math.unit(120, "lb"),
  28456. name: "Front",
  28457. image: {
  28458. source: "./media/characters/snaps/front.svg",
  28459. extra: 2370 / 2177,
  28460. bottom: 48 / 2418
  28461. }
  28462. },
  28463. back: {
  28464. height: math.unit(5 + 2 / 12, "feet"),
  28465. weight: math.unit(120, "lb"),
  28466. name: "Back",
  28467. image: {
  28468. source: "./media/characters/snaps/back.svg",
  28469. extra: 2408 / 2258,
  28470. bottom: 15 / 2423
  28471. }
  28472. },
  28473. },
  28474. [
  28475. {
  28476. name: "Micro",
  28477. height: math.unit(9, "inches")
  28478. },
  28479. {
  28480. name: "Normal",
  28481. height: math.unit(5 + 2 / 12, "feet"),
  28482. default: true
  28483. },
  28484. {
  28485. name: "Mini Macro",
  28486. height: math.unit(10, "feet")
  28487. },
  28488. ]
  28489. ))
  28490. characterMakers.push(() => makeCharacter(
  28491. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28492. {
  28493. front: {
  28494. height: math.unit(1.8, "meters"),
  28495. weight: math.unit(85, "kg"),
  28496. name: "Front",
  28497. image: {
  28498. source: "./media/characters/azteck/front.svg",
  28499. extra: 2815 / 2625,
  28500. bottom: 89 / 2904
  28501. }
  28502. },
  28503. back: {
  28504. height: math.unit(1.8, "meters"),
  28505. weight: math.unit(85, "kg"),
  28506. name: "Back",
  28507. image: {
  28508. source: "./media/characters/azteck/back.svg",
  28509. extra: 2856 / 2648,
  28510. bottom: 85 / 2941
  28511. }
  28512. },
  28513. frontDressed: {
  28514. height: math.unit(1.8, "meters"),
  28515. weight: math.unit(85, "kg"),
  28516. name: "Front (Dressed)",
  28517. image: {
  28518. source: "./media/characters/azteck/front-dressed.svg",
  28519. extra: 2147 / 2003,
  28520. bottom: 68 / 2215
  28521. }
  28522. },
  28523. head: {
  28524. height: math.unit(0.47, "meters"),
  28525. weight: math.unit(85, "kg"),
  28526. name: "Head",
  28527. image: {
  28528. source: "./media/characters/azteck/head.svg"
  28529. }
  28530. },
  28531. },
  28532. [
  28533. {
  28534. name: "Bite sized",
  28535. height: math.unit(16, "cm")
  28536. },
  28537. {
  28538. name: "Normal",
  28539. height: math.unit(1.8, "meters"),
  28540. default: true
  28541. },
  28542. ]
  28543. ))
  28544. characterMakers.push(() => makeCharacter(
  28545. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28546. {
  28547. front: {
  28548. height: math.unit(6, "feet"),
  28549. weight: math.unit(150, "lb"),
  28550. name: "Front",
  28551. image: {
  28552. source: "./media/characters/pidge/front.svg",
  28553. extra: 620 / 588,
  28554. bottom: 9 / 629
  28555. }
  28556. },
  28557. back: {
  28558. height: math.unit(6, "feet"),
  28559. weight: math.unit(150, "lb"),
  28560. name: "Back",
  28561. image: {
  28562. source: "./media/characters/pidge/back.svg",
  28563. extra: 620 / 588,
  28564. bottom: 9 / 629
  28565. }
  28566. },
  28567. },
  28568. [
  28569. {
  28570. name: "Macro",
  28571. height: math.unit(1, "mile"),
  28572. default: true
  28573. },
  28574. ]
  28575. ))
  28576. characterMakers.push(() => makeCharacter(
  28577. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28578. {
  28579. front: {
  28580. height: math.unit(6, "feet"),
  28581. weight: math.unit(150, "lb"),
  28582. name: "Front",
  28583. image: {
  28584. source: "./media/characters/en/front.svg",
  28585. extra: 1697 / 1563,
  28586. bottom: 103 / 1800
  28587. }
  28588. },
  28589. back: {
  28590. height: math.unit(6, "feet"),
  28591. weight: math.unit(150, "lb"),
  28592. name: "Back",
  28593. image: {
  28594. source: "./media/characters/en/back.svg",
  28595. extra: 1700 / 1570,
  28596. bottom: 51 / 1751
  28597. }
  28598. },
  28599. frontDressed: {
  28600. height: math.unit(6, "feet"),
  28601. weight: math.unit(150, "lb"),
  28602. name: "Front (Dressed)",
  28603. image: {
  28604. source: "./media/characters/en/front-dressed.svg",
  28605. extra: 1697 / 1563,
  28606. bottom: 103 / 1800
  28607. }
  28608. },
  28609. backDressed: {
  28610. height: math.unit(6, "feet"),
  28611. weight: math.unit(150, "lb"),
  28612. name: "Back (Dressed)",
  28613. image: {
  28614. source: "./media/characters/en/back-dressed.svg",
  28615. extra: 1700 / 1570,
  28616. bottom: 51 / 1751
  28617. }
  28618. },
  28619. },
  28620. [
  28621. {
  28622. name: "Macro",
  28623. height: math.unit(210, "feet"),
  28624. default: true
  28625. },
  28626. ]
  28627. ))
  28628. characterMakers.push(() => makeCharacter(
  28629. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28630. {
  28631. front: {
  28632. height: math.unit(6, "feet"),
  28633. weight: math.unit(150, "lb"),
  28634. name: "Front",
  28635. image: {
  28636. source: "./media/characters/haze-orris/front.svg",
  28637. extra: 3975 / 3525,
  28638. bottom: 137 / 4112
  28639. }
  28640. },
  28641. },
  28642. [
  28643. {
  28644. name: "Micro",
  28645. height: math.unit(150, "mm"),
  28646. default: true
  28647. },
  28648. ]
  28649. ))
  28650. characterMakers.push(() => makeCharacter(
  28651. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28652. {
  28653. front: {
  28654. height: math.unit(6, "feet"),
  28655. weight: math.unit(150, "lb"),
  28656. name: "Front",
  28657. image: {
  28658. source: "./media/characters/casselene-yaro/front.svg",
  28659. extra: 4721 / 4541,
  28660. bottom: 82 / 4803
  28661. }
  28662. },
  28663. back: {
  28664. height: math.unit(6, "feet"),
  28665. weight: math.unit(150, "lb"),
  28666. name: "Back",
  28667. image: {
  28668. source: "./media/characters/casselene-yaro/back.svg",
  28669. extra: 4569 / 4377,
  28670. bottom: 69 / 4638
  28671. }
  28672. },
  28673. frontDressed: {
  28674. height: math.unit(6, "feet"),
  28675. weight: math.unit(150, "lb"),
  28676. name: "Front-dressed",
  28677. image: {
  28678. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28679. extra: 4721 / 4541,
  28680. bottom: 82 / 4803
  28681. }
  28682. },
  28683. },
  28684. [
  28685. {
  28686. name: "Macro",
  28687. height: math.unit(190, "feet"),
  28688. default: true
  28689. },
  28690. ]
  28691. ))
  28692. characterMakers.push(() => makeCharacter(
  28693. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28694. {
  28695. front: {
  28696. height: math.unit(6, "feet"),
  28697. weight: math.unit(150, "lb"),
  28698. name: "Front",
  28699. image: {
  28700. source: "./media/characters/myra-rue-delore/front.svg",
  28701. extra: 1340 / 1308,
  28702. bottom: 67 / 1407
  28703. }
  28704. },
  28705. back: {
  28706. height: math.unit(6, "feet"),
  28707. weight: math.unit(150, "lb"),
  28708. name: "Back",
  28709. image: {
  28710. source: "./media/characters/myra-rue-delore/back.svg",
  28711. extra: 1341 / 1310,
  28712. bottom: 40 / 1381
  28713. }
  28714. },
  28715. frontDressed: {
  28716. height: math.unit(6, "feet"),
  28717. weight: math.unit(150, "lb"),
  28718. name: "Front (Dressed)",
  28719. image: {
  28720. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28721. extra: 1340 / 1308,
  28722. bottom: 67 / 1407
  28723. }
  28724. },
  28725. },
  28726. [
  28727. {
  28728. name: "Macro",
  28729. height: math.unit(150, "feet"),
  28730. default: true
  28731. },
  28732. ]
  28733. ))
  28734. characterMakers.push(() => makeCharacter(
  28735. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28736. {
  28737. front: {
  28738. height: math.unit(10, "feet"),
  28739. weight: math.unit(15015, "lb"),
  28740. name: "Front",
  28741. image: {
  28742. source: "./media/characters/fem!plat/front.svg",
  28743. extra: 2799 / 2604,
  28744. bottom: 149 / 2948
  28745. }
  28746. },
  28747. },
  28748. [
  28749. {
  28750. name: "Normal",
  28751. height: math.unit(10, "feet"),
  28752. default: true
  28753. },
  28754. {
  28755. name: "Macro",
  28756. height: math.unit(100, "feet")
  28757. },
  28758. {
  28759. name: "Megamacro",
  28760. height: math.unit(1000, "feet")
  28761. },
  28762. ]
  28763. ))
  28764. characterMakers.push(() => makeCharacter(
  28765. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28766. {
  28767. front: {
  28768. height: math.unit(15 + 5 / 12, "feet"),
  28769. weight: math.unit(4600, "lb"),
  28770. name: "Front",
  28771. image: {
  28772. source: "./media/characters/neapolitan-ananassa/front.svg",
  28773. extra: 2903 / 2736,
  28774. bottom: 0 / 2903
  28775. }
  28776. },
  28777. side: {
  28778. height: math.unit(15 + 5 / 12, "feet"),
  28779. weight: math.unit(4600, "lb"),
  28780. name: "Side",
  28781. image: {
  28782. source: "./media/characters/neapolitan-ananassa/side.svg",
  28783. extra: 2925 / 2719,
  28784. bottom: 0 / 2925
  28785. }
  28786. },
  28787. back: {
  28788. height: math.unit(15 + 5 / 12, "feet"),
  28789. weight: math.unit(4600, "lb"),
  28790. name: "Back",
  28791. image: {
  28792. source: "./media/characters/neapolitan-ananassa/back.svg",
  28793. extra: 2903 / 2736,
  28794. bottom: 0 / 2903
  28795. }
  28796. },
  28797. },
  28798. [
  28799. {
  28800. name: "Normal",
  28801. height: math.unit(15 + 5 / 12, "feet"),
  28802. default: true
  28803. },
  28804. {
  28805. name: "Post-Millenium",
  28806. height: math.unit(35 + 5 / 12, "feet")
  28807. },
  28808. {
  28809. name: "Post-Era",
  28810. height: math.unit(450 + 5 / 12, "feet")
  28811. },
  28812. ]
  28813. ))
  28814. characterMakers.push(() => makeCharacter(
  28815. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28816. {
  28817. front: {
  28818. height: math.unit(300, "meters"),
  28819. weight: math.unit(125000, "tonnes"),
  28820. name: "Front",
  28821. image: {
  28822. source: "./media/characters/pazuzu/front.svg",
  28823. extra: 877 / 794,
  28824. bottom: 47 / 924
  28825. }
  28826. },
  28827. },
  28828. [
  28829. {
  28830. name: "Macro",
  28831. height: math.unit(300, "meters"),
  28832. default: true
  28833. },
  28834. ]
  28835. ))
  28836. characterMakers.push(() => makeCharacter(
  28837. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28838. {
  28839. side: {
  28840. height: math.unit(10 + 7 / 12, "feet"),
  28841. weight: math.unit(2.5, "tons"),
  28842. name: "Side",
  28843. image: {
  28844. source: "./media/characters/aasha/side.svg",
  28845. extra: 1345 / 1245,
  28846. bottom: 111 / 1456
  28847. }
  28848. },
  28849. back: {
  28850. height: math.unit(10 + 7 / 12, "feet"),
  28851. weight: math.unit(2.5, "tons"),
  28852. name: "Back",
  28853. image: {
  28854. source: "./media/characters/aasha/back.svg",
  28855. extra: 1133 / 1057,
  28856. bottom: 257 / 1390
  28857. }
  28858. },
  28859. },
  28860. [
  28861. {
  28862. name: "Normal",
  28863. height: math.unit(10 + 7 / 12, "feet"),
  28864. default: true
  28865. },
  28866. ]
  28867. ))
  28868. characterMakers.push(() => makeCharacter(
  28869. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28870. {
  28871. front: {
  28872. height: math.unit(6 + 3 / 12, "feet"),
  28873. name: "Front",
  28874. image: {
  28875. source: "./media/characters/nevan/front.svg",
  28876. extra: 704 / 704,
  28877. bottom: 28 / 732
  28878. }
  28879. },
  28880. back: {
  28881. height: math.unit(6 + 3 / 12, "feet"),
  28882. name: "Back",
  28883. image: {
  28884. source: "./media/characters/nevan/back.svg",
  28885. extra: 714 / 714,
  28886. bottom: 21 / 735
  28887. }
  28888. },
  28889. frontFlaccid: {
  28890. height: math.unit(6 + 3 / 12, "feet"),
  28891. name: "Front (Flaccid)",
  28892. image: {
  28893. source: "./media/characters/nevan/front-flaccid.svg",
  28894. extra: 704 / 704,
  28895. bottom: 28 / 732
  28896. }
  28897. },
  28898. frontErect: {
  28899. height: math.unit(6 + 3 / 12, "feet"),
  28900. name: "Front (Erect)",
  28901. image: {
  28902. source: "./media/characters/nevan/front-erect.svg",
  28903. extra: 704 / 704,
  28904. bottom: 28 / 732
  28905. }
  28906. },
  28907. backFlaccid: {
  28908. height: math.unit(6 + 3 / 12, "feet"),
  28909. name: "Back (Flaccid)",
  28910. image: {
  28911. source: "./media/characters/nevan/back-flaccid.svg",
  28912. extra: 714 / 714,
  28913. bottom: 21 / 735
  28914. }
  28915. },
  28916. },
  28917. [
  28918. {
  28919. name: "Normal",
  28920. height: math.unit(6 + 3 / 12, "feet"),
  28921. default: true
  28922. },
  28923. ]
  28924. ))
  28925. characterMakers.push(() => makeCharacter(
  28926. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28927. {
  28928. front: {
  28929. height: math.unit(4, "feet"),
  28930. name: "Front",
  28931. image: {
  28932. source: "./media/characters/arhan/front.svg",
  28933. extra: 3368 / 3133,
  28934. bottom: 0 / 3368
  28935. }
  28936. },
  28937. side: {
  28938. height: math.unit(4, "feet"),
  28939. name: "Side",
  28940. image: {
  28941. source: "./media/characters/arhan/side.svg",
  28942. extra: 3347 / 3105,
  28943. bottom: 0 / 3347
  28944. }
  28945. },
  28946. tongue: {
  28947. height: math.unit(1.42, "feet"),
  28948. name: "Tongue",
  28949. image: {
  28950. source: "./media/characters/arhan/tongue.svg"
  28951. }
  28952. },
  28953. head: {
  28954. height: math.unit(0.85, "feet"),
  28955. name: "Head",
  28956. image: {
  28957. source: "./media/characters/arhan/head.svg"
  28958. }
  28959. },
  28960. },
  28961. [
  28962. {
  28963. name: "Normal",
  28964. height: math.unit(4, "feet"),
  28965. default: true
  28966. },
  28967. ]
  28968. ))
  28969. characterMakers.push(() => makeCharacter(
  28970. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28971. {
  28972. front: {
  28973. height: math.unit(5 + 7.5 / 12, "feet"),
  28974. weight: math.unit(120, "lb"),
  28975. name: "Front",
  28976. image: {
  28977. source: "./media/characters/digi-duncan/front.svg",
  28978. extra: 330 / 326,
  28979. bottom: 16 / 346
  28980. }
  28981. },
  28982. side: {
  28983. height: math.unit(5 + 7.5 / 12, "feet"),
  28984. weight: math.unit(120, "lb"),
  28985. name: "Side",
  28986. image: {
  28987. source: "./media/characters/digi-duncan/side.svg",
  28988. extra: 341 / 337,
  28989. bottom: 1 / 342
  28990. }
  28991. },
  28992. back: {
  28993. height: math.unit(5 + 7.5 / 12, "feet"),
  28994. weight: math.unit(120, "lb"),
  28995. name: "Back",
  28996. image: {
  28997. source: "./media/characters/digi-duncan/back.svg",
  28998. extra: 330 / 326,
  28999. bottom: 12 / 342
  29000. }
  29001. },
  29002. },
  29003. [
  29004. {
  29005. name: "Speck",
  29006. height: math.unit(0.25, "mm")
  29007. },
  29008. {
  29009. name: "Micro",
  29010. height: math.unit(5, "mm")
  29011. },
  29012. {
  29013. name: "Tiny",
  29014. height: math.unit(0.5, "inches"),
  29015. default: true
  29016. },
  29017. {
  29018. name: "Human",
  29019. height: math.unit(5 + 7.5 / 12, "feet")
  29020. },
  29021. {
  29022. name: "Minigiant",
  29023. height: math.unit(8 + 5.25, "feet")
  29024. },
  29025. {
  29026. name: "Giant",
  29027. height: math.unit(2000, "feet")
  29028. },
  29029. {
  29030. name: "Mega",
  29031. height: math.unit(371.1, "miles")
  29032. },
  29033. ]
  29034. ))
  29035. characterMakers.push(() => makeCharacter(
  29036. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29037. {
  29038. front: {
  29039. height: math.unit(2, "meters"),
  29040. weight: math.unit(350, "kg"),
  29041. name: "Front",
  29042. image: {
  29043. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29044. extra: 898 / 838,
  29045. bottom: 9 / 907
  29046. }
  29047. },
  29048. },
  29049. [
  29050. {
  29051. name: "Micro",
  29052. height: math.unit(8, "meters")
  29053. },
  29054. {
  29055. name: "Normal",
  29056. height: math.unit(50, "meters"),
  29057. default: true
  29058. },
  29059. {
  29060. name: "Macro",
  29061. height: math.unit(500, "meters")
  29062. },
  29063. ]
  29064. ))
  29065. characterMakers.push(() => makeCharacter(
  29066. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29067. {
  29068. front: {
  29069. height: math.unit(6 + 6 / 12, "feet"),
  29070. name: "Front",
  29071. image: {
  29072. source: "./media/characters/khardesh/front.svg",
  29073. extra: 888 / 797,
  29074. bottom: 25 / 913
  29075. }
  29076. },
  29077. },
  29078. [
  29079. {
  29080. name: "Normal",
  29081. height: math.unit(6 + 6 / 12, "feet"),
  29082. default: true
  29083. },
  29084. {
  29085. name: "Normal+",
  29086. height: math.unit(4, "meters")
  29087. },
  29088. {
  29089. name: "Macro",
  29090. height: math.unit(50, "meters")
  29091. },
  29092. {
  29093. name: "Macro+",
  29094. height: math.unit(100, "meters")
  29095. },
  29096. {
  29097. name: "Megamacro",
  29098. height: math.unit(20, "km")
  29099. },
  29100. ]
  29101. ))
  29102. characterMakers.push(() => makeCharacter(
  29103. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29104. {
  29105. front: {
  29106. height: math.unit(6, "feet"),
  29107. weight: math.unit(150, "lb"),
  29108. name: "Front",
  29109. image: {
  29110. source: "./media/characters/kosho/front.svg",
  29111. extra: 1847 / 1847,
  29112. bottom: 86 / 1933
  29113. }
  29114. },
  29115. },
  29116. [
  29117. {
  29118. name: "Second-stage micro",
  29119. height: math.unit(0.5, "inches")
  29120. },
  29121. {
  29122. name: "First-stage micro",
  29123. height: math.unit(6, "inches")
  29124. },
  29125. {
  29126. name: "Normal",
  29127. height: math.unit(6, "feet"),
  29128. default: true
  29129. },
  29130. {
  29131. name: "First-stage macro",
  29132. height: math.unit(72, "feet")
  29133. },
  29134. {
  29135. name: "Second-stage macro",
  29136. height: math.unit(864, "feet")
  29137. },
  29138. ]
  29139. ))
  29140. characterMakers.push(() => makeCharacter(
  29141. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29142. {
  29143. normal: {
  29144. height: math.unit(4 + 6 / 12, "feet"),
  29145. name: "Normal",
  29146. image: {
  29147. source: "./media/characters/hydra/normal.svg",
  29148. extra: 2833 / 2634,
  29149. bottom: 68 / 2901
  29150. }
  29151. },
  29152. smol: {
  29153. height: math.unit(0.705, "inches"),
  29154. name: "Smol",
  29155. image: {
  29156. source: "./media/characters/hydra/smol.svg",
  29157. extra: 2715 / 2540,
  29158. bottom: 0 / 2715
  29159. }
  29160. },
  29161. },
  29162. [
  29163. {
  29164. name: "Normal",
  29165. height: math.unit(4 + 6 / 12, "feet"),
  29166. default: true
  29167. }
  29168. ]
  29169. ))
  29170. characterMakers.push(() => makeCharacter(
  29171. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29172. {
  29173. front: {
  29174. height: math.unit(0.6, "cm"),
  29175. name: "Front",
  29176. image: {
  29177. source: "./media/characters/daz/front.svg",
  29178. extra: 1682 / 1164,
  29179. bottom: 42 / 1724
  29180. }
  29181. },
  29182. },
  29183. [
  29184. {
  29185. name: "Normal",
  29186. height: math.unit(0.6, "cm"),
  29187. default: true
  29188. },
  29189. ]
  29190. ))
  29191. characterMakers.push(() => makeCharacter(
  29192. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29193. {
  29194. front: {
  29195. height: math.unit(6, "feet"),
  29196. weight: math.unit(235, "lb"),
  29197. name: "Front",
  29198. image: {
  29199. source: "./media/characters/theo-pangolin/front.svg",
  29200. extra: 1996 / 1969,
  29201. bottom: 115 / 2111
  29202. }
  29203. },
  29204. back: {
  29205. height: math.unit(6, "feet"),
  29206. weight: math.unit(235, "lb"),
  29207. name: "Back",
  29208. image: {
  29209. source: "./media/characters/theo-pangolin/back.svg",
  29210. extra: 1979 / 1979,
  29211. bottom: 40 / 2019
  29212. }
  29213. },
  29214. feral: {
  29215. height: math.unit(2, "feet"),
  29216. weight: math.unit(30, "lb"),
  29217. name: "Feral",
  29218. image: {
  29219. source: "./media/characters/theo-pangolin/feral.svg",
  29220. extra: 803 / 791,
  29221. bottom: 181 / 984
  29222. }
  29223. },
  29224. footFive: {
  29225. height: math.unit(1.43, "feet"),
  29226. name: "Foot (Five Toes)",
  29227. image: {
  29228. source: "./media/characters/theo-pangolin/foot-five.svg"
  29229. }
  29230. },
  29231. footFour: {
  29232. height: math.unit(1.43, "feet"),
  29233. name: "Foot (Four Toes)",
  29234. image: {
  29235. source: "./media/characters/theo-pangolin/foot-four.svg"
  29236. }
  29237. },
  29238. handFour: {
  29239. height: math.unit(0.81, "feet"),
  29240. name: "Hand (Four Fingers)",
  29241. image: {
  29242. source: "./media/characters/theo-pangolin/hand-four.svg"
  29243. }
  29244. },
  29245. handThree: {
  29246. height: math.unit(0.81, "feet"),
  29247. name: "Hand (Three Fingers)",
  29248. image: {
  29249. source: "./media/characters/theo-pangolin/hand-three.svg"
  29250. }
  29251. },
  29252. headFront: {
  29253. height: math.unit(1.37, "feet"),
  29254. name: "Head (Front)",
  29255. image: {
  29256. source: "./media/characters/theo-pangolin/head-front.svg"
  29257. }
  29258. },
  29259. headSide: {
  29260. height: math.unit(1.43, "feet"),
  29261. name: "Head (Side)",
  29262. image: {
  29263. source: "./media/characters/theo-pangolin/head-side.svg"
  29264. }
  29265. },
  29266. tongue: {
  29267. height: math.unit(2.29, "feet"),
  29268. name: "Tongue",
  29269. image: {
  29270. source: "./media/characters/theo-pangolin/tongue.svg"
  29271. }
  29272. },
  29273. },
  29274. [
  29275. {
  29276. name: "Normal",
  29277. height: math.unit(6, "feet")
  29278. },
  29279. {
  29280. name: "Macro",
  29281. height: math.unit(400, "feet"),
  29282. default: true
  29283. },
  29284. ]
  29285. ))
  29286. characterMakers.push(() => makeCharacter(
  29287. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29288. {
  29289. front: {
  29290. height: math.unit(6, "inches"),
  29291. weight: math.unit(0.036, "kg"),
  29292. name: "Front",
  29293. image: {
  29294. source: "./media/characters/renée/front.svg",
  29295. extra: 900 / 886,
  29296. bottom: 8 / 908
  29297. }
  29298. },
  29299. },
  29300. [
  29301. {
  29302. name: "Nano",
  29303. height: math.unit(1, "nm")
  29304. },
  29305. {
  29306. name: "Micro",
  29307. height: math.unit(1, "mm")
  29308. },
  29309. {
  29310. name: "Normal",
  29311. height: math.unit(6, "inches")
  29312. },
  29313. {
  29314. name: "Macro",
  29315. height: math.unit(2000, "feet"),
  29316. default: true
  29317. },
  29318. {
  29319. name: "Megamacro",
  29320. height: math.unit(2, "km")
  29321. },
  29322. {
  29323. name: "Gigamacro",
  29324. height: math.unit(2000, "km")
  29325. },
  29326. {
  29327. name: "Teramacro",
  29328. height: math.unit(250000, "km")
  29329. },
  29330. ]
  29331. ))
  29332. characterMakers.push(() => makeCharacter(
  29333. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29334. {
  29335. front: {
  29336. height: math.unit(4, "meters"),
  29337. weight: math.unit(150, "kg"),
  29338. name: "Front",
  29339. image: {
  29340. source: "./media/characters/caledvwlch/front.svg",
  29341. extra: 1760 / 1551,
  29342. bottom: 28 / 1788
  29343. }
  29344. },
  29345. side: {
  29346. height: math.unit(4, "meters"),
  29347. weight: math.unit(150, "kg"),
  29348. name: "Side",
  29349. image: {
  29350. source: "./media/characters/caledvwlch/side.svg",
  29351. extra: 1605 / 1536,
  29352. bottom: 31 / 1636
  29353. }
  29354. },
  29355. back: {
  29356. height: math.unit(4, "meters"),
  29357. weight: math.unit(150, "kg"),
  29358. name: "Back",
  29359. image: {
  29360. source: "./media/characters/caledvwlch/back.svg",
  29361. extra: 1635 / 1565,
  29362. bottom: 27 / 1662
  29363. }
  29364. },
  29365. },
  29366. [
  29367. {
  29368. name: "\"Incognito\"",
  29369. height: math.unit(4, "meters")
  29370. },
  29371. {
  29372. name: "Small rampage",
  29373. height: math.unit(600, "meters")
  29374. },
  29375. {
  29376. name: "Mega",
  29377. height: math.unit(30, "km")
  29378. },
  29379. {
  29380. name: "Home-size",
  29381. height: math.unit(50, "km"),
  29382. default: true
  29383. },
  29384. {
  29385. name: "Giga",
  29386. height: math.unit(300, "km")
  29387. },
  29388. {
  29389. name: "Lounging",
  29390. height: math.unit(11000, "km")
  29391. },
  29392. {
  29393. name: "Planet snacking",
  29394. height: math.unit(2000000, "km")
  29395. },
  29396. ]
  29397. ))
  29398. characterMakers.push(() => makeCharacter(
  29399. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29400. {
  29401. front: {
  29402. height: math.unit(6, "feet"),
  29403. weight: math.unit(215, "lb"),
  29404. name: "Front",
  29405. image: {
  29406. source: "./media/characters/sapphire-svell/front.svg",
  29407. extra: 495 / 455,
  29408. bottom: 20 / 515
  29409. }
  29410. },
  29411. back: {
  29412. height: math.unit(6, "feet"),
  29413. weight: math.unit(216, "lb"),
  29414. name: "Back",
  29415. image: {
  29416. source: "./media/characters/sapphire-svell/back.svg",
  29417. extra: 497 / 477,
  29418. bottom: 7 / 504
  29419. }
  29420. },
  29421. maw: {
  29422. height: math.unit(1.57, "feet"),
  29423. name: "Maw",
  29424. image: {
  29425. source: "./media/characters/sapphire-svell/maw.svg"
  29426. }
  29427. },
  29428. foot: {
  29429. height: math.unit(1.07, "feet"),
  29430. name: "Foot",
  29431. image: {
  29432. source: "./media/characters/sapphire-svell/foot.svg"
  29433. }
  29434. },
  29435. toering: {
  29436. height: math.unit(1.7, "inch"),
  29437. name: "Toering",
  29438. image: {
  29439. source: "./media/characters/sapphire-svell/toering.svg"
  29440. }
  29441. },
  29442. },
  29443. [
  29444. {
  29445. name: "Normal",
  29446. height: math.unit(300, "feet"),
  29447. default: true
  29448. },
  29449. {
  29450. name: "Augmented",
  29451. height: math.unit(1250, "feet")
  29452. },
  29453. {
  29454. name: "Unleashed",
  29455. height: math.unit(3000, "feet")
  29456. },
  29457. ]
  29458. ))
  29459. characterMakers.push(() => makeCharacter(
  29460. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29461. {
  29462. side: {
  29463. height: math.unit(2 + 3 / 12, "feet"),
  29464. weight: math.unit(110, "lb"),
  29465. name: "Side",
  29466. image: {
  29467. source: "./media/characters/glitch-flux/side.svg",
  29468. extra: 997 / 805,
  29469. bottom: 20 / 1017
  29470. }
  29471. },
  29472. },
  29473. [
  29474. {
  29475. name: "Normal",
  29476. height: math.unit(2 + 3 / 12, "feet"),
  29477. default: true
  29478. },
  29479. ]
  29480. ))
  29481. characterMakers.push(() => makeCharacter(
  29482. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29483. {
  29484. front: {
  29485. height: math.unit(4, "meters"),
  29486. name: "Front",
  29487. image: {
  29488. source: "./media/characters/mid/front.svg",
  29489. extra: 507 / 476,
  29490. bottom: 17 / 524
  29491. }
  29492. },
  29493. back: {
  29494. height: math.unit(4, "meters"),
  29495. name: "Back",
  29496. image: {
  29497. source: "./media/characters/mid/back.svg",
  29498. extra: 519 / 487,
  29499. bottom: 7 / 526
  29500. }
  29501. },
  29502. stuck: {
  29503. height: math.unit(2.2, "meters"),
  29504. name: "Stuck",
  29505. image: {
  29506. source: "./media/characters/mid/stuck.svg",
  29507. extra: 1951 / 1869,
  29508. bottom: 88 / 2039
  29509. }
  29510. }
  29511. },
  29512. [
  29513. {
  29514. name: "Normal",
  29515. height: math.unit(4, "meters"),
  29516. default: true
  29517. },
  29518. {
  29519. name: "Big",
  29520. height: math.unit(10, "meters")
  29521. },
  29522. {
  29523. name: "Macro",
  29524. height: math.unit(800, "meters")
  29525. },
  29526. {
  29527. name: "Megamacro",
  29528. height: math.unit(100, "km")
  29529. },
  29530. {
  29531. name: "Overgrown",
  29532. height: math.unit(1, "parsec")
  29533. },
  29534. ]
  29535. ))
  29536. characterMakers.push(() => makeCharacter(
  29537. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29538. {
  29539. front: {
  29540. height: math.unit(2.5, "meters"),
  29541. weight: math.unit(225, "kg"),
  29542. name: "Front",
  29543. image: {
  29544. source: "./media/characters/iris/front.svg",
  29545. extra: 3348 / 3251,
  29546. bottom: 205 / 3553
  29547. }
  29548. },
  29549. maw: {
  29550. height: math.unit(0.56, "meter"),
  29551. name: "Maw",
  29552. image: {
  29553. source: "./media/characters/iris/maw.svg"
  29554. }
  29555. },
  29556. },
  29557. [
  29558. {
  29559. name: "Mewter cat",
  29560. height: math.unit(1.2, "meters")
  29561. },
  29562. {
  29563. name: "Minimacro",
  29564. height: math.unit(2.5, "meters"),
  29565. default: true
  29566. },
  29567. {
  29568. name: "Macro",
  29569. height: math.unit(180, "meters")
  29570. },
  29571. {
  29572. name: "Megamacro",
  29573. height: math.unit(2746, "meters")
  29574. },
  29575. ]
  29576. ))
  29577. characterMakers.push(() => makeCharacter(
  29578. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29579. {
  29580. front: {
  29581. height: math.unit(6, "feet"),
  29582. weight: math.unit(135, "lb"),
  29583. name: "Front",
  29584. image: {
  29585. source: "./media/characters/axel/front.svg",
  29586. extra: 908 / 908,
  29587. bottom: 58 / 966
  29588. }
  29589. },
  29590. side: {
  29591. height: math.unit(6, "feet"),
  29592. weight: math.unit(135, "lb"),
  29593. name: "Side",
  29594. image: {
  29595. source: "./media/characters/axel/side.svg",
  29596. extra: 958 / 958,
  29597. bottom: 11 / 969
  29598. }
  29599. },
  29600. back: {
  29601. height: math.unit(6, "feet"),
  29602. weight: math.unit(135, "lb"),
  29603. name: "Back",
  29604. image: {
  29605. source: "./media/characters/axel/back.svg",
  29606. extra: 887 / 887,
  29607. bottom: 34 / 921
  29608. }
  29609. },
  29610. head: {
  29611. height: math.unit(1.07, "feet"),
  29612. name: "Head",
  29613. image: {
  29614. source: "./media/characters/axel/head.svg"
  29615. }
  29616. },
  29617. beak: {
  29618. height: math.unit(1.4, "feet"),
  29619. name: "Beak",
  29620. image: {
  29621. source: "./media/characters/axel/beak.svg"
  29622. }
  29623. },
  29624. beakSide: {
  29625. height: math.unit(1.4, "feet"),
  29626. name: "Beak Side",
  29627. image: {
  29628. source: "./media/characters/axel/beak-side.svg"
  29629. }
  29630. },
  29631. sheath: {
  29632. height: math.unit(0.5, "feet"),
  29633. name: "Sheath",
  29634. image: {
  29635. source: "./media/characters/axel/sheath.svg"
  29636. }
  29637. },
  29638. dick: {
  29639. height: math.unit(0.98, "feet"),
  29640. name: "Dick",
  29641. image: {
  29642. source: "./media/characters/axel/dick.svg"
  29643. }
  29644. },
  29645. },
  29646. [
  29647. {
  29648. name: "Macro",
  29649. height: math.unit(68, "meters"),
  29650. default: true
  29651. },
  29652. ]
  29653. ))
  29654. characterMakers.push(() => makeCharacter(
  29655. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29656. {
  29657. front: {
  29658. height: math.unit(3.5, "meters"),
  29659. weight: math.unit(1200, "kg"),
  29660. name: "Front",
  29661. image: {
  29662. source: "./media/characters/joanna/front.svg",
  29663. extra: 1596 / 1488,
  29664. bottom: 29 / 1625
  29665. }
  29666. },
  29667. back: {
  29668. height: math.unit(3.5, "meters"),
  29669. weight: math.unit(1200, "kg"),
  29670. name: "Back",
  29671. image: {
  29672. source: "./media/characters/joanna/back.svg",
  29673. extra: 1594 / 1495,
  29674. bottom: 26 / 1620
  29675. }
  29676. },
  29677. frontShorts: {
  29678. height: math.unit(3.5, "meters"),
  29679. weight: math.unit(1200, "kg"),
  29680. name: "Front (Shorts)",
  29681. image: {
  29682. source: "./media/characters/joanna/front-shorts.svg",
  29683. extra: 1596 / 1488,
  29684. bottom: 29 / 1625
  29685. }
  29686. },
  29687. frontBiker: {
  29688. height: math.unit(3.5, "meters"),
  29689. weight: math.unit(1200, "kg"),
  29690. name: "Front (Biker)",
  29691. image: {
  29692. source: "./media/characters/joanna/front-biker.svg",
  29693. extra: 1596 / 1488,
  29694. bottom: 29 / 1625
  29695. }
  29696. },
  29697. backBiker: {
  29698. height: math.unit(3.5, "meters"),
  29699. weight: math.unit(1200, "kg"),
  29700. name: "Back (Biker)",
  29701. image: {
  29702. source: "./media/characters/joanna/back-biker.svg",
  29703. extra: 1594 / 1495,
  29704. bottom: 88 / 1682
  29705. }
  29706. },
  29707. bikeLeft: {
  29708. height: math.unit(2.4, "meters"),
  29709. weight: math.unit(1600, "kg"),
  29710. name: "Bike (Left)",
  29711. image: {
  29712. source: "./media/characters/joanna/bike-left.svg",
  29713. extra: 720 / 720,
  29714. bottom: 8 / 728
  29715. }
  29716. },
  29717. bikeRight: {
  29718. height: math.unit(2.4, "meters"),
  29719. weight: math.unit(1600, "kg"),
  29720. name: "Bike (Right)",
  29721. image: {
  29722. source: "./media/characters/joanna/bike-right.svg",
  29723. extra: 720 / 720,
  29724. bottom: 8 / 728
  29725. }
  29726. },
  29727. },
  29728. [
  29729. {
  29730. name: "Incognito",
  29731. height: math.unit(3.5, "meters")
  29732. },
  29733. {
  29734. name: "Casual Big",
  29735. height: math.unit(200, "meters")
  29736. },
  29737. {
  29738. name: "Macro",
  29739. height: math.unit(600, "meters")
  29740. },
  29741. {
  29742. name: "Original",
  29743. height: math.unit(20, "km"),
  29744. default: true
  29745. },
  29746. {
  29747. name: "Giga",
  29748. height: math.unit(400, "km")
  29749. },
  29750. {
  29751. name: "Lounging",
  29752. height: math.unit(1500, "km")
  29753. },
  29754. {
  29755. name: "Planetary",
  29756. height: math.unit(200000, "km")
  29757. },
  29758. ]
  29759. ))
  29760. characterMakers.push(() => makeCharacter(
  29761. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29762. {
  29763. front: {
  29764. height: math.unit(6, "feet"),
  29765. weight: math.unit(150, "lb"),
  29766. name: "Front",
  29767. image: {
  29768. source: "./media/characters/hugo-sigil/front.svg",
  29769. extra: 522 / 500,
  29770. bottom: 2 / 524
  29771. }
  29772. },
  29773. back: {
  29774. height: math.unit(6, "feet"),
  29775. weight: math.unit(150, "lb"),
  29776. name: "Back",
  29777. image: {
  29778. source: "./media/characters/hugo-sigil/back.svg",
  29779. extra: 519 / 495,
  29780. bottom: 5 / 524
  29781. }
  29782. },
  29783. maw: {
  29784. height: math.unit(1.4, "feet"),
  29785. weight: math.unit(150, "lb"),
  29786. name: "Maw",
  29787. image: {
  29788. source: "./media/characters/hugo-sigil/maw.svg"
  29789. }
  29790. },
  29791. feet: {
  29792. height: math.unit(1.56, "feet"),
  29793. weight: math.unit(150, "lb"),
  29794. name: "Feet",
  29795. image: {
  29796. source: "./media/characters/hugo-sigil/feet.svg",
  29797. extra: 177 / 177,
  29798. bottom: 12 / 189
  29799. }
  29800. },
  29801. },
  29802. [
  29803. {
  29804. name: "Normal",
  29805. height: math.unit(6, "feet")
  29806. },
  29807. {
  29808. name: "Macro",
  29809. height: math.unit(200, "feet"),
  29810. default: true
  29811. },
  29812. ]
  29813. ))
  29814. characterMakers.push(() => makeCharacter(
  29815. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29816. {
  29817. front: {
  29818. height: math.unit(6, "feet"),
  29819. weight: math.unit(150, "lb"),
  29820. name: "Front",
  29821. image: {
  29822. source: "./media/characters/peri/front.svg",
  29823. extra: 2354 / 2233,
  29824. bottom: 49 / 2403
  29825. }
  29826. },
  29827. },
  29828. [
  29829. {
  29830. name: "Really Small",
  29831. height: math.unit(1, "nm")
  29832. },
  29833. {
  29834. name: "Micro",
  29835. height: math.unit(4, "inches")
  29836. },
  29837. {
  29838. name: "Normal",
  29839. height: math.unit(7, "inches"),
  29840. default: true
  29841. },
  29842. {
  29843. name: "Macro",
  29844. height: math.unit(400, "feet")
  29845. },
  29846. {
  29847. name: "Megamacro",
  29848. height: math.unit(100, "miles")
  29849. },
  29850. ]
  29851. ))
  29852. characterMakers.push(() => makeCharacter(
  29853. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29854. {
  29855. frontSlim: {
  29856. height: math.unit(7, "feet"),
  29857. name: "Front (Slim)",
  29858. image: {
  29859. source: "./media/characters/issilora/front-slim.svg",
  29860. extra: 529 / 449,
  29861. bottom: 53 / 582
  29862. }
  29863. },
  29864. sideSlim: {
  29865. height: math.unit(7, "feet"),
  29866. name: "Side (Slim)",
  29867. image: {
  29868. source: "./media/characters/issilora/side-slim.svg",
  29869. extra: 570 / 480,
  29870. bottom: 30 / 600
  29871. }
  29872. },
  29873. backSlim: {
  29874. height: math.unit(7, "feet"),
  29875. name: "Back (Slim)",
  29876. image: {
  29877. source: "./media/characters/issilora/back-slim.svg",
  29878. extra: 537 / 455,
  29879. bottom: 46 / 583
  29880. }
  29881. },
  29882. frontBuff: {
  29883. height: math.unit(7, "feet"),
  29884. name: "Front (Buff)",
  29885. image: {
  29886. source: "./media/characters/issilora/front-buff.svg",
  29887. extra: 2310 / 2035,
  29888. bottom: 335 / 2645
  29889. }
  29890. },
  29891. head: {
  29892. height: math.unit(1.94, "feet"),
  29893. name: "Head",
  29894. image: {
  29895. source: "./media/characters/issilora/head.svg"
  29896. }
  29897. },
  29898. },
  29899. [
  29900. {
  29901. name: "Minimum",
  29902. height: math.unit(7, "feet")
  29903. },
  29904. {
  29905. name: "Comfortable",
  29906. height: math.unit(17, "feet")
  29907. },
  29908. {
  29909. name: "Fun Size",
  29910. height: math.unit(47, "feet")
  29911. },
  29912. {
  29913. name: "Natural Macro",
  29914. height: math.unit(137, "feet"),
  29915. default: true
  29916. },
  29917. {
  29918. name: "Maximum Kaiju",
  29919. height: math.unit(397, "feet")
  29920. },
  29921. ]
  29922. ))
  29923. characterMakers.push(() => makeCharacter(
  29924. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29925. {
  29926. front: {
  29927. height: math.unit(50 + 9/12, "feet"),
  29928. weight: math.unit(32.8, "tons"),
  29929. name: "Front",
  29930. image: {
  29931. source: "./media/characters/irb'iiritaahn/front.svg",
  29932. extra: 1878/1826,
  29933. bottom: 326/2204
  29934. }
  29935. },
  29936. back: {
  29937. height: math.unit(50 + 9/12, "feet"),
  29938. weight: math.unit(32.8, "tons"),
  29939. name: "Back",
  29940. image: {
  29941. source: "./media/characters/irb'iiritaahn/back.svg",
  29942. extra: 2052/2018,
  29943. bottom: 152/2204
  29944. }
  29945. },
  29946. head: {
  29947. height: math.unit(12.86, "feet"),
  29948. name: "Head",
  29949. image: {
  29950. source: "./media/characters/irb'iiritaahn/head.svg"
  29951. }
  29952. },
  29953. maw: {
  29954. height: math.unit(9.66, "feet"),
  29955. name: "Maw",
  29956. image: {
  29957. source: "./media/characters/irb'iiritaahn/maw.svg"
  29958. }
  29959. },
  29960. frontDick: {
  29961. height: math.unit(8.78461, "feet"),
  29962. name: "Front Dick",
  29963. image: {
  29964. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29965. }
  29966. },
  29967. rearDick: {
  29968. height: math.unit(8.78461, "feet"),
  29969. name: "Rear Dick",
  29970. image: {
  29971. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29972. }
  29973. },
  29974. rearDickUnfolded: {
  29975. height: math.unit(8.78, "feet"),
  29976. name: "Rear Dick (Unfolded)",
  29977. image: {
  29978. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29979. }
  29980. },
  29981. wings: {
  29982. height: math.unit(43, "feet"),
  29983. name: "Wings",
  29984. image: {
  29985. source: "./media/characters/irb'iiritaahn/wings.svg"
  29986. }
  29987. },
  29988. },
  29989. [
  29990. {
  29991. name: "Macro",
  29992. height: math.unit(50 + 9/12, "feet"),
  29993. default: true
  29994. },
  29995. ]
  29996. ))
  29997. characterMakers.push(() => makeCharacter(
  29998. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  29999. {
  30000. front: {
  30001. height: math.unit(205, "cm"),
  30002. weight: math.unit(102, "kg"),
  30003. name: "Front",
  30004. image: {
  30005. source: "./media/characters/irbisgreif/front.svg",
  30006. extra: 785/706,
  30007. bottom: 13/798
  30008. }
  30009. },
  30010. back: {
  30011. height: math.unit(205, "cm"),
  30012. weight: math.unit(102, "kg"),
  30013. name: "Back",
  30014. image: {
  30015. source: "./media/characters/irbisgreif/back.svg",
  30016. extra: 713/701,
  30017. bottom: 26/739
  30018. }
  30019. },
  30020. frontDressed: {
  30021. height: math.unit(216, "cm"),
  30022. weight: math.unit(102, "kg"),
  30023. name: "Front-dressed",
  30024. image: {
  30025. source: "./media/characters/irbisgreif/front-dressed.svg",
  30026. extra: 902/776,
  30027. bottom: 14/916
  30028. }
  30029. },
  30030. sideDressed: {
  30031. height: math.unit(195, "cm"),
  30032. weight: math.unit(102, "kg"),
  30033. name: "Side-dressed",
  30034. image: {
  30035. source: "./media/characters/irbisgreif/side-dressed.svg",
  30036. extra: 788/688,
  30037. bottom: 21/809
  30038. }
  30039. },
  30040. backDressed: {
  30041. height: math.unit(216, "cm"),
  30042. weight: math.unit(102, "kg"),
  30043. name: "Back-dressed",
  30044. image: {
  30045. source: "./media/characters/irbisgreif/back-dressed.svg",
  30046. extra: 901/783,
  30047. bottom: 10/911
  30048. }
  30049. },
  30050. dick: {
  30051. height: math.unit(0.49, "feet"),
  30052. name: "Dick",
  30053. image: {
  30054. source: "./media/characters/irbisgreif/dick.svg"
  30055. }
  30056. },
  30057. wingTop: {
  30058. height: math.unit(1.93 , "feet"),
  30059. name: "Wing-top",
  30060. image: {
  30061. source: "./media/characters/irbisgreif/wing-top.svg"
  30062. }
  30063. },
  30064. wingBottom: {
  30065. height: math.unit(1.93 , "feet"),
  30066. name: "Wing-bottom",
  30067. image: {
  30068. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30069. }
  30070. },
  30071. },
  30072. [
  30073. {
  30074. name: "Normal",
  30075. height: math.unit(216, "cm"),
  30076. default: true
  30077. },
  30078. ]
  30079. ))
  30080. characterMakers.push(() => makeCharacter(
  30081. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30082. {
  30083. front: {
  30084. height: math.unit(6, "feet"),
  30085. weight: math.unit(150, "lb"),
  30086. name: "Front",
  30087. image: {
  30088. source: "./media/characters/pride/front.svg",
  30089. extra: 1299/1230,
  30090. bottom: 18/1317
  30091. }
  30092. },
  30093. },
  30094. [
  30095. {
  30096. name: "Normal",
  30097. height: math.unit(7, "feet")
  30098. },
  30099. {
  30100. name: "Mini-macro",
  30101. height: math.unit(11, "feet")
  30102. },
  30103. {
  30104. name: "Macro",
  30105. height: math.unit(15, "meters"),
  30106. default: true
  30107. },
  30108. {
  30109. name: "Macro+",
  30110. height: math.unit(40, "meters")
  30111. },
  30112. ]
  30113. ))
  30114. characterMakers.push(() => makeCharacter(
  30115. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30116. {
  30117. front: {
  30118. height: math.unit(4 + 2 / 12, "feet"),
  30119. weight: math.unit(95, "lb"),
  30120. name: "Front",
  30121. image: {
  30122. source: "./media/characters/vaelophis-nyx/front.svg",
  30123. extra: 2532/2330,
  30124. bottom: 0/2532
  30125. }
  30126. },
  30127. back: {
  30128. height: math.unit(4 + 2 / 12, "feet"),
  30129. weight: math.unit(95, "lb"),
  30130. name: "Back",
  30131. image: {
  30132. source: "./media/characters/vaelophis-nyx/back.svg",
  30133. extra: 2484/2361,
  30134. bottom: 0/2484
  30135. }
  30136. },
  30137. feralSide: {
  30138. height: math.unit(2 + 1/12, "feet"),
  30139. weight: math.unit(20, "lb"),
  30140. name: "Feral (Side)",
  30141. image: {
  30142. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30143. extra: 1721/1581,
  30144. bottom: 70/1791
  30145. }
  30146. },
  30147. feralLazing: {
  30148. height: math.unit(1.08, "feet"),
  30149. weight: math.unit(20, "lb"),
  30150. name: "Feral (Lazing)",
  30151. image: {
  30152. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30153. extra: 822/822,
  30154. bottom: 248/1070
  30155. }
  30156. },
  30157. ear: {
  30158. height: math.unit(0.416, "feet"),
  30159. name: "Ear",
  30160. image: {
  30161. source: "./media/characters/vaelophis-nyx/ear.svg"
  30162. }
  30163. },
  30164. eye: {
  30165. height: math.unit(0.0748, "feet"),
  30166. name: "Eye",
  30167. image: {
  30168. source: "./media/characters/vaelophis-nyx/eye.svg"
  30169. }
  30170. },
  30171. mouth: {
  30172. height: math.unit(0.378, "feet"),
  30173. name: "Mouth",
  30174. image: {
  30175. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30176. }
  30177. },
  30178. spade: {
  30179. height: math.unit(0.55, "feet"),
  30180. name: "Spade",
  30181. image: {
  30182. source: "./media/characters/vaelophis-nyx/spade.svg"
  30183. }
  30184. },
  30185. },
  30186. [
  30187. {
  30188. name: "Normal",
  30189. height: math.unit(4 + 2/12, "feet"),
  30190. default: true
  30191. },
  30192. ]
  30193. ))
  30194. characterMakers.push(() => makeCharacter(
  30195. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30196. {
  30197. front: {
  30198. height: math.unit(7, "feet"),
  30199. weight: math.unit(231, "lb"),
  30200. name: "Front",
  30201. image: {
  30202. source: "./media/characters/flux/front.svg",
  30203. extra: 919/871,
  30204. bottom: 0/919
  30205. }
  30206. },
  30207. back: {
  30208. height: math.unit(7, "feet"),
  30209. weight: math.unit(231, "lb"),
  30210. name: "Back",
  30211. image: {
  30212. source: "./media/characters/flux/back.svg",
  30213. extra: 1040/992,
  30214. bottom: 0/1040
  30215. }
  30216. },
  30217. frontDressed: {
  30218. height: math.unit(7, "feet"),
  30219. weight: math.unit(231, "lb"),
  30220. name: "Front (Dressed)",
  30221. image: {
  30222. source: "./media/characters/flux/front-dressed.svg",
  30223. extra: 919/871,
  30224. bottom: 0/919
  30225. }
  30226. },
  30227. feralSide: {
  30228. height: math.unit(5, "feet"),
  30229. weight: math.unit(150, "lb"),
  30230. name: "Feral (Side)",
  30231. image: {
  30232. source: "./media/characters/flux/feral-side.svg",
  30233. extra: 598/528,
  30234. bottom: 28/626
  30235. }
  30236. },
  30237. head: {
  30238. height: math.unit(1.585, "feet"),
  30239. name: "Head",
  30240. image: {
  30241. source: "./media/characters/flux/head.svg"
  30242. }
  30243. },
  30244. headSide: {
  30245. height: math.unit(1.74, "feet"),
  30246. name: "Head (Side)",
  30247. image: {
  30248. source: "./media/characters/flux/head-side.svg"
  30249. }
  30250. },
  30251. headSideFire: {
  30252. height: math.unit(1.76, "feet"),
  30253. name: "Head (Side, Fire)",
  30254. image: {
  30255. source: "./media/characters/flux/head-side-fire.svg"
  30256. }
  30257. },
  30258. },
  30259. [
  30260. {
  30261. name: "Normal",
  30262. height: math.unit(7, "feet"),
  30263. default: true
  30264. },
  30265. ]
  30266. ))
  30267. characterMakers.push(() => makeCharacter(
  30268. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30269. {
  30270. front: {
  30271. height: math.unit(9, "feet"),
  30272. weight: math.unit(1012, "lb"),
  30273. name: "Front",
  30274. image: {
  30275. source: "./media/characters/ulfra-lupae/front.svg",
  30276. extra: 1083/1011,
  30277. bottom: 67/1150
  30278. }
  30279. },
  30280. },
  30281. [
  30282. {
  30283. name: "Micro",
  30284. height: math.unit(6, "inches")
  30285. },
  30286. {
  30287. name: "Socializing",
  30288. height: math.unit(6 + 5/12, "feet")
  30289. },
  30290. {
  30291. name: "Normal",
  30292. height: math.unit(9, "feet"),
  30293. default: true
  30294. },
  30295. {
  30296. name: "Macro",
  30297. height: math.unit(150, "feet")
  30298. },
  30299. ]
  30300. ))
  30301. characterMakers.push(() => makeCharacter(
  30302. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30303. {
  30304. front: {
  30305. height: math.unit(5 + 2/12, "feet"),
  30306. weight: math.unit(120, "lb"),
  30307. name: "Front",
  30308. image: {
  30309. source: "./media/characters/timber/front.svg",
  30310. extra: 2814/2705,
  30311. bottom: 181/2995
  30312. }
  30313. },
  30314. },
  30315. [
  30316. {
  30317. name: "Normal",
  30318. height: math.unit(5 + 2/12, "feet"),
  30319. default: true
  30320. },
  30321. ]
  30322. ))
  30323. characterMakers.push(() => makeCharacter(
  30324. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30325. {
  30326. front: {
  30327. height: math.unit(5 + 7/12, "feet"),
  30328. weight: math.unit(220, "lb"),
  30329. name: "Front",
  30330. image: {
  30331. source: "./media/characters/nicki/front.svg",
  30332. extra: 453/419,
  30333. bottom: 7/460
  30334. }
  30335. },
  30336. frontAlt: {
  30337. height: math.unit(5 + 7/12, "feet"),
  30338. weight: math.unit(220, "lb"),
  30339. name: "Front-alt",
  30340. image: {
  30341. source: "./media/characters/nicki/front-alt.svg",
  30342. extra: 435/411,
  30343. bottom: 12/447
  30344. }
  30345. },
  30346. back: {
  30347. height: math.unit(5 + 7/12, "feet"),
  30348. weight: math.unit(220, "lb"),
  30349. name: "Back",
  30350. image: {
  30351. source: "./media/characters/nicki/back.svg",
  30352. extra: 440/413,
  30353. bottom: 19/459
  30354. }
  30355. },
  30356. taur: {
  30357. height: math.unit(7 + 6/12, "feet"),
  30358. weight: math.unit(700, "lb"),
  30359. name: "Taur",
  30360. image: {
  30361. source: "./media/characters/nicki/taur.svg",
  30362. extra: 975/773,
  30363. bottom: 0/975
  30364. }
  30365. },
  30366. frontNsfw: {
  30367. height: math.unit(5 + 7/12, "feet"),
  30368. weight: math.unit(220, "lb"),
  30369. name: "Front (NSFW)",
  30370. image: {
  30371. source: "./media/characters/nicki/front-nsfw.svg",
  30372. extra: 453/419,
  30373. bottom: 7/460
  30374. }
  30375. },
  30376. frontNsfwAlt: {
  30377. height: math.unit(5 + 7/12, "feet"),
  30378. weight: math.unit(220, "lb"),
  30379. name: "Front (Alt, NSFW)",
  30380. image: {
  30381. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30382. extra: 435/411,
  30383. bottom: 12/447
  30384. }
  30385. },
  30386. backNsfw: {
  30387. height: math.unit(5 + 7/12, "feet"),
  30388. weight: math.unit(220, "lb"),
  30389. name: "Back (NSFW)",
  30390. image: {
  30391. source: "./media/characters/nicki/back-nsfw.svg",
  30392. extra: 440/413,
  30393. bottom: 19/459
  30394. }
  30395. },
  30396. head: {
  30397. height: math.unit(2.1, "feet"),
  30398. name: "Head",
  30399. image: {
  30400. source: "./media/characters/nicki/head.svg"
  30401. }
  30402. },
  30403. paw: {
  30404. height: math.unit(1.88, "feet"),
  30405. name: "Paw",
  30406. image: {
  30407. source: "./media/characters/nicki/paw.svg"
  30408. }
  30409. },
  30410. },
  30411. [
  30412. {
  30413. name: "Normal",
  30414. height: math.unit(5 + 7/12, "feet"),
  30415. default: true
  30416. },
  30417. ]
  30418. ))
  30419. characterMakers.push(() => makeCharacter(
  30420. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30421. {
  30422. front: {
  30423. height: math.unit(7 + 10/12, "feet"),
  30424. weight: math.unit(3.5, "tons"),
  30425. name: "Front",
  30426. image: {
  30427. source: "./media/characters/lee/front.svg",
  30428. extra: 1773/1615,
  30429. bottom: 86/1859
  30430. }
  30431. },
  30432. hand: {
  30433. height: math.unit(1.78, "feet"),
  30434. name: "Hand",
  30435. image: {
  30436. source: "./media/characters/lee/hand.svg"
  30437. }
  30438. },
  30439. maw: {
  30440. height: math.unit(1.18, "feet"),
  30441. name: "Maw",
  30442. image: {
  30443. source: "./media/characters/lee/maw.svg"
  30444. }
  30445. },
  30446. },
  30447. [
  30448. {
  30449. name: "Normal",
  30450. height: math.unit(7 + 10/12, "feet"),
  30451. default: true
  30452. },
  30453. ]
  30454. ))
  30455. characterMakers.push(() => makeCharacter(
  30456. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30457. {
  30458. front: {
  30459. height: math.unit(9, "feet"),
  30460. name: "Front",
  30461. image: {
  30462. source: "./media/characters/guti/front.svg",
  30463. extra: 4551/4355,
  30464. bottom: 123/4674
  30465. }
  30466. },
  30467. tongue: {
  30468. height: math.unit(1, "feet"),
  30469. name: "Tongue",
  30470. image: {
  30471. source: "./media/characters/guti/tongue.svg"
  30472. }
  30473. },
  30474. paw: {
  30475. height: math.unit(1.18, "feet"),
  30476. name: "Paw",
  30477. image: {
  30478. source: "./media/characters/guti/paw.svg"
  30479. }
  30480. },
  30481. },
  30482. [
  30483. {
  30484. name: "Normal",
  30485. height: math.unit(9, "feet"),
  30486. default: true
  30487. },
  30488. ]
  30489. ))
  30490. characterMakers.push(() => makeCharacter(
  30491. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30492. {
  30493. side: {
  30494. height: math.unit(5, "meters"),
  30495. name: "Side",
  30496. image: {
  30497. source: "./media/characters/vesper/side.svg",
  30498. extra: 1605/1518,
  30499. bottom: 0/1605
  30500. }
  30501. },
  30502. },
  30503. [
  30504. {
  30505. name: "Small",
  30506. height: math.unit(5, "meters")
  30507. },
  30508. {
  30509. name: "Sage",
  30510. height: math.unit(100, "meters"),
  30511. default: true
  30512. },
  30513. {
  30514. name: "Fun Size",
  30515. height: math.unit(600, "meters")
  30516. },
  30517. {
  30518. name: "Goddess",
  30519. height: math.unit(20000, "km")
  30520. },
  30521. {
  30522. name: "Maximum",
  30523. height: math.unit(5, "galaxies")
  30524. },
  30525. ]
  30526. ))
  30527. characterMakers.push(() => makeCharacter(
  30528. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30529. {
  30530. front: {
  30531. height: math.unit(6 + 3/12, "feet"),
  30532. weight: math.unit(190, "lb"),
  30533. name: "Front",
  30534. image: {
  30535. source: "./media/characters/gawain/front.svg",
  30536. extra: 2222/2139,
  30537. bottom: 90/2312
  30538. }
  30539. },
  30540. back: {
  30541. height: math.unit(6 + 3/12, "feet"),
  30542. weight: math.unit(190, "lb"),
  30543. name: "Back",
  30544. image: {
  30545. source: "./media/characters/gawain/back.svg",
  30546. extra: 2199/2111,
  30547. bottom: 73/2272
  30548. }
  30549. },
  30550. },
  30551. [
  30552. {
  30553. name: "Normal",
  30554. height: math.unit(6 + 3/12, "feet"),
  30555. default: true
  30556. },
  30557. ]
  30558. ))
  30559. characterMakers.push(() => makeCharacter(
  30560. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30561. {
  30562. side: {
  30563. height: math.unit(3.5, "meters"),
  30564. weight: math.unit(16000, "lb"),
  30565. name: "Side",
  30566. image: {
  30567. source: "./media/characters/dascalti/side.svg",
  30568. extra: 392/273,
  30569. bottom: 47/439
  30570. }
  30571. },
  30572. breath: {
  30573. height: math.unit(7.4, "feet"),
  30574. name: "Breath",
  30575. image: {
  30576. source: "./media/characters/dascalti/breath.svg"
  30577. }
  30578. },
  30579. fed: {
  30580. height: math.unit(3.6, "meters"),
  30581. weight: math.unit(16000, "lb"),
  30582. name: "Fed",
  30583. image: {
  30584. source: "./media/characters/dascalti/fed.svg",
  30585. extra: 1419/820,
  30586. bottom: 95/1514
  30587. }
  30588. },
  30589. },
  30590. [
  30591. {
  30592. name: "Normal",
  30593. height: math.unit(3.5, "meters"),
  30594. default: true
  30595. },
  30596. ]
  30597. ))
  30598. characterMakers.push(() => makeCharacter(
  30599. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30600. {
  30601. front: {
  30602. height: math.unit(3 + 5/12, "feet"),
  30603. name: "Front",
  30604. image: {
  30605. source: "./media/characters/mauve/front.svg",
  30606. extra: 1126/1033,
  30607. bottom: 65/1191
  30608. }
  30609. },
  30610. side: {
  30611. height: math.unit(3 + 5/12, "feet"),
  30612. name: "Side",
  30613. image: {
  30614. source: "./media/characters/mauve/side.svg",
  30615. extra: 1089/1001,
  30616. bottom: 29/1118
  30617. }
  30618. },
  30619. back: {
  30620. height: math.unit(3 + 5/12, "feet"),
  30621. name: "Back",
  30622. image: {
  30623. source: "./media/characters/mauve/back.svg",
  30624. extra: 1173/1053,
  30625. bottom: 109/1282
  30626. }
  30627. },
  30628. },
  30629. [
  30630. {
  30631. name: "Normal",
  30632. height: math.unit(3 + 5/12, "feet"),
  30633. default: true
  30634. },
  30635. ]
  30636. ))
  30637. characterMakers.push(() => makeCharacter(
  30638. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30639. {
  30640. front: {
  30641. height: math.unit(6 + 3/12, "feet"),
  30642. weight: math.unit(430, "lb"),
  30643. name: "Front",
  30644. image: {
  30645. source: "./media/characters/carlos/front.svg",
  30646. extra: 1964/1913,
  30647. bottom: 70/2034
  30648. }
  30649. },
  30650. },
  30651. [
  30652. {
  30653. name: "Normal",
  30654. height: math.unit(6 + 3/12, "feet"),
  30655. default: true
  30656. },
  30657. ]
  30658. ))
  30659. characterMakers.push(() => makeCharacter(
  30660. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30661. {
  30662. back: {
  30663. height: math.unit(5 + 10/12, "feet"),
  30664. weight: math.unit(200, "lb"),
  30665. name: "Back",
  30666. image: {
  30667. source: "./media/characters/jax/back.svg",
  30668. extra: 764/739,
  30669. bottom: 25/789
  30670. }
  30671. },
  30672. },
  30673. [
  30674. {
  30675. name: "Normal",
  30676. height: math.unit(5 + 10/12, "feet"),
  30677. default: true
  30678. },
  30679. ]
  30680. ))
  30681. characterMakers.push(() => makeCharacter(
  30682. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30683. {
  30684. front: {
  30685. height: math.unit(8, "feet"),
  30686. weight: math.unit(250, "lb"),
  30687. name: "Front",
  30688. image: {
  30689. source: "./media/characters/eikthynir/front.svg",
  30690. extra: 1332/1166,
  30691. bottom: 82/1414
  30692. }
  30693. },
  30694. back: {
  30695. height: math.unit(8, "feet"),
  30696. weight: math.unit(250, "lb"),
  30697. name: "Back",
  30698. image: {
  30699. source: "./media/characters/eikthynir/back.svg",
  30700. extra: 1342/1190,
  30701. bottom: 19/1361
  30702. }
  30703. },
  30704. dick: {
  30705. height: math.unit(2.35, "feet"),
  30706. name: "Dick",
  30707. image: {
  30708. source: "./media/characters/eikthynir/dick.svg"
  30709. }
  30710. },
  30711. },
  30712. [
  30713. {
  30714. name: "Normal",
  30715. height: math.unit(8, "feet"),
  30716. default: true
  30717. },
  30718. ]
  30719. ))
  30720. characterMakers.push(() => makeCharacter(
  30721. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30722. {
  30723. front: {
  30724. height: math.unit(99, "meters"),
  30725. weight: math.unit(13000, "tons"),
  30726. name: "Front",
  30727. image: {
  30728. source: "./media/characters/zlmos/front.svg",
  30729. extra: 2202/1992,
  30730. bottom: 315/2517
  30731. }
  30732. },
  30733. },
  30734. [
  30735. {
  30736. name: "Macro",
  30737. height: math.unit(99, "meters"),
  30738. default: true
  30739. },
  30740. ]
  30741. ))
  30742. characterMakers.push(() => makeCharacter(
  30743. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30744. {
  30745. front: {
  30746. height: math.unit(6 + 5/12, "feet"),
  30747. name: "Front",
  30748. image: {
  30749. source: "./media/characters/purri/front.svg",
  30750. extra: 1698/1610,
  30751. bottom: 32/1730
  30752. }
  30753. },
  30754. frontAlt: {
  30755. height: math.unit(6 + 5/12, "feet"),
  30756. name: "Front (Alt)",
  30757. image: {
  30758. source: "./media/characters/purri/front-alt.svg",
  30759. extra: 450/420,
  30760. bottom: 26/476
  30761. }
  30762. },
  30763. boots: {
  30764. height: math.unit(5.5, "feet"),
  30765. name: "Boots",
  30766. image: {
  30767. source: "./media/characters/purri/boots.svg",
  30768. extra: 905/853,
  30769. bottom: 18/923
  30770. }
  30771. },
  30772. lying: {
  30773. height: math.unit(2, "feet"),
  30774. name: "Lying",
  30775. image: {
  30776. source: "./media/characters/purri/lying.svg",
  30777. extra: 940/843,
  30778. bottom: 146/1086
  30779. }
  30780. },
  30781. devious: {
  30782. height: math.unit(1.77, "feet"),
  30783. name: "Devious",
  30784. image: {
  30785. source: "./media/characters/purri/devious.svg",
  30786. extra: 1440/1155,
  30787. bottom: 147/1587
  30788. }
  30789. },
  30790. bean: {
  30791. height: math.unit(1.94, "feet"),
  30792. name: "Bean",
  30793. image: {
  30794. source: "./media/characters/purri/bean.svg"
  30795. }
  30796. },
  30797. },
  30798. [
  30799. {
  30800. name: "Micro",
  30801. height: math.unit(1, "mm")
  30802. },
  30803. {
  30804. name: "Normal",
  30805. height: math.unit(6 + 5/12, "feet"),
  30806. default: true
  30807. },
  30808. {
  30809. name: "Macro :3c",
  30810. height: math.unit(2, "miles")
  30811. },
  30812. ]
  30813. ))
  30814. characterMakers.push(() => makeCharacter(
  30815. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30816. {
  30817. front: {
  30818. height: math.unit(6 + 2/12, "feet"),
  30819. weight: math.unit(250, "lb"),
  30820. name: "Front",
  30821. image: {
  30822. source: "./media/characters/moonlight/front.svg",
  30823. extra: 1044/908,
  30824. bottom: 56/1100
  30825. }
  30826. },
  30827. feral: {
  30828. height: math.unit(3 + 1/12, "feet"),
  30829. weight: math.unit(50, "kg"),
  30830. name: "Feral",
  30831. image: {
  30832. source: "./media/characters/moonlight/feral.svg",
  30833. extra: 3705/2791,
  30834. bottom: 145/3850
  30835. }
  30836. },
  30837. paw: {
  30838. height: math.unit(1, "feet"),
  30839. name: "Paw",
  30840. image: {
  30841. source: "./media/characters/moonlight/paw.svg"
  30842. }
  30843. },
  30844. paws: {
  30845. height: math.unit(0.98, "feet"),
  30846. name: "Paws",
  30847. image: {
  30848. source: "./media/characters/moonlight/paws.svg",
  30849. extra: 939/939,
  30850. bottom: 50/989
  30851. }
  30852. },
  30853. mouth: {
  30854. height: math.unit(0.48, "feet"),
  30855. name: "Mouth",
  30856. image: {
  30857. source: "./media/characters/moonlight/mouth.svg"
  30858. }
  30859. },
  30860. dick: {
  30861. height: math.unit(1.46, "feet"),
  30862. name: "Dick",
  30863. image: {
  30864. source: "./media/characters/moonlight/dick.svg"
  30865. }
  30866. },
  30867. },
  30868. [
  30869. {
  30870. name: "Normal",
  30871. height: math.unit(6 + 2/12, "feet"),
  30872. default: true
  30873. },
  30874. {
  30875. name: "Macro",
  30876. height: math.unit(300, "feet")
  30877. },
  30878. {
  30879. name: "Macro+",
  30880. height: math.unit(1, "mile")
  30881. },
  30882. {
  30883. name: "Mt. Moon",
  30884. height: math.unit(5, "miles")
  30885. },
  30886. {
  30887. name: "Megamacro",
  30888. height: math.unit(15, "miles")
  30889. },
  30890. ]
  30891. ))
  30892. characterMakers.push(() => makeCharacter(
  30893. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30894. {
  30895. back: {
  30896. height: math.unit(6, "feet"),
  30897. weight: math.unit(150, "lb"),
  30898. name: "Back",
  30899. image: {
  30900. source: "./media/characters/sylen/back.svg",
  30901. extra: 1335/1273,
  30902. bottom: 107/1442
  30903. }
  30904. },
  30905. },
  30906. [
  30907. {
  30908. name: "Normal",
  30909. height: math.unit(5 + 5/12, "feet")
  30910. },
  30911. {
  30912. name: "Megamacro",
  30913. height: math.unit(3, "miles"),
  30914. default: true
  30915. },
  30916. ]
  30917. ))
  30918. characterMakers.push(() => makeCharacter(
  30919. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30920. {
  30921. front: {
  30922. height: math.unit(6, "feet"),
  30923. weight: math.unit(190, "lb"),
  30924. name: "Front",
  30925. image: {
  30926. source: "./media/characters/huttser/front.svg",
  30927. extra: 1152/1058,
  30928. bottom: 23/1175
  30929. }
  30930. },
  30931. side: {
  30932. height: math.unit(6, "feet"),
  30933. weight: math.unit(190, "lb"),
  30934. name: "Side",
  30935. image: {
  30936. source: "./media/characters/huttser/side.svg",
  30937. extra: 1174/1065,
  30938. bottom: 18/1192
  30939. }
  30940. },
  30941. back: {
  30942. height: math.unit(6, "feet"),
  30943. weight: math.unit(190, "lb"),
  30944. name: "Back",
  30945. image: {
  30946. source: "./media/characters/huttser/back.svg",
  30947. extra: 1158/1056,
  30948. bottom: 12/1170
  30949. }
  30950. },
  30951. },
  30952. [
  30953. ]
  30954. ))
  30955. characterMakers.push(() => makeCharacter(
  30956. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30957. {
  30958. side: {
  30959. height: math.unit(12 + 9/12, "feet"),
  30960. weight: math.unit(15000, "lb"),
  30961. name: "Side",
  30962. image: {
  30963. source: "./media/characters/faan/side.svg",
  30964. extra: 2747/2697,
  30965. bottom: 0/2747
  30966. }
  30967. },
  30968. front: {
  30969. height: math.unit(12 + 9/12, "feet"),
  30970. weight: math.unit(15000, "lb"),
  30971. name: "Front",
  30972. image: {
  30973. source: "./media/characters/faan/front.svg",
  30974. extra: 607/571,
  30975. bottom: 24/631
  30976. }
  30977. },
  30978. head: {
  30979. height: math.unit(2.85, "feet"),
  30980. name: "Head",
  30981. image: {
  30982. source: "./media/characters/faan/head.svg"
  30983. }
  30984. },
  30985. headAlt: {
  30986. height: math.unit(3.13, "feet"),
  30987. name: "Head-alt",
  30988. image: {
  30989. source: "./media/characters/faan/head-alt.svg"
  30990. }
  30991. },
  30992. },
  30993. [
  30994. {
  30995. name: "Normal",
  30996. height: math.unit(12 + 9/12, "feet"),
  30997. default: true
  30998. },
  30999. ]
  31000. ))
  31001. characterMakers.push(() => makeCharacter(
  31002. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31003. {
  31004. front: {
  31005. height: math.unit(6, "feet"),
  31006. weight: math.unit(300, "lb"),
  31007. name: "Front",
  31008. image: {
  31009. source: "./media/characters/tanio/front.svg",
  31010. extra: 711/673,
  31011. bottom: 25/736
  31012. }
  31013. },
  31014. },
  31015. [
  31016. {
  31017. name: "Normal",
  31018. height: math.unit(6, "feet"),
  31019. default: true
  31020. },
  31021. ]
  31022. ))
  31023. characterMakers.push(() => makeCharacter(
  31024. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31025. {
  31026. front: {
  31027. height: math.unit(3, "inches"),
  31028. name: "Front",
  31029. image: {
  31030. source: "./media/characters/noboru/front.svg",
  31031. extra: 1039/932,
  31032. bottom: 18/1057
  31033. }
  31034. },
  31035. },
  31036. [
  31037. {
  31038. name: "Micro",
  31039. height: math.unit(3, "inches"),
  31040. default: true
  31041. },
  31042. ]
  31043. ))
  31044. characterMakers.push(() => makeCharacter(
  31045. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31046. {
  31047. front: {
  31048. height: math.unit(1.85, "meters"),
  31049. weight: math.unit(80, "kg"),
  31050. name: "Front",
  31051. image: {
  31052. source: "./media/characters/daniel-barrett/front.svg",
  31053. extra: 355/337,
  31054. bottom: 9/364
  31055. }
  31056. },
  31057. },
  31058. [
  31059. {
  31060. name: "Pico",
  31061. height: math.unit(0.0433, "mm")
  31062. },
  31063. {
  31064. name: "Nano",
  31065. height: math.unit(1.5, "mm")
  31066. },
  31067. {
  31068. name: "Micro",
  31069. height: math.unit(5.3, "cm"),
  31070. default: true
  31071. },
  31072. {
  31073. name: "Normal",
  31074. height: math.unit(1.85, "meters")
  31075. },
  31076. {
  31077. name: "Macro",
  31078. height: math.unit(64.7, "meters")
  31079. },
  31080. {
  31081. name: "Megamacro",
  31082. height: math.unit(2.26, "km")
  31083. },
  31084. {
  31085. name: "Gigamacro",
  31086. height: math.unit(79, "km")
  31087. },
  31088. {
  31089. name: "Teramacro",
  31090. height: math.unit(2765, "km")
  31091. },
  31092. {
  31093. name: "Petamacro",
  31094. height: math.unit(96678, "km")
  31095. },
  31096. ]
  31097. ))
  31098. characterMakers.push(() => makeCharacter(
  31099. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31100. {
  31101. front: {
  31102. height: math.unit(30, "meters"),
  31103. weight: math.unit(400, "tons"),
  31104. name: "Front",
  31105. image: {
  31106. source: "./media/characters/zeel/front.svg",
  31107. extra: 2599/2599,
  31108. bottom: 226/2825
  31109. }
  31110. },
  31111. },
  31112. [
  31113. {
  31114. name: "Macro",
  31115. height: math.unit(30, "meters"),
  31116. default: true
  31117. },
  31118. ]
  31119. ))
  31120. characterMakers.push(() => makeCharacter(
  31121. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31122. {
  31123. front: {
  31124. height: math.unit(6 + 7/12, "feet"),
  31125. weight: math.unit(210, "lb"),
  31126. name: "Front",
  31127. image: {
  31128. source: "./media/characters/tarn/front.svg",
  31129. extra: 3517/3220,
  31130. bottom: 91/3608
  31131. }
  31132. },
  31133. back: {
  31134. height: math.unit(6 + 7/12, "feet"),
  31135. weight: math.unit(210, "lb"),
  31136. name: "Back",
  31137. image: {
  31138. source: "./media/characters/tarn/back.svg",
  31139. extra: 3566/3241,
  31140. bottom: 34/3600
  31141. }
  31142. },
  31143. dick: {
  31144. height: math.unit(1.65, "feet"),
  31145. name: "Dick",
  31146. image: {
  31147. source: "./media/characters/tarn/dick.svg"
  31148. }
  31149. },
  31150. paw: {
  31151. height: math.unit(1.80, "feet"),
  31152. name: "Paw",
  31153. image: {
  31154. source: "./media/characters/tarn/paw.svg"
  31155. }
  31156. },
  31157. tongue: {
  31158. height: math.unit(0.97, "feet"),
  31159. name: "Tongue",
  31160. image: {
  31161. source: "./media/characters/tarn/tongue.svg"
  31162. }
  31163. },
  31164. },
  31165. [
  31166. {
  31167. name: "Micro",
  31168. height: math.unit(4, "inches")
  31169. },
  31170. {
  31171. name: "Normal",
  31172. height: math.unit(6 + 7/12, "feet"),
  31173. default: true
  31174. },
  31175. {
  31176. name: "Macro",
  31177. height: math.unit(300, "feet")
  31178. },
  31179. ]
  31180. ))
  31181. characterMakers.push(() => makeCharacter(
  31182. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31183. {
  31184. front: {
  31185. height: math.unit(5 + 7/12, "feet"),
  31186. weight: math.unit(80, "kg"),
  31187. name: "Front",
  31188. image: {
  31189. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31190. extra: 3023/2865,
  31191. bottom: 33/3056
  31192. }
  31193. },
  31194. back: {
  31195. height: math.unit(5 + 7/12, "feet"),
  31196. weight: math.unit(80, "kg"),
  31197. name: "Back",
  31198. image: {
  31199. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31200. extra: 3020/2886,
  31201. bottom: 30/3050
  31202. }
  31203. },
  31204. dick: {
  31205. height: math.unit(0.98, "feet"),
  31206. name: "Dick",
  31207. image: {
  31208. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31209. }
  31210. },
  31211. anatomy: {
  31212. height: math.unit(2.86, "feet"),
  31213. name: "Anatomy",
  31214. image: {
  31215. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31216. }
  31217. },
  31218. },
  31219. [
  31220. {
  31221. name: "Really Small",
  31222. height: math.unit(2, "inches")
  31223. },
  31224. {
  31225. name: "Micro",
  31226. height: math.unit(5.583, "inches")
  31227. },
  31228. {
  31229. name: "Normal",
  31230. height: math.unit(5 + 7/12, "feet"),
  31231. default: true
  31232. },
  31233. {
  31234. name: "Macro",
  31235. height: math.unit(67, "feet")
  31236. },
  31237. {
  31238. name: "Megamacro",
  31239. height: math.unit(134, "feet")
  31240. },
  31241. ]
  31242. ))
  31243. characterMakers.push(() => makeCharacter(
  31244. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31245. {
  31246. front: {
  31247. height: math.unit(9, "feet"),
  31248. weight: math.unit(120, "lb"),
  31249. name: "Front",
  31250. image: {
  31251. source: "./media/characters/sally/front.svg",
  31252. extra: 1506/1349,
  31253. bottom: 66/1572
  31254. }
  31255. },
  31256. },
  31257. [
  31258. {
  31259. name: "Normal",
  31260. height: math.unit(9, "feet"),
  31261. default: true
  31262. },
  31263. ]
  31264. ))
  31265. characterMakers.push(() => makeCharacter(
  31266. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31267. {
  31268. front: {
  31269. height: math.unit(8, "feet"),
  31270. weight: math.unit(900, "lb"),
  31271. name: "Front",
  31272. image: {
  31273. source: "./media/characters/owen/front.svg",
  31274. extra: 1761/1657,
  31275. bottom: 74/1835
  31276. }
  31277. },
  31278. side: {
  31279. height: math.unit(8, "feet"),
  31280. weight: math.unit(900, "lb"),
  31281. name: "Side",
  31282. image: {
  31283. source: "./media/characters/owen/side.svg",
  31284. extra: 1797/1734,
  31285. bottom: 30/1827
  31286. }
  31287. },
  31288. back: {
  31289. height: math.unit(8, "feet"),
  31290. weight: math.unit(900, "lb"),
  31291. name: "Back",
  31292. image: {
  31293. source: "./media/characters/owen/back.svg",
  31294. extra: 1796/1706,
  31295. bottom: 59/1855
  31296. }
  31297. },
  31298. maw: {
  31299. height: math.unit(1.76, "feet"),
  31300. name: "Maw",
  31301. image: {
  31302. source: "./media/characters/owen/maw.svg"
  31303. }
  31304. },
  31305. },
  31306. [
  31307. {
  31308. name: "Normal",
  31309. height: math.unit(8, "feet"),
  31310. default: true
  31311. },
  31312. ]
  31313. ))
  31314. characterMakers.push(() => makeCharacter(
  31315. { name: "Ryth", species: ["gremlin"], tags: ["anthro"] },
  31316. {
  31317. front: {
  31318. height: math.unit(4, "feet"),
  31319. weight: math.unit(400, "lb"),
  31320. name: "Front",
  31321. image: {
  31322. source: "./media/characters/ryth/front.svg",
  31323. extra: 876/691,
  31324. bottom: 25/901
  31325. }
  31326. },
  31327. },
  31328. [
  31329. {
  31330. name: "Normal",
  31331. height: math.unit(4, "feet"),
  31332. default: true
  31333. },
  31334. ]
  31335. ))
  31336. characterMakers.push(() => makeCharacter(
  31337. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31338. {
  31339. front: {
  31340. height: math.unit(7, "feet"),
  31341. weight: math.unit(180, "lb"),
  31342. name: "Front",
  31343. image: {
  31344. source: "./media/characters/necrolance/front.svg",
  31345. extra: 1062/947,
  31346. bottom: 41/1103
  31347. }
  31348. },
  31349. back: {
  31350. height: math.unit(7, "feet"),
  31351. weight: math.unit(180, "lb"),
  31352. name: "Back",
  31353. image: {
  31354. source: "./media/characters/necrolance/back.svg",
  31355. extra: 1045/984,
  31356. bottom: 14/1059
  31357. }
  31358. },
  31359. wing: {
  31360. height: math.unit(2.67, "feet"),
  31361. name: "Wing",
  31362. image: {
  31363. source: "./media/characters/necrolance/wing.svg"
  31364. }
  31365. },
  31366. },
  31367. [
  31368. {
  31369. name: "Normal",
  31370. height: math.unit(7, "feet"),
  31371. default: true
  31372. },
  31373. ]
  31374. ))
  31375. characterMakers.push(() => makeCharacter(
  31376. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31377. {
  31378. front: {
  31379. height: math.unit(76, "meters"),
  31380. weight: math.unit(30000, "tons"),
  31381. name: "Front",
  31382. image: {
  31383. source: "./media/characters/tyler/front.svg",
  31384. extra: 1640/1640,
  31385. bottom: 114/1754
  31386. }
  31387. },
  31388. },
  31389. [
  31390. {
  31391. name: "Macro",
  31392. height: math.unit(76, "meters"),
  31393. default: true
  31394. },
  31395. ]
  31396. ))
  31397. characterMakers.push(() => makeCharacter(
  31398. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31399. {
  31400. front: {
  31401. height: math.unit(4 + 11/12, "feet"),
  31402. weight: math.unit(132, "lb"),
  31403. name: "Front",
  31404. image: {
  31405. source: "./media/characters/icey/front.svg",
  31406. extra: 2750/2550,
  31407. bottom: 33/2783
  31408. }
  31409. },
  31410. back: {
  31411. height: math.unit(4 + 11/12, "feet"),
  31412. weight: math.unit(132, "lb"),
  31413. name: "Back",
  31414. image: {
  31415. source: "./media/characters/icey/back.svg",
  31416. extra: 2624/2481,
  31417. bottom: 35/2659
  31418. }
  31419. },
  31420. },
  31421. [
  31422. {
  31423. name: "Normal",
  31424. height: math.unit(4 + 11/12, "feet"),
  31425. default: true
  31426. },
  31427. ]
  31428. ))
  31429. characterMakers.push(() => makeCharacter(
  31430. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31431. {
  31432. front: {
  31433. height: math.unit(100, "feet"),
  31434. weight: math.unit(0, "lb"),
  31435. name: "Front",
  31436. image: {
  31437. source: "./media/characters/smile/front.svg",
  31438. extra: 2983/2912,
  31439. bottom: 162/3145
  31440. }
  31441. },
  31442. back: {
  31443. height: math.unit(100, "feet"),
  31444. weight: math.unit(0, "lb"),
  31445. name: "Back",
  31446. image: {
  31447. source: "./media/characters/smile/back.svg",
  31448. extra: 3143/3031,
  31449. bottom: 91/3234
  31450. }
  31451. },
  31452. head: {
  31453. height: math.unit(26.3, "feet"),
  31454. weight: math.unit(0, "lb"),
  31455. name: "Head",
  31456. image: {
  31457. source: "./media/characters/smile/head.svg"
  31458. }
  31459. },
  31460. collar: {
  31461. height: math.unit(5.3, "feet"),
  31462. weight: math.unit(0, "lb"),
  31463. name: "Collar",
  31464. image: {
  31465. source: "./media/characters/smile/collar.svg"
  31466. }
  31467. },
  31468. },
  31469. [
  31470. {
  31471. name: "Macro",
  31472. height: math.unit(100, "feet"),
  31473. default: true
  31474. },
  31475. ]
  31476. ))
  31477. characterMakers.push(() => makeCharacter(
  31478. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31479. {
  31480. dragon: {
  31481. height: math.unit(26, "feet"),
  31482. weight: math.unit(36, "tons"),
  31483. name: "Dragon",
  31484. image: {
  31485. source: "./media/characters/arimphae/dragon.svg",
  31486. extra: 1574/983,
  31487. bottom: 357/1931
  31488. }
  31489. },
  31490. drake: {
  31491. height: math.unit(9, "feet"),
  31492. weight: math.unit(1.5, "tons"),
  31493. name: "Drake",
  31494. image: {
  31495. source: "./media/characters/arimphae/drake.svg",
  31496. extra: 1120/925,
  31497. bottom: 435/1555
  31498. }
  31499. },
  31500. },
  31501. [
  31502. {
  31503. name: "Small",
  31504. height: math.unit(26*5/9, "feet")
  31505. },
  31506. {
  31507. name: "Normal",
  31508. height: math.unit(26, "feet"),
  31509. default: true
  31510. },
  31511. ]
  31512. ))
  31513. characterMakers.push(() => makeCharacter(
  31514. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31515. {
  31516. front: {
  31517. height: math.unit(8 + 9/12, "feet"),
  31518. name: "Front",
  31519. image: {
  31520. source: "./media/characters/xander/front.svg",
  31521. extra: 848/673,
  31522. bottom: 62/910
  31523. }
  31524. },
  31525. },
  31526. [
  31527. {
  31528. name: "Normal",
  31529. height: math.unit(8 + 9/12, "feet"),
  31530. default: true
  31531. },
  31532. {
  31533. name: "Gaze Grabber",
  31534. height: math.unit(13 + 8/12, "feet")
  31535. },
  31536. {
  31537. name: "Jaw Dropper",
  31538. height: math.unit(27, "feet")
  31539. },
  31540. {
  31541. name: "Show Stopper",
  31542. height: math.unit(136, "feet")
  31543. },
  31544. {
  31545. name: "Superstar",
  31546. height: math.unit(1.9e6, "miles")
  31547. },
  31548. ]
  31549. ))
  31550. characterMakers.push(() => makeCharacter(
  31551. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31552. {
  31553. side: {
  31554. height: math.unit(2100, "feet"),
  31555. name: "Side",
  31556. image: {
  31557. source: "./media/characters/osiris/side.svg",
  31558. extra: 1105/939,
  31559. bottom: 167/1272
  31560. }
  31561. },
  31562. },
  31563. [
  31564. {
  31565. name: "Macro",
  31566. height: math.unit(2100, "feet"),
  31567. default: true
  31568. },
  31569. ]
  31570. ))
  31571. characterMakers.push(() => makeCharacter(
  31572. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31573. {
  31574. front: {
  31575. height: math.unit(6 + 8/12, "feet"),
  31576. weight: math.unit(225, "lb"),
  31577. name: "Front",
  31578. image: {
  31579. source: "./media/characters/rhys-londe/front.svg",
  31580. extra: 2258/2141,
  31581. bottom: 188/2446
  31582. }
  31583. },
  31584. back: {
  31585. height: math.unit(6 + 8/12, "feet"),
  31586. weight: math.unit(225, "lb"),
  31587. name: "Back",
  31588. image: {
  31589. source: "./media/characters/rhys-londe/back.svg",
  31590. extra: 2237/2137,
  31591. bottom: 63/2300
  31592. }
  31593. },
  31594. frontNsfw: {
  31595. height: math.unit(6 + 8/12, "feet"),
  31596. weight: math.unit(225, "lb"),
  31597. name: "Front (NSFW)",
  31598. image: {
  31599. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31600. extra: 2258/2141,
  31601. bottom: 188/2446
  31602. }
  31603. },
  31604. backNsfw: {
  31605. height: math.unit(6 + 8/12, "feet"),
  31606. weight: math.unit(225, "lb"),
  31607. name: "Back (NSFW)",
  31608. image: {
  31609. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31610. extra: 2237/2137,
  31611. bottom: 63/2300
  31612. }
  31613. },
  31614. dick: {
  31615. height: math.unit(30, "inches"),
  31616. name: "Dick",
  31617. image: {
  31618. source: "./media/characters/rhys-londe/dick.svg"
  31619. }
  31620. },
  31621. maw: {
  31622. height: math.unit(1.6, "feet"),
  31623. name: "Maw",
  31624. image: {
  31625. source: "./media/characters/rhys-londe/maw.svg"
  31626. }
  31627. },
  31628. },
  31629. [
  31630. {
  31631. name: "Normal",
  31632. height: math.unit(6 + 8/12, "feet"),
  31633. default: true
  31634. },
  31635. ]
  31636. ))
  31637. characterMakers.push(() => makeCharacter(
  31638. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31639. {
  31640. front: {
  31641. height: math.unit(3 + 10/12, "feet"),
  31642. weight: math.unit(90, "lb"),
  31643. name: "Front",
  31644. image: {
  31645. source: "./media/characters/taivas-ensim/front.svg",
  31646. extra: 1327/1216,
  31647. bottom: 96/1423
  31648. }
  31649. },
  31650. back: {
  31651. height: math.unit(3 + 10/12, "feet"),
  31652. weight: math.unit(90, "lb"),
  31653. name: "Back",
  31654. image: {
  31655. source: "./media/characters/taivas-ensim/back.svg",
  31656. extra: 1355/1247,
  31657. bottom: 11/1366
  31658. }
  31659. },
  31660. frontNsfw: {
  31661. height: math.unit(3 + 10/12, "feet"),
  31662. weight: math.unit(90, "lb"),
  31663. name: "Front (NSFW)",
  31664. image: {
  31665. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31666. extra: 1327/1216,
  31667. bottom: 96/1423
  31668. }
  31669. },
  31670. backNsfw: {
  31671. height: math.unit(3 + 10/12, "feet"),
  31672. weight: math.unit(90, "lb"),
  31673. name: "Back (NSFW)",
  31674. image: {
  31675. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31676. extra: 1355/1247,
  31677. bottom: 11/1366
  31678. }
  31679. },
  31680. },
  31681. [
  31682. {
  31683. name: "Normal",
  31684. height: math.unit(3 + 10/12, "feet"),
  31685. default: true
  31686. },
  31687. ]
  31688. ))
  31689. characterMakers.push(() => makeCharacter(
  31690. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31691. {
  31692. front: {
  31693. height: math.unit(9 + 6/12, "feet"),
  31694. weight: math.unit(940, "lb"),
  31695. name: "Front",
  31696. image: {
  31697. source: "./media/characters/byliss/front.svg",
  31698. extra: 1327/1290,
  31699. bottom: 82/1409
  31700. }
  31701. },
  31702. back: {
  31703. height: math.unit(9 + 6/12, "feet"),
  31704. weight: math.unit(940, "lb"),
  31705. name: "Back",
  31706. image: {
  31707. source: "./media/characters/byliss/back.svg",
  31708. extra: 1376/1349,
  31709. bottom: 9/1385
  31710. }
  31711. },
  31712. frontNsfw: {
  31713. height: math.unit(9 + 6/12, "feet"),
  31714. weight: math.unit(940, "lb"),
  31715. name: "Front (NSFW)",
  31716. image: {
  31717. source: "./media/characters/byliss/front-nsfw.svg",
  31718. extra: 1327/1290,
  31719. bottom: 82/1409
  31720. }
  31721. },
  31722. backNsfw: {
  31723. height: math.unit(9 + 6/12, "feet"),
  31724. weight: math.unit(940, "lb"),
  31725. name: "Back (NSFW)",
  31726. image: {
  31727. source: "./media/characters/byliss/back-nsfw.svg",
  31728. extra: 1376/1349,
  31729. bottom: 9/1385
  31730. }
  31731. },
  31732. },
  31733. [
  31734. {
  31735. name: "Normal",
  31736. height: math.unit(9 + 6/12, "feet"),
  31737. default: true
  31738. },
  31739. ]
  31740. ))
  31741. characterMakers.push(() => makeCharacter(
  31742. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31743. {
  31744. front: {
  31745. height: math.unit(5 + 2/12, "feet"),
  31746. weight: math.unit(200, "lb"),
  31747. name: "Front",
  31748. image: {
  31749. source: "./media/characters/noraly/front.svg",
  31750. extra: 4985/4773,
  31751. bottom: 150/5135
  31752. }
  31753. },
  31754. full: {
  31755. height: math.unit(5 + 2/12, "feet"),
  31756. weight: math.unit(164, "lb"),
  31757. name: "Full",
  31758. image: {
  31759. source: "./media/characters/noraly/full.svg",
  31760. extra: 1114/1059,
  31761. bottom: 35/1149
  31762. }
  31763. },
  31764. fuller: {
  31765. height: math.unit(5 + 2/12, "feet"),
  31766. weight: math.unit(230, "lb"),
  31767. name: "Fuller",
  31768. image: {
  31769. source: "./media/characters/noraly/fuller.svg",
  31770. extra: 1114/1059,
  31771. bottom: 35/1149
  31772. }
  31773. },
  31774. fullest: {
  31775. height: math.unit(5 + 2/12, "feet"),
  31776. weight: math.unit(300, "lb"),
  31777. name: "Fullest",
  31778. image: {
  31779. source: "./media/characters/noraly/fullest.svg",
  31780. extra: 1114/1059,
  31781. bottom: 35/1149
  31782. }
  31783. },
  31784. },
  31785. [
  31786. {
  31787. name: "Normal",
  31788. height: math.unit(5 + 2/12, "feet"),
  31789. default: true
  31790. },
  31791. ]
  31792. ))
  31793. characterMakers.push(() => makeCharacter(
  31794. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31795. {
  31796. front: {
  31797. height: math.unit(5 + 2/12, "feet"),
  31798. weight: math.unit(210, "lb"),
  31799. name: "Front",
  31800. image: {
  31801. source: "./media/characters/pera/front.svg",
  31802. extra: 1560/1531,
  31803. bottom: 165/1725
  31804. }
  31805. },
  31806. back: {
  31807. height: math.unit(5 + 2/12, "feet"),
  31808. weight: math.unit(210, "lb"),
  31809. name: "Back",
  31810. image: {
  31811. source: "./media/characters/pera/back.svg",
  31812. extra: 1523/1493,
  31813. bottom: 152/1675
  31814. }
  31815. },
  31816. dick: {
  31817. height: math.unit(2.4, "feet"),
  31818. name: "Dick",
  31819. image: {
  31820. source: "./media/characters/pera/dick.svg"
  31821. }
  31822. },
  31823. },
  31824. [
  31825. {
  31826. name: "Normal",
  31827. height: math.unit(5 + 2/12, "feet"),
  31828. default: true
  31829. },
  31830. ]
  31831. ))
  31832. characterMakers.push(() => makeCharacter(
  31833. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31834. {
  31835. front: {
  31836. height: math.unit(12, "feet"),
  31837. weight: math.unit(3200, "lb"),
  31838. name: "Front",
  31839. image: {
  31840. source: "./media/characters/julian/front.svg",
  31841. extra: 2962/2701,
  31842. bottom: 184/3146
  31843. }
  31844. },
  31845. maw: {
  31846. height: math.unit(5.35, "feet"),
  31847. name: "Maw",
  31848. image: {
  31849. source: "./media/characters/julian/maw.svg"
  31850. }
  31851. },
  31852. paw: {
  31853. height: math.unit(3.07, "feet"),
  31854. name: "Paw",
  31855. image: {
  31856. source: "./media/characters/julian/paw.svg"
  31857. }
  31858. },
  31859. },
  31860. [
  31861. {
  31862. name: "Default",
  31863. height: math.unit(12, "feet"),
  31864. default: true
  31865. },
  31866. {
  31867. name: "Big",
  31868. height: math.unit(50, "feet")
  31869. },
  31870. {
  31871. name: "Really Big",
  31872. height: math.unit(1, "mile")
  31873. },
  31874. {
  31875. name: "Extremely Big",
  31876. height: math.unit(100, "miles")
  31877. },
  31878. {
  31879. name: "Planet Hugger",
  31880. height: math.unit(200, "megameters")
  31881. },
  31882. {
  31883. name: "Unreasonably Big",
  31884. height: math.unit(1e300, "meters")
  31885. },
  31886. ]
  31887. ))
  31888. characterMakers.push(() => makeCharacter(
  31889. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  31890. {
  31891. solgooleo: {
  31892. height: math.unit(4, "meters"),
  31893. weight: math.unit(6000*1.5, "kg"),
  31894. volume: math.unit(6000, "liters"),
  31895. name: "Solgooleo",
  31896. image: {
  31897. source: "./media/characters/pi/solgooleo.svg",
  31898. extra: 388/331,
  31899. bottom: 29/417
  31900. }
  31901. },
  31902. },
  31903. [
  31904. {
  31905. name: "Normal",
  31906. height: math.unit(4, "meters"),
  31907. default: true
  31908. },
  31909. ]
  31910. ))
  31911. characterMakers.push(() => makeCharacter(
  31912. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  31913. {
  31914. front: {
  31915. height: math.unit(8 + 2/12, "feet"),
  31916. weight: math.unit(4, "tons"),
  31917. name: "Front",
  31918. image: {
  31919. source: "./media/characters/shaun/front.svg",
  31920. extra: 1550/1505,
  31921. bottom: 353/1903
  31922. }
  31923. },
  31924. },
  31925. [
  31926. {
  31927. name: "Lorg",
  31928. height: math.unit(8 + 2/12, "feet"),
  31929. default: true
  31930. },
  31931. ]
  31932. ))
  31933. characterMakers.push(() => makeCharacter(
  31934. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  31935. {
  31936. front: {
  31937. height: math.unit(7, "feet"),
  31938. name: "Front",
  31939. image: {
  31940. source: "./media/characters/sini/front.svg",
  31941. extra: 726/678,
  31942. bottom: 35/761
  31943. }
  31944. },
  31945. back: {
  31946. height: math.unit(7, "feet"),
  31947. name: "Back",
  31948. image: {
  31949. source: "./media/characters/sini/back.svg",
  31950. extra: 743/701,
  31951. bottom: 12/755
  31952. }
  31953. },
  31954. mawAnthro: {
  31955. height: math.unit(2.14, "feet"),
  31956. name: "Maw (Anthro)",
  31957. image: {
  31958. source: "./media/characters/sini/maw-anthro.svg"
  31959. }
  31960. },
  31961. dick: {
  31962. height: math.unit(1.45, "feet"),
  31963. name: "Dick (Anthro)",
  31964. image: {
  31965. source: "./media/characters/sini/dick-anthro.svg"
  31966. }
  31967. },
  31968. feral: {
  31969. height: math.unit(13, "feet"),
  31970. name: "Feral",
  31971. image: {
  31972. source: "./media/characters/sini/feral.svg",
  31973. extra: 814/605,
  31974. bottom: 11/825
  31975. }
  31976. },
  31977. mawFeral: {
  31978. height: math.unit(4.6, "feet"),
  31979. name: "Maw-feral",
  31980. image: {
  31981. source: "./media/characters/sini/maw-feral.svg"
  31982. }
  31983. },
  31984. footFeral: {
  31985. height: math.unit(4.2, "feet"),
  31986. name: "Foot-feral",
  31987. image: {
  31988. source: "./media/characters/sini/foot-feral.svg"
  31989. }
  31990. },
  31991. },
  31992. [
  31993. {
  31994. name: "Normal",
  31995. height: math.unit(7, "feet"),
  31996. default: true
  31997. },
  31998. ]
  31999. ))
  32000. characterMakers.push(() => makeCharacter(
  32001. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32002. {
  32003. side: {
  32004. height: math.unit(13, "meters"),
  32005. weight: math.unit(9072, "kg"),
  32006. name: "Side",
  32007. image: {
  32008. source: "./media/characters/raylldo/side.svg",
  32009. extra: 403/344,
  32010. bottom: 42/445
  32011. }
  32012. },
  32013. leaping: {
  32014. height: math.unit(12.3, "meters"),
  32015. weight: math.unit(9072, "kg"),
  32016. name: "Leaping",
  32017. image: {
  32018. source: "./media/characters/raylldo/leaping.svg",
  32019. extra: 470/249,
  32020. bottom: 13/483
  32021. }
  32022. },
  32023. flying: {
  32024. height: math.unit(18, "meters"),
  32025. weight: math.unit(9072, "kg"),
  32026. name: "Flying",
  32027. image: {
  32028. source: "./media/characters/raylldo/flying.svg"
  32029. }
  32030. },
  32031. head: {
  32032. height: math.unit(5.85, "meters"),
  32033. name: "Head",
  32034. image: {
  32035. source: "./media/characters/raylldo/head.svg"
  32036. }
  32037. },
  32038. maw: {
  32039. height: math.unit(5.32, "meters"),
  32040. name: "Maw",
  32041. image: {
  32042. source: "./media/characters/raylldo/maw.svg"
  32043. }
  32044. },
  32045. eye: {
  32046. height: math.unit(0.54, "meters"),
  32047. name: "Eye",
  32048. image: {
  32049. source: "./media/characters/raylldo/eye.svg"
  32050. }
  32051. },
  32052. },
  32053. [
  32054. {
  32055. name: "Normal",
  32056. height: math.unit(13, "meters"),
  32057. default: true
  32058. },
  32059. ]
  32060. ))
  32061. characterMakers.push(() => makeCharacter(
  32062. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32063. {
  32064. anthroFront: {
  32065. height: math.unit(9, "feet"),
  32066. weight: math.unit(600, "lb"),
  32067. name: "Anthro (Front)",
  32068. image: {
  32069. source: "./media/characters/glint/anthro-front.svg",
  32070. extra: 1097/1018,
  32071. bottom: 28/1125
  32072. }
  32073. },
  32074. anthroBack: {
  32075. height: math.unit(9, "feet"),
  32076. weight: math.unit(600, "lb"),
  32077. name: "Anthro (Back)",
  32078. image: {
  32079. source: "./media/characters/glint/anthro-back.svg",
  32080. extra: 1154/997,
  32081. bottom: 36/1190
  32082. }
  32083. },
  32084. feral: {
  32085. height: math.unit(11, "feet"),
  32086. weight: math.unit(50000, "lb"),
  32087. name: "Feral",
  32088. image: {
  32089. source: "./media/characters/glint/feral.svg",
  32090. extra: 3035/1585,
  32091. bottom: 1169/4204
  32092. }
  32093. },
  32094. dickAnthro: {
  32095. height: math.unit(0.7, "meters"),
  32096. name: "Dick (Anthro)",
  32097. image: {
  32098. source: "./media/characters/glint/dick-anthro.svg"
  32099. }
  32100. },
  32101. dickFeral: {
  32102. height: math.unit(2.65, "meters"),
  32103. name: "Dick (Feral)",
  32104. image: {
  32105. source: "./media/characters/glint/dick-feral.svg"
  32106. }
  32107. },
  32108. slitHidden: {
  32109. height: math.unit(5.85, "meters"),
  32110. name: "Slit (Hidden)",
  32111. image: {
  32112. source: "./media/characters/glint/slit-hidden.svg"
  32113. }
  32114. },
  32115. slitErect: {
  32116. height: math.unit(5.85, "meters"),
  32117. name: "Slit (Erect)",
  32118. image: {
  32119. source: "./media/characters/glint/slit-erect.svg"
  32120. }
  32121. },
  32122. mawAnthro: {
  32123. height: math.unit(0.63, "meters"),
  32124. name: "Maw (Anthro)",
  32125. image: {
  32126. source: "./media/characters/glint/maw.svg"
  32127. }
  32128. },
  32129. mawFeral: {
  32130. height: math.unit(2.89, "meters"),
  32131. name: "Maw (Feral)",
  32132. image: {
  32133. source: "./media/characters/glint/maw.svg"
  32134. }
  32135. },
  32136. },
  32137. [
  32138. {
  32139. name: "Normal",
  32140. height: math.unit(9, "feet"),
  32141. default: true
  32142. },
  32143. ]
  32144. ))
  32145. characterMakers.push(() => makeCharacter(
  32146. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32147. {
  32148. side: {
  32149. height: math.unit(15, "feet"),
  32150. weight: math.unit(5000, "kg"),
  32151. name: "Side",
  32152. image: {
  32153. source: "./media/characters/kairne/side.svg",
  32154. extra: 979/811,
  32155. bottom: 13/992
  32156. }
  32157. },
  32158. front: {
  32159. height: math.unit(15, "feet"),
  32160. weight: math.unit(5000, "kg"),
  32161. name: "Front",
  32162. image: {
  32163. source: "./media/characters/kairne/front.svg",
  32164. extra: 908/814,
  32165. bottom: 26/934
  32166. }
  32167. },
  32168. sideNsfw: {
  32169. height: math.unit(15, "feet"),
  32170. weight: math.unit(5000, "kg"),
  32171. name: "Side (NSFW)",
  32172. image: {
  32173. source: "./media/characters/kairne/side-nsfw.svg",
  32174. extra: 979/811,
  32175. bottom: 13/992
  32176. }
  32177. },
  32178. frontNsfw: {
  32179. height: math.unit(15, "feet"),
  32180. weight: math.unit(5000, "kg"),
  32181. name: "Front (NSFW)",
  32182. image: {
  32183. source: "./media/characters/kairne/front-nsfw.svg",
  32184. extra: 908/814,
  32185. bottom: 26/934
  32186. }
  32187. },
  32188. dickCaged: {
  32189. height: math.unit(0.65, "meters"),
  32190. name: "Dick-caged",
  32191. image: {
  32192. source: "./media/characters/kairne/dick-caged.svg"
  32193. }
  32194. },
  32195. dick: {
  32196. height: math.unit(0.79, "meters"),
  32197. name: "Dick",
  32198. image: {
  32199. source: "./media/characters/kairne/dick.svg"
  32200. }
  32201. },
  32202. genitals: {
  32203. height: math.unit(1.29, "meters"),
  32204. name: "Genitals",
  32205. image: {
  32206. source: "./media/characters/kairne/genitals.svg"
  32207. }
  32208. },
  32209. maw: {
  32210. height: math.unit(1.73, "meters"),
  32211. name: "Maw",
  32212. image: {
  32213. source: "./media/characters/kairne/maw.svg"
  32214. }
  32215. },
  32216. },
  32217. [
  32218. {
  32219. name: "Normal",
  32220. height: math.unit(15, "feet"),
  32221. default: true
  32222. },
  32223. ]
  32224. ))
  32225. characterMakers.push(() => makeCharacter(
  32226. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32227. {
  32228. front: {
  32229. height: math.unit(5 + 8/12, "feet"),
  32230. weight: math.unit(139, "lb"),
  32231. name: "Front",
  32232. image: {
  32233. source: "./media/characters/biscuit-jackal/front.svg",
  32234. extra: 2106/1961,
  32235. bottom: 58/2164
  32236. }
  32237. },
  32238. back: {
  32239. height: math.unit(5 + 8/12, "feet"),
  32240. weight: math.unit(139, "lb"),
  32241. name: "Back",
  32242. image: {
  32243. source: "./media/characters/biscuit-jackal/back.svg",
  32244. extra: 2132/1976,
  32245. bottom: 57/2189
  32246. }
  32247. },
  32248. werejackal: {
  32249. height: math.unit(6 + 3/12, "feet"),
  32250. weight: math.unit(188, "lb"),
  32251. name: "Werejackal",
  32252. image: {
  32253. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32254. extra: 2373/2178,
  32255. bottom: 53/2426
  32256. }
  32257. },
  32258. },
  32259. [
  32260. {
  32261. name: "Normal",
  32262. height: math.unit(5 + 8/12, "feet"),
  32263. default: true
  32264. },
  32265. ]
  32266. ))
  32267. characterMakers.push(() => makeCharacter(
  32268. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32269. {
  32270. front: {
  32271. height: math.unit(140, "cm"),
  32272. weight: math.unit(45, "kg"),
  32273. name: "Front",
  32274. image: {
  32275. source: "./media/characters/tayra-white/front.svg",
  32276. extra: 2229/2192,
  32277. bottom: 75/2304
  32278. }
  32279. },
  32280. },
  32281. [
  32282. {
  32283. name: "Normal",
  32284. height: math.unit(140, "cm"),
  32285. default: true
  32286. },
  32287. ]
  32288. ))
  32289. characterMakers.push(() => makeCharacter(
  32290. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32291. {
  32292. front: {
  32293. height: math.unit(4 + 5/12, "feet"),
  32294. name: "Front",
  32295. image: {
  32296. source: "./media/characters/scoop/front.svg",
  32297. extra: 1257/1136,
  32298. bottom: 69/1326
  32299. }
  32300. },
  32301. back: {
  32302. height: math.unit(4 + 5/12, "feet"),
  32303. name: "Back",
  32304. image: {
  32305. source: "./media/characters/scoop/back.svg",
  32306. extra: 1321/1152,
  32307. bottom: 32/1353
  32308. }
  32309. },
  32310. maw: {
  32311. height: math.unit(0.68, "feet"),
  32312. name: "Maw",
  32313. image: {
  32314. source: "./media/characters/scoop/maw.svg"
  32315. }
  32316. },
  32317. },
  32318. [
  32319. {
  32320. name: "Really Small",
  32321. height: math.unit(1, "mm")
  32322. },
  32323. {
  32324. name: "Micro",
  32325. height: math.unit(1, "inch")
  32326. },
  32327. {
  32328. name: "Normal",
  32329. height: math.unit(4 + 5/12, "feet"),
  32330. default: true
  32331. },
  32332. {
  32333. name: "Macro",
  32334. height: math.unit(200, "feet")
  32335. },
  32336. {
  32337. name: "Megamacro",
  32338. height: math.unit(3240, "feet")
  32339. },
  32340. {
  32341. name: "Teramacro",
  32342. height: math.unit(2500, "miles")
  32343. },
  32344. ]
  32345. ))
  32346. characterMakers.push(() => makeCharacter(
  32347. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32348. {
  32349. front: {
  32350. height: math.unit(15 + 7/12, "feet"),
  32351. name: "Front",
  32352. image: {
  32353. source: "./media/characters/saphinara/front.svg",
  32354. extra: 604/546,
  32355. bottom: 19/623
  32356. }
  32357. },
  32358. side: {
  32359. height: math.unit(15 + 7/12, "feet"),
  32360. name: "Side",
  32361. image: {
  32362. source: "./media/characters/saphinara/side.svg",
  32363. extra: 605/547,
  32364. bottom: 6/611
  32365. }
  32366. },
  32367. back: {
  32368. height: math.unit(15 + 7/12, "feet"),
  32369. name: "Back",
  32370. image: {
  32371. source: "./media/characters/saphinara/back.svg",
  32372. extra: 591/531,
  32373. bottom: 13/604
  32374. }
  32375. },
  32376. frontTail: {
  32377. height: math.unit(15 + 7/12, "feet"),
  32378. name: "Front (Full Tail)",
  32379. image: {
  32380. source: "./media/characters/saphinara/front-tail.svg",
  32381. extra: 748/547,
  32382. bottom: 66/814
  32383. }
  32384. },
  32385. },
  32386. [
  32387. {
  32388. name: "Normal",
  32389. height: math.unit(15 + 7/12, "feet"),
  32390. default: true
  32391. },
  32392. {
  32393. name: "Angry",
  32394. height: math.unit(30 + 6/12, "feet")
  32395. },
  32396. {
  32397. name: "Enraged",
  32398. height: math.unit(102 + 1/12, "feet")
  32399. },
  32400. ]
  32401. ))
  32402. characterMakers.push(() => makeCharacter(
  32403. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32404. {
  32405. front: {
  32406. height: math.unit(6 + 8/12, "feet"),
  32407. weight: math.unit(300, "lb"),
  32408. name: "Front",
  32409. image: {
  32410. source: "./media/characters/jrain/front.svg",
  32411. extra: 3039/2865,
  32412. bottom: 399/3438
  32413. }
  32414. },
  32415. back: {
  32416. height: math.unit(6 + 8/12, "feet"),
  32417. weight: math.unit(300, "lb"),
  32418. name: "Back",
  32419. image: {
  32420. source: "./media/characters/jrain/back.svg",
  32421. extra: 3089/2938,
  32422. bottom: 172/3261
  32423. }
  32424. },
  32425. head: {
  32426. height: math.unit(2.14, "feet"),
  32427. name: "Head",
  32428. image: {
  32429. source: "./media/characters/jrain/head.svg"
  32430. }
  32431. },
  32432. maw: {
  32433. height: math.unit(1.77, "feet"),
  32434. name: "Maw",
  32435. image: {
  32436. source: "./media/characters/jrain/maw.svg"
  32437. }
  32438. },
  32439. leftHand: {
  32440. height: math.unit(1.1, "feet"),
  32441. name: "Left Hand",
  32442. image: {
  32443. source: "./media/characters/jrain/left-hand.svg"
  32444. }
  32445. },
  32446. rightHand: {
  32447. height: math.unit(1.1, "feet"),
  32448. name: "Right Hand",
  32449. image: {
  32450. source: "./media/characters/jrain/right-hand.svg"
  32451. }
  32452. },
  32453. eye: {
  32454. height: math.unit(0.35, "feet"),
  32455. name: "Eye",
  32456. image: {
  32457. source: "./media/characters/jrain/eye.svg"
  32458. }
  32459. },
  32460. },
  32461. [
  32462. {
  32463. name: "Normal",
  32464. height: math.unit(6 + 8/12, "feet"),
  32465. default: true
  32466. },
  32467. {
  32468. name: "Casually Large",
  32469. height: math.unit(25, "feet")
  32470. },
  32471. {
  32472. name: "Giant",
  32473. height: math.unit(100, "feet")
  32474. },
  32475. {
  32476. name: "Kaiju",
  32477. height: math.unit(300, "feet")
  32478. },
  32479. ]
  32480. ))
  32481. characterMakers.push(() => makeCharacter(
  32482. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32483. {
  32484. dragon: {
  32485. height: math.unit(5, "meters"),
  32486. name: "Dragon",
  32487. image: {
  32488. source: "./media/characters/sabrina/dragon.svg",
  32489. extra: 3670 / 2365,
  32490. bottom: 333 / 4003
  32491. }
  32492. },
  32493. gryphon: {
  32494. height: math.unit(3, "meters"),
  32495. name: "Gryphon",
  32496. image: {
  32497. source: "./media/characters/sabrina/gryphon.svg",
  32498. extra: 1576 / 945,
  32499. bottom: 71 / 1647
  32500. }
  32501. },
  32502. snake: {
  32503. height: math.unit(12, "meters"),
  32504. name: "Snake",
  32505. image: {
  32506. source: "./media/characters/sabrina/snake.svg",
  32507. extra: 1758 / 1320,
  32508. bottom: 186 / 1944
  32509. }
  32510. },
  32511. collar: {
  32512. height: math.unit(1.86, "meters"),
  32513. name: "Collar",
  32514. image: {
  32515. source: "./media/characters/sabrina/collar.svg"
  32516. }
  32517. },
  32518. eye: {
  32519. height: math.unit(0.53, "meters"),
  32520. name: "Eye",
  32521. image: {
  32522. source: "./media/characters/sabrina/eye.svg"
  32523. }
  32524. },
  32525. foot: {
  32526. height: math.unit(1.86, "meters"),
  32527. name: "Foot",
  32528. image: {
  32529. source: "./media/characters/sabrina/foot.svg"
  32530. }
  32531. },
  32532. hand: {
  32533. height: math.unit(1.32, "meters"),
  32534. name: "Hand",
  32535. image: {
  32536. source: "./media/characters/sabrina/hand.svg"
  32537. }
  32538. },
  32539. head: {
  32540. height: math.unit(2.44, "meters"),
  32541. name: "Head",
  32542. image: {
  32543. source: "./media/characters/sabrina/head.svg"
  32544. }
  32545. },
  32546. headAngry: {
  32547. height: math.unit(2.44, "meters"),
  32548. name: "Head (Angry))",
  32549. image: {
  32550. source: "./media/characters/sabrina/head-angry.svg"
  32551. }
  32552. },
  32553. maw: {
  32554. height: math.unit(1.65, "meters"),
  32555. name: "Maw",
  32556. image: {
  32557. source: "./media/characters/sabrina/maw.svg"
  32558. }
  32559. },
  32560. spikes: {
  32561. height: math.unit(1.69, "meters"),
  32562. name: "Spikes",
  32563. image: {
  32564. source: "./media/characters/sabrina/spikes.svg"
  32565. }
  32566. },
  32567. stomach: {
  32568. height: math.unit(1.15, "meters"),
  32569. name: "Stomach",
  32570. image: {
  32571. source: "./media/characters/sabrina/stomach.svg"
  32572. }
  32573. },
  32574. tongue: {
  32575. height: math.unit(1.27, "meters"),
  32576. name: "Tongue",
  32577. image: {
  32578. source: "./media/characters/sabrina/tongue.svg"
  32579. }
  32580. },
  32581. wingDorsal: {
  32582. height: math.unit(4.85, "meters"),
  32583. name: "Wing (Dorsal)",
  32584. image: {
  32585. source: "./media/characters/sabrina/wing-dorsal.svg"
  32586. }
  32587. },
  32588. wingVentral: {
  32589. height: math.unit(4.85, "meters"),
  32590. name: "Wing (Ventral)",
  32591. image: {
  32592. source: "./media/characters/sabrina/wing-ventral.svg"
  32593. }
  32594. },
  32595. },
  32596. [
  32597. {
  32598. name: "Normal",
  32599. height: math.unit(5, "meters"),
  32600. default: true
  32601. },
  32602. ]
  32603. ))
  32604. characterMakers.push(() => makeCharacter(
  32605. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32606. {
  32607. frontMaid: {
  32608. height: math.unit(5 + 5/12, "feet"),
  32609. weight: math.unit(130, "lb"),
  32610. name: "Front (Maid)",
  32611. image: {
  32612. source: "./media/characters/midnight-tales/front-maid.svg",
  32613. extra: 489/454,
  32614. bottom: 61/550
  32615. }
  32616. },
  32617. frontFormal: {
  32618. height: math.unit(5 + 5/12, "feet"),
  32619. weight: math.unit(130, "lb"),
  32620. name: "Front (Formal)",
  32621. image: {
  32622. source: "./media/characters/midnight-tales/front-formal.svg",
  32623. extra: 489/454,
  32624. bottom: 61/550
  32625. }
  32626. },
  32627. back: {
  32628. height: math.unit(5 + 5/12, "feet"),
  32629. weight: math.unit(130, "lb"),
  32630. name: "Back",
  32631. image: {
  32632. source: "./media/characters/midnight-tales/back.svg",
  32633. extra: 498/456,
  32634. bottom: 33/531
  32635. }
  32636. },
  32637. frontBeast: {
  32638. height: math.unit(40, "feet"),
  32639. weight: math.unit(64000, "lb"),
  32640. name: "Front (Beast)",
  32641. image: {
  32642. source: "./media/characters/midnight-tales/front-beast.svg",
  32643. extra: 927/860,
  32644. bottom: 53/980
  32645. }
  32646. },
  32647. backBeast: {
  32648. height: math.unit(40, "feet"),
  32649. weight: math.unit(64000, "lb"),
  32650. name: "Back (Beast)",
  32651. image: {
  32652. source: "./media/characters/midnight-tales/back-beast.svg",
  32653. extra: 929/855,
  32654. bottom: 16/945
  32655. }
  32656. },
  32657. footBeast: {
  32658. height: math.unit(6.7, "feet"),
  32659. name: "Foot (Beast)",
  32660. image: {
  32661. source: "./media/characters/midnight-tales/foot-beast.svg"
  32662. }
  32663. },
  32664. headBeast: {
  32665. height: math.unit(8, "feet"),
  32666. name: "Head (Beast)",
  32667. image: {
  32668. source: "./media/characters/midnight-tales/head-beast.svg"
  32669. }
  32670. },
  32671. },
  32672. [
  32673. {
  32674. name: "Normal",
  32675. height: math.unit(5 + 5 / 12, "feet"),
  32676. default: true
  32677. },
  32678. {
  32679. name: "Macro",
  32680. height: math.unit(25, "feet")
  32681. },
  32682. ]
  32683. ))
  32684. characterMakers.push(() => makeCharacter(
  32685. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32686. {
  32687. front: {
  32688. height: math.unit(5 + 10/12, "feet"),
  32689. name: "Front",
  32690. image: {
  32691. source: "./media/characters/argon/front.svg",
  32692. extra: 2009/1935,
  32693. bottom: 118/2127
  32694. }
  32695. },
  32696. back: {
  32697. height: math.unit(5 + 10/12, "feet"),
  32698. name: "Back",
  32699. image: {
  32700. source: "./media/characters/argon/back.svg",
  32701. extra: 2047/1992,
  32702. bottom: 20/2067
  32703. }
  32704. },
  32705. frontDressed: {
  32706. height: math.unit(5 + 10/12, "feet"),
  32707. name: "Front (Dressed)",
  32708. image: {
  32709. source: "./media/characters/argon/front-dressed.svg",
  32710. extra: 2009/1935,
  32711. bottom: 118/2127
  32712. }
  32713. },
  32714. },
  32715. [
  32716. {
  32717. name: "Normal",
  32718. height: math.unit(5 + 10/12, "feet"),
  32719. default: true
  32720. },
  32721. ]
  32722. ))
  32723. characterMakers.push(() => makeCharacter(
  32724. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32725. {
  32726. front: {
  32727. height: math.unit(8 + 6/12, "feet"),
  32728. weight: math.unit(1150, "lb"),
  32729. name: "Front",
  32730. image: {
  32731. source: "./media/characters/kichi/front.svg",
  32732. extra: 1267/1164,
  32733. bottom: 61/1328
  32734. }
  32735. },
  32736. back: {
  32737. height: math.unit(8 + 6/12, "feet"),
  32738. weight: math.unit(1150, "lb"),
  32739. name: "Back",
  32740. image: {
  32741. source: "./media/characters/kichi/back.svg",
  32742. extra: 1273/1166,
  32743. bottom: 33/1306
  32744. }
  32745. },
  32746. },
  32747. [
  32748. {
  32749. name: "Normal",
  32750. height: math.unit(8 + 6/12, "feet"),
  32751. default: true
  32752. },
  32753. ]
  32754. ))
  32755. characterMakers.push(() => makeCharacter(
  32756. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32757. {
  32758. front: {
  32759. height: math.unit(6, "feet"),
  32760. weight: math.unit(210, "lb"),
  32761. name: "Front",
  32762. image: {
  32763. source: "./media/characters/manetel-greyscale/front.svg",
  32764. extra: 350/312,
  32765. bottom: 8/358
  32766. }
  32767. },
  32768. },
  32769. [
  32770. {
  32771. name: "Micro",
  32772. height: math.unit(2, "inches")
  32773. },
  32774. {
  32775. name: "Normal",
  32776. height: math.unit(6, "feet"),
  32777. default: true
  32778. },
  32779. {
  32780. name: "Minimacro",
  32781. height: math.unit(17, "feet")
  32782. },
  32783. {
  32784. name: "Macro",
  32785. height: math.unit(117, "feet")
  32786. },
  32787. ]
  32788. ))
  32789. characterMakers.push(() => makeCharacter(
  32790. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32791. {
  32792. side: {
  32793. height: math.unit(5 + 1/12, "feet"),
  32794. weight: math.unit(418, "lb"),
  32795. name: "Side",
  32796. image: {
  32797. source: "./media/characters/softpurr/side.svg",
  32798. extra: 1993/1945,
  32799. bottom: 134/2127
  32800. }
  32801. },
  32802. front: {
  32803. height: math.unit(5 + 1/12, "feet"),
  32804. weight: math.unit(418, "lb"),
  32805. name: "Front",
  32806. image: {
  32807. source: "./media/characters/softpurr/front.svg",
  32808. extra: 1950/1856,
  32809. bottom: 174/2124
  32810. }
  32811. },
  32812. paw: {
  32813. height: math.unit(1, "feet"),
  32814. name: "Paw",
  32815. image: {
  32816. source: "./media/characters/softpurr/paw.svg"
  32817. }
  32818. },
  32819. },
  32820. [
  32821. {
  32822. name: "Normal",
  32823. height: math.unit(5 + 1/12, "feet"),
  32824. default: true
  32825. },
  32826. ]
  32827. ))
  32828. characterMakers.push(() => makeCharacter(
  32829. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32830. {
  32831. front: {
  32832. height: math.unit(260, "meters"),
  32833. name: "Front",
  32834. image: {
  32835. source: "./media/characters/anahita/front.svg",
  32836. extra: 665/635,
  32837. bottom: 89/754
  32838. }
  32839. },
  32840. },
  32841. [
  32842. {
  32843. name: "Macro",
  32844. height: math.unit(260, "meters"),
  32845. default: true
  32846. },
  32847. ]
  32848. ))
  32849. characterMakers.push(() => makeCharacter(
  32850. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32851. {
  32852. front: {
  32853. height: math.unit(4 + 10/12, "feet"),
  32854. weight: math.unit(160, "lb"),
  32855. name: "Front",
  32856. image: {
  32857. source: "./media/characters/chip-mouse/front.svg",
  32858. extra: 3528/3408,
  32859. bottom: 0/3528
  32860. }
  32861. },
  32862. frontNsfw: {
  32863. height: math.unit(4 + 10/12, "feet"),
  32864. weight: math.unit(160, "lb"),
  32865. name: "Front (NSFW)",
  32866. image: {
  32867. source: "./media/characters/chip-mouse/front-nsfw.svg",
  32868. extra: 3528/3408,
  32869. bottom: 0/3528
  32870. }
  32871. },
  32872. },
  32873. [
  32874. {
  32875. name: "Normal",
  32876. height: math.unit(4 + 10/12, "feet"),
  32877. default: true
  32878. },
  32879. ]
  32880. ))
  32881. characterMakers.push(() => makeCharacter(
  32882. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  32883. {
  32884. side: {
  32885. height: math.unit(10, "feet"),
  32886. weight: math.unit(14000, "lb"),
  32887. name: "Side",
  32888. image: {
  32889. source: "./media/characters/kremm/side.svg",
  32890. extra: 1390/1053,
  32891. bottom: 90/1480
  32892. }
  32893. },
  32894. gut: {
  32895. height: math.unit(5.8, "feet"),
  32896. name: "Gut",
  32897. image: {
  32898. source: "./media/characters/kremm/gut.svg"
  32899. }
  32900. },
  32901. ass: {
  32902. height: math.unit(6.1, "feet"),
  32903. name: "Ass",
  32904. image: {
  32905. source: "./media/characters/kremm/ass.svg"
  32906. }
  32907. },
  32908. jaws: {
  32909. height: math.unit(2.2, "feet"),
  32910. name: "Jaws",
  32911. image: {
  32912. source: "./media/characters/kremm/jaws.svg"
  32913. }
  32914. },
  32915. dick: {
  32916. height: math.unit(4.26, "feet"),
  32917. name: "Dick",
  32918. image: {
  32919. source: "./media/characters/kremm/dick.svg"
  32920. }
  32921. },
  32922. },
  32923. [
  32924. {
  32925. name: "Normal",
  32926. height: math.unit(10, "feet"),
  32927. default: true
  32928. },
  32929. ]
  32930. ))
  32931. characterMakers.push(() => makeCharacter(
  32932. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  32933. {
  32934. front: {
  32935. height: math.unit(30, "stories"),
  32936. name: "Front",
  32937. image: {
  32938. source: "./media/characters/kai/front.svg",
  32939. extra: 1892/1718,
  32940. bottom: 162/2054
  32941. }
  32942. },
  32943. },
  32944. [
  32945. {
  32946. name: "Macro",
  32947. height: math.unit(30, "stories"),
  32948. default: true
  32949. },
  32950. ]
  32951. ))
  32952. characterMakers.push(() => makeCharacter(
  32953. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  32954. {
  32955. front: {
  32956. height: math.unit(6 + 4/12, "feet"),
  32957. weight: math.unit(145, "lb"),
  32958. name: "Front",
  32959. image: {
  32960. source: "./media/characters/sykes/front.svg",
  32961. extra: 1321 / 1187,
  32962. bottom: 66 / 1387
  32963. }
  32964. },
  32965. back: {
  32966. height: math.unit(6 + 4/12, "feet"),
  32967. weight: math.unit(145, "lb"),
  32968. name: "Back",
  32969. image: {
  32970. source: "./media/characters/sykes/back.svg",
  32971. extra: 1326/1181,
  32972. bottom: 31/1357
  32973. }
  32974. },
  32975. handBack: {
  32976. height: math.unit(0.9, "feet"),
  32977. name: "Hand (Back)",
  32978. image: {
  32979. source: "./media/characters/sykes/hand-back.svg"
  32980. }
  32981. },
  32982. handFront: {
  32983. height: math.unit(0.839, "feet"),
  32984. name: "Hand (Front)",
  32985. image: {
  32986. source: "./media/characters/sykes/hand-front.svg"
  32987. }
  32988. },
  32989. leftFoot: {
  32990. height: math.unit(1.2, "feet"),
  32991. name: "Foot (Left)",
  32992. image: {
  32993. source: "./media/characters/sykes/foot-left.svg"
  32994. }
  32995. },
  32996. rightFoot: {
  32997. height: math.unit(1.2, "feet"),
  32998. name: "Foot (Right)",
  32999. image: {
  33000. source: "./media/characters/sykes/foot-right.svg"
  33001. }
  33002. },
  33003. maw: {
  33004. height: math.unit(1.93, "feet"),
  33005. name: "Maw",
  33006. image: {
  33007. source: "./media/characters/sykes/maw.svg"
  33008. }
  33009. },
  33010. teeth: {
  33011. height: math.unit(0.51, "feet"),
  33012. name: "Teeth",
  33013. image: {
  33014. source: "./media/characters/sykes/teeth.svg"
  33015. }
  33016. },
  33017. tongue: {
  33018. height: math.unit(2.13, "feet"),
  33019. name: "Tongue",
  33020. image: {
  33021. source: "./media/characters/sykes/tongue.svg"
  33022. }
  33023. },
  33024. uvula: {
  33025. height: math.unit(0.16, "feet"),
  33026. name: "Uvula",
  33027. image: {
  33028. source: "./media/characters/sykes/uvula.svg"
  33029. }
  33030. },
  33031. collar: {
  33032. height: math.unit(0.287, "feet"),
  33033. name: "Collar",
  33034. image: {
  33035. source: "./media/characters/sykes/collar.svg"
  33036. }
  33037. },
  33038. },
  33039. [
  33040. {
  33041. name: "Shrunken",
  33042. height: math.unit(5, "inches")
  33043. },
  33044. {
  33045. name: "Normal",
  33046. height: math.unit(6 + 4 / 12, "feet"),
  33047. default: true
  33048. },
  33049. {
  33050. name: "Big",
  33051. height: math.unit(15, "feet")
  33052. },
  33053. ]
  33054. ))
  33055. characterMakers.push(() => makeCharacter(
  33056. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33057. {
  33058. front: {
  33059. height: math.unit(5 + 8/12, "feet"),
  33060. weight: math.unit(190, "lb"),
  33061. name: "Front",
  33062. image: {
  33063. source: "./media/characters/oven-otter/front.svg",
  33064. extra: 1809/1740,
  33065. bottom: 181/1990
  33066. }
  33067. },
  33068. back: {
  33069. height: math.unit(5 + 8/12, "feet"),
  33070. weight: math.unit(190, "lb"),
  33071. name: "Back",
  33072. image: {
  33073. source: "./media/characters/oven-otter/back.svg",
  33074. extra: 1709/1635,
  33075. bottom: 118/1827
  33076. }
  33077. },
  33078. hand: {
  33079. height: math.unit(1.07, "feet"),
  33080. name: "Hand",
  33081. image: {
  33082. source: "./media/characters/oven-otter/hand.svg"
  33083. }
  33084. },
  33085. beans: {
  33086. height: math.unit(1.74, "feet"),
  33087. name: "Beans",
  33088. image: {
  33089. source: "./media/characters/oven-otter/beans.svg"
  33090. }
  33091. },
  33092. },
  33093. [
  33094. {
  33095. name: "Micro",
  33096. height: math.unit(0.5, "inches")
  33097. },
  33098. {
  33099. name: "Normal",
  33100. height: math.unit(5 + 8/12, "feet"),
  33101. default: true
  33102. },
  33103. {
  33104. name: "Macro",
  33105. height: math.unit(250, "feet")
  33106. },
  33107. {
  33108. name: "Really High",
  33109. height: math.unit(420, "feet")
  33110. },
  33111. ]
  33112. ))
  33113. characterMakers.push(() => makeCharacter(
  33114. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33115. {
  33116. front: {
  33117. height: math.unit(5, "meters"),
  33118. weight: math.unit(292000000000000, "kg"),
  33119. name: "Front",
  33120. image: {
  33121. source: "./media/characters/devourer/front.svg",
  33122. extra: 1800/1733,
  33123. bottom: 211/2011
  33124. }
  33125. },
  33126. maw: {
  33127. height: math.unit(1.1, "meter"),
  33128. name: "Maw",
  33129. image: {
  33130. source: "./media/characters/devourer/maw.svg"
  33131. }
  33132. },
  33133. },
  33134. [
  33135. {
  33136. name: "Small",
  33137. height: math.unit(3, "meters")
  33138. },
  33139. {
  33140. name: "Large",
  33141. height: math.unit(5, "meters"),
  33142. default: true
  33143. },
  33144. ]
  33145. ))
  33146. characterMakers.push(() => makeCharacter(
  33147. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33148. {
  33149. front: {
  33150. height: math.unit(6, "feet"),
  33151. weight: math.unit(400, "lb"),
  33152. name: "Front",
  33153. image: {
  33154. source: "./media/characters/ellarby/front.svg",
  33155. extra: 1909/1763,
  33156. bottom: 80/1989
  33157. }
  33158. },
  33159. back: {
  33160. height: math.unit(6, "feet"),
  33161. weight: math.unit(400, "lb"),
  33162. name: "Back",
  33163. image: {
  33164. source: "./media/characters/ellarby/back.svg",
  33165. extra: 1914/1784,
  33166. bottom: 172/2086
  33167. }
  33168. },
  33169. },
  33170. [
  33171. {
  33172. name: "Mischief",
  33173. height: math.unit(18, "inches")
  33174. },
  33175. {
  33176. name: "Trouble",
  33177. height: math.unit(12, "feet")
  33178. },
  33179. {
  33180. name: "Havoc",
  33181. height: math.unit(200, "feet"),
  33182. default: true
  33183. },
  33184. {
  33185. name: "Pandemonium",
  33186. height: math.unit(1, "mile")
  33187. },
  33188. {
  33189. name: "Catastrophe",
  33190. height: math.unit(100, "miles")
  33191. },
  33192. ]
  33193. ))
  33194. characterMakers.push(() => makeCharacter(
  33195. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33196. {
  33197. front: {
  33198. height: math.unit(4.7, "meters"),
  33199. weight: math.unit(6500, "kg"),
  33200. name: "Front",
  33201. image: {
  33202. source: "./media/characters/vex/front.svg",
  33203. extra: 1288/1140,
  33204. bottom: 100/1388
  33205. }
  33206. },
  33207. },
  33208. [
  33209. {
  33210. name: "Normal",
  33211. height: math.unit(4.7, "meters"),
  33212. default: true
  33213. },
  33214. ]
  33215. ))
  33216. characterMakers.push(() => makeCharacter(
  33217. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33218. {
  33219. normal: {
  33220. height: math.unit(6, "feet"),
  33221. weight: math.unit(350, "lb"),
  33222. name: "Normal",
  33223. image: {
  33224. source: "./media/characters/teshy/normal.svg",
  33225. extra: 1795/1735,
  33226. bottom: 16/1811
  33227. }
  33228. },
  33229. monsterFront: {
  33230. height: math.unit(12, "feet"),
  33231. weight: math.unit(4700, "lb"),
  33232. name: "Monster (Front)",
  33233. image: {
  33234. source: "./media/characters/teshy/monster-front.svg",
  33235. extra: 2042/2034,
  33236. bottom: 128/2170
  33237. }
  33238. },
  33239. monsterSide: {
  33240. height: math.unit(12, "feet"),
  33241. weight: math.unit(4700, "lb"),
  33242. name: "Monster (Side)",
  33243. image: {
  33244. source: "./media/characters/teshy/monster-side.svg",
  33245. extra: 2067/2056,
  33246. bottom: 70/2137
  33247. }
  33248. },
  33249. monsterBack: {
  33250. height: math.unit(12, "feet"),
  33251. weight: math.unit(4700, "lb"),
  33252. name: "Monster (Back)",
  33253. image: {
  33254. source: "./media/characters/teshy/monster-back.svg",
  33255. extra: 1921/1914,
  33256. bottom: 171/2092
  33257. }
  33258. },
  33259. },
  33260. [
  33261. {
  33262. name: "Normal",
  33263. height: math.unit(6, "feet"),
  33264. default: true
  33265. },
  33266. ]
  33267. ))
  33268. characterMakers.push(() => makeCharacter(
  33269. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33270. {
  33271. front: {
  33272. height: math.unit(6, "feet"),
  33273. name: "Front",
  33274. image: {
  33275. source: "./media/characters/ramey/front.svg",
  33276. extra: 790/787,
  33277. bottom: 27/817
  33278. }
  33279. },
  33280. },
  33281. [
  33282. {
  33283. name: "Normal",
  33284. height: math.unit(6, "feet"),
  33285. default: true
  33286. },
  33287. ]
  33288. ))
  33289. characterMakers.push(() => makeCharacter(
  33290. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33291. {
  33292. front: {
  33293. height: math.unit(5 + 5/12, "feet"),
  33294. weight: math.unit(120, "lb"),
  33295. name: "Front",
  33296. image: {
  33297. source: "./media/characters/phirae/front.svg",
  33298. extra: 2491/2436,
  33299. bottom: 38/2529
  33300. }
  33301. },
  33302. },
  33303. [
  33304. {
  33305. name: "Normal",
  33306. height: math.unit(5 + 5/12, "feet"),
  33307. default: true
  33308. },
  33309. ]
  33310. ))
  33311. characterMakers.push(() => makeCharacter(
  33312. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33313. {
  33314. front: {
  33315. height: math.unit(6, "feet"),
  33316. weight: math.unit(150, "lb"),
  33317. name: "Front",
  33318. image: {
  33319. source: "./media/characters/stagglas/front.svg",
  33320. extra: 962/882,
  33321. bottom: 53/1015
  33322. }
  33323. },
  33324. },
  33325. [
  33326. {
  33327. name: "Normal",
  33328. height: math.unit(5 + 3/12, "feet"),
  33329. default: true
  33330. },
  33331. ]
  33332. ))
  33333. characterMakers.push(() => makeCharacter(
  33334. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33335. {
  33336. front: {
  33337. height: math.unit(5 + 4/12, "feet"),
  33338. weight: math.unit(145, "lb"),
  33339. name: "Front",
  33340. image: {
  33341. source: "./media/characters/starra/front.svg",
  33342. extra: 1790/1691,
  33343. bottom: 91/1881
  33344. }
  33345. },
  33346. },
  33347. [
  33348. {
  33349. name: "Normal",
  33350. height: math.unit(5 + 4/12, "feet"),
  33351. default: true
  33352. },
  33353. ]
  33354. ))
  33355. characterMakers.push(() => makeCharacter(
  33356. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33357. {
  33358. front: {
  33359. height: math.unit(2.2, "meters"),
  33360. name: "Front",
  33361. image: {
  33362. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33363. extra: 1194/1005,
  33364. bottom: 25/1219
  33365. }
  33366. },
  33367. },
  33368. [
  33369. {
  33370. name: "Normal",
  33371. height: math.unit(2.2, "meters"),
  33372. default: true
  33373. },
  33374. ]
  33375. ))
  33376. characterMakers.push(() => makeCharacter(
  33377. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33378. {
  33379. side: {
  33380. height: math.unit(8 + 2/12, "feet"),
  33381. weight: math.unit(1240, "lb"),
  33382. name: "Side",
  33383. image: {
  33384. source: "./media/characters/mika-valentine/side.svg",
  33385. extra: 2670/2501,
  33386. bottom: 250/2920
  33387. }
  33388. },
  33389. },
  33390. [
  33391. {
  33392. name: "Normal",
  33393. height: math.unit(8 + 2/12, "feet"),
  33394. default: true
  33395. },
  33396. ]
  33397. ))
  33398. characterMakers.push(() => makeCharacter(
  33399. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33400. {
  33401. front: {
  33402. height: math.unit(7 + 2/12, "feet"),
  33403. name: "Front",
  33404. image: {
  33405. source: "./media/characters/xoltol/front.svg",
  33406. extra: 2212/2124,
  33407. bottom: 84/2296
  33408. }
  33409. },
  33410. side: {
  33411. height: math.unit(7 + 2/12, "feet"),
  33412. name: "Side",
  33413. image: {
  33414. source: "./media/characters/xoltol/side.svg",
  33415. extra: 2273/2197,
  33416. bottom: 26/2299
  33417. }
  33418. },
  33419. hand: {
  33420. height: math.unit(2.5, "feet"),
  33421. name: "Hand",
  33422. image: {
  33423. source: "./media/characters/xoltol/hand.svg"
  33424. }
  33425. },
  33426. },
  33427. [
  33428. {
  33429. name: "Small-ish",
  33430. height: math.unit(5 + 11/12, "feet")
  33431. },
  33432. {
  33433. name: "Normal",
  33434. height: math.unit(7 + 2/12, "feet")
  33435. },
  33436. {
  33437. name: "\"Macro\"",
  33438. height: math.unit(14 + 9/12, "feet"),
  33439. default: true
  33440. },
  33441. {
  33442. name: "Alternate Height",
  33443. height: math.unit(20, "feet")
  33444. },
  33445. {
  33446. name: "Actually Macro",
  33447. height: math.unit(100, "feet")
  33448. },
  33449. ]
  33450. ))
  33451. characterMakers.push(() => makeCharacter(
  33452. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33453. {
  33454. front: {
  33455. height: math.unit(5 + 2/12, "feet"),
  33456. name: "Front",
  33457. image: {
  33458. source: "./media/characters/kotetsu-redwood/front.svg",
  33459. extra: 1053/942,
  33460. bottom: 60/1113
  33461. }
  33462. },
  33463. },
  33464. [
  33465. {
  33466. name: "Normal",
  33467. height: math.unit(5 + 2/12, "feet"),
  33468. default: true
  33469. },
  33470. ]
  33471. ))
  33472. characterMakers.push(() => makeCharacter(
  33473. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33474. {
  33475. front: {
  33476. height: math.unit(2.4, "meters"),
  33477. weight: math.unit(125, "kg"),
  33478. name: "Front",
  33479. image: {
  33480. source: "./media/characters/lilith/front.svg",
  33481. extra: 1590/1513,
  33482. bottom: 203/1793
  33483. }
  33484. },
  33485. },
  33486. [
  33487. {
  33488. name: "Humanoid",
  33489. height: math.unit(2.4, "meters")
  33490. },
  33491. {
  33492. name: "Normal",
  33493. height: math.unit(6, "meters"),
  33494. default: true
  33495. },
  33496. {
  33497. name: "Largest",
  33498. height: math.unit(55, "meters")
  33499. },
  33500. ]
  33501. ))
  33502. characterMakers.push(() => makeCharacter(
  33503. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33504. {
  33505. front: {
  33506. height: math.unit(8 + 4/12, "feet"),
  33507. weight: math.unit(535, "lb"),
  33508. name: "Front",
  33509. image: {
  33510. source: "./media/characters/beh'kah-bolger/front.svg",
  33511. extra: 1660/1603,
  33512. bottom: 37/1697
  33513. }
  33514. },
  33515. },
  33516. [
  33517. {
  33518. name: "Normal",
  33519. height: math.unit(8 + 4/12, "feet"),
  33520. default: true
  33521. },
  33522. {
  33523. name: "Kaiju",
  33524. height: math.unit(250, "feet")
  33525. },
  33526. {
  33527. name: "Still Growing",
  33528. height: math.unit(10, "miles")
  33529. },
  33530. {
  33531. name: "Continental",
  33532. height: math.unit(5000, "miles")
  33533. },
  33534. {
  33535. name: "Final Form",
  33536. height: math.unit(2500000, "miles")
  33537. },
  33538. ]
  33539. ))
  33540. //characters
  33541. function makeCharacters() {
  33542. const results = [];
  33543. characterMakers.forEach(character => {
  33544. results.push(character());
  33545. });
  33546. return results;
  33547. }