less copy protection, more size visualization
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

27121 wiersze
675 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.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. "nykur": {
  1284. name: "Nykur",
  1285. parents: ["horse", "monster"]
  1286. },
  1287. "giraffe": {
  1288. name: "Giraffe",
  1289. parents: ["mammal"]
  1290. },
  1291. "tauren": {
  1292. name: "Tauren",
  1293. parents: ["cow"]
  1294. },
  1295. "draconi": {
  1296. name: "Draconi",
  1297. parents: ["alien", "cat", "cyborg"]
  1298. },
  1299. "dire-wolf": {
  1300. name: "Dire Wolf",
  1301. parents: ["wolf"]
  1302. },
  1303. }
  1304. //species
  1305. function getSpeciesInfo(speciesList) {
  1306. let result = new Set();
  1307. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1308. result.add(entry)
  1309. });
  1310. return Array.from(result);
  1311. };
  1312. function getSpeciesInfoHelper(species) {
  1313. if (!speciesData[species]) {
  1314. console.warn(species + " doesn't exist");
  1315. return [];
  1316. }
  1317. if (speciesData[species].parents) {
  1318. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1319. } else {
  1320. return [species];
  1321. }
  1322. }
  1323. characterMakers.push(() => makeCharacter(
  1324. {
  1325. name: "Fen",
  1326. species: ["crux"],
  1327. description: {
  1328. title: "Bio",
  1329. text: "Very furry. Sheds on everything."
  1330. },
  1331. tags: [
  1332. "anthro",
  1333. "goo"
  1334. ]
  1335. },
  1336. {
  1337. back: {
  1338. height: math.unit(2.2428, "meter"),
  1339. weight: math.unit(124.738, "kg"),
  1340. name: "Back",
  1341. image: {
  1342. source: "./media/characters/fen/back.svg",
  1343. extra: 1025 / 935,
  1344. bottom: 0.01
  1345. },
  1346. info: {
  1347. description: {
  1348. mode: "append",
  1349. text: "\n\nHe is not currently looking at you."
  1350. }
  1351. }
  1352. },
  1353. full: {
  1354. height: math.unit(1.34, "meter"),
  1355. weight: math.unit(225, "kg"),
  1356. name: "Full",
  1357. image: {
  1358. source: "./media/characters/fen/full.svg"
  1359. },
  1360. info: {
  1361. description: {
  1362. mode: "append",
  1363. text: "\n\nMunch."
  1364. }
  1365. }
  1366. },
  1367. kneeling: {
  1368. height: math.unit(5.4, "feet"),
  1369. weight: math.unit(124.738, "kg"),
  1370. name: "Kneeling",
  1371. image: {
  1372. source: "./media/characters/fen/kneeling.svg",
  1373. extra: 563 / 507
  1374. }
  1375. },
  1376. goo: {
  1377. height: math.unit(2.8, "feet"),
  1378. weight: math.unit(125, "kg"),
  1379. capacity: math.unit(1, "people"),
  1380. name: "Goo",
  1381. image: {
  1382. source: "./media/characters/fen/goo.svg",
  1383. bottom: 116 / 613
  1384. }
  1385. },
  1386. lounging: {
  1387. height: math.unit(6.5, "feet"),
  1388. weight: math.unit(125, "kg"),
  1389. name: "Lounging",
  1390. image: {
  1391. source: "./media/characters/fen/lounging.svg"
  1392. }
  1393. },
  1394. },
  1395. [
  1396. {
  1397. name: "Normal",
  1398. height: math.unit(2.2428, "meter")
  1399. },
  1400. {
  1401. name: "Big",
  1402. height: math.unit(12, "feet")
  1403. },
  1404. {
  1405. name: "Minimacro",
  1406. height: math.unit(40, "feet"),
  1407. default: true,
  1408. info: {
  1409. description: {
  1410. mode: "append",
  1411. text: "\n\nTOO DAMN BIG"
  1412. }
  1413. }
  1414. },
  1415. {
  1416. name: "Macro",
  1417. height: math.unit(100, "feet"),
  1418. info: {
  1419. description: {
  1420. mode: "append",
  1421. text: "\n\nTOO DAMN BIG"
  1422. }
  1423. }
  1424. },
  1425. {
  1426. name: "Macro+",
  1427. height: math.unit(300, "feet")
  1428. },
  1429. {
  1430. name: "Megamacro",
  1431. height: math.unit(2, "miles")
  1432. }
  1433. ]
  1434. ))
  1435. characterMakers.push(() => makeCharacter(
  1436. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1437. {
  1438. front: {
  1439. height: math.unit(183, "cm"),
  1440. weight: math.unit(80, "kg"),
  1441. name: "Front",
  1442. image: {
  1443. source: "./media/characters/sofia-fluttertail/front.svg",
  1444. bottom: 0.01,
  1445. extra: 2154 / 2081
  1446. }
  1447. },
  1448. frontAlt: {
  1449. height: math.unit(183, "cm"),
  1450. weight: math.unit(80, "kg"),
  1451. name: "Front (alt)",
  1452. image: {
  1453. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1454. }
  1455. },
  1456. back: {
  1457. height: math.unit(183, "cm"),
  1458. weight: math.unit(80, "kg"),
  1459. name: "Back",
  1460. image: {
  1461. source: "./media/characters/sofia-fluttertail/back.svg"
  1462. }
  1463. },
  1464. kneeling: {
  1465. height: math.unit(125, "cm"),
  1466. weight: math.unit(80, "kg"),
  1467. name: "Kneeling",
  1468. image: {
  1469. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1470. extra: 1033 / 977,
  1471. bottom: 23.7 / 1057
  1472. }
  1473. },
  1474. maw: {
  1475. height: math.unit(183 / 5, "cm"),
  1476. name: "Maw",
  1477. image: {
  1478. source: "./media/characters/sofia-fluttertail/maw.svg"
  1479. }
  1480. },
  1481. mawcloseup: {
  1482. height: math.unit(183 / 5 * 0.41, "cm"),
  1483. name: "Maw (Closeup)",
  1484. image: {
  1485. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1486. }
  1487. },
  1488. },
  1489. [
  1490. {
  1491. name: "Normal",
  1492. height: math.unit(1.83, "meter")
  1493. },
  1494. {
  1495. name: "Size Thief",
  1496. height: math.unit(18, "feet")
  1497. },
  1498. {
  1499. name: "50 Foot Collie",
  1500. height: math.unit(50, "feet")
  1501. },
  1502. {
  1503. name: "Macro",
  1504. height: math.unit(96, "feet"),
  1505. default: true
  1506. },
  1507. {
  1508. name: "Megamerger",
  1509. height: math.unit(650, "feet")
  1510. },
  1511. ]
  1512. ))
  1513. characterMakers.push(() => makeCharacter(
  1514. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1515. {
  1516. front: {
  1517. height: math.unit(7, "feet"),
  1518. weight: math.unit(100, "kg"),
  1519. name: "Front",
  1520. image: {
  1521. source: "./media/characters/march/front.svg",
  1522. extra: 1,
  1523. bottom: 0.015
  1524. }
  1525. },
  1526. foot: {
  1527. height: math.unit(0.9, "feet"),
  1528. name: "Foot",
  1529. image: {
  1530. source: "./media/characters/march/foot.svg"
  1531. }
  1532. },
  1533. },
  1534. [
  1535. {
  1536. name: "Normal",
  1537. height: math.unit(7.9, "feet")
  1538. },
  1539. {
  1540. name: "Macro",
  1541. height: math.unit(220, "meters")
  1542. },
  1543. {
  1544. name: "Megamacro",
  1545. height: math.unit(2.98, "km"),
  1546. default: true
  1547. },
  1548. {
  1549. name: "Gigamacro",
  1550. height: math.unit(15963, "km")
  1551. },
  1552. {
  1553. name: "Teramacro",
  1554. height: math.unit(2980000000, "km")
  1555. },
  1556. {
  1557. name: "Examacro",
  1558. height: math.unit(250, "parsecs")
  1559. },
  1560. ]
  1561. ))
  1562. characterMakers.push(() => makeCharacter(
  1563. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1564. {
  1565. front: {
  1566. height: math.unit(6, "feet"),
  1567. weight: math.unit(60, "kg"),
  1568. name: "Front",
  1569. image: {
  1570. source: "./media/characters/noir/front.svg",
  1571. extra: 1,
  1572. bottom: 0.032
  1573. }
  1574. },
  1575. },
  1576. [
  1577. {
  1578. name: "Normal",
  1579. height: math.unit(6.6, "feet")
  1580. },
  1581. {
  1582. name: "Macro",
  1583. height: math.unit(500, "feet")
  1584. },
  1585. {
  1586. name: "Megamacro",
  1587. height: math.unit(2.5, "km"),
  1588. default: true
  1589. },
  1590. {
  1591. name: "Gigamacro",
  1592. height: math.unit(22500, "km")
  1593. },
  1594. {
  1595. name: "Teramacro",
  1596. height: math.unit(2500000000, "km")
  1597. },
  1598. {
  1599. name: "Examacro",
  1600. height: math.unit(200, "parsecs")
  1601. },
  1602. ]
  1603. ))
  1604. characterMakers.push(() => makeCharacter(
  1605. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1606. {
  1607. front: {
  1608. height: math.unit(7, "feet"),
  1609. weight: math.unit(100, "kg"),
  1610. name: "Front",
  1611. image: {
  1612. source: "./media/characters/okuri/front.svg",
  1613. extra: 1,
  1614. bottom: 0.037
  1615. }
  1616. },
  1617. back: {
  1618. height: math.unit(7, "feet"),
  1619. weight: math.unit(100, "kg"),
  1620. name: "Back",
  1621. image: {
  1622. source: "./media/characters/okuri/back.svg",
  1623. extra: 1,
  1624. bottom: 0.007
  1625. }
  1626. },
  1627. },
  1628. [
  1629. {
  1630. name: "Megamacro",
  1631. height: math.unit(100, "miles"),
  1632. default: true
  1633. },
  1634. ]
  1635. ))
  1636. characterMakers.push(() => makeCharacter(
  1637. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1638. {
  1639. front: {
  1640. height: math.unit(7, "feet"),
  1641. weight: math.unit(100, "kg"),
  1642. name: "Front",
  1643. image: {
  1644. source: "./media/characters/manny/front.svg",
  1645. extra: 1,
  1646. bottom: 0.06
  1647. }
  1648. },
  1649. back: {
  1650. height: math.unit(7, "feet"),
  1651. weight: math.unit(100, "kg"),
  1652. name: "Back",
  1653. image: {
  1654. source: "./media/characters/manny/back.svg",
  1655. extra: 1,
  1656. bottom: 0.014
  1657. }
  1658. },
  1659. },
  1660. [
  1661. {
  1662. name: "Normal",
  1663. height: math.unit(7, "feet"),
  1664. },
  1665. {
  1666. name: "Macro",
  1667. height: math.unit(78, "feet"),
  1668. default: true
  1669. },
  1670. {
  1671. name: "Macro+",
  1672. height: math.unit(300, "meters")
  1673. },
  1674. {
  1675. name: "Macro++",
  1676. height: math.unit(2400, "meters")
  1677. },
  1678. {
  1679. name: "Megamacro",
  1680. height: math.unit(5167, "meters")
  1681. },
  1682. {
  1683. name: "Gigamacro",
  1684. height: math.unit(41769, "miles")
  1685. },
  1686. ]
  1687. ))
  1688. characterMakers.push(() => makeCharacter(
  1689. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1690. {
  1691. front: {
  1692. height: math.unit(7, "feet"),
  1693. weight: math.unit(100, "kg"),
  1694. name: "Front",
  1695. image: {
  1696. source: "./media/characters/adake/front-1.svg"
  1697. }
  1698. },
  1699. frontAlt: {
  1700. height: math.unit(7, "feet"),
  1701. weight: math.unit(100, "kg"),
  1702. name: "Front (Alt)",
  1703. image: {
  1704. source: "./media/characters/adake/front-2.svg",
  1705. extra: 1,
  1706. bottom: 0.01
  1707. }
  1708. },
  1709. back: {
  1710. height: math.unit(7, "feet"),
  1711. weight: math.unit(100, "kg"),
  1712. name: "Back",
  1713. image: {
  1714. source: "./media/characters/adake/back.svg",
  1715. }
  1716. },
  1717. kneel: {
  1718. height: math.unit(5.385, "feet"),
  1719. weight: math.unit(100, "kg"),
  1720. name: "Kneeling",
  1721. image: {
  1722. source: "./media/characters/adake/kneel.svg",
  1723. bottom: 0.052
  1724. }
  1725. },
  1726. },
  1727. [
  1728. {
  1729. name: "Normal",
  1730. height: math.unit(7, "feet"),
  1731. },
  1732. {
  1733. name: "Macro",
  1734. height: math.unit(78, "feet"),
  1735. default: true
  1736. },
  1737. {
  1738. name: "Macro+",
  1739. height: math.unit(300, "meters")
  1740. },
  1741. {
  1742. name: "Macro++",
  1743. height: math.unit(2400, "meters")
  1744. },
  1745. {
  1746. name: "Megamacro",
  1747. height: math.unit(5167, "meters")
  1748. },
  1749. {
  1750. name: "Gigamacro",
  1751. height: math.unit(41769, "miles")
  1752. },
  1753. ]
  1754. ))
  1755. characterMakers.push(() => makeCharacter(
  1756. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1757. {
  1758. front: {
  1759. height: math.unit(1.65, "meters"),
  1760. weight: math.unit(50, "kg"),
  1761. name: "Front",
  1762. image: {
  1763. source: "./media/characters/elijah/front.svg",
  1764. extra: 858 / 830,
  1765. bottom: 95.5 / 953.8559
  1766. }
  1767. },
  1768. back: {
  1769. height: math.unit(1.65, "meters"),
  1770. weight: math.unit(50, "kg"),
  1771. name: "Back",
  1772. image: {
  1773. source: "./media/characters/elijah/back.svg",
  1774. extra: 895 / 850,
  1775. bottom: 5.3 / 897.956
  1776. }
  1777. },
  1778. frontNsfw: {
  1779. height: math.unit(1.65, "meters"),
  1780. weight: math.unit(50, "kg"),
  1781. name: "Front (NSFW)",
  1782. image: {
  1783. source: "./media/characters/elijah/front-nsfw.svg",
  1784. extra: 858 / 830,
  1785. bottom: 95.5 / 953.8559
  1786. }
  1787. },
  1788. backNsfw: {
  1789. height: math.unit(1.65, "meters"),
  1790. weight: math.unit(50, "kg"),
  1791. name: "Back (NSFW)",
  1792. image: {
  1793. source: "./media/characters/elijah/back-nsfw.svg",
  1794. extra: 895 / 850,
  1795. bottom: 5.3 / 897.956
  1796. }
  1797. },
  1798. dick: {
  1799. height: math.unit(1, "feet"),
  1800. name: "Dick",
  1801. image: {
  1802. source: "./media/characters/elijah/dick.svg"
  1803. }
  1804. },
  1805. beakOpen: {
  1806. height: math.unit(1.25, "feet"),
  1807. name: "Beak (Open)",
  1808. image: {
  1809. source: "./media/characters/elijah/beak-open.svg"
  1810. }
  1811. },
  1812. beakShut: {
  1813. height: math.unit(1.25, "feet"),
  1814. name: "Beak (Shut)",
  1815. image: {
  1816. source: "./media/characters/elijah/beak-shut.svg"
  1817. }
  1818. },
  1819. footFlexing: {
  1820. height: math.unit(1.61, "feet"),
  1821. name: "Foot (Flexing)",
  1822. image: {
  1823. source: "./media/characters/elijah/foot-flexing.svg"
  1824. }
  1825. },
  1826. footStepping: {
  1827. height: math.unit(1.44, "feet"),
  1828. name: "Foot (Stepping)",
  1829. image: {
  1830. source: "./media/characters/elijah/foot-stepping.svg"
  1831. }
  1832. },
  1833. plantigradeLeg: {
  1834. height: math.unit(2.34, "feet"),
  1835. name: "Plantigrade Leg",
  1836. image: {
  1837. source: "./media/characters/elijah/plantigrade-leg.svg"
  1838. }
  1839. },
  1840. plantigradeFootLeft: {
  1841. height: math.unit(0.9, "feet"),
  1842. name: "Plantigrade Foot (Left)",
  1843. image: {
  1844. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1845. }
  1846. },
  1847. plantigradeFootRight: {
  1848. height: math.unit(0.9, "feet"),
  1849. name: "Plantigrade Foot (Right)",
  1850. image: {
  1851. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1852. }
  1853. },
  1854. },
  1855. [
  1856. {
  1857. name: "Normal",
  1858. height: math.unit(1.65, "meters")
  1859. },
  1860. {
  1861. name: "Macro",
  1862. height: math.unit(55, "meters"),
  1863. default: true
  1864. },
  1865. {
  1866. name: "Macro+",
  1867. height: math.unit(105, "meters")
  1868. },
  1869. ]
  1870. ))
  1871. characterMakers.push(() => makeCharacter(
  1872. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1873. {
  1874. front: {
  1875. height: math.unit(11, "feet"),
  1876. weight: math.unit(80, "kg"),
  1877. name: "Front",
  1878. image: {
  1879. source: "./media/characters/rai/front.svg",
  1880. extra: 1,
  1881. bottom: 0.03
  1882. }
  1883. },
  1884. side: {
  1885. height: math.unit(11, "feet"),
  1886. weight: math.unit(80, "kg"),
  1887. name: "Side",
  1888. image: {
  1889. source: "./media/characters/rai/side.svg"
  1890. }
  1891. },
  1892. back: {
  1893. height: math.unit(11, "feet"),
  1894. weight: math.unit(80, "lb"),
  1895. name: "Back",
  1896. image: {
  1897. source: "./media/characters/rai/back.svg",
  1898. extra: 1,
  1899. bottom: 0.01
  1900. }
  1901. },
  1902. feral: {
  1903. height: math.unit(11, "feet"),
  1904. weight: math.unit(800, "lb"),
  1905. name: "Feral",
  1906. image: {
  1907. source: "./media/characters/rai/feral.svg",
  1908. extra: 1050 / 659,
  1909. bottom: 0.07
  1910. }
  1911. },
  1912. dragon: {
  1913. height: math.unit(23, "feet"),
  1914. weight: math.unit(50000, "lb"),
  1915. name: "Dragon",
  1916. image: {
  1917. source: "./media/characters/rai/dragon.svg",
  1918. extra: 2498 / 2030,
  1919. bottom: 85.2 / 2584
  1920. }
  1921. },
  1922. maw: {
  1923. height: math.unit(6 / 3.81416, "feet"),
  1924. name: "Maw",
  1925. image: {
  1926. source: "./media/characters/rai/maw.svg"
  1927. }
  1928. },
  1929. },
  1930. [
  1931. {
  1932. name: "Normal",
  1933. height: math.unit(11, "feet")
  1934. },
  1935. {
  1936. name: "Macro",
  1937. height: math.unit(302, "feet"),
  1938. default: true
  1939. },
  1940. ]
  1941. ))
  1942. characterMakers.push(() => makeCharacter(
  1943. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1944. {
  1945. frontDressed: {
  1946. height: math.unit(216, "feet"),
  1947. weight: math.unit(7000000, "lb"),
  1948. name: "Front (Dressed)",
  1949. image: {
  1950. source: "./media/characters/jazzy/front-dressed.svg",
  1951. extra: 2738 / 2651,
  1952. bottom: 41.8 / 2786
  1953. }
  1954. },
  1955. backDressed: {
  1956. height: math.unit(216, "feet"),
  1957. weight: math.unit(7000000, "lb"),
  1958. name: "Back (Dressed)",
  1959. image: {
  1960. source: "./media/characters/jazzy/back-dressed.svg",
  1961. extra: 2775 / 2673,
  1962. bottom: 36.8 / 2817
  1963. }
  1964. },
  1965. front: {
  1966. height: math.unit(216, "feet"),
  1967. weight: math.unit(7000000, "lb"),
  1968. name: "Front",
  1969. image: {
  1970. source: "./media/characters/jazzy/front.svg",
  1971. extra: 2738 / 2651,
  1972. bottom: 41.8 / 2786
  1973. }
  1974. },
  1975. back: {
  1976. height: math.unit(216, "feet"),
  1977. weight: math.unit(7000000, "lb"),
  1978. name: "Back",
  1979. image: {
  1980. source: "./media/characters/jazzy/back.svg",
  1981. extra: 2775 / 2673,
  1982. bottom: 36.8 / 2817
  1983. }
  1984. },
  1985. maw: {
  1986. height: math.unit(20, "feet"),
  1987. name: "Maw",
  1988. image: {
  1989. source: "./media/characters/jazzy/maw.svg"
  1990. }
  1991. },
  1992. paws: {
  1993. height: math.unit(27.5, "feet"),
  1994. name: "Paws",
  1995. image: {
  1996. source: "./media/characters/jazzy/paws.svg"
  1997. }
  1998. },
  1999. eye: {
  2000. height: math.unit(4.4, "feet"),
  2001. name: "Eye",
  2002. image: {
  2003. source: "./media/characters/jazzy/eye.svg"
  2004. }
  2005. },
  2006. droneOffense: {
  2007. height: math.unit(9.5, "inches"),
  2008. name: "Drone (Offense)",
  2009. image: {
  2010. source: "./media/characters/jazzy/drone-offense.svg"
  2011. }
  2012. },
  2013. droneRecon: {
  2014. height: math.unit(9.5, "inches"),
  2015. name: "Drone (Recon)",
  2016. image: {
  2017. source: "./media/characters/jazzy/drone-recon.svg"
  2018. }
  2019. },
  2020. droneDefense: {
  2021. height: math.unit(9.5, "inches"),
  2022. name: "Drone (Defense)",
  2023. image: {
  2024. source: "./media/characters/jazzy/drone-defense.svg"
  2025. }
  2026. },
  2027. },
  2028. [
  2029. {
  2030. name: "Macro",
  2031. height: math.unit(216, "feet"),
  2032. default: true
  2033. },
  2034. ]
  2035. ))
  2036. characterMakers.push(() => makeCharacter(
  2037. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2038. {
  2039. front: {
  2040. height: math.unit(7, "feet"),
  2041. weight: math.unit(80, "kg"),
  2042. name: "Front",
  2043. image: {
  2044. source: "./media/characters/flamm/front.svg",
  2045. extra: 1794 / 1677,
  2046. bottom: 31.7 / 1828.5
  2047. }
  2048. },
  2049. },
  2050. [
  2051. {
  2052. name: "Normal",
  2053. height: math.unit(9.5, "feet")
  2054. },
  2055. {
  2056. name: "Macro",
  2057. height: math.unit(200, "feet"),
  2058. default: true
  2059. },
  2060. ]
  2061. ))
  2062. characterMakers.push(() => makeCharacter(
  2063. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2064. {
  2065. front: {
  2066. height: math.unit(7, "feet"),
  2067. weight: math.unit(80, "kg"),
  2068. name: "Front",
  2069. image: {
  2070. source: "./media/characters/zephiro/front.svg",
  2071. extra: 2309 / 2162,
  2072. bottom: 0.069
  2073. }
  2074. },
  2075. side: {
  2076. height: math.unit(7, "feet"),
  2077. weight: math.unit(80, "kg"),
  2078. name: "Side",
  2079. image: {
  2080. source: "./media/characters/zephiro/side.svg",
  2081. extra: 2403 / 2279,
  2082. bottom: 0.015
  2083. }
  2084. },
  2085. back: {
  2086. height: math.unit(7, "feet"),
  2087. weight: math.unit(80, "kg"),
  2088. name: "Back",
  2089. image: {
  2090. source: "./media/characters/zephiro/back.svg",
  2091. extra: 2373 / 2244,
  2092. bottom: 0.013
  2093. }
  2094. },
  2095. },
  2096. [
  2097. {
  2098. name: "Micro",
  2099. height: math.unit(3, "inches")
  2100. },
  2101. {
  2102. name: "Normal",
  2103. height: math.unit(5 + 3 / 12, "feet"),
  2104. default: true
  2105. },
  2106. {
  2107. name: "Macro",
  2108. height: math.unit(118, "feet")
  2109. },
  2110. ]
  2111. ))
  2112. characterMakers.push(() => makeCharacter(
  2113. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2114. {
  2115. front: {
  2116. height: math.unit(5, "feet"),
  2117. weight: math.unit(90, "kg"),
  2118. name: "Front",
  2119. image: {
  2120. source: "./media/characters/fory/front.svg",
  2121. extra: 2862 / 2674,
  2122. bottom: 180 / 3043.8
  2123. }
  2124. },
  2125. back: {
  2126. height: math.unit(5, "feet"),
  2127. weight: math.unit(90, "kg"),
  2128. name: "Back",
  2129. image: {
  2130. source: "./media/characters/fory/back.svg",
  2131. extra: 2962 / 2791,
  2132. bottom: 106 / 3071.8
  2133. }
  2134. },
  2135. foot: {
  2136. height: math.unit(2.14, "feet"),
  2137. name: "Foot",
  2138. image: {
  2139. source: "./media/characters/fory/foot.svg"
  2140. }
  2141. },
  2142. },
  2143. [
  2144. {
  2145. name: "Normal",
  2146. height: math.unit(5, "feet")
  2147. },
  2148. {
  2149. name: "Macro",
  2150. height: math.unit(50, "feet"),
  2151. default: true
  2152. },
  2153. {
  2154. name: "Megamacro",
  2155. height: math.unit(10, "miles")
  2156. },
  2157. {
  2158. name: "Gigamacro",
  2159. height: math.unit(5, "earths")
  2160. },
  2161. ]
  2162. ))
  2163. characterMakers.push(() => makeCharacter(
  2164. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2165. {
  2166. front: {
  2167. height: math.unit(7, "feet"),
  2168. weight: math.unit(90, "kg"),
  2169. name: "Front",
  2170. image: {
  2171. source: "./media/characters/kurrikage/front.svg",
  2172. extra: 1,
  2173. bottom: 0.035
  2174. }
  2175. },
  2176. back: {
  2177. height: math.unit(7, "feet"),
  2178. weight: math.unit(90, "lb"),
  2179. name: "Back",
  2180. image: {
  2181. source: "./media/characters/kurrikage/back.svg"
  2182. }
  2183. },
  2184. paw: {
  2185. height: math.unit(1.5, "feet"),
  2186. name: "Paw",
  2187. image: {
  2188. source: "./media/characters/kurrikage/paw.svg"
  2189. }
  2190. },
  2191. staff: {
  2192. height: math.unit(6.7, "feet"),
  2193. name: "Staff",
  2194. image: {
  2195. source: "./media/characters/kurrikage/staff.svg"
  2196. }
  2197. },
  2198. peek: {
  2199. height: math.unit(1.05, "feet"),
  2200. name: "Peeking",
  2201. image: {
  2202. source: "./media/characters/kurrikage/peek.svg",
  2203. bottom: 0.08
  2204. }
  2205. },
  2206. },
  2207. [
  2208. {
  2209. name: "Normal",
  2210. height: math.unit(12, "feet"),
  2211. default: true
  2212. },
  2213. {
  2214. name: "Big",
  2215. height: math.unit(20, "feet")
  2216. },
  2217. {
  2218. name: "Macro",
  2219. height: math.unit(500, "feet")
  2220. },
  2221. {
  2222. name: "Megamacro",
  2223. height: math.unit(20, "miles")
  2224. },
  2225. ]
  2226. ))
  2227. characterMakers.push(() => makeCharacter(
  2228. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2229. {
  2230. front: {
  2231. height: math.unit(6, "feet"),
  2232. weight: math.unit(75, "kg"),
  2233. name: "Front",
  2234. image: {
  2235. source: "./media/characters/shingo/front.svg",
  2236. extra: 3511 / 3338,
  2237. bottom: 0.005
  2238. }
  2239. },
  2240. paw: {
  2241. height: math.unit(1, "feet"),
  2242. name: "Paw",
  2243. image: {
  2244. source: "./media/characters/shingo/paw.svg"
  2245. }
  2246. },
  2247. },
  2248. [
  2249. {
  2250. name: "Micro",
  2251. height: math.unit(4, "inches")
  2252. },
  2253. {
  2254. name: "Normal",
  2255. height: math.unit(6, "feet"),
  2256. default: true
  2257. },
  2258. {
  2259. name: "Macro",
  2260. height: math.unit(108, "feet")
  2261. }
  2262. ]
  2263. ))
  2264. characterMakers.push(() => makeCharacter(
  2265. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2266. {
  2267. side: {
  2268. height: math.unit(6, "feet"),
  2269. weight: math.unit(75, "kg"),
  2270. name: "Side",
  2271. image: {
  2272. source: "./media/characters/aigey/side.svg"
  2273. }
  2274. },
  2275. },
  2276. [
  2277. {
  2278. name: "Macro",
  2279. height: math.unit(200, "feet"),
  2280. default: true
  2281. },
  2282. {
  2283. name: "Megamacro",
  2284. height: math.unit(100, "miles")
  2285. },
  2286. ]
  2287. )
  2288. )
  2289. characterMakers.push(() => makeCharacter(
  2290. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2291. {
  2292. front: {
  2293. height: math.unit(5 + 5 / 12, "feet"),
  2294. weight: math.unit(75, "kg"),
  2295. name: "Front",
  2296. image: {
  2297. source: "./media/characters/natasha/front.svg",
  2298. extra: 859 / 824,
  2299. bottom: 23 / 879.6
  2300. }
  2301. },
  2302. frontNsfw: {
  2303. height: math.unit(5 + 5 / 12, "feet"),
  2304. weight: math.unit(75, "kg"),
  2305. name: "Front (NSFW)",
  2306. image: {
  2307. source: "./media/characters/natasha/front-nsfw.svg",
  2308. extra: 859 / 824,
  2309. bottom: 23 / 879.6
  2310. }
  2311. },
  2312. frontErect: {
  2313. height: math.unit(5 + 5 / 12, "feet"),
  2314. weight: math.unit(75, "kg"),
  2315. name: "Front (Erect)",
  2316. image: {
  2317. source: "./media/characters/natasha/front-erect.svg",
  2318. extra: 859 / 824,
  2319. bottom: 23 / 879.6
  2320. }
  2321. },
  2322. back: {
  2323. height: math.unit(5 + 5 / 12, "feet"),
  2324. weight: math.unit(75, "kg"),
  2325. name: "Back",
  2326. image: {
  2327. source: "./media/characters/natasha/back.svg",
  2328. extra: 887.9 / 852.6,
  2329. bottom: 9.7 / 896.4
  2330. }
  2331. },
  2332. backAlt: {
  2333. height: math.unit(5 + 5 / 12, "feet"),
  2334. weight: math.unit(75, "kg"),
  2335. name: "Back (Alt)",
  2336. image: {
  2337. source: "./media/characters/natasha/back-alt.svg",
  2338. extra: 1236.7 / 1192,
  2339. bottom: 22.3 / 1258.2
  2340. }
  2341. },
  2342. dick: {
  2343. height: math.unit(1.772, "feet"),
  2344. name: "Dick",
  2345. image: {
  2346. source: "./media/characters/natasha/dick.svg"
  2347. }
  2348. },
  2349. },
  2350. [
  2351. {
  2352. name: "Normal",
  2353. height: math.unit(5 + 5 / 12, "feet")
  2354. },
  2355. {
  2356. name: "Large",
  2357. height: math.unit(12, "feet")
  2358. },
  2359. {
  2360. name: "Macro",
  2361. height: math.unit(100, "feet"),
  2362. default: true
  2363. },
  2364. {
  2365. name: "Macro+",
  2366. height: math.unit(260, "feet")
  2367. },
  2368. {
  2369. name: "Macro++",
  2370. height: math.unit(1, "mile")
  2371. },
  2372. ]
  2373. ))
  2374. characterMakers.push(() => makeCharacter(
  2375. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2376. {
  2377. front: {
  2378. height: math.unit(6, "feet"),
  2379. weight: math.unit(75, "kg"),
  2380. name: "Front",
  2381. image: {
  2382. source: "./media/characters/malik/front.svg"
  2383. }
  2384. },
  2385. side: {
  2386. height: math.unit(6, "feet"),
  2387. weight: math.unit(75, "kg"),
  2388. name: "Side",
  2389. image: {
  2390. source: "./media/characters/malik/side.svg",
  2391. extra: 1.1539
  2392. }
  2393. },
  2394. back: {
  2395. height: math.unit(6, "feet"),
  2396. weight: math.unit(75, "kg"),
  2397. name: "Back",
  2398. image: {
  2399. source: "./media/characters/malik/back.svg"
  2400. }
  2401. },
  2402. },
  2403. [
  2404. {
  2405. name: "Macro",
  2406. height: math.unit(156, "feet"),
  2407. default: true
  2408. },
  2409. {
  2410. name: "Macro+",
  2411. height: math.unit(1188, "feet")
  2412. },
  2413. ]
  2414. ))
  2415. characterMakers.push(() => makeCharacter(
  2416. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2417. {
  2418. front: {
  2419. height: math.unit(6, "feet"),
  2420. weight: math.unit(75, "kg"),
  2421. name: "Front",
  2422. image: {
  2423. source: "./media/characters/sefer/front.svg",
  2424. extra: 848 / 659,
  2425. bottom: 28.3 / 876.442
  2426. }
  2427. },
  2428. back: {
  2429. height: math.unit(6, "feet"),
  2430. weight: math.unit(75, "kg"),
  2431. name: "Back",
  2432. image: {
  2433. source: "./media/characters/sefer/back.svg",
  2434. extra: 864 / 695,
  2435. bottom: 10 / 871
  2436. }
  2437. },
  2438. frontDressed: {
  2439. height: math.unit(6, "feet"),
  2440. weight: math.unit(75, "kg"),
  2441. name: "Front (Dressed)",
  2442. image: {
  2443. source: "./media/characters/sefer/front-dressed.svg",
  2444. extra: 839 / 653,
  2445. bottom: 37.6 / 878
  2446. }
  2447. },
  2448. },
  2449. [
  2450. {
  2451. name: "Normal",
  2452. height: math.unit(6, "feet"),
  2453. default: true
  2454. },
  2455. ]
  2456. ))
  2457. characterMakers.push(() => makeCharacter(
  2458. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2459. {
  2460. body: {
  2461. height: math.unit(2.2428, "meter"),
  2462. weight: math.unit(124.738, "kg"),
  2463. name: "Body",
  2464. image: {
  2465. extra: 1225 / 1050,
  2466. source: "./media/characters/north/front.svg"
  2467. }
  2468. }
  2469. },
  2470. [
  2471. {
  2472. name: "Micro",
  2473. height: math.unit(4, "inches")
  2474. },
  2475. {
  2476. name: "Macro",
  2477. height: math.unit(63, "meters")
  2478. },
  2479. {
  2480. name: "Megamacro",
  2481. height: math.unit(101, "miles"),
  2482. default: true
  2483. }
  2484. ]
  2485. ))
  2486. characterMakers.push(() => makeCharacter(
  2487. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2488. {
  2489. angled: {
  2490. height: math.unit(4, "meter"),
  2491. weight: math.unit(150, "kg"),
  2492. name: "Angled",
  2493. image: {
  2494. source: "./media/characters/talan/angled-sfw.svg",
  2495. bottom: 29 / 3734
  2496. }
  2497. },
  2498. angledNsfw: {
  2499. height: math.unit(4, "meter"),
  2500. weight: math.unit(150, "kg"),
  2501. name: "Angled (NSFW)",
  2502. image: {
  2503. source: "./media/characters/talan/angled-nsfw.svg",
  2504. bottom: 29 / 3734
  2505. }
  2506. },
  2507. frontNsfw: {
  2508. height: math.unit(4, "meter"),
  2509. weight: math.unit(150, "kg"),
  2510. name: "Front (NSFW)",
  2511. image: {
  2512. source: "./media/characters/talan/front-nsfw.svg",
  2513. bottom: 29 / 3734
  2514. }
  2515. },
  2516. sideNsfw: {
  2517. height: math.unit(4, "meter"),
  2518. weight: math.unit(150, "kg"),
  2519. name: "Side (NSFW)",
  2520. image: {
  2521. source: "./media/characters/talan/side-nsfw.svg",
  2522. bottom: 29 / 3734
  2523. }
  2524. },
  2525. back: {
  2526. height: math.unit(4, "meter"),
  2527. weight: math.unit(150, "kg"),
  2528. name: "Back",
  2529. image: {
  2530. source: "./media/characters/talan/back.svg"
  2531. }
  2532. },
  2533. dickBottom: {
  2534. height: math.unit(0.621, "meter"),
  2535. name: "Dick (Bottom)",
  2536. image: {
  2537. source: "./media/characters/talan/dick-bottom.svg"
  2538. }
  2539. },
  2540. dickTop: {
  2541. height: math.unit(0.621, "meter"),
  2542. name: "Dick (Top)",
  2543. image: {
  2544. source: "./media/characters/talan/dick-top.svg"
  2545. }
  2546. },
  2547. dickSide: {
  2548. height: math.unit(0.305, "meter"),
  2549. name: "Dick (Side)",
  2550. image: {
  2551. source: "./media/characters/talan/dick-side.svg"
  2552. }
  2553. },
  2554. dickFront: {
  2555. height: math.unit(0.305, "meter"),
  2556. name: "Dick (Front)",
  2557. image: {
  2558. source: "./media/characters/talan/dick-front.svg"
  2559. }
  2560. },
  2561. },
  2562. [
  2563. {
  2564. name: "Normal",
  2565. height: math.unit(4, "meters")
  2566. },
  2567. {
  2568. name: "Macro",
  2569. height: math.unit(100, "meters")
  2570. },
  2571. {
  2572. name: "Megamacro",
  2573. height: math.unit(2, "miles"),
  2574. default: true
  2575. },
  2576. {
  2577. name: "Gigamacro",
  2578. height: math.unit(5000, "miles")
  2579. },
  2580. {
  2581. name: "Teramacro",
  2582. height: math.unit(100, "parsecs")
  2583. }
  2584. ]
  2585. ))
  2586. characterMakers.push(() => makeCharacter(
  2587. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2588. {
  2589. front: {
  2590. height: math.unit(2, "meter"),
  2591. weight: math.unit(90, "kg"),
  2592. name: "Front",
  2593. image: {
  2594. source: "./media/characters/gael'rathus/front.svg"
  2595. }
  2596. },
  2597. frontAlt: {
  2598. height: math.unit(2, "meter"),
  2599. weight: math.unit(90, "kg"),
  2600. name: "Front (alt)",
  2601. image: {
  2602. source: "./media/characters/gael'rathus/front-alt.svg"
  2603. }
  2604. },
  2605. frontAlt2: {
  2606. height: math.unit(2, "meter"),
  2607. weight: math.unit(90, "kg"),
  2608. name: "Front (alt 2)",
  2609. image: {
  2610. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2611. }
  2612. }
  2613. },
  2614. [
  2615. {
  2616. name: "Normal",
  2617. height: math.unit(9, "feet"),
  2618. default: true
  2619. },
  2620. {
  2621. name: "Large",
  2622. height: math.unit(25, "feet")
  2623. },
  2624. {
  2625. name: "Macro",
  2626. height: math.unit(0.25, "miles")
  2627. },
  2628. {
  2629. name: "Megamacro",
  2630. height: math.unit(10, "miles")
  2631. }
  2632. ]
  2633. ))
  2634. characterMakers.push(() => makeCharacter(
  2635. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2636. {
  2637. side: {
  2638. height: math.unit(2, "meter"),
  2639. weight: math.unit(140, "kg"),
  2640. name: "Side",
  2641. image: {
  2642. source: "./media/characters/sosha/side.svg",
  2643. bottom: 0.042
  2644. }
  2645. },
  2646. },
  2647. [
  2648. {
  2649. name: "Normal",
  2650. height: math.unit(12, "feet"),
  2651. default: true
  2652. }
  2653. ]
  2654. ))
  2655. characterMakers.push(() => makeCharacter(
  2656. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2657. {
  2658. side: {
  2659. height: math.unit(5 + 5 / 12, "feet"),
  2660. weight: math.unit(170, "kg"),
  2661. name: "Side",
  2662. image: {
  2663. source: "./media/characters/runnola/side.svg",
  2664. extra: 741 / 448,
  2665. bottom: 0.05
  2666. }
  2667. },
  2668. },
  2669. [
  2670. {
  2671. name: "Small",
  2672. height: math.unit(3, "feet")
  2673. },
  2674. {
  2675. name: "Normal",
  2676. height: math.unit(5 + 5 / 12, "feet"),
  2677. default: true
  2678. },
  2679. {
  2680. name: "Big",
  2681. height: math.unit(10, "feet")
  2682. },
  2683. ]
  2684. ))
  2685. characterMakers.push(() => makeCharacter(
  2686. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2687. {
  2688. front: {
  2689. height: math.unit(2, "meter"),
  2690. weight: math.unit(50, "kg"),
  2691. name: "Front",
  2692. image: {
  2693. source: "./media/characters/kurribird/front.svg",
  2694. bottom: 0.015
  2695. }
  2696. },
  2697. frontAlt: {
  2698. height: math.unit(1.5, "meter"),
  2699. weight: math.unit(50, "kg"),
  2700. name: "Front (Alt)",
  2701. image: {
  2702. source: "./media/characters/kurribird/front-alt.svg",
  2703. extra: 1.45
  2704. }
  2705. },
  2706. },
  2707. [
  2708. {
  2709. name: "Normal",
  2710. height: math.unit(7, "feet")
  2711. },
  2712. {
  2713. name: "Big",
  2714. height: math.unit(12, "feet"),
  2715. default: true
  2716. },
  2717. {
  2718. name: "Macro",
  2719. height: math.unit(1500, "feet")
  2720. },
  2721. {
  2722. name: "Megamacro",
  2723. height: math.unit(2, "miles")
  2724. }
  2725. ]
  2726. ))
  2727. characterMakers.push(() => makeCharacter(
  2728. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2729. {
  2730. front: {
  2731. height: math.unit(2, "meter"),
  2732. weight: math.unit(80, "kg"),
  2733. name: "Front",
  2734. image: {
  2735. source: "./media/characters/elbial/front.svg",
  2736. extra: 1643 / 1556,
  2737. bottom: 60.2 / 1696
  2738. }
  2739. },
  2740. side: {
  2741. height: math.unit(2, "meter"),
  2742. weight: math.unit(80, "kg"),
  2743. name: "Side",
  2744. image: {
  2745. source: "./media/characters/elbial/side.svg",
  2746. extra: 1630 / 1565,
  2747. bottom: 71.5 / 1697
  2748. }
  2749. },
  2750. back: {
  2751. height: math.unit(2, "meter"),
  2752. weight: math.unit(80, "kg"),
  2753. name: "Back",
  2754. image: {
  2755. source: "./media/characters/elbial/back.svg",
  2756. extra: 1668 / 1595,
  2757. bottom: 5.6 / 1672
  2758. }
  2759. },
  2760. frontDressed: {
  2761. height: math.unit(2, "meter"),
  2762. weight: math.unit(80, "kg"),
  2763. name: "Front (Dressed)",
  2764. image: {
  2765. source: "./media/characters/elbial/front-dressed.svg",
  2766. extra: 1653 / 1584,
  2767. bottom: 57 / 1708
  2768. }
  2769. },
  2770. genitals: {
  2771. height: math.unit(2 / 3.367, "meter"),
  2772. name: "Genitals",
  2773. image: {
  2774. source: "./media/characters/elbial/genitals.svg"
  2775. }
  2776. },
  2777. },
  2778. [
  2779. {
  2780. name: "Large",
  2781. height: math.unit(100, "feet")
  2782. },
  2783. {
  2784. name: "Macro",
  2785. height: math.unit(500, "feet"),
  2786. default: true
  2787. },
  2788. {
  2789. name: "Megamacro",
  2790. height: math.unit(10, "miles")
  2791. },
  2792. {
  2793. name: "Gigamacro",
  2794. height: math.unit(25000, "miles")
  2795. },
  2796. {
  2797. name: "Full-Size",
  2798. height: math.unit(8000000, "gigaparsecs")
  2799. }
  2800. ]
  2801. ))
  2802. characterMakers.push(() => makeCharacter(
  2803. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2804. {
  2805. front: {
  2806. height: math.unit(2, "meter"),
  2807. weight: math.unit(60, "kg"),
  2808. name: "Front",
  2809. image: {
  2810. source: "./media/characters/noah/front.svg"
  2811. }
  2812. },
  2813. talons: {
  2814. height: math.unit(0.315, "meter"),
  2815. name: "Talons",
  2816. image: {
  2817. source: "./media/characters/noah/talons.svg"
  2818. }
  2819. }
  2820. },
  2821. [
  2822. {
  2823. name: "Large",
  2824. height: math.unit(50, "feet")
  2825. },
  2826. {
  2827. name: "Macro",
  2828. height: math.unit(750, "feet"),
  2829. default: true
  2830. },
  2831. {
  2832. name: "Megamacro",
  2833. height: math.unit(50, "miles")
  2834. },
  2835. {
  2836. name: "Gigamacro",
  2837. height: math.unit(100000, "miles")
  2838. },
  2839. {
  2840. name: "Full-Size",
  2841. height: math.unit(3000000000, "miles")
  2842. }
  2843. ]
  2844. ))
  2845. characterMakers.push(() => makeCharacter(
  2846. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2847. {
  2848. front: {
  2849. height: math.unit(2, "meter"),
  2850. weight: math.unit(80, "kg"),
  2851. name: "Front",
  2852. image: {
  2853. source: "./media/characters/natalya/front.svg"
  2854. }
  2855. },
  2856. back: {
  2857. height: math.unit(2, "meter"),
  2858. weight: math.unit(80, "kg"),
  2859. name: "Back",
  2860. image: {
  2861. source: "./media/characters/natalya/back.svg"
  2862. }
  2863. }
  2864. },
  2865. [
  2866. {
  2867. name: "Normal",
  2868. height: math.unit(150, "feet"),
  2869. default: true
  2870. },
  2871. {
  2872. name: "Megamacro",
  2873. height: math.unit(5, "miles")
  2874. },
  2875. {
  2876. name: "Full-Size",
  2877. height: math.unit(600, "kiloparsecs")
  2878. }
  2879. ]
  2880. ))
  2881. characterMakers.push(() => makeCharacter(
  2882. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2883. {
  2884. front: {
  2885. height: math.unit(2, "meter"),
  2886. weight: math.unit(50, "kg"),
  2887. name: "Front",
  2888. image: {
  2889. source: "./media/characters/erestrebah/front.svg",
  2890. extra: 208 / 193,
  2891. bottom: 0.055
  2892. }
  2893. },
  2894. back: {
  2895. height: math.unit(2, "meter"),
  2896. weight: math.unit(50, "kg"),
  2897. name: "Back",
  2898. image: {
  2899. source: "./media/characters/erestrebah/back.svg",
  2900. extra: 1.3
  2901. }
  2902. }
  2903. },
  2904. [
  2905. {
  2906. name: "Normal",
  2907. height: math.unit(10, "feet")
  2908. },
  2909. {
  2910. name: "Large",
  2911. height: math.unit(50, "feet"),
  2912. default: true
  2913. },
  2914. {
  2915. name: "Macro",
  2916. height: math.unit(300, "feet")
  2917. },
  2918. {
  2919. name: "Macro+",
  2920. height: math.unit(750, "feet")
  2921. },
  2922. {
  2923. name: "Megamacro",
  2924. height: math.unit(3, "miles")
  2925. }
  2926. ]
  2927. ))
  2928. characterMakers.push(() => makeCharacter(
  2929. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2930. {
  2931. front: {
  2932. height: math.unit(2, "meter"),
  2933. weight: math.unit(80, "kg"),
  2934. name: "Front",
  2935. image: {
  2936. source: "./media/characters/jennifer/front.svg",
  2937. bottom: 0.11,
  2938. extra: 1.16
  2939. }
  2940. },
  2941. frontAlt: {
  2942. height: math.unit(2, "meter"),
  2943. weight: math.unit(80, "kg"),
  2944. name: "Front (Alt)",
  2945. image: {
  2946. source: "./media/characters/jennifer/front-alt.svg"
  2947. }
  2948. }
  2949. },
  2950. [
  2951. {
  2952. name: "Canon Height",
  2953. height: math.unit(120, "feet"),
  2954. default: true
  2955. },
  2956. {
  2957. name: "Macro+",
  2958. height: math.unit(300, "feet")
  2959. },
  2960. {
  2961. name: "Megamacro",
  2962. height: math.unit(20000, "feet")
  2963. }
  2964. ]
  2965. ))
  2966. characterMakers.push(() => makeCharacter(
  2967. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2968. {
  2969. front: {
  2970. height: math.unit(2, "meter"),
  2971. weight: math.unit(50, "kg"),
  2972. name: "Front",
  2973. image: {
  2974. source: "./media/characters/kalista/front.svg",
  2975. extra: 1947 / 1700,
  2976. bottom: 76.6 / 1412.98
  2977. }
  2978. },
  2979. back: {
  2980. height: math.unit(2, "meter"),
  2981. weight: math.unit(50, "kg"),
  2982. name: "Back",
  2983. image: {
  2984. source: "./media/characters/kalista/back.svg",
  2985. extra: 1366 / 1156,
  2986. bottom: 33.9 / 1362.78
  2987. }
  2988. }
  2989. },
  2990. [
  2991. {
  2992. name: "Uncomfortably Small",
  2993. height: math.unit(10, "feet")
  2994. },
  2995. {
  2996. name: "Small",
  2997. height: math.unit(30, "feet")
  2998. },
  2999. {
  3000. name: "Macro",
  3001. height: math.unit(100, "feet"),
  3002. default: true
  3003. },
  3004. {
  3005. name: "Macro+",
  3006. height: math.unit(2000, "feet")
  3007. },
  3008. {
  3009. name: "True Form",
  3010. height: math.unit(8924, "miles")
  3011. }
  3012. ]
  3013. ))
  3014. characterMakers.push(() => makeCharacter(
  3015. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3016. {
  3017. front: {
  3018. height: math.unit(2, "meter"),
  3019. weight: math.unit(120, "kg"),
  3020. name: "Front",
  3021. image: {
  3022. source: "./media/characters/ggv/front.svg"
  3023. }
  3024. },
  3025. side: {
  3026. height: math.unit(2, "meter"),
  3027. weight: math.unit(120, "kg"),
  3028. name: "Side",
  3029. image: {
  3030. source: "./media/characters/ggv/side.svg"
  3031. }
  3032. }
  3033. },
  3034. [
  3035. {
  3036. name: "Extremely Puny",
  3037. height: math.unit(9 + 5 / 12, "feet")
  3038. },
  3039. {
  3040. name: "Horribly Small",
  3041. height: math.unit(47.7, "miles"),
  3042. default: true
  3043. },
  3044. {
  3045. name: "Reasonably Sized",
  3046. height: math.unit(25000, "parsecs")
  3047. },
  3048. {
  3049. name: "Slightly Uncompressed",
  3050. height: math.unit(7.77e31, "parsecs")
  3051. },
  3052. {
  3053. name: "Omniversal",
  3054. height: math.unit(1e300, "meters")
  3055. },
  3056. ]
  3057. ))
  3058. characterMakers.push(() => makeCharacter(
  3059. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3060. {
  3061. front: {
  3062. height: math.unit(2, "meter"),
  3063. weight: math.unit(75, "lb"),
  3064. name: "Front",
  3065. image: {
  3066. source: "./media/characters/napalm/front.svg"
  3067. }
  3068. },
  3069. back: {
  3070. height: math.unit(2, "meter"),
  3071. weight: math.unit(75, "lb"),
  3072. name: "Back",
  3073. image: {
  3074. source: "./media/characters/napalm/back.svg"
  3075. }
  3076. }
  3077. },
  3078. [
  3079. {
  3080. name: "Standard",
  3081. height: math.unit(55, "feet"),
  3082. default: true
  3083. }
  3084. ]
  3085. ))
  3086. characterMakers.push(() => makeCharacter(
  3087. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3088. {
  3089. front: {
  3090. height: math.unit(7 + 5 / 6, "feet"),
  3091. weight: math.unit(325, "lb"),
  3092. name: "Front",
  3093. image: {
  3094. source: "./media/characters/asana/front.svg",
  3095. extra: 1133 / 1060,
  3096. bottom: 15.2/1148.6
  3097. }
  3098. },
  3099. back: {
  3100. height: math.unit(7 + 5 / 6, "feet"),
  3101. weight: math.unit(325, "lb"),
  3102. name: "Back",
  3103. image: {
  3104. source: "./media/characters/asana/back.svg",
  3105. extra: 1114 / 1043,
  3106. bottom: 5/1120
  3107. }
  3108. },
  3109. dressedDark: {
  3110. height: math.unit(7 + 5 / 6, "feet"),
  3111. weight: math.unit(325, "lb"),
  3112. name: "Dressed (Dark)",
  3113. image: {
  3114. source: "./media/characters/asana/dressed-dark.svg",
  3115. extra: 1133 / 1060,
  3116. bottom: 15.2/1148.6
  3117. }
  3118. },
  3119. dressedLight: {
  3120. height: math.unit(7 + 5 / 6, "feet"),
  3121. weight: math.unit(325, "lb"),
  3122. name: "Dressed (Light)",
  3123. image: {
  3124. source: "./media/characters/asana/dressed-light.svg",
  3125. extra: 1133 / 1060,
  3126. bottom: 15.2/1148.6
  3127. }
  3128. },
  3129. },
  3130. [
  3131. {
  3132. name: "Standard",
  3133. height: math.unit(7 + 5 / 6, "feet"),
  3134. default: true
  3135. },
  3136. {
  3137. name: "Large",
  3138. height: math.unit(10, "meters")
  3139. },
  3140. {
  3141. name: "Macro",
  3142. height: math.unit(2500, "meters")
  3143. },
  3144. {
  3145. name: "Megamacro",
  3146. height: math.unit(5e6, "meters")
  3147. },
  3148. {
  3149. name: "Examacro",
  3150. height: math.unit(5e12, "lightyears")
  3151. },
  3152. {
  3153. name: "Max Size",
  3154. height: math.unit(1e31, "lightyears")
  3155. }
  3156. ]
  3157. ))
  3158. characterMakers.push(() => makeCharacter(
  3159. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3160. {
  3161. front: {
  3162. height: math.unit(2, "meter"),
  3163. weight: math.unit(60, "kg"),
  3164. name: "Front",
  3165. image: {
  3166. source: "./media/characters/ebony/front.svg",
  3167. bottom: 0.03,
  3168. extra: 1045 / 810 + 0.03
  3169. }
  3170. },
  3171. side: {
  3172. height: math.unit(2, "meter"),
  3173. weight: math.unit(60, "kg"),
  3174. name: "Side",
  3175. image: {
  3176. source: "./media/characters/ebony/side.svg",
  3177. bottom: 0.03,
  3178. extra: 1045 / 810 + 0.03
  3179. }
  3180. },
  3181. back: {
  3182. height: math.unit(2, "meter"),
  3183. weight: math.unit(60, "kg"),
  3184. name: "Back",
  3185. image: {
  3186. source: "./media/characters/ebony/back.svg",
  3187. bottom: 0.01,
  3188. extra: 1045 / 810 + 0.01
  3189. }
  3190. },
  3191. },
  3192. [
  3193. // TODO check why I did this lol
  3194. {
  3195. name: "Standard",
  3196. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3197. default: true
  3198. },
  3199. {
  3200. name: "Macro",
  3201. height: math.unit(200, "feet")
  3202. },
  3203. {
  3204. name: "Gigamacro",
  3205. height: math.unit(13000, "km")
  3206. }
  3207. ]
  3208. ))
  3209. characterMakers.push(() => makeCharacter(
  3210. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3211. {
  3212. front: {
  3213. height: math.unit(6, "feet"),
  3214. weight: math.unit(175, "lb"),
  3215. name: "Front",
  3216. image: {
  3217. source: "./media/characters/mountain/front.svg",
  3218. extra: 972/955,
  3219. bottom: 64/1036.6
  3220. }
  3221. },
  3222. back: {
  3223. height: math.unit(6, "feet"),
  3224. weight: math.unit(175, "lb"),
  3225. name: "Back",
  3226. image: {
  3227. source: "./media/characters/mountain/back.svg",
  3228. extra: 970/950,
  3229. bottom: 28.25/999
  3230. }
  3231. },
  3232. },
  3233. [
  3234. {
  3235. name: "Large",
  3236. height: math.unit(20, "meters")
  3237. },
  3238. {
  3239. name: "Macro",
  3240. height: math.unit(300, "meters")
  3241. },
  3242. {
  3243. name: "Gigamacro",
  3244. height: math.unit(10000, "km"),
  3245. default: true
  3246. },
  3247. {
  3248. name: "Examacro",
  3249. height: math.unit(10e9, "lightyears")
  3250. }
  3251. ]
  3252. ))
  3253. characterMakers.push(() => makeCharacter(
  3254. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3255. {
  3256. front: {
  3257. height: math.unit(8, "feet"),
  3258. weight: math.unit(500, "lb"),
  3259. name: "Front",
  3260. image: {
  3261. source: "./media/characters/rick/front.svg"
  3262. }
  3263. }
  3264. },
  3265. [
  3266. {
  3267. name: "Normal",
  3268. height: math.unit(8, "feet"),
  3269. default: true
  3270. },
  3271. {
  3272. name: "Macro",
  3273. height: math.unit(5, "km")
  3274. }
  3275. ]
  3276. ))
  3277. characterMakers.push(() => makeCharacter(
  3278. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3279. {
  3280. front: {
  3281. height: math.unit(8, "feet"),
  3282. weight: math.unit(120, "lb"),
  3283. name: "Front",
  3284. image: {
  3285. source: "./media/characters/ona/front.svg"
  3286. }
  3287. },
  3288. frontAlt: {
  3289. height: math.unit(8, "feet"),
  3290. weight: math.unit(120, "lb"),
  3291. name: "Front (Alt)",
  3292. image: {
  3293. source: "./media/characters/ona/front-alt.svg"
  3294. }
  3295. },
  3296. back: {
  3297. height: math.unit(8, "feet"),
  3298. weight: math.unit(120, "lb"),
  3299. name: "Back",
  3300. image: {
  3301. source: "./media/characters/ona/back.svg"
  3302. }
  3303. },
  3304. foot: {
  3305. height: math.unit(1.1, "feet"),
  3306. name: "Foot",
  3307. image: {
  3308. source: "./media/characters/ona/foot.svg"
  3309. }
  3310. }
  3311. },
  3312. [
  3313. {
  3314. name: "Megamacro",
  3315. height: math.unit(70, "km"),
  3316. default: true
  3317. },
  3318. {
  3319. name: "Gigamacro",
  3320. height: math.unit(681818, "miles")
  3321. },
  3322. {
  3323. name: "Examacro",
  3324. height: math.unit(3800000, "lightyears")
  3325. },
  3326. ]
  3327. ))
  3328. characterMakers.push(() => makeCharacter(
  3329. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3330. {
  3331. front: {
  3332. height: math.unit(12, "feet"),
  3333. weight: math.unit(3000, "lb"),
  3334. name: "Front",
  3335. image: {
  3336. source: "./media/characters/mech/front.svg",
  3337. bottom: 0.025,
  3338. }
  3339. },
  3340. back: {
  3341. height: math.unit(12, "feet"),
  3342. weight: math.unit(3000, "lb"),
  3343. name: "Back",
  3344. image: {
  3345. source: "./media/characters/mech/back.svg",
  3346. bottom: 0.03,
  3347. }
  3348. }
  3349. },
  3350. [
  3351. {
  3352. name: "Normal",
  3353. height: math.unit(12, "feet")
  3354. },
  3355. {
  3356. name: "Macro",
  3357. height: math.unit(300, "feet"),
  3358. default: true
  3359. },
  3360. {
  3361. name: "Macro+",
  3362. height: math.unit(1500, "feet")
  3363. },
  3364. ]
  3365. ))
  3366. characterMakers.push(() => makeCharacter(
  3367. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3368. {
  3369. front: {
  3370. height: math.unit(1.3, "meter"),
  3371. weight: math.unit(30, "kg"),
  3372. name: "Front",
  3373. image: {
  3374. source: "./media/characters/gregory/front.svg",
  3375. }
  3376. }
  3377. },
  3378. [
  3379. {
  3380. name: "Normal",
  3381. height: math.unit(1.3, "meter"),
  3382. default: true
  3383. },
  3384. {
  3385. name: "Macro",
  3386. height: math.unit(20, "meter")
  3387. }
  3388. ]
  3389. ))
  3390. characterMakers.push(() => makeCharacter(
  3391. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3392. {
  3393. front: {
  3394. height: math.unit(2.8, "meter"),
  3395. weight: math.unit(200, "kg"),
  3396. name: "Front",
  3397. image: {
  3398. source: "./media/characters/elory/front.svg",
  3399. }
  3400. }
  3401. },
  3402. [
  3403. {
  3404. name: "Normal",
  3405. height: math.unit(2.8, "meter"),
  3406. default: true
  3407. },
  3408. {
  3409. name: "Macro",
  3410. height: math.unit(38, "meter")
  3411. }
  3412. ]
  3413. ))
  3414. characterMakers.push(() => makeCharacter(
  3415. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3416. {
  3417. front: {
  3418. height: math.unit(470, "feet"),
  3419. weight: math.unit(924, "tons"),
  3420. name: "Front",
  3421. image: {
  3422. source: "./media/characters/angelpatamon/front.svg",
  3423. }
  3424. }
  3425. },
  3426. [
  3427. {
  3428. name: "Normal",
  3429. height: math.unit(470, "feet"),
  3430. default: true
  3431. },
  3432. {
  3433. name: "Deity Size I",
  3434. height: math.unit(28651.2, "km")
  3435. },
  3436. {
  3437. name: "Deity Size II",
  3438. height: math.unit(171907.2, "km")
  3439. }
  3440. ]
  3441. ))
  3442. characterMakers.push(() => makeCharacter(
  3443. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3444. {
  3445. side: {
  3446. height: math.unit(7.2, "meter"),
  3447. weight: math.unit(8.2, "tons"),
  3448. name: "Side",
  3449. image: {
  3450. source: "./media/characters/cryae/side.svg",
  3451. extra: 3500 / 1500
  3452. }
  3453. }
  3454. },
  3455. [
  3456. {
  3457. name: "Normal",
  3458. height: math.unit(7.2, "meter"),
  3459. default: true
  3460. }
  3461. ]
  3462. ))
  3463. characterMakers.push(() => makeCharacter(
  3464. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3465. {
  3466. front: {
  3467. height: math.unit(6, "feet"),
  3468. weight: math.unit(175, "lb"),
  3469. name: "Front",
  3470. image: {
  3471. source: "./media/characters/xera/front.svg",
  3472. extra: 2377 / 1972,
  3473. bottom: 75.5/2452
  3474. }
  3475. },
  3476. side: {
  3477. height: math.unit(6, "feet"),
  3478. weight: math.unit(175, "lb"),
  3479. name: "Side",
  3480. image: {
  3481. source: "./media/characters/xera/side.svg",
  3482. extra: 2345/2019,
  3483. bottom: 39.7/2384
  3484. }
  3485. },
  3486. back: {
  3487. height: math.unit(6, "feet"),
  3488. weight: math.unit(175, "lb"),
  3489. name: "Back",
  3490. image: {
  3491. source: "./media/characters/xera/back.svg",
  3492. extra: 2095/1984,
  3493. bottom: 67/2166
  3494. }
  3495. },
  3496. },
  3497. [
  3498. {
  3499. name: "Small",
  3500. height: math.unit(10, "feet")
  3501. },
  3502. {
  3503. name: "Macro",
  3504. height: math.unit(500, "meters"),
  3505. default: true
  3506. },
  3507. {
  3508. name: "Macro+",
  3509. height: math.unit(10, "km")
  3510. },
  3511. {
  3512. name: "Gigamacro",
  3513. height: math.unit(25000, "km")
  3514. },
  3515. {
  3516. name: "Teramacro",
  3517. height: math.unit(3e6, "km")
  3518. }
  3519. ]
  3520. ))
  3521. characterMakers.push(() => makeCharacter(
  3522. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3523. {
  3524. front: {
  3525. height: math.unit(6, "feet"),
  3526. weight: math.unit(175, "lb"),
  3527. name: "Front",
  3528. image: {
  3529. source: "./media/characters/nebula/front.svg",
  3530. extra: 2566/2362,
  3531. bottom: 81/2644
  3532. }
  3533. }
  3534. },
  3535. [
  3536. {
  3537. name: "Small",
  3538. height: math.unit(4.5, "meters")
  3539. },
  3540. {
  3541. name: "Macro",
  3542. height: math.unit(1500, "meters"),
  3543. default: true
  3544. },
  3545. {
  3546. name: "Megamacro",
  3547. height: math.unit(150, "km")
  3548. },
  3549. {
  3550. name: "Gigamacro",
  3551. height: math.unit(27000, "km")
  3552. }
  3553. ]
  3554. ))
  3555. characterMakers.push(() => makeCharacter(
  3556. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3557. {
  3558. front: {
  3559. height: math.unit(6, "feet"),
  3560. weight: math.unit(225, "lb"),
  3561. name: "Front",
  3562. image: {
  3563. source: "./media/characters/abysgar/front.svg"
  3564. }
  3565. }
  3566. },
  3567. [
  3568. {
  3569. name: "Small",
  3570. height: math.unit(4.5, "meters")
  3571. },
  3572. {
  3573. name: "Macro",
  3574. height: math.unit(1250, "meters"),
  3575. default: true
  3576. },
  3577. {
  3578. name: "Megamacro",
  3579. height: math.unit(125, "km")
  3580. },
  3581. {
  3582. name: "Gigamacro",
  3583. height: math.unit(26000, "km")
  3584. }
  3585. ]
  3586. ))
  3587. characterMakers.push(() => makeCharacter(
  3588. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3589. {
  3590. front: {
  3591. height: math.unit(6, "feet"),
  3592. weight: math.unit(180, "lb"),
  3593. name: "Front",
  3594. image: {
  3595. source: "./media/characters/yakuz/front.svg"
  3596. }
  3597. }
  3598. },
  3599. [
  3600. {
  3601. name: "Small",
  3602. height: math.unit(5, "meters")
  3603. },
  3604. {
  3605. name: "Macro",
  3606. height: math.unit(1500, "meters"),
  3607. default: true
  3608. },
  3609. {
  3610. name: "Megamacro",
  3611. height: math.unit(200, "km")
  3612. },
  3613. {
  3614. name: "Gigamacro",
  3615. height: math.unit(100000, "km")
  3616. }
  3617. ]
  3618. ))
  3619. characterMakers.push(() => makeCharacter(
  3620. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3621. {
  3622. front: {
  3623. height: math.unit(6, "feet"),
  3624. weight: math.unit(175, "lb"),
  3625. name: "Front",
  3626. image: {
  3627. source: "./media/characters/mirova/front.svg",
  3628. extra: 3334/3071,
  3629. bottom: 42/3375.6
  3630. }
  3631. }
  3632. },
  3633. [
  3634. {
  3635. name: "Small",
  3636. height: math.unit(5, "meters")
  3637. },
  3638. {
  3639. name: "Macro",
  3640. height: math.unit(900, "meters"),
  3641. default: true
  3642. },
  3643. {
  3644. name: "Megamacro",
  3645. height: math.unit(135, "km")
  3646. },
  3647. {
  3648. name: "Gigamacro",
  3649. height: math.unit(20000, "km")
  3650. }
  3651. ]
  3652. ))
  3653. characterMakers.push(() => makeCharacter(
  3654. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3655. {
  3656. side: {
  3657. height: math.unit(28.35, "feet"),
  3658. weight: math.unit(99.75, "tons"),
  3659. name: "Side",
  3660. image: {
  3661. source: "./media/characters/asana-mech/side.svg",
  3662. extra: 923/699,
  3663. bottom: 50/975
  3664. }
  3665. },
  3666. chaingun: {
  3667. height: math.unit(7, "feet"),
  3668. weight: math.unit(2400, "lb"),
  3669. name: "Chaingun",
  3670. image: {
  3671. source: "./media/characters/asana-mech/chaingun.svg"
  3672. }
  3673. },
  3674. laser: {
  3675. height: math.unit(7.12, "feet"),
  3676. weight: math.unit(2000, "lb"),
  3677. name: "Laser",
  3678. image: {
  3679. source: "./media/characters/asana-mech/laser.svg"
  3680. }
  3681. },
  3682. },
  3683. [
  3684. {
  3685. name: "Normal",
  3686. height: math.unit(28.35, "feet"),
  3687. default: true
  3688. },
  3689. {
  3690. name: "Macro",
  3691. height: math.unit(2500, "feet")
  3692. },
  3693. {
  3694. name: "Megamacro",
  3695. height: math.unit(25, "miles")
  3696. },
  3697. {
  3698. name: "Examacro",
  3699. height: math.unit(6e8, "lightyears")
  3700. },
  3701. ]
  3702. ))
  3703. characterMakers.push(() => makeCharacter(
  3704. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3705. {
  3706. front: {
  3707. height: math.unit(5, "meters"),
  3708. weight: math.unit(1000, "kg"),
  3709. name: "Front",
  3710. image: {
  3711. source: "./media/characters/asche/front.svg",
  3712. extra: 1258/1190,
  3713. bottom: 47/1305
  3714. }
  3715. },
  3716. frontUnderwear: {
  3717. height: math.unit(5, "meters"),
  3718. weight: math.unit(1000, "kg"),
  3719. name: "Front (Underwear)",
  3720. image: {
  3721. source: "./media/characters/asche/front-underwear.svg",
  3722. extra: 1258/1190,
  3723. bottom: 47/1305
  3724. }
  3725. },
  3726. frontDressed: {
  3727. height: math.unit(5, "meters"),
  3728. weight: math.unit(1000, "kg"),
  3729. name: "Front (Dressed)",
  3730. image: {
  3731. source: "./media/characters/asche/front-dressed.svg",
  3732. extra: 1258/1190,
  3733. bottom: 47/1305
  3734. }
  3735. },
  3736. frontArmor: {
  3737. height: math.unit(5, "meters"),
  3738. weight: math.unit(1000, "kg"),
  3739. name: "Front (Armored)",
  3740. image: {
  3741. source: "./media/characters/asche/front-armored.svg",
  3742. extra: 1374 / 1308,
  3743. bottom: 23/1397
  3744. }
  3745. },
  3746. mp724: {
  3747. height: math.unit(0.96, "meters"),
  3748. weight: math.unit(38, "kg"),
  3749. name: "H&K MP724",
  3750. image: {
  3751. source: "./media/characters/asche/h&k-mp724.svg"
  3752. }
  3753. },
  3754. side: {
  3755. height: math.unit(5, "meters"),
  3756. weight: math.unit(1000, "kg"),
  3757. name: "Side",
  3758. image: {
  3759. source: "./media/characters/asche/side.svg",
  3760. extra: 1717 / 1609,
  3761. bottom: 0.005
  3762. }
  3763. },
  3764. back: {
  3765. height: math.unit(5, "meters"),
  3766. weight: math.unit(1000, "kg"),
  3767. name: "Back",
  3768. image: {
  3769. source: "./media/characters/asche/back.svg",
  3770. extra: 1570 / 1501
  3771. }
  3772. },
  3773. },
  3774. [
  3775. {
  3776. name: "DEFCON 5",
  3777. height: math.unit(5, "meters")
  3778. },
  3779. {
  3780. name: "DEFCON 4",
  3781. height: math.unit(500, "meters"),
  3782. default: true
  3783. },
  3784. {
  3785. name: "DEFCON 3",
  3786. height: math.unit(5, "km")
  3787. },
  3788. {
  3789. name: "DEFCON 2",
  3790. height: math.unit(500, "km")
  3791. },
  3792. {
  3793. name: "DEFCON 1",
  3794. height: math.unit(500000, "km")
  3795. },
  3796. {
  3797. name: "DEFCON 0",
  3798. height: math.unit(3, "gigaparsecs")
  3799. },
  3800. ]
  3801. ))
  3802. characterMakers.push(() => makeCharacter(
  3803. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3804. {
  3805. front: {
  3806. height: math.unit(2, "meters"),
  3807. weight: math.unit(76, "kg"),
  3808. name: "Front",
  3809. image: {
  3810. source: "./media/characters/gale/front.svg"
  3811. }
  3812. },
  3813. frontAlt1: {
  3814. height: math.unit(2, "meters"),
  3815. weight: math.unit(76, "kg"),
  3816. name: "Front (Alt 1)",
  3817. image: {
  3818. source: "./media/characters/gale/front-alt-1.svg"
  3819. }
  3820. },
  3821. frontAlt2: {
  3822. height: math.unit(2, "meters"),
  3823. weight: math.unit(76, "kg"),
  3824. name: "Front (Alt 2)",
  3825. image: {
  3826. source: "./media/characters/gale/front-alt-2.svg"
  3827. }
  3828. },
  3829. },
  3830. [
  3831. {
  3832. name: "Normal",
  3833. height: math.unit(7, "feet")
  3834. },
  3835. {
  3836. name: "Macro",
  3837. height: math.unit(150, "feet"),
  3838. default: true
  3839. },
  3840. {
  3841. name: "Macro+",
  3842. height: math.unit(300, "feet")
  3843. },
  3844. ]
  3845. ))
  3846. characterMakers.push(() => makeCharacter(
  3847. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3848. {
  3849. front: {
  3850. height: math.unit(2, "meters"),
  3851. weight: math.unit(76, "kg"),
  3852. name: "Front",
  3853. image: {
  3854. source: "./media/characters/draylen/front.svg"
  3855. }
  3856. }
  3857. },
  3858. [
  3859. {
  3860. name: "Macro",
  3861. height: math.unit(150, "feet"),
  3862. default: true
  3863. }
  3864. ]
  3865. ))
  3866. characterMakers.push(() => makeCharacter(
  3867. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3868. {
  3869. front: {
  3870. height: math.unit(7 + 9 / 12, "feet"),
  3871. weight: math.unit(379, "lbs"),
  3872. name: "Front",
  3873. image: {
  3874. source: "./media/characters/chez/front.svg"
  3875. }
  3876. },
  3877. side: {
  3878. height: math.unit(7 + 9 / 12, "feet"),
  3879. weight: math.unit(379, "lbs"),
  3880. name: "Side",
  3881. image: {
  3882. source: "./media/characters/chez/side.svg"
  3883. }
  3884. }
  3885. },
  3886. [
  3887. {
  3888. name: "Normal",
  3889. height: math.unit(7 + 9 / 12, "feet"),
  3890. default: true
  3891. },
  3892. {
  3893. name: "God King",
  3894. height: math.unit(9750000, "meters")
  3895. }
  3896. ]
  3897. ))
  3898. characterMakers.push(() => makeCharacter(
  3899. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3900. {
  3901. front: {
  3902. height: math.unit(6, "feet"),
  3903. weight: math.unit(275, "lbs"),
  3904. name: "Front",
  3905. image: {
  3906. source: "./media/characters/kaylum/front.svg",
  3907. bottom: 0.01,
  3908. extra: 1166 / 1031
  3909. }
  3910. },
  3911. frontWingless: {
  3912. height: math.unit(6, "feet"),
  3913. weight: math.unit(275, "lbs"),
  3914. name: "Front (Wingless)",
  3915. image: {
  3916. source: "./media/characters/kaylum/front-wingless.svg",
  3917. bottom: 0.01,
  3918. extra: 1117 / 1031
  3919. }
  3920. }
  3921. },
  3922. [
  3923. {
  3924. name: "Normal",
  3925. height: math.unit(3.05, "meters")
  3926. },
  3927. {
  3928. name: "Master",
  3929. height: math.unit(5.5, "meters")
  3930. },
  3931. {
  3932. name: "Rampage",
  3933. height: math.unit(19, "meters")
  3934. },
  3935. {
  3936. name: "Macro Lite",
  3937. height: math.unit(37, "meters")
  3938. },
  3939. {
  3940. name: "Hyper Predator",
  3941. height: math.unit(61, "meters")
  3942. },
  3943. {
  3944. name: "Macro",
  3945. height: math.unit(138, "meters"),
  3946. default: true
  3947. }
  3948. ]
  3949. ))
  3950. characterMakers.push(() => makeCharacter(
  3951. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3952. {
  3953. front: {
  3954. height: math.unit(6, "feet"),
  3955. weight: math.unit(150, "lbs"),
  3956. name: "Front",
  3957. image: {
  3958. source: "./media/characters/geta/front.svg"
  3959. }
  3960. }
  3961. },
  3962. [
  3963. {
  3964. name: "Micro",
  3965. height: math.unit(3, "inches"),
  3966. default: true
  3967. },
  3968. {
  3969. name: "Normal",
  3970. height: math.unit(5 + 5 / 12, "feet")
  3971. }
  3972. ]
  3973. ))
  3974. characterMakers.push(() => makeCharacter(
  3975. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3976. {
  3977. front: {
  3978. height: math.unit(6, "feet"),
  3979. weight: math.unit(300, "lbs"),
  3980. name: "Front",
  3981. image: {
  3982. source: "./media/characters/tyrnn/front.svg"
  3983. }
  3984. }
  3985. },
  3986. [
  3987. {
  3988. name: "Main Height",
  3989. height: math.unit(355, "feet"),
  3990. default: true
  3991. },
  3992. {
  3993. name: "Fave. Height",
  3994. height: math.unit(2400, "feet")
  3995. }
  3996. ]
  3997. ))
  3998. characterMakers.push(() => makeCharacter(
  3999. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4000. {
  4001. front: {
  4002. height: math.unit(6, "feet"),
  4003. weight: math.unit(300, "lbs"),
  4004. name: "Front",
  4005. image: {
  4006. source: "./media/characters/appledectomy/front.svg"
  4007. }
  4008. }
  4009. },
  4010. [
  4011. {
  4012. name: "Macro",
  4013. height: math.unit(2500, "feet")
  4014. },
  4015. {
  4016. name: "Megamacro",
  4017. height: math.unit(50, "miles"),
  4018. default: true
  4019. },
  4020. {
  4021. name: "Gigamacro",
  4022. height: math.unit(5000, "miles")
  4023. },
  4024. {
  4025. name: "Teramacro",
  4026. height: math.unit(250000, "miles")
  4027. },
  4028. ]
  4029. ))
  4030. characterMakers.push(() => makeCharacter(
  4031. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4032. {
  4033. front: {
  4034. height: math.unit(6, "feet"),
  4035. weight: math.unit(200, "lbs"),
  4036. name: "Front",
  4037. image: {
  4038. source: "./media/characters/vulpes/front.svg",
  4039. extra: 573 / 543,
  4040. bottom: 0.033
  4041. }
  4042. },
  4043. side: {
  4044. height: math.unit(6, "feet"),
  4045. weight: math.unit(200, "lbs"),
  4046. name: "Side",
  4047. image: {
  4048. source: "./media/characters/vulpes/side.svg",
  4049. extra: 573 / 543,
  4050. bottom: 0.01
  4051. }
  4052. },
  4053. back: {
  4054. height: math.unit(6, "feet"),
  4055. weight: math.unit(200, "lbs"),
  4056. name: "Back",
  4057. image: {
  4058. source: "./media/characters/vulpes/back.svg",
  4059. extra: 573 / 543,
  4060. }
  4061. },
  4062. feet: {
  4063. height: math.unit(1.276, "feet"),
  4064. name: "Feet",
  4065. image: {
  4066. source: "./media/characters/vulpes/feet.svg"
  4067. }
  4068. },
  4069. maw: {
  4070. height: math.unit(1.18, "feet"),
  4071. name: "Maw",
  4072. image: {
  4073. source: "./media/characters/vulpes/maw.svg"
  4074. }
  4075. },
  4076. },
  4077. [
  4078. {
  4079. name: "Micro",
  4080. height: math.unit(2, "inches")
  4081. },
  4082. {
  4083. name: "Normal",
  4084. height: math.unit(6.3, "feet")
  4085. },
  4086. {
  4087. name: "Macro",
  4088. height: math.unit(850, "feet")
  4089. },
  4090. {
  4091. name: "Megamacro",
  4092. height: math.unit(7500, "feet"),
  4093. default: true
  4094. },
  4095. {
  4096. name: "Gigamacro",
  4097. height: math.unit(570000, "miles")
  4098. }
  4099. ]
  4100. ))
  4101. characterMakers.push(() => makeCharacter(
  4102. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4103. {
  4104. front: {
  4105. height: math.unit(6, "feet"),
  4106. weight: math.unit(210, "lbs"),
  4107. name: "Front",
  4108. image: {
  4109. source: "./media/characters/rain-fallen/front.svg"
  4110. }
  4111. },
  4112. side: {
  4113. height: math.unit(6, "feet"),
  4114. weight: math.unit(210, "lbs"),
  4115. name: "Side",
  4116. image: {
  4117. source: "./media/characters/rain-fallen/side.svg"
  4118. }
  4119. },
  4120. back: {
  4121. height: math.unit(6, "feet"),
  4122. weight: math.unit(210, "lbs"),
  4123. name: "Back",
  4124. image: {
  4125. source: "./media/characters/rain-fallen/back.svg"
  4126. }
  4127. },
  4128. feral: {
  4129. height: math.unit(9, "feet"),
  4130. weight: math.unit(700, "lbs"),
  4131. name: "Feral",
  4132. image: {
  4133. source: "./media/characters/rain-fallen/feral.svg"
  4134. }
  4135. },
  4136. },
  4137. [
  4138. {
  4139. name: "Normal",
  4140. height: math.unit(5, "meter")
  4141. },
  4142. {
  4143. name: "Macro",
  4144. height: math.unit(150, "meter"),
  4145. default: true
  4146. },
  4147. {
  4148. name: "Megamacro",
  4149. height: math.unit(278e6, "meter")
  4150. },
  4151. {
  4152. name: "Gigamacro",
  4153. height: math.unit(2e9, "meter")
  4154. },
  4155. {
  4156. name: "Teramacro",
  4157. height: math.unit(8e12, "meter")
  4158. },
  4159. {
  4160. name: "Devourer",
  4161. height: math.unit(14, "zettameters")
  4162. },
  4163. {
  4164. name: "Scarlet King",
  4165. height: math.unit(18, "yottameters")
  4166. },
  4167. {
  4168. name: "Void",
  4169. height: math.unit(6.66e66, "yottameters")
  4170. }
  4171. ]
  4172. ))
  4173. characterMakers.push(() => makeCharacter(
  4174. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4175. {
  4176. standing: {
  4177. height: math.unit(6, "feet"),
  4178. weight: math.unit(180, "lbs"),
  4179. name: "Standing",
  4180. image: {
  4181. source: "./media/characters/zaakira/standing.svg"
  4182. }
  4183. },
  4184. laying: {
  4185. height: math.unit(3, "feet"),
  4186. weight: math.unit(180, "lbs"),
  4187. name: "Laying",
  4188. image: {
  4189. source: "./media/characters/zaakira/laying.svg"
  4190. }
  4191. },
  4192. },
  4193. [
  4194. {
  4195. name: "Normal",
  4196. height: math.unit(12, "feet")
  4197. },
  4198. {
  4199. name: "Macro",
  4200. height: math.unit(279, "feet"),
  4201. default: true
  4202. }
  4203. ]
  4204. ))
  4205. characterMakers.push(() => makeCharacter(
  4206. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4207. {
  4208. femSfw: {
  4209. height: math.unit(8, "feet"),
  4210. weight: math.unit(350, "lb"),
  4211. name: "Fem",
  4212. image: {
  4213. source: "./media/characters/sigvald/fem-sfw.svg",
  4214. extra: 182/164,
  4215. bottom: 8.7/190.5
  4216. }
  4217. },
  4218. femNsfw: {
  4219. height: math.unit(8, "feet"),
  4220. weight: math.unit(350, "lb"),
  4221. name: "Fem (NSFW)",
  4222. image: {
  4223. source: "./media/characters/sigvald/fem-nsfw.svg",
  4224. extra: 182/164,
  4225. bottom: 8.7/190.5
  4226. }
  4227. },
  4228. maleNsfw: {
  4229. height: math.unit(8, "feet"),
  4230. weight: math.unit(350, "lb"),
  4231. name: "Male (NSFW)",
  4232. image: {
  4233. source: "./media/characters/sigvald/male-nsfw.svg",
  4234. extra: 182/164,
  4235. bottom: 8.7/190.5
  4236. }
  4237. },
  4238. hermNsfw: {
  4239. height: math.unit(8, "feet"),
  4240. weight: math.unit(350, "lb"),
  4241. name: "Herm (NSFW)",
  4242. image: {
  4243. source: "./media/characters/sigvald/herm-nsfw.svg",
  4244. extra: 182/164,
  4245. bottom: 8.7/190.5
  4246. }
  4247. },
  4248. dick: {
  4249. height: math.unit(2.36, "feet"),
  4250. name: "Dick",
  4251. image: {
  4252. source: "./media/characters/sigvald/dick.svg"
  4253. }
  4254. },
  4255. eye: {
  4256. height: math.unit(0.31, "feet"),
  4257. name: "Eye",
  4258. image: {
  4259. source: "./media/characters/sigvald/eye.svg"
  4260. }
  4261. },
  4262. mouth: {
  4263. height: math.unit(0.92, "feet"),
  4264. name: "Mouth",
  4265. image: {
  4266. source: "./media/characters/sigvald/mouth.svg"
  4267. }
  4268. },
  4269. paws: {
  4270. height: math.unit(2.2, "feet"),
  4271. name: "Paws",
  4272. image: {
  4273. source: "./media/characters/sigvald/paws.svg"
  4274. }
  4275. }
  4276. },
  4277. [
  4278. {
  4279. name: "Normal",
  4280. height: math.unit(8, "feet")
  4281. },
  4282. {
  4283. name: "Large",
  4284. height: math.unit(12, "feet")
  4285. },
  4286. {
  4287. name: "Larger",
  4288. height: math.unit(20, "feet")
  4289. },
  4290. {
  4291. name: "Macro",
  4292. height: math.unit(150, "feet")
  4293. },
  4294. {
  4295. name: "Macro+",
  4296. height: math.unit(200, "feet"),
  4297. default: true
  4298. },
  4299. ]
  4300. ))
  4301. characterMakers.push(() => makeCharacter(
  4302. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4303. {
  4304. side: {
  4305. height: math.unit(12, "feet"),
  4306. weight: math.unit(2000, "kg"),
  4307. name: "Side",
  4308. image: {
  4309. source: "./media/characters/scott/side.svg",
  4310. extra: 754 / 724,
  4311. bottom: 0.069
  4312. }
  4313. },
  4314. upright: {
  4315. height: math.unit(12, "feet"),
  4316. weight: math.unit(2000, "kg"),
  4317. name: "Upright",
  4318. image: {
  4319. source: "./media/characters/scott/upright.svg",
  4320. extra: 3881 / 3722,
  4321. bottom: 0.05
  4322. }
  4323. },
  4324. },
  4325. [
  4326. {
  4327. name: "Normal",
  4328. height: math.unit(12, "feet"),
  4329. default: true
  4330. },
  4331. ]
  4332. ))
  4333. characterMakers.push(() => makeCharacter(
  4334. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4335. {
  4336. side: {
  4337. height: math.unit(8, "meters"),
  4338. weight: math.unit(84755, "lbs"),
  4339. name: "Side",
  4340. image: {
  4341. source: "./media/characters/tobias/side.svg",
  4342. extra: 1474 / 1096,
  4343. bottom: 38.9 / 1513.1235
  4344. }
  4345. },
  4346. },
  4347. [
  4348. {
  4349. name: "Normal",
  4350. height: math.unit(8, "meters"),
  4351. default: true
  4352. },
  4353. ]
  4354. ))
  4355. characterMakers.push(() => makeCharacter(
  4356. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4357. {
  4358. front: {
  4359. height: math.unit(5.5, "feet"),
  4360. weight: math.unit(400, "lbs"),
  4361. name: "Front",
  4362. image: {
  4363. source: "./media/characters/kieran/front.svg",
  4364. extra: 2694 / 2364,
  4365. bottom: 217 / 2908
  4366. }
  4367. },
  4368. side: {
  4369. height: math.unit(5.5, "feet"),
  4370. weight: math.unit(400, "lbs"),
  4371. name: "Side",
  4372. image: {
  4373. source: "./media/characters/kieran/side.svg",
  4374. extra: 875 / 777,
  4375. bottom: 84.6 / 959
  4376. }
  4377. },
  4378. },
  4379. [
  4380. {
  4381. name: "Normal",
  4382. height: math.unit(5.5, "feet"),
  4383. default: true
  4384. },
  4385. ]
  4386. ))
  4387. characterMakers.push(() => makeCharacter(
  4388. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4389. {
  4390. side: {
  4391. height: math.unit(2, "meters"),
  4392. weight: math.unit(70, "kg"),
  4393. name: "Side",
  4394. image: {
  4395. source: "./media/characters/sanya/side.svg",
  4396. bottom: 0.02,
  4397. extra: 1.02
  4398. }
  4399. },
  4400. },
  4401. [
  4402. {
  4403. name: "Small",
  4404. height: math.unit(2, "meters")
  4405. },
  4406. {
  4407. name: "Normal",
  4408. height: math.unit(3, "meters")
  4409. },
  4410. {
  4411. name: "Macro",
  4412. height: math.unit(16, "meters"),
  4413. default: true
  4414. },
  4415. ]
  4416. ))
  4417. characterMakers.push(() => makeCharacter(
  4418. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4419. {
  4420. front: {
  4421. height: math.unit(2, "meters"),
  4422. weight: math.unit(120, "kg"),
  4423. name: "Front",
  4424. image: {
  4425. source: "./media/characters/miranda/front.svg",
  4426. extra: 195/185,
  4427. bottom: 10.9/206.5
  4428. }
  4429. },
  4430. back: {
  4431. height: math.unit(2, "meters"),
  4432. weight: math.unit(120, "kg"),
  4433. name: "Back",
  4434. image: {
  4435. source: "./media/characters/miranda/back.svg",
  4436. extra: 201/193,
  4437. bottom: 2.3/203.7
  4438. }
  4439. },
  4440. },
  4441. [
  4442. {
  4443. name: "Normal",
  4444. height: math.unit(10, "feet"),
  4445. default: true
  4446. }
  4447. ]
  4448. ))
  4449. characterMakers.push(() => makeCharacter(
  4450. { name: "James", species: ["deer"], tags: ["anthro"] },
  4451. {
  4452. side: {
  4453. height: math.unit(2, "meters"),
  4454. weight: math.unit(100, "kg"),
  4455. name: "Front",
  4456. image: {
  4457. source: "./media/characters/james/front.svg",
  4458. extra: 10 / 8.5
  4459. }
  4460. },
  4461. },
  4462. [
  4463. {
  4464. name: "Normal",
  4465. height: math.unit(8.5, "feet"),
  4466. default: true
  4467. }
  4468. ]
  4469. ))
  4470. characterMakers.push(() => makeCharacter(
  4471. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4472. {
  4473. side: {
  4474. height: math.unit(9.5, "feet"),
  4475. weight: math.unit(2500, "lbs"),
  4476. name: "Side",
  4477. image: {
  4478. source: "./media/characters/heather/side.svg"
  4479. }
  4480. },
  4481. },
  4482. [
  4483. {
  4484. name: "Normal",
  4485. height: math.unit(9.5, "feet"),
  4486. default: true
  4487. }
  4488. ]
  4489. ))
  4490. characterMakers.push(() => makeCharacter(
  4491. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4492. {
  4493. side: {
  4494. height: math.unit(6.5, "feet"),
  4495. weight: math.unit(400, "lbs"),
  4496. name: "Side",
  4497. image: {
  4498. source: "./media/characters/lukas/side.svg",
  4499. extra: 7.25 / 6.5
  4500. }
  4501. },
  4502. },
  4503. [
  4504. {
  4505. name: "Normal",
  4506. height: math.unit(6.5, "feet"),
  4507. default: true
  4508. }
  4509. ]
  4510. ))
  4511. characterMakers.push(() => makeCharacter(
  4512. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4513. {
  4514. side: {
  4515. height: math.unit(5, "feet"),
  4516. weight: math.unit(3000, "lbs"),
  4517. name: "Side",
  4518. image: {
  4519. source: "./media/characters/louise/side.svg"
  4520. }
  4521. },
  4522. },
  4523. [
  4524. {
  4525. name: "Normal",
  4526. height: math.unit(5, "feet"),
  4527. default: true
  4528. }
  4529. ]
  4530. ))
  4531. characterMakers.push(() => makeCharacter(
  4532. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4533. {
  4534. side: {
  4535. height: math.unit(6, "feet"),
  4536. weight: math.unit(150, "lbs"),
  4537. name: "Side",
  4538. image: {
  4539. source: "./media/characters/ramona/side.svg"
  4540. }
  4541. },
  4542. },
  4543. [
  4544. {
  4545. name: "Normal",
  4546. height: math.unit(5.3, "meters"),
  4547. default: true
  4548. },
  4549. {
  4550. name: "Macro",
  4551. height: math.unit(20, "stories")
  4552. },
  4553. {
  4554. name: "Macro+",
  4555. height: math.unit(50, "stories")
  4556. },
  4557. ]
  4558. ))
  4559. characterMakers.push(() => makeCharacter(
  4560. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4561. {
  4562. standing: {
  4563. height: math.unit(5.75, "feet"),
  4564. weight: math.unit(160, "lbs"),
  4565. name: "Standing",
  4566. image: {
  4567. source: "./media/characters/deerpuff/standing.svg",
  4568. extra: 682 / 624
  4569. }
  4570. },
  4571. sitting: {
  4572. height: math.unit(5.75 / 1.79, "feet"),
  4573. weight: math.unit(160, "lbs"),
  4574. name: "Sitting",
  4575. image: {
  4576. source: "./media/characters/deerpuff/sitting.svg",
  4577. bottom: 44 / 400,
  4578. extra: 1
  4579. }
  4580. },
  4581. taurLaying: {
  4582. height: math.unit(6, "feet"),
  4583. weight: math.unit(400, "lbs"),
  4584. name: "Taur (Laying)",
  4585. image: {
  4586. source: "./media/characters/deerpuff/taur-laying.svg"
  4587. }
  4588. },
  4589. },
  4590. [
  4591. {
  4592. name: "Puffball",
  4593. height: math.unit(6, "inches")
  4594. },
  4595. {
  4596. name: "Normalpuff",
  4597. height: math.unit(5.75, "feet")
  4598. },
  4599. {
  4600. name: "Macropuff",
  4601. height: math.unit(1500, "feet"),
  4602. default: true
  4603. },
  4604. {
  4605. name: "Megapuff",
  4606. height: math.unit(500, "miles")
  4607. },
  4608. {
  4609. name: "Gigapuff",
  4610. height: math.unit(250000, "miles")
  4611. },
  4612. {
  4613. name: "Omegapuff",
  4614. height: math.unit(1000, "lightyears")
  4615. },
  4616. ]
  4617. ))
  4618. characterMakers.push(() => makeCharacter(
  4619. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4620. {
  4621. stomping: {
  4622. height: math.unit(6, "feet"),
  4623. weight: math.unit(170, "lbs"),
  4624. name: "Stomping",
  4625. image: {
  4626. source: "./media/characters/vivian/stomping.svg"
  4627. }
  4628. },
  4629. sitting: {
  4630. height: math.unit(6 / 1.75, "feet"),
  4631. weight: math.unit(170, "lbs"),
  4632. name: "Sitting",
  4633. image: {
  4634. source: "./media/characters/vivian/sitting.svg",
  4635. bottom: 1 / 6.4,
  4636. extra: 1,
  4637. }
  4638. },
  4639. },
  4640. [
  4641. {
  4642. name: "Normal",
  4643. height: math.unit(7, "feet"),
  4644. default: true
  4645. },
  4646. {
  4647. name: "Macro",
  4648. height: math.unit(10, "stories")
  4649. },
  4650. {
  4651. name: "Macro+",
  4652. height: math.unit(30, "stories")
  4653. },
  4654. {
  4655. name: "Megamacro",
  4656. height: math.unit(10, "miles")
  4657. },
  4658. {
  4659. name: "Megamacro+",
  4660. height: math.unit(2750000, "meters")
  4661. },
  4662. ]
  4663. ))
  4664. characterMakers.push(() => makeCharacter(
  4665. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4666. {
  4667. front: {
  4668. height: math.unit(6, "feet"),
  4669. weight: math.unit(160, "lbs"),
  4670. name: "Front",
  4671. image: {
  4672. source: "./media/characters/prince/front.svg",
  4673. extra: 3400 / 3000
  4674. }
  4675. },
  4676. jumping: {
  4677. height: math.unit(6, "feet"),
  4678. weight: math.unit(160, "lbs"),
  4679. name: "Jumping",
  4680. image: {
  4681. source: "./media/characters/prince/jump.svg",
  4682. extra: 2555 / 2134
  4683. }
  4684. },
  4685. },
  4686. [
  4687. {
  4688. name: "Normal",
  4689. height: math.unit(7.75, "feet"),
  4690. default: true
  4691. },
  4692. {
  4693. name: "Not cute",
  4694. height: math.unit(17, "feet")
  4695. },
  4696. {
  4697. name: "I said NOT",
  4698. height: math.unit(91, "feet")
  4699. },
  4700. {
  4701. name: "Please stop",
  4702. height: math.unit(560, "feet")
  4703. },
  4704. {
  4705. name: "What have you done",
  4706. height: math.unit(2200, "feet")
  4707. },
  4708. {
  4709. name: "Deer God",
  4710. height: math.unit(3.6, "miles")
  4711. },
  4712. ]
  4713. ))
  4714. characterMakers.push(() => makeCharacter(
  4715. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4716. {
  4717. standing: {
  4718. height: math.unit(6, "feet"),
  4719. weight: math.unit(300, "lbs"),
  4720. name: "Standing",
  4721. image: {
  4722. source: "./media/characters/psymon/standing.svg",
  4723. extra: 1888 / 1810,
  4724. bottom: 0.05
  4725. }
  4726. },
  4727. slithering: {
  4728. height: math.unit(6, "feet"),
  4729. weight: math.unit(300, "lbs"),
  4730. name: "Slithering",
  4731. image: {
  4732. source: "./media/characters/psymon/slithering.svg",
  4733. extra: 1330 / 1224
  4734. }
  4735. },
  4736. slitheringAlt: {
  4737. height: math.unit(6, "feet"),
  4738. weight: math.unit(300, "lbs"),
  4739. name: "Slithering (Alt)",
  4740. image: {
  4741. source: "./media/characters/psymon/slithering-alt.svg",
  4742. extra: 1330 / 1224
  4743. }
  4744. },
  4745. },
  4746. [
  4747. {
  4748. name: "Normal",
  4749. height: math.unit(11.25, "feet"),
  4750. default: true
  4751. },
  4752. {
  4753. name: "Large",
  4754. height: math.unit(27, "feet")
  4755. },
  4756. {
  4757. name: "Giant",
  4758. height: math.unit(87, "feet")
  4759. },
  4760. {
  4761. name: "Macro",
  4762. height: math.unit(365, "feet")
  4763. },
  4764. {
  4765. name: "Megamacro",
  4766. height: math.unit(3, "miles")
  4767. },
  4768. {
  4769. name: "World Serpent",
  4770. height: math.unit(8000, "miles")
  4771. },
  4772. ]
  4773. ))
  4774. characterMakers.push(() => makeCharacter(
  4775. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4776. {
  4777. front: {
  4778. height: math.unit(6, "feet"),
  4779. weight: math.unit(180, "lbs"),
  4780. name: "Front",
  4781. image: {
  4782. source: "./media/characters/daimos/front.svg",
  4783. extra: 4160 / 3897,
  4784. bottom: 0.021
  4785. }
  4786. }
  4787. },
  4788. [
  4789. {
  4790. name: "Normal",
  4791. height: math.unit(8, "feet"),
  4792. default: true
  4793. },
  4794. {
  4795. name: "Big Dog",
  4796. height: math.unit(22, "feet")
  4797. },
  4798. {
  4799. name: "Macro",
  4800. height: math.unit(127, "feet")
  4801. },
  4802. {
  4803. name: "Megamacro",
  4804. height: math.unit(3600, "feet")
  4805. },
  4806. ]
  4807. ))
  4808. characterMakers.push(() => makeCharacter(
  4809. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4810. {
  4811. side: {
  4812. height: math.unit(6, "feet"),
  4813. weight: math.unit(180, "lbs"),
  4814. name: "Side",
  4815. image: {
  4816. source: "./media/characters/blake/side.svg",
  4817. extra: 1212 / 1120,
  4818. bottom: 0.05
  4819. }
  4820. },
  4821. crouched: {
  4822. height: math.unit(6 * 0.57, "feet"),
  4823. weight: math.unit(180, "lbs"),
  4824. name: "Crouched",
  4825. image: {
  4826. source: "./media/characters/blake/crouched.svg",
  4827. extra: 840 / 587,
  4828. bottom: 0.04
  4829. }
  4830. },
  4831. bent: {
  4832. height: math.unit(6 * 0.75, "feet"),
  4833. weight: math.unit(180, "lbs"),
  4834. name: "Bent",
  4835. image: {
  4836. source: "./media/characters/blake/bent.svg",
  4837. extra: 592 / 544,
  4838. bottom: 0.035
  4839. }
  4840. },
  4841. },
  4842. [
  4843. {
  4844. name: "Normal",
  4845. height: math.unit(8 + 1 / 6, "feet"),
  4846. default: true
  4847. },
  4848. {
  4849. name: "Big Backside",
  4850. height: math.unit(37, "feet")
  4851. },
  4852. {
  4853. name: "Subway Shredder",
  4854. height: math.unit(72, "feet")
  4855. },
  4856. {
  4857. name: "City Carver",
  4858. height: math.unit(1675, "feet")
  4859. },
  4860. {
  4861. name: "Tectonic Tweaker",
  4862. height: math.unit(2300, "miles")
  4863. },
  4864. ]
  4865. ))
  4866. characterMakers.push(() => makeCharacter(
  4867. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4868. {
  4869. front: {
  4870. height: math.unit(6, "feet"),
  4871. weight: math.unit(180, "lbs"),
  4872. name: "Front",
  4873. image: {
  4874. source: "./media/characters/guisetto/front.svg",
  4875. extra: 856 / 817,
  4876. bottom: 0.06
  4877. }
  4878. },
  4879. airborne: {
  4880. height: math.unit(6, "feet"),
  4881. weight: math.unit(180, "lbs"),
  4882. name: "Airborne",
  4883. image: {
  4884. source: "./media/characters/guisetto/airborne.svg",
  4885. extra: 584 / 525
  4886. }
  4887. },
  4888. },
  4889. [
  4890. {
  4891. name: "Normal",
  4892. height: math.unit(10 + 11 / 12, "feet"),
  4893. default: true
  4894. },
  4895. {
  4896. name: "Large",
  4897. height: math.unit(35, "feet")
  4898. },
  4899. {
  4900. name: "Macro",
  4901. height: math.unit(475, "feet")
  4902. },
  4903. ]
  4904. ))
  4905. characterMakers.push(() => makeCharacter(
  4906. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4907. {
  4908. front: {
  4909. height: math.unit(6, "feet"),
  4910. weight: math.unit(180, "lbs"),
  4911. name: "Front",
  4912. image: {
  4913. source: "./media/characters/luxor/front.svg",
  4914. extra: 2940 / 2152
  4915. }
  4916. },
  4917. back: {
  4918. height: math.unit(6, "feet"),
  4919. weight: math.unit(180, "lbs"),
  4920. name: "Back",
  4921. image: {
  4922. source: "./media/characters/luxor/back.svg",
  4923. extra: 1083 / 960
  4924. }
  4925. },
  4926. },
  4927. [
  4928. {
  4929. name: "Normal",
  4930. height: math.unit(5 + 5 / 6, "feet"),
  4931. default: true
  4932. },
  4933. {
  4934. name: "Lamp",
  4935. height: math.unit(50, "feet")
  4936. },
  4937. {
  4938. name: "Lämp",
  4939. height: math.unit(300, "feet")
  4940. },
  4941. {
  4942. name: "The sun is a lamp",
  4943. height: math.unit(250000, "miles")
  4944. },
  4945. ]
  4946. ))
  4947. characterMakers.push(() => makeCharacter(
  4948. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4949. {
  4950. front: {
  4951. height: math.unit(6, "feet"),
  4952. weight: math.unit(50, "lbs"),
  4953. name: "Front",
  4954. image: {
  4955. source: "./media/characters/huoyan/front.svg"
  4956. }
  4957. },
  4958. side: {
  4959. height: math.unit(6, "feet"),
  4960. weight: math.unit(180, "lbs"),
  4961. name: "Side",
  4962. image: {
  4963. source: "./media/characters/huoyan/side.svg"
  4964. }
  4965. },
  4966. },
  4967. [
  4968. {
  4969. name: "Chef",
  4970. height: math.unit(9, "feet")
  4971. },
  4972. {
  4973. name: "Normal",
  4974. height: math.unit(65, "feet"),
  4975. default: true
  4976. },
  4977. {
  4978. name: "Macro",
  4979. height: math.unit(780, "feet")
  4980. },
  4981. {
  4982. name: "Flaming Mountain",
  4983. height: math.unit(4.8, "miles")
  4984. },
  4985. {
  4986. name: "Celestial",
  4987. height: math.unit(765000, "miles")
  4988. },
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4993. {
  4994. front: {
  4995. height: math.unit(5 + 3 / 4, "feet"),
  4996. weight: math.unit(120, "lbs"),
  4997. name: "Front",
  4998. image: {
  4999. source: "./media/characters/tails/front.svg"
  5000. }
  5001. }
  5002. },
  5003. [
  5004. {
  5005. name: "Normal",
  5006. height: math.unit(5 + 3 / 4, "feet"),
  5007. default: true
  5008. }
  5009. ]
  5010. ))
  5011. characterMakers.push(() => makeCharacter(
  5012. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5013. {
  5014. front: {
  5015. height: math.unit(4, "feet"),
  5016. weight: math.unit(50, "lbs"),
  5017. name: "Front",
  5018. image: {
  5019. source: "./media/characters/rainy/front.svg"
  5020. }
  5021. }
  5022. },
  5023. [
  5024. {
  5025. name: "Macro",
  5026. height: math.unit(800, "feet"),
  5027. default: true
  5028. }
  5029. ]
  5030. ))
  5031. characterMakers.push(() => makeCharacter(
  5032. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5033. {
  5034. front: {
  5035. height: math.unit(6, "feet"),
  5036. weight: math.unit(150, "lbs"),
  5037. name: "Front",
  5038. image: {
  5039. source: "./media/characters/rainier/front.svg"
  5040. }
  5041. }
  5042. },
  5043. [
  5044. {
  5045. name: "Micro",
  5046. height: math.unit(2, "mm"),
  5047. default: true
  5048. }
  5049. ]
  5050. ))
  5051. characterMakers.push(() => makeCharacter(
  5052. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5053. {
  5054. front: {
  5055. height: math.unit(6, "feet"),
  5056. weight: math.unit(180, "lbs"),
  5057. name: "Front",
  5058. image: {
  5059. source: "./media/characters/andy/front.svg"
  5060. }
  5061. }
  5062. },
  5063. [
  5064. {
  5065. name: "Normal",
  5066. height: math.unit(8, "feet"),
  5067. default: true
  5068. },
  5069. {
  5070. name: "Macro",
  5071. height: math.unit(1000, "feet")
  5072. },
  5073. {
  5074. name: "Megamacro",
  5075. height: math.unit(5, "miles")
  5076. },
  5077. {
  5078. name: "Gigamacro",
  5079. height: math.unit(5000, "miles")
  5080. },
  5081. ]
  5082. ))
  5083. characterMakers.push(() => makeCharacter(
  5084. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5085. {
  5086. front: {
  5087. height: math.unit(6, "feet"),
  5088. weight: math.unit(210, "lbs"),
  5089. name: "Front",
  5090. image: {
  5091. source: "./media/characters/cimmaron/front-sfw.svg",
  5092. extra: 701 / 676,
  5093. bottom: 0.046
  5094. }
  5095. },
  5096. back: {
  5097. height: math.unit(6, "feet"),
  5098. weight: math.unit(210, "lbs"),
  5099. name: "Back",
  5100. image: {
  5101. source: "./media/characters/cimmaron/back-sfw.svg",
  5102. extra: 701 / 676,
  5103. bottom: 0.046
  5104. }
  5105. },
  5106. frontNsfw: {
  5107. height: math.unit(6, "feet"),
  5108. weight: math.unit(210, "lbs"),
  5109. name: "Front (NSFW)",
  5110. image: {
  5111. source: "./media/characters/cimmaron/front-nsfw.svg",
  5112. extra: 701 / 676,
  5113. bottom: 0.046
  5114. }
  5115. },
  5116. backNsfw: {
  5117. height: math.unit(6, "feet"),
  5118. weight: math.unit(210, "lbs"),
  5119. name: "Back (NSFW)",
  5120. image: {
  5121. source: "./media/characters/cimmaron/back-nsfw.svg",
  5122. extra: 701 / 676,
  5123. bottom: 0.046
  5124. }
  5125. },
  5126. dick: {
  5127. height: math.unit(1.714, "feet"),
  5128. name: "Dick",
  5129. image: {
  5130. source: "./media/characters/cimmaron/dick.svg"
  5131. }
  5132. },
  5133. },
  5134. [
  5135. {
  5136. name: "Normal",
  5137. height: math.unit(6, "feet"),
  5138. default: true
  5139. },
  5140. {
  5141. name: "Macro Mayor",
  5142. height: math.unit(350, "meters")
  5143. },
  5144. ]
  5145. ))
  5146. characterMakers.push(() => makeCharacter(
  5147. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5148. {
  5149. front: {
  5150. height: math.unit(6, "feet"),
  5151. weight: math.unit(200, "lbs"),
  5152. name: "Front",
  5153. image: {
  5154. source: "./media/characters/akari/front.svg",
  5155. extra: 962 / 901,
  5156. bottom: 0.04
  5157. }
  5158. }
  5159. },
  5160. [
  5161. {
  5162. name: "Micro",
  5163. height: math.unit(5, "inches"),
  5164. default: true
  5165. },
  5166. {
  5167. name: "Normal",
  5168. height: math.unit(7, "feet")
  5169. },
  5170. ]
  5171. ))
  5172. characterMakers.push(() => makeCharacter(
  5173. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5174. {
  5175. front: {
  5176. height: math.unit(6, "feet"),
  5177. weight: math.unit(140, "lbs"),
  5178. name: "Front",
  5179. image: {
  5180. source: "./media/characters/cynosura/front.svg",
  5181. extra: 896 / 847
  5182. }
  5183. },
  5184. back: {
  5185. height: math.unit(6, "feet"),
  5186. weight: math.unit(140, "lbs"),
  5187. name: "Back",
  5188. image: {
  5189. source: "./media/characters/cynosura/back.svg",
  5190. extra: 1365 / 1250
  5191. }
  5192. },
  5193. },
  5194. [
  5195. {
  5196. name: "Micro",
  5197. height: math.unit(4, "inches")
  5198. },
  5199. {
  5200. name: "Normal",
  5201. height: math.unit(5.75, "feet"),
  5202. default: true
  5203. },
  5204. {
  5205. name: "Tall",
  5206. height: math.unit(10, "feet")
  5207. },
  5208. {
  5209. name: "Big",
  5210. height: math.unit(20, "feet")
  5211. },
  5212. {
  5213. name: "Macro",
  5214. height: math.unit(50, "feet")
  5215. },
  5216. ]
  5217. ))
  5218. characterMakers.push(() => makeCharacter(
  5219. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5220. {
  5221. front: {
  5222. height: math.unit(6, "feet"),
  5223. weight: math.unit(170, "lbs"),
  5224. name: "Front",
  5225. image: {
  5226. source: "./media/characters/gin/front.svg",
  5227. extra: 1.053,
  5228. bottom: 0.025
  5229. }
  5230. },
  5231. foot: {
  5232. height: math.unit(6 / 4.25, "feet"),
  5233. name: "Foot",
  5234. image: {
  5235. source: "./media/characters/gin/foot.svg"
  5236. }
  5237. },
  5238. sole: {
  5239. height: math.unit(6 / 4.40, "feet"),
  5240. name: "Sole",
  5241. image: {
  5242. source: "./media/characters/gin/sole.svg"
  5243. }
  5244. },
  5245. },
  5246. [
  5247. {
  5248. name: "Normal",
  5249. height: math.unit(13 + 2 / 12, "feet")
  5250. },
  5251. {
  5252. name: "Macro",
  5253. height: math.unit(1500, "feet")
  5254. },
  5255. {
  5256. name: "Megamacro",
  5257. height: math.unit(200, "miles"),
  5258. default: true
  5259. },
  5260. {
  5261. name: "Gigamacro",
  5262. height: math.unit(500, "megameters")
  5263. },
  5264. {
  5265. name: "Teramacro",
  5266. height: math.unit(15, "lightyears")
  5267. }
  5268. ]
  5269. ))
  5270. characterMakers.push(() => makeCharacter(
  5271. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5272. {
  5273. front: {
  5274. height: math.unit(6 + 1 / 6, "feet"),
  5275. weight: math.unit(178, "lbs"),
  5276. name: "Front",
  5277. image: {
  5278. source: "./media/characters/guy/front.svg"
  5279. }
  5280. }
  5281. },
  5282. [
  5283. {
  5284. name: "Normal",
  5285. height: math.unit(6 + 1 / 6, "feet"),
  5286. default: true
  5287. },
  5288. {
  5289. name: "Large",
  5290. height: math.unit(25 + 7 / 12, "feet")
  5291. },
  5292. {
  5293. name: "Macro",
  5294. height: math.unit(60 + 9 / 12, "feet")
  5295. },
  5296. {
  5297. name: "Macro+",
  5298. height: math.unit(246, "feet")
  5299. },
  5300. {
  5301. name: "Macro++",
  5302. height: math.unit(878, "feet")
  5303. }
  5304. ]
  5305. ))
  5306. characterMakers.push(() => makeCharacter(
  5307. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5308. {
  5309. front: {
  5310. height: math.unit(9, "feet"),
  5311. weight: math.unit(800, "lbs"),
  5312. name: "Front",
  5313. image: {
  5314. source: "./media/characters/tiberius/front.svg",
  5315. extra: 2295 / 2071
  5316. }
  5317. },
  5318. back: {
  5319. height: math.unit(9, "feet"),
  5320. weight: math.unit(800, "lbs"),
  5321. name: "Back",
  5322. image: {
  5323. source: "./media/characters/tiberius/back.svg",
  5324. extra: 2373 / 2160
  5325. }
  5326. },
  5327. },
  5328. [
  5329. {
  5330. name: "Normal",
  5331. height: math.unit(9, "feet"),
  5332. default: true
  5333. }
  5334. ]
  5335. ))
  5336. characterMakers.push(() => makeCharacter(
  5337. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5338. {
  5339. front: {
  5340. height: math.unit(6, "feet"),
  5341. weight: math.unit(600, "lbs"),
  5342. name: "Front",
  5343. image: {
  5344. source: "./media/characters/surgo/front.svg",
  5345. extra: 3591 / 2227
  5346. }
  5347. },
  5348. back: {
  5349. height: math.unit(6, "feet"),
  5350. weight: math.unit(600, "lbs"),
  5351. name: "Back",
  5352. image: {
  5353. source: "./media/characters/surgo/back.svg",
  5354. extra: 3557 / 2228
  5355. }
  5356. },
  5357. laying: {
  5358. height: math.unit(6 * 0.85, "feet"),
  5359. weight: math.unit(600, "lbs"),
  5360. name: "Laying",
  5361. image: {
  5362. source: "./media/characters/surgo/laying.svg"
  5363. }
  5364. },
  5365. },
  5366. [
  5367. {
  5368. name: "Normal",
  5369. height: math.unit(6, "feet"),
  5370. default: true
  5371. }
  5372. ]
  5373. ))
  5374. characterMakers.push(() => makeCharacter(
  5375. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5376. {
  5377. side: {
  5378. height: math.unit(6, "feet"),
  5379. weight: math.unit(150, "lbs"),
  5380. name: "Side",
  5381. image: {
  5382. source: "./media/characters/cibus/side.svg",
  5383. extra: 800 / 400
  5384. }
  5385. },
  5386. },
  5387. [
  5388. {
  5389. name: "Normal",
  5390. height: math.unit(6, "feet"),
  5391. default: true
  5392. }
  5393. ]
  5394. ))
  5395. characterMakers.push(() => makeCharacter(
  5396. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5397. {
  5398. front: {
  5399. height: math.unit(6, "feet"),
  5400. weight: math.unit(240, "lbs"),
  5401. name: "Front",
  5402. image: {
  5403. source: "./media/characters/nibbles/front.svg"
  5404. }
  5405. },
  5406. side: {
  5407. height: math.unit(6, "feet"),
  5408. weight: math.unit(240, "lbs"),
  5409. name: "Side",
  5410. image: {
  5411. source: "./media/characters/nibbles/side.svg"
  5412. }
  5413. },
  5414. },
  5415. [
  5416. {
  5417. name: "Normal",
  5418. height: math.unit(9, "feet"),
  5419. default: true
  5420. }
  5421. ]
  5422. ))
  5423. characterMakers.push(() => makeCharacter(
  5424. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5425. {
  5426. side: {
  5427. height: math.unit(5 + 1 / 6, "feet"),
  5428. weight: math.unit(130, "lbs"),
  5429. name: "Side",
  5430. image: {
  5431. source: "./media/characters/rikky/side.svg"
  5432. }
  5433. },
  5434. },
  5435. [
  5436. {
  5437. name: "Normal",
  5438. height: math.unit(5 + 1 / 6, "feet")
  5439. },
  5440. {
  5441. name: "Macro",
  5442. height: math.unit(152, "feet"),
  5443. default: true
  5444. },
  5445. {
  5446. name: "Megamacro",
  5447. height: math.unit(7, "miles")
  5448. }
  5449. ]
  5450. ))
  5451. characterMakers.push(() => makeCharacter(
  5452. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5453. {
  5454. side: {
  5455. height: math.unit(370, "cm"),
  5456. weight: math.unit(350, "lbs"),
  5457. name: "Side",
  5458. image: {
  5459. source: "./media/characters/malfressa/side.svg"
  5460. }
  5461. },
  5462. walking: {
  5463. height: math.unit(370, "cm"),
  5464. weight: math.unit(350, "lbs"),
  5465. name: "Walking",
  5466. image: {
  5467. source: "./media/characters/malfressa/walking.svg"
  5468. }
  5469. },
  5470. feral: {
  5471. height: math.unit(2500, "cm"),
  5472. weight: math.unit(100000, "lbs"),
  5473. name: "Feral",
  5474. image: {
  5475. source: "./media/characters/malfressa/feral.svg",
  5476. extra: 2108 / 837,
  5477. bottom: 0.02
  5478. }
  5479. },
  5480. },
  5481. [
  5482. {
  5483. name: "Normal",
  5484. height: math.unit(370, "cm")
  5485. },
  5486. {
  5487. name: "Macro",
  5488. height: math.unit(300, "meters"),
  5489. default: true
  5490. }
  5491. ]
  5492. ))
  5493. characterMakers.push(() => makeCharacter(
  5494. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5495. {
  5496. front: {
  5497. height: math.unit(6, "feet"),
  5498. weight: math.unit(60, "kg"),
  5499. name: "Front",
  5500. image: {
  5501. source: "./media/characters/jaro/front.svg"
  5502. }
  5503. },
  5504. back: {
  5505. height: math.unit(6, "feet"),
  5506. weight: math.unit(60, "kg"),
  5507. name: "Back",
  5508. image: {
  5509. source: "./media/characters/jaro/back.svg"
  5510. }
  5511. },
  5512. },
  5513. [
  5514. {
  5515. name: "Micro",
  5516. height: math.unit(7, "inches")
  5517. },
  5518. {
  5519. name: "Normal",
  5520. height: math.unit(5.5, "feet"),
  5521. default: true
  5522. },
  5523. {
  5524. name: "Minimacro",
  5525. height: math.unit(20, "feet")
  5526. },
  5527. {
  5528. name: "Macro",
  5529. height: math.unit(200, "meters")
  5530. }
  5531. ]
  5532. ))
  5533. characterMakers.push(() => makeCharacter(
  5534. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5535. {
  5536. front: {
  5537. height: math.unit(6, "feet"),
  5538. weight: math.unit(195, "lb"),
  5539. name: "Front",
  5540. image: {
  5541. source: "./media/characters/rogue/front.svg"
  5542. }
  5543. },
  5544. },
  5545. [
  5546. {
  5547. name: "Macro",
  5548. height: math.unit(90, "feet"),
  5549. default: true
  5550. },
  5551. ]
  5552. ))
  5553. characterMakers.push(() => makeCharacter(
  5554. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5555. {
  5556. front: {
  5557. height: math.unit(5 + 8 / 12, "feet"),
  5558. weight: math.unit(140, "lb"),
  5559. name: "Front",
  5560. image: {
  5561. source: "./media/characters/piper/front.svg",
  5562. extra: 3928 / 3681
  5563. }
  5564. },
  5565. },
  5566. [
  5567. {
  5568. name: "Micro",
  5569. height: math.unit(2, "inches")
  5570. },
  5571. {
  5572. name: "Normal",
  5573. height: math.unit(5 + 8 / 12, "feet")
  5574. },
  5575. {
  5576. name: "Macro",
  5577. height: math.unit(250, "feet"),
  5578. default: true
  5579. },
  5580. {
  5581. name: "Megamacro",
  5582. height: math.unit(7, "miles")
  5583. },
  5584. ]
  5585. ))
  5586. characterMakers.push(() => makeCharacter(
  5587. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5588. {
  5589. front: {
  5590. height: math.unit(6, "feet"),
  5591. weight: math.unit(220, "lb"),
  5592. name: "Front",
  5593. image: {
  5594. source: "./media/characters/gemini/front.svg"
  5595. }
  5596. },
  5597. back: {
  5598. height: math.unit(6, "feet"),
  5599. weight: math.unit(220, "lb"),
  5600. name: "Back",
  5601. image: {
  5602. source: "./media/characters/gemini/back.svg"
  5603. }
  5604. },
  5605. kneeling: {
  5606. height: math.unit(6 / 1.5, "feet"),
  5607. weight: math.unit(220, "lb"),
  5608. name: "Kneeling",
  5609. image: {
  5610. source: "./media/characters/gemini/kneeling.svg",
  5611. bottom: 0.02
  5612. }
  5613. },
  5614. },
  5615. [
  5616. {
  5617. name: "Macro",
  5618. height: math.unit(300, "meters"),
  5619. default: true
  5620. },
  5621. {
  5622. name: "Megamacro",
  5623. height: math.unit(6900, "meters")
  5624. },
  5625. ]
  5626. ))
  5627. characterMakers.push(() => makeCharacter(
  5628. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5629. {
  5630. anthro: {
  5631. height: math.unit(2.35, "meters"),
  5632. weight: math.unit(73, "kg"),
  5633. name: "Anthro",
  5634. image: {
  5635. source: "./media/characters/alicia/anthro.svg",
  5636. extra: 2571 / 2385,
  5637. bottom: 75 / 2648
  5638. }
  5639. },
  5640. paw: {
  5641. height: math.unit(1.32, "feet"),
  5642. name: "Paw",
  5643. image: {
  5644. source: "./media/characters/alicia/paw.svg"
  5645. }
  5646. },
  5647. feral: {
  5648. height: math.unit(1.69, "meters"),
  5649. weight: math.unit(73, "kg"),
  5650. name: "Feral",
  5651. image: {
  5652. source: "./media/characters/alicia/feral.svg",
  5653. extra: 2123 / 1715,
  5654. bottom: 222 / 2349
  5655. }
  5656. },
  5657. },
  5658. [
  5659. {
  5660. name: "Normal",
  5661. height: math.unit(2.35, "meters")
  5662. },
  5663. {
  5664. name: "Macro",
  5665. height: math.unit(60, "meters"),
  5666. default: true
  5667. },
  5668. {
  5669. name: "Megamacro",
  5670. height: math.unit(10000, "kilometers")
  5671. },
  5672. ]
  5673. ))
  5674. characterMakers.push(() => makeCharacter(
  5675. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5676. {
  5677. front: {
  5678. height: math.unit(7, "feet"),
  5679. weight: math.unit(250, "lbs"),
  5680. name: "Front",
  5681. image: {
  5682. source: "./media/characters/archy/front.svg"
  5683. }
  5684. }
  5685. },
  5686. [
  5687. {
  5688. name: "Micro",
  5689. height: math.unit(1, "inch")
  5690. },
  5691. {
  5692. name: "Shorty",
  5693. height: math.unit(5, "feet")
  5694. },
  5695. {
  5696. name: "Normal",
  5697. height: math.unit(7, "feet")
  5698. },
  5699. {
  5700. name: "Macro",
  5701. height: math.unit(600, "meters"),
  5702. default: true
  5703. },
  5704. {
  5705. name: "Megamacro",
  5706. height: math.unit(1, "mile")
  5707. },
  5708. ]
  5709. ))
  5710. characterMakers.push(() => makeCharacter(
  5711. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5712. {
  5713. front: {
  5714. height: math.unit(1.65, "meters"),
  5715. weight: math.unit(74, "kg"),
  5716. name: "Front",
  5717. image: {
  5718. source: "./media/characters/berri/front.svg",
  5719. extra: 857 / 837,
  5720. bottom: 18 / 877
  5721. }
  5722. },
  5723. bum: {
  5724. height: math.unit(1.46, "feet"),
  5725. name: "Bum",
  5726. image: {
  5727. source: "./media/characters/berri/bum.svg"
  5728. }
  5729. },
  5730. mouth: {
  5731. height: math.unit(0.44, "feet"),
  5732. name: "Mouth",
  5733. image: {
  5734. source: "./media/characters/berri/mouth.svg"
  5735. }
  5736. },
  5737. paw: {
  5738. height: math.unit(0.826, "feet"),
  5739. name: "Paw",
  5740. image: {
  5741. source: "./media/characters/berri/paw.svg"
  5742. }
  5743. },
  5744. },
  5745. [
  5746. {
  5747. name: "Normal",
  5748. height: math.unit(1.65, "meters")
  5749. },
  5750. {
  5751. name: "Macro",
  5752. height: math.unit(60, "m"),
  5753. default: true
  5754. },
  5755. {
  5756. name: "Megamacro",
  5757. height: math.unit(9.213, "km")
  5758. },
  5759. {
  5760. name: "Planet Eater",
  5761. height: math.unit(489, "megameters")
  5762. },
  5763. {
  5764. name: "Teramacro",
  5765. height: math.unit(2471635000000, "meters")
  5766. },
  5767. {
  5768. name: "Examacro",
  5769. height: math.unit(8.0624e+26, "meters")
  5770. }
  5771. ]
  5772. ))
  5773. characterMakers.push(() => makeCharacter(
  5774. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5775. {
  5776. front: {
  5777. height: math.unit(1.72, "meters"),
  5778. weight: math.unit(68, "kg"),
  5779. name: "Front",
  5780. image: {
  5781. source: "./media/characters/lexi/front.svg"
  5782. }
  5783. }
  5784. },
  5785. [
  5786. {
  5787. name: "Very Smol",
  5788. height: math.unit(10, "mm")
  5789. },
  5790. {
  5791. name: "Micro",
  5792. height: math.unit(6.8, "cm"),
  5793. default: true
  5794. },
  5795. {
  5796. name: "Normal",
  5797. height: math.unit(1.72, "m")
  5798. }
  5799. ]
  5800. ))
  5801. characterMakers.push(() => makeCharacter(
  5802. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5803. {
  5804. front: {
  5805. height: math.unit(1.69, "meters"),
  5806. weight: math.unit(68, "kg"),
  5807. name: "Front",
  5808. image: {
  5809. source: "./media/characters/martin/front.svg",
  5810. extra: 596 / 581
  5811. }
  5812. }
  5813. },
  5814. [
  5815. {
  5816. name: "Micro",
  5817. height: math.unit(6.85, "cm"),
  5818. default: true
  5819. },
  5820. {
  5821. name: "Normal",
  5822. height: math.unit(1.69, "m")
  5823. }
  5824. ]
  5825. ))
  5826. characterMakers.push(() => makeCharacter(
  5827. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5828. {
  5829. front: {
  5830. height: math.unit(1.69, "meters"),
  5831. weight: math.unit(68, "kg"),
  5832. name: "Front",
  5833. image: {
  5834. source: "./media/characters/juno/front.svg"
  5835. }
  5836. }
  5837. },
  5838. [
  5839. {
  5840. name: "Micro",
  5841. height: math.unit(7, "cm")
  5842. },
  5843. {
  5844. name: "Normal",
  5845. height: math.unit(1.89, "m")
  5846. },
  5847. {
  5848. name: "Macro",
  5849. height: math.unit(353, "meters"),
  5850. default: true
  5851. }
  5852. ]
  5853. ))
  5854. characterMakers.push(() => makeCharacter(
  5855. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5856. {
  5857. front: {
  5858. height: math.unit(1.93, "meters"),
  5859. weight: math.unit(83, "kg"),
  5860. name: "Front",
  5861. image: {
  5862. source: "./media/characters/samantha/front.svg"
  5863. }
  5864. },
  5865. frontClothed: {
  5866. height: math.unit(1.93, "meters"),
  5867. weight: math.unit(83, "kg"),
  5868. name: "Front (Clothed)",
  5869. image: {
  5870. source: "./media/characters/samantha/front-clothed.svg"
  5871. }
  5872. },
  5873. back: {
  5874. height: math.unit(1.93, "meters"),
  5875. weight: math.unit(83, "kg"),
  5876. name: "Back",
  5877. image: {
  5878. source: "./media/characters/samantha/back.svg"
  5879. }
  5880. },
  5881. },
  5882. [
  5883. {
  5884. name: "Normal",
  5885. height: math.unit(1.93, "m")
  5886. },
  5887. {
  5888. name: "Macro",
  5889. height: math.unit(74, "meters"),
  5890. default: true
  5891. },
  5892. {
  5893. name: "Macro+",
  5894. height: math.unit(223, "meters"),
  5895. },
  5896. {
  5897. name: "Megamacro",
  5898. height: math.unit(8381, "meters"),
  5899. },
  5900. {
  5901. name: "Megamacro+",
  5902. height: math.unit(12000, "kilometers")
  5903. },
  5904. ]
  5905. ))
  5906. characterMakers.push(() => makeCharacter(
  5907. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5908. {
  5909. front: {
  5910. height: math.unit(1.92, "meters"),
  5911. weight: math.unit(80, "kg"),
  5912. name: "Front",
  5913. image: {
  5914. source: "./media/characters/dr-clay/front.svg"
  5915. }
  5916. },
  5917. frontClothed: {
  5918. height: math.unit(1.92, "meters"),
  5919. weight: math.unit(80, "kg"),
  5920. name: "Front (Clothed)",
  5921. image: {
  5922. source: "./media/characters/dr-clay/front-clothed.svg"
  5923. }
  5924. }
  5925. },
  5926. [
  5927. {
  5928. name: "Normal",
  5929. height: math.unit(1.92, "m")
  5930. },
  5931. {
  5932. name: "Macro",
  5933. height: math.unit(214, "meters"),
  5934. default: true
  5935. },
  5936. {
  5937. name: "Macro+",
  5938. height: math.unit(12.237, "meters"),
  5939. },
  5940. {
  5941. name: "Megamacro",
  5942. height: math.unit(557, "megameters"),
  5943. },
  5944. {
  5945. name: "Unimaginable",
  5946. height: math.unit(120e9, "lightyears")
  5947. },
  5948. ]
  5949. ))
  5950. characterMakers.push(() => makeCharacter(
  5951. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5952. {
  5953. front: {
  5954. height: math.unit(2, "meters"),
  5955. weight: math.unit(80, "kg"),
  5956. name: "Front",
  5957. image: {
  5958. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5959. }
  5960. }
  5961. },
  5962. [
  5963. {
  5964. name: "Teramacro",
  5965. height: math.unit(500000, "lightyears"),
  5966. default: true
  5967. },
  5968. ]
  5969. ))
  5970. characterMakers.push(() => makeCharacter(
  5971. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5972. {
  5973. front: {
  5974. height: math.unit(2, "meters"),
  5975. weight: math.unit(150, "kg"),
  5976. name: "Front",
  5977. image: {
  5978. source: "./media/characters/vemus/front.svg",
  5979. extra: 2384 / 2084,
  5980. bottom: 0.0123
  5981. }
  5982. }
  5983. },
  5984. [
  5985. {
  5986. name: "Normal",
  5987. height: math.unit(3.75, "meters"),
  5988. default: true
  5989. },
  5990. {
  5991. name: "Big",
  5992. height: math.unit(8, "meters")
  5993. },
  5994. {
  5995. name: "Macro",
  5996. height: math.unit(100, "meters")
  5997. },
  5998. {
  5999. name: "Macro+",
  6000. height: math.unit(1500, "meters")
  6001. },
  6002. {
  6003. name: "Stellar",
  6004. height: math.unit(14e8, "meters")
  6005. },
  6006. ]
  6007. ))
  6008. characterMakers.push(() => makeCharacter(
  6009. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6010. {
  6011. front: {
  6012. height: math.unit(2, "meters"),
  6013. weight: math.unit(70, "kg"),
  6014. name: "Front",
  6015. image: {
  6016. source: "./media/characters/beherit/front.svg",
  6017. extra: 1408 / 1242
  6018. }
  6019. }
  6020. },
  6021. [
  6022. {
  6023. name: "Normal",
  6024. height: math.unit(6, "feet")
  6025. },
  6026. {
  6027. name: "Lorg",
  6028. height: math.unit(25, "feet"),
  6029. default: true
  6030. },
  6031. {
  6032. name: "Lorger",
  6033. height: math.unit(75, "feet")
  6034. },
  6035. {
  6036. name: "Macro",
  6037. height: math.unit(200, "meters")
  6038. },
  6039. ]
  6040. ))
  6041. characterMakers.push(() => makeCharacter(
  6042. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6043. {
  6044. front: {
  6045. height: math.unit(2, "meters"),
  6046. weight: math.unit(150, "kg"),
  6047. name: "Front",
  6048. image: {
  6049. source: "./media/characters/everett/front.svg",
  6050. extra: 2038 / 1737,
  6051. bottom: 0.03
  6052. }
  6053. },
  6054. paw: {
  6055. height: math.unit(2 / 3.6, "meters"),
  6056. name: "Paw",
  6057. image: {
  6058. source: "./media/characters/everett/paw.svg"
  6059. }
  6060. },
  6061. },
  6062. [
  6063. {
  6064. name: "Normal",
  6065. height: math.unit(15, "feet"),
  6066. default: true
  6067. },
  6068. {
  6069. name: "Lorg",
  6070. height: math.unit(70, "feet"),
  6071. default: true
  6072. },
  6073. {
  6074. name: "Lorger",
  6075. height: math.unit(250, "feet")
  6076. },
  6077. {
  6078. name: "Macro",
  6079. height: math.unit(500, "meters")
  6080. },
  6081. ]
  6082. ))
  6083. characterMakers.push(() => makeCharacter(
  6084. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6085. {
  6086. front: {
  6087. height: math.unit(2, "meters"),
  6088. weight: math.unit(86, "kg"),
  6089. name: "Front",
  6090. image: {
  6091. source: "./media/characters/rose-lion/front.svg"
  6092. }
  6093. },
  6094. bent: {
  6095. height: math.unit(2 / 1.4288, "meters"),
  6096. weight: math.unit(86, "kg"),
  6097. name: "Bent",
  6098. image: {
  6099. source: "./media/characters/rose-lion/bent.svg"
  6100. }
  6101. }
  6102. },
  6103. [
  6104. {
  6105. name: "Mini-Micro",
  6106. height: math.unit(1, "cm")
  6107. },
  6108. {
  6109. name: "Micro",
  6110. height: math.unit(3.5, "inches"),
  6111. default: true
  6112. },
  6113. {
  6114. name: "Normal",
  6115. height: math.unit(6 + 1 / 6, "feet")
  6116. },
  6117. {
  6118. name: "Mini-Macro",
  6119. height: math.unit(9 + 10 / 12, "feet")
  6120. },
  6121. ]
  6122. ))
  6123. characterMakers.push(() => makeCharacter(
  6124. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6125. {
  6126. front: {
  6127. height: math.unit(2, "meters"),
  6128. weight: math.unit(350, "lbs"),
  6129. name: "Front",
  6130. image: {
  6131. source: "./media/characters/regal/front.svg"
  6132. }
  6133. },
  6134. back: {
  6135. height: math.unit(2, "meters"),
  6136. weight: math.unit(350, "lbs"),
  6137. name: "Back",
  6138. image: {
  6139. source: "./media/characters/regal/back.svg"
  6140. }
  6141. },
  6142. },
  6143. [
  6144. {
  6145. name: "Macro",
  6146. height: math.unit(350, "feet"),
  6147. default: true
  6148. }
  6149. ]
  6150. ))
  6151. characterMakers.push(() => makeCharacter(
  6152. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6153. {
  6154. front: {
  6155. height: math.unit(4 + 11 / 12, "feet"),
  6156. weight: math.unit(100, "lbs"),
  6157. name: "Front",
  6158. image: {
  6159. source: "./media/characters/opal/front.svg"
  6160. }
  6161. },
  6162. frontAlt: {
  6163. height: math.unit(4 + 11 / 12, "feet"),
  6164. weight: math.unit(100, "lbs"),
  6165. name: "Front (Alt)",
  6166. image: {
  6167. source: "./media/characters/opal/front-alt.svg"
  6168. }
  6169. },
  6170. },
  6171. [
  6172. {
  6173. name: "Small",
  6174. height: math.unit(4 + 11 / 12, "feet")
  6175. },
  6176. {
  6177. name: "Normal",
  6178. height: math.unit(20, "feet"),
  6179. default: true
  6180. },
  6181. {
  6182. name: "Macro",
  6183. height: math.unit(120, "feet")
  6184. },
  6185. {
  6186. name: "Megamacro",
  6187. height: math.unit(80, "miles")
  6188. },
  6189. {
  6190. name: "True Size",
  6191. height: math.unit(100000, "lightyears")
  6192. },
  6193. ]
  6194. ))
  6195. characterMakers.push(() => makeCharacter(
  6196. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6197. {
  6198. front: {
  6199. height: math.unit(6, "feet"),
  6200. weight: math.unit(200, "lbs"),
  6201. name: "Front",
  6202. image: {
  6203. source: "./media/characters/vector-wuff/front.svg"
  6204. }
  6205. }
  6206. },
  6207. [
  6208. {
  6209. name: "Normal",
  6210. height: math.unit(2.8, "meters")
  6211. },
  6212. {
  6213. name: "Macro",
  6214. height: math.unit(450, "meters"),
  6215. default: true
  6216. },
  6217. {
  6218. name: "Megamacro",
  6219. height: math.unit(15, "kilometers")
  6220. }
  6221. ]
  6222. ))
  6223. characterMakers.push(() => makeCharacter(
  6224. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6225. {
  6226. front: {
  6227. height: math.unit(6, "feet"),
  6228. weight: math.unit(256, "lbs"),
  6229. name: "Front",
  6230. image: {
  6231. source: "./media/characters/dannik/front.svg"
  6232. }
  6233. }
  6234. },
  6235. [
  6236. {
  6237. name: "Macro",
  6238. height: math.unit(69.57, "meters"),
  6239. default: true
  6240. },
  6241. ]
  6242. ))
  6243. characterMakers.push(() => makeCharacter(
  6244. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6245. {
  6246. front: {
  6247. height: math.unit(6, "feet"),
  6248. weight: math.unit(120, "lbs"),
  6249. name: "Front",
  6250. image: {
  6251. source: "./media/characters/azura-saharah/front.svg"
  6252. }
  6253. },
  6254. back: {
  6255. height: math.unit(6, "feet"),
  6256. weight: math.unit(120, "lbs"),
  6257. name: "Back",
  6258. image: {
  6259. source: "./media/characters/azura-saharah/back.svg"
  6260. }
  6261. },
  6262. },
  6263. [
  6264. {
  6265. name: "Macro",
  6266. height: math.unit(100, "feet"),
  6267. default: true
  6268. },
  6269. ]
  6270. ))
  6271. characterMakers.push(() => makeCharacter(
  6272. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6273. {
  6274. side: {
  6275. height: math.unit(5 + 4 / 12, "feet"),
  6276. weight: math.unit(163, "lbs"),
  6277. name: "Side",
  6278. image: {
  6279. source: "./media/characters/kennedy/side.svg"
  6280. }
  6281. }
  6282. },
  6283. [
  6284. {
  6285. name: "Standard Doggo",
  6286. height: math.unit(5 + 4 / 12, "feet")
  6287. },
  6288. {
  6289. name: "Big Doggo",
  6290. height: math.unit(25 + 3 / 12, "feet"),
  6291. default: true
  6292. },
  6293. ]
  6294. ))
  6295. characterMakers.push(() => makeCharacter(
  6296. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6297. {
  6298. front: {
  6299. height: math.unit(6, "feet"),
  6300. weight: math.unit(90, "lbs"),
  6301. name: "Front",
  6302. image: {
  6303. source: "./media/characters/odi-lunar/front.svg"
  6304. }
  6305. }
  6306. },
  6307. [
  6308. {
  6309. name: "Micro",
  6310. height: math.unit(3, "inches"),
  6311. default: true
  6312. },
  6313. {
  6314. name: "Normal",
  6315. height: math.unit(5.5, "feet")
  6316. }
  6317. ]
  6318. ))
  6319. characterMakers.push(() => makeCharacter(
  6320. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6321. {
  6322. back: {
  6323. height: math.unit(6, "feet"),
  6324. weight: math.unit(220, "lbs"),
  6325. name: "Back",
  6326. image: {
  6327. source: "./media/characters/mandake/back.svg"
  6328. }
  6329. }
  6330. },
  6331. [
  6332. {
  6333. name: "Normal",
  6334. height: math.unit(7, "feet"),
  6335. default: true
  6336. },
  6337. {
  6338. name: "Macro",
  6339. height: math.unit(78, "feet")
  6340. },
  6341. {
  6342. name: "Macro+",
  6343. height: math.unit(300, "meters")
  6344. },
  6345. {
  6346. name: "Macro++",
  6347. height: math.unit(2400, "feet")
  6348. },
  6349. {
  6350. name: "Megamacro",
  6351. height: math.unit(5167, "meters")
  6352. },
  6353. {
  6354. name: "Gigamacro",
  6355. height: math.unit(41769, "miles")
  6356. },
  6357. ]
  6358. ))
  6359. characterMakers.push(() => makeCharacter(
  6360. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6361. {
  6362. front: {
  6363. height: math.unit(6, "feet"),
  6364. weight: math.unit(120, "lbs"),
  6365. name: "Front",
  6366. image: {
  6367. source: "./media/characters/yozey/front.svg"
  6368. }
  6369. },
  6370. frontAlt: {
  6371. height: math.unit(6, "feet"),
  6372. weight: math.unit(120, "lbs"),
  6373. name: "Front (Alt)",
  6374. image: {
  6375. source: "./media/characters/yozey/front-alt.svg"
  6376. }
  6377. },
  6378. side: {
  6379. height: math.unit(6, "feet"),
  6380. weight: math.unit(120, "lbs"),
  6381. name: "Side",
  6382. image: {
  6383. source: "./media/characters/yozey/side.svg"
  6384. }
  6385. },
  6386. },
  6387. [
  6388. {
  6389. name: "Micro",
  6390. height: math.unit(3, "inches"),
  6391. default: true
  6392. },
  6393. {
  6394. name: "Normal",
  6395. height: math.unit(6, "feet")
  6396. }
  6397. ]
  6398. ))
  6399. characterMakers.push(() => makeCharacter(
  6400. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6401. {
  6402. front: {
  6403. height: math.unit(6, "feet"),
  6404. weight: math.unit(103, "lbs"),
  6405. name: "Front",
  6406. image: {
  6407. source: "./media/characters/valeska-voss/front.svg"
  6408. }
  6409. }
  6410. },
  6411. [
  6412. {
  6413. name: "Mini-Sized Sub",
  6414. height: math.unit(3.1, "inches")
  6415. },
  6416. {
  6417. name: "Mid-Sized Sub",
  6418. height: math.unit(6.2, "inches")
  6419. },
  6420. {
  6421. name: "Full-Sized Sub",
  6422. height: math.unit(9.3, "inches")
  6423. },
  6424. {
  6425. name: "Normal",
  6426. height: math.unit(5 + 2 / 12, "foot"),
  6427. default: true
  6428. },
  6429. ]
  6430. ))
  6431. characterMakers.push(() => makeCharacter(
  6432. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6433. {
  6434. front: {
  6435. height: math.unit(6, "feet"),
  6436. weight: math.unit(160, "lbs"),
  6437. name: "Front",
  6438. image: {
  6439. source: "./media/characters/gene-zeta/front.svg",
  6440. bottom: 0.03,
  6441. extra: 1
  6442. }
  6443. }
  6444. },
  6445. [
  6446. {
  6447. name: "Normal",
  6448. height: math.unit(6.25, "foot"),
  6449. default: true
  6450. },
  6451. ]
  6452. ))
  6453. characterMakers.push(() => makeCharacter(
  6454. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6455. {
  6456. front: {
  6457. height: math.unit(6, "feet"),
  6458. weight: math.unit(350, "lbs"),
  6459. name: "Front",
  6460. image: {
  6461. source: "./media/characters/razinox/front.svg",
  6462. extra: 1686 / 1548,
  6463. bottom: 28.2 / 1868
  6464. }
  6465. },
  6466. back: {
  6467. height: math.unit(6, "feet"),
  6468. weight: math.unit(350, "lbs"),
  6469. name: "Back",
  6470. image: {
  6471. source: "./media/characters/razinox/back.svg",
  6472. extra: 1660 / 1590,
  6473. bottom: 15 / 1665
  6474. }
  6475. },
  6476. },
  6477. [
  6478. {
  6479. name: "Normal",
  6480. height: math.unit(10 + 8 / 12, "foot")
  6481. },
  6482. {
  6483. name: "Minimacro",
  6484. height: math.unit(15, "foot")
  6485. },
  6486. {
  6487. name: "Macro",
  6488. height: math.unit(60, "foot"),
  6489. default: true
  6490. },
  6491. {
  6492. name: "Megamacro",
  6493. height: math.unit(5, "miles")
  6494. },
  6495. {
  6496. name: "Gigamacro",
  6497. height: math.unit(6000, "miles")
  6498. },
  6499. ]
  6500. ))
  6501. characterMakers.push(() => makeCharacter(
  6502. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6503. {
  6504. front: {
  6505. height: math.unit(6, "feet"),
  6506. weight: math.unit(150, "lbs"),
  6507. name: "Front",
  6508. image: {
  6509. source: "./media/characters/cobalt/front.svg"
  6510. }
  6511. }
  6512. },
  6513. [
  6514. {
  6515. name: "Normal",
  6516. height: math.unit(8 + 1 / 12, "foot")
  6517. },
  6518. {
  6519. name: "Macro",
  6520. height: math.unit(111, "foot"),
  6521. default: true
  6522. },
  6523. {
  6524. name: "Supracosmic",
  6525. height: math.unit(1e42, "feet")
  6526. },
  6527. ]
  6528. ))
  6529. characterMakers.push(() => makeCharacter(
  6530. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6531. {
  6532. front: {
  6533. height: math.unit(6, "feet"),
  6534. weight: math.unit(140, "lbs"),
  6535. name: "Front",
  6536. image: {
  6537. source: "./media/characters/amanda/front.svg"
  6538. }
  6539. }
  6540. },
  6541. [
  6542. {
  6543. name: "Micro",
  6544. height: math.unit(5, "inches"),
  6545. default: true
  6546. },
  6547. ]
  6548. ))
  6549. characterMakers.push(() => makeCharacter(
  6550. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6551. {
  6552. front: {
  6553. height: math.unit(5.59, "feet"),
  6554. weight: math.unit(250, "lbs"),
  6555. name: "Front",
  6556. image: {
  6557. source: "./media/characters/teal/front.svg"
  6558. }
  6559. },
  6560. frontAlt: {
  6561. height: math.unit(6, "feet"),
  6562. weight: math.unit(250, "lbs"),
  6563. name: "Front (Alt)",
  6564. image: {
  6565. source: "./media/characters/teal/front-alt.svg",
  6566. bottom: 0.04,
  6567. extra: 1
  6568. }
  6569. },
  6570. },
  6571. [
  6572. {
  6573. name: "Normal",
  6574. height: math.unit(12, "feet"),
  6575. default: true
  6576. },
  6577. {
  6578. name: "Macro",
  6579. height: math.unit(300, "feet")
  6580. },
  6581. ]
  6582. ))
  6583. characterMakers.push(() => makeCharacter(
  6584. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6585. {
  6586. frontCat: {
  6587. height: math.unit(6, "feet"),
  6588. weight: math.unit(180, "lbs"),
  6589. name: "Front (Cat)",
  6590. image: {
  6591. source: "./media/characters/ravin-amulet/front-cat.svg"
  6592. }
  6593. },
  6594. frontCatAlt: {
  6595. height: math.unit(6, "feet"),
  6596. weight: math.unit(180, "lbs"),
  6597. name: "Front (Alt, Cat)",
  6598. image: {
  6599. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6600. }
  6601. },
  6602. frontWerewolf: {
  6603. height: math.unit(6 * 1.2, "feet"),
  6604. weight: math.unit(225, "lbs"),
  6605. name: "Front (Werewolf)",
  6606. image: {
  6607. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6608. }
  6609. },
  6610. backWerewolf: {
  6611. height: math.unit(6 * 1.2, "feet"),
  6612. weight: math.unit(225, "lbs"),
  6613. name: "Back (Werewolf)",
  6614. image: {
  6615. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6616. }
  6617. },
  6618. },
  6619. [
  6620. {
  6621. name: "Nano",
  6622. height: math.unit(1, "micrometer")
  6623. },
  6624. {
  6625. name: "Micro",
  6626. height: math.unit(1, "inch")
  6627. },
  6628. {
  6629. name: "Normal",
  6630. height: math.unit(6, "feet"),
  6631. default: true
  6632. },
  6633. {
  6634. name: "Macro",
  6635. height: math.unit(60, "feet")
  6636. }
  6637. ]
  6638. ))
  6639. characterMakers.push(() => makeCharacter(
  6640. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6641. {
  6642. front: {
  6643. height: math.unit(6, "feet"),
  6644. weight: math.unit(165, "lbs"),
  6645. name: "Front",
  6646. image: {
  6647. source: "./media/characters/fluoresce/front.svg"
  6648. }
  6649. }
  6650. },
  6651. [
  6652. {
  6653. name: "Micro",
  6654. height: math.unit(6, "cm")
  6655. },
  6656. {
  6657. name: "Normal",
  6658. height: math.unit(5 + 7 / 12, "feet"),
  6659. default: true
  6660. },
  6661. {
  6662. name: "Macro",
  6663. height: math.unit(56, "feet")
  6664. },
  6665. {
  6666. name: "Megamacro",
  6667. height: math.unit(1.9, "miles")
  6668. },
  6669. ]
  6670. ))
  6671. characterMakers.push(() => makeCharacter(
  6672. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6673. {
  6674. front: {
  6675. height: math.unit(9 + 6 / 12, "feet"),
  6676. weight: math.unit(523, "lbs"),
  6677. name: "Side",
  6678. image: {
  6679. source: "./media/characters/aurora/side.svg"
  6680. }
  6681. }
  6682. },
  6683. [
  6684. {
  6685. name: "Normal",
  6686. height: math.unit(9 + 6 / 12, "feet")
  6687. },
  6688. {
  6689. name: "Macro",
  6690. height: math.unit(96, "feet"),
  6691. default: true
  6692. },
  6693. {
  6694. name: "Macro+",
  6695. height: math.unit(243, "feet")
  6696. },
  6697. ]
  6698. ))
  6699. characterMakers.push(() => makeCharacter(
  6700. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6701. {
  6702. front: {
  6703. height: math.unit(194, "cm"),
  6704. weight: math.unit(90, "kg"),
  6705. name: "Front",
  6706. image: {
  6707. source: "./media/characters/ranek/front.svg"
  6708. }
  6709. },
  6710. side: {
  6711. height: math.unit(194, "cm"),
  6712. weight: math.unit(90, "kg"),
  6713. name: "Side",
  6714. image: {
  6715. source: "./media/characters/ranek/side.svg"
  6716. }
  6717. },
  6718. back: {
  6719. height: math.unit(194, "cm"),
  6720. weight: math.unit(90, "kg"),
  6721. name: "Back",
  6722. image: {
  6723. source: "./media/characters/ranek/back.svg"
  6724. }
  6725. },
  6726. feral: {
  6727. height: math.unit(30, "cm"),
  6728. weight: math.unit(1.6, "lbs"),
  6729. name: "Feral",
  6730. image: {
  6731. source: "./media/characters/ranek/feral.svg"
  6732. }
  6733. },
  6734. },
  6735. [
  6736. {
  6737. name: "Normal",
  6738. height: math.unit(194, "cm"),
  6739. default: true
  6740. },
  6741. {
  6742. name: "Macro",
  6743. height: math.unit(100, "meters")
  6744. },
  6745. ]
  6746. ))
  6747. characterMakers.push(() => makeCharacter(
  6748. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6749. {
  6750. front: {
  6751. height: math.unit(5 + 6 / 12, "feet"),
  6752. weight: math.unit(153, "lbs"),
  6753. name: "Front",
  6754. image: {
  6755. source: "./media/characters/andrew-cooper/front.svg"
  6756. }
  6757. },
  6758. },
  6759. [
  6760. {
  6761. name: "Nano",
  6762. height: math.unit(1, "mm")
  6763. },
  6764. {
  6765. name: "Micro",
  6766. height: math.unit(2, "inches")
  6767. },
  6768. {
  6769. name: "Normal",
  6770. height: math.unit(5 + 6 / 12, "feet"),
  6771. default: true
  6772. }
  6773. ]
  6774. ))
  6775. characterMakers.push(() => makeCharacter(
  6776. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6777. {
  6778. front: {
  6779. height: math.unit(6, "feet"),
  6780. weight: math.unit(180, "lbs"),
  6781. name: "Front",
  6782. image: {
  6783. source: "./media/characters/akane-sato/front.svg",
  6784. extra: 1219 / 1140
  6785. }
  6786. },
  6787. back: {
  6788. height: math.unit(6, "feet"),
  6789. weight: math.unit(180, "lbs"),
  6790. name: "Back",
  6791. image: {
  6792. source: "./media/characters/akane-sato/back.svg",
  6793. extra: 1219 / 1170
  6794. }
  6795. },
  6796. },
  6797. [
  6798. {
  6799. name: "Normal",
  6800. height: math.unit(2.5, "meters")
  6801. },
  6802. {
  6803. name: "Macro",
  6804. height: math.unit(250, "meters"),
  6805. default: true
  6806. },
  6807. {
  6808. name: "Megamacro",
  6809. height: math.unit(25, "km")
  6810. },
  6811. ]
  6812. ))
  6813. characterMakers.push(() => makeCharacter(
  6814. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6815. {
  6816. front: {
  6817. height: math.unit(6, "feet"),
  6818. weight: math.unit(65, "kg"),
  6819. name: "Front",
  6820. image: {
  6821. source: "./media/characters/rook/front.svg",
  6822. extra: 960 / 950
  6823. }
  6824. }
  6825. },
  6826. [
  6827. {
  6828. name: "Normal",
  6829. height: math.unit(8.8, "feet")
  6830. },
  6831. {
  6832. name: "Macro",
  6833. height: math.unit(88, "feet"),
  6834. default: true
  6835. },
  6836. {
  6837. name: "Megamacro",
  6838. height: math.unit(8, "miles")
  6839. },
  6840. ]
  6841. ))
  6842. characterMakers.push(() => makeCharacter(
  6843. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6844. {
  6845. front: {
  6846. height: math.unit(12 + 2 / 12, "feet"),
  6847. weight: math.unit(808, "lbs"),
  6848. name: "Front",
  6849. image: {
  6850. source: "./media/characters/prodigy/front.svg"
  6851. }
  6852. }
  6853. },
  6854. [
  6855. {
  6856. name: "Normal",
  6857. height: math.unit(12 + 2 / 12, "feet"),
  6858. default: true
  6859. },
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(143, "feet")
  6863. },
  6864. {
  6865. name: "Macro+",
  6866. height: math.unit(400, "feet")
  6867. },
  6868. ]
  6869. ))
  6870. characterMakers.push(() => makeCharacter(
  6871. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6872. {
  6873. front: {
  6874. height: math.unit(6, "feet"),
  6875. weight: math.unit(225, "lbs"),
  6876. name: "Front",
  6877. image: {
  6878. source: "./media/characters/daniel/front.svg"
  6879. }
  6880. },
  6881. leaning: {
  6882. height: math.unit(6, "feet"),
  6883. weight: math.unit(225, "lbs"),
  6884. name: "Leaning",
  6885. image: {
  6886. source: "./media/characters/daniel/leaning.svg"
  6887. }
  6888. },
  6889. },
  6890. [
  6891. {
  6892. name: "Macro",
  6893. height: math.unit(1000, "feet"),
  6894. default: true
  6895. },
  6896. ]
  6897. ))
  6898. characterMakers.push(() => makeCharacter(
  6899. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6900. {
  6901. front: {
  6902. height: math.unit(6, "feet"),
  6903. weight: math.unit(88, "lbs"),
  6904. name: "Front",
  6905. image: {
  6906. source: "./media/characters/chiros/front.svg",
  6907. extra: 306 / 226
  6908. }
  6909. },
  6910. side: {
  6911. height: math.unit(6, "feet"),
  6912. weight: math.unit(88, "lbs"),
  6913. name: "Side",
  6914. image: {
  6915. source: "./media/characters/chiros/side.svg",
  6916. extra: 306 / 226
  6917. }
  6918. },
  6919. },
  6920. [
  6921. {
  6922. name: "Normal",
  6923. height: math.unit(6, "cm"),
  6924. default: true
  6925. },
  6926. ]
  6927. ))
  6928. characterMakers.push(() => makeCharacter(
  6929. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6930. {
  6931. front: {
  6932. height: math.unit(6, "feet"),
  6933. weight: math.unit(100, "lbs"),
  6934. name: "Front",
  6935. image: {
  6936. source: "./media/characters/selka/front.svg",
  6937. extra: 947 / 887
  6938. }
  6939. }
  6940. },
  6941. [
  6942. {
  6943. name: "Normal",
  6944. height: math.unit(5, "cm"),
  6945. default: true
  6946. },
  6947. ]
  6948. ))
  6949. characterMakers.push(() => makeCharacter(
  6950. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6951. {
  6952. front: {
  6953. height: math.unit(8 + 3 / 12, "feet"),
  6954. weight: math.unit(424, "lbs"),
  6955. name: "Front",
  6956. image: {
  6957. source: "./media/characters/verin/front.svg",
  6958. extra: 1845 / 1550
  6959. }
  6960. },
  6961. frontArmored: {
  6962. height: math.unit(8 + 3 / 12, "feet"),
  6963. weight: math.unit(424, "lbs"),
  6964. name: "Front (Armored)",
  6965. image: {
  6966. source: "./media/characters/verin/front-armor.svg",
  6967. extra: 1845 / 1550,
  6968. bottom: 0.01
  6969. }
  6970. },
  6971. back: {
  6972. height: math.unit(8 + 3 / 12, "feet"),
  6973. weight: math.unit(424, "lbs"),
  6974. name: "Back",
  6975. image: {
  6976. source: "./media/characters/verin/back.svg",
  6977. bottom: 0.1,
  6978. extra: 1
  6979. }
  6980. },
  6981. foot: {
  6982. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6983. name: "Foot",
  6984. image: {
  6985. source: "./media/characters/verin/foot.svg"
  6986. }
  6987. },
  6988. },
  6989. [
  6990. {
  6991. name: "Normal",
  6992. height: math.unit(8 + 3 / 12, "feet")
  6993. },
  6994. {
  6995. name: "Minimacro",
  6996. height: math.unit(21, "feet"),
  6997. default: true
  6998. },
  6999. {
  7000. name: "Macro",
  7001. height: math.unit(626, "feet")
  7002. },
  7003. ]
  7004. ))
  7005. characterMakers.push(() => makeCharacter(
  7006. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7007. {
  7008. front: {
  7009. height: math.unit(2.718, "meters"),
  7010. weight: math.unit(150, "lbs"),
  7011. name: "Front",
  7012. image: {
  7013. source: "./media/characters/sovrim-terraquian/front.svg"
  7014. }
  7015. },
  7016. back: {
  7017. height: math.unit(2.718, "meters"),
  7018. weight: math.unit(150, "lbs"),
  7019. name: "Back",
  7020. image: {
  7021. source: "./media/characters/sovrim-terraquian/back.svg"
  7022. }
  7023. }
  7024. },
  7025. [
  7026. {
  7027. name: "Micro",
  7028. height: math.unit(2, "inches")
  7029. },
  7030. {
  7031. name: "Small",
  7032. height: math.unit(1, "meter")
  7033. },
  7034. {
  7035. name: "Normal",
  7036. height: math.unit(Math.E, "meters"),
  7037. default: true
  7038. },
  7039. {
  7040. name: "Macro",
  7041. height: math.unit(20, "meters")
  7042. },
  7043. {
  7044. name: "Macro+",
  7045. height: math.unit(400, "meters")
  7046. },
  7047. ]
  7048. ))
  7049. characterMakers.push(() => makeCharacter(
  7050. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7051. {
  7052. front: {
  7053. height: math.unit(7, "feet"),
  7054. weight: math.unit(489, "lbs"),
  7055. name: "Front",
  7056. image: {
  7057. source: "./media/characters/reece-silvermane/front.svg",
  7058. bottom: 0.02,
  7059. extra: 1
  7060. }
  7061. },
  7062. },
  7063. [
  7064. {
  7065. name: "Macro",
  7066. height: math.unit(1.5, "miles"),
  7067. default: true
  7068. },
  7069. ]
  7070. ))
  7071. characterMakers.push(() => makeCharacter(
  7072. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7073. {
  7074. front: {
  7075. height: math.unit(6, "feet"),
  7076. weight: math.unit(78, "kg"),
  7077. name: "Front",
  7078. image: {
  7079. source: "./media/characters/kane/front.svg",
  7080. extra: 978 / 899
  7081. }
  7082. },
  7083. },
  7084. [
  7085. {
  7086. name: "Normal",
  7087. height: math.unit(2.1, "m"),
  7088. },
  7089. {
  7090. name: "Macro",
  7091. height: math.unit(1, "km"),
  7092. default: true
  7093. },
  7094. ]
  7095. ))
  7096. characterMakers.push(() => makeCharacter(
  7097. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7098. {
  7099. front: {
  7100. height: math.unit(6, "feet"),
  7101. weight: math.unit(200, "kg"),
  7102. name: "Front",
  7103. image: {
  7104. source: "./media/characters/tegon/front.svg",
  7105. bottom: 0.01,
  7106. extra: 1
  7107. }
  7108. },
  7109. },
  7110. [
  7111. {
  7112. name: "Micro",
  7113. height: math.unit(1, "inch")
  7114. },
  7115. {
  7116. name: "Normal",
  7117. height: math.unit(6 + 3 / 12, "feet"),
  7118. default: true
  7119. },
  7120. {
  7121. name: "Macro",
  7122. height: math.unit(300, "feet")
  7123. },
  7124. {
  7125. name: "Megamacro",
  7126. height: math.unit(69, "miles")
  7127. },
  7128. ]
  7129. ))
  7130. characterMakers.push(() => makeCharacter(
  7131. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7132. {
  7133. side: {
  7134. height: math.unit(6, "feet"),
  7135. weight: math.unit(2304, "lbs"),
  7136. name: "Side",
  7137. image: {
  7138. source: "./media/characters/arcturax/side.svg",
  7139. extra: 790 / 376,
  7140. bottom: 0.01
  7141. }
  7142. },
  7143. },
  7144. [
  7145. {
  7146. name: "Micro",
  7147. height: math.unit(2, "inch")
  7148. },
  7149. {
  7150. name: "Normal",
  7151. height: math.unit(6, "feet")
  7152. },
  7153. {
  7154. name: "Macro",
  7155. height: math.unit(39, "feet"),
  7156. default: true
  7157. },
  7158. {
  7159. name: "Megamacro",
  7160. height: math.unit(7, "miles")
  7161. },
  7162. ]
  7163. ))
  7164. characterMakers.push(() => makeCharacter(
  7165. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7166. {
  7167. front: {
  7168. height: math.unit(6, "feet"),
  7169. weight: math.unit(50, "lbs"),
  7170. name: "Front",
  7171. image: {
  7172. source: "./media/characters/sentri/front.svg",
  7173. extra: 1750 / 1570,
  7174. bottom: 0.025
  7175. }
  7176. },
  7177. frontAlt: {
  7178. height: math.unit(6, "feet"),
  7179. weight: math.unit(50, "lbs"),
  7180. name: "Front (Alt)",
  7181. image: {
  7182. source: "./media/characters/sentri/front-alt.svg",
  7183. extra: 1750 / 1570,
  7184. bottom: 0.025
  7185. }
  7186. },
  7187. },
  7188. [
  7189. {
  7190. name: "Normal",
  7191. height: math.unit(15, "feet"),
  7192. default: true
  7193. },
  7194. {
  7195. name: "Macro",
  7196. height: math.unit(2500, "feet")
  7197. }
  7198. ]
  7199. ))
  7200. characterMakers.push(() => makeCharacter(
  7201. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7202. {
  7203. front: {
  7204. height: math.unit(5 + 8 / 12, "feet"),
  7205. weight: math.unit(130, "lbs"),
  7206. name: "Front",
  7207. image: {
  7208. source: "./media/characters/corvin/front.svg",
  7209. extra: 1803 / 1629
  7210. }
  7211. },
  7212. frontShirt: {
  7213. height: math.unit(5 + 8 / 12, "feet"),
  7214. weight: math.unit(130, "lbs"),
  7215. name: "Front (Shirt)",
  7216. image: {
  7217. source: "./media/characters/corvin/front-shirt.svg",
  7218. extra: 1803 / 1629
  7219. }
  7220. },
  7221. frontPoncho: {
  7222. height: math.unit(5 + 8 / 12, "feet"),
  7223. weight: math.unit(130, "lbs"),
  7224. name: "Front (Poncho)",
  7225. image: {
  7226. source: "./media/characters/corvin/front-poncho.svg",
  7227. extra: 1803 / 1629
  7228. }
  7229. },
  7230. side: {
  7231. height: math.unit(5 + 8 / 12, "feet"),
  7232. weight: math.unit(130, "lbs"),
  7233. name: "Side",
  7234. image: {
  7235. source: "./media/characters/corvin/side.svg",
  7236. extra: 1012 / 945
  7237. }
  7238. },
  7239. back: {
  7240. height: math.unit(5 + 8 / 12, "feet"),
  7241. weight: math.unit(130, "lbs"),
  7242. name: "Back",
  7243. image: {
  7244. source: "./media/characters/corvin/back.svg",
  7245. extra: 1803 / 1629
  7246. }
  7247. },
  7248. },
  7249. [
  7250. {
  7251. name: "Micro",
  7252. height: math.unit(3, "inches")
  7253. },
  7254. {
  7255. name: "Normal",
  7256. height: math.unit(5 + 8 / 12, "feet")
  7257. },
  7258. {
  7259. name: "Macro",
  7260. height: math.unit(300, "feet"),
  7261. default: true
  7262. },
  7263. {
  7264. name: "Megamacro",
  7265. height: math.unit(500, "miles")
  7266. }
  7267. ]
  7268. ))
  7269. characterMakers.push(() => makeCharacter(
  7270. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7271. {
  7272. front: {
  7273. height: math.unit(6, "feet"),
  7274. weight: math.unit(135, "lbs"),
  7275. name: "Front",
  7276. image: {
  7277. source: "./media/characters/q/front.svg",
  7278. extra: 854 / 752,
  7279. bottom: 0.005
  7280. }
  7281. },
  7282. back: {
  7283. height: math.unit(6, "feet"),
  7284. weight: math.unit(130, "lbs"),
  7285. name: "Back",
  7286. image: {
  7287. source: "./media/characters/q/back.svg",
  7288. extra: 854 / 752
  7289. }
  7290. },
  7291. },
  7292. [
  7293. {
  7294. name: "Macro",
  7295. height: math.unit(90, "feet"),
  7296. default: true
  7297. },
  7298. {
  7299. name: "Extra Macro",
  7300. height: math.unit(300, "feet"),
  7301. },
  7302. {
  7303. name: "BIG WALF",
  7304. height: math.unit(750, "feet"),
  7305. },
  7306. ]
  7307. ))
  7308. characterMakers.push(() => makeCharacter(
  7309. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7310. {
  7311. front: {
  7312. height: math.unit(6, "feet"),
  7313. weight: math.unit(150, "lbs"),
  7314. name: "Front",
  7315. image: {
  7316. source: "./media/characters/carley/front.svg",
  7317. extra: 3927 / 3540,
  7318. bottom: 0.03
  7319. }
  7320. }
  7321. },
  7322. [
  7323. {
  7324. name: "Normal",
  7325. height: math.unit(6 + 3 / 12, "feet")
  7326. },
  7327. {
  7328. name: "Macro",
  7329. height: math.unit(185, "feet"),
  7330. default: true
  7331. },
  7332. {
  7333. name: "Megamacro",
  7334. height: math.unit(8, "miles"),
  7335. },
  7336. ]
  7337. ))
  7338. characterMakers.push(() => makeCharacter(
  7339. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7340. {
  7341. front: {
  7342. height: math.unit(3, "feet"),
  7343. weight: math.unit(28, "lbs"),
  7344. name: "Front",
  7345. image: {
  7346. source: "./media/characters/citrine/front.svg"
  7347. }
  7348. }
  7349. },
  7350. [
  7351. {
  7352. name: "Normal",
  7353. height: math.unit(3, "feet"),
  7354. default: true
  7355. }
  7356. ]
  7357. ))
  7358. characterMakers.push(() => makeCharacter(
  7359. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7360. {
  7361. front: {
  7362. height: math.unit(14, "feet"),
  7363. weight: math.unit(1450, "kg"),
  7364. capacity: math.unit(15, "people"),
  7365. name: "Front",
  7366. image: {
  7367. source: "./media/characters/aura-starwind/front.svg",
  7368. extra: 1455 / 1335
  7369. }
  7370. },
  7371. side: {
  7372. height: math.unit(14, "feet"),
  7373. weight: math.unit(1450, "kg"),
  7374. capacity: math.unit(15, "people"),
  7375. name: "Side",
  7376. image: {
  7377. source: "./media/characters/aura-starwind/side.svg",
  7378. extra: 1654 / 1497
  7379. }
  7380. },
  7381. taur: {
  7382. height: math.unit(18, "feet"),
  7383. weight: math.unit(5500, "kg"),
  7384. capacity: math.unit(50, "people"),
  7385. name: "Taur",
  7386. image: {
  7387. source: "./media/characters/aura-starwind/taur.svg",
  7388. extra: 1760 / 1650
  7389. }
  7390. },
  7391. feral: {
  7392. height: math.unit(46, "feet"),
  7393. weight: math.unit(25000, "kg"),
  7394. capacity: math.unit(120, "people"),
  7395. name: "Feral",
  7396. image: {
  7397. source: "./media/characters/aura-starwind/feral.svg"
  7398. }
  7399. },
  7400. },
  7401. [
  7402. {
  7403. name: "Normal",
  7404. height: math.unit(14, "feet"),
  7405. default: true
  7406. },
  7407. {
  7408. name: "Macro",
  7409. height: math.unit(50, "meters")
  7410. },
  7411. {
  7412. name: "Megamacro",
  7413. height: math.unit(5000, "meters")
  7414. },
  7415. {
  7416. name: "Gigamacro",
  7417. height: math.unit(100000, "kilometers")
  7418. },
  7419. ]
  7420. ))
  7421. characterMakers.push(() => makeCharacter(
  7422. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7423. {
  7424. front: {
  7425. height: math.unit(2 + 7 / 12, "feet"),
  7426. weight: math.unit(32, "lbs"),
  7427. name: "Front",
  7428. image: {
  7429. source: "./media/characters/rivet/front.svg",
  7430. extra: 1716 / 1658,
  7431. bottom: 0.03
  7432. }
  7433. },
  7434. foot: {
  7435. height: math.unit(0.551, "feet"),
  7436. name: "Rivet's Foot",
  7437. image: {
  7438. source: "./media/characters/rivet/foot.svg"
  7439. },
  7440. rename: true
  7441. }
  7442. },
  7443. [
  7444. {
  7445. name: "Micro",
  7446. height: math.unit(1.5, "inches"),
  7447. },
  7448. {
  7449. name: "Normal",
  7450. height: math.unit(2 + 7 / 12, "feet"),
  7451. default: true
  7452. },
  7453. {
  7454. name: "Macro",
  7455. height: math.unit(85, "feet")
  7456. },
  7457. {
  7458. name: "Megamacro",
  7459. height: math.unit(2.2, "km")
  7460. }
  7461. ]
  7462. ))
  7463. characterMakers.push(() => makeCharacter(
  7464. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7465. {
  7466. front: {
  7467. height: math.unit(5 + 9 / 12, "feet"),
  7468. weight: math.unit(150, "lbs"),
  7469. name: "Front",
  7470. image: {
  7471. source: "./media/characters/coffee/front.svg",
  7472. extra: 3666 / 3032,
  7473. bottom: 0.04
  7474. }
  7475. },
  7476. foot: {
  7477. height: math.unit(1.29, "feet"),
  7478. name: "Foot",
  7479. image: {
  7480. source: "./media/characters/coffee/foot.svg"
  7481. }
  7482. },
  7483. },
  7484. [
  7485. {
  7486. name: "Micro",
  7487. height: math.unit(2, "inches"),
  7488. },
  7489. {
  7490. name: "Normal",
  7491. height: math.unit(5 + 9 / 12, "feet"),
  7492. default: true
  7493. },
  7494. {
  7495. name: "Macro",
  7496. height: math.unit(800, "feet")
  7497. },
  7498. {
  7499. name: "Megamacro",
  7500. height: math.unit(25, "miles")
  7501. }
  7502. ]
  7503. ))
  7504. characterMakers.push(() => makeCharacter(
  7505. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7506. {
  7507. front: {
  7508. height: math.unit(6, "feet"),
  7509. weight: math.unit(200, "lbs"),
  7510. name: "Front",
  7511. image: {
  7512. source: "./media/characters/chari-gal/front.svg",
  7513. extra: 1568 / 1385,
  7514. bottom: 0.047
  7515. }
  7516. },
  7517. gigantamax: {
  7518. height: math.unit(6 * 16, "feet"),
  7519. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7520. name: "Gigantamax",
  7521. image: {
  7522. source: "./media/characters/chari-gal/gigantamax.svg",
  7523. extra: 1124 / 888,
  7524. bottom: 0.03
  7525. }
  7526. },
  7527. },
  7528. [
  7529. {
  7530. name: "Normal",
  7531. height: math.unit(5 + 7 / 12, "feet")
  7532. },
  7533. {
  7534. name: "Macro",
  7535. height: math.unit(200, "feet"),
  7536. default: true
  7537. }
  7538. ]
  7539. ))
  7540. characterMakers.push(() => makeCharacter(
  7541. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7542. {
  7543. front: {
  7544. height: math.unit(6, "feet"),
  7545. weight: math.unit(150, "lbs"),
  7546. name: "Front",
  7547. image: {
  7548. source: "./media/characters/nova/front.svg",
  7549. extra: 5000 / 4722,
  7550. bottom: 0.02
  7551. }
  7552. }
  7553. },
  7554. [
  7555. {
  7556. name: "Micro-",
  7557. height: math.unit(0.8, "inches")
  7558. },
  7559. {
  7560. name: "Micro",
  7561. height: math.unit(2, "inches"),
  7562. default: true
  7563. },
  7564. ]
  7565. ))
  7566. characterMakers.push(() => makeCharacter(
  7567. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7568. {
  7569. front: {
  7570. height: math.unit(3 + 1 / 12, "feet"),
  7571. weight: math.unit(21.7, "lbs"),
  7572. name: "Front",
  7573. image: {
  7574. source: "./media/characters/argent/front.svg",
  7575. extra: 1471 / 1331,
  7576. bottom: 100.8 / 1575.5
  7577. }
  7578. }
  7579. },
  7580. [
  7581. {
  7582. name: "Micro",
  7583. height: math.unit(2, "inches")
  7584. },
  7585. {
  7586. name: "Normal",
  7587. height: math.unit(3 + 1 / 12, "feet"),
  7588. default: true
  7589. },
  7590. {
  7591. name: "Macro",
  7592. height: math.unit(120, "feet")
  7593. },
  7594. ]
  7595. ))
  7596. characterMakers.push(() => makeCharacter(
  7597. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7598. {
  7599. lamp: {
  7600. height: math.unit(7 * 1559 / 989, "feet"),
  7601. name: "Magic Lamp",
  7602. image: {
  7603. source: "./media/characters/mira-al-cul/lamp.svg",
  7604. extra: 1617 / 1559
  7605. }
  7606. },
  7607. front: {
  7608. height: math.unit(7, "feet"),
  7609. name: "Front",
  7610. image: {
  7611. source: "./media/characters/mira-al-cul/front.svg",
  7612. extra: 1044 / 990
  7613. }
  7614. },
  7615. },
  7616. [
  7617. {
  7618. name: "Heavily Restricted",
  7619. height: math.unit(7 * 1559 / 989, "feet")
  7620. },
  7621. {
  7622. name: "Freshly Freed",
  7623. height: math.unit(50 * 1559 / 989, "feet")
  7624. },
  7625. {
  7626. name: "World Encompassing",
  7627. height: math.unit(10000 * 1559 / 989, "miles")
  7628. },
  7629. {
  7630. name: "Galactic",
  7631. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7632. },
  7633. {
  7634. name: "Palmed Universe",
  7635. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7636. default: true
  7637. },
  7638. {
  7639. name: "Multiversal Matriarch",
  7640. height: math.unit(8.87e10, "yottameters")
  7641. },
  7642. {
  7643. name: "Void Mother",
  7644. height: math.unit(3.14e110, "yottaparsecs")
  7645. },
  7646. {
  7647. name: "Toying with Transcendence",
  7648. height: math.unit(1e307, "meters")
  7649. },
  7650. ]
  7651. ))
  7652. characterMakers.push(() => makeCharacter(
  7653. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7654. {
  7655. front: {
  7656. height: math.unit(17 + 1 / 12, "feet"),
  7657. weight: math.unit(476.2 * 5, "lbs"),
  7658. name: "Front",
  7659. image: {
  7660. source: "./media/characters/kuro-shi-uchū/front.svg",
  7661. extra: 2329 / 1835,
  7662. bottom: 0.02
  7663. }
  7664. },
  7665. },
  7666. [
  7667. {
  7668. name: "Micro",
  7669. height: math.unit(2, "inches")
  7670. },
  7671. {
  7672. name: "Normal",
  7673. height: math.unit(12, "meters")
  7674. },
  7675. {
  7676. name: "Planetary",
  7677. height: math.unit(0.00929, "AU"),
  7678. default: true
  7679. },
  7680. {
  7681. name: "Universal",
  7682. height: math.unit(20, "gigaparsecs")
  7683. },
  7684. ]
  7685. ))
  7686. characterMakers.push(() => makeCharacter(
  7687. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7688. {
  7689. front: {
  7690. height: math.unit(5 + 2 / 12, "feet"),
  7691. weight: math.unit(120, "lbs"),
  7692. name: "Front",
  7693. image: {
  7694. source: "./media/characters/katherine/front.svg",
  7695. extra: 2075 / 1969
  7696. }
  7697. },
  7698. dress: {
  7699. height: math.unit(5 + 2 / 12, "feet"),
  7700. weight: math.unit(120, "lbs"),
  7701. name: "Dress",
  7702. image: {
  7703. source: "./media/characters/katherine/dress.svg",
  7704. extra: 2258 / 2064
  7705. }
  7706. },
  7707. },
  7708. [
  7709. {
  7710. name: "Micro",
  7711. height: math.unit(1, "inches"),
  7712. default: true
  7713. },
  7714. {
  7715. name: "Normal",
  7716. height: math.unit(5 + 2 / 12, "feet")
  7717. },
  7718. {
  7719. name: "Macro",
  7720. height: math.unit(100, "meters")
  7721. },
  7722. {
  7723. name: "Megamacro",
  7724. height: math.unit(80, "miles")
  7725. },
  7726. ]
  7727. ))
  7728. characterMakers.push(() => makeCharacter(
  7729. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7730. {
  7731. front: {
  7732. height: math.unit(7 + 8 / 12, "feet"),
  7733. weight: math.unit(250, "lbs"),
  7734. name: "Front",
  7735. image: {
  7736. source: "./media/characters/yevis/front.svg",
  7737. extra: 1938 / 1755
  7738. }
  7739. }
  7740. },
  7741. [
  7742. {
  7743. name: "Mortal",
  7744. height: math.unit(7 + 8 / 12, "feet")
  7745. },
  7746. {
  7747. name: "Battle",
  7748. height: math.unit(25 + 11 / 12, "feet")
  7749. },
  7750. {
  7751. name: "Wrath",
  7752. height: math.unit(1654 + 11 / 12, "feet")
  7753. },
  7754. {
  7755. name: "Planet Destroyer",
  7756. height: math.unit(12000, "miles")
  7757. },
  7758. {
  7759. name: "Galaxy Conqueror",
  7760. height: math.unit(1.45, "zettameters"),
  7761. default: true
  7762. },
  7763. {
  7764. name: "Universal War",
  7765. height: math.unit(184, "gigaparsecs")
  7766. },
  7767. {
  7768. name: "Eternity War",
  7769. height: math.unit(1.98e55, "yottaparsecs")
  7770. },
  7771. ]
  7772. ))
  7773. characterMakers.push(() => makeCharacter(
  7774. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7775. {
  7776. front: {
  7777. height: math.unit(5 + 8 / 12, "feet"),
  7778. weight: math.unit(63, "kg"),
  7779. name: "Front",
  7780. image: {
  7781. source: "./media/characters/xavier/front.svg",
  7782. extra: 944 / 883
  7783. }
  7784. },
  7785. frontStretch: {
  7786. height: math.unit(5 + 8 / 12, "feet"),
  7787. weight: math.unit(63, "kg"),
  7788. name: "Stretching",
  7789. image: {
  7790. source: "./media/characters/xavier/front-stretch.svg",
  7791. extra: 962 / 820
  7792. }
  7793. },
  7794. },
  7795. [
  7796. {
  7797. name: "Normal",
  7798. height: math.unit(5 + 8 / 12, "feet")
  7799. },
  7800. {
  7801. name: "Macro",
  7802. height: math.unit(100, "meters"),
  7803. default: true
  7804. },
  7805. {
  7806. name: "McLargeHuge",
  7807. height: math.unit(10, "miles")
  7808. },
  7809. ]
  7810. ))
  7811. characterMakers.push(() => makeCharacter(
  7812. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7813. {
  7814. front: {
  7815. height: math.unit(5 + 5 / 12, "feet"),
  7816. weight: math.unit(150, "lb"),
  7817. name: "Front",
  7818. image: {
  7819. source: "./media/characters/joshii/front.svg"
  7820. }
  7821. },
  7822. foot: {
  7823. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7824. name: "Foot",
  7825. image: {
  7826. source: "./media/characters/joshii/foot.svg"
  7827. }
  7828. },
  7829. },
  7830. [
  7831. {
  7832. name: "Micro",
  7833. height: math.unit(2, "inches")
  7834. },
  7835. {
  7836. name: "Normal",
  7837. height: math.unit(5 + 5 / 12, "feet"),
  7838. default: true
  7839. },
  7840. {
  7841. name: "Macro",
  7842. height: math.unit(785, "feet")
  7843. },
  7844. {
  7845. name: "Megamacro",
  7846. height: math.unit(24.5, "miles")
  7847. },
  7848. ]
  7849. ))
  7850. characterMakers.push(() => makeCharacter(
  7851. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7852. {
  7853. front: {
  7854. height: math.unit(6, "feet"),
  7855. weight: math.unit(150, "lb"),
  7856. name: "Front",
  7857. image: {
  7858. source: "./media/characters/goddess-elizabeth/front.svg",
  7859. extra: 1800 / 1525,
  7860. bottom: 0.005
  7861. }
  7862. },
  7863. foot: {
  7864. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7865. name: "Foot",
  7866. image: {
  7867. source: "./media/characters/goddess-elizabeth/foot.svg"
  7868. }
  7869. },
  7870. mouth: {
  7871. height: math.unit(6, "feet"),
  7872. name: "Mouth",
  7873. image: {
  7874. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7875. }
  7876. },
  7877. },
  7878. [
  7879. {
  7880. name: "Micro",
  7881. height: math.unit(12, "feet")
  7882. },
  7883. {
  7884. name: "Normal",
  7885. height: math.unit(80, "miles"),
  7886. default: true
  7887. },
  7888. {
  7889. name: "Macro",
  7890. height: math.unit(15000, "parsecs")
  7891. },
  7892. ]
  7893. ))
  7894. characterMakers.push(() => makeCharacter(
  7895. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7896. {
  7897. front: {
  7898. height: math.unit(5 + 9 / 12, "feet"),
  7899. weight: math.unit(144, "lb"),
  7900. name: "Front",
  7901. image: {
  7902. source: "./media/characters/kara/front.svg"
  7903. }
  7904. },
  7905. feet: {
  7906. height: math.unit(6 / 6.765, "feet"),
  7907. name: "Kara's Feet",
  7908. rename: true,
  7909. image: {
  7910. source: "./media/characters/kara/feet.svg"
  7911. }
  7912. },
  7913. },
  7914. [
  7915. {
  7916. name: "Normal",
  7917. height: math.unit(5 + 9 / 12, "feet")
  7918. },
  7919. {
  7920. name: "Macro",
  7921. height: math.unit(174, "feet"),
  7922. default: true
  7923. },
  7924. ]
  7925. ))
  7926. characterMakers.push(() => makeCharacter(
  7927. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7928. {
  7929. front: {
  7930. height: math.unit(18, "feet"),
  7931. weight: math.unit(4050, "lb"),
  7932. name: "Front",
  7933. image: {
  7934. source: "./media/characters/tyrone/front.svg",
  7935. extra: 2520 / 2402,
  7936. bottom: 0.025
  7937. }
  7938. },
  7939. },
  7940. [
  7941. {
  7942. name: "Normal",
  7943. height: math.unit(18, "feet"),
  7944. default: true
  7945. },
  7946. {
  7947. name: "Macro",
  7948. height: math.unit(300, "feet")
  7949. },
  7950. ]
  7951. ))
  7952. characterMakers.push(() => makeCharacter(
  7953. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7954. {
  7955. front: {
  7956. height: math.unit(7 + 8 / 12, "feet"),
  7957. weight: math.unit(120, "lb"),
  7958. name: "Front",
  7959. image: {
  7960. source: "./media/characters/danny/front.svg",
  7961. extra: 1490 / 1350
  7962. }
  7963. },
  7964. back: {
  7965. height: math.unit(7 + 8 / 12, "feet"),
  7966. weight: math.unit(120, "lb"),
  7967. name: "Back",
  7968. image: {
  7969. source: "./media/characters/danny/back.svg",
  7970. extra: 1490 / 1350
  7971. }
  7972. },
  7973. },
  7974. [
  7975. {
  7976. name: "Normal",
  7977. height: math.unit(7 + 8 / 12, "feet"),
  7978. default: true
  7979. },
  7980. ]
  7981. ))
  7982. characterMakers.push(() => makeCharacter(
  7983. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7984. {
  7985. front: {
  7986. height: math.unit(3.5, "inches"),
  7987. weight: math.unit(19, "grams"),
  7988. name: "Front",
  7989. image: {
  7990. source: "./media/characters/mallow/front.svg",
  7991. extra: 471 / 431
  7992. }
  7993. },
  7994. back: {
  7995. height: math.unit(3.5, "inches"),
  7996. weight: math.unit(19, "grams"),
  7997. name: "Back",
  7998. image: {
  7999. source: "./media/characters/mallow/back.svg",
  8000. extra: 471 / 431
  8001. }
  8002. },
  8003. },
  8004. [
  8005. {
  8006. name: "Normal",
  8007. height: math.unit(3.5, "inches"),
  8008. default: true
  8009. },
  8010. ]
  8011. ))
  8012. characterMakers.push(() => makeCharacter(
  8013. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8014. {
  8015. front: {
  8016. height: math.unit(9, "feet"),
  8017. weight: math.unit(230, "kg"),
  8018. name: "Front",
  8019. image: {
  8020. source: "./media/characters/starry-aqua/front.svg"
  8021. }
  8022. },
  8023. back: {
  8024. height: math.unit(9, "feet"),
  8025. weight: math.unit(230, "kg"),
  8026. name: "Back",
  8027. image: {
  8028. source: "./media/characters/starry-aqua/back.svg"
  8029. }
  8030. },
  8031. hand: {
  8032. height: math.unit(9 * 0.1168, "feet"),
  8033. name: "Hand",
  8034. image: {
  8035. source: "./media/characters/starry-aqua/hand.svg"
  8036. }
  8037. },
  8038. foot: {
  8039. height: math.unit(9 * 0.18, "feet"),
  8040. name: "Foot",
  8041. image: {
  8042. source: "./media/characters/starry-aqua/foot.svg"
  8043. }
  8044. }
  8045. },
  8046. [
  8047. {
  8048. name: "Micro",
  8049. height: math.unit(3, "inches")
  8050. },
  8051. {
  8052. name: "Normal",
  8053. height: math.unit(9, "feet")
  8054. },
  8055. {
  8056. name: "Macro",
  8057. height: math.unit(300, "feet"),
  8058. default: true
  8059. },
  8060. {
  8061. name: "Megamacro",
  8062. height: math.unit(3200, "feet")
  8063. }
  8064. ]
  8065. ))
  8066. characterMakers.push(() => makeCharacter(
  8067. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8068. {
  8069. front: {
  8070. height: math.unit(6, "feet"),
  8071. weight: math.unit(230, "lb"),
  8072. name: "Front",
  8073. image: {
  8074. source: "./media/characters/luka/front.svg",
  8075. extra: 1,
  8076. bottom: 0.025
  8077. }
  8078. },
  8079. },
  8080. [
  8081. {
  8082. name: "Normal",
  8083. height: math.unit(12 + 8 / 12, "feet"),
  8084. default: true
  8085. },
  8086. {
  8087. name: "Minimacro",
  8088. height: math.unit(20, "feet")
  8089. },
  8090. {
  8091. name: "Macro",
  8092. height: math.unit(250, "feet")
  8093. },
  8094. {
  8095. name: "Megamacro",
  8096. height: math.unit(5, "miles")
  8097. },
  8098. {
  8099. name: "Gigamacro",
  8100. height: math.unit(8000, "miles")
  8101. },
  8102. ]
  8103. ))
  8104. characterMakers.push(() => makeCharacter(
  8105. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8106. {
  8107. front: {
  8108. height: math.unit(6, "feet"),
  8109. weight: math.unit(150, "lb"),
  8110. name: "Front",
  8111. image: {
  8112. source: "./media/characters/natalie-nightring/front.svg",
  8113. extra: 1,
  8114. bottom: 0.06
  8115. }
  8116. },
  8117. },
  8118. [
  8119. {
  8120. name: "Uh Oh",
  8121. height: math.unit(0.1, "mm")
  8122. },
  8123. {
  8124. name: "Small",
  8125. height: math.unit(3, "inches")
  8126. },
  8127. {
  8128. name: "Human Scale",
  8129. height: math.unit(6, "feet")
  8130. },
  8131. {
  8132. name: "Librarian",
  8133. height: math.unit(50, "feet"),
  8134. default: true
  8135. },
  8136. {
  8137. name: "Immense",
  8138. height: math.unit(200, "miles")
  8139. },
  8140. ]
  8141. ))
  8142. characterMakers.push(() => makeCharacter(
  8143. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8144. {
  8145. front: {
  8146. height: math.unit(6, "feet"),
  8147. weight: math.unit(180, "lbs"),
  8148. name: "Front",
  8149. image: {
  8150. source: "./media/characters/danni-rosie/front.svg",
  8151. extra: 1260 / 1128,
  8152. bottom: 0.022
  8153. }
  8154. },
  8155. },
  8156. [
  8157. {
  8158. name: "Micro",
  8159. height: math.unit(2, "inches"),
  8160. default: true
  8161. },
  8162. ]
  8163. ))
  8164. characterMakers.push(() => makeCharacter(
  8165. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8166. {
  8167. front: {
  8168. height: math.unit(5 + 9 / 12, "feet"),
  8169. weight: math.unit(220, "lb"),
  8170. name: "Front",
  8171. image: {
  8172. source: "./media/characters/samantha-kruse/front.svg",
  8173. extra: (985 / 935),
  8174. bottom: 0.03
  8175. }
  8176. },
  8177. frontUndressed: {
  8178. height: math.unit(5 + 9 / 12, "feet"),
  8179. weight: math.unit(220, "lb"),
  8180. name: "Front (Undressed)",
  8181. image: {
  8182. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8183. extra: (973 / 923),
  8184. bottom: 0.025
  8185. }
  8186. },
  8187. fat: {
  8188. height: math.unit(5 + 9 / 12, "feet"),
  8189. weight: math.unit(900, "lb"),
  8190. name: "Front (Fat)",
  8191. image: {
  8192. source: "./media/characters/samantha-kruse/fat.svg",
  8193. extra: 2688 / 2561
  8194. }
  8195. },
  8196. },
  8197. [
  8198. {
  8199. name: "Normal",
  8200. height: math.unit(5 + 9 / 12, "feet"),
  8201. default: true
  8202. }
  8203. ]
  8204. ))
  8205. characterMakers.push(() => makeCharacter(
  8206. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8207. {
  8208. back: {
  8209. height: math.unit(5 + 4 / 12, "feet"),
  8210. weight: math.unit(4963, "lb"),
  8211. name: "Back",
  8212. image: {
  8213. source: "./media/characters/amelia-rosie/back.svg",
  8214. extra: 1113 / 963,
  8215. bottom: 0.01
  8216. }
  8217. },
  8218. },
  8219. [
  8220. {
  8221. name: "Level 0",
  8222. height: math.unit(5 + 4 / 12, "feet")
  8223. },
  8224. {
  8225. name: "Level 1",
  8226. height: math.unit(164597, "feet"),
  8227. default: true
  8228. },
  8229. {
  8230. name: "Level 2",
  8231. height: math.unit(956243, "miles")
  8232. },
  8233. {
  8234. name: "Level 3",
  8235. height: math.unit(29421709423, "miles")
  8236. },
  8237. {
  8238. name: "Level 4",
  8239. height: math.unit(154, "lightyears")
  8240. },
  8241. {
  8242. name: "Level 5",
  8243. height: math.unit(4738272, "lightyears")
  8244. },
  8245. {
  8246. name: "Level 6",
  8247. height: math.unit(145787152896, "lightyears")
  8248. },
  8249. ]
  8250. ))
  8251. characterMakers.push(() => makeCharacter(
  8252. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8253. {
  8254. front: {
  8255. height: math.unit(5 + 11 / 12, "feet"),
  8256. weight: math.unit(65, "kg"),
  8257. name: "Front",
  8258. image: {
  8259. source: "./media/characters/rook-kitara/front.svg",
  8260. extra: 1347 / 1274,
  8261. bottom: 0.005
  8262. }
  8263. },
  8264. },
  8265. [
  8266. {
  8267. name: "Totally Unfair",
  8268. height: math.unit(1.8, "mm")
  8269. },
  8270. {
  8271. name: "Lap Rookie",
  8272. height: math.unit(1.4, "feet")
  8273. },
  8274. {
  8275. name: "Normal",
  8276. height: math.unit(5 + 11 / 12, "feet"),
  8277. default: true
  8278. },
  8279. {
  8280. name: "How Did This Happen",
  8281. height: math.unit(80, "miles")
  8282. }
  8283. ]
  8284. ))
  8285. characterMakers.push(() => makeCharacter(
  8286. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8287. {
  8288. front: {
  8289. height: math.unit(7, "feet"),
  8290. weight: math.unit(300, "lb"),
  8291. name: "Front",
  8292. image: {
  8293. source: "./media/characters/pisces/front.svg",
  8294. extra: 2255 / 2115,
  8295. bottom: 0.03
  8296. }
  8297. },
  8298. back: {
  8299. height: math.unit(7, "feet"),
  8300. weight: math.unit(300, "lb"),
  8301. name: "Back",
  8302. image: {
  8303. source: "./media/characters/pisces/back.svg",
  8304. extra: 2146 / 2055,
  8305. bottom: 0.04
  8306. }
  8307. },
  8308. },
  8309. [
  8310. {
  8311. name: "Normal",
  8312. height: math.unit(7, "feet"),
  8313. default: true
  8314. },
  8315. {
  8316. name: "Swimming Pool",
  8317. height: math.unit(12.2, "meters")
  8318. },
  8319. {
  8320. name: "Olympic Swimming Pool",
  8321. height: math.unit(56.3, "meters")
  8322. },
  8323. {
  8324. name: "Lake Superior",
  8325. height: math.unit(93900, "meters")
  8326. },
  8327. {
  8328. name: "Mediterranean Sea",
  8329. height: math.unit(644457, "meters")
  8330. },
  8331. {
  8332. name: "World's Oceans",
  8333. height: math.unit(4567491, "meters")
  8334. },
  8335. ]
  8336. ))
  8337. characterMakers.push(() => makeCharacter(
  8338. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8339. {
  8340. front: {
  8341. height: math.unit(2.3, "meters"),
  8342. weight: math.unit(120, "kg"),
  8343. name: "Front",
  8344. image: {
  8345. source: "./media/characters/zelas/front.svg"
  8346. }
  8347. },
  8348. side: {
  8349. height: math.unit(2.3, "meters"),
  8350. weight: math.unit(120, "kg"),
  8351. name: "Side",
  8352. image: {
  8353. source: "./media/characters/zelas/side.svg"
  8354. }
  8355. },
  8356. back: {
  8357. height: math.unit(2.3, "meters"),
  8358. weight: math.unit(120, "kg"),
  8359. name: "Back",
  8360. image: {
  8361. source: "./media/characters/zelas/back.svg"
  8362. }
  8363. },
  8364. foot: {
  8365. height: math.unit(1.116, "feet"),
  8366. name: "Foot",
  8367. image: {
  8368. source: "./media/characters/zelas/foot.svg"
  8369. }
  8370. },
  8371. },
  8372. [
  8373. {
  8374. name: "Normal",
  8375. height: math.unit(2.3, "meters")
  8376. },
  8377. {
  8378. name: "Macro",
  8379. height: math.unit(30, "meters"),
  8380. default: true
  8381. },
  8382. ]
  8383. ))
  8384. characterMakers.push(() => makeCharacter(
  8385. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8386. {
  8387. front: {
  8388. height: math.unit(1, "inch"),
  8389. weight: math.unit(0.21, "grams"),
  8390. name: "Front",
  8391. image: {
  8392. source: "./media/characters/talbot/front.svg",
  8393. extra: 594 / 544
  8394. }
  8395. },
  8396. },
  8397. [
  8398. {
  8399. name: "Micro",
  8400. height: math.unit(1, "inch"),
  8401. default: true
  8402. },
  8403. ]
  8404. ))
  8405. characterMakers.push(() => makeCharacter(
  8406. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8407. {
  8408. front: {
  8409. height: math.unit(3 + 3 / 12, "feet"),
  8410. weight: math.unit(51.8, "lb"),
  8411. name: "Front",
  8412. image: {
  8413. source: "./media/characters/fliss/front.svg",
  8414. extra: 840 / 640
  8415. }
  8416. },
  8417. },
  8418. [
  8419. {
  8420. name: "Teeny Tiny",
  8421. height: math.unit(1, "mm")
  8422. },
  8423. {
  8424. name: "Small",
  8425. height: math.unit(1, "inch"),
  8426. default: true
  8427. },
  8428. {
  8429. name: "Standard Sylveon",
  8430. height: math.unit(3 + 3 / 12, "feet")
  8431. },
  8432. {
  8433. name: "Large Nuisance",
  8434. height: math.unit(33, "feet")
  8435. },
  8436. {
  8437. name: "City Filler",
  8438. height: math.unit(3000, "feet")
  8439. },
  8440. {
  8441. name: "New Horizon",
  8442. height: math.unit(6000, "miles")
  8443. },
  8444. ]
  8445. ))
  8446. characterMakers.push(() => makeCharacter(
  8447. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8448. {
  8449. front: {
  8450. height: math.unit(5, "cm"),
  8451. weight: math.unit(1.94, "g"),
  8452. name: "Front",
  8453. image: {
  8454. source: "./media/characters/fleta/front.svg",
  8455. extra: 835 / 803
  8456. }
  8457. },
  8458. back: {
  8459. height: math.unit(5, "cm"),
  8460. weight: math.unit(1.94, "g"),
  8461. name: "Back",
  8462. image: {
  8463. source: "./media/characters/fleta/back.svg",
  8464. extra: 835 / 803
  8465. }
  8466. },
  8467. },
  8468. [
  8469. {
  8470. name: "Micro",
  8471. height: math.unit(5, "cm"),
  8472. default: true
  8473. },
  8474. ]
  8475. ))
  8476. characterMakers.push(() => makeCharacter(
  8477. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8478. {
  8479. front: {
  8480. height: math.unit(6, "feet"),
  8481. weight: math.unit(225, "lb"),
  8482. name: "Front",
  8483. image: {
  8484. source: "./media/characters/dominic/front.svg",
  8485. extra: 1770 / 1620,
  8486. bottom: 0.025
  8487. }
  8488. },
  8489. back: {
  8490. height: math.unit(6, "feet"),
  8491. weight: math.unit(225, "lb"),
  8492. name: "Back",
  8493. image: {
  8494. source: "./media/characters/dominic/back.svg",
  8495. extra: 1745 / 1620,
  8496. bottom: 0.065
  8497. }
  8498. },
  8499. },
  8500. [
  8501. {
  8502. name: "Nano",
  8503. height: math.unit(0.1, "mm")
  8504. },
  8505. {
  8506. name: "Micro-",
  8507. height: math.unit(1, "mm")
  8508. },
  8509. {
  8510. name: "Micro",
  8511. height: math.unit(4, "inches")
  8512. },
  8513. {
  8514. name: "Normal",
  8515. height: math.unit(6 + 4 / 12, "feet"),
  8516. default: true
  8517. },
  8518. {
  8519. name: "Macro",
  8520. height: math.unit(115, "feet")
  8521. },
  8522. {
  8523. name: "Macro+",
  8524. height: math.unit(955, "feet")
  8525. },
  8526. {
  8527. name: "Megamacro",
  8528. height: math.unit(8990, "feet")
  8529. },
  8530. {
  8531. name: "Gigmacro",
  8532. height: math.unit(9310, "miles")
  8533. },
  8534. {
  8535. name: "Teramacro",
  8536. height: math.unit(1567005010, "miles")
  8537. },
  8538. {
  8539. name: "Examacro",
  8540. height: math.unit(1425, "parsecs")
  8541. },
  8542. ]
  8543. ))
  8544. characterMakers.push(() => makeCharacter(
  8545. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8546. {
  8547. front: {
  8548. height: math.unit(400, "feet"),
  8549. weight: math.unit(44444444, "lb"),
  8550. name: "Front",
  8551. image: {
  8552. source: "./media/characters/major-colonel/front.svg"
  8553. }
  8554. },
  8555. back: {
  8556. height: math.unit(400, "feet"),
  8557. weight: math.unit(44444444, "lb"),
  8558. name: "Back",
  8559. image: {
  8560. source: "./media/characters/major-colonel/back.svg"
  8561. }
  8562. },
  8563. },
  8564. [
  8565. {
  8566. name: "Macro",
  8567. height: math.unit(400, "feet"),
  8568. default: true
  8569. },
  8570. ]
  8571. ))
  8572. characterMakers.push(() => makeCharacter(
  8573. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8574. {
  8575. catFront: {
  8576. height: math.unit(6, "feet"),
  8577. weight: math.unit(120, "lb"),
  8578. name: "Front (Cat Side)",
  8579. image: {
  8580. source: "./media/characters/axel-lycan/cat-front.svg",
  8581. extra: 430 / 402,
  8582. bottom: 43 / 472.35
  8583. }
  8584. },
  8585. catBack: {
  8586. height: math.unit(6, "feet"),
  8587. weight: math.unit(120, "lb"),
  8588. name: "Back (Cat Side)",
  8589. image: {
  8590. source: "./media/characters/axel-lycan/cat-back.svg",
  8591. extra: 447 / 419,
  8592. bottom: 23.3 / 469
  8593. }
  8594. },
  8595. wolfFront: {
  8596. height: math.unit(6, "feet"),
  8597. weight: math.unit(120, "lb"),
  8598. name: "Front (Wolf Side)",
  8599. image: {
  8600. source: "./media/characters/axel-lycan/wolf-front.svg",
  8601. extra: 485 / 456,
  8602. bottom: 19 / 504
  8603. }
  8604. },
  8605. wolfBack: {
  8606. height: math.unit(6, "feet"),
  8607. weight: math.unit(120, "lb"),
  8608. name: "Back (Wolf Side)",
  8609. image: {
  8610. source: "./media/characters/axel-lycan/wolf-back.svg",
  8611. extra: 475 / 438,
  8612. bottom: 39.2 / 514
  8613. }
  8614. },
  8615. },
  8616. [
  8617. {
  8618. name: "Macro",
  8619. height: math.unit(1, "km"),
  8620. default: true
  8621. },
  8622. ]
  8623. ))
  8624. characterMakers.push(() => makeCharacter(
  8625. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8626. {
  8627. front: {
  8628. height: math.unit(5 + 9 / 12, "feet"),
  8629. weight: math.unit(175, "lb"),
  8630. name: "Front",
  8631. image: {
  8632. source: "./media/characters/vanrel-hyena/front.svg",
  8633. extra: 1086 / 1010,
  8634. bottom: 0.04
  8635. }
  8636. },
  8637. },
  8638. [
  8639. {
  8640. name: "Normal",
  8641. height: math.unit(5 + 9 / 12, "feet"),
  8642. default: true
  8643. },
  8644. ]
  8645. ))
  8646. characterMakers.push(() => makeCharacter(
  8647. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8648. {
  8649. front: {
  8650. height: math.unit(6, "feet"),
  8651. weight: math.unit(103, "lb"),
  8652. name: "Front",
  8653. image: {
  8654. source: "./media/characters/abbott-absol/front.svg",
  8655. extra: 2010 / 1842
  8656. }
  8657. },
  8658. },
  8659. [
  8660. {
  8661. name: "Megamicro",
  8662. height: math.unit(0.1, "mm")
  8663. },
  8664. {
  8665. name: "Micro",
  8666. height: math.unit(1, "inch")
  8667. },
  8668. {
  8669. name: "Normal",
  8670. height: math.unit(6, "feet"),
  8671. default: true
  8672. },
  8673. ]
  8674. ))
  8675. characterMakers.push(() => makeCharacter(
  8676. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8677. {
  8678. front: {
  8679. height: math.unit(6, "feet"),
  8680. weight: math.unit(264, "lb"),
  8681. name: "Front",
  8682. image: {
  8683. source: "./media/characters/hector/front.svg",
  8684. extra: 2280 / 2130,
  8685. bottom: 0.07
  8686. }
  8687. },
  8688. },
  8689. [
  8690. {
  8691. name: "Normal",
  8692. height: math.unit(12.25, "foot"),
  8693. default: true
  8694. },
  8695. {
  8696. name: "Macro",
  8697. height: math.unit(160, "feet")
  8698. },
  8699. ]
  8700. ))
  8701. characterMakers.push(() => makeCharacter(
  8702. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8703. {
  8704. front: {
  8705. height: math.unit(6, "feet"),
  8706. weight: math.unit(150, "lb"),
  8707. name: "Front",
  8708. image: {
  8709. source: "./media/characters/sal/front.svg",
  8710. extra: 1846 / 1699,
  8711. bottom: 0.04
  8712. }
  8713. },
  8714. },
  8715. [
  8716. {
  8717. name: "Megamacro",
  8718. height: math.unit(10, "miles"),
  8719. default: true
  8720. },
  8721. ]
  8722. ))
  8723. characterMakers.push(() => makeCharacter(
  8724. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8725. {
  8726. front: {
  8727. height: math.unit(3, "meters"),
  8728. weight: math.unit(450, "kg"),
  8729. name: "front",
  8730. image: {
  8731. source: "./media/characters/ranger/front.svg",
  8732. extra: 2401 / 2243,
  8733. bottom: 0.05
  8734. }
  8735. },
  8736. },
  8737. [
  8738. {
  8739. name: "Normal",
  8740. height: math.unit(3, "meters"),
  8741. default: true
  8742. },
  8743. ]
  8744. ))
  8745. characterMakers.push(() => makeCharacter(
  8746. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8747. {
  8748. front: {
  8749. height: math.unit(14, "feet"),
  8750. weight: math.unit(800, "kg"),
  8751. name: "Front",
  8752. image: {
  8753. source: "./media/characters/theresa/front.svg",
  8754. extra: 3575 / 3346,
  8755. bottom: 0.03
  8756. }
  8757. },
  8758. },
  8759. [
  8760. {
  8761. name: "Normal",
  8762. height: math.unit(14, "feet"),
  8763. default: true
  8764. },
  8765. ]
  8766. ))
  8767. characterMakers.push(() => makeCharacter(
  8768. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8769. {
  8770. front: {
  8771. height: math.unit(6, "feet"),
  8772. weight: math.unit(3, "kg"),
  8773. name: "Front",
  8774. image: {
  8775. source: "./media/characters/ine/front.svg",
  8776. extra: 678 / 539,
  8777. bottom: 0.023
  8778. }
  8779. },
  8780. },
  8781. [
  8782. {
  8783. name: "Normal",
  8784. height: math.unit(2.265, "feet"),
  8785. default: true
  8786. },
  8787. ]
  8788. ))
  8789. characterMakers.push(() => makeCharacter(
  8790. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8791. {
  8792. front: {
  8793. height: math.unit(5, "feet"),
  8794. weight: math.unit(30, "kg"),
  8795. name: "Front",
  8796. image: {
  8797. source: "./media/characters/vial/front.svg",
  8798. extra: 1365 / 1277,
  8799. bottom: 0.04
  8800. }
  8801. },
  8802. },
  8803. [
  8804. {
  8805. name: "Normal",
  8806. height: math.unit(5, "feet"),
  8807. default: true
  8808. },
  8809. ]
  8810. ))
  8811. characterMakers.push(() => makeCharacter(
  8812. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8813. {
  8814. side: {
  8815. height: math.unit(3.4, "meters"),
  8816. weight: math.unit(1000, "lb"),
  8817. name: "Side",
  8818. image: {
  8819. source: "./media/characters/rovoska/side.svg",
  8820. extra: 4403 / 1515
  8821. }
  8822. },
  8823. },
  8824. [
  8825. {
  8826. name: "Normal",
  8827. height: math.unit(3.4, "meters"),
  8828. default: true
  8829. },
  8830. ]
  8831. ))
  8832. characterMakers.push(() => makeCharacter(
  8833. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8834. {
  8835. front: {
  8836. height: math.unit(8, "feet"),
  8837. weight: math.unit(315, "lb"),
  8838. name: "Front",
  8839. image: {
  8840. source: "./media/characters/gunner-rotthbauer/front.svg"
  8841. }
  8842. },
  8843. back: {
  8844. height: math.unit(8, "feet"),
  8845. weight: math.unit(315, "lb"),
  8846. name: "Back",
  8847. image: {
  8848. source: "./media/characters/gunner-rotthbauer/back.svg"
  8849. }
  8850. },
  8851. },
  8852. [
  8853. {
  8854. name: "Micro",
  8855. height: math.unit(3.5, "inches")
  8856. },
  8857. {
  8858. name: "Normal",
  8859. height: math.unit(8, "feet"),
  8860. default: true
  8861. },
  8862. {
  8863. name: "Macro",
  8864. height: math.unit(250, "feet")
  8865. },
  8866. {
  8867. name: "Megamacro",
  8868. height: math.unit(1, "AU")
  8869. },
  8870. ]
  8871. ))
  8872. characterMakers.push(() => makeCharacter(
  8873. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8874. {
  8875. front: {
  8876. height: math.unit(5 + 5 / 12, "feet"),
  8877. weight: math.unit(140, "lb"),
  8878. name: "Front",
  8879. image: {
  8880. source: "./media/characters/allatia/front.svg",
  8881. extra: 1227 / 1180,
  8882. bottom: 0.027
  8883. }
  8884. },
  8885. },
  8886. [
  8887. {
  8888. name: "Normal",
  8889. height: math.unit(5 + 5 / 12, "feet")
  8890. },
  8891. {
  8892. name: "Macro",
  8893. height: math.unit(250, "feet"),
  8894. default: true
  8895. },
  8896. {
  8897. name: "Megamacro",
  8898. height: math.unit(8, "miles")
  8899. }
  8900. ]
  8901. ))
  8902. characterMakers.push(() => makeCharacter(
  8903. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8904. {
  8905. front: {
  8906. height: math.unit(6, "feet"),
  8907. weight: math.unit(120, "lb"),
  8908. name: "Front",
  8909. image: {
  8910. source: "./media/characters/tene/front.svg",
  8911. extra: 1728 / 1578,
  8912. bottom: 0.022
  8913. }
  8914. },
  8915. stomping: {
  8916. height: math.unit(2.025, "meters"),
  8917. weight: math.unit(120, "lb"),
  8918. name: "Stomping",
  8919. image: {
  8920. source: "./media/characters/tene/stomping.svg",
  8921. extra: 938 / 873,
  8922. bottom: 0.01
  8923. }
  8924. },
  8925. sitting: {
  8926. height: math.unit(1, "meter"),
  8927. weight: math.unit(120, "lb"),
  8928. name: "Sitting",
  8929. image: {
  8930. source: "./media/characters/tene/sitting.svg",
  8931. extra: 437 / 415,
  8932. bottom: 0.1
  8933. }
  8934. },
  8935. feral: {
  8936. height: math.unit(3.9, "feet"),
  8937. weight: math.unit(250, "lb"),
  8938. name: "Feral",
  8939. image: {
  8940. source: "./media/characters/tene/feral.svg",
  8941. extra: 717 / 458,
  8942. bottom: 0.179
  8943. }
  8944. },
  8945. },
  8946. [
  8947. {
  8948. name: "Normal",
  8949. height: math.unit(6, "feet")
  8950. },
  8951. {
  8952. name: "Macro",
  8953. height: math.unit(300, "feet"),
  8954. default: true
  8955. },
  8956. {
  8957. name: "Megamacro",
  8958. height: math.unit(5, "miles")
  8959. },
  8960. ]
  8961. ))
  8962. characterMakers.push(() => makeCharacter(
  8963. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8964. {
  8965. side: {
  8966. height: math.unit(6, "feet"),
  8967. name: "Side",
  8968. image: {
  8969. source: "./media/characters/evander/side.svg",
  8970. extra: 877 / 477
  8971. }
  8972. },
  8973. },
  8974. [
  8975. {
  8976. name: "Normal",
  8977. height: math.unit(0.83, "meters"),
  8978. default: true
  8979. },
  8980. ]
  8981. ))
  8982. characterMakers.push(() => makeCharacter(
  8983. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8984. {
  8985. front: {
  8986. height: math.unit(12, "feet"),
  8987. weight: math.unit(1000, "lb"),
  8988. name: "Front",
  8989. image: {
  8990. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8991. extra: 1762 / 1611
  8992. }
  8993. },
  8994. back: {
  8995. height: math.unit(12, "feet"),
  8996. weight: math.unit(1000, "lb"),
  8997. name: "Back",
  8998. image: {
  8999. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9000. extra: 1762 / 1611
  9001. }
  9002. },
  9003. },
  9004. [
  9005. {
  9006. name: "Normal",
  9007. height: math.unit(12, "feet"),
  9008. default: true
  9009. },
  9010. {
  9011. name: "Kaiju",
  9012. height: math.unit(150, "feet")
  9013. },
  9014. ]
  9015. ))
  9016. characterMakers.push(() => makeCharacter(
  9017. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9018. {
  9019. front: {
  9020. height: math.unit(6, "feet"),
  9021. weight: math.unit(150, "lb"),
  9022. name: "Front",
  9023. image: {
  9024. source: "./media/characters/zero-alurus/front.svg"
  9025. }
  9026. },
  9027. back: {
  9028. height: math.unit(6, "feet"),
  9029. weight: math.unit(150, "lb"),
  9030. name: "Back",
  9031. image: {
  9032. source: "./media/characters/zero-alurus/back.svg"
  9033. }
  9034. },
  9035. },
  9036. [
  9037. {
  9038. name: "Normal",
  9039. height: math.unit(5 + 10 / 12, "feet")
  9040. },
  9041. {
  9042. name: "Macro",
  9043. height: math.unit(60, "feet"),
  9044. default: true
  9045. },
  9046. {
  9047. name: "Macro+",
  9048. height: math.unit(450, "feet")
  9049. },
  9050. ]
  9051. ))
  9052. characterMakers.push(() => makeCharacter(
  9053. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9054. {
  9055. front: {
  9056. height: math.unit(6, "feet"),
  9057. weight: math.unit(200, "lb"),
  9058. name: "Front",
  9059. image: {
  9060. source: "./media/characters/mega-shi/front.svg",
  9061. extra: 1279 / 1250,
  9062. bottom: 0.02
  9063. }
  9064. },
  9065. back: {
  9066. height: math.unit(6, "feet"),
  9067. weight: math.unit(200, "lb"),
  9068. name: "Back",
  9069. image: {
  9070. source: "./media/characters/mega-shi/back.svg",
  9071. extra: 1279 / 1250,
  9072. bottom: 0.02
  9073. }
  9074. },
  9075. },
  9076. [
  9077. {
  9078. name: "Micro",
  9079. height: math.unit(16 + 6 / 12, "feet")
  9080. },
  9081. {
  9082. name: "Third Dimension",
  9083. height: math.unit(40, "meters")
  9084. },
  9085. {
  9086. name: "Normal",
  9087. height: math.unit(660, "feet"),
  9088. default: true
  9089. },
  9090. {
  9091. name: "Megamacro",
  9092. height: math.unit(10, "miles")
  9093. },
  9094. {
  9095. name: "Planetary Launch",
  9096. height: math.unit(500, "miles")
  9097. },
  9098. {
  9099. name: "Interstellar",
  9100. height: math.unit(1e9, "miles")
  9101. },
  9102. {
  9103. name: "Leaving the Universe",
  9104. height: math.unit(1, "gigaparsec")
  9105. },
  9106. {
  9107. name: "Travelling Universes",
  9108. height: math.unit(30e15, "parsecs")
  9109. },
  9110. ]
  9111. ))
  9112. characterMakers.push(() => makeCharacter(
  9113. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9114. {
  9115. front: {
  9116. height: math.unit(6, "feet"),
  9117. weight: math.unit(150, "lb"),
  9118. name: "Front",
  9119. image: {
  9120. source: "./media/characters/odyssey/front.svg",
  9121. extra: 1782 / 1582,
  9122. bottom: 0.01
  9123. }
  9124. },
  9125. side: {
  9126. height: math.unit(5.7, "feet"),
  9127. weight: math.unit(140, "lb"),
  9128. name: "Side",
  9129. image: {
  9130. source: "./media/characters/odyssey/side.svg",
  9131. extra: 6462 / 5700
  9132. }
  9133. },
  9134. },
  9135. [
  9136. {
  9137. name: "Normal",
  9138. height: math.unit(5 + 4 / 12, "feet")
  9139. },
  9140. {
  9141. name: "Macro",
  9142. height: math.unit(1, "km")
  9143. },
  9144. {
  9145. name: "Megamacro",
  9146. height: math.unit(3000, "km")
  9147. },
  9148. {
  9149. name: "Gigamacro",
  9150. height: math.unit(1, "AU"),
  9151. default: true
  9152. },
  9153. {
  9154. name: "Omniversal",
  9155. height: math.unit(100e14, "lightyears")
  9156. },
  9157. ]
  9158. ))
  9159. characterMakers.push(() => makeCharacter(
  9160. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9161. {
  9162. front: {
  9163. height: math.unit(6, "feet"),
  9164. weight: math.unit(300, "lb"),
  9165. name: "Front",
  9166. image: {
  9167. source: "./media/characters/mekuto/front.svg",
  9168. extra: 921 / 832,
  9169. bottom: 0.03
  9170. }
  9171. },
  9172. hand: {
  9173. height: math.unit(6 / 10.24, "feet"),
  9174. name: "Hand",
  9175. image: {
  9176. source: "./media/characters/mekuto/hand.svg"
  9177. }
  9178. },
  9179. foot: {
  9180. height: math.unit(6 / 5.05, "feet"),
  9181. name: "Foot",
  9182. image: {
  9183. source: "./media/characters/mekuto/foot.svg"
  9184. }
  9185. },
  9186. },
  9187. [
  9188. {
  9189. name: "Minimicro",
  9190. height: math.unit(0.2, "inches")
  9191. },
  9192. {
  9193. name: "Micro",
  9194. height: math.unit(1.5, "inches")
  9195. },
  9196. {
  9197. name: "Normal",
  9198. height: math.unit(5 + 11 / 12, "feet"),
  9199. default: true
  9200. },
  9201. {
  9202. name: "Minimacro",
  9203. height: math.unit(17 + 9 / 12, "feet")
  9204. },
  9205. {
  9206. name: "Macro",
  9207. height: math.unit(177.5, "feet")
  9208. },
  9209. {
  9210. name: "Megamacro",
  9211. height: math.unit(152, "miles")
  9212. },
  9213. ]
  9214. ))
  9215. characterMakers.push(() => makeCharacter(
  9216. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9217. {
  9218. front: {
  9219. height: math.unit(6.5, "inches"),
  9220. weight: math.unit(13, "oz"),
  9221. name: "Front",
  9222. image: {
  9223. source: "./media/characters/dafydd-tomos/front.svg",
  9224. extra: 2990 / 2603,
  9225. bottom: 0.03
  9226. }
  9227. },
  9228. },
  9229. [
  9230. {
  9231. name: "Micro",
  9232. height: math.unit(6.5, "inches"),
  9233. default: true
  9234. },
  9235. ]
  9236. ))
  9237. characterMakers.push(() => makeCharacter(
  9238. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9239. {
  9240. front: {
  9241. height: math.unit(6, "feet"),
  9242. weight: math.unit(150, "lb"),
  9243. name: "Front",
  9244. image: {
  9245. source: "./media/characters/splinter/front.svg",
  9246. extra: 2990 / 2882,
  9247. bottom: 0.04
  9248. }
  9249. },
  9250. back: {
  9251. height: math.unit(6, "feet"),
  9252. weight: math.unit(150, "lb"),
  9253. name: "Back",
  9254. image: {
  9255. source: "./media/characters/splinter/back.svg",
  9256. extra: 2990 / 2882,
  9257. bottom: 0.04
  9258. }
  9259. },
  9260. },
  9261. [
  9262. {
  9263. name: "Normal",
  9264. height: math.unit(6, "feet")
  9265. },
  9266. {
  9267. name: "Macro",
  9268. height: math.unit(230, "meters"),
  9269. default: true
  9270. },
  9271. ]
  9272. ))
  9273. characterMakers.push(() => makeCharacter(
  9274. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9275. {
  9276. front: {
  9277. height: math.unit(4 + 10 / 12, "feet"),
  9278. weight: math.unit(480, "lb"),
  9279. name: "Front",
  9280. image: {
  9281. source: "./media/characters/snow-gabumon/front.svg",
  9282. extra: 1140 / 963,
  9283. bottom: 0.058
  9284. }
  9285. },
  9286. back: {
  9287. height: math.unit(4 + 10 / 12, "feet"),
  9288. weight: math.unit(480, "lb"),
  9289. name: "Back",
  9290. image: {
  9291. source: "./media/characters/snow-gabumon/back.svg",
  9292. extra: 1115 / 962,
  9293. bottom: 0.041
  9294. }
  9295. },
  9296. frontUndresed: {
  9297. height: math.unit(4 + 10 / 12, "feet"),
  9298. weight: math.unit(480, "lb"),
  9299. name: "Front (Undressed)",
  9300. image: {
  9301. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9302. extra: 1061 / 960,
  9303. bottom: 0.045
  9304. }
  9305. },
  9306. },
  9307. [
  9308. {
  9309. name: "Micro",
  9310. height: math.unit(1, "inch")
  9311. },
  9312. {
  9313. name: "Normal",
  9314. height: math.unit(4 + 10 / 12, "feet"),
  9315. default: true
  9316. },
  9317. {
  9318. name: "Macro",
  9319. height: math.unit(200, "feet")
  9320. },
  9321. {
  9322. name: "Megamacro",
  9323. height: math.unit(120, "miles")
  9324. },
  9325. {
  9326. name: "Gigamacro",
  9327. height: math.unit(9800, "miles")
  9328. },
  9329. ]
  9330. ))
  9331. characterMakers.push(() => makeCharacter(
  9332. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9333. {
  9334. front: {
  9335. height: math.unit(1.7, "meters"),
  9336. weight: math.unit(140, "lb"),
  9337. name: "Front",
  9338. image: {
  9339. source: "./media/characters/moody/front.svg",
  9340. extra: 3226 / 3007,
  9341. bottom: 0.087
  9342. }
  9343. },
  9344. },
  9345. [
  9346. {
  9347. name: "Micro",
  9348. height: math.unit(1, "mm")
  9349. },
  9350. {
  9351. name: "Normal",
  9352. height: math.unit(1.7, "meters"),
  9353. default: true
  9354. },
  9355. {
  9356. name: "Macro",
  9357. height: math.unit(80, "meters")
  9358. },
  9359. {
  9360. name: "Macro+",
  9361. height: math.unit(500, "meters")
  9362. },
  9363. ]
  9364. ))
  9365. characterMakers.push(() => makeCharacter(
  9366. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9367. {
  9368. front: {
  9369. height: math.unit(6, "feet"),
  9370. weight: math.unit(150, "lb"),
  9371. name: "Front",
  9372. image: {
  9373. source: "./media/characters/zyas/front.svg",
  9374. extra: 1180 / 1120,
  9375. bottom: 0.045
  9376. }
  9377. },
  9378. },
  9379. [
  9380. {
  9381. name: "Normal",
  9382. height: math.unit(10, "feet"),
  9383. default: true
  9384. },
  9385. {
  9386. name: "Macro",
  9387. height: math.unit(500, "feet")
  9388. },
  9389. {
  9390. name: "Megamacro",
  9391. height: math.unit(5, "miles")
  9392. },
  9393. {
  9394. name: "Teramacro",
  9395. height: math.unit(150000, "miles")
  9396. },
  9397. ]
  9398. ))
  9399. characterMakers.push(() => makeCharacter(
  9400. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9401. {
  9402. front: {
  9403. height: math.unit(6, "feet"),
  9404. weight: math.unit(150, "lb"),
  9405. name: "Front",
  9406. image: {
  9407. source: "./media/characters/cuon/front.svg",
  9408. extra: 1390 / 1320,
  9409. bottom: 0.008
  9410. }
  9411. },
  9412. },
  9413. [
  9414. {
  9415. name: "Micro",
  9416. height: math.unit(3, "inches")
  9417. },
  9418. {
  9419. name: "Normal",
  9420. height: math.unit(18 + 9 / 12, "feet"),
  9421. default: true
  9422. },
  9423. {
  9424. name: "Macro",
  9425. height: math.unit(360, "feet")
  9426. },
  9427. {
  9428. name: "Megamacro",
  9429. height: math.unit(360, "miles")
  9430. },
  9431. ]
  9432. ))
  9433. characterMakers.push(() => makeCharacter(
  9434. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9435. {
  9436. front: {
  9437. height: math.unit(2.4, "meters"),
  9438. weight: math.unit(70, "kg"),
  9439. name: "Front",
  9440. image: {
  9441. source: "./media/characters/nyanuxk/front.svg",
  9442. extra: 1172 / 1084,
  9443. bottom: 0.065
  9444. }
  9445. },
  9446. side: {
  9447. height: math.unit(2.4, "meters"),
  9448. weight: math.unit(70, "kg"),
  9449. name: "Side",
  9450. image: {
  9451. source: "./media/characters/nyanuxk/side.svg",
  9452. extra: 1190 / 1132,
  9453. bottom: 0.007
  9454. }
  9455. },
  9456. back: {
  9457. height: math.unit(2.4, "meters"),
  9458. weight: math.unit(70, "kg"),
  9459. name: "Back",
  9460. image: {
  9461. source: "./media/characters/nyanuxk/back.svg",
  9462. extra: 1200 / 1141,
  9463. bottom: 0.015
  9464. }
  9465. },
  9466. foot: {
  9467. height: math.unit(0.52, "meters"),
  9468. name: "Foot",
  9469. image: {
  9470. source: "./media/characters/nyanuxk/foot.svg"
  9471. }
  9472. },
  9473. },
  9474. [
  9475. {
  9476. name: "Micro",
  9477. height: math.unit(2, "cm")
  9478. },
  9479. {
  9480. name: "Normal",
  9481. height: math.unit(2.4, "meters"),
  9482. default: true
  9483. },
  9484. {
  9485. name: "Smaller Macro",
  9486. height: math.unit(120, "meters")
  9487. },
  9488. {
  9489. name: "Bigger Macro",
  9490. height: math.unit(1.2, "km")
  9491. },
  9492. {
  9493. name: "Megamacro",
  9494. height: math.unit(15, "kilometers")
  9495. },
  9496. {
  9497. name: "Gigamacro",
  9498. height: math.unit(2000, "km")
  9499. },
  9500. {
  9501. name: "Teramacro",
  9502. height: math.unit(500000, "km")
  9503. },
  9504. ]
  9505. ))
  9506. characterMakers.push(() => makeCharacter(
  9507. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9508. {
  9509. side: {
  9510. height: math.unit(6, "feet"),
  9511. name: "Side",
  9512. image: {
  9513. source: "./media/characters/ailbhe/side.svg",
  9514. extra: 757 / 464,
  9515. bottom: 0.041
  9516. }
  9517. },
  9518. },
  9519. [
  9520. {
  9521. name: "Normal",
  9522. height: math.unit(1.07, "meters"),
  9523. default: true
  9524. },
  9525. ]
  9526. ))
  9527. characterMakers.push(() => makeCharacter(
  9528. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9529. {
  9530. front: {
  9531. height: math.unit(6, "feet"),
  9532. weight: math.unit(120, "kg"),
  9533. name: "Front",
  9534. image: {
  9535. source: "./media/characters/zevulfius/front.svg",
  9536. extra: 965 / 903
  9537. }
  9538. },
  9539. side: {
  9540. height: math.unit(6, "feet"),
  9541. weight: math.unit(120, "kg"),
  9542. name: "Side",
  9543. image: {
  9544. source: "./media/characters/zevulfius/side.svg",
  9545. extra: 939 / 900
  9546. }
  9547. },
  9548. back: {
  9549. height: math.unit(6, "feet"),
  9550. weight: math.unit(120, "kg"),
  9551. name: "Back",
  9552. image: {
  9553. source: "./media/characters/zevulfius/back.svg",
  9554. extra: 918 / 854,
  9555. bottom: 0.005
  9556. }
  9557. },
  9558. foot: {
  9559. height: math.unit(6 / 3.72, "feet"),
  9560. name: "Foot",
  9561. image: {
  9562. source: "./media/characters/zevulfius/foot.svg"
  9563. }
  9564. },
  9565. },
  9566. [
  9567. {
  9568. name: "Macro",
  9569. height: math.unit(750, "meters")
  9570. },
  9571. {
  9572. name: "Megamacro",
  9573. height: math.unit(20, "km"),
  9574. default: true
  9575. },
  9576. {
  9577. name: "Gigamacro",
  9578. height: math.unit(2000, "km")
  9579. },
  9580. {
  9581. name: "Teramacro",
  9582. height: math.unit(250000, "km")
  9583. },
  9584. ]
  9585. ))
  9586. characterMakers.push(() => makeCharacter(
  9587. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9588. {
  9589. front: {
  9590. height: math.unit(100, "feet"),
  9591. weight: math.unit(350, "kg"),
  9592. name: "Front",
  9593. image: {
  9594. source: "./media/characters/rikes/front.svg",
  9595. extra: 1565 / 1483,
  9596. bottom: 0.017
  9597. }
  9598. },
  9599. },
  9600. [
  9601. {
  9602. name: "Macro",
  9603. height: math.unit(100, "feet"),
  9604. default: true
  9605. },
  9606. ]
  9607. ))
  9608. characterMakers.push(() => makeCharacter(
  9609. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9610. {
  9611. anthro: {
  9612. height: math.unit(8, "feet"),
  9613. weight: math.unit(120, "kg"),
  9614. name: "Anthro",
  9615. image: {
  9616. source: "./media/characters/adam-silver-mane/anthro.svg",
  9617. extra: 5743 / 5339,
  9618. bottom: 0.07
  9619. }
  9620. },
  9621. taur: {
  9622. height: math.unit(16, "feet"),
  9623. weight: math.unit(1500, "kg"),
  9624. name: "Taur",
  9625. image: {
  9626. source: "./media/characters/adam-silver-mane/taur.svg",
  9627. extra: 1713 / 1571,
  9628. bottom: 0.01
  9629. }
  9630. },
  9631. },
  9632. [
  9633. {
  9634. name: "Normal",
  9635. height: math.unit(8, "feet")
  9636. },
  9637. {
  9638. name: "Minimacro",
  9639. height: math.unit(80, "feet")
  9640. },
  9641. {
  9642. name: "Macro",
  9643. height: math.unit(800, "feet"),
  9644. default: true
  9645. },
  9646. {
  9647. name: "Megamacro",
  9648. height: math.unit(8000, "feet")
  9649. },
  9650. {
  9651. name: "Gigamacro",
  9652. height: math.unit(800, "miles")
  9653. },
  9654. {
  9655. name: "Teramacro",
  9656. height: math.unit(80000, "miles")
  9657. },
  9658. {
  9659. name: "Celestial",
  9660. height: math.unit(8e6, "miles")
  9661. },
  9662. {
  9663. name: "Star Dragon",
  9664. height: math.unit(800000, "parsecs")
  9665. },
  9666. {
  9667. name: "Godly",
  9668. height: math.unit(800, "teraparsecs")
  9669. },
  9670. ]
  9671. ))
  9672. characterMakers.push(() => makeCharacter(
  9673. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9674. {
  9675. front: {
  9676. height: math.unit(6, "feet"),
  9677. weight: math.unit(150, "lb"),
  9678. name: "Front",
  9679. image: {
  9680. source: "./media/characters/ky'owin/front.svg",
  9681. extra: 3888 / 3068,
  9682. bottom: 0.015
  9683. }
  9684. },
  9685. },
  9686. [
  9687. {
  9688. name: "Normal",
  9689. height: math.unit(6 + 8 / 12, "feet")
  9690. },
  9691. {
  9692. name: "Large",
  9693. height: math.unit(68, "feet")
  9694. },
  9695. {
  9696. name: "Macro",
  9697. height: math.unit(132, "feet")
  9698. },
  9699. {
  9700. name: "Macro+",
  9701. height: math.unit(340, "feet")
  9702. },
  9703. {
  9704. name: "Macro++",
  9705. height: math.unit(680, "feet"),
  9706. default: true
  9707. },
  9708. {
  9709. name: "Megamacro",
  9710. height: math.unit(1, "mile")
  9711. },
  9712. {
  9713. name: "Megamacro+",
  9714. height: math.unit(10, "miles")
  9715. },
  9716. ]
  9717. ))
  9718. characterMakers.push(() => makeCharacter(
  9719. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9720. {
  9721. front: {
  9722. height: math.unit(4, "feet"),
  9723. weight: math.unit(50, "lb"),
  9724. name: "Front",
  9725. image: {
  9726. source: "./media/characters/mal/front.svg",
  9727. extra: 785 / 724,
  9728. bottom: 0.07
  9729. }
  9730. },
  9731. },
  9732. [
  9733. {
  9734. name: "Micro",
  9735. height: math.unit(4, "inches")
  9736. },
  9737. {
  9738. name: "Normal",
  9739. height: math.unit(4, "feet"),
  9740. default: true
  9741. },
  9742. {
  9743. name: "Macro",
  9744. height: math.unit(200, "feet")
  9745. },
  9746. ]
  9747. ))
  9748. characterMakers.push(() => makeCharacter(
  9749. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9750. {
  9751. front: {
  9752. height: math.unit(6, "feet"),
  9753. weight: math.unit(150, "lb"),
  9754. name: "Front",
  9755. image: {
  9756. source: "./media/characters/jordan-deware/front.svg",
  9757. extra: 1191 / 1012
  9758. }
  9759. },
  9760. },
  9761. [
  9762. {
  9763. name: "Nano",
  9764. height: math.unit(0.01, "mm")
  9765. },
  9766. {
  9767. name: "Minimicro",
  9768. height: math.unit(1, "mm")
  9769. },
  9770. {
  9771. name: "Micro",
  9772. height: math.unit(0.5, "inches")
  9773. },
  9774. {
  9775. name: "Normal",
  9776. height: math.unit(4, "feet"),
  9777. default: true
  9778. },
  9779. {
  9780. name: "Minimacro",
  9781. height: math.unit(40, "meters")
  9782. },
  9783. {
  9784. name: "Small Macro",
  9785. height: math.unit(400, "meters")
  9786. },
  9787. {
  9788. name: "Macro",
  9789. height: math.unit(4, "miles")
  9790. },
  9791. {
  9792. name: "Megamacro",
  9793. height: math.unit(40, "miles")
  9794. },
  9795. {
  9796. name: "Megamacro+",
  9797. height: math.unit(400, "miles")
  9798. },
  9799. {
  9800. name: "Gigamacro",
  9801. height: math.unit(400000, "miles")
  9802. },
  9803. ]
  9804. ))
  9805. characterMakers.push(() => makeCharacter(
  9806. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9807. {
  9808. side: {
  9809. height: math.unit(6, "feet"),
  9810. weight: math.unit(150, "lb"),
  9811. name: "Side",
  9812. image: {
  9813. source: "./media/characters/kimiko/side.svg",
  9814. extra: 600 / 358
  9815. }
  9816. },
  9817. },
  9818. [
  9819. {
  9820. name: "Normal",
  9821. height: math.unit(15, "feet"),
  9822. default: true
  9823. },
  9824. {
  9825. name: "Macro",
  9826. height: math.unit(220, "feet")
  9827. },
  9828. {
  9829. name: "Macro+",
  9830. height: math.unit(1450, "feet")
  9831. },
  9832. {
  9833. name: "Megamacro",
  9834. height: math.unit(11500, "feet")
  9835. },
  9836. {
  9837. name: "Gigamacro",
  9838. height: math.unit(9500, "miles")
  9839. },
  9840. {
  9841. name: "Teramacro",
  9842. height: math.unit(2208005005, "miles")
  9843. },
  9844. {
  9845. name: "Examacro",
  9846. height: math.unit(2750, "parsecs")
  9847. },
  9848. {
  9849. name: "Zettamacro",
  9850. height: math.unit(101500, "parsecs")
  9851. },
  9852. ]
  9853. ))
  9854. characterMakers.push(() => makeCharacter(
  9855. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9856. {
  9857. front: {
  9858. height: math.unit(6, "feet"),
  9859. weight: math.unit(70, "kg"),
  9860. name: "Front",
  9861. image: {
  9862. source: "./media/characters/andrew-sleepy/front.svg"
  9863. }
  9864. },
  9865. side: {
  9866. height: math.unit(6, "feet"),
  9867. weight: math.unit(70, "kg"),
  9868. name: "Side",
  9869. image: {
  9870. source: "./media/characters/andrew-sleepy/side.svg"
  9871. }
  9872. },
  9873. },
  9874. [
  9875. {
  9876. name: "Micro",
  9877. height: math.unit(1, "mm"),
  9878. default: true
  9879. },
  9880. ]
  9881. ))
  9882. characterMakers.push(() => makeCharacter(
  9883. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9884. {
  9885. front: {
  9886. height: math.unit(6, "feet"),
  9887. weight: math.unit(150, "lb"),
  9888. name: "Front",
  9889. image: {
  9890. source: "./media/characters/judio/front.svg",
  9891. extra: 1258 / 1110
  9892. }
  9893. },
  9894. },
  9895. [
  9896. {
  9897. name: "Normal",
  9898. height: math.unit(5 + 6 / 12, "feet")
  9899. },
  9900. {
  9901. name: "Macro",
  9902. height: math.unit(1000, "feet"),
  9903. default: true
  9904. },
  9905. {
  9906. name: "Megamacro",
  9907. height: math.unit(10, "miles")
  9908. },
  9909. ]
  9910. ))
  9911. characterMakers.push(() => makeCharacter(
  9912. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9913. {
  9914. front: {
  9915. height: math.unit(6, "feet"),
  9916. weight: math.unit(68, "kg"),
  9917. name: "Front",
  9918. image: {
  9919. source: "./media/characters/nomaxice/front.svg",
  9920. extra: 1498 / 1073,
  9921. bottom: 0.075
  9922. }
  9923. },
  9924. foot: {
  9925. height: math.unit(1.1, "feet"),
  9926. name: "Foot",
  9927. image: {
  9928. source: "./media/characters/nomaxice/foot.svg"
  9929. }
  9930. },
  9931. },
  9932. [
  9933. {
  9934. name: "Micro",
  9935. height: math.unit(8, "cm")
  9936. },
  9937. {
  9938. name: "Norm",
  9939. height: math.unit(1.82, "m")
  9940. },
  9941. {
  9942. name: "Norm+",
  9943. height: math.unit(8.8, "feet")
  9944. },
  9945. {
  9946. name: "Big",
  9947. height: math.unit(8, "meters"),
  9948. default: true
  9949. },
  9950. {
  9951. name: "Macro",
  9952. height: math.unit(18, "meters")
  9953. },
  9954. {
  9955. name: "Macro+",
  9956. height: math.unit(88, "meters")
  9957. },
  9958. ]
  9959. ))
  9960. characterMakers.push(() => makeCharacter(
  9961. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9962. {
  9963. front: {
  9964. height: math.unit(12, "feet"),
  9965. weight: math.unit(1.5, "tons"),
  9966. name: "Front",
  9967. image: {
  9968. source: "./media/characters/dydros/front.svg",
  9969. extra: 863 / 800,
  9970. bottom: 0.015
  9971. }
  9972. },
  9973. back: {
  9974. height: math.unit(12, "feet"),
  9975. weight: math.unit(1.5, "tons"),
  9976. name: "Back",
  9977. image: {
  9978. source: "./media/characters/dydros/back.svg",
  9979. extra: 900 / 843,
  9980. bottom: 0.005
  9981. }
  9982. },
  9983. },
  9984. [
  9985. {
  9986. name: "Normal",
  9987. height: math.unit(12, "feet"),
  9988. default: true
  9989. },
  9990. ]
  9991. ))
  9992. characterMakers.push(() => makeCharacter(
  9993. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9994. {
  9995. front: {
  9996. height: math.unit(6, "feet"),
  9997. weight: math.unit(100, "kg"),
  9998. name: "Front",
  9999. image: {
  10000. source: "./media/characters/riggi/front.svg",
  10001. extra: 5787 / 5303
  10002. }
  10003. },
  10004. hyper: {
  10005. height: math.unit(6 * 5 / 3, "feet"),
  10006. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10007. name: "Hyper",
  10008. image: {
  10009. source: "./media/characters/riggi/hyper.svg",
  10010. extra: 3595 / 3485
  10011. }
  10012. },
  10013. },
  10014. [
  10015. {
  10016. name: "Small Macro",
  10017. height: math.unit(50, "feet")
  10018. },
  10019. {
  10020. name: "Default",
  10021. height: math.unit(200, "feet"),
  10022. default: true
  10023. },
  10024. {
  10025. name: "Loom",
  10026. height: math.unit(10000, "feet")
  10027. },
  10028. {
  10029. name: "Cruising Altitude",
  10030. height: math.unit(30000, "feet")
  10031. },
  10032. {
  10033. name: "Megamacro",
  10034. height: math.unit(100, "miles")
  10035. },
  10036. {
  10037. name: "Continent Sized",
  10038. height: math.unit(2800, "miles")
  10039. },
  10040. {
  10041. name: "Earth Sized",
  10042. height: math.unit(8000, "miles")
  10043. },
  10044. ]
  10045. ))
  10046. characterMakers.push(() => makeCharacter(
  10047. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10048. {
  10049. front: {
  10050. height: math.unit(6, "feet"),
  10051. weight: math.unit(250, "lb"),
  10052. name: "Front",
  10053. image: {
  10054. source: "./media/characters/alexi/front.svg",
  10055. extra: 3483 / 3291,
  10056. bottom: 0.04
  10057. }
  10058. },
  10059. back: {
  10060. height: math.unit(6, "feet"),
  10061. weight: math.unit(250, "lb"),
  10062. name: "Back",
  10063. image: {
  10064. source: "./media/characters/alexi/back.svg",
  10065. extra: 3533 / 3356,
  10066. bottom: 0.021
  10067. }
  10068. },
  10069. frontTransforming: {
  10070. height: math.unit(8.58, "feet"),
  10071. weight: math.unit(1300, "lb"),
  10072. name: "Transforming",
  10073. image: {
  10074. source: "./media/characters/alexi/front-transforming.svg",
  10075. extra: 437 / 409,
  10076. bottom: 19 / 458.66
  10077. }
  10078. },
  10079. frontTransformed: {
  10080. height: math.unit(12.5, "feet"),
  10081. weight: math.unit(4000, "lb"),
  10082. name: "Transformed",
  10083. image: {
  10084. source: "./media/characters/alexi/front-transformed.svg",
  10085. extra: 639 / 614,
  10086. bottom: 30.55 / 671
  10087. }
  10088. },
  10089. },
  10090. [
  10091. {
  10092. name: "Normal",
  10093. height: math.unit(3, "meters"),
  10094. default: true
  10095. },
  10096. {
  10097. name: "Minimacro",
  10098. height: math.unit(30, "meters")
  10099. },
  10100. {
  10101. name: "Macro",
  10102. height: math.unit(500, "meters")
  10103. },
  10104. {
  10105. name: "Megamacro",
  10106. height: math.unit(9000, "km")
  10107. },
  10108. {
  10109. name: "Teramacro",
  10110. height: math.unit(384000, "km")
  10111. },
  10112. ]
  10113. ))
  10114. characterMakers.push(() => makeCharacter(
  10115. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10116. {
  10117. front: {
  10118. height: math.unit(6, "feet"),
  10119. weight: math.unit(150, "lb"),
  10120. name: "Front",
  10121. image: {
  10122. source: "./media/characters/kayroo/front.svg",
  10123. extra: 1153 / 1038,
  10124. bottom: 0.06
  10125. }
  10126. },
  10127. foot: {
  10128. height: math.unit(6, "feet"),
  10129. weight: math.unit(150, "lb"),
  10130. name: "Foot",
  10131. image: {
  10132. source: "./media/characters/kayroo/foot.svg"
  10133. }
  10134. },
  10135. },
  10136. [
  10137. {
  10138. name: "Normal",
  10139. height: math.unit(8, "feet"),
  10140. default: true
  10141. },
  10142. {
  10143. name: "Minimacro",
  10144. height: math.unit(250, "feet")
  10145. },
  10146. {
  10147. name: "Macro",
  10148. height: math.unit(2800, "feet")
  10149. },
  10150. {
  10151. name: "Megamacro",
  10152. height: math.unit(5200, "feet")
  10153. },
  10154. {
  10155. name: "Gigamacro",
  10156. height: math.unit(27000, "feet")
  10157. },
  10158. {
  10159. name: "Omega",
  10160. height: math.unit(45000, "feet")
  10161. },
  10162. ]
  10163. ))
  10164. characterMakers.push(() => makeCharacter(
  10165. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10166. {
  10167. front: {
  10168. height: math.unit(18, "feet"),
  10169. weight: math.unit(5800, "lb"),
  10170. name: "Front",
  10171. image: {
  10172. source: "./media/characters/rhys/front.svg",
  10173. extra: 3386 / 3090,
  10174. bottom: 0.07
  10175. }
  10176. },
  10177. },
  10178. [
  10179. {
  10180. name: "Normal",
  10181. height: math.unit(18, "feet"),
  10182. default: true
  10183. },
  10184. {
  10185. name: "Working Size",
  10186. height: math.unit(200, "feet")
  10187. },
  10188. {
  10189. name: "Demolition Size",
  10190. height: math.unit(2000, "feet")
  10191. },
  10192. {
  10193. name: "Maximum Licensed Size",
  10194. height: math.unit(5, "miles")
  10195. },
  10196. {
  10197. name: "Maximum Observed Size",
  10198. height: math.unit(10, "yottameters")
  10199. },
  10200. ]
  10201. ))
  10202. characterMakers.push(() => makeCharacter(
  10203. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10204. {
  10205. front: {
  10206. height: math.unit(6, "feet"),
  10207. weight: math.unit(250, "lb"),
  10208. name: "Front",
  10209. image: {
  10210. source: "./media/characters/toto/front.svg",
  10211. extra: 527 / 479,
  10212. bottom: 0.05
  10213. }
  10214. },
  10215. },
  10216. [
  10217. {
  10218. name: "Micro",
  10219. height: math.unit(3, "feet")
  10220. },
  10221. {
  10222. name: "Normal",
  10223. height: math.unit(10, "feet")
  10224. },
  10225. {
  10226. name: "Macro",
  10227. height: math.unit(150, "feet"),
  10228. default: true
  10229. },
  10230. {
  10231. name: "Megamacro",
  10232. height: math.unit(1200, "feet")
  10233. },
  10234. ]
  10235. ))
  10236. characterMakers.push(() => makeCharacter(
  10237. { name: "King", species: ["lion"], tags: ["anthro"] },
  10238. {
  10239. back: {
  10240. height: math.unit(6, "feet"),
  10241. weight: math.unit(150, "lb"),
  10242. name: "Back",
  10243. image: {
  10244. source: "./media/characters/king/back.svg"
  10245. }
  10246. },
  10247. },
  10248. [
  10249. {
  10250. name: "Micro",
  10251. height: math.unit(2, "inches")
  10252. },
  10253. {
  10254. name: "Normal",
  10255. height: math.unit(8, "feet")
  10256. },
  10257. {
  10258. name: "Macro",
  10259. height: math.unit(200, "feet"),
  10260. default: true
  10261. },
  10262. {
  10263. name: "Megamacro",
  10264. height: math.unit(50, "miles")
  10265. },
  10266. ]
  10267. ))
  10268. characterMakers.push(() => makeCharacter(
  10269. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10270. {
  10271. anthro: {
  10272. height: math.unit(6 + 5 / 12, "feet"),
  10273. weight: math.unit(280, "lb"),
  10274. name: "Anthro",
  10275. image: {
  10276. source: "./media/characters/cordite/anthro.svg",
  10277. extra: 1986 / 1905,
  10278. bottom: 0.025
  10279. }
  10280. },
  10281. feral: {
  10282. height: math.unit(2, "feet"),
  10283. weight: math.unit(90, "lb"),
  10284. name: "Feral",
  10285. image: {
  10286. source: "./media/characters/cordite/feral.svg",
  10287. extra: 1260 / 755,
  10288. bottom: 0.05
  10289. }
  10290. },
  10291. },
  10292. [
  10293. {
  10294. name: "Normal",
  10295. height: math.unit(6 + 5 / 12, "feet"),
  10296. default: true
  10297. },
  10298. ]
  10299. ))
  10300. characterMakers.push(() => makeCharacter(
  10301. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10302. {
  10303. front: {
  10304. height: math.unit(6, "feet"),
  10305. weight: math.unit(150, "lb"),
  10306. name: "Front",
  10307. image: {
  10308. source: "./media/characters/pianostrong/front.svg",
  10309. extra: 6577 / 6254,
  10310. bottom: 0.02
  10311. }
  10312. },
  10313. side: {
  10314. height: math.unit(6, "feet"),
  10315. weight: math.unit(150, "lb"),
  10316. name: "Side",
  10317. image: {
  10318. source: "./media/characters/pianostrong/side.svg",
  10319. extra: 6106 / 5730
  10320. }
  10321. },
  10322. back: {
  10323. height: math.unit(6, "feet"),
  10324. weight: math.unit(150, "lb"),
  10325. name: "Back",
  10326. image: {
  10327. source: "./media/characters/pianostrong/back.svg",
  10328. extra: 6085 / 5733,
  10329. bottom: 0.01
  10330. }
  10331. },
  10332. },
  10333. [
  10334. {
  10335. name: "Macro",
  10336. height: math.unit(100, "feet")
  10337. },
  10338. {
  10339. name: "Macro+",
  10340. height: math.unit(300, "feet"),
  10341. default: true
  10342. },
  10343. {
  10344. name: "Macro++",
  10345. height: math.unit(1000, "feet")
  10346. },
  10347. ]
  10348. ))
  10349. characterMakers.push(() => makeCharacter(
  10350. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10351. {
  10352. front: {
  10353. height: math.unit(6, "feet"),
  10354. weight: math.unit(150, "lb"),
  10355. name: "Front",
  10356. image: {
  10357. source: "./media/characters/kona/front.svg",
  10358. extra: 2960 / 2629,
  10359. bottom: 0.005
  10360. }
  10361. },
  10362. },
  10363. [
  10364. {
  10365. name: "Normal",
  10366. height: math.unit(11 + 8 / 12, "feet")
  10367. },
  10368. {
  10369. name: "Macro",
  10370. height: math.unit(850, "feet"),
  10371. default: true
  10372. },
  10373. {
  10374. name: "Macro+",
  10375. height: math.unit(1.5, "km"),
  10376. default: true
  10377. },
  10378. {
  10379. name: "Megamacro",
  10380. height: math.unit(80, "miles")
  10381. },
  10382. {
  10383. name: "Gigamacro",
  10384. height: math.unit(3500, "miles")
  10385. },
  10386. ]
  10387. ))
  10388. characterMakers.push(() => makeCharacter(
  10389. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10390. {
  10391. side: {
  10392. height: math.unit(1.9, "meters"),
  10393. weight: math.unit(326, "kg"),
  10394. name: "Side",
  10395. image: {
  10396. source: "./media/characters/levi/side.svg",
  10397. extra: 1704 / 1334,
  10398. bottom: 0.02
  10399. }
  10400. },
  10401. },
  10402. [
  10403. {
  10404. name: "Normal",
  10405. height: math.unit(1.9, "meters"),
  10406. default: true
  10407. },
  10408. {
  10409. name: "Macro",
  10410. height: math.unit(20, "meters")
  10411. },
  10412. {
  10413. name: "Macro+",
  10414. height: math.unit(200, "meters")
  10415. },
  10416. {
  10417. name: "Megamacro",
  10418. height: math.unit(2, "km")
  10419. },
  10420. {
  10421. name: "Megamacro+",
  10422. height: math.unit(20, "km")
  10423. },
  10424. {
  10425. name: "Gigamacro",
  10426. height: math.unit(2500, "km")
  10427. },
  10428. {
  10429. name: "Gigamacro+",
  10430. height: math.unit(120000, "km")
  10431. },
  10432. {
  10433. name: "Teramacro",
  10434. height: math.unit(7.77e6, "km")
  10435. },
  10436. ]
  10437. ))
  10438. characterMakers.push(() => makeCharacter(
  10439. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10440. {
  10441. front: {
  10442. height: math.unit(6 + 4 / 12, "feet"),
  10443. weight: math.unit(188, "lb"),
  10444. name: "Front",
  10445. image: {
  10446. source: "./media/characters/bmc/front.svg",
  10447. extra: 1067 / 1022,
  10448. bottom: 0.047
  10449. }
  10450. },
  10451. },
  10452. [
  10453. {
  10454. name: "Human-sized",
  10455. height: math.unit(6 + 4 / 12, "feet")
  10456. },
  10457. {
  10458. name: "Small",
  10459. height: math.unit(250, "feet")
  10460. },
  10461. {
  10462. name: "Normal",
  10463. height: math.unit(1250, "feet"),
  10464. default: true
  10465. },
  10466. {
  10467. name: "Good Day",
  10468. height: math.unit(88, "miles")
  10469. },
  10470. {
  10471. name: "Largest Measured Size",
  10472. height: math.unit(11.2e6, "lightyears")
  10473. },
  10474. ]
  10475. ))
  10476. characterMakers.push(() => makeCharacter(
  10477. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10478. {
  10479. front: {
  10480. height: math.unit(20, "feet"),
  10481. weight: math.unit(2016, "kg"),
  10482. name: "Front",
  10483. image: {
  10484. source: "./media/characters/sven-the-kaiju/front.svg",
  10485. extra: 1479 / 1449,
  10486. bottom: 0.05
  10487. }
  10488. },
  10489. },
  10490. [
  10491. {
  10492. name: "Fairy",
  10493. height: math.unit(6, "inches")
  10494. },
  10495. {
  10496. name: "Normal",
  10497. height: math.unit(20, "feet"),
  10498. default: true
  10499. },
  10500. {
  10501. name: "Rampage",
  10502. height: math.unit(200, "feet")
  10503. },
  10504. {
  10505. name: "Archfey Forest Guardian",
  10506. height: math.unit(1, "mile")
  10507. },
  10508. ]
  10509. ))
  10510. characterMakers.push(() => makeCharacter(
  10511. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10512. {
  10513. front: {
  10514. height: math.unit(4, "meters"),
  10515. weight: math.unit(2, "tons"),
  10516. name: "Front",
  10517. image: {
  10518. source: "./media/characters/marik/front.svg",
  10519. extra: 1057 / 1003,
  10520. bottom: 0.08
  10521. }
  10522. },
  10523. },
  10524. [
  10525. {
  10526. name: "Normal",
  10527. height: math.unit(4, "meters"),
  10528. default: true
  10529. },
  10530. {
  10531. name: "Macro",
  10532. height: math.unit(20, "meters")
  10533. },
  10534. {
  10535. name: "Megamacro",
  10536. height: math.unit(50, "km")
  10537. },
  10538. {
  10539. name: "Gigamacro",
  10540. height: math.unit(100, "km")
  10541. },
  10542. {
  10543. name: "Alpha Macro",
  10544. height: math.unit(7.88e7, "yottameters")
  10545. },
  10546. ]
  10547. ))
  10548. characterMakers.push(() => makeCharacter(
  10549. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10550. {
  10551. front: {
  10552. height: math.unit(6, "feet"),
  10553. weight: math.unit(110, "lb"),
  10554. name: "Front",
  10555. image: {
  10556. source: "./media/characters/mel/front.svg",
  10557. extra: 736 / 617,
  10558. bottom: 0.017
  10559. }
  10560. },
  10561. },
  10562. [
  10563. {
  10564. name: "Pico",
  10565. height: math.unit(3, "pm")
  10566. },
  10567. {
  10568. name: "Nano",
  10569. height: math.unit(3, "nm")
  10570. },
  10571. {
  10572. name: "Micro",
  10573. height: math.unit(0.3, "mm"),
  10574. default: true
  10575. },
  10576. {
  10577. name: "Micro+",
  10578. height: math.unit(3, "mm")
  10579. },
  10580. {
  10581. name: "Normal",
  10582. height: math.unit(5 + 10.5 / 12, "feet")
  10583. },
  10584. ]
  10585. ))
  10586. characterMakers.push(() => makeCharacter(
  10587. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10588. {
  10589. kaiju: {
  10590. height: math.unit(1.75, "meters"),
  10591. weight: math.unit(55, "kg"),
  10592. name: "Kaiju",
  10593. image: {
  10594. source: "./media/characters/lykonous/kaiju.svg",
  10595. extra: 1055 / 946,
  10596. bottom: 0.135
  10597. }
  10598. },
  10599. },
  10600. [
  10601. {
  10602. name: "Normal",
  10603. height: math.unit(2.5, "meters"),
  10604. default: true
  10605. },
  10606. {
  10607. name: "Kaiju Dragon",
  10608. height: math.unit(60, "meters")
  10609. },
  10610. {
  10611. name: "Mega Kaiju",
  10612. height: math.unit(120, "km")
  10613. },
  10614. {
  10615. name: "Giga Kaiju",
  10616. height: math.unit(200, "megameters")
  10617. },
  10618. {
  10619. name: "Terra Kaiju",
  10620. height: math.unit(400, "gigameters")
  10621. },
  10622. {
  10623. name: "Kaiju Dragon God",
  10624. height: math.unit(13000, "exaparsecs")
  10625. },
  10626. ]
  10627. ))
  10628. characterMakers.push(() => makeCharacter(
  10629. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10630. {
  10631. front: {
  10632. height: math.unit(6, "feet"),
  10633. weight: math.unit(150, "lb"),
  10634. name: "Front",
  10635. image: {
  10636. source: "./media/characters/blü/front.svg",
  10637. extra: 1883 / 1564,
  10638. bottom: 0.031
  10639. }
  10640. },
  10641. },
  10642. [
  10643. {
  10644. name: "Normal",
  10645. height: math.unit(13, "feet"),
  10646. default: true
  10647. },
  10648. {
  10649. name: "Big Boi",
  10650. height: math.unit(150, "meters")
  10651. },
  10652. {
  10653. name: "Mini Stomper",
  10654. height: math.unit(300, "meters")
  10655. },
  10656. {
  10657. name: "Macro",
  10658. height: math.unit(1000, "meters")
  10659. },
  10660. {
  10661. name: "Megamacro",
  10662. height: math.unit(11000, "meters")
  10663. },
  10664. {
  10665. name: "Gigamacro",
  10666. height: math.unit(11000, "km")
  10667. },
  10668. {
  10669. name: "Teramacro",
  10670. height: math.unit(420000, "km")
  10671. },
  10672. {
  10673. name: "Examacro",
  10674. height: math.unit(120, "parsecs")
  10675. },
  10676. {
  10677. name: "God Tho",
  10678. height: math.unit(98000000000, "parsecs")
  10679. },
  10680. ]
  10681. ))
  10682. characterMakers.push(() => makeCharacter(
  10683. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10684. {
  10685. taurFront: {
  10686. height: math.unit(6, "feet"),
  10687. weight: math.unit(200, "lb"),
  10688. name: "Taur (Front)",
  10689. image: {
  10690. source: "./media/characters/scales/taur-front.svg",
  10691. extra: 1,
  10692. bottom: 0.05
  10693. }
  10694. },
  10695. taurBack: {
  10696. height: math.unit(6, "feet"),
  10697. weight: math.unit(200, "lb"),
  10698. name: "Taur (Back)",
  10699. image: {
  10700. source: "./media/characters/scales/taur-back.svg",
  10701. extra: 1,
  10702. bottom: 0.08
  10703. }
  10704. },
  10705. anthro: {
  10706. height: math.unit(6 * 7 / 12, "feet"),
  10707. weight: math.unit(100, "lb"),
  10708. name: "Anthro",
  10709. image: {
  10710. source: "./media/characters/scales/anthro.svg",
  10711. extra: 1,
  10712. bottom: 0.06
  10713. }
  10714. },
  10715. },
  10716. [
  10717. {
  10718. name: "Normal",
  10719. height: math.unit(12, "feet"),
  10720. default: true
  10721. },
  10722. ]
  10723. ))
  10724. characterMakers.push(() => makeCharacter(
  10725. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10726. {
  10727. front: {
  10728. height: math.unit(6, "feet"),
  10729. weight: math.unit(150, "lb"),
  10730. name: "Front",
  10731. image: {
  10732. source: "./media/characters/koragos/front.svg",
  10733. extra: 841 / 794,
  10734. bottom: 0.035
  10735. }
  10736. },
  10737. back: {
  10738. height: math.unit(6, "feet"),
  10739. weight: math.unit(150, "lb"),
  10740. name: "Back",
  10741. image: {
  10742. source: "./media/characters/koragos/back.svg",
  10743. extra: 841 / 810,
  10744. bottom: 0.022
  10745. }
  10746. },
  10747. },
  10748. [
  10749. {
  10750. name: "Normal",
  10751. height: math.unit(6 + 11 / 12, "feet"),
  10752. default: true
  10753. },
  10754. {
  10755. name: "Macro",
  10756. height: math.unit(490, "feet")
  10757. },
  10758. {
  10759. name: "Megamacro",
  10760. height: math.unit(10, "miles")
  10761. },
  10762. {
  10763. name: "Gigamacro",
  10764. height: math.unit(50, "miles")
  10765. },
  10766. ]
  10767. ))
  10768. characterMakers.push(() => makeCharacter(
  10769. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10770. {
  10771. front: {
  10772. height: math.unit(6, "feet"),
  10773. weight: math.unit(250, "lb"),
  10774. name: "Front",
  10775. image: {
  10776. source: "./media/characters/xylrem/front.svg",
  10777. extra: 3323 / 3050,
  10778. bottom: 0.065
  10779. }
  10780. },
  10781. },
  10782. [
  10783. {
  10784. name: "Micro",
  10785. height: math.unit(4, "feet")
  10786. },
  10787. {
  10788. name: "Normal",
  10789. height: math.unit(16, "feet"),
  10790. default: true
  10791. },
  10792. {
  10793. name: "Macro",
  10794. height: math.unit(2720, "feet")
  10795. },
  10796. {
  10797. name: "Megamacro",
  10798. height: math.unit(25000, "miles")
  10799. },
  10800. ]
  10801. ))
  10802. characterMakers.push(() => makeCharacter(
  10803. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10804. {
  10805. front: {
  10806. height: math.unit(8, "feet"),
  10807. weight: math.unit(250, "kg"),
  10808. name: "Front",
  10809. image: {
  10810. source: "./media/characters/ikideru/front.svg",
  10811. extra: 930 / 870,
  10812. bottom: 0.087
  10813. }
  10814. },
  10815. back: {
  10816. height: math.unit(8, "feet"),
  10817. weight: math.unit(250, "kg"),
  10818. name: "Back",
  10819. image: {
  10820. source: "./media/characters/ikideru/back.svg",
  10821. extra: 919 / 852,
  10822. bottom: 0.055
  10823. }
  10824. },
  10825. },
  10826. [
  10827. {
  10828. name: "Rare",
  10829. height: math.unit(8, "feet"),
  10830. default: true
  10831. },
  10832. {
  10833. name: "Playful Loom",
  10834. height: math.unit(80, "feet")
  10835. },
  10836. {
  10837. name: "City Leaner",
  10838. height: math.unit(230, "feet")
  10839. },
  10840. {
  10841. name: "Megamacro",
  10842. height: math.unit(2500, "feet")
  10843. },
  10844. {
  10845. name: "Gigamacro",
  10846. height: math.unit(26400, "feet")
  10847. },
  10848. {
  10849. name: "Tectonic Shifter",
  10850. height: math.unit(1.7, "megameters")
  10851. },
  10852. {
  10853. name: "Planet Carer",
  10854. height: math.unit(21, "megameters")
  10855. },
  10856. {
  10857. name: "God",
  10858. height: math.unit(11157.22, "parsecs")
  10859. },
  10860. ]
  10861. ))
  10862. characterMakers.push(() => makeCharacter(
  10863. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10864. {
  10865. front: {
  10866. height: math.unit(6, "feet"),
  10867. weight: math.unit(120, "lb"),
  10868. name: "Front",
  10869. image: {
  10870. source: "./media/characters/neo/front.svg"
  10871. }
  10872. },
  10873. },
  10874. [
  10875. {
  10876. name: "Micro",
  10877. height: math.unit(2, "inches"),
  10878. default: true
  10879. },
  10880. {
  10881. name: "Human Size",
  10882. height: math.unit(5 + 8 / 12, "feet")
  10883. },
  10884. ]
  10885. ))
  10886. characterMakers.push(() => makeCharacter(
  10887. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10888. {
  10889. front: {
  10890. height: math.unit(13 + 10 / 12, "feet"),
  10891. weight: math.unit(5320, "lb"),
  10892. name: "Front",
  10893. image: {
  10894. source: "./media/characters/chauncey-chantz/front.svg",
  10895. extra: 1587 / 1435,
  10896. bottom: 0.02
  10897. }
  10898. },
  10899. },
  10900. [
  10901. {
  10902. name: "Normal",
  10903. height: math.unit(13 + 10 / 12, "feet"),
  10904. default: true
  10905. },
  10906. {
  10907. name: "Macro",
  10908. height: math.unit(45, "feet")
  10909. },
  10910. {
  10911. name: "Megamacro",
  10912. height: math.unit(250, "miles")
  10913. },
  10914. {
  10915. name: "Planetary",
  10916. height: math.unit(10000, "miles")
  10917. },
  10918. {
  10919. name: "Galactic",
  10920. height: math.unit(40000, "parsecs")
  10921. },
  10922. {
  10923. name: "Universal",
  10924. height: math.unit(1, "yottameter")
  10925. },
  10926. ]
  10927. ))
  10928. characterMakers.push(() => makeCharacter(
  10929. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10930. {
  10931. front: {
  10932. height: math.unit(6, "feet"),
  10933. weight: math.unit(150, "lb"),
  10934. name: "Front",
  10935. image: {
  10936. source: "./media/characters/epifox/front.svg",
  10937. extra: 1,
  10938. bottom: 0.075
  10939. }
  10940. },
  10941. },
  10942. [
  10943. {
  10944. name: "Micro",
  10945. height: math.unit(6, "inches")
  10946. },
  10947. {
  10948. name: "Normal",
  10949. height: math.unit(12, "feet"),
  10950. default: true
  10951. },
  10952. {
  10953. name: "Macro",
  10954. height: math.unit(3810, "feet")
  10955. },
  10956. {
  10957. name: "Megamacro",
  10958. height: math.unit(500, "miles")
  10959. },
  10960. ]
  10961. ))
  10962. characterMakers.push(() => makeCharacter(
  10963. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10964. {
  10965. front: {
  10966. height: math.unit(1.8796, "m"),
  10967. weight: math.unit(230, "lb"),
  10968. name: "Front",
  10969. image: {
  10970. source: "./media/characters/colin-t/front.svg",
  10971. extra: 1272 / 1193,
  10972. bottom: 0.07
  10973. }
  10974. },
  10975. },
  10976. [
  10977. {
  10978. name: "Micro",
  10979. height: math.unit(0.571, "meters")
  10980. },
  10981. {
  10982. name: "Normal",
  10983. height: math.unit(1.8796, "meters"),
  10984. default: true
  10985. },
  10986. {
  10987. name: "Tall",
  10988. height: math.unit(4, "meters")
  10989. },
  10990. {
  10991. name: "Macro",
  10992. height: math.unit(67.241, "meters")
  10993. },
  10994. {
  10995. name: "Megamacro",
  10996. height: math.unit(371.856, "meters")
  10997. },
  10998. {
  10999. name: "Planetary",
  11000. height: math.unit(12631.5689, "km")
  11001. },
  11002. ]
  11003. ))
  11004. characterMakers.push(() => makeCharacter(
  11005. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11006. {
  11007. front: {
  11008. height: math.unit(1.85, "meters"),
  11009. weight: math.unit(80, "kg"),
  11010. name: "Front",
  11011. image: {
  11012. source: "./media/characters/matvei/front.svg",
  11013. extra: 614 / 594,
  11014. bottom: 0.01
  11015. }
  11016. },
  11017. },
  11018. [
  11019. {
  11020. name: "Normal",
  11021. height: math.unit(1.85, "meters"),
  11022. default: true
  11023. },
  11024. ]
  11025. ))
  11026. characterMakers.push(() => makeCharacter(
  11027. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11028. {
  11029. front: {
  11030. height: math.unit(5 + 9 / 12, "feet"),
  11031. weight: math.unit(70, "lb"),
  11032. name: "Front",
  11033. image: {
  11034. source: "./media/characters/quincy/front.svg",
  11035. extra: 3041 / 2751
  11036. }
  11037. },
  11038. back: {
  11039. height: math.unit(5 + 9 / 12, "feet"),
  11040. weight: math.unit(70, "lb"),
  11041. name: "Back",
  11042. image: {
  11043. source: "./media/characters/quincy/back.svg",
  11044. extra: 3041 / 2751
  11045. }
  11046. },
  11047. flying: {
  11048. height: math.unit(5 + 4 / 12, "feet"),
  11049. weight: math.unit(70, "lb"),
  11050. name: "Flying",
  11051. image: {
  11052. source: "./media/characters/quincy/flying.svg",
  11053. extra: 1044 / 930
  11054. }
  11055. },
  11056. },
  11057. [
  11058. {
  11059. name: "Micro",
  11060. height: math.unit(3, "cm")
  11061. },
  11062. {
  11063. name: "Normal",
  11064. height: math.unit(5 + 9 / 12, "feet")
  11065. },
  11066. {
  11067. name: "Macro",
  11068. height: math.unit(200, "meters"),
  11069. default: true
  11070. },
  11071. {
  11072. name: "Megamacro",
  11073. height: math.unit(1000, "meters")
  11074. },
  11075. ]
  11076. ))
  11077. characterMakers.push(() => makeCharacter(
  11078. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11079. {
  11080. front: {
  11081. height: math.unit(4 + 7 / 12, "feet"),
  11082. weight: math.unit(150, "lb"),
  11083. name: "Front",
  11084. image: {
  11085. source: "./media/characters/vanrel/front.svg",
  11086. extra: 1,
  11087. bottom: 0.02
  11088. }
  11089. },
  11090. elemental: {
  11091. height: math.unit(3, "feet"),
  11092. weight: math.unit(150, "lb"),
  11093. name: "Elemental",
  11094. image: {
  11095. source: "./media/characters/vanrel/elemental.svg",
  11096. extra: 192.3 / 162.8,
  11097. bottom: 1.79 / 194.17
  11098. }
  11099. },
  11100. side: {
  11101. height: math.unit(4 + 7 / 12, "feet"),
  11102. weight: math.unit(150, "lb"),
  11103. name: "Side",
  11104. image: {
  11105. source: "./media/characters/vanrel/side.svg",
  11106. extra: 1,
  11107. bottom: 0.025
  11108. }
  11109. },
  11110. tome: {
  11111. height: math.unit(1.35, "feet"),
  11112. weight: math.unit(10, "lb"),
  11113. name: "Vanrel's Tome",
  11114. rename: true,
  11115. image: {
  11116. source: "./media/characters/vanrel/tome.svg"
  11117. }
  11118. },
  11119. beans: {
  11120. height: math.unit(0.89, "feet"),
  11121. name: "Beans",
  11122. image: {
  11123. source: "./media/characters/vanrel/beans.svg"
  11124. }
  11125. },
  11126. },
  11127. [
  11128. {
  11129. name: "Normal",
  11130. height: math.unit(4 + 7 / 12, "feet"),
  11131. default: true
  11132. },
  11133. ]
  11134. ))
  11135. characterMakers.push(() => makeCharacter(
  11136. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11137. {
  11138. front: {
  11139. height: math.unit(7 + 5 / 12, "feet"),
  11140. weight: math.unit(150, "lb"),
  11141. name: "Front",
  11142. image: {
  11143. source: "./media/characters/kuiper-vanrel/front.svg",
  11144. extra: 1118 / 1068,
  11145. bottom: 0.09
  11146. }
  11147. },
  11148. foot: {
  11149. height: math.unit(0.55, "meters"),
  11150. name: "Foot",
  11151. image: {
  11152. source: "./media/characters/kuiper-vanrel/foot.svg",
  11153. }
  11154. },
  11155. battle: {
  11156. height: math.unit(6.824, "feet"),
  11157. weight: math.unit(150, "lb"),
  11158. name: "Battle",
  11159. image: {
  11160. source: "./media/characters/kuiper-vanrel/battle.svg",
  11161. extra: 1466 / 1327,
  11162. bottom: 29 / 1492.5
  11163. }
  11164. },
  11165. },
  11166. [
  11167. {
  11168. name: "Normal",
  11169. height: math.unit(7 + 5 / 12, "feet"),
  11170. default: true
  11171. },
  11172. ]
  11173. ))
  11174. characterMakers.push(() => makeCharacter(
  11175. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11176. {
  11177. front: {
  11178. height: math.unit(8 + 5 / 12, "feet"),
  11179. weight: math.unit(150, "lb"),
  11180. name: "Front",
  11181. image: {
  11182. source: "./media/characters/keset-vanrel/front.svg",
  11183. extra: 1150 / 1084,
  11184. bottom: 0.05
  11185. }
  11186. },
  11187. hand: {
  11188. height: math.unit(0.6, "meters"),
  11189. name: "Hand",
  11190. image: {
  11191. source: "./media/characters/keset-vanrel/hand.svg"
  11192. }
  11193. },
  11194. foot: {
  11195. height: math.unit(0.94978, "meters"),
  11196. name: "Foot",
  11197. image: {
  11198. source: "./media/characters/keset-vanrel/foot.svg"
  11199. }
  11200. },
  11201. battle: {
  11202. height: math.unit(7.408, "feet"),
  11203. weight: math.unit(150, "lb"),
  11204. name: "Battle",
  11205. image: {
  11206. source: "./media/characters/keset-vanrel/battle.svg",
  11207. extra: 1890 / 1386,
  11208. bottom: 73.28 / 1970
  11209. }
  11210. },
  11211. },
  11212. [
  11213. {
  11214. name: "Normal",
  11215. height: math.unit(8 + 5 / 12, "feet"),
  11216. default: true
  11217. },
  11218. ]
  11219. ))
  11220. characterMakers.push(() => makeCharacter(
  11221. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11222. {
  11223. front: {
  11224. height: math.unit(6, "feet"),
  11225. weight: math.unit(150, "lb"),
  11226. name: "Front",
  11227. image: {
  11228. source: "./media/characters/neos/front.svg",
  11229. extra: 1696 / 992,
  11230. bottom: 0.14
  11231. }
  11232. },
  11233. },
  11234. [
  11235. {
  11236. name: "Normal",
  11237. height: math.unit(54, "cm"),
  11238. default: true
  11239. },
  11240. {
  11241. name: "Macro",
  11242. height: math.unit(100, "m")
  11243. },
  11244. {
  11245. name: "Megamacro",
  11246. height: math.unit(10, "km")
  11247. },
  11248. {
  11249. name: "Megamacro+",
  11250. height: math.unit(100, "km")
  11251. },
  11252. {
  11253. name: "Gigamacro",
  11254. height: math.unit(100, "Mm")
  11255. },
  11256. {
  11257. name: "Teramacro",
  11258. height: math.unit(100, "Gm")
  11259. },
  11260. {
  11261. name: "Examacro",
  11262. height: math.unit(100, "Em")
  11263. },
  11264. {
  11265. name: "Godly",
  11266. height: math.unit(10000, "Ym")
  11267. },
  11268. {
  11269. name: "Beyond Godly",
  11270. height: math.unit(25, "multiverses")
  11271. },
  11272. ]
  11273. ))
  11274. characterMakers.push(() => makeCharacter(
  11275. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11276. {
  11277. feminine: {
  11278. height: math.unit(5, "feet"),
  11279. weight: math.unit(100, "lb"),
  11280. name: "Feminine",
  11281. image: {
  11282. source: "./media/characters/sammy-mouse/feminine.svg",
  11283. extra: 2526 / 2425,
  11284. bottom: 0.123
  11285. }
  11286. },
  11287. masculine: {
  11288. height: math.unit(5, "feet"),
  11289. weight: math.unit(100, "lb"),
  11290. name: "Masculine",
  11291. image: {
  11292. source: "./media/characters/sammy-mouse/masculine.svg",
  11293. extra: 2526 / 2425,
  11294. bottom: 0.123
  11295. }
  11296. },
  11297. },
  11298. [
  11299. {
  11300. name: "Micro",
  11301. height: math.unit(5, "inches")
  11302. },
  11303. {
  11304. name: "Normal",
  11305. height: math.unit(5, "feet"),
  11306. default: true
  11307. },
  11308. {
  11309. name: "Macro",
  11310. height: math.unit(60, "feet")
  11311. },
  11312. ]
  11313. ))
  11314. characterMakers.push(() => makeCharacter(
  11315. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11316. {
  11317. front: {
  11318. height: math.unit(4, "feet"),
  11319. weight: math.unit(50, "lb"),
  11320. name: "Front",
  11321. image: {
  11322. source: "./media/characters/kole/front.svg",
  11323. extra: 1423 / 1303,
  11324. bottom: 0.025
  11325. }
  11326. },
  11327. back: {
  11328. height: math.unit(4, "feet"),
  11329. weight: math.unit(50, "lb"),
  11330. name: "Back",
  11331. image: {
  11332. source: "./media/characters/kole/back.svg",
  11333. extra: 1426 / 1280,
  11334. bottom: 0.02
  11335. }
  11336. },
  11337. },
  11338. [
  11339. {
  11340. name: "Normal",
  11341. height: math.unit(4, "feet"),
  11342. default: true
  11343. },
  11344. ]
  11345. ))
  11346. characterMakers.push(() => makeCharacter(
  11347. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11348. {
  11349. front: {
  11350. height: math.unit(2 + 6 / 12, "feet"),
  11351. weight: math.unit(20, "lb"),
  11352. name: "Front",
  11353. image: {
  11354. source: "./media/characters/rufran/front.svg",
  11355. extra: 2041 / 1839,
  11356. bottom: 0.055
  11357. }
  11358. },
  11359. back: {
  11360. height: math.unit(2 + 6 / 12, "feet"),
  11361. weight: math.unit(20, "lb"),
  11362. name: "Back",
  11363. image: {
  11364. source: "./media/characters/rufran/back.svg",
  11365. extra: 2054 / 1839,
  11366. bottom: 0.01
  11367. }
  11368. },
  11369. hand: {
  11370. height: math.unit(0.2166, "meters"),
  11371. name: "Hand",
  11372. image: {
  11373. source: "./media/characters/rufran/hand.svg"
  11374. }
  11375. },
  11376. foot: {
  11377. height: math.unit(0.185, "meters"),
  11378. name: "Foot",
  11379. image: {
  11380. source: "./media/characters/rufran/foot.svg"
  11381. }
  11382. },
  11383. },
  11384. [
  11385. {
  11386. name: "Micro",
  11387. height: math.unit(1, "inch")
  11388. },
  11389. {
  11390. name: "Normal",
  11391. height: math.unit(2 + 6 / 12, "feet"),
  11392. default: true
  11393. },
  11394. {
  11395. name: "Big",
  11396. height: math.unit(60, "feet")
  11397. },
  11398. {
  11399. name: "Macro",
  11400. height: math.unit(325, "feet")
  11401. },
  11402. ]
  11403. ))
  11404. characterMakers.push(() => makeCharacter(
  11405. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11406. {
  11407. front: {
  11408. height: math.unit(0.3, "meters"),
  11409. weight: math.unit(3.5, "kg"),
  11410. name: "Front",
  11411. image: {
  11412. source: "./media/characters/chip/front.svg",
  11413. extra: 748 / 674
  11414. }
  11415. },
  11416. },
  11417. [
  11418. {
  11419. name: "Micro",
  11420. height: math.unit(1, "inch"),
  11421. default: true
  11422. },
  11423. ]
  11424. ))
  11425. characterMakers.push(() => makeCharacter(
  11426. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11427. {
  11428. side: {
  11429. height: math.unit(2.3, "meters"),
  11430. weight: math.unit(3500, "lb"),
  11431. name: "Side",
  11432. image: {
  11433. source: "./media/characters/torvid/side.svg",
  11434. extra: 1972 / 722,
  11435. bottom: 0.035
  11436. }
  11437. },
  11438. },
  11439. [
  11440. {
  11441. name: "Normal",
  11442. height: math.unit(2.3, "meters"),
  11443. default: true
  11444. },
  11445. ]
  11446. ))
  11447. characterMakers.push(() => makeCharacter(
  11448. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11449. {
  11450. front: {
  11451. height: math.unit(2, "meters"),
  11452. weight: math.unit(150.5, "kg"),
  11453. name: "Front",
  11454. image: {
  11455. source: "./media/characters/susan/front.svg",
  11456. extra: 693 / 635,
  11457. bottom: 0.05
  11458. }
  11459. },
  11460. },
  11461. [
  11462. {
  11463. name: "Megamacro",
  11464. height: math.unit(505, "miles"),
  11465. default: true
  11466. },
  11467. ]
  11468. ))
  11469. characterMakers.push(() => makeCharacter(
  11470. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11471. {
  11472. front: {
  11473. height: math.unit(6, "feet"),
  11474. weight: math.unit(150, "lb"),
  11475. name: "Front",
  11476. image: {
  11477. source: "./media/characters/raindrops/front.svg",
  11478. extra: 2655 / 2461,
  11479. bottom: 49/2705
  11480. }
  11481. },
  11482. back: {
  11483. height: math.unit(6, "feet"),
  11484. weight: math.unit(150, "lb"),
  11485. name: "Back",
  11486. image: {
  11487. source: "./media/characters/raindrops/back.svg",
  11488. extra: 2574 / 2400,
  11489. bottom: 65/2634
  11490. }
  11491. },
  11492. },
  11493. [
  11494. {
  11495. name: "Micro",
  11496. height: math.unit(6, "inches")
  11497. },
  11498. {
  11499. name: "Normal",
  11500. height: math.unit(6 + 2 / 12, "feet")
  11501. },
  11502. {
  11503. name: "Macro",
  11504. height: math.unit(131, "feet"),
  11505. default: true
  11506. },
  11507. {
  11508. name: "Megamacro",
  11509. height: math.unit(15, "miles")
  11510. },
  11511. {
  11512. name: "Gigamacro",
  11513. height: math.unit(4000, "miles")
  11514. },
  11515. {
  11516. name: "Teramacro",
  11517. height: math.unit(315000, "miles")
  11518. },
  11519. ]
  11520. ))
  11521. characterMakers.push(() => makeCharacter(
  11522. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11523. {
  11524. front: {
  11525. height: math.unit(2.794, "meters"),
  11526. weight: math.unit(325, "kg"),
  11527. name: "Front",
  11528. image: {
  11529. source: "./media/characters/tezwa/front.svg",
  11530. extra: 2083 / 1906,
  11531. bottom: 0.031
  11532. }
  11533. },
  11534. foot: {
  11535. height: math.unit(0.687, "meters"),
  11536. name: "Foot",
  11537. image: {
  11538. source: "./media/characters/tezwa/foot.svg"
  11539. }
  11540. },
  11541. },
  11542. [
  11543. {
  11544. name: "Normal",
  11545. height: math.unit(9 + 2 / 12, "feet"),
  11546. default: true
  11547. },
  11548. ]
  11549. ))
  11550. characterMakers.push(() => makeCharacter(
  11551. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11552. {
  11553. front: {
  11554. height: math.unit(58, "feet"),
  11555. weight: math.unit(89000, "lb"),
  11556. name: "Front",
  11557. image: {
  11558. source: "./media/characters/typhus/front.svg",
  11559. extra: 816 / 800,
  11560. bottom: 0.065
  11561. }
  11562. },
  11563. },
  11564. [
  11565. {
  11566. name: "Macro",
  11567. height: math.unit(58, "feet"),
  11568. default: true
  11569. },
  11570. ]
  11571. ))
  11572. characterMakers.push(() => makeCharacter(
  11573. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11574. {
  11575. front: {
  11576. height: math.unit(12, "feet"),
  11577. weight: math.unit(6, "tonnes"),
  11578. name: "Front",
  11579. image: {
  11580. source: "./media/characters/lyra-von-wulf/front.svg",
  11581. extra: 1,
  11582. bottom: 0.10
  11583. }
  11584. },
  11585. frontMecha: {
  11586. height: math.unit(12, "feet"),
  11587. weight: math.unit(12, "tonnes"),
  11588. name: "Front (Mecha)",
  11589. image: {
  11590. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11591. extra: 1,
  11592. bottom: 0.042
  11593. }
  11594. },
  11595. maw: {
  11596. height: math.unit(2.2, "feet"),
  11597. name: "Maw",
  11598. image: {
  11599. source: "./media/characters/lyra-von-wulf/maw.svg"
  11600. }
  11601. },
  11602. },
  11603. [
  11604. {
  11605. name: "Normal",
  11606. height: math.unit(12, "feet"),
  11607. default: true
  11608. },
  11609. {
  11610. name: "Classic",
  11611. height: math.unit(50, "feet")
  11612. },
  11613. {
  11614. name: "Macro",
  11615. height: math.unit(500, "feet")
  11616. },
  11617. {
  11618. name: "Megamacro",
  11619. height: math.unit(1, "mile")
  11620. },
  11621. {
  11622. name: "Gigamacro",
  11623. height: math.unit(400, "miles")
  11624. },
  11625. {
  11626. name: "Teramacro",
  11627. height: math.unit(22000, "miles")
  11628. },
  11629. {
  11630. name: "Solarmacro",
  11631. height: math.unit(8600000, "miles")
  11632. },
  11633. {
  11634. name: "Galactic",
  11635. height: math.unit(1057000, "lightyears")
  11636. },
  11637. ]
  11638. ))
  11639. characterMakers.push(() => makeCharacter(
  11640. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11641. {
  11642. front: {
  11643. height: math.unit(6 + 10 / 12, "feet"),
  11644. weight: math.unit(150, "lb"),
  11645. name: "Front",
  11646. image: {
  11647. source: "./media/characters/dixon/front.svg",
  11648. extra: 3361 / 3209,
  11649. bottom: 0.01
  11650. }
  11651. },
  11652. },
  11653. [
  11654. {
  11655. name: "Normal",
  11656. height: math.unit(6 + 10 / 12, "feet"),
  11657. default: true
  11658. },
  11659. {
  11660. name: "Big",
  11661. height: math.unit(12, "meters")
  11662. },
  11663. {
  11664. name: "Macro",
  11665. height: math.unit(500, "meters")
  11666. },
  11667. {
  11668. name: "Megamacro",
  11669. height: math.unit(2, "km")
  11670. },
  11671. ]
  11672. ))
  11673. characterMakers.push(() => makeCharacter(
  11674. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11675. {
  11676. front: {
  11677. height: math.unit(185, "cm"),
  11678. weight: math.unit(68, "kg"),
  11679. name: "Front",
  11680. image: {
  11681. source: "./media/characters/kauko/front.svg",
  11682. extra: 1455 / 1421,
  11683. bottom: 0.03
  11684. }
  11685. },
  11686. back: {
  11687. height: math.unit(185, "cm"),
  11688. weight: math.unit(68, "kg"),
  11689. name: "Back",
  11690. image: {
  11691. source: "./media/characters/kauko/back.svg",
  11692. extra: 1455 / 1421,
  11693. bottom: 0.004
  11694. }
  11695. },
  11696. },
  11697. [
  11698. {
  11699. name: "Normal",
  11700. height: math.unit(185, "cm"),
  11701. default: true
  11702. },
  11703. ]
  11704. ))
  11705. characterMakers.push(() => makeCharacter(
  11706. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11707. {
  11708. front: {
  11709. height: math.unit(6, "feet"),
  11710. weight: math.unit(150, "kg"),
  11711. name: "Front",
  11712. image: {
  11713. source: "./media/characters/varg/front.svg",
  11714. extra: 1108 / 1018,
  11715. bottom: 0.0375
  11716. }
  11717. },
  11718. },
  11719. [
  11720. {
  11721. name: "Normal",
  11722. height: math.unit(5, "meters")
  11723. },
  11724. {
  11725. name: "Macro",
  11726. height: math.unit(200, "meters")
  11727. },
  11728. {
  11729. name: "Megamacro",
  11730. height: math.unit(20, "kilometers")
  11731. },
  11732. {
  11733. name: "True Size",
  11734. height: math.unit(211, "km"),
  11735. default: true
  11736. },
  11737. {
  11738. name: "Gigamacro",
  11739. height: math.unit(1000, "km")
  11740. },
  11741. {
  11742. name: "Gigamacro+",
  11743. height: math.unit(8000, "km")
  11744. },
  11745. {
  11746. name: "Teramacro",
  11747. height: math.unit(1000000, "km")
  11748. },
  11749. ]
  11750. ))
  11751. characterMakers.push(() => makeCharacter(
  11752. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11753. {
  11754. front: {
  11755. height: math.unit(7 + 7 / 12, "feet"),
  11756. weight: math.unit(267, "lb"),
  11757. name: "Front",
  11758. image: {
  11759. source: "./media/characters/dayza/front.svg",
  11760. extra: 1262 / 1200,
  11761. bottom: 0.035
  11762. }
  11763. },
  11764. side: {
  11765. height: math.unit(7 + 7 / 12, "feet"),
  11766. weight: math.unit(267, "lb"),
  11767. name: "Side",
  11768. image: {
  11769. source: "./media/characters/dayza/side.svg",
  11770. extra: 1295 / 1245,
  11771. bottom: 0.05
  11772. }
  11773. },
  11774. back: {
  11775. height: math.unit(7 + 7 / 12, "feet"),
  11776. weight: math.unit(267, "lb"),
  11777. name: "Back",
  11778. image: {
  11779. source: "./media/characters/dayza/back.svg",
  11780. extra: 1241 / 1170
  11781. }
  11782. },
  11783. },
  11784. [
  11785. {
  11786. name: "Normal",
  11787. height: math.unit(7 + 7 / 12, "feet"),
  11788. default: true
  11789. },
  11790. {
  11791. name: "Macro",
  11792. height: math.unit(155, "feet")
  11793. },
  11794. ]
  11795. ))
  11796. characterMakers.push(() => makeCharacter(
  11797. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11798. {
  11799. front: {
  11800. height: math.unit(6 + 5 / 12, "feet"),
  11801. weight: math.unit(160, "lb"),
  11802. name: "Front",
  11803. image: {
  11804. source: "./media/characters/xanthos/front.svg",
  11805. extra: 1,
  11806. bottom: 0.04
  11807. }
  11808. },
  11809. back: {
  11810. height: math.unit(6 + 5 / 12, "feet"),
  11811. weight: math.unit(160, "lb"),
  11812. name: "Back",
  11813. image: {
  11814. source: "./media/characters/xanthos/back.svg",
  11815. extra: 1,
  11816. bottom: 0.03
  11817. }
  11818. },
  11819. hand: {
  11820. height: math.unit(0.928, "feet"),
  11821. name: "Hand",
  11822. image: {
  11823. source: "./media/characters/xanthos/hand.svg"
  11824. }
  11825. },
  11826. foot: {
  11827. height: math.unit(1.286, "feet"),
  11828. name: "Foot",
  11829. image: {
  11830. source: "./media/characters/xanthos/foot.svg"
  11831. }
  11832. },
  11833. },
  11834. [
  11835. {
  11836. name: "Normal",
  11837. height: math.unit(6 + 5 / 12, "feet"),
  11838. default: true
  11839. },
  11840. {
  11841. name: "Normal+",
  11842. height: math.unit(6, "meters")
  11843. },
  11844. {
  11845. name: "Macro",
  11846. height: math.unit(40, "feet")
  11847. },
  11848. {
  11849. name: "Macro+",
  11850. height: math.unit(200, "meters")
  11851. },
  11852. {
  11853. name: "Megamacro",
  11854. height: math.unit(20, "km")
  11855. },
  11856. {
  11857. name: "Megamacro+",
  11858. height: math.unit(100, "km")
  11859. },
  11860. ]
  11861. ))
  11862. characterMakers.push(() => makeCharacter(
  11863. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11864. {
  11865. front: {
  11866. height: math.unit(6 + 3 / 12, "feet"),
  11867. weight: math.unit(215, "lb"),
  11868. name: "Front",
  11869. image: {
  11870. source: "./media/characters/grynn/front.svg",
  11871. extra: 4627 / 4209,
  11872. bottom: 0.047
  11873. }
  11874. },
  11875. },
  11876. [
  11877. {
  11878. name: "Micro",
  11879. height: math.unit(6, "inches")
  11880. },
  11881. {
  11882. name: "Normal",
  11883. height: math.unit(6 + 3 / 12, "feet"),
  11884. default: true
  11885. },
  11886. {
  11887. name: "Big",
  11888. height: math.unit(104, "feet")
  11889. },
  11890. {
  11891. name: "Macro",
  11892. height: math.unit(944, "feet")
  11893. },
  11894. {
  11895. name: "Macro+",
  11896. height: math.unit(9480, "feet")
  11897. },
  11898. {
  11899. name: "Megamacro",
  11900. height: math.unit(78752, "feet")
  11901. },
  11902. {
  11903. name: "Megamacro+",
  11904. height: math.unit(630128, "feet")
  11905. },
  11906. {
  11907. name: "Megamacro++",
  11908. height: math.unit(3150695, "feet")
  11909. },
  11910. ]
  11911. ))
  11912. characterMakers.push(() => makeCharacter(
  11913. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11914. {
  11915. front: {
  11916. height: math.unit(7 + 5 / 12, "feet"),
  11917. weight: math.unit(450, "lb"),
  11918. name: "Front",
  11919. image: {
  11920. source: "./media/characters/mocha-aura/front.svg",
  11921. extra: 1907 / 1817,
  11922. bottom: 0.04
  11923. }
  11924. },
  11925. back: {
  11926. height: math.unit(7 + 5 / 12, "feet"),
  11927. weight: math.unit(450, "lb"),
  11928. name: "Back",
  11929. image: {
  11930. source: "./media/characters/mocha-aura/back.svg",
  11931. extra: 1900 / 1825,
  11932. bottom: 0.045
  11933. }
  11934. },
  11935. },
  11936. [
  11937. {
  11938. name: "Nano",
  11939. height: math.unit(1, "nm")
  11940. },
  11941. {
  11942. name: "Megamicro",
  11943. height: math.unit(1, "mm")
  11944. },
  11945. {
  11946. name: "Micro",
  11947. height: math.unit(3, "inches")
  11948. },
  11949. {
  11950. name: "Normal",
  11951. height: math.unit(7 + 5 / 12, "feet"),
  11952. default: true
  11953. },
  11954. {
  11955. name: "Macro",
  11956. height: math.unit(30, "feet")
  11957. },
  11958. {
  11959. name: "Megamacro",
  11960. height: math.unit(3500, "feet")
  11961. },
  11962. {
  11963. name: "Teramacro",
  11964. height: math.unit(500000, "miles")
  11965. },
  11966. {
  11967. name: "Petamacro",
  11968. height: math.unit(50000000000000000, "parsecs")
  11969. },
  11970. ]
  11971. ))
  11972. characterMakers.push(() => makeCharacter(
  11973. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11974. {
  11975. front: {
  11976. height: math.unit(6, "feet"),
  11977. weight: math.unit(150, "lb"),
  11978. name: "Front",
  11979. image: {
  11980. source: "./media/characters/ilisha-devya/front.svg",
  11981. extra: 1,
  11982. bottom: 0.175
  11983. }
  11984. },
  11985. back: {
  11986. height: math.unit(6, "feet"),
  11987. weight: math.unit(150, "lb"),
  11988. name: "Back",
  11989. image: {
  11990. source: "./media/characters/ilisha-devya/back.svg",
  11991. extra: 1,
  11992. bottom: 0.015
  11993. }
  11994. },
  11995. },
  11996. [
  11997. {
  11998. name: "Macro",
  11999. height: math.unit(500, "feet"),
  12000. default: true
  12001. },
  12002. {
  12003. name: "Megamacro",
  12004. height: math.unit(10, "miles")
  12005. },
  12006. {
  12007. name: "Gigamacro",
  12008. height: math.unit(100000, "miles")
  12009. },
  12010. {
  12011. name: "Examacro",
  12012. height: math.unit(1e9, "lightyears")
  12013. },
  12014. {
  12015. name: "Omniversal",
  12016. height: math.unit(1e33, "lightyears")
  12017. },
  12018. {
  12019. name: "Beyond Infinite",
  12020. height: math.unit(1e100, "lightyears")
  12021. },
  12022. ]
  12023. ))
  12024. characterMakers.push(() => makeCharacter(
  12025. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12026. {
  12027. Side: {
  12028. height: math.unit(6, "feet"),
  12029. weight: math.unit(150, "lb"),
  12030. name: "Side",
  12031. image: {
  12032. source: "./media/characters/mira/side.svg",
  12033. extra: 900 / 799,
  12034. bottom: 0.02
  12035. }
  12036. },
  12037. },
  12038. [
  12039. {
  12040. name: "Human Size",
  12041. height: math.unit(6, "feet")
  12042. },
  12043. {
  12044. name: "Macro",
  12045. height: math.unit(100, "feet"),
  12046. default: true
  12047. },
  12048. {
  12049. name: "Megamacro",
  12050. height: math.unit(10, "miles")
  12051. },
  12052. {
  12053. name: "Gigamacro",
  12054. height: math.unit(25000, "miles")
  12055. },
  12056. {
  12057. name: "Teramacro",
  12058. height: math.unit(300, "AU")
  12059. },
  12060. {
  12061. name: "Full Size",
  12062. height: math.unit(4.5e10, "lightyears")
  12063. },
  12064. ]
  12065. ))
  12066. characterMakers.push(() => makeCharacter(
  12067. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12068. {
  12069. front: {
  12070. height: math.unit(6, "feet"),
  12071. weight: math.unit(150, "lb"),
  12072. name: "Front",
  12073. image: {
  12074. source: "./media/characters/holly/front.svg",
  12075. extra: 639 / 606
  12076. }
  12077. },
  12078. back: {
  12079. height: math.unit(6, "feet"),
  12080. weight: math.unit(150, "lb"),
  12081. name: "Back",
  12082. image: {
  12083. source: "./media/characters/holly/back.svg",
  12084. extra: 623 / 598
  12085. }
  12086. },
  12087. frontWorking: {
  12088. height: math.unit(6, "feet"),
  12089. weight: math.unit(150, "lb"),
  12090. name: "Front (Working)",
  12091. image: {
  12092. source: "./media/characters/holly/front-working.svg",
  12093. extra: 607 / 577,
  12094. bottom: 0.048
  12095. }
  12096. },
  12097. },
  12098. [
  12099. {
  12100. name: "Normal",
  12101. height: math.unit(12 + 3 / 12, "feet"),
  12102. default: true
  12103. },
  12104. ]
  12105. ))
  12106. characterMakers.push(() => makeCharacter(
  12107. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12108. {
  12109. front: {
  12110. height: math.unit(6, "feet"),
  12111. weight: math.unit(150, "lb"),
  12112. name: "Front",
  12113. image: {
  12114. source: "./media/characters/porter/front.svg",
  12115. extra: 1,
  12116. bottom: 0.01
  12117. }
  12118. },
  12119. frontRobes: {
  12120. height: math.unit(6, "feet"),
  12121. weight: math.unit(150, "lb"),
  12122. name: "Front (Robes)",
  12123. image: {
  12124. source: "./media/characters/porter/front-robes.svg",
  12125. extra: 1.01,
  12126. bottom: 0.01
  12127. }
  12128. },
  12129. },
  12130. [
  12131. {
  12132. name: "Normal",
  12133. height: math.unit(11 + 9 / 12, "feet"),
  12134. default: true
  12135. },
  12136. ]
  12137. ))
  12138. characterMakers.push(() => makeCharacter(
  12139. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12140. {
  12141. legendary: {
  12142. height: math.unit(6, "feet"),
  12143. weight: math.unit(150, "lb"),
  12144. name: "Legendary",
  12145. image: {
  12146. source: "./media/characters/lucy/legendary.svg",
  12147. extra: 1355 / 1100,
  12148. bottom: 0.045
  12149. }
  12150. },
  12151. },
  12152. [
  12153. {
  12154. name: "Legendary",
  12155. height: math.unit(86882 * 2, "miles"),
  12156. default: true
  12157. },
  12158. ]
  12159. ))
  12160. characterMakers.push(() => makeCharacter(
  12161. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12162. {
  12163. front: {
  12164. height: math.unit(6, "feet"),
  12165. weight: math.unit(150, "lb"),
  12166. name: "Front",
  12167. image: {
  12168. source: "./media/characters/drusilla/front.svg",
  12169. extra: 678 / 635,
  12170. bottom: 0.03
  12171. }
  12172. },
  12173. back: {
  12174. height: math.unit(6, "feet"),
  12175. weight: math.unit(150, "lb"),
  12176. name: "Back",
  12177. image: {
  12178. source: "./media/characters/drusilla/back.svg",
  12179. extra: 678 / 635,
  12180. bottom: 0.005
  12181. }
  12182. },
  12183. },
  12184. [
  12185. {
  12186. name: "Macro",
  12187. height: math.unit(100, "feet")
  12188. },
  12189. {
  12190. name: "Canon Height",
  12191. height: math.unit(2000, "feet"),
  12192. default: true
  12193. },
  12194. ]
  12195. ))
  12196. characterMakers.push(() => makeCharacter(
  12197. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12198. {
  12199. front: {
  12200. height: math.unit(6, "feet"),
  12201. weight: math.unit(180, "lb"),
  12202. name: "Front",
  12203. image: {
  12204. source: "./media/characters/renard-thatch/front.svg",
  12205. extra: 2411 / 2275,
  12206. bottom: 0.01
  12207. }
  12208. },
  12209. frontPosing: {
  12210. height: math.unit(6, "feet"),
  12211. weight: math.unit(180, "lb"),
  12212. name: "Front (Posing)",
  12213. image: {
  12214. source: "./media/characters/renard-thatch/front-posing.svg",
  12215. extra: 2381 / 2261,
  12216. bottom: 0.01
  12217. }
  12218. },
  12219. back: {
  12220. height: math.unit(6, "feet"),
  12221. weight: math.unit(180, "lb"),
  12222. name: "Back",
  12223. image: {
  12224. source: "./media/characters/renard-thatch/back.svg",
  12225. extra: 2428 / 2288
  12226. }
  12227. },
  12228. },
  12229. [
  12230. {
  12231. name: "Micro",
  12232. height: math.unit(3, "inches")
  12233. },
  12234. {
  12235. name: "Default",
  12236. height: math.unit(6, "feet"),
  12237. default: true
  12238. },
  12239. {
  12240. name: "Macro",
  12241. height: math.unit(75, "feet")
  12242. },
  12243. ]
  12244. ))
  12245. characterMakers.push(() => makeCharacter(
  12246. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12247. {
  12248. front: {
  12249. height: math.unit(1450, "feet"),
  12250. weight: math.unit(1.21e6, "tons"),
  12251. name: "Front",
  12252. image: {
  12253. source: "./media/characters/sekvra/front.svg",
  12254. extra: 1,
  12255. bottom: 0.03
  12256. }
  12257. },
  12258. frontClothed: {
  12259. height: math.unit(1450, "feet"),
  12260. weight: math.unit(1.21e6, "tons"),
  12261. name: "Front (Clothed)",
  12262. image: {
  12263. source: "./media/characters/sekvra/front-clothed.svg",
  12264. extra: 1,
  12265. bottom: 0.03
  12266. }
  12267. },
  12268. side: {
  12269. height: math.unit(1450, "feet"),
  12270. weight: math.unit(1.21e6, "tons"),
  12271. name: "Side",
  12272. image: {
  12273. source: "./media/characters/sekvra/side.svg",
  12274. extra: 1,
  12275. bottom: 0.025
  12276. }
  12277. },
  12278. back: {
  12279. height: math.unit(1450, "feet"),
  12280. weight: math.unit(1.21e6, "tons"),
  12281. name: "Back",
  12282. image: {
  12283. source: "./media/characters/sekvra/back.svg",
  12284. extra: 1,
  12285. bottom: 0.005
  12286. }
  12287. },
  12288. },
  12289. [
  12290. {
  12291. name: "Macro",
  12292. height: math.unit(1450, "feet"),
  12293. default: true
  12294. },
  12295. {
  12296. name: "Megamacro",
  12297. height: math.unit(15000, "feet")
  12298. },
  12299. ]
  12300. ))
  12301. characterMakers.push(() => makeCharacter(
  12302. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12303. {
  12304. front: {
  12305. height: math.unit(6, "feet"),
  12306. weight: math.unit(150, "lb"),
  12307. name: "Front",
  12308. image: {
  12309. source: "./media/characters/carmine/front.svg",
  12310. extra: 1,
  12311. bottom: 0.035
  12312. }
  12313. },
  12314. frontArmor: {
  12315. height: math.unit(6, "feet"),
  12316. weight: math.unit(150, "lb"),
  12317. name: "Front (Armor)",
  12318. image: {
  12319. source: "./media/characters/carmine/front-armor.svg",
  12320. extra: 1,
  12321. bottom: 0.035
  12322. }
  12323. },
  12324. },
  12325. [
  12326. {
  12327. name: "Large",
  12328. height: math.unit(1, "mile")
  12329. },
  12330. {
  12331. name: "Huge",
  12332. height: math.unit(40, "miles"),
  12333. default: true
  12334. },
  12335. {
  12336. name: "Colossal",
  12337. height: math.unit(2500, "miles")
  12338. },
  12339. ]
  12340. ))
  12341. characterMakers.push(() => makeCharacter(
  12342. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12343. {
  12344. front: {
  12345. height: math.unit(6, "feet"),
  12346. weight: math.unit(150, "lb"),
  12347. name: "Front",
  12348. image: {
  12349. source: "./media/characters/elyssia/front.svg",
  12350. extra: 2201 / 2035,
  12351. bottom: 0.05
  12352. }
  12353. },
  12354. frontClothed: {
  12355. height: math.unit(6, "feet"),
  12356. weight: math.unit(150, "lb"),
  12357. name: "Front (Clothed)",
  12358. image: {
  12359. source: "./media/characters/elyssia/front-clothed.svg",
  12360. extra: 2201 / 2035,
  12361. bottom: 0.05
  12362. }
  12363. },
  12364. back: {
  12365. height: math.unit(6, "feet"),
  12366. weight: math.unit(150, "lb"),
  12367. name: "Back",
  12368. image: {
  12369. source: "./media/characters/elyssia/back.svg",
  12370. extra: 2201 / 2035,
  12371. bottom: 0.013
  12372. }
  12373. },
  12374. },
  12375. [
  12376. {
  12377. name: "Smaller",
  12378. height: math.unit(150, "feet")
  12379. },
  12380. {
  12381. name: "Standard",
  12382. height: math.unit(1400, "feet"),
  12383. default: true
  12384. },
  12385. {
  12386. name: "Distracted",
  12387. height: math.unit(15000, "feet")
  12388. },
  12389. ]
  12390. ))
  12391. characterMakers.push(() => makeCharacter(
  12392. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12393. {
  12394. front: {
  12395. height: math.unit(7 + 4 / 12, "feet"),
  12396. weight: math.unit(500, "lb"),
  12397. name: "Front",
  12398. image: {
  12399. source: "./media/characters/geno-maxwell/front.svg",
  12400. extra: 2207 / 2040,
  12401. bottom: 0.015
  12402. }
  12403. },
  12404. },
  12405. [
  12406. {
  12407. name: "Micro",
  12408. height: math.unit(3, "inches")
  12409. },
  12410. {
  12411. name: "Normal",
  12412. height: math.unit(7 + 4 / 12, "feet"),
  12413. default: true
  12414. },
  12415. {
  12416. name: "Macro",
  12417. height: math.unit(220, "feet")
  12418. },
  12419. {
  12420. name: "Megamacro",
  12421. height: math.unit(11, "miles")
  12422. },
  12423. ]
  12424. ))
  12425. characterMakers.push(() => makeCharacter(
  12426. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12427. {
  12428. front: {
  12429. height: math.unit(7 + 4 / 12, "feet"),
  12430. weight: math.unit(500, "lb"),
  12431. name: "Front",
  12432. image: {
  12433. source: "./media/characters/regena-maxwell/front.svg",
  12434. extra: 3115 / 2770,
  12435. bottom: 0.02
  12436. }
  12437. },
  12438. },
  12439. [
  12440. {
  12441. name: "Normal",
  12442. height: math.unit(7 + 4 / 12, "feet"),
  12443. default: true
  12444. },
  12445. {
  12446. name: "Macro",
  12447. height: math.unit(220, "feet")
  12448. },
  12449. {
  12450. name: "Megamacro",
  12451. height: math.unit(11, "miles")
  12452. },
  12453. ]
  12454. ))
  12455. characterMakers.push(() => makeCharacter(
  12456. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12457. {
  12458. front: {
  12459. height: math.unit(6, "feet"),
  12460. weight: math.unit(150, "lb"),
  12461. name: "Front",
  12462. image: {
  12463. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12464. extra: 860 / 690,
  12465. bottom: 0.03
  12466. }
  12467. },
  12468. },
  12469. [
  12470. {
  12471. name: "Normal",
  12472. height: math.unit(1.7, "meters"),
  12473. default: true
  12474. },
  12475. ]
  12476. ))
  12477. characterMakers.push(() => makeCharacter(
  12478. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12479. {
  12480. front: {
  12481. height: math.unit(6, "feet"),
  12482. weight: math.unit(150, "lb"),
  12483. name: "Front",
  12484. image: {
  12485. source: "./media/characters/quilly/front.svg",
  12486. extra: 890 / 776
  12487. }
  12488. },
  12489. },
  12490. [
  12491. {
  12492. name: "Gigamacro",
  12493. height: math.unit(404090, "miles"),
  12494. default: true
  12495. },
  12496. ]
  12497. ))
  12498. characterMakers.push(() => makeCharacter(
  12499. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12500. {
  12501. front: {
  12502. height: math.unit(7 + 8 / 12, "feet"),
  12503. weight: math.unit(350, "lb"),
  12504. name: "Front",
  12505. image: {
  12506. source: "./media/characters/tempest/front.svg",
  12507. extra: 1175 / 1086,
  12508. bottom: 0.02
  12509. }
  12510. },
  12511. },
  12512. [
  12513. {
  12514. name: "Normal",
  12515. height: math.unit(7 + 8 / 12, "feet"),
  12516. default: true
  12517. },
  12518. ]
  12519. ))
  12520. characterMakers.push(() => makeCharacter(
  12521. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12522. {
  12523. side: {
  12524. height: math.unit(4 + 5 / 12, "feet"),
  12525. weight: math.unit(80, "lb"),
  12526. name: "Side",
  12527. image: {
  12528. source: "./media/characters/rodger/side.svg",
  12529. extra: 1235 / 1118
  12530. }
  12531. },
  12532. },
  12533. [
  12534. {
  12535. name: "Micro",
  12536. height: math.unit(1, "inch")
  12537. },
  12538. {
  12539. name: "Normal",
  12540. height: math.unit(4 + 5 / 12, "feet"),
  12541. default: true
  12542. },
  12543. {
  12544. name: "Macro",
  12545. height: math.unit(120, "feet")
  12546. },
  12547. ]
  12548. ))
  12549. characterMakers.push(() => makeCharacter(
  12550. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12551. {
  12552. front: {
  12553. height: math.unit(6, "feet"),
  12554. weight: math.unit(150, "lb"),
  12555. name: "Front",
  12556. image: {
  12557. source: "./media/characters/danyel/front.svg",
  12558. extra: 1185 / 1123,
  12559. bottom: 0.05
  12560. }
  12561. },
  12562. },
  12563. [
  12564. {
  12565. name: "Shrunken",
  12566. height: math.unit(0.5, "mm")
  12567. },
  12568. {
  12569. name: "Micro",
  12570. height: math.unit(1, "mm"),
  12571. default: true
  12572. },
  12573. {
  12574. name: "Upsized",
  12575. height: math.unit(5 + 5 / 12, "feet")
  12576. },
  12577. ]
  12578. ))
  12579. characterMakers.push(() => makeCharacter(
  12580. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12581. {
  12582. front: {
  12583. height: math.unit(5 + 6 / 12, "feet"),
  12584. weight: math.unit(200, "lb"),
  12585. name: "Front",
  12586. image: {
  12587. source: "./media/characters/vivian-bijoux/front.svg",
  12588. extra: 1,
  12589. bottom: 0.072
  12590. }
  12591. },
  12592. },
  12593. [
  12594. {
  12595. name: "Normal",
  12596. height: math.unit(5 + 6 / 12, "feet"),
  12597. default: true
  12598. },
  12599. {
  12600. name: "Bad Dream",
  12601. height: math.unit(500, "feet")
  12602. },
  12603. {
  12604. name: "Nightmare",
  12605. height: math.unit(500, "miles")
  12606. },
  12607. ]
  12608. ))
  12609. characterMakers.push(() => makeCharacter(
  12610. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12611. {
  12612. front: {
  12613. height: math.unit(6 + 1 / 12, "feet"),
  12614. weight: math.unit(260, "lb"),
  12615. name: "Front",
  12616. image: {
  12617. source: "./media/characters/zeta/front.svg",
  12618. extra: 1968 / 1889,
  12619. bottom: 0.06
  12620. }
  12621. },
  12622. back: {
  12623. height: math.unit(6 + 1 / 12, "feet"),
  12624. weight: math.unit(260, "lb"),
  12625. name: "Back",
  12626. image: {
  12627. source: "./media/characters/zeta/back.svg",
  12628. extra: 1944 / 1858,
  12629. bottom: 0.03
  12630. }
  12631. },
  12632. hand: {
  12633. height: math.unit(1.112, "feet"),
  12634. name: "Hand",
  12635. image: {
  12636. source: "./media/characters/zeta/hand.svg"
  12637. }
  12638. },
  12639. foot: {
  12640. height: math.unit(1.48, "feet"),
  12641. name: "Foot",
  12642. image: {
  12643. source: "./media/characters/zeta/foot.svg"
  12644. }
  12645. },
  12646. },
  12647. [
  12648. {
  12649. name: "Micro",
  12650. height: math.unit(6, "inches")
  12651. },
  12652. {
  12653. name: "Normal",
  12654. height: math.unit(6 + 1 / 12, "feet"),
  12655. default: true
  12656. },
  12657. {
  12658. name: "Macro",
  12659. height: math.unit(20, "feet")
  12660. },
  12661. ]
  12662. ))
  12663. characterMakers.push(() => makeCharacter(
  12664. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12665. {
  12666. front: {
  12667. height: math.unit(6, "feet"),
  12668. weight: math.unit(150, "lb"),
  12669. name: "Front",
  12670. image: {
  12671. source: "./media/characters/jamie-larsen/front.svg",
  12672. extra: 962 / 933,
  12673. bottom: 0.02
  12674. }
  12675. },
  12676. back: {
  12677. height: math.unit(6, "feet"),
  12678. weight: math.unit(150, "lb"),
  12679. name: "Back",
  12680. image: {
  12681. source: "./media/characters/jamie-larsen/back.svg",
  12682. extra: 997 / 946
  12683. }
  12684. },
  12685. },
  12686. [
  12687. {
  12688. name: "Macro",
  12689. height: math.unit(28 + 7 / 12, "feet"),
  12690. default: true
  12691. },
  12692. {
  12693. name: "Macro+",
  12694. height: math.unit(180, "feet")
  12695. },
  12696. {
  12697. name: "Megamacro",
  12698. height: math.unit(10, "miles")
  12699. },
  12700. {
  12701. name: "Gigamacro",
  12702. height: math.unit(200000, "miles")
  12703. },
  12704. ]
  12705. ))
  12706. characterMakers.push(() => makeCharacter(
  12707. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12708. {
  12709. front: {
  12710. height: math.unit(6, "feet"),
  12711. weight: math.unit(120, "lb"),
  12712. name: "Front",
  12713. image: {
  12714. source: "./media/characters/vance/front.svg",
  12715. extra: 1980 / 1890,
  12716. bottom: 0.09
  12717. }
  12718. },
  12719. back: {
  12720. height: math.unit(6, "feet"),
  12721. weight: math.unit(120, "lb"),
  12722. name: "Back",
  12723. image: {
  12724. source: "./media/characters/vance/back.svg",
  12725. extra: 2081 / 1994,
  12726. bottom: 0.014
  12727. }
  12728. },
  12729. hand: {
  12730. height: math.unit(0.88, "feet"),
  12731. name: "Hand",
  12732. image: {
  12733. source: "./media/characters/vance/hand.svg"
  12734. }
  12735. },
  12736. foot: {
  12737. height: math.unit(0.64, "feet"),
  12738. name: "Foot",
  12739. image: {
  12740. source: "./media/characters/vance/foot.svg"
  12741. }
  12742. },
  12743. },
  12744. [
  12745. {
  12746. name: "Small",
  12747. height: math.unit(90, "feet"),
  12748. default: true
  12749. },
  12750. {
  12751. name: "Macro",
  12752. height: math.unit(100, "meters")
  12753. },
  12754. {
  12755. name: "Megamacro",
  12756. height: math.unit(15, "miles")
  12757. },
  12758. ]
  12759. ))
  12760. characterMakers.push(() => makeCharacter(
  12761. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12762. {
  12763. front: {
  12764. height: math.unit(6, "feet"),
  12765. weight: math.unit(180, "lb"),
  12766. name: "Front",
  12767. image: {
  12768. source: "./media/characters/xochitl/front.svg",
  12769. extra: 2297 / 2261,
  12770. bottom: 0.065
  12771. }
  12772. },
  12773. back: {
  12774. height: math.unit(6, "feet"),
  12775. weight: math.unit(180, "lb"),
  12776. name: "Back",
  12777. image: {
  12778. source: "./media/characters/xochitl/back.svg",
  12779. extra: 2386 / 2354,
  12780. bottom: 0.01
  12781. }
  12782. },
  12783. foot: {
  12784. height: math.unit(6 / 5 * 1.15, "feet"),
  12785. weight: math.unit(150, "lb"),
  12786. name: "Foot",
  12787. image: {
  12788. source: "./media/characters/xochitl/foot.svg"
  12789. }
  12790. },
  12791. },
  12792. [
  12793. {
  12794. name: "Macro",
  12795. height: math.unit(80, "feet")
  12796. },
  12797. {
  12798. name: "Macro+",
  12799. height: math.unit(400, "feet"),
  12800. default: true
  12801. },
  12802. {
  12803. name: "Gigamacro",
  12804. height: math.unit(80000, "miles")
  12805. },
  12806. {
  12807. name: "Gigamacro+",
  12808. height: math.unit(400000, "miles")
  12809. },
  12810. {
  12811. name: "Teramacro",
  12812. height: math.unit(300, "AU")
  12813. },
  12814. ]
  12815. ))
  12816. characterMakers.push(() => makeCharacter(
  12817. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12818. {
  12819. front: {
  12820. height: math.unit(6, "feet"),
  12821. weight: math.unit(150, "lb"),
  12822. name: "Front",
  12823. image: {
  12824. source: "./media/characters/vincent/front.svg",
  12825. extra: 1130 / 1080,
  12826. bottom: 0.055
  12827. }
  12828. },
  12829. beak: {
  12830. height: math.unit(6 * 0.1, "feet"),
  12831. name: "Beak",
  12832. image: {
  12833. source: "./media/characters/vincent/beak.svg"
  12834. }
  12835. },
  12836. hand: {
  12837. height: math.unit(6 * 0.85, "feet"),
  12838. weight: math.unit(150, "lb"),
  12839. name: "Hand",
  12840. image: {
  12841. source: "./media/characters/vincent/hand.svg"
  12842. }
  12843. },
  12844. foot: {
  12845. height: math.unit(6 * 0.19, "feet"),
  12846. weight: math.unit(150, "lb"),
  12847. name: "Foot",
  12848. image: {
  12849. source: "./media/characters/vincent/foot.svg"
  12850. }
  12851. },
  12852. },
  12853. [
  12854. {
  12855. name: "Base",
  12856. height: math.unit(6 + 5 / 12, "feet"),
  12857. default: true
  12858. },
  12859. {
  12860. name: "Macro",
  12861. height: math.unit(300, "feet")
  12862. },
  12863. {
  12864. name: "Megamacro",
  12865. height: math.unit(2, "miles")
  12866. },
  12867. {
  12868. name: "Gigamacro",
  12869. height: math.unit(1000, "miles")
  12870. },
  12871. ]
  12872. ))
  12873. characterMakers.push(() => makeCharacter(
  12874. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12875. {
  12876. front: {
  12877. height: math.unit(6 + 2 / 12, "feet"),
  12878. weight: math.unit(265, "lb"),
  12879. name: "Front",
  12880. image: {
  12881. source: "./media/characters/jay/front.svg",
  12882. extra: 1510 / 1430,
  12883. bottom: 0.042
  12884. }
  12885. },
  12886. back: {
  12887. height: math.unit(6 + 2 / 12, "feet"),
  12888. weight: math.unit(265, "lb"),
  12889. name: "Back",
  12890. image: {
  12891. source: "./media/characters/jay/back.svg",
  12892. extra: 1510 / 1430,
  12893. bottom: 0.025
  12894. }
  12895. },
  12896. clothed: {
  12897. height: math.unit(6 + 2 / 12, "feet"),
  12898. weight: math.unit(265, "lb"),
  12899. name: "Front (Clothed)",
  12900. image: {
  12901. source: "./media/characters/jay/clothed.svg",
  12902. extra: 744 / 699,
  12903. bottom: 0.043
  12904. }
  12905. },
  12906. head: {
  12907. height: math.unit(1.772, "feet"),
  12908. name: "Head",
  12909. image: {
  12910. source: "./media/characters/jay/head.svg"
  12911. }
  12912. },
  12913. sizeRay: {
  12914. height: math.unit(1.331, "feet"),
  12915. name: "Size Ray",
  12916. image: {
  12917. source: "./media/characters/jay/size-ray.svg"
  12918. }
  12919. },
  12920. },
  12921. [
  12922. {
  12923. name: "Micro",
  12924. height: math.unit(1, "inch")
  12925. },
  12926. {
  12927. name: "Normal",
  12928. height: math.unit(6 + 2 / 12, "feet"),
  12929. default: true
  12930. },
  12931. {
  12932. name: "Macro",
  12933. height: math.unit(1, "mile")
  12934. },
  12935. {
  12936. name: "Megamacro",
  12937. height: math.unit(100, "miles")
  12938. },
  12939. ]
  12940. ))
  12941. characterMakers.push(() => makeCharacter(
  12942. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12943. {
  12944. front: {
  12945. height: math.unit(2, "meters"),
  12946. weight: math.unit(500, "kg"),
  12947. name: "Front",
  12948. image: {
  12949. source: "./media/characters/coatl/front.svg",
  12950. extra: 3948 / 3500,
  12951. bottom: 0.082
  12952. }
  12953. },
  12954. },
  12955. [
  12956. {
  12957. name: "Normal",
  12958. height: math.unit(4, "meters")
  12959. },
  12960. {
  12961. name: "Macro",
  12962. height: math.unit(100, "meters"),
  12963. default: true
  12964. },
  12965. {
  12966. name: "Macro+",
  12967. height: math.unit(300, "meters")
  12968. },
  12969. {
  12970. name: "Megamacro",
  12971. height: math.unit(3, "gigameters")
  12972. },
  12973. {
  12974. name: "Megamacro+",
  12975. height: math.unit(300, "terameters")
  12976. },
  12977. {
  12978. name: "Megamacro++",
  12979. height: math.unit(3, "lightyears")
  12980. },
  12981. ]
  12982. ))
  12983. characterMakers.push(() => makeCharacter(
  12984. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12985. {
  12986. front: {
  12987. height: math.unit(6, "feet"),
  12988. weight: math.unit(50, "kg"),
  12989. name: "front",
  12990. image: {
  12991. source: "./media/characters/shiroryu/front.svg",
  12992. extra: 1990 / 1935
  12993. }
  12994. },
  12995. },
  12996. [
  12997. {
  12998. name: "Mortal Mingling",
  12999. height: math.unit(3, "meters")
  13000. },
  13001. {
  13002. name: "Kaiju-ish",
  13003. height: math.unit(250, "meters")
  13004. },
  13005. {
  13006. name: "Somewhat Godly",
  13007. height: math.unit(400, "km"),
  13008. default: true
  13009. },
  13010. {
  13011. name: "Planetary",
  13012. height: math.unit(300, "megameters")
  13013. },
  13014. {
  13015. name: "Galaxy-dwarfing",
  13016. height: math.unit(450, "kiloparsecs")
  13017. },
  13018. {
  13019. name: "Universe Eater",
  13020. height: math.unit(150, "gigaparsecs")
  13021. },
  13022. {
  13023. name: "Almost Immeasurable",
  13024. height: math.unit(1.3e266, "yottaparsecs")
  13025. },
  13026. ]
  13027. ))
  13028. characterMakers.push(() => makeCharacter(
  13029. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13030. {
  13031. front: {
  13032. height: math.unit(6, "feet"),
  13033. weight: math.unit(150, "lb"),
  13034. name: "Front",
  13035. image: {
  13036. source: "./media/characters/umeko/front.svg",
  13037. extra: 1,
  13038. bottom: 0.019
  13039. }
  13040. },
  13041. frontArmored: {
  13042. height: math.unit(6, "feet"),
  13043. weight: math.unit(150, "lb"),
  13044. name: "Front (Armored)",
  13045. image: {
  13046. source: "./media/characters/umeko/front-armored.svg",
  13047. extra: 1,
  13048. bottom: 0.021
  13049. }
  13050. },
  13051. },
  13052. [
  13053. {
  13054. name: "Macro",
  13055. height: math.unit(220, "feet"),
  13056. default: true
  13057. },
  13058. {
  13059. name: "Guardian Dragon",
  13060. height: math.unit(50, "miles")
  13061. },
  13062. {
  13063. name: "Cosmic",
  13064. height: math.unit(800000, "miles")
  13065. },
  13066. ]
  13067. ))
  13068. characterMakers.push(() => makeCharacter(
  13069. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13070. {
  13071. front: {
  13072. height: math.unit(6, "feet"),
  13073. weight: math.unit(150, "lb"),
  13074. name: "Front",
  13075. image: {
  13076. source: "./media/characters/cassidy/front.svg",
  13077. extra: 1,
  13078. bottom: 0.043
  13079. }
  13080. },
  13081. },
  13082. [
  13083. {
  13084. name: "Canon Height",
  13085. height: math.unit(120, "feet"),
  13086. default: true
  13087. },
  13088. {
  13089. name: "Macro+",
  13090. height: math.unit(400, "feet")
  13091. },
  13092. {
  13093. name: "Macro++",
  13094. height: math.unit(4000, "feet")
  13095. },
  13096. {
  13097. name: "Megamacro",
  13098. height: math.unit(3, "miles")
  13099. },
  13100. ]
  13101. ))
  13102. characterMakers.push(() => makeCharacter(
  13103. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13104. {
  13105. front: {
  13106. height: math.unit(6, "feet"),
  13107. weight: math.unit(150, "lb"),
  13108. name: "Front",
  13109. image: {
  13110. source: "./media/characters/isaac/front.svg",
  13111. extra: 896 / 815,
  13112. bottom: 0.11
  13113. }
  13114. },
  13115. },
  13116. [
  13117. {
  13118. name: "Human Size",
  13119. height: math.unit(8, "feet"),
  13120. default: true
  13121. },
  13122. {
  13123. name: "Macro",
  13124. height: math.unit(400, "feet")
  13125. },
  13126. {
  13127. name: "Megamacro",
  13128. height: math.unit(50, "miles")
  13129. },
  13130. {
  13131. name: "Canon Height",
  13132. height: math.unit(200, "AU")
  13133. },
  13134. ]
  13135. ))
  13136. characterMakers.push(() => makeCharacter(
  13137. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13138. {
  13139. front: {
  13140. height: math.unit(6, "feet"),
  13141. weight: math.unit(72, "kg"),
  13142. name: "Front",
  13143. image: {
  13144. source: "./media/characters/sleekit/front.svg",
  13145. extra: 4693 / 4487,
  13146. bottom: 0.012
  13147. }
  13148. },
  13149. },
  13150. [
  13151. {
  13152. name: "Minimum Height",
  13153. height: math.unit(10, "meters")
  13154. },
  13155. {
  13156. name: "Smaller",
  13157. height: math.unit(25, "meters")
  13158. },
  13159. {
  13160. name: "Larger",
  13161. height: math.unit(38, "meters"),
  13162. default: true
  13163. },
  13164. {
  13165. name: "Maximum height",
  13166. height: math.unit(100, "meters")
  13167. },
  13168. ]
  13169. ))
  13170. characterMakers.push(() => makeCharacter(
  13171. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13172. {
  13173. front: {
  13174. height: math.unit(6, "feet"),
  13175. weight: math.unit(150, "lb"),
  13176. name: "Front",
  13177. image: {
  13178. source: "./media/characters/nillia/front.svg",
  13179. extra: 2195 / 2037,
  13180. bottom: 0.005
  13181. }
  13182. },
  13183. back: {
  13184. height: math.unit(6, "feet"),
  13185. weight: math.unit(150, "lb"),
  13186. name: "Back",
  13187. image: {
  13188. source: "./media/characters/nillia/back.svg",
  13189. extra: 2195 / 2037,
  13190. bottom: 0.005
  13191. }
  13192. },
  13193. },
  13194. [
  13195. {
  13196. name: "Canon Height",
  13197. height: math.unit(489, "feet"),
  13198. default: true
  13199. }
  13200. ]
  13201. ))
  13202. characterMakers.push(() => makeCharacter(
  13203. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13204. {
  13205. front: {
  13206. height: math.unit(6, "feet"),
  13207. weight: math.unit(150, "lb"),
  13208. name: "Front",
  13209. image: {
  13210. source: "./media/characters/mesmyriza/front.svg",
  13211. extra: 2067 / 1784,
  13212. bottom: 0.035
  13213. }
  13214. },
  13215. foot: {
  13216. height: math.unit(6 / (250 / 35), "feet"),
  13217. name: "Foot",
  13218. image: {
  13219. source: "./media/characters/mesmyriza/foot.svg"
  13220. }
  13221. },
  13222. },
  13223. [
  13224. {
  13225. name: "Macro",
  13226. height: math.unit(457, "meters"),
  13227. default: true
  13228. },
  13229. {
  13230. name: "Megamacro",
  13231. height: math.unit(8, "megameters")
  13232. },
  13233. ]
  13234. ))
  13235. characterMakers.push(() => makeCharacter(
  13236. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13237. {
  13238. front: {
  13239. height: math.unit(6, "feet"),
  13240. weight: math.unit(250, "lb"),
  13241. name: "Front",
  13242. image: {
  13243. source: "./media/characters/saudade/front.svg",
  13244. extra: 1172 / 1139,
  13245. bottom: 0.035
  13246. }
  13247. },
  13248. },
  13249. [
  13250. {
  13251. name: "Micro",
  13252. height: math.unit(3, "inches")
  13253. },
  13254. {
  13255. name: "Normal",
  13256. height: math.unit(6, "feet"),
  13257. default: true
  13258. },
  13259. {
  13260. name: "Macro",
  13261. height: math.unit(50, "feet")
  13262. },
  13263. {
  13264. name: "Megamacro",
  13265. height: math.unit(2800, "feet")
  13266. },
  13267. ]
  13268. ))
  13269. characterMakers.push(() => makeCharacter(
  13270. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13271. {
  13272. front: {
  13273. height: math.unit(5 + 4 / 12, "feet"),
  13274. weight: math.unit(100, "lb"),
  13275. name: "Front",
  13276. image: {
  13277. source: "./media/characters/keireer/front.svg",
  13278. extra: 716 / 666,
  13279. bottom: 0.05
  13280. }
  13281. },
  13282. },
  13283. [
  13284. {
  13285. name: "Normal",
  13286. height: math.unit(5 + 4 / 12, "feet"),
  13287. default: true
  13288. },
  13289. ]
  13290. ))
  13291. characterMakers.push(() => makeCharacter(
  13292. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13293. {
  13294. front: {
  13295. height: math.unit(6, "feet"),
  13296. weight: math.unit(90, "kg"),
  13297. name: "Front",
  13298. image: {
  13299. source: "./media/characters/mirja/front.svg",
  13300. extra: 1789 / 1683,
  13301. bottom: 0.05
  13302. }
  13303. },
  13304. frontDressed: {
  13305. height: math.unit(6, "feet"),
  13306. weight: math.unit(90, "lb"),
  13307. name: "Front (Dressed)",
  13308. image: {
  13309. source: "./media/characters/mirja/front-dressed.svg",
  13310. extra: 1789 / 1683,
  13311. bottom: 0.05
  13312. }
  13313. },
  13314. back: {
  13315. height: math.unit(6, "feet"),
  13316. weight: math.unit(90, "lb"),
  13317. name: "Back",
  13318. image: {
  13319. source: "./media/characters/mirja/back.svg",
  13320. extra: 953 / 917,
  13321. bottom: 0.017
  13322. }
  13323. },
  13324. },
  13325. [
  13326. {
  13327. name: "\"Incognito\"",
  13328. height: math.unit(3, "meters")
  13329. },
  13330. {
  13331. name: "Strolling Size",
  13332. height: math.unit(15, "km")
  13333. },
  13334. {
  13335. name: "Larger Strolling Size",
  13336. height: math.unit(400, "km")
  13337. },
  13338. {
  13339. name: "Preferred Size",
  13340. height: math.unit(5000, "km")
  13341. },
  13342. {
  13343. name: "True Size",
  13344. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13345. default: true
  13346. },
  13347. ]
  13348. ))
  13349. characterMakers.push(() => makeCharacter(
  13350. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13351. {
  13352. front: {
  13353. height: math.unit(15, "feet"),
  13354. weight: math.unit(880, "kg"),
  13355. name: "Front",
  13356. image: {
  13357. source: "./media/characters/nightraver/front.svg",
  13358. extra: 2444 / 2160,
  13359. bottom: 0.027
  13360. }
  13361. },
  13362. back: {
  13363. height: math.unit(15, "feet"),
  13364. weight: math.unit(880, "kg"),
  13365. name: "Back",
  13366. image: {
  13367. source: "./media/characters/nightraver/back.svg",
  13368. extra: 2309 / 2180,
  13369. bottom: 0.005
  13370. }
  13371. },
  13372. sole: {
  13373. height: math.unit(2.878, "feet"),
  13374. name: "Sole",
  13375. image: {
  13376. source: "./media/characters/nightraver/sole.svg"
  13377. }
  13378. },
  13379. foot: {
  13380. height: math.unit(2.285, "feet"),
  13381. name: "Foot",
  13382. image: {
  13383. source: "./media/characters/nightraver/foot.svg"
  13384. }
  13385. },
  13386. maw: {
  13387. height: math.unit(2.67, "feet"),
  13388. name: "Maw",
  13389. image: {
  13390. source: "./media/characters/nightraver/maw.svg"
  13391. }
  13392. },
  13393. },
  13394. [
  13395. {
  13396. name: "Micro",
  13397. height: math.unit(1, "cm")
  13398. },
  13399. {
  13400. name: "Normal",
  13401. height: math.unit(15, "feet"),
  13402. default: true
  13403. },
  13404. {
  13405. name: "Macro",
  13406. height: math.unit(300, "feet")
  13407. },
  13408. {
  13409. name: "Megamacro",
  13410. height: math.unit(300, "miles")
  13411. },
  13412. {
  13413. name: "Gigamacro",
  13414. height: math.unit(10000, "miles")
  13415. },
  13416. ]
  13417. ))
  13418. characterMakers.push(() => makeCharacter(
  13419. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13420. {
  13421. side: {
  13422. height: math.unit(2, "inches"),
  13423. weight: math.unit(5, "grams"),
  13424. name: "Side",
  13425. image: {
  13426. source: "./media/characters/arc/side.svg"
  13427. }
  13428. },
  13429. },
  13430. [
  13431. {
  13432. name: "Micro",
  13433. height: math.unit(2, "inches"),
  13434. default: true
  13435. },
  13436. ]
  13437. ))
  13438. characterMakers.push(() => makeCharacter(
  13439. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13440. {
  13441. front: {
  13442. height: math.unit(1.1938, "meters"),
  13443. weight: math.unit(54, "kg"),
  13444. name: "Front",
  13445. image: {
  13446. source: "./media/characters/nebula-shahar/front.svg",
  13447. extra: 1642 / 1436,
  13448. bottom: 0.06
  13449. }
  13450. },
  13451. },
  13452. [
  13453. {
  13454. name: "Megamicro",
  13455. height: math.unit(0.3, "mm")
  13456. },
  13457. {
  13458. name: "Micro",
  13459. height: math.unit(3, "cm")
  13460. },
  13461. {
  13462. name: "Normal",
  13463. height: math.unit(138, "cm"),
  13464. default: true
  13465. },
  13466. {
  13467. name: "Macro",
  13468. height: math.unit(30, "m")
  13469. },
  13470. ]
  13471. ))
  13472. characterMakers.push(() => makeCharacter(
  13473. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13474. {
  13475. front: {
  13476. height: math.unit(5.24, "feet"),
  13477. weight: math.unit(150, "lb"),
  13478. name: "Front",
  13479. image: {
  13480. source: "./media/characters/shayla/front.svg",
  13481. extra: 1512 / 1414,
  13482. bottom: 0.01
  13483. }
  13484. },
  13485. back: {
  13486. height: math.unit(5.24, "feet"),
  13487. weight: math.unit(150, "lb"),
  13488. name: "Back",
  13489. image: {
  13490. source: "./media/characters/shayla/back.svg",
  13491. extra: 1512 / 1414
  13492. }
  13493. },
  13494. hand: {
  13495. height: math.unit(0.7781496062992126, "feet"),
  13496. name: "Hand",
  13497. image: {
  13498. source: "./media/characters/shayla/hand.svg"
  13499. }
  13500. },
  13501. foot: {
  13502. height: math.unit(1.4206036745406823, "feet"),
  13503. name: "Foot",
  13504. image: {
  13505. source: "./media/characters/shayla/foot.svg"
  13506. }
  13507. },
  13508. },
  13509. [
  13510. {
  13511. name: "Micro",
  13512. height: math.unit(0.32, "feet")
  13513. },
  13514. {
  13515. name: "Normal",
  13516. height: math.unit(5.24, "feet"),
  13517. default: true
  13518. },
  13519. {
  13520. name: "Macro",
  13521. height: math.unit(492.12, "feet")
  13522. },
  13523. {
  13524. name: "Megamacro",
  13525. height: math.unit(186.41, "miles")
  13526. },
  13527. ]
  13528. ))
  13529. characterMakers.push(() => makeCharacter(
  13530. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13531. {
  13532. front: {
  13533. height: math.unit(2.2, "m"),
  13534. weight: math.unit(120, "kg"),
  13535. name: "Front",
  13536. image: {
  13537. source: "./media/characters/pia-jr/front.svg",
  13538. extra: 1000 / 970,
  13539. bottom: 0.035
  13540. }
  13541. },
  13542. hand: {
  13543. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13544. name: "Hand",
  13545. image: {
  13546. source: "./media/characters/pia-jr/hand.svg"
  13547. }
  13548. },
  13549. paw: {
  13550. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13551. name: "Paw",
  13552. image: {
  13553. source: "./media/characters/pia-jr/paw.svg"
  13554. }
  13555. },
  13556. },
  13557. [
  13558. {
  13559. name: "Micro",
  13560. height: math.unit(1.2, "cm")
  13561. },
  13562. {
  13563. name: "Normal",
  13564. height: math.unit(2.2, "m"),
  13565. default: true
  13566. },
  13567. {
  13568. name: "Macro",
  13569. height: math.unit(180, "m")
  13570. },
  13571. {
  13572. name: "Megamacro",
  13573. height: math.unit(420, "km")
  13574. },
  13575. ]
  13576. ))
  13577. characterMakers.push(() => makeCharacter(
  13578. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13579. {
  13580. front: {
  13581. height: math.unit(2, "m"),
  13582. weight: math.unit(115, "kg"),
  13583. name: "Front",
  13584. image: {
  13585. source: "./media/characters/pia-sr/front.svg",
  13586. extra: 760 / 730,
  13587. bottom: 0.015
  13588. }
  13589. },
  13590. back: {
  13591. height: math.unit(2, "m"),
  13592. weight: math.unit(115, "kg"),
  13593. name: "Back",
  13594. image: {
  13595. source: "./media/characters/pia-sr/back.svg",
  13596. extra: 760 / 730,
  13597. bottom: 0.01
  13598. }
  13599. },
  13600. hand: {
  13601. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13602. name: "Hand",
  13603. image: {
  13604. source: "./media/characters/pia-sr/hand.svg"
  13605. }
  13606. },
  13607. foot: {
  13608. height: math.unit(1.83, "feet"),
  13609. name: "Foot",
  13610. image: {
  13611. source: "./media/characters/pia-sr/foot.svg"
  13612. }
  13613. },
  13614. },
  13615. [
  13616. {
  13617. name: "Micro",
  13618. height: math.unit(88, "mm")
  13619. },
  13620. {
  13621. name: "Normal",
  13622. height: math.unit(2, "m"),
  13623. default: true
  13624. },
  13625. {
  13626. name: "Macro",
  13627. height: math.unit(200, "m")
  13628. },
  13629. {
  13630. name: "Megamacro",
  13631. height: math.unit(420, "km")
  13632. },
  13633. ]
  13634. ))
  13635. characterMakers.push(() => makeCharacter(
  13636. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13637. {
  13638. front: {
  13639. height: math.unit(8 + 2 / 12, "feet"),
  13640. weight: math.unit(300, "lb"),
  13641. name: "Front",
  13642. image: {
  13643. source: "./media/characters/kibibyte/front.svg",
  13644. extra: 2221 / 2098,
  13645. bottom: 0.04
  13646. }
  13647. },
  13648. },
  13649. [
  13650. {
  13651. name: "Normal",
  13652. height: math.unit(8 + 2 / 12, "feet"),
  13653. default: true
  13654. },
  13655. {
  13656. name: "Socialable Macro",
  13657. height: math.unit(50, "feet")
  13658. },
  13659. {
  13660. name: "Macro",
  13661. height: math.unit(300, "feet")
  13662. },
  13663. {
  13664. name: "Megamacro",
  13665. height: math.unit(500, "miles")
  13666. },
  13667. ]
  13668. ))
  13669. characterMakers.push(() => makeCharacter(
  13670. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13671. {
  13672. front: {
  13673. height: math.unit(6, "feet"),
  13674. weight: math.unit(150, "lb"),
  13675. name: "Front",
  13676. image: {
  13677. source: "./media/characters/felix/front.svg",
  13678. extra: 762 / 722,
  13679. bottom: 0.02
  13680. }
  13681. },
  13682. frontClothed: {
  13683. height: math.unit(6, "feet"),
  13684. weight: math.unit(150, "lb"),
  13685. name: "Front (Clothed)",
  13686. image: {
  13687. source: "./media/characters/felix/front-clothed.svg",
  13688. extra: 762 / 722,
  13689. bottom: 0.02
  13690. }
  13691. },
  13692. },
  13693. [
  13694. {
  13695. name: "Normal",
  13696. height: math.unit(6 + 8 / 12, "feet"),
  13697. default: true
  13698. },
  13699. {
  13700. name: "Macro",
  13701. height: math.unit(2600, "feet")
  13702. },
  13703. {
  13704. name: "Megamacro",
  13705. height: math.unit(450, "miles")
  13706. },
  13707. ]
  13708. ))
  13709. characterMakers.push(() => makeCharacter(
  13710. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13711. {
  13712. front: {
  13713. height: math.unit(6 + 1 / 12, "feet"),
  13714. weight: math.unit(250, "lb"),
  13715. name: "Front",
  13716. image: {
  13717. source: "./media/characters/tobo/front.svg",
  13718. extra: 608 / 586,
  13719. bottom: 0.023
  13720. }
  13721. },
  13722. back: {
  13723. height: math.unit(6 + 1 / 12, "feet"),
  13724. weight: math.unit(250, "lb"),
  13725. name: "Back",
  13726. image: {
  13727. source: "./media/characters/tobo/back.svg",
  13728. extra: 608 / 586
  13729. }
  13730. },
  13731. },
  13732. [
  13733. {
  13734. name: "Nano",
  13735. height: math.unit(2, "nm")
  13736. },
  13737. {
  13738. name: "Megamicro",
  13739. height: math.unit(0.1, "mm")
  13740. },
  13741. {
  13742. name: "Micro",
  13743. height: math.unit(1, "inch"),
  13744. default: true
  13745. },
  13746. {
  13747. name: "Human-sized",
  13748. height: math.unit(6 + 1 / 12, "feet")
  13749. },
  13750. {
  13751. name: "Macro",
  13752. height: math.unit(250, "feet")
  13753. },
  13754. {
  13755. name: "Megamacro",
  13756. height: math.unit(75, "miles")
  13757. },
  13758. {
  13759. name: "Texas-sized",
  13760. height: math.unit(750, "miles")
  13761. },
  13762. {
  13763. name: "Teramacro",
  13764. height: math.unit(50000, "miles")
  13765. },
  13766. ]
  13767. ))
  13768. characterMakers.push(() => makeCharacter(
  13769. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13770. {
  13771. front: {
  13772. height: math.unit(6, "feet"),
  13773. weight: math.unit(269, "lb"),
  13774. name: "Front",
  13775. image: {
  13776. source: "./media/characters/danny-kapowsky/front.svg",
  13777. extra: 766 / 736,
  13778. bottom: 0.044
  13779. }
  13780. },
  13781. back: {
  13782. height: math.unit(6, "feet"),
  13783. weight: math.unit(269, "lb"),
  13784. name: "Back",
  13785. image: {
  13786. source: "./media/characters/danny-kapowsky/back.svg",
  13787. extra: 797 / 760,
  13788. bottom: 0.025
  13789. }
  13790. },
  13791. },
  13792. [
  13793. {
  13794. name: "Macro",
  13795. height: math.unit(150, "feet"),
  13796. default: true
  13797. },
  13798. {
  13799. name: "Macro+",
  13800. height: math.unit(200, "feet")
  13801. },
  13802. {
  13803. name: "Macro++",
  13804. height: math.unit(300, "feet")
  13805. },
  13806. {
  13807. name: "Macro+++",
  13808. height: math.unit(400, "feet")
  13809. },
  13810. ]
  13811. ))
  13812. characterMakers.push(() => makeCharacter(
  13813. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13814. {
  13815. side: {
  13816. height: math.unit(6, "feet"),
  13817. weight: math.unit(170, "lb"),
  13818. name: "Side",
  13819. image: {
  13820. source: "./media/characters/finn/side.svg",
  13821. extra: 1953 / 1807,
  13822. bottom: 0.057
  13823. }
  13824. },
  13825. },
  13826. [
  13827. {
  13828. name: "Megamacro",
  13829. height: math.unit(14445, "feet"),
  13830. default: true
  13831. },
  13832. ]
  13833. ))
  13834. characterMakers.push(() => makeCharacter(
  13835. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13836. {
  13837. front: {
  13838. height: math.unit(5 + 6 / 12, "feet"),
  13839. weight: math.unit(125, "lb"),
  13840. name: "Front",
  13841. image: {
  13842. source: "./media/characters/roy/front.svg",
  13843. extra: 1,
  13844. bottom: 0.11
  13845. }
  13846. },
  13847. },
  13848. [
  13849. {
  13850. name: "Micro",
  13851. height: math.unit(3, "inches"),
  13852. default: true
  13853. },
  13854. {
  13855. name: "Normal",
  13856. height: math.unit(5 + 6 / 12, "feet")
  13857. },
  13858. {
  13859. name: "Lesser Macro",
  13860. height: math.unit(60, "feet")
  13861. },
  13862. {
  13863. name: "Greater Macro",
  13864. height: math.unit(120, "feet")
  13865. },
  13866. ]
  13867. ))
  13868. characterMakers.push(() => makeCharacter(
  13869. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13870. {
  13871. front: {
  13872. height: math.unit(6, "feet"),
  13873. weight: math.unit(100, "lb"),
  13874. name: "Front",
  13875. image: {
  13876. source: "./media/characters/aevsivs/front.svg",
  13877. extra: 1,
  13878. bottom: 0.03
  13879. }
  13880. },
  13881. back: {
  13882. height: math.unit(6, "feet"),
  13883. weight: math.unit(100, "lb"),
  13884. name: "Back",
  13885. image: {
  13886. source: "./media/characters/aevsivs/back.svg"
  13887. }
  13888. },
  13889. },
  13890. [
  13891. {
  13892. name: "Micro",
  13893. height: math.unit(2, "inches"),
  13894. default: true
  13895. },
  13896. {
  13897. name: "Normal",
  13898. height: math.unit(5, "feet")
  13899. },
  13900. ]
  13901. ))
  13902. characterMakers.push(() => makeCharacter(
  13903. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13904. {
  13905. front: {
  13906. height: math.unit(5 + 7 / 12, "feet"),
  13907. weight: math.unit(159, "lb"),
  13908. name: "Front",
  13909. image: {
  13910. source: "./media/characters/hildegard/front.svg",
  13911. extra: 289 / 269,
  13912. bottom: 7.63/297.8
  13913. }
  13914. },
  13915. back: {
  13916. height: math.unit(5 + 7 / 12, "feet"),
  13917. weight: math.unit(159, "lb"),
  13918. name: "Back",
  13919. image: {
  13920. source: "./media/characters/hildegard/back.svg",
  13921. extra: 280/260,
  13922. bottom: 2.3/282
  13923. }
  13924. },
  13925. },
  13926. [
  13927. {
  13928. name: "Normal",
  13929. height: math.unit(5 + 7 / 12, "feet"),
  13930. default: true
  13931. },
  13932. ]
  13933. ))
  13934. characterMakers.push(() => makeCharacter(
  13935. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13936. {
  13937. bernard: {
  13938. height: math.unit(2 + 7 / 12, "feet"),
  13939. weight: math.unit(66, "lb"),
  13940. name: "Bernard",
  13941. rename: true,
  13942. image: {
  13943. source: "./media/characters/bernard-wilder/bernard.svg",
  13944. extra: 192 / 128,
  13945. bottom: 0.05
  13946. }
  13947. },
  13948. wilder: {
  13949. height: math.unit(5 + 8 / 12, "feet"),
  13950. weight: math.unit(143, "lb"),
  13951. name: "Wilder",
  13952. rename: true,
  13953. image: {
  13954. source: "./media/characters/bernard-wilder/wilder.svg",
  13955. extra: 361 / 312,
  13956. bottom: 0.02
  13957. }
  13958. },
  13959. },
  13960. [
  13961. {
  13962. name: "Normal",
  13963. height: math.unit(2 + 7 / 12, "feet"),
  13964. default: true
  13965. },
  13966. ]
  13967. ))
  13968. characterMakers.push(() => makeCharacter(
  13969. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13970. {
  13971. anthro: {
  13972. height: math.unit(6 + 1 / 12, "feet"),
  13973. weight: math.unit(155, "lb"),
  13974. name: "Anthro",
  13975. image: {
  13976. source: "./media/characters/hearth/anthro.svg",
  13977. extra: 260 / 250,
  13978. bottom: 0.02
  13979. }
  13980. },
  13981. feral: {
  13982. height: math.unit(3.78, "feet"),
  13983. weight: math.unit(35, "kg"),
  13984. name: "Feral",
  13985. image: {
  13986. source: "./media/characters/hearth/feral.svg",
  13987. extra: 153 / 135,
  13988. bottom: 0.03
  13989. }
  13990. },
  13991. },
  13992. [
  13993. {
  13994. name: "Normal",
  13995. height: math.unit(6 + 1 / 12, "feet"),
  13996. default: true
  13997. },
  13998. ]
  13999. ))
  14000. characterMakers.push(() => makeCharacter(
  14001. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14002. {
  14003. front: {
  14004. height: math.unit(6, "feet"),
  14005. weight: math.unit(182, "lb"),
  14006. name: "Front",
  14007. image: {
  14008. source: "./media/characters/ingrid/front.svg",
  14009. extra: 294 / 268,
  14010. bottom: 0.027
  14011. }
  14012. },
  14013. },
  14014. [
  14015. {
  14016. name: "Normal",
  14017. height: math.unit(6, "feet"),
  14018. default: true
  14019. },
  14020. ]
  14021. ))
  14022. characterMakers.push(() => makeCharacter(
  14023. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14024. {
  14025. eevee: {
  14026. height: math.unit(2 + 10 / 12, "feet"),
  14027. weight: math.unit(86, "lb"),
  14028. name: "Malgam",
  14029. image: {
  14030. source: "./media/characters/malgam/eevee.svg",
  14031. extra: 218 / 180,
  14032. bottom: 0.2
  14033. }
  14034. },
  14035. sylveon: {
  14036. height: math.unit(4, "feet"),
  14037. weight: math.unit(101, "lb"),
  14038. name: "Future Malgam",
  14039. rename: true,
  14040. image: {
  14041. source: "./media/characters/malgam/sylveon.svg",
  14042. extra: 371 / 325,
  14043. bottom: 0.015
  14044. }
  14045. },
  14046. gigantamax: {
  14047. height: math.unit(50, "feet"),
  14048. name: "Gigantamax Malgam",
  14049. rename: true,
  14050. image: {
  14051. source: "./media/characters/malgam/gigantamax.svg"
  14052. }
  14053. },
  14054. },
  14055. [
  14056. {
  14057. name: "Normal",
  14058. height: math.unit(2 + 10 / 12, "feet"),
  14059. default: true
  14060. },
  14061. ]
  14062. ))
  14063. characterMakers.push(() => makeCharacter(
  14064. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14065. {
  14066. front: {
  14067. height: math.unit(5 + 11 / 12, "feet"),
  14068. weight: math.unit(188, "lb"),
  14069. name: "Front",
  14070. image: {
  14071. source: "./media/characters/fleur/front.svg",
  14072. extra: 309 / 283,
  14073. bottom: 0.007
  14074. }
  14075. },
  14076. },
  14077. [
  14078. {
  14079. name: "Normal",
  14080. height: math.unit(5 + 11 / 12, "feet"),
  14081. default: true
  14082. },
  14083. ]
  14084. ))
  14085. characterMakers.push(() => makeCharacter(
  14086. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14087. {
  14088. front: {
  14089. height: math.unit(5 + 4 / 12, "feet"),
  14090. weight: math.unit(122, "lb"),
  14091. name: "Front",
  14092. image: {
  14093. source: "./media/characters/jude/front.svg",
  14094. extra: 288 / 273,
  14095. bottom: 0.03
  14096. }
  14097. },
  14098. },
  14099. [
  14100. {
  14101. name: "Normal",
  14102. height: math.unit(5 + 4 / 12, "feet"),
  14103. default: true
  14104. },
  14105. ]
  14106. ))
  14107. characterMakers.push(() => makeCharacter(
  14108. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14109. {
  14110. front: {
  14111. height: math.unit(5 + 11 / 12, "feet"),
  14112. weight: math.unit(190, "lb"),
  14113. name: "Front",
  14114. image: {
  14115. source: "./media/characters/seara/front.svg",
  14116. extra: 1,
  14117. bottom: 0.05
  14118. }
  14119. },
  14120. },
  14121. [
  14122. {
  14123. name: "Normal",
  14124. height: math.unit(5 + 11 / 12, "feet"),
  14125. default: true
  14126. },
  14127. ]
  14128. ))
  14129. characterMakers.push(() => makeCharacter(
  14130. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14131. {
  14132. front: {
  14133. height: math.unit(16 + 5 / 12, "feet"),
  14134. weight: math.unit(524, "lb"),
  14135. name: "Front",
  14136. image: {
  14137. source: "./media/characters/caspian/front.svg",
  14138. extra: 1,
  14139. bottom: 0.04
  14140. }
  14141. },
  14142. },
  14143. [
  14144. {
  14145. name: "Normal",
  14146. height: math.unit(16 + 5 / 12, "feet"),
  14147. default: true
  14148. },
  14149. ]
  14150. ))
  14151. characterMakers.push(() => makeCharacter(
  14152. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14153. {
  14154. front: {
  14155. height: math.unit(5 + 7 / 12, "feet"),
  14156. weight: math.unit(170, "lb"),
  14157. name: "Front",
  14158. image: {
  14159. source: "./media/characters/mika/front.svg",
  14160. extra: 1,
  14161. bottom: 0.016
  14162. }
  14163. },
  14164. },
  14165. [
  14166. {
  14167. name: "Normal",
  14168. height: math.unit(5 + 7 / 12, "feet"),
  14169. default: true
  14170. },
  14171. ]
  14172. ))
  14173. characterMakers.push(() => makeCharacter(
  14174. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14175. {
  14176. front: {
  14177. height: math.unit(6 + 2 / 12, "feet"),
  14178. weight: math.unit(268, "lb"),
  14179. name: "Front",
  14180. image: {
  14181. source: "./media/characters/sol/front.svg",
  14182. extra: 247 / 231,
  14183. bottom: 0.05
  14184. }
  14185. },
  14186. },
  14187. [
  14188. {
  14189. name: "Normal",
  14190. height: math.unit(6 + 2 / 12, "feet"),
  14191. default: true
  14192. },
  14193. ]
  14194. ))
  14195. characterMakers.push(() => makeCharacter(
  14196. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14197. {
  14198. buizel: {
  14199. height: math.unit(2 + 5 / 12, "feet"),
  14200. weight: math.unit(87, "lb"),
  14201. name: "Buizel",
  14202. image: {
  14203. source: "./media/characters/umiko/buizel.svg",
  14204. extra: 172 / 157,
  14205. bottom: 0.01
  14206. }
  14207. },
  14208. floatzel: {
  14209. height: math.unit(5 + 9 / 12, "feet"),
  14210. weight: math.unit(250, "lb"),
  14211. name: "Floatzel",
  14212. image: {
  14213. source: "./media/characters/umiko/floatzel.svg",
  14214. extra: 262 / 248
  14215. }
  14216. },
  14217. },
  14218. [
  14219. {
  14220. name: "Normal",
  14221. height: math.unit(2 + 5 / 12, "feet"),
  14222. default: true
  14223. },
  14224. ]
  14225. ))
  14226. characterMakers.push(() => makeCharacter(
  14227. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14228. {
  14229. front: {
  14230. height: math.unit(6 + 2 / 12, "feet"),
  14231. weight: math.unit(146, "lb"),
  14232. name: "Front",
  14233. image: {
  14234. source: "./media/characters/iliac/front.svg",
  14235. extra: 389 / 365,
  14236. bottom: 0.035
  14237. }
  14238. },
  14239. },
  14240. [
  14241. {
  14242. name: "Normal",
  14243. height: math.unit(6 + 2 / 12, "feet"),
  14244. default: true
  14245. },
  14246. ]
  14247. ))
  14248. characterMakers.push(() => makeCharacter(
  14249. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14250. {
  14251. front: {
  14252. height: math.unit(6, "feet"),
  14253. weight: math.unit(170, "lb"),
  14254. name: "Front",
  14255. image: {
  14256. source: "./media/characters/topaz/front.svg",
  14257. extra: 317 / 303,
  14258. bottom: 0.055
  14259. }
  14260. },
  14261. },
  14262. [
  14263. {
  14264. name: "Normal",
  14265. height: math.unit(6, "feet"),
  14266. default: true
  14267. },
  14268. ]
  14269. ))
  14270. characterMakers.push(() => makeCharacter(
  14271. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14272. {
  14273. front: {
  14274. height: math.unit(5 + 11 / 12, "feet"),
  14275. weight: math.unit(144, "lb"),
  14276. name: "Front",
  14277. image: {
  14278. source: "./media/characters/gabriel/front.svg",
  14279. extra: 285 / 262,
  14280. bottom: 0.004
  14281. }
  14282. },
  14283. },
  14284. [
  14285. {
  14286. name: "Normal",
  14287. height: math.unit(5 + 11 / 12, "feet"),
  14288. default: true
  14289. },
  14290. ]
  14291. ))
  14292. characterMakers.push(() => makeCharacter(
  14293. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14294. {
  14295. side: {
  14296. height: math.unit(6 + 5 / 12, "feet"),
  14297. weight: math.unit(300, "lb"),
  14298. name: "Side",
  14299. image: {
  14300. source: "./media/characters/tempest-suicune/side.svg",
  14301. extra: 195 / 154,
  14302. bottom: 0.04
  14303. }
  14304. },
  14305. },
  14306. [
  14307. {
  14308. name: "Normal",
  14309. height: math.unit(6 + 5 / 12, "feet"),
  14310. default: true
  14311. },
  14312. ]
  14313. ))
  14314. characterMakers.push(() => makeCharacter(
  14315. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14316. {
  14317. front: {
  14318. height: math.unit(7 + 2 / 12, "feet"),
  14319. weight: math.unit(322, "lb"),
  14320. name: "Front",
  14321. image: {
  14322. source: "./media/characters/vulcan/front.svg",
  14323. extra: 154 / 147,
  14324. bottom: 0.04
  14325. }
  14326. },
  14327. },
  14328. [
  14329. {
  14330. name: "Normal",
  14331. height: math.unit(7 + 2 / 12, "feet"),
  14332. default: true
  14333. },
  14334. ]
  14335. ))
  14336. characterMakers.push(() => makeCharacter(
  14337. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14338. {
  14339. front: {
  14340. height: math.unit(5 + 10 / 12, "feet"),
  14341. weight: math.unit(264, "lb"),
  14342. name: "Front",
  14343. image: {
  14344. source: "./media/characters/gault/front.svg",
  14345. extra: 161 / 140,
  14346. bottom: 0.028
  14347. }
  14348. },
  14349. },
  14350. [
  14351. {
  14352. name: "Normal",
  14353. height: math.unit(5 + 10 / 12, "feet"),
  14354. default: true
  14355. },
  14356. ]
  14357. ))
  14358. characterMakers.push(() => makeCharacter(
  14359. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14360. {
  14361. front: {
  14362. height: math.unit(6, "feet"),
  14363. weight: math.unit(150, "lb"),
  14364. name: "Front",
  14365. image: {
  14366. source: "./media/characters/shard/front.svg",
  14367. extra: 273 / 238,
  14368. bottom: 0.02
  14369. }
  14370. },
  14371. },
  14372. [
  14373. {
  14374. name: "Normal",
  14375. height: math.unit(3 + 6 / 12, "feet"),
  14376. default: true
  14377. },
  14378. ]
  14379. ))
  14380. characterMakers.push(() => makeCharacter(
  14381. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14382. {
  14383. front: {
  14384. height: math.unit(5 + 11 / 12, "feet"),
  14385. weight: math.unit(146, "lb"),
  14386. name: "Front",
  14387. image: {
  14388. source: "./media/characters/ashe/front.svg",
  14389. extra: 400 / 373,
  14390. bottom: 0.01
  14391. }
  14392. },
  14393. },
  14394. [
  14395. {
  14396. name: "Normal",
  14397. height: math.unit(5 + 11 / 12, "feet"),
  14398. default: true
  14399. },
  14400. ]
  14401. ))
  14402. characterMakers.push(() => makeCharacter(
  14403. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14404. {
  14405. front: {
  14406. height: math.unit(5 + 5 / 12, "feet"),
  14407. weight: math.unit(135, "lb"),
  14408. name: "Front",
  14409. image: {
  14410. source: "./media/characters/beatrix/front.svg",
  14411. extra: 392 / 379,
  14412. bottom: 0.01
  14413. }
  14414. },
  14415. },
  14416. [
  14417. {
  14418. name: "Normal",
  14419. height: math.unit(6, "feet"),
  14420. default: true
  14421. },
  14422. ]
  14423. ))
  14424. characterMakers.push(() => makeCharacter(
  14425. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14426. {
  14427. front: {
  14428. height: math.unit(6, "feet"),
  14429. weight: math.unit(150, "lb"),
  14430. name: "Front",
  14431. image: {
  14432. source: "./media/characters/ignatius/front.svg",
  14433. extra: 245 / 222,
  14434. bottom: 0.01
  14435. }
  14436. },
  14437. },
  14438. [
  14439. {
  14440. name: "Normal",
  14441. height: math.unit(5 + 5 / 12, "feet"),
  14442. default: true
  14443. },
  14444. ]
  14445. ))
  14446. characterMakers.push(() => makeCharacter(
  14447. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14448. {
  14449. front: {
  14450. height: math.unit(6 + 2 / 12, "feet"),
  14451. weight: math.unit(138, "lb"),
  14452. name: "Front",
  14453. image: {
  14454. source: "./media/characters/mei-li/front.svg",
  14455. extra: 237 / 229,
  14456. bottom: 0.03
  14457. }
  14458. },
  14459. },
  14460. [
  14461. {
  14462. name: "Normal",
  14463. height: math.unit(6 + 2 / 12, "feet"),
  14464. default: true
  14465. },
  14466. ]
  14467. ))
  14468. characterMakers.push(() => makeCharacter(
  14469. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14470. {
  14471. front: {
  14472. height: math.unit(2 + 4 / 12, "feet"),
  14473. weight: math.unit(62, "lb"),
  14474. name: "Front",
  14475. image: {
  14476. source: "./media/characters/puru/front.svg",
  14477. extra: 206 / 149,
  14478. bottom: 0.06
  14479. }
  14480. },
  14481. },
  14482. [
  14483. {
  14484. name: "Normal",
  14485. height: math.unit(2 + 4 / 12, "feet"),
  14486. default: true
  14487. },
  14488. ]
  14489. ))
  14490. characterMakers.push(() => makeCharacter(
  14491. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14492. {
  14493. taur: {
  14494. height: math.unit(11, "feet"),
  14495. weight: math.unit(500, "lb"),
  14496. name: "Taur",
  14497. image: {
  14498. source: "./media/characters/kee/taur.svg",
  14499. extra: 1,
  14500. bottom: 0.04
  14501. }
  14502. },
  14503. },
  14504. [
  14505. {
  14506. name: "Normal",
  14507. height: math.unit(11, "feet"),
  14508. default: true
  14509. },
  14510. ]
  14511. ))
  14512. characterMakers.push(() => makeCharacter(
  14513. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14514. {
  14515. anthro: {
  14516. height: math.unit(7, "feet"),
  14517. weight: math.unit(190, "lb"),
  14518. name: "Anthro",
  14519. image: {
  14520. source: "./media/characters/cobalt-dracha/anthro.svg",
  14521. extra: 231 / 225,
  14522. bottom: 0.04
  14523. }
  14524. },
  14525. feral: {
  14526. height: math.unit(9 + 7 / 12, "feet"),
  14527. weight: math.unit(294, "lb"),
  14528. name: "Feral",
  14529. image: {
  14530. source: "./media/characters/cobalt-dracha/feral.svg",
  14531. extra: 692 / 633,
  14532. bottom: 0.05
  14533. }
  14534. },
  14535. },
  14536. [
  14537. {
  14538. name: "Normal",
  14539. height: math.unit(7, "feet"),
  14540. default: true
  14541. },
  14542. ]
  14543. ))
  14544. characterMakers.push(() => makeCharacter(
  14545. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14546. {
  14547. fallen: {
  14548. height: math.unit(11 + 8 / 12, "feet"),
  14549. weight: math.unit(485, "lb"),
  14550. name: "Java (Fallen)",
  14551. rename: true,
  14552. image: {
  14553. source: "./media/characters/java/fallen.svg",
  14554. extra: 226 / 208,
  14555. bottom: 0.005
  14556. }
  14557. },
  14558. godkin: {
  14559. height: math.unit(10 + 6 / 12, "feet"),
  14560. weight: math.unit(328, "lb"),
  14561. name: "Java (Godkin)",
  14562. rename: true,
  14563. image: {
  14564. source: "./media/characters/java/godkin.svg",
  14565. extra: 270 / 262,
  14566. bottom: 0.02
  14567. }
  14568. },
  14569. },
  14570. [
  14571. {
  14572. name: "Normal",
  14573. height: math.unit(11 + 8 / 12, "feet"),
  14574. default: true
  14575. },
  14576. ]
  14577. ))
  14578. characterMakers.push(() => makeCharacter(
  14579. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14580. {
  14581. front: {
  14582. height: math.unit(7 + 8 / 12, "feet"),
  14583. weight: math.unit(320, "lb"),
  14584. name: "Front",
  14585. image: {
  14586. source: "./media/characters/skoll/front.svg",
  14587. extra: 232 / 220,
  14588. bottom: 0.02
  14589. }
  14590. },
  14591. },
  14592. [
  14593. {
  14594. name: "Normal",
  14595. height: math.unit(7 + 8 / 12, "feet"),
  14596. default: true
  14597. },
  14598. ]
  14599. ))
  14600. characterMakers.push(() => makeCharacter(
  14601. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14602. {
  14603. front: {
  14604. height: math.unit(5 + 9 / 12, "feet"),
  14605. weight: math.unit(170, "lb"),
  14606. name: "Front",
  14607. image: {
  14608. source: "./media/characters/purna/front.svg",
  14609. extra: 239 / 229,
  14610. bottom: 0.01
  14611. }
  14612. },
  14613. },
  14614. [
  14615. {
  14616. name: "Normal",
  14617. height: math.unit(5 + 9 / 12, "feet"),
  14618. default: true
  14619. },
  14620. ]
  14621. ))
  14622. characterMakers.push(() => makeCharacter(
  14623. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14624. {
  14625. front: {
  14626. height: math.unit(5 + 9 / 12, "feet"),
  14627. weight: math.unit(142, "lb"),
  14628. name: "Front",
  14629. image: {
  14630. source: "./media/characters/kuva/front.svg",
  14631. extra: 281 / 271,
  14632. bottom: 0.006
  14633. }
  14634. },
  14635. },
  14636. [
  14637. {
  14638. name: "Normal",
  14639. height: math.unit(5 + 9 / 12, "feet"),
  14640. default: true
  14641. },
  14642. ]
  14643. ))
  14644. characterMakers.push(() => makeCharacter(
  14645. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14646. {
  14647. anthro: {
  14648. height: math.unit(9 + 2 / 12, "feet"),
  14649. weight: math.unit(270, "lb"),
  14650. name: "Anthro",
  14651. image: {
  14652. source: "./media/characters/embra/anthro.svg",
  14653. extra: 200 / 187,
  14654. bottom: 0.02
  14655. }
  14656. },
  14657. feral: {
  14658. height: math.unit(18 + 8 / 12, "feet"),
  14659. weight: math.unit(576, "lb"),
  14660. name: "Feral",
  14661. image: {
  14662. source: "./media/characters/embra/feral.svg",
  14663. extra: 152 / 137,
  14664. bottom: 0.037
  14665. }
  14666. },
  14667. },
  14668. [
  14669. {
  14670. name: "Normal",
  14671. height: math.unit(9 + 2 / 12, "feet"),
  14672. default: true
  14673. },
  14674. ]
  14675. ))
  14676. characterMakers.push(() => makeCharacter(
  14677. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14678. {
  14679. anthro: {
  14680. height: math.unit(10 + 9 / 12, "feet"),
  14681. weight: math.unit(224, "lb"),
  14682. name: "Anthro",
  14683. image: {
  14684. source: "./media/characters/grottos/anthro.svg",
  14685. extra: 350 / 332,
  14686. bottom: 0.045
  14687. }
  14688. },
  14689. feral: {
  14690. height: math.unit(20 + 7 / 12, "feet"),
  14691. weight: math.unit(629, "lb"),
  14692. name: "Feral",
  14693. image: {
  14694. source: "./media/characters/grottos/feral.svg",
  14695. extra: 207 / 190,
  14696. bottom: 0.05
  14697. }
  14698. },
  14699. },
  14700. [
  14701. {
  14702. name: "Normal",
  14703. height: math.unit(10 + 9 / 12, "feet"),
  14704. default: true
  14705. },
  14706. ]
  14707. ))
  14708. characterMakers.push(() => makeCharacter(
  14709. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14710. {
  14711. anthro: {
  14712. height: math.unit(9 + 6 / 12, "feet"),
  14713. weight: math.unit(298, "lb"),
  14714. name: "Anthro",
  14715. image: {
  14716. source: "./media/characters/frifna/anthro.svg",
  14717. extra: 282 / 269,
  14718. bottom: 0.015
  14719. }
  14720. },
  14721. feral: {
  14722. height: math.unit(16 + 2 / 12, "feet"),
  14723. weight: math.unit(624, "lb"),
  14724. name: "Feral",
  14725. image: {
  14726. source: "./media/characters/frifna/feral.svg"
  14727. }
  14728. },
  14729. },
  14730. [
  14731. {
  14732. name: "Normal",
  14733. height: math.unit(9 + 6 / 12, "feet"),
  14734. default: true
  14735. },
  14736. ]
  14737. ))
  14738. characterMakers.push(() => makeCharacter(
  14739. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14740. {
  14741. front: {
  14742. height: math.unit(6 + 2 / 12, "feet"),
  14743. weight: math.unit(168, "lb"),
  14744. name: "Front",
  14745. image: {
  14746. source: "./media/characters/elise/front.svg",
  14747. extra: 276 / 271
  14748. }
  14749. },
  14750. },
  14751. [
  14752. {
  14753. name: "Normal",
  14754. height: math.unit(6 + 2 / 12, "feet"),
  14755. default: true
  14756. },
  14757. ]
  14758. ))
  14759. characterMakers.push(() => makeCharacter(
  14760. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14761. {
  14762. front: {
  14763. height: math.unit(5 + 10 / 12, "feet"),
  14764. weight: math.unit(210, "lb"),
  14765. name: "Front",
  14766. image: {
  14767. source: "./media/characters/glade/front.svg",
  14768. extra: 258 / 247,
  14769. bottom: 0.008
  14770. }
  14771. },
  14772. },
  14773. [
  14774. {
  14775. name: "Normal",
  14776. height: math.unit(5 + 10 / 12, "feet"),
  14777. default: true
  14778. },
  14779. ]
  14780. ))
  14781. characterMakers.push(() => makeCharacter(
  14782. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14783. {
  14784. front: {
  14785. height: math.unit(5 + 10 / 12, "feet"),
  14786. weight: math.unit(129, "lb"),
  14787. name: "Front",
  14788. image: {
  14789. source: "./media/characters/rina/front.svg",
  14790. extra: 266 / 255,
  14791. bottom: 0.005
  14792. }
  14793. },
  14794. },
  14795. [
  14796. {
  14797. name: "Normal",
  14798. height: math.unit(5 + 10 / 12, "feet"),
  14799. default: true
  14800. },
  14801. ]
  14802. ))
  14803. characterMakers.push(() => makeCharacter(
  14804. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14805. {
  14806. front: {
  14807. height: math.unit(6 + 1 / 12, "feet"),
  14808. weight: math.unit(192, "lb"),
  14809. name: "Front",
  14810. image: {
  14811. source: "./media/characters/veronica/front.svg",
  14812. extra: 319 / 309,
  14813. bottom: 0.005
  14814. }
  14815. },
  14816. },
  14817. [
  14818. {
  14819. name: "Normal",
  14820. height: math.unit(6 + 1 / 12, "feet"),
  14821. default: true
  14822. },
  14823. ]
  14824. ))
  14825. characterMakers.push(() => makeCharacter(
  14826. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14827. {
  14828. front: {
  14829. height: math.unit(9 + 3 / 12, "feet"),
  14830. weight: math.unit(1100, "lb"),
  14831. name: "Front",
  14832. image: {
  14833. source: "./media/characters/braxton/front.svg",
  14834. extra: 1057 / 984,
  14835. bottom: 0.05
  14836. }
  14837. },
  14838. },
  14839. [
  14840. {
  14841. name: "Normal",
  14842. height: math.unit(9 + 3 / 12, "feet")
  14843. },
  14844. {
  14845. name: "Giant",
  14846. height: math.unit(300, "feet"),
  14847. default: true
  14848. },
  14849. {
  14850. name: "Macro",
  14851. height: math.unit(700, "feet")
  14852. },
  14853. {
  14854. name: "Megamacro",
  14855. height: math.unit(6000, "feet")
  14856. },
  14857. ]
  14858. ))
  14859. characterMakers.push(() => makeCharacter(
  14860. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14861. {
  14862. front: {
  14863. height: math.unit(6 + 7 / 12, "feet"),
  14864. weight: math.unit(150, "lb"),
  14865. name: "Front",
  14866. image: {
  14867. source: "./media/characters/blue-feyonics/front.svg",
  14868. extra: 1403 / 1306,
  14869. bottom: 0.047
  14870. }
  14871. },
  14872. },
  14873. [
  14874. {
  14875. name: "Normal",
  14876. height: math.unit(6 + 7 / 12, "feet"),
  14877. default: true
  14878. },
  14879. ]
  14880. ))
  14881. characterMakers.push(() => makeCharacter(
  14882. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14883. {
  14884. front: {
  14885. height: math.unit(1.8, "meters"),
  14886. weight: math.unit(60, "kg"),
  14887. name: "Front",
  14888. image: {
  14889. source: "./media/characters/maxwell/front.svg",
  14890. extra: 2060 / 1873
  14891. }
  14892. },
  14893. },
  14894. [
  14895. {
  14896. name: "Micro",
  14897. height: math.unit(1, "mm")
  14898. },
  14899. {
  14900. name: "Normal",
  14901. height: math.unit(1.8, "meter"),
  14902. default: true
  14903. },
  14904. {
  14905. name: "Macro",
  14906. height: math.unit(30, "meters")
  14907. },
  14908. {
  14909. name: "Megamacro",
  14910. height: math.unit(10, "km")
  14911. },
  14912. ]
  14913. ))
  14914. characterMakers.push(() => makeCharacter(
  14915. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14916. {
  14917. front: {
  14918. height: math.unit(6, "feet"),
  14919. weight: math.unit(150, "lb"),
  14920. name: "Front",
  14921. image: {
  14922. source: "./media/characters/jack/front.svg",
  14923. extra: 1754 / 1640,
  14924. bottom: 0.01
  14925. }
  14926. },
  14927. },
  14928. [
  14929. {
  14930. name: "Normal",
  14931. height: math.unit(80000, "feet"),
  14932. default: true
  14933. },
  14934. {
  14935. name: "Max size",
  14936. height: math.unit(10, "lightyears")
  14937. },
  14938. ]
  14939. ))
  14940. characterMakers.push(() => makeCharacter(
  14941. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14942. {
  14943. upright: {
  14944. height: math.unit(7, "feet"),
  14945. weight: math.unit(170, "lb"),
  14946. name: "Upright",
  14947. image: {
  14948. source: "./media/characters/cafat/upright.svg",
  14949. bottom: 0.01
  14950. }
  14951. },
  14952. uprightFull: {
  14953. height: math.unit(7, "feet"),
  14954. weight: math.unit(170, "lb"),
  14955. name: "Upright (Full)",
  14956. image: {
  14957. source: "./media/characters/cafat/upright-full.svg",
  14958. bottom: 0.01
  14959. }
  14960. },
  14961. side: {
  14962. height: math.unit(5, "feet"),
  14963. weight: math.unit(150, "lb"),
  14964. name: "Side",
  14965. image: {
  14966. source: "./media/characters/cafat/side.svg"
  14967. }
  14968. },
  14969. },
  14970. [
  14971. {
  14972. name: "Small",
  14973. height: math.unit(7, "feet"),
  14974. default: true
  14975. },
  14976. {
  14977. name: "Large",
  14978. height: math.unit(15.5, "feet")
  14979. },
  14980. ]
  14981. ))
  14982. characterMakers.push(() => makeCharacter(
  14983. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14984. {
  14985. front: {
  14986. height: math.unit(6, "feet"),
  14987. weight: math.unit(150, "lb"),
  14988. name: "Front",
  14989. image: {
  14990. source: "./media/characters/verin-raharra/front.svg",
  14991. extra: 5019 / 4835,
  14992. bottom: 0.023
  14993. }
  14994. },
  14995. },
  14996. [
  14997. {
  14998. name: "Normal",
  14999. height: math.unit(7 + 5 / 12, "feet"),
  15000. default: true
  15001. },
  15002. {
  15003. name: "Upsized",
  15004. height: math.unit(20, "feet")
  15005. },
  15006. ]
  15007. ))
  15008. characterMakers.push(() => makeCharacter(
  15009. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15010. {
  15011. front: {
  15012. height: math.unit(7, "feet"),
  15013. weight: math.unit(230, "lb"),
  15014. name: "Front",
  15015. image: {
  15016. source: "./media/characters/nakata/front.svg",
  15017. extra: 1.005,
  15018. bottom: 0.01
  15019. }
  15020. },
  15021. },
  15022. [
  15023. {
  15024. name: "Normal",
  15025. height: math.unit(7, "feet"),
  15026. default: true
  15027. },
  15028. {
  15029. name: "Big",
  15030. height: math.unit(14, "feet")
  15031. },
  15032. {
  15033. name: "Macro",
  15034. height: math.unit(400, "feet")
  15035. },
  15036. ]
  15037. ))
  15038. characterMakers.push(() => makeCharacter(
  15039. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15040. {
  15041. front: {
  15042. height: math.unit(4.91, "feet"),
  15043. weight: math.unit(100, "lb"),
  15044. name: "Front",
  15045. image: {
  15046. source: "./media/characters/lily/front.svg",
  15047. extra: 1585 / 1415,
  15048. bottom: 0.02
  15049. }
  15050. },
  15051. },
  15052. [
  15053. {
  15054. name: "Normal",
  15055. height: math.unit(4.91, "feet"),
  15056. default: true
  15057. },
  15058. ]
  15059. ))
  15060. characterMakers.push(() => makeCharacter(
  15061. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15062. {
  15063. laying: {
  15064. height: math.unit(4 + 4 / 12, "feet"),
  15065. weight: math.unit(600, "lb"),
  15066. name: "Laying",
  15067. image: {
  15068. source: "./media/characters/sheila/laying.svg",
  15069. extra: 1333 / 1265,
  15070. bottom: 0.16
  15071. }
  15072. },
  15073. },
  15074. [
  15075. {
  15076. name: "Normal",
  15077. height: math.unit(4 + 4 / 12, "feet"),
  15078. default: true
  15079. },
  15080. ]
  15081. ))
  15082. characterMakers.push(() => makeCharacter(
  15083. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15084. {
  15085. front: {
  15086. height: math.unit(6, "feet"),
  15087. weight: math.unit(190, "lb"),
  15088. name: "Front",
  15089. image: {
  15090. source: "./media/characters/sax/front.svg",
  15091. extra: 1187 / 973,
  15092. bottom: 0.042
  15093. }
  15094. },
  15095. },
  15096. [
  15097. {
  15098. name: "Micro",
  15099. height: math.unit(4, "inches"),
  15100. default: true
  15101. },
  15102. ]
  15103. ))
  15104. characterMakers.push(() => makeCharacter(
  15105. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15106. {
  15107. front: {
  15108. height: math.unit(6, "feet"),
  15109. weight: math.unit(150, "lb"),
  15110. name: "Front",
  15111. image: {
  15112. source: "./media/characters/pandora/front.svg",
  15113. extra: 2720 / 2556,
  15114. bottom: 0.015
  15115. }
  15116. },
  15117. back: {
  15118. height: math.unit(6, "feet"),
  15119. weight: math.unit(150, "lb"),
  15120. name: "Back",
  15121. image: {
  15122. source: "./media/characters/pandora/back.svg",
  15123. extra: 2720 / 2556,
  15124. bottom: 0.01
  15125. }
  15126. },
  15127. beans: {
  15128. height: math.unit(6 / 8, "feet"),
  15129. name: "Beans",
  15130. image: {
  15131. source: "./media/characters/pandora/beans.svg"
  15132. }
  15133. },
  15134. skirt: {
  15135. height: math.unit(6, "feet"),
  15136. weight: math.unit(150, "lb"),
  15137. name: "Skirt",
  15138. image: {
  15139. source: "./media/characters/pandora/skirt.svg",
  15140. extra: 1622 / 1525,
  15141. bottom: 0.015
  15142. }
  15143. },
  15144. hoodie: {
  15145. height: math.unit(6, "feet"),
  15146. weight: math.unit(150, "lb"),
  15147. name: "Hoodie",
  15148. image: {
  15149. source: "./media/characters/pandora/hoodie.svg",
  15150. extra: 1622 / 1525,
  15151. bottom: 0.015
  15152. }
  15153. },
  15154. casual: {
  15155. height: math.unit(6, "feet"),
  15156. weight: math.unit(150, "lb"),
  15157. name: "Casual",
  15158. image: {
  15159. source: "./media/characters/pandora/casual.svg",
  15160. extra: 1622 / 1525,
  15161. bottom: 0.015
  15162. }
  15163. },
  15164. },
  15165. [
  15166. {
  15167. name: "Normal",
  15168. height: math.unit(6, "feet")
  15169. },
  15170. {
  15171. name: "Big Steppy",
  15172. height: math.unit(1, "km"),
  15173. default: true
  15174. },
  15175. ]
  15176. ))
  15177. characterMakers.push(() => makeCharacter(
  15178. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15179. {
  15180. side: {
  15181. height: math.unit(10, "feet"),
  15182. weight: math.unit(800, "kg"),
  15183. name: "Side",
  15184. image: {
  15185. source: "./media/characters/venio-darcony/side.svg",
  15186. extra: 1373 / 1003,
  15187. bottom: 0.037
  15188. }
  15189. },
  15190. front: {
  15191. height: math.unit(19, "feet"),
  15192. weight: math.unit(800, "kg"),
  15193. name: "Front",
  15194. image: {
  15195. source: "./media/characters/venio-darcony/front.svg"
  15196. }
  15197. },
  15198. back: {
  15199. height: math.unit(19, "feet"),
  15200. weight: math.unit(800, "kg"),
  15201. name: "Back",
  15202. image: {
  15203. source: "./media/characters/venio-darcony/back.svg"
  15204. }
  15205. },
  15206. sideNsfw: {
  15207. height: math.unit(10, "feet"),
  15208. weight: math.unit(800, "kg"),
  15209. name: "Side (NSFW)",
  15210. image: {
  15211. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15212. extra: 1373 / 1003,
  15213. bottom: 0.037
  15214. }
  15215. },
  15216. frontNsfw: {
  15217. height: math.unit(19, "feet"),
  15218. weight: math.unit(800, "kg"),
  15219. name: "Front (NSFW)",
  15220. image: {
  15221. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15222. }
  15223. },
  15224. backNsfw: {
  15225. height: math.unit(19, "feet"),
  15226. weight: math.unit(800, "kg"),
  15227. name: "Back (NSFW)",
  15228. image: {
  15229. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15230. }
  15231. },
  15232. sideArmored: {
  15233. height: math.unit(10, "feet"),
  15234. weight: math.unit(800, "kg"),
  15235. name: "Side (Armored)",
  15236. image: {
  15237. source: "./media/characters/venio-darcony/side-armored.svg",
  15238. extra: 1373 / 1003,
  15239. bottom: 0.037
  15240. }
  15241. },
  15242. frontArmored: {
  15243. height: math.unit(19, "feet"),
  15244. weight: math.unit(900, "kg"),
  15245. name: "Front (Armored)",
  15246. image: {
  15247. source: "./media/characters/venio-darcony/front-armored.svg"
  15248. }
  15249. },
  15250. backArmored: {
  15251. height: math.unit(19, "feet"),
  15252. weight: math.unit(900, "kg"),
  15253. name: "Back (Armored)",
  15254. image: {
  15255. source: "./media/characters/venio-darcony/back-armored.svg"
  15256. }
  15257. },
  15258. sword: {
  15259. height: math.unit(10, "feet"),
  15260. weight: math.unit(50, "lb"),
  15261. name: "Sword",
  15262. image: {
  15263. source: "./media/characters/venio-darcony/sword.svg"
  15264. }
  15265. },
  15266. },
  15267. [
  15268. {
  15269. name: "Normal",
  15270. height: math.unit(10, "feet")
  15271. },
  15272. {
  15273. name: "Macro",
  15274. height: math.unit(130, "feet"),
  15275. default: true
  15276. },
  15277. {
  15278. name: "Macro+",
  15279. height: math.unit(240, "feet")
  15280. },
  15281. ]
  15282. ))
  15283. characterMakers.push(() => makeCharacter(
  15284. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15285. {
  15286. front: {
  15287. height: math.unit(6, "feet"),
  15288. weight: math.unit(150, "lb"),
  15289. name: "Front",
  15290. image: {
  15291. source: "./media/characters/veski/front.svg",
  15292. extra: 1299 / 1225,
  15293. bottom: 0.04
  15294. }
  15295. },
  15296. back: {
  15297. height: math.unit(6, "feet"),
  15298. weight: math.unit(150, "lb"),
  15299. name: "Back",
  15300. image: {
  15301. source: "./media/characters/veski/back.svg",
  15302. extra: 1299 / 1225,
  15303. bottom: 0.008
  15304. }
  15305. },
  15306. maw: {
  15307. height: math.unit(1.5 * 1.21, "feet"),
  15308. name: "Maw",
  15309. image: {
  15310. source: "./media/characters/veski/maw.svg"
  15311. }
  15312. },
  15313. },
  15314. [
  15315. {
  15316. name: "Macro",
  15317. height: math.unit(2, "km"),
  15318. default: true
  15319. },
  15320. ]
  15321. ))
  15322. characterMakers.push(() => makeCharacter(
  15323. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15324. {
  15325. front: {
  15326. height: math.unit(5 + 7 / 12, "feet"),
  15327. name: "Front",
  15328. image: {
  15329. source: "./media/characters/isabelle/front.svg",
  15330. extra: 2130 / 1976,
  15331. bottom: 0.05
  15332. }
  15333. },
  15334. },
  15335. [
  15336. {
  15337. name: "Supermicro",
  15338. height: math.unit(10, "micrometers")
  15339. },
  15340. {
  15341. name: "Micro",
  15342. height: math.unit(1, "inch")
  15343. },
  15344. {
  15345. name: "Tiny",
  15346. height: math.unit(5, "inches")
  15347. },
  15348. {
  15349. name: "Standard",
  15350. height: math.unit(5 + 7 / 12, "inches")
  15351. },
  15352. {
  15353. name: "Macro",
  15354. height: math.unit(80, "meters"),
  15355. default: true
  15356. },
  15357. {
  15358. name: "Megamacro",
  15359. height: math.unit(250, "meters")
  15360. },
  15361. {
  15362. name: "Gigamacro",
  15363. height: math.unit(5, "km")
  15364. },
  15365. {
  15366. name: "Cosmic",
  15367. height: math.unit(2.5e6, "miles")
  15368. },
  15369. ]
  15370. ))
  15371. characterMakers.push(() => makeCharacter(
  15372. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15373. {
  15374. front: {
  15375. height: math.unit(6, "feet"),
  15376. weight: math.unit(150, "lb"),
  15377. name: "Front",
  15378. image: {
  15379. source: "./media/characters/hanzo/front.svg",
  15380. extra: 374 / 344,
  15381. bottom: 0.02
  15382. }
  15383. },
  15384. },
  15385. [
  15386. {
  15387. name: "Normal",
  15388. height: math.unit(8, "feet"),
  15389. default: true
  15390. },
  15391. ]
  15392. ))
  15393. characterMakers.push(() => makeCharacter(
  15394. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15395. {
  15396. front: {
  15397. height: math.unit(7, "feet"),
  15398. weight: math.unit(130, "lb"),
  15399. name: "Front",
  15400. image: {
  15401. source: "./media/characters/anna/front.svg",
  15402. extra: 169 / 145,
  15403. bottom: 0.06
  15404. }
  15405. },
  15406. full: {
  15407. height: math.unit(4.96, "feet"),
  15408. weight: math.unit(220, "lb"),
  15409. name: "Full",
  15410. image: {
  15411. source: "./media/characters/anna/full.svg",
  15412. extra: 138 / 114,
  15413. bottom: 0.15
  15414. }
  15415. },
  15416. tongue: {
  15417. height: math.unit(2.53, "feet"),
  15418. name: "Tongue",
  15419. image: {
  15420. source: "./media/characters/anna/tongue.svg"
  15421. }
  15422. },
  15423. },
  15424. [
  15425. {
  15426. name: "Normal",
  15427. height: math.unit(7, "feet"),
  15428. default: true
  15429. },
  15430. ]
  15431. ))
  15432. characterMakers.push(() => makeCharacter(
  15433. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15434. {
  15435. front: {
  15436. height: math.unit(7, "feet"),
  15437. weight: math.unit(150, "lb"),
  15438. name: "Front",
  15439. image: {
  15440. source: "./media/characters/ian-corvid/front.svg",
  15441. extra: 150 / 142,
  15442. bottom: 0.02
  15443. }
  15444. },
  15445. back: {
  15446. height: math.unit(7, "feet"),
  15447. weight: math.unit(150, "lb"),
  15448. name: "Back",
  15449. image: {
  15450. source: "./media/characters/ian-corvid/back.svg",
  15451. extra: 150 / 143,
  15452. bottom: 0.01
  15453. }
  15454. },
  15455. stomping: {
  15456. height: math.unit(7, "feet"),
  15457. weight: math.unit(150, "lb"),
  15458. name: "Stomping",
  15459. image: {
  15460. source: "./media/characters/ian-corvid/stomping.svg",
  15461. extra: 76 / 72
  15462. }
  15463. },
  15464. sitting: {
  15465. height: math.unit(7 / 1.8, "feet"),
  15466. weight: math.unit(150, "lb"),
  15467. name: "Sitting",
  15468. image: {
  15469. source: "./media/characters/ian-corvid/sitting.svg",
  15470. extra: 1400 / 1269,
  15471. bottom: 0.15
  15472. }
  15473. },
  15474. },
  15475. [
  15476. {
  15477. name: "Tiny Microw",
  15478. height: math.unit(1, "inch")
  15479. },
  15480. {
  15481. name: "Microw",
  15482. height: math.unit(6, "inches")
  15483. },
  15484. {
  15485. name: "Crow",
  15486. height: math.unit(7 + 1 / 12, "feet"),
  15487. default: true
  15488. },
  15489. {
  15490. name: "Macrow",
  15491. height: math.unit(176, "feet")
  15492. },
  15493. ]
  15494. ))
  15495. characterMakers.push(() => makeCharacter(
  15496. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15497. {
  15498. front: {
  15499. height: math.unit(5 + 7 / 12, "feet"),
  15500. weight: math.unit(147, "lb"),
  15501. name: "Front",
  15502. image: {
  15503. source: "./media/characters/natalie-kellon/front.svg",
  15504. extra: 1214 / 1141,
  15505. bottom: 0.02
  15506. }
  15507. },
  15508. },
  15509. [
  15510. {
  15511. name: "Micro",
  15512. height: math.unit(1 / 16, "inch")
  15513. },
  15514. {
  15515. name: "Tiny",
  15516. height: math.unit(4, "inches")
  15517. },
  15518. {
  15519. name: "Normal",
  15520. height: math.unit(5 + 7 / 12, "feet"),
  15521. default: true
  15522. },
  15523. {
  15524. name: "Amazon",
  15525. height: math.unit(12, "feet")
  15526. },
  15527. {
  15528. name: "Giantess",
  15529. height: math.unit(160, "meters")
  15530. },
  15531. {
  15532. name: "Titaness",
  15533. height: math.unit(800, "meters")
  15534. },
  15535. ]
  15536. ))
  15537. characterMakers.push(() => makeCharacter(
  15538. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15539. {
  15540. front: {
  15541. height: math.unit(6, "feet"),
  15542. weight: math.unit(150, "lb"),
  15543. name: "Front",
  15544. image: {
  15545. source: "./media/characters/alluria/front.svg",
  15546. extra: 806 / 738,
  15547. bottom: 0.01
  15548. }
  15549. },
  15550. side: {
  15551. height: math.unit(6, "feet"),
  15552. weight: math.unit(150, "lb"),
  15553. name: "Side",
  15554. image: {
  15555. source: "./media/characters/alluria/side.svg",
  15556. extra: 800 / 750,
  15557. }
  15558. },
  15559. back: {
  15560. height: math.unit(6, "feet"),
  15561. weight: math.unit(150, "lb"),
  15562. name: "Back",
  15563. image: {
  15564. source: "./media/characters/alluria/back.svg",
  15565. extra: 806 / 738,
  15566. }
  15567. },
  15568. frontMaid: {
  15569. height: math.unit(6, "feet"),
  15570. weight: math.unit(150, "lb"),
  15571. name: "Front (Maid)",
  15572. image: {
  15573. source: "./media/characters/alluria/front-maid.svg",
  15574. extra: 806 / 738,
  15575. bottom: 0.01
  15576. }
  15577. },
  15578. sideMaid: {
  15579. height: math.unit(6, "feet"),
  15580. weight: math.unit(150, "lb"),
  15581. name: "Side (Maid)",
  15582. image: {
  15583. source: "./media/characters/alluria/side-maid.svg",
  15584. extra: 800 / 750,
  15585. bottom: 0.005
  15586. }
  15587. },
  15588. backMaid: {
  15589. height: math.unit(6, "feet"),
  15590. weight: math.unit(150, "lb"),
  15591. name: "Back (Maid)",
  15592. image: {
  15593. source: "./media/characters/alluria/back-maid.svg",
  15594. extra: 806 / 738,
  15595. }
  15596. },
  15597. },
  15598. [
  15599. {
  15600. name: "Micro",
  15601. height: math.unit(6, "inches"),
  15602. default: true
  15603. },
  15604. ]
  15605. ))
  15606. characterMakers.push(() => makeCharacter(
  15607. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15608. {
  15609. front: {
  15610. height: math.unit(6, "feet"),
  15611. weight: math.unit(150, "lb"),
  15612. name: "Front",
  15613. image: {
  15614. source: "./media/characters/kyle/front.svg",
  15615. extra: 1069 / 962,
  15616. bottom: 77.228 / 1727.45
  15617. }
  15618. },
  15619. },
  15620. [
  15621. {
  15622. name: "Macro",
  15623. height: math.unit(150, "feet"),
  15624. default: true
  15625. },
  15626. ]
  15627. ))
  15628. characterMakers.push(() => makeCharacter(
  15629. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15630. {
  15631. front: {
  15632. height: math.unit(6, "feet"),
  15633. weight: math.unit(300, "lb"),
  15634. name: "Front",
  15635. image: {
  15636. source: "./media/characters/duncan/front.svg",
  15637. extra: 1650 / 1482,
  15638. bottom: 0.05
  15639. }
  15640. },
  15641. },
  15642. [
  15643. {
  15644. name: "Macro",
  15645. height: math.unit(100, "feet"),
  15646. default: true
  15647. },
  15648. ]
  15649. ))
  15650. characterMakers.push(() => makeCharacter(
  15651. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15652. {
  15653. front: {
  15654. height: math.unit(5 + 4 / 12, "feet"),
  15655. weight: math.unit(220, "lb"),
  15656. name: "Front",
  15657. image: {
  15658. source: "./media/characters/memory/front.svg",
  15659. extra: 3641 / 3545,
  15660. bottom: 0.03
  15661. }
  15662. },
  15663. back: {
  15664. height: math.unit(5 + 4 / 12, "feet"),
  15665. weight: math.unit(220, "lb"),
  15666. name: "Back",
  15667. image: {
  15668. source: "./media/characters/memory/back.svg",
  15669. extra: 3641 / 3545,
  15670. bottom: 0.025
  15671. }
  15672. },
  15673. frontSkirt: {
  15674. height: math.unit(5 + 4 / 12, "feet"),
  15675. weight: math.unit(220, "lb"),
  15676. name: "Front (Skirt)",
  15677. image: {
  15678. source: "./media/characters/memory/front-skirt.svg",
  15679. extra: 3641 / 3545,
  15680. bottom: 0.03
  15681. }
  15682. },
  15683. frontDress: {
  15684. height: math.unit(5 + 4 / 12, "feet"),
  15685. weight: math.unit(220, "lb"),
  15686. name: "Front (Dress)",
  15687. image: {
  15688. source: "./media/characters/memory/front-dress.svg",
  15689. extra: 3641 / 3545,
  15690. bottom: 0.03
  15691. }
  15692. },
  15693. },
  15694. [
  15695. {
  15696. name: "Micro",
  15697. height: math.unit(6, "inches"),
  15698. default: true
  15699. },
  15700. {
  15701. name: "Normal",
  15702. height: math.unit(5 + 4 / 12, "feet")
  15703. },
  15704. ]
  15705. ))
  15706. characterMakers.push(() => makeCharacter(
  15707. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15708. {
  15709. front: {
  15710. height: math.unit(4 + 11 / 12, "feet"),
  15711. weight: math.unit(100, "lb"),
  15712. name: "Front",
  15713. image: {
  15714. source: "./media/characters/luno/front.svg",
  15715. extra: 1535 / 1487,
  15716. bottom: 0.03
  15717. }
  15718. },
  15719. },
  15720. [
  15721. {
  15722. name: "Micro",
  15723. height: math.unit(3, "inches")
  15724. },
  15725. {
  15726. name: "Normal",
  15727. height: math.unit(4 + 11 / 12, "feet"),
  15728. default: true
  15729. },
  15730. {
  15731. name: "Macro",
  15732. height: math.unit(300, "feet")
  15733. },
  15734. {
  15735. name: "Megamacro",
  15736. height: math.unit(700, "miles")
  15737. },
  15738. ]
  15739. ))
  15740. characterMakers.push(() => makeCharacter(
  15741. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15742. {
  15743. front: {
  15744. height: math.unit(6 + 2 / 12, "feet"),
  15745. weight: math.unit(170, "lb"),
  15746. name: "Front",
  15747. image: {
  15748. source: "./media/characters/jamesy/front.svg",
  15749. extra: 440 / 382,
  15750. bottom: 0.005
  15751. }
  15752. },
  15753. },
  15754. [
  15755. {
  15756. name: "Micro",
  15757. height: math.unit(3, "inches")
  15758. },
  15759. {
  15760. name: "Normal",
  15761. height: math.unit(6 + 2 / 12, "feet"),
  15762. default: true
  15763. },
  15764. {
  15765. name: "Macro",
  15766. height: math.unit(300, "feet")
  15767. },
  15768. {
  15769. name: "Megamacro",
  15770. height: math.unit(700, "miles")
  15771. },
  15772. ]
  15773. ))
  15774. characterMakers.push(() => makeCharacter(
  15775. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15776. {
  15777. front: {
  15778. height: math.unit(6, "feet"),
  15779. weight: math.unit(160, "lb"),
  15780. name: "Front",
  15781. image: {
  15782. source: "./media/characters/mark/front.svg",
  15783. extra: 3300 / 3100,
  15784. bottom: 136.42 / 3440.47
  15785. }
  15786. },
  15787. },
  15788. [
  15789. {
  15790. name: "Macro",
  15791. height: math.unit(120, "meters")
  15792. },
  15793. {
  15794. name: "Bigger Macro",
  15795. height: math.unit(350, "meters")
  15796. },
  15797. {
  15798. name: "Megamacro",
  15799. height: math.unit(8, "km"),
  15800. default: true
  15801. },
  15802. {
  15803. name: "Continental",
  15804. height: math.unit(4550, "km")
  15805. },
  15806. {
  15807. name: "Planetary",
  15808. height: math.unit(65000, "km")
  15809. },
  15810. ]
  15811. ))
  15812. characterMakers.push(() => makeCharacter(
  15813. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15814. {
  15815. front: {
  15816. height: math.unit(6, "feet"),
  15817. weight: math.unit(400, "lb"),
  15818. name: "Front",
  15819. image: {
  15820. source: "./media/characters/mac/front.svg",
  15821. extra: 1048 / 987.7,
  15822. bottom: 60 / 1107.6,
  15823. }
  15824. },
  15825. },
  15826. [
  15827. {
  15828. name: "Macro",
  15829. height: math.unit(500, "feet"),
  15830. default: true
  15831. },
  15832. ]
  15833. ))
  15834. characterMakers.push(() => makeCharacter(
  15835. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15836. {
  15837. front: {
  15838. height: math.unit(5 + 2 / 12, "feet"),
  15839. weight: math.unit(190, "lb"),
  15840. name: "Front",
  15841. image: {
  15842. source: "./media/characters/bari/front.svg",
  15843. extra: 3156 / 2880,
  15844. bottom: 0.03
  15845. }
  15846. },
  15847. back: {
  15848. height: math.unit(5 + 2 / 12, "feet"),
  15849. weight: math.unit(190, "lb"),
  15850. name: "Back",
  15851. image: {
  15852. source: "./media/characters/bari/back.svg",
  15853. extra: 3260 / 2834,
  15854. bottom: 0.025
  15855. }
  15856. },
  15857. frontPlush: {
  15858. height: math.unit(5 + 2 / 12, "feet"),
  15859. weight: math.unit(190, "lb"),
  15860. name: "Front (Plush)",
  15861. image: {
  15862. source: "./media/characters/bari/front-plush.svg",
  15863. extra: 1112 / 1061,
  15864. bottom: 0.002
  15865. }
  15866. },
  15867. },
  15868. [
  15869. {
  15870. name: "Micro",
  15871. height: math.unit(3, "inches")
  15872. },
  15873. {
  15874. name: "Normal",
  15875. height: math.unit(5 + 2 / 12, "feet"),
  15876. default: true
  15877. },
  15878. {
  15879. name: "Macro",
  15880. height: math.unit(20, "feet")
  15881. },
  15882. ]
  15883. ))
  15884. characterMakers.push(() => makeCharacter(
  15885. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15886. {
  15887. front: {
  15888. height: math.unit(6 + 1 / 12, "feet"),
  15889. weight: math.unit(275, "lb"),
  15890. name: "Front",
  15891. image: {
  15892. source: "./media/characters/hunter-misha-raven/front.svg"
  15893. }
  15894. },
  15895. },
  15896. [
  15897. {
  15898. name: "Mortal",
  15899. height: math.unit(6 + 1 / 12, "feet")
  15900. },
  15901. {
  15902. name: "Divine",
  15903. height: math.unit(1.12134e34, "parsecs"),
  15904. default: true
  15905. },
  15906. ]
  15907. ))
  15908. characterMakers.push(() => makeCharacter(
  15909. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15910. {
  15911. front: {
  15912. height: math.unit(6 + 3 / 12, "feet"),
  15913. weight: math.unit(220, "lb"),
  15914. name: "Front",
  15915. image: {
  15916. source: "./media/characters/max-calore/front.svg",
  15917. extra: 1700 / 1648,
  15918. bottom: 0.01
  15919. }
  15920. },
  15921. back: {
  15922. height: math.unit(6 + 3 / 12, "feet"),
  15923. weight: math.unit(220, "lb"),
  15924. name: "Back",
  15925. image: {
  15926. source: "./media/characters/max-calore/back.svg",
  15927. extra: 1700 / 1648,
  15928. bottom: 0.01
  15929. }
  15930. },
  15931. },
  15932. [
  15933. {
  15934. name: "Normal",
  15935. height: math.unit(6 + 3 / 12, "feet"),
  15936. default: true
  15937. },
  15938. ]
  15939. ))
  15940. characterMakers.push(() => makeCharacter(
  15941. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15942. {
  15943. side: {
  15944. height: math.unit(2 + 8 / 12, "feet"),
  15945. weight: math.unit(99, "lb"),
  15946. name: "Side",
  15947. image: {
  15948. source: "./media/characters/aspen/side.svg",
  15949. extra: 152 / 138,
  15950. bottom: 0.032
  15951. }
  15952. },
  15953. },
  15954. [
  15955. {
  15956. name: "Normal",
  15957. height: math.unit(2 + 8 / 12, "feet"),
  15958. default: true
  15959. },
  15960. ]
  15961. ))
  15962. characterMakers.push(() => makeCharacter(
  15963. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15964. {
  15965. side: {
  15966. height: math.unit(3 + 2 / 12, "feet"),
  15967. weight: math.unit(224, "lb"),
  15968. name: "Side",
  15969. image: {
  15970. source: "./media/characters/sheila-feral-wolf/side.svg",
  15971. extra: 179 / 166,
  15972. bottom: 0.03
  15973. }
  15974. },
  15975. },
  15976. [
  15977. {
  15978. name: "Normal",
  15979. height: math.unit(3 + 2 / 12, "feet"),
  15980. default: true
  15981. },
  15982. ]
  15983. ))
  15984. characterMakers.push(() => makeCharacter(
  15985. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15986. {
  15987. side: {
  15988. height: math.unit(1 + 9 / 12, "feet"),
  15989. weight: math.unit(38, "lb"),
  15990. name: "Side",
  15991. image: {
  15992. source: "./media/characters/michelle/side.svg",
  15993. extra: 147 / 136.7,
  15994. bottom: 0.03
  15995. }
  15996. },
  15997. },
  15998. [
  15999. {
  16000. name: "Normal",
  16001. height: math.unit(1 + 9 / 12, "feet"),
  16002. default: true
  16003. },
  16004. ]
  16005. ))
  16006. characterMakers.push(() => makeCharacter(
  16007. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16008. {
  16009. front: {
  16010. height: math.unit(1 + 1 / 12, "feet"),
  16011. weight: math.unit(18, "lb"),
  16012. name: "Front",
  16013. image: {
  16014. source: "./media/characters/nino/front.svg"
  16015. }
  16016. },
  16017. },
  16018. [
  16019. {
  16020. name: "Normal",
  16021. height: math.unit(1 + 1 / 12, "feet"),
  16022. default: true
  16023. },
  16024. ]
  16025. ))
  16026. characterMakers.push(() => makeCharacter(
  16027. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16028. {
  16029. front: {
  16030. height: math.unit(1, "feet"),
  16031. weight: math.unit(16, "lb"),
  16032. name: "Front",
  16033. image: {
  16034. source: "./media/characters/viola/front.svg"
  16035. }
  16036. },
  16037. },
  16038. [
  16039. {
  16040. name: "Normal",
  16041. height: math.unit(1, "feet"),
  16042. default: true
  16043. },
  16044. ]
  16045. ))
  16046. characterMakers.push(() => makeCharacter(
  16047. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16048. {
  16049. front: {
  16050. height: math.unit(6 + 5 / 12, "feet"),
  16051. weight: math.unit(580, "lb"),
  16052. name: "Front",
  16053. image: {
  16054. source: "./media/characters/atlas/front.svg",
  16055. extra: 298.5 / 290,
  16056. bottom: 0.015
  16057. }
  16058. },
  16059. },
  16060. [
  16061. {
  16062. name: "Normal",
  16063. height: math.unit(6 + 5 / 12, "feet"),
  16064. default: true
  16065. },
  16066. ]
  16067. ))
  16068. characterMakers.push(() => makeCharacter(
  16069. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16070. {
  16071. side: {
  16072. height: math.unit(1 + 10 / 12, "feet"),
  16073. weight: math.unit(25, "lb"),
  16074. name: "Side",
  16075. image: {
  16076. source: "./media/characters/davy/side.svg",
  16077. extra: 200 / 170,
  16078. bottom: 0.01
  16079. }
  16080. },
  16081. },
  16082. [
  16083. {
  16084. name: "Normal",
  16085. height: math.unit(1 + 10 / 12, "feet"),
  16086. default: true
  16087. },
  16088. ]
  16089. ))
  16090. characterMakers.push(() => makeCharacter(
  16091. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16092. {
  16093. side: {
  16094. height: math.unit(4 + 8 / 12, "feet"),
  16095. weight: math.unit(166, "lb"),
  16096. name: "Side",
  16097. image: {
  16098. source: "./media/characters/fiona/side.svg",
  16099. extra: 232 / 220,
  16100. bottom: 0.03
  16101. }
  16102. },
  16103. },
  16104. [
  16105. {
  16106. name: "Normal",
  16107. height: math.unit(4 + 8 / 12, "feet"),
  16108. default: true
  16109. },
  16110. ]
  16111. ))
  16112. characterMakers.push(() => makeCharacter(
  16113. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16114. {
  16115. front: {
  16116. height: math.unit(2, "feet"),
  16117. weight: math.unit(62, "lb"),
  16118. name: "Front",
  16119. image: {
  16120. source: "./media/characters/lyla/front.svg",
  16121. bottom: 0.1
  16122. }
  16123. },
  16124. },
  16125. [
  16126. {
  16127. name: "Normal",
  16128. height: math.unit(2, "feet"),
  16129. default: true
  16130. },
  16131. ]
  16132. ))
  16133. characterMakers.push(() => makeCharacter(
  16134. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16135. {
  16136. side: {
  16137. height: math.unit(1.8, "feet"),
  16138. weight: math.unit(44, "lb"),
  16139. name: "Side",
  16140. image: {
  16141. source: "./media/characters/perseus/side.svg",
  16142. bottom: 0.21
  16143. }
  16144. },
  16145. },
  16146. [
  16147. {
  16148. name: "Normal",
  16149. height: math.unit(1.8, "feet"),
  16150. default: true
  16151. },
  16152. ]
  16153. ))
  16154. characterMakers.push(() => makeCharacter(
  16155. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16156. {
  16157. side: {
  16158. height: math.unit(4 + 2 / 12, "feet"),
  16159. weight: math.unit(20, "lb"),
  16160. name: "Side",
  16161. image: {
  16162. source: "./media/characters/remus/side.svg"
  16163. }
  16164. },
  16165. },
  16166. [
  16167. {
  16168. name: "Normal",
  16169. height: math.unit(4 + 2 / 12, "feet"),
  16170. default: true
  16171. },
  16172. ]
  16173. ))
  16174. characterMakers.push(() => makeCharacter(
  16175. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16176. {
  16177. front: {
  16178. height: math.unit(4 + 11 / 12, "feet"),
  16179. weight: math.unit(114, "lb"),
  16180. name: "Front",
  16181. image: {
  16182. source: "./media/characters/raf/front.svg",
  16183. bottom: 20.5/1863
  16184. }
  16185. },
  16186. side: {
  16187. height: math.unit(4 + 11 / 12, "feet"),
  16188. weight: math.unit(114, "lb"),
  16189. name: "Side",
  16190. image: {
  16191. source: "./media/characters/raf/side.svg",
  16192. bottom: 22/1822
  16193. }
  16194. },
  16195. },
  16196. [
  16197. {
  16198. name: "Micro",
  16199. height: math.unit(2, "inches")
  16200. },
  16201. {
  16202. name: "Normal",
  16203. height: math.unit(4 + 11 / 12, "feet"),
  16204. default: true
  16205. },
  16206. {
  16207. name: "Macro",
  16208. height: math.unit(70, "feet")
  16209. },
  16210. ]
  16211. ))
  16212. characterMakers.push(() => makeCharacter(
  16213. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16214. {
  16215. front: {
  16216. height: math.unit(1.5, "meters"),
  16217. weight: math.unit(68, "kg"),
  16218. name: "Front",
  16219. image: {
  16220. source: "./media/characters/liam-einarr/front.svg",
  16221. extra: 2822 / 2666
  16222. }
  16223. },
  16224. back: {
  16225. height: math.unit(1.5, "meters"),
  16226. weight: math.unit(68, "kg"),
  16227. name: "Back",
  16228. image: {
  16229. source: "./media/characters/liam-einarr/back.svg",
  16230. extra: 2822 / 2666,
  16231. bottom: 0.015
  16232. }
  16233. },
  16234. },
  16235. [
  16236. {
  16237. name: "Normal",
  16238. height: math.unit(1.5, "meters"),
  16239. default: true
  16240. },
  16241. {
  16242. name: "Macro",
  16243. height: math.unit(150, "meters")
  16244. },
  16245. {
  16246. name: "Megamacro",
  16247. height: math.unit(35, "km")
  16248. },
  16249. ]
  16250. ))
  16251. characterMakers.push(() => makeCharacter(
  16252. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16253. {
  16254. front: {
  16255. height: math.unit(6, "feet"),
  16256. weight: math.unit(75, "kg"),
  16257. name: "Front",
  16258. image: {
  16259. source: "./media/characters/linda/front.svg",
  16260. extra: 930 / 874,
  16261. bottom: 0.004
  16262. }
  16263. },
  16264. },
  16265. [
  16266. {
  16267. name: "Normal",
  16268. height: math.unit(6, "feet"),
  16269. default: true
  16270. },
  16271. ]
  16272. ))
  16273. characterMakers.push(() => makeCharacter(
  16274. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16275. {
  16276. front: {
  16277. height: math.unit(6 + 8 / 12, "feet"),
  16278. weight: math.unit(220, "lb"),
  16279. name: "Front",
  16280. image: {
  16281. source: "./media/characters/caylex/front.svg",
  16282. extra: 821 / 772,
  16283. bottom: 0.07
  16284. }
  16285. },
  16286. back: {
  16287. height: math.unit(6 + 8 / 12, "feet"),
  16288. weight: math.unit(220, "lb"),
  16289. name: "Back",
  16290. image: {
  16291. source: "./media/characters/caylex/back.svg",
  16292. extra: 821 / 772,
  16293. bottom: 0.022
  16294. }
  16295. },
  16296. hand: {
  16297. height: math.unit(1.25, "feet"),
  16298. name: "Hand",
  16299. image: {
  16300. source: "./media/characters/caylex/hand.svg"
  16301. }
  16302. },
  16303. foot: {
  16304. height: math.unit(1.6, "feet"),
  16305. name: "Foot",
  16306. image: {
  16307. source: "./media/characters/caylex/foot.svg"
  16308. }
  16309. },
  16310. armored: {
  16311. height: math.unit(6 + 8 / 12, "feet"),
  16312. weight: math.unit(250, "lb"),
  16313. name: "Armored",
  16314. image: {
  16315. source: "./media/characters/caylex/armored.svg",
  16316. extra: 1420 / 1310,
  16317. bottom: 0.045
  16318. }
  16319. },
  16320. },
  16321. [
  16322. {
  16323. name: "Normal",
  16324. height: math.unit(6 + 8 / 12, "feet"),
  16325. default: true
  16326. },
  16327. {
  16328. name: "Normal+",
  16329. height: math.unit(12, "feet")
  16330. },
  16331. ]
  16332. ))
  16333. characterMakers.push(() => makeCharacter(
  16334. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16335. {
  16336. front: {
  16337. height: math.unit(7 + 6 / 12, "feet"),
  16338. weight: math.unit(288, "lb"),
  16339. name: "Front",
  16340. image: {
  16341. source: "./media/characters/alana/front.svg",
  16342. extra: 679 / 653,
  16343. bottom: 22.5 / 701
  16344. }
  16345. },
  16346. },
  16347. [
  16348. {
  16349. name: "Normal",
  16350. height: math.unit(7 + 6 / 12, "feet")
  16351. },
  16352. {
  16353. name: "Large",
  16354. height: math.unit(50, "feet")
  16355. },
  16356. {
  16357. name: "Macro",
  16358. height: math.unit(100, "feet"),
  16359. default: true
  16360. },
  16361. {
  16362. name: "Macro+",
  16363. height: math.unit(200, "feet")
  16364. },
  16365. ]
  16366. ))
  16367. characterMakers.push(() => makeCharacter(
  16368. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16369. {
  16370. front: {
  16371. height: math.unit(6 + 1 / 12, "feet"),
  16372. weight: math.unit(210, "lb"),
  16373. name: "Front",
  16374. image: {
  16375. source: "./media/characters/hasani/front.svg",
  16376. extra: 244 / 232,
  16377. bottom: 0.01
  16378. }
  16379. },
  16380. back: {
  16381. height: math.unit(6 + 1 / 12, "feet"),
  16382. weight: math.unit(210, "lb"),
  16383. name: "Back",
  16384. image: {
  16385. source: "./media/characters/hasani/back.svg",
  16386. extra: 244 / 232,
  16387. bottom: 0.01
  16388. }
  16389. },
  16390. },
  16391. [
  16392. {
  16393. name: "Normal",
  16394. height: math.unit(6 + 1 / 12, "feet")
  16395. },
  16396. {
  16397. name: "Macro",
  16398. height: math.unit(175, "feet"),
  16399. default: true
  16400. },
  16401. ]
  16402. ))
  16403. characterMakers.push(() => makeCharacter(
  16404. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16405. {
  16406. front: {
  16407. height: math.unit(1.82, "meters"),
  16408. weight: math.unit(140, "lb"),
  16409. name: "Front",
  16410. image: {
  16411. source: "./media/characters/nita/front.svg",
  16412. extra: 2473 / 2363,
  16413. bottom: 0.01
  16414. }
  16415. },
  16416. },
  16417. [
  16418. {
  16419. name: "Normal",
  16420. height: math.unit(1.82, "m")
  16421. },
  16422. {
  16423. name: "Macro",
  16424. height: math.unit(300, "m")
  16425. },
  16426. {
  16427. name: "Mistake Canon",
  16428. height: math.unit(0.5, "miles"),
  16429. default: true
  16430. },
  16431. {
  16432. name: "Big Mistake",
  16433. height: math.unit(13, "miles")
  16434. },
  16435. {
  16436. name: "Playing God",
  16437. height: math.unit(2450, "miles")
  16438. },
  16439. ]
  16440. ))
  16441. characterMakers.push(() => makeCharacter(
  16442. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16443. {
  16444. front: {
  16445. height: math.unit(4, "feet"),
  16446. weight: math.unit(120, "lb"),
  16447. name: "Front",
  16448. image: {
  16449. source: "./media/characters/shiriko/front.svg",
  16450. extra: 195 / 188
  16451. }
  16452. },
  16453. },
  16454. [
  16455. {
  16456. name: "Normal",
  16457. height: math.unit(4, "feet"),
  16458. default: true
  16459. },
  16460. ]
  16461. ))
  16462. characterMakers.push(() => makeCharacter(
  16463. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16464. {
  16465. front: {
  16466. height: math.unit(6, "feet"),
  16467. name: "front",
  16468. image: {
  16469. source: "./media/characters/deja/front.svg",
  16470. extra: 926 / 840,
  16471. bottom: 0.07
  16472. }
  16473. },
  16474. },
  16475. [
  16476. {
  16477. name: "Planck Length",
  16478. height: math.unit(1.6e-35, "meters")
  16479. },
  16480. {
  16481. name: "Normal",
  16482. height: math.unit(30.48, "meters"),
  16483. default: true
  16484. },
  16485. {
  16486. name: "Universal",
  16487. height: math.unit(8.8e26, "meters")
  16488. },
  16489. ]
  16490. ))
  16491. characterMakers.push(() => makeCharacter(
  16492. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16493. {
  16494. side: {
  16495. height: math.unit(8, "feet"),
  16496. weight: math.unit(6300, "lb"),
  16497. name: "Side",
  16498. image: {
  16499. source: "./media/characters/anima/side.svg",
  16500. bottom: 0.035
  16501. }
  16502. },
  16503. },
  16504. [
  16505. {
  16506. name: "Normal",
  16507. height: math.unit(8, "feet"),
  16508. default: true
  16509. },
  16510. ]
  16511. ))
  16512. characterMakers.push(() => makeCharacter(
  16513. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16514. {
  16515. front: {
  16516. height: math.unit(8, "feet"),
  16517. weight: math.unit(350, "lb"),
  16518. name: "Front",
  16519. image: {
  16520. source: "./media/characters/bianca/front.svg",
  16521. extra: 234 / 225,
  16522. bottom: 0.03
  16523. }
  16524. },
  16525. },
  16526. [
  16527. {
  16528. name: "Normal",
  16529. height: math.unit(8, "feet"),
  16530. default: true
  16531. },
  16532. ]
  16533. ))
  16534. characterMakers.push(() => makeCharacter(
  16535. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16536. {
  16537. front: {
  16538. height: math.unit(6, "feet"),
  16539. weight: math.unit(150, "lb"),
  16540. name: "Front",
  16541. image: {
  16542. source: "./media/characters/adinia/front.svg",
  16543. extra: 1845 / 1672,
  16544. bottom: 0.02
  16545. }
  16546. },
  16547. back: {
  16548. height: math.unit(6, "feet"),
  16549. weight: math.unit(150, "lb"),
  16550. name: "Back",
  16551. image: {
  16552. source: "./media/characters/adinia/back.svg",
  16553. extra: 1845 / 1672,
  16554. bottom: 0.002
  16555. }
  16556. },
  16557. },
  16558. [
  16559. {
  16560. name: "Normal",
  16561. height: math.unit(11 + 5 / 12, "feet"),
  16562. default: true
  16563. },
  16564. ]
  16565. ))
  16566. characterMakers.push(() => makeCharacter(
  16567. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16568. {
  16569. front: {
  16570. height: math.unit(3, "meters"),
  16571. weight: math.unit(200, "kg"),
  16572. name: "Front",
  16573. image: {
  16574. source: "./media/characters/lykasa/front.svg",
  16575. extra: 1076 / 976,
  16576. bottom: 0.06
  16577. }
  16578. },
  16579. },
  16580. [
  16581. {
  16582. name: "Normal",
  16583. height: math.unit(3, "meters")
  16584. },
  16585. {
  16586. name: "Kaiju",
  16587. height: math.unit(120, "meters"),
  16588. default: true
  16589. },
  16590. {
  16591. name: "Mega Kaiju",
  16592. height: math.unit(240, "km")
  16593. },
  16594. {
  16595. name: "Giga Kaiju",
  16596. height: math.unit(400, "megameters")
  16597. },
  16598. {
  16599. name: "Tera Kaiju",
  16600. height: math.unit(800, "gigameters")
  16601. },
  16602. {
  16603. name: "Kaiju Dragon Goddess",
  16604. height: math.unit(26, "zettaparsecs")
  16605. },
  16606. ]
  16607. ))
  16608. characterMakers.push(() => makeCharacter(
  16609. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16610. {
  16611. side: {
  16612. height: math.unit(283 / 124 * 6, "feet"),
  16613. weight: math.unit(35000, "lb"),
  16614. name: "Side",
  16615. image: {
  16616. source: "./media/characters/malfaren/side.svg",
  16617. extra: 2500 / 1010,
  16618. bottom: 0.01
  16619. }
  16620. },
  16621. front: {
  16622. height: math.unit(22.36, "feet"),
  16623. weight: math.unit(35000, "lb"),
  16624. name: "Front",
  16625. image: {
  16626. source: "./media/characters/malfaren/front.svg",
  16627. extra: 1631 / 1476,
  16628. bottom: 0.01
  16629. }
  16630. },
  16631. maw: {
  16632. height: math.unit(6.9, "feet"),
  16633. name: "Maw",
  16634. image: {
  16635. source: "./media/characters/malfaren/maw.svg"
  16636. }
  16637. },
  16638. },
  16639. [
  16640. {
  16641. name: "Big",
  16642. height: math.unit(283 / 162 * 6, "feet"),
  16643. },
  16644. {
  16645. name: "Bigger",
  16646. height: math.unit(283 / 124 * 6, "feet")
  16647. },
  16648. {
  16649. name: "Massive",
  16650. height: math.unit(283 / 92 * 6, "feet"),
  16651. default: true
  16652. },
  16653. {
  16654. name: "👀💦",
  16655. height: math.unit(283 / 73 * 6, "feet"),
  16656. },
  16657. ]
  16658. ))
  16659. characterMakers.push(() => makeCharacter(
  16660. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16661. {
  16662. front: {
  16663. height: math.unit(1.7, "m"),
  16664. weight: math.unit(70, "kg"),
  16665. name: "Front",
  16666. image: {
  16667. source: "./media/characters/kernel/front.svg",
  16668. extra: 222 / 210,
  16669. bottom: 0.007
  16670. }
  16671. },
  16672. },
  16673. [
  16674. {
  16675. name: "Nano",
  16676. height: math.unit(17, "micrometers")
  16677. },
  16678. {
  16679. name: "Micro",
  16680. height: math.unit(1.7, "mm")
  16681. },
  16682. {
  16683. name: "Small",
  16684. height: math.unit(1.7, "cm")
  16685. },
  16686. {
  16687. name: "Normal",
  16688. height: math.unit(1.7, "m"),
  16689. default: true
  16690. },
  16691. ]
  16692. ))
  16693. characterMakers.push(() => makeCharacter(
  16694. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16695. {
  16696. front: {
  16697. height: math.unit(1.75, "meters"),
  16698. weight: math.unit(65, "kg"),
  16699. name: "Front",
  16700. image: {
  16701. source: "./media/characters/jayne-folest/front.svg",
  16702. extra: 2115 / 2007,
  16703. bottom: 0.02
  16704. }
  16705. },
  16706. back: {
  16707. height: math.unit(1.75, "meters"),
  16708. weight: math.unit(65, "kg"),
  16709. name: "Back",
  16710. image: {
  16711. source: "./media/characters/jayne-folest/back.svg",
  16712. extra: 2115 / 2007,
  16713. bottom: 0.005
  16714. }
  16715. },
  16716. frontClothed: {
  16717. height: math.unit(1.75, "meters"),
  16718. weight: math.unit(65, "kg"),
  16719. name: "Front (Clothed)",
  16720. image: {
  16721. source: "./media/characters/jayne-folest/front-clothed.svg",
  16722. extra: 2115 / 2007,
  16723. bottom: 0.035
  16724. }
  16725. },
  16726. hand: {
  16727. height: math.unit(1 / 1.260, "feet"),
  16728. name: "Hand",
  16729. image: {
  16730. source: "./media/characters/jayne-folest/hand.svg"
  16731. }
  16732. },
  16733. foot: {
  16734. height: math.unit(1 / 0.918, "feet"),
  16735. name: "Foot",
  16736. image: {
  16737. source: "./media/characters/jayne-folest/foot.svg"
  16738. }
  16739. },
  16740. },
  16741. [
  16742. {
  16743. name: "Micro",
  16744. height: math.unit(4, "cm")
  16745. },
  16746. {
  16747. name: "Normal",
  16748. height: math.unit(1.75, "meters")
  16749. },
  16750. {
  16751. name: "Macro",
  16752. height: math.unit(47.5, "meters"),
  16753. default: true
  16754. },
  16755. ]
  16756. ))
  16757. characterMakers.push(() => makeCharacter(
  16758. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16759. {
  16760. front: {
  16761. height: math.unit(180, "cm"),
  16762. weight: math.unit(70, "kg"),
  16763. name: "Front",
  16764. image: {
  16765. source: "./media/characters/algier/front.svg",
  16766. extra: 596 / 572,
  16767. bottom: 0.04
  16768. }
  16769. },
  16770. back: {
  16771. height: math.unit(180, "cm"),
  16772. weight: math.unit(70, "kg"),
  16773. name: "Back",
  16774. image: {
  16775. source: "./media/characters/algier/back.svg",
  16776. extra: 596 / 572,
  16777. bottom: 0.025
  16778. }
  16779. },
  16780. frontdressed: {
  16781. height: math.unit(180, "cm"),
  16782. weight: math.unit(150, "kg"),
  16783. name: "Front-dressed",
  16784. image: {
  16785. source: "./media/characters/algier/front-dressed.svg",
  16786. extra: 596 / 572,
  16787. bottom: 0.038
  16788. }
  16789. },
  16790. },
  16791. [
  16792. {
  16793. name: "Micro",
  16794. height: math.unit(5, "cm")
  16795. },
  16796. {
  16797. name: "Normal",
  16798. height: math.unit(180, "cm"),
  16799. default: true
  16800. },
  16801. {
  16802. name: "Macro",
  16803. height: math.unit(64, "m")
  16804. },
  16805. ]
  16806. ))
  16807. characterMakers.push(() => makeCharacter(
  16808. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16809. {
  16810. upright: {
  16811. height: math.unit(7, "feet"),
  16812. weight: math.unit(300, "lb"),
  16813. name: "Upright",
  16814. image: {
  16815. source: "./media/characters/pretzel/upright.svg",
  16816. extra: 534 / 522,
  16817. bottom: 0.065
  16818. }
  16819. },
  16820. sprawling: {
  16821. height: math.unit(3.75, "feet"),
  16822. weight: math.unit(300, "lb"),
  16823. name: "Sprawling",
  16824. image: {
  16825. source: "./media/characters/pretzel/sprawling.svg",
  16826. extra: 314 / 281,
  16827. bottom: 0.1
  16828. }
  16829. },
  16830. tongue: {
  16831. height: math.unit(2, "feet"),
  16832. name: "Tongue",
  16833. image: {
  16834. source: "./media/characters/pretzel/tongue.svg"
  16835. }
  16836. },
  16837. },
  16838. [
  16839. {
  16840. name: "Normal",
  16841. height: math.unit(7, "feet"),
  16842. default: true
  16843. },
  16844. {
  16845. name: "Oversized",
  16846. height: math.unit(15, "feet")
  16847. },
  16848. {
  16849. name: "Huge",
  16850. height: math.unit(30, "feet")
  16851. },
  16852. {
  16853. name: "Macro",
  16854. height: math.unit(250, "feet")
  16855. },
  16856. ]
  16857. ))
  16858. characterMakers.push(() => makeCharacter(
  16859. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16860. {
  16861. sideFront: {
  16862. height: math.unit(5 + 2 / 12, "feet"),
  16863. weight: math.unit(120, "lb"),
  16864. name: "Front Side",
  16865. image: {
  16866. source: "./media/characters/roxi/side-front.svg",
  16867. extra: 2924 / 2717,
  16868. bottom: 0.08
  16869. }
  16870. },
  16871. sideBack: {
  16872. height: math.unit(5 + 2 / 12, "feet"),
  16873. weight: math.unit(120, "lb"),
  16874. name: "Back Side",
  16875. image: {
  16876. source: "./media/characters/roxi/side-back.svg",
  16877. extra: 2904 / 2693,
  16878. bottom: 0.06
  16879. }
  16880. },
  16881. front: {
  16882. height: math.unit(5 + 2 / 12, "feet"),
  16883. weight: math.unit(120, "lb"),
  16884. name: "Front",
  16885. image: {
  16886. source: "./media/characters/roxi/front.svg",
  16887. extra: 2028 / 1907,
  16888. bottom: 0.01
  16889. }
  16890. },
  16891. frontAlt: {
  16892. height: math.unit(5 + 2 / 12, "feet"),
  16893. weight: math.unit(120, "lb"),
  16894. name: "Front (Alt)",
  16895. image: {
  16896. source: "./media/characters/roxi/front-alt.svg",
  16897. extra: 1828 / 1798,
  16898. bottom: 0.01
  16899. }
  16900. },
  16901. sitting: {
  16902. height: math.unit(2.8, "feet"),
  16903. weight: math.unit(120, "lb"),
  16904. name: "Sitting",
  16905. image: {
  16906. source: "./media/characters/roxi/sitting.svg",
  16907. extra: 2660 / 2462,
  16908. bottom: 0.1
  16909. }
  16910. },
  16911. },
  16912. [
  16913. {
  16914. name: "Normal",
  16915. height: math.unit(5 + 2 / 12, "feet"),
  16916. default: true
  16917. },
  16918. ]
  16919. ))
  16920. characterMakers.push(() => makeCharacter(
  16921. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16922. {
  16923. side: {
  16924. height: math.unit(55, "feet"),
  16925. weight: math.unit(153, "tons"),
  16926. name: "Side",
  16927. image: {
  16928. source: "./media/characters/shadow/side.svg",
  16929. extra: 701 / 628,
  16930. bottom: 0.02
  16931. }
  16932. },
  16933. flying: {
  16934. height: math.unit(145, "feet"),
  16935. weight: math.unit(153, "tons"),
  16936. name: "Flying",
  16937. image: {
  16938. source: "./media/characters/shadow/flying.svg"
  16939. }
  16940. },
  16941. },
  16942. [
  16943. {
  16944. name: "Normal",
  16945. height: math.unit(55, "feet"),
  16946. default: true
  16947. },
  16948. ]
  16949. ))
  16950. characterMakers.push(() => makeCharacter(
  16951. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16952. {
  16953. front: {
  16954. height: math.unit(6, "feet"),
  16955. weight: math.unit(200, "lb"),
  16956. name: "Front",
  16957. image: {
  16958. source: "./media/characters/marcie/front.svg",
  16959. extra: 960 / 876,
  16960. bottom: 58 / 1017.87
  16961. }
  16962. },
  16963. },
  16964. [
  16965. {
  16966. name: "Macro",
  16967. height: math.unit(1, "mile"),
  16968. default: true
  16969. },
  16970. ]
  16971. ))
  16972. characterMakers.push(() => makeCharacter(
  16973. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16974. {
  16975. front: {
  16976. height: math.unit(7, "feet"),
  16977. weight: math.unit(200, "lb"),
  16978. name: "Front",
  16979. image: {
  16980. source: "./media/characters/kachina/front.svg",
  16981. extra: 1290.68 / 1119,
  16982. bottom: 36.5 / 1327.18
  16983. }
  16984. },
  16985. },
  16986. [
  16987. {
  16988. name: "Normal",
  16989. height: math.unit(7, "feet"),
  16990. default: true
  16991. },
  16992. ]
  16993. ))
  16994. characterMakers.push(() => makeCharacter(
  16995. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16996. {
  16997. looking: {
  16998. height: math.unit(2, "meters"),
  16999. weight: math.unit(300, "kg"),
  17000. name: "Looking",
  17001. image: {
  17002. source: "./media/characters/kash/looking.svg",
  17003. extra: 474 / 344,
  17004. bottom: 0.03
  17005. }
  17006. },
  17007. side: {
  17008. height: math.unit(2, "meters"),
  17009. weight: math.unit(300, "kg"),
  17010. name: "Side",
  17011. image: {
  17012. source: "./media/characters/kash/side.svg",
  17013. extra: 302 / 251,
  17014. bottom: 0.03
  17015. }
  17016. },
  17017. front: {
  17018. height: math.unit(2, "meters"),
  17019. weight: math.unit(300, "kg"),
  17020. name: "Front",
  17021. image: {
  17022. source: "./media/characters/kash/front.svg",
  17023. extra: 495 / 360,
  17024. bottom: 0.015
  17025. }
  17026. },
  17027. },
  17028. [
  17029. {
  17030. name: "Normal",
  17031. height: math.unit(2, "meters"),
  17032. default: true
  17033. },
  17034. {
  17035. name: "Big",
  17036. height: math.unit(3, "meters")
  17037. },
  17038. {
  17039. name: "Large",
  17040. height: math.unit(5, "meters")
  17041. },
  17042. ]
  17043. ))
  17044. characterMakers.push(() => makeCharacter(
  17045. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17046. {
  17047. feeding: {
  17048. height: math.unit(6.7, "feet"),
  17049. weight: math.unit(350, "lb"),
  17050. name: "Feeding",
  17051. image: {
  17052. source: "./media/characters/lalim/feeding.svg",
  17053. }
  17054. },
  17055. },
  17056. [
  17057. {
  17058. name: "Normal",
  17059. height: math.unit(6.7, "feet"),
  17060. default: true
  17061. },
  17062. ]
  17063. ))
  17064. characterMakers.push(() => makeCharacter(
  17065. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17066. {
  17067. front: {
  17068. height: math.unit(9.5, "feet"),
  17069. weight: math.unit(600, "lb"),
  17070. name: "Front",
  17071. image: {
  17072. source: "./media/characters/de'vout/front.svg",
  17073. extra: 1443 / 1328,
  17074. bottom: 0.025
  17075. }
  17076. },
  17077. back: {
  17078. height: math.unit(9.5, "feet"),
  17079. weight: math.unit(600, "lb"),
  17080. name: "Back",
  17081. image: {
  17082. source: "./media/characters/de'vout/back.svg",
  17083. extra: 1443 / 1328
  17084. }
  17085. },
  17086. frontDressed: {
  17087. height: math.unit(9.5, "feet"),
  17088. weight: math.unit(600, "lb"),
  17089. name: "Front (Dressed",
  17090. image: {
  17091. source: "./media/characters/de'vout/front-dressed.svg",
  17092. extra: 1443 / 1328,
  17093. bottom: 0.025
  17094. }
  17095. },
  17096. backDressed: {
  17097. height: math.unit(9.5, "feet"),
  17098. weight: math.unit(600, "lb"),
  17099. name: "Back (Dressed",
  17100. image: {
  17101. source: "./media/characters/de'vout/back-dressed.svg",
  17102. extra: 1443 / 1328
  17103. }
  17104. },
  17105. },
  17106. [
  17107. {
  17108. name: "Normal",
  17109. height: math.unit(9.5, "feet"),
  17110. default: true
  17111. },
  17112. ]
  17113. ))
  17114. characterMakers.push(() => makeCharacter(
  17115. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17116. {
  17117. front: {
  17118. height: math.unit(8, "feet"),
  17119. weight: math.unit(225, "lb"),
  17120. name: "Front",
  17121. image: {
  17122. source: "./media/characters/talana/front.svg",
  17123. extra: 1410 / 1300,
  17124. bottom: 0.015
  17125. }
  17126. },
  17127. frontDressed: {
  17128. height: math.unit(8, "feet"),
  17129. weight: math.unit(225, "lb"),
  17130. name: "Front (Dressed",
  17131. image: {
  17132. source: "./media/characters/talana/front-dressed.svg",
  17133. extra: 1410 / 1300,
  17134. bottom: 0.015
  17135. }
  17136. },
  17137. },
  17138. [
  17139. {
  17140. name: "Normal",
  17141. height: math.unit(8, "feet"),
  17142. default: true
  17143. },
  17144. ]
  17145. ))
  17146. characterMakers.push(() => makeCharacter(
  17147. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17148. {
  17149. side: {
  17150. height: math.unit(7.2, "feet"),
  17151. weight: math.unit(150, "lb"),
  17152. name: "Side",
  17153. image: {
  17154. source: "./media/characters/xeauvok/side.svg",
  17155. extra: 1975 / 1523,
  17156. bottom: 0.07
  17157. }
  17158. },
  17159. },
  17160. [
  17161. {
  17162. name: "Normal",
  17163. height: math.unit(7.2, "feet"),
  17164. default: true
  17165. },
  17166. ]
  17167. ))
  17168. characterMakers.push(() => makeCharacter(
  17169. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17170. {
  17171. side: {
  17172. height: math.unit(10, "feet"),
  17173. weight: math.unit(900, "kg"),
  17174. name: "Side",
  17175. image: {
  17176. source: "./media/characters/zara/side.svg",
  17177. extra: 504 / 498
  17178. }
  17179. },
  17180. },
  17181. [
  17182. {
  17183. name: "Normal",
  17184. height: math.unit(10, "feet"),
  17185. default: true
  17186. },
  17187. ]
  17188. ))
  17189. characterMakers.push(() => makeCharacter(
  17190. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17191. {
  17192. side: {
  17193. height: math.unit(6, "feet"),
  17194. weight: math.unit(150, "lb"),
  17195. name: "Side",
  17196. image: {
  17197. source: "./media/characters/richard-dragon/side.svg",
  17198. extra: 845 / 340,
  17199. bottom: 0.017
  17200. }
  17201. },
  17202. maw: {
  17203. height: math.unit(2.97, "feet"),
  17204. name: "Maw",
  17205. image: {
  17206. source: "./media/characters/richard-dragon/maw.svg"
  17207. }
  17208. },
  17209. },
  17210. [
  17211. ]
  17212. ))
  17213. characterMakers.push(() => makeCharacter(
  17214. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17215. {
  17216. front: {
  17217. height: math.unit(4, "feet"),
  17218. weight: math.unit(100, "lb"),
  17219. name: "Front",
  17220. image: {
  17221. source: "./media/characters/richard-smeargle/front.svg",
  17222. extra: 2952 / 2820,
  17223. bottom: 0.028
  17224. }
  17225. },
  17226. },
  17227. [
  17228. {
  17229. name: "Normal",
  17230. height: math.unit(4, "feet"),
  17231. default: true
  17232. },
  17233. {
  17234. name: "Dynamax",
  17235. height: math.unit(20, "meters")
  17236. },
  17237. ]
  17238. ))
  17239. characterMakers.push(() => makeCharacter(
  17240. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17241. {
  17242. front: {
  17243. height: math.unit(6, "feet"),
  17244. weight: math.unit(110, "lb"),
  17245. name: "Front",
  17246. image: {
  17247. source: "./media/characters/klay/front.svg",
  17248. extra: 962 / 883,
  17249. bottom: 0.04
  17250. }
  17251. },
  17252. back: {
  17253. height: math.unit(6, "feet"),
  17254. weight: math.unit(110, "lb"),
  17255. name: "Back",
  17256. image: {
  17257. source: "./media/characters/klay/back.svg",
  17258. extra: 962 / 883
  17259. }
  17260. },
  17261. beans: {
  17262. height: math.unit(1.15, "feet"),
  17263. name: "Beans",
  17264. image: {
  17265. source: "./media/characters/klay/beans.svg"
  17266. }
  17267. },
  17268. },
  17269. [
  17270. {
  17271. name: "Micro",
  17272. height: math.unit(6, "inches")
  17273. },
  17274. {
  17275. name: "Mini",
  17276. height: math.unit(3, "feet")
  17277. },
  17278. {
  17279. name: "Normal",
  17280. height: math.unit(6, "feet"),
  17281. default: true
  17282. },
  17283. {
  17284. name: "Big",
  17285. height: math.unit(25, "feet")
  17286. },
  17287. {
  17288. name: "Macro",
  17289. height: math.unit(100, "feet")
  17290. },
  17291. {
  17292. name: "Megamacro",
  17293. height: math.unit(400, "feet")
  17294. },
  17295. ]
  17296. ))
  17297. characterMakers.push(() => makeCharacter(
  17298. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17299. {
  17300. front: {
  17301. height: math.unit(6, "feet"),
  17302. weight: math.unit(160, "lb"),
  17303. name: "Front",
  17304. image: {
  17305. source: "./media/characters/marcus/front.svg",
  17306. extra: 734 / 676,
  17307. bottom: 0.03
  17308. }
  17309. },
  17310. },
  17311. [
  17312. {
  17313. name: "Little",
  17314. height: math.unit(6, "feet")
  17315. },
  17316. {
  17317. name: "Normal",
  17318. height: math.unit(110, "feet"),
  17319. default: true
  17320. },
  17321. {
  17322. name: "Macro",
  17323. height: math.unit(250, "feet")
  17324. },
  17325. {
  17326. name: "Megamacro",
  17327. height: math.unit(1000, "feet")
  17328. },
  17329. ]
  17330. ))
  17331. characterMakers.push(() => makeCharacter(
  17332. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17333. {
  17334. front: {
  17335. height: math.unit(7, "feet"),
  17336. weight: math.unit(275, "lb"),
  17337. name: "Front",
  17338. image: {
  17339. source: "./media/characters/claude-delroute/front.svg",
  17340. extra: 230 / 214,
  17341. bottom: 0.007
  17342. }
  17343. },
  17344. side: {
  17345. height: math.unit(7, "feet"),
  17346. weight: math.unit(275, "lb"),
  17347. name: "Side",
  17348. image: {
  17349. source: "./media/characters/claude-delroute/side.svg",
  17350. extra: 222 / 214,
  17351. bottom: 0.01
  17352. }
  17353. },
  17354. back: {
  17355. height: math.unit(7, "feet"),
  17356. weight: math.unit(275, "lb"),
  17357. name: "Back",
  17358. image: {
  17359. source: "./media/characters/claude-delroute/back.svg",
  17360. extra: 230 / 214,
  17361. bottom: 0.015
  17362. }
  17363. },
  17364. maw: {
  17365. height: math.unit(0.6407, "meters"),
  17366. name: "Maw",
  17367. image: {
  17368. source: "./media/characters/claude-delroute/maw.svg"
  17369. }
  17370. },
  17371. },
  17372. [
  17373. {
  17374. name: "Normal",
  17375. height: math.unit(7, "feet"),
  17376. default: true
  17377. },
  17378. {
  17379. name: "Lorge",
  17380. height: math.unit(20, "feet")
  17381. },
  17382. ]
  17383. ))
  17384. characterMakers.push(() => makeCharacter(
  17385. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17386. {
  17387. front: {
  17388. height: math.unit(8 + 4 / 12, "feet"),
  17389. weight: math.unit(600, "lb"),
  17390. name: "Front",
  17391. image: {
  17392. source: "./media/characters/dragonien/front.svg",
  17393. extra: 100 / 94,
  17394. bottom: 3.3 / 103.3445
  17395. }
  17396. },
  17397. back: {
  17398. height: math.unit(8 + 4 / 12, "feet"),
  17399. weight: math.unit(600, "lb"),
  17400. name: "Back",
  17401. image: {
  17402. source: "./media/characters/dragonien/back.svg",
  17403. extra: 776 / 746,
  17404. bottom: 6.4 / 782.0616
  17405. }
  17406. },
  17407. foot: {
  17408. height: math.unit(1.54, "feet"),
  17409. name: "Foot",
  17410. image: {
  17411. source: "./media/characters/dragonien/foot.svg",
  17412. }
  17413. },
  17414. },
  17415. [
  17416. {
  17417. name: "Normal",
  17418. height: math.unit(8 + 4 / 12, "feet"),
  17419. default: true
  17420. },
  17421. {
  17422. name: "Macro",
  17423. height: math.unit(200, "feet")
  17424. },
  17425. {
  17426. name: "Megamacro",
  17427. height: math.unit(1, "mile")
  17428. },
  17429. {
  17430. name: "Gigamacro",
  17431. height: math.unit(1000, "miles")
  17432. },
  17433. ]
  17434. ))
  17435. characterMakers.push(() => makeCharacter(
  17436. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17437. {
  17438. front: {
  17439. height: math.unit(5 + 2 / 12, "feet"),
  17440. weight: math.unit(110, "lb"),
  17441. name: "Front",
  17442. image: {
  17443. source: "./media/characters/desta/front.svg",
  17444. extra: 767/726,
  17445. bottom: 11.7/779
  17446. }
  17447. },
  17448. back: {
  17449. height: math.unit(5 + 2 / 12, "feet"),
  17450. weight: math.unit(110, "lb"),
  17451. name: "Back",
  17452. image: {
  17453. source: "./media/characters/desta/back.svg",
  17454. extra: 777/728,
  17455. bottom: 6/784
  17456. }
  17457. },
  17458. frontAlt: {
  17459. height: math.unit(5 + 2 / 12, "feet"),
  17460. weight: math.unit(110, "lb"),
  17461. name: "Front",
  17462. image: {
  17463. source: "./media/characters/desta/front-alt.svg",
  17464. extra: 1482 / 1417
  17465. }
  17466. },
  17467. side: {
  17468. height: math.unit(5 + 2 / 12, "feet"),
  17469. weight: math.unit(110, "lb"),
  17470. name: "Side",
  17471. image: {
  17472. source: "./media/characters/desta/side.svg",
  17473. extra: 2579 / 2491,
  17474. bottom: 0.053
  17475. }
  17476. },
  17477. },
  17478. [
  17479. {
  17480. name: "Micro",
  17481. height: math.unit(6, "inches")
  17482. },
  17483. {
  17484. name: "Normal",
  17485. height: math.unit(5 + 2 / 12, "feet"),
  17486. default: true
  17487. },
  17488. {
  17489. name: "Macro",
  17490. height: math.unit(62, "feet")
  17491. },
  17492. {
  17493. name: "Megamacro",
  17494. height: math.unit(1800, "feet")
  17495. },
  17496. ]
  17497. ))
  17498. characterMakers.push(() => makeCharacter(
  17499. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17500. {
  17501. front: {
  17502. height: math.unit(10, "feet"),
  17503. weight: math.unit(700, "lb"),
  17504. name: "Front",
  17505. image: {
  17506. source: "./media/characters/storm-alystar/front.svg",
  17507. extra: 2112 / 1898,
  17508. bottom: 0.034
  17509. }
  17510. },
  17511. },
  17512. [
  17513. {
  17514. name: "Micro",
  17515. height: math.unit(3.5, "inches")
  17516. },
  17517. {
  17518. name: "Normal",
  17519. height: math.unit(10, "feet"),
  17520. default: true
  17521. },
  17522. {
  17523. name: "Macro",
  17524. height: math.unit(400, "feet")
  17525. },
  17526. {
  17527. name: "Deific",
  17528. height: math.unit(60, "miles")
  17529. },
  17530. ]
  17531. ))
  17532. characterMakers.push(() => makeCharacter(
  17533. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17534. {
  17535. front: {
  17536. height: math.unit(2.35, "meters"),
  17537. weight: math.unit(119, "kg"),
  17538. name: "Front",
  17539. image: {
  17540. source: "./media/characters/ilia/front.svg",
  17541. extra: 1285 / 1255,
  17542. bottom: 0.06
  17543. }
  17544. },
  17545. },
  17546. [
  17547. {
  17548. name: "Normal",
  17549. height: math.unit(2.35, "meters")
  17550. },
  17551. {
  17552. name: "Macro",
  17553. height: math.unit(140, "meters"),
  17554. default: true
  17555. },
  17556. {
  17557. name: "Megamacro",
  17558. height: math.unit(100, "miles")
  17559. },
  17560. ]
  17561. ))
  17562. characterMakers.push(() => makeCharacter(
  17563. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17564. {
  17565. front: {
  17566. height: math.unit(6 + 5 / 12, "feet"),
  17567. weight: math.unit(190, "lb"),
  17568. name: "Front",
  17569. image: {
  17570. source: "./media/characters/kingdead/front.svg",
  17571. extra: 1228 / 1177
  17572. }
  17573. },
  17574. },
  17575. [
  17576. {
  17577. name: "Micro",
  17578. height: math.unit(7, "inches")
  17579. },
  17580. {
  17581. name: "Normal",
  17582. height: math.unit(6 + 5 / 12, "feet")
  17583. },
  17584. {
  17585. name: "Macro",
  17586. height: math.unit(150, "feet"),
  17587. default: true
  17588. },
  17589. {
  17590. name: "Megamacro",
  17591. height: math.unit(200, "miles")
  17592. },
  17593. ]
  17594. ))
  17595. characterMakers.push(() => makeCharacter(
  17596. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17597. {
  17598. front: {
  17599. height: math.unit(8, "feet"),
  17600. weight: math.unit(600, "lb"),
  17601. name: "Front",
  17602. image: {
  17603. source: "./media/characters/kyrehx/front.svg",
  17604. extra: 1195 / 1095,
  17605. bottom: 0.034
  17606. }
  17607. },
  17608. },
  17609. [
  17610. {
  17611. name: "Micro",
  17612. height: math.unit(2, "inches")
  17613. },
  17614. {
  17615. name: "Normal",
  17616. height: math.unit(8, "feet"),
  17617. default: true
  17618. },
  17619. {
  17620. name: "Macro",
  17621. height: math.unit(255, "feet")
  17622. },
  17623. ]
  17624. ))
  17625. characterMakers.push(() => makeCharacter(
  17626. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17627. {
  17628. front: {
  17629. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17630. weight: math.unit(184, "lb"),
  17631. name: "Front",
  17632. image: {
  17633. source: "./media/characters/xang/front.svg",
  17634. extra: 845 / 755
  17635. }
  17636. },
  17637. },
  17638. [
  17639. {
  17640. name: "Normal",
  17641. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17642. default: true
  17643. },
  17644. {
  17645. name: "Macro",
  17646. height: math.unit(0.935 * 146, "feet")
  17647. },
  17648. {
  17649. name: "Megamacro",
  17650. height: math.unit(0.935 * 3, "miles")
  17651. },
  17652. ]
  17653. ))
  17654. characterMakers.push(() => makeCharacter(
  17655. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17656. {
  17657. frontDressed: {
  17658. height: math.unit(5 + 7 / 12, "feet"),
  17659. weight: math.unit(140, "lb"),
  17660. name: "Front (Dressed)",
  17661. image: {
  17662. source: "./media/characters/doc-weardno/front-dressed.svg",
  17663. extra: 263 / 234
  17664. }
  17665. },
  17666. backDressed: {
  17667. height: math.unit(5 + 7 / 12, "feet"),
  17668. weight: math.unit(140, "lb"),
  17669. name: "Back (Dressed)",
  17670. image: {
  17671. source: "./media/characters/doc-weardno/back-dressed.svg",
  17672. extra: 266 / 238
  17673. }
  17674. },
  17675. front: {
  17676. height: math.unit(5 + 7 / 12, "feet"),
  17677. weight: math.unit(140, "lb"),
  17678. name: "Front",
  17679. image: {
  17680. source: "./media/characters/doc-weardno/front.svg",
  17681. extra: 254 / 233
  17682. }
  17683. },
  17684. },
  17685. [
  17686. {
  17687. name: "Micro",
  17688. height: math.unit(3, "inches")
  17689. },
  17690. {
  17691. name: "Normal",
  17692. height: math.unit(5 + 7 / 12, "feet"),
  17693. default: true
  17694. },
  17695. {
  17696. name: "Macro",
  17697. height: math.unit(25, "feet")
  17698. },
  17699. {
  17700. name: "Megamacro",
  17701. height: math.unit(2, "miles")
  17702. },
  17703. ]
  17704. ))
  17705. characterMakers.push(() => makeCharacter(
  17706. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17707. {
  17708. front: {
  17709. height: math.unit(6 + 2 / 12, "feet"),
  17710. weight: math.unit(153, "lb"),
  17711. name: "Front",
  17712. image: {
  17713. source: "./media/characters/seth-whilst/front.svg",
  17714. bottom: 0.07
  17715. }
  17716. },
  17717. },
  17718. [
  17719. {
  17720. name: "Micro",
  17721. height: math.unit(5, "inches")
  17722. },
  17723. {
  17724. name: "Normal",
  17725. height: math.unit(6 + 2 / 12, "feet"),
  17726. default: true
  17727. },
  17728. ]
  17729. ))
  17730. characterMakers.push(() => makeCharacter(
  17731. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17732. {
  17733. front: {
  17734. height: math.unit(3, "inches"),
  17735. weight: math.unit(8, "grams"),
  17736. name: "Front",
  17737. image: {
  17738. source: "./media/characters/pocket-jabari/front.svg",
  17739. extra: 1024 / 974,
  17740. bottom: 0.039
  17741. }
  17742. },
  17743. },
  17744. [
  17745. {
  17746. name: "Minimicro",
  17747. height: math.unit(8, "mm")
  17748. },
  17749. {
  17750. name: "Micro",
  17751. height: math.unit(3, "inches"),
  17752. default: true
  17753. },
  17754. {
  17755. name: "Normal",
  17756. height: math.unit(3, "feet")
  17757. },
  17758. ]
  17759. ))
  17760. characterMakers.push(() => makeCharacter(
  17761. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17762. {
  17763. front: {
  17764. height: math.unit(15, "feet"),
  17765. weight: math.unit(3280, "lb"),
  17766. name: "Front",
  17767. image: {
  17768. source: "./media/characters/sapphy/front.svg",
  17769. extra: 671 / 577,
  17770. bottom: 0.085
  17771. }
  17772. },
  17773. back: {
  17774. height: math.unit(15, "feet"),
  17775. weight: math.unit(3280, "lb"),
  17776. name: "Back",
  17777. image: {
  17778. source: "./media/characters/sapphy/back.svg",
  17779. extra: 631 / 607,
  17780. bottom: 0.045
  17781. }
  17782. },
  17783. },
  17784. [
  17785. {
  17786. name: "Normal",
  17787. height: math.unit(15, "feet")
  17788. },
  17789. {
  17790. name: "Casual Macro",
  17791. height: math.unit(120, "feet")
  17792. },
  17793. {
  17794. name: "Macro",
  17795. height: math.unit(2150, "feet"),
  17796. default: true
  17797. },
  17798. {
  17799. name: "Megamacro",
  17800. height: math.unit(8, "miles")
  17801. },
  17802. {
  17803. name: "Galaxy Mom",
  17804. height: math.unit(6, "megalightyears")
  17805. },
  17806. ]
  17807. ))
  17808. characterMakers.push(() => makeCharacter(
  17809. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17810. {
  17811. front: {
  17812. height: math.unit(6, "feet"),
  17813. weight: math.unit(170, "lb"),
  17814. name: "Front",
  17815. image: {
  17816. source: "./media/characters/kiro/front.svg",
  17817. extra: 1064 / 1012,
  17818. bottom: 0.052
  17819. }
  17820. },
  17821. },
  17822. [
  17823. {
  17824. name: "Micro",
  17825. height: math.unit(6, "inches")
  17826. },
  17827. {
  17828. name: "Normal",
  17829. height: math.unit(6, "feet"),
  17830. default: true
  17831. },
  17832. {
  17833. name: "Macro",
  17834. height: math.unit(72, "feet")
  17835. },
  17836. ]
  17837. ))
  17838. characterMakers.push(() => makeCharacter(
  17839. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17840. {
  17841. front: {
  17842. height: math.unit(5 + 9 / 12, "feet"),
  17843. weight: math.unit(175, "lb"),
  17844. name: "Front",
  17845. image: {
  17846. source: "./media/characters/irishfox/front.svg",
  17847. extra: 1912 / 1680,
  17848. bottom: 0.02
  17849. }
  17850. },
  17851. },
  17852. [
  17853. {
  17854. name: "Nano",
  17855. height: math.unit(1, "mm")
  17856. },
  17857. {
  17858. name: "Micro",
  17859. height: math.unit(2, "inches")
  17860. },
  17861. {
  17862. name: "Normal",
  17863. height: math.unit(5 + 9 / 12, "feet"),
  17864. default: true
  17865. },
  17866. {
  17867. name: "Macro",
  17868. height: math.unit(45, "feet")
  17869. },
  17870. ]
  17871. ))
  17872. characterMakers.push(() => makeCharacter(
  17873. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17874. {
  17875. front: {
  17876. height: math.unit(6 + 1 / 12, "feet"),
  17877. weight: math.unit(150, "lb"),
  17878. name: "Front",
  17879. image: {
  17880. source: "./media/characters/aronai-sieyes/front.svg",
  17881. extra: 1556 / 1480,
  17882. bottom: 0.015
  17883. }
  17884. },
  17885. side: {
  17886. height: math.unit(6 + 1 / 12, "feet"),
  17887. weight: math.unit(150, "lb"),
  17888. name: "Side",
  17889. image: {
  17890. source: "./media/characters/aronai-sieyes/side.svg",
  17891. extra: 1433 / 1390,
  17892. bottom: 0.0393
  17893. }
  17894. },
  17895. back: {
  17896. height: math.unit(6 + 1 / 12, "feet"),
  17897. weight: math.unit(150, "lb"),
  17898. name: "Back",
  17899. image: {
  17900. source: "./media/characters/aronai-sieyes/back.svg",
  17901. extra: 1544 / 1494,
  17902. bottom: 0.02
  17903. }
  17904. },
  17905. frontClothed: {
  17906. height: math.unit(6 + 1 / 12, "feet"),
  17907. weight: math.unit(150, "lb"),
  17908. name: "Front (Clothed)",
  17909. image: {
  17910. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17911. extra: 1582 / 1527
  17912. }
  17913. },
  17914. feral: {
  17915. height: math.unit(18, "feet"),
  17916. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17917. name: "Feral",
  17918. image: {
  17919. source: "./media/characters/aronai-sieyes/feral.svg",
  17920. extra: 1530 / 1240,
  17921. bottom: 0.035
  17922. }
  17923. },
  17924. },
  17925. [
  17926. {
  17927. name: "Micro",
  17928. height: math.unit(2, "inches")
  17929. },
  17930. {
  17931. name: "Normal",
  17932. height: math.unit(6 + 1 / 12, "feet"),
  17933. default: true
  17934. }
  17935. ]
  17936. ))
  17937. characterMakers.push(() => makeCharacter(
  17938. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17939. {
  17940. front: {
  17941. height: math.unit(12, "feet"),
  17942. weight: math.unit(410, "kg"),
  17943. name: "Front",
  17944. image: {
  17945. source: "./media/characters/xuna/front.svg",
  17946. extra: 2184 / 1980
  17947. }
  17948. },
  17949. side: {
  17950. height: math.unit(12, "feet"),
  17951. weight: math.unit(410, "kg"),
  17952. name: "Side",
  17953. image: {
  17954. source: "./media/characters/xuna/side.svg",
  17955. extra: 2184 / 1980
  17956. }
  17957. },
  17958. back: {
  17959. height: math.unit(12, "feet"),
  17960. weight: math.unit(410, "kg"),
  17961. name: "Back",
  17962. image: {
  17963. source: "./media/characters/xuna/back.svg",
  17964. extra: 2184 / 1980
  17965. }
  17966. },
  17967. },
  17968. [
  17969. {
  17970. name: "Nano glow",
  17971. height: math.unit(10, "nm")
  17972. },
  17973. {
  17974. name: "Micro floof",
  17975. height: math.unit(0.3, "m")
  17976. },
  17977. {
  17978. name: "Huggable softy boi",
  17979. height: math.unit(3.6576, "m"),
  17980. default: true
  17981. },
  17982. {
  17983. name: "Admirable floof",
  17984. height: math.unit(80, "meters")
  17985. },
  17986. {
  17987. name: "Gentle macro",
  17988. height: math.unit(300, "meters")
  17989. },
  17990. {
  17991. name: "Very careful floof",
  17992. height: math.unit(3200, "meters")
  17993. },
  17994. {
  17995. name: "The mega floof",
  17996. height: math.unit(36000, "meters")
  17997. },
  17998. {
  17999. name: "Giga-fur-Wicker",
  18000. height: math.unit(4800000, "meters")
  18001. },
  18002. {
  18003. name: "Licky world",
  18004. height: math.unit(20000000, "meters")
  18005. },
  18006. {
  18007. name: "Floofy cyan sun",
  18008. height: math.unit(1500000000, "meters")
  18009. },
  18010. {
  18011. name: "Milky Wicker",
  18012. height: math.unit(1000000000000000000000, "meters")
  18013. },
  18014. {
  18015. name: "The observing Wicker",
  18016. height: math.unit(999999999999999999999999999, "meters")
  18017. },
  18018. ]
  18019. ))
  18020. characterMakers.push(() => makeCharacter(
  18021. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18022. {
  18023. front: {
  18024. height: math.unit(5 + 9 / 12, "feet"),
  18025. weight: math.unit(150, "lb"),
  18026. name: "Front",
  18027. image: {
  18028. source: "./media/characters/arokha-sieyes/front.svg",
  18029. extra: 1425 / 1284,
  18030. bottom: 0.05
  18031. }
  18032. },
  18033. },
  18034. [
  18035. {
  18036. name: "Normal",
  18037. height: math.unit(5 + 9 / 12, "feet")
  18038. },
  18039. {
  18040. name: "Macro",
  18041. height: math.unit(30, "meters"),
  18042. default: true
  18043. },
  18044. ]
  18045. ))
  18046. characterMakers.push(() => makeCharacter(
  18047. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18048. {
  18049. front: {
  18050. height: math.unit(6, "feet"),
  18051. weight: math.unit(180, "lb"),
  18052. name: "Front",
  18053. image: {
  18054. source: "./media/characters/arokh-sieyes/front.svg",
  18055. extra: 1830 / 1769,
  18056. bottom: 0.01
  18057. }
  18058. },
  18059. },
  18060. [
  18061. {
  18062. name: "Normal",
  18063. height: math.unit(6, "feet")
  18064. },
  18065. {
  18066. name: "Macro",
  18067. height: math.unit(30, "meters"),
  18068. default: true
  18069. },
  18070. ]
  18071. ))
  18072. characterMakers.push(() => makeCharacter(
  18073. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18074. {
  18075. side: {
  18076. height: math.unit(13 + 1 / 12, "feet"),
  18077. weight: math.unit(8.5, "tonnes"),
  18078. name: "Side",
  18079. image: {
  18080. source: "./media/characters/goldeneye/side.svg",
  18081. extra: 1182 / 778,
  18082. bottom: 0.067
  18083. }
  18084. },
  18085. paw: {
  18086. height: math.unit(3.4, "feet"),
  18087. name: "Paw",
  18088. image: {
  18089. source: "./media/characters/goldeneye/paw.svg"
  18090. }
  18091. },
  18092. },
  18093. [
  18094. {
  18095. name: "Normal",
  18096. height: math.unit(13 + 1 / 12, "feet"),
  18097. default: true
  18098. },
  18099. ]
  18100. ))
  18101. characterMakers.push(() => makeCharacter(
  18102. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18103. {
  18104. front: {
  18105. height: math.unit(6 + 1 / 12, "feet"),
  18106. weight: math.unit(210, "lb"),
  18107. name: "Front",
  18108. image: {
  18109. source: "./media/characters/leonardo-lycheborne/front.svg",
  18110. extra: 390 / 365,
  18111. bottom: 0.032
  18112. }
  18113. },
  18114. side: {
  18115. height: math.unit(6 + 1 / 12, "feet"),
  18116. weight: math.unit(210, "lb"),
  18117. name: "Side",
  18118. image: {
  18119. source: "./media/characters/leonardo-lycheborne/side.svg",
  18120. extra: 390 / 365,
  18121. bottom: 0.005
  18122. }
  18123. },
  18124. back: {
  18125. height: math.unit(6 + 1 / 12, "feet"),
  18126. weight: math.unit(210, "lb"),
  18127. name: "Back",
  18128. image: {
  18129. source: "./media/characters/leonardo-lycheborne/back.svg",
  18130. extra: 392 / 366,
  18131. bottom: 0.01
  18132. }
  18133. },
  18134. hand: {
  18135. height: math.unit(1.08, "feet"),
  18136. name: "Hand",
  18137. image: {
  18138. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18139. }
  18140. },
  18141. foot: {
  18142. height: math.unit(1.32, "feet"),
  18143. name: "Foot",
  18144. image: {
  18145. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18146. }
  18147. },
  18148. were: {
  18149. height: math.unit(20, "feet"),
  18150. weight: math.unit(7800, "lb"),
  18151. name: "Were",
  18152. image: {
  18153. source: "./media/characters/leonardo-lycheborne/were.svg",
  18154. extra: 308 / 294,
  18155. bottom: 0.048
  18156. }
  18157. },
  18158. feral: {
  18159. height: math.unit(7.5, "feet"),
  18160. weight: math.unit(600, "lb"),
  18161. name: "Feral",
  18162. image: {
  18163. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18164. extra: 210 / 186,
  18165. bottom: 0.108
  18166. }
  18167. },
  18168. taur: {
  18169. height: math.unit(11, "feet"),
  18170. weight: math.unit(3300, "lb"),
  18171. name: "Taur",
  18172. image: {
  18173. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18174. extra: 320 / 303,
  18175. bottom: 0.025
  18176. }
  18177. },
  18178. barghest: {
  18179. height: math.unit(11, "feet"),
  18180. weight: math.unit(1300, "lb"),
  18181. name: "Barghest",
  18182. image: {
  18183. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18184. extra: 323 / 302,
  18185. bottom: 0.027
  18186. }
  18187. },
  18188. dick: {
  18189. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18190. name: "Dick",
  18191. image: {
  18192. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18193. }
  18194. },
  18195. dickWere: {
  18196. height: math.unit((20) / 3.8, "feet"),
  18197. name: "Dick (Were)",
  18198. image: {
  18199. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18200. }
  18201. },
  18202. },
  18203. [
  18204. {
  18205. name: "Normal",
  18206. height: math.unit(6 + 1 / 12, "feet"),
  18207. default: true
  18208. },
  18209. ]
  18210. ))
  18211. characterMakers.push(() => makeCharacter(
  18212. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18213. {
  18214. front: {
  18215. height: math.unit(10, "feet"),
  18216. weight: math.unit(350, "lb"),
  18217. name: "Front",
  18218. image: {
  18219. source: "./media/characters/jet/front.svg",
  18220. extra: 2050 / 1980,
  18221. bottom: 0.013
  18222. }
  18223. },
  18224. back: {
  18225. height: math.unit(10, "feet"),
  18226. weight: math.unit(350, "lb"),
  18227. name: "Back",
  18228. image: {
  18229. source: "./media/characters/jet/back.svg",
  18230. extra: 2050 / 1980,
  18231. bottom: 0.013
  18232. }
  18233. },
  18234. },
  18235. [
  18236. {
  18237. name: "Micro",
  18238. height: math.unit(6, "inches")
  18239. },
  18240. {
  18241. name: "Normal",
  18242. height: math.unit(10, "feet"),
  18243. default: true
  18244. },
  18245. {
  18246. name: "Macro",
  18247. height: math.unit(100, "feet")
  18248. },
  18249. ]
  18250. ))
  18251. characterMakers.push(() => makeCharacter(
  18252. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18253. {
  18254. front: {
  18255. height: math.unit(15, "feet"),
  18256. weight: math.unit(2800, "lb"),
  18257. name: "Front",
  18258. image: {
  18259. source: "./media/characters/tanarath/front.svg",
  18260. extra: 2392 / 2220,
  18261. bottom: 0.03
  18262. }
  18263. },
  18264. back: {
  18265. height: math.unit(15, "feet"),
  18266. weight: math.unit(2800, "lb"),
  18267. name: "Back",
  18268. image: {
  18269. source: "./media/characters/tanarath/back.svg",
  18270. extra: 2392 / 2220,
  18271. bottom: 0.03
  18272. }
  18273. },
  18274. },
  18275. [
  18276. {
  18277. name: "Normal",
  18278. height: math.unit(15, "feet"),
  18279. default: true
  18280. },
  18281. ]
  18282. ))
  18283. characterMakers.push(() => makeCharacter(
  18284. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18285. {
  18286. front: {
  18287. height: math.unit(7 + 1 / 12, "feet"),
  18288. weight: math.unit(175, "lb"),
  18289. name: "Front",
  18290. image: {
  18291. source: "./media/characters/patty-cattybatty/front.svg",
  18292. extra: 908 / 874,
  18293. bottom: 0.025
  18294. }
  18295. },
  18296. },
  18297. [
  18298. {
  18299. name: "Micro",
  18300. height: math.unit(1, "inch")
  18301. },
  18302. {
  18303. name: "Normal",
  18304. height: math.unit(7 + 1 / 12, "feet")
  18305. },
  18306. {
  18307. name: "Mini Macro",
  18308. height: math.unit(155, "feet")
  18309. },
  18310. {
  18311. name: "Macro",
  18312. height: math.unit(1077, "feet")
  18313. },
  18314. {
  18315. name: "Mega Macro",
  18316. height: math.unit(47650, "feet"),
  18317. default: true
  18318. },
  18319. {
  18320. name: "Giga Macro",
  18321. height: math.unit(440, "miles")
  18322. },
  18323. {
  18324. name: "Tera Macro",
  18325. height: math.unit(8700, "miles")
  18326. },
  18327. {
  18328. name: "Planetary Macro",
  18329. height: math.unit(32700, "miles")
  18330. },
  18331. {
  18332. name: "Solar Macro",
  18333. height: math.unit(550000, "miles")
  18334. },
  18335. {
  18336. name: "Celestial Macro",
  18337. height: math.unit(2.5, "AU")
  18338. },
  18339. ]
  18340. ))
  18341. characterMakers.push(() => makeCharacter(
  18342. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18343. {
  18344. front: {
  18345. height: math.unit(4 + 5 / 12, "feet"),
  18346. weight: math.unit(90, "lb"),
  18347. name: "Front",
  18348. image: {
  18349. source: "./media/characters/cappu/front.svg",
  18350. extra: 1247 / 1152,
  18351. bottom: 0.012
  18352. }
  18353. },
  18354. },
  18355. [
  18356. {
  18357. name: "Normal",
  18358. height: math.unit(4 + 5 / 12, "feet"),
  18359. default: true
  18360. },
  18361. ]
  18362. ))
  18363. characterMakers.push(() => makeCharacter(
  18364. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18365. {
  18366. frontDressed: {
  18367. height: math.unit(70, "cm"),
  18368. weight: math.unit(6, "kg"),
  18369. name: "Front (Dressed)",
  18370. image: {
  18371. source: "./media/characters/sebi/front-dressed.svg",
  18372. extra: 713.5 / 686.5,
  18373. bottom: 0.003
  18374. }
  18375. },
  18376. front: {
  18377. height: math.unit(70, "cm"),
  18378. weight: math.unit(5, "kg"),
  18379. name: "Front",
  18380. image: {
  18381. source: "./media/characters/sebi/front.svg",
  18382. extra: 713.5 / 686.5,
  18383. bottom: 0.003
  18384. }
  18385. }
  18386. },
  18387. [
  18388. {
  18389. name: "Normal",
  18390. height: math.unit(70, "cm"),
  18391. default: true
  18392. },
  18393. {
  18394. name: "Macro",
  18395. height: math.unit(8, "meters")
  18396. },
  18397. ]
  18398. ))
  18399. characterMakers.push(() => makeCharacter(
  18400. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18401. {
  18402. front: {
  18403. height: math.unit(6, "feet"),
  18404. weight: math.unit(150, "lb"),
  18405. name: "Front",
  18406. image: {
  18407. source: "./media/characters/typhek/front.svg",
  18408. extra: 1948 / 1929,
  18409. bottom: 0.025
  18410. }
  18411. },
  18412. side: {
  18413. height: math.unit(6, "feet"),
  18414. weight: math.unit(150, "lb"),
  18415. name: "Side",
  18416. image: {
  18417. source: "./media/characters/typhek/side.svg",
  18418. extra: 2034 / 2010,
  18419. bottom: 0.003
  18420. }
  18421. },
  18422. back: {
  18423. height: math.unit(6, "feet"),
  18424. weight: math.unit(150, "lb"),
  18425. name: "Back",
  18426. image: {
  18427. source: "./media/characters/typhek/back.svg",
  18428. extra: 2005 / 1978,
  18429. bottom: 0.004
  18430. }
  18431. },
  18432. palm: {
  18433. height: math.unit(1.2, "feet"),
  18434. name: "Palm",
  18435. image: {
  18436. source: "./media/characters/typhek/palm.svg"
  18437. }
  18438. },
  18439. fist: {
  18440. height: math.unit(1.1, "feet"),
  18441. name: "Fist",
  18442. image: {
  18443. source: "./media/characters/typhek/fist.svg"
  18444. }
  18445. },
  18446. foot: {
  18447. height: math.unit(1.57, "feet"),
  18448. name: "Foot",
  18449. image: {
  18450. source: "./media/characters/typhek/foot.svg"
  18451. }
  18452. },
  18453. sole: {
  18454. height: math.unit(2.05, "feet"),
  18455. name: "Sole",
  18456. image: {
  18457. source: "./media/characters/typhek/sole.svg"
  18458. }
  18459. },
  18460. },
  18461. [
  18462. {
  18463. name: "Macro",
  18464. height: math.unit(40, "stories"),
  18465. default: true
  18466. },
  18467. {
  18468. name: "Megamacro",
  18469. height: math.unit(1, "mile")
  18470. },
  18471. {
  18472. name: "Gigamacro",
  18473. height: math.unit(4000, "solarradii")
  18474. },
  18475. {
  18476. name: "Universal",
  18477. height: math.unit(1.1, "universes")
  18478. }
  18479. ]
  18480. ))
  18481. characterMakers.push(() => makeCharacter(
  18482. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18483. {
  18484. side: {
  18485. height: math.unit(5 + 7 / 12, "feet"),
  18486. weight: math.unit(150, "lb"),
  18487. name: "Side",
  18488. image: {
  18489. source: "./media/characters/kassy/side.svg",
  18490. extra: 1280 / 1225,
  18491. bottom: 0.002
  18492. }
  18493. },
  18494. front: {
  18495. height: math.unit(5 + 7 / 12, "feet"),
  18496. weight: math.unit(150, "lb"),
  18497. name: "Front",
  18498. image: {
  18499. source: "./media/characters/kassy/front.svg",
  18500. extra: 1280 / 1225,
  18501. bottom: 0.025
  18502. }
  18503. },
  18504. back: {
  18505. height: math.unit(5 + 7 / 12, "feet"),
  18506. weight: math.unit(150, "lb"),
  18507. name: "Back",
  18508. image: {
  18509. source: "./media/characters/kassy/back.svg",
  18510. extra: 1280 / 1225,
  18511. bottom: 0.002
  18512. }
  18513. },
  18514. foot: {
  18515. height: math.unit(1.266, "feet"),
  18516. name: "Foot",
  18517. image: {
  18518. source: "./media/characters/kassy/foot.svg"
  18519. }
  18520. },
  18521. },
  18522. [
  18523. {
  18524. name: "Normal",
  18525. height: math.unit(5 + 7 / 12, "feet")
  18526. },
  18527. {
  18528. name: "Macro",
  18529. height: math.unit(137, "feet"),
  18530. default: true
  18531. },
  18532. {
  18533. name: "Megamacro",
  18534. height: math.unit(1, "mile")
  18535. },
  18536. ]
  18537. ))
  18538. characterMakers.push(() => makeCharacter(
  18539. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18540. {
  18541. front: {
  18542. height: math.unit(6 + 1 / 12, "feet"),
  18543. weight: math.unit(200, "lb"),
  18544. name: "Front",
  18545. image: {
  18546. source: "./media/characters/neil/front.svg",
  18547. extra: 1326 / 1250,
  18548. bottom: 0.023
  18549. }
  18550. },
  18551. },
  18552. [
  18553. {
  18554. name: "Normal",
  18555. height: math.unit(6 + 1 / 12, "feet"),
  18556. default: true
  18557. },
  18558. {
  18559. name: "Macro",
  18560. height: math.unit(200, "feet")
  18561. },
  18562. ]
  18563. ))
  18564. characterMakers.push(() => makeCharacter(
  18565. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18566. {
  18567. front: {
  18568. height: math.unit(5 + 9 / 12, "feet"),
  18569. weight: math.unit(190, "lb"),
  18570. name: "Front",
  18571. image: {
  18572. source: "./media/characters/atticus/front.svg",
  18573. extra: 2934 / 2785,
  18574. bottom: 0.025
  18575. }
  18576. },
  18577. },
  18578. [
  18579. {
  18580. name: "Normal",
  18581. height: math.unit(5 + 9 / 12, "feet"),
  18582. default: true
  18583. },
  18584. {
  18585. name: "Macro",
  18586. height: math.unit(180, "feet")
  18587. },
  18588. ]
  18589. ))
  18590. characterMakers.push(() => makeCharacter(
  18591. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18592. {
  18593. side: {
  18594. height: math.unit(9, "feet"),
  18595. weight: math.unit(650, "lb"),
  18596. name: "Side",
  18597. image: {
  18598. source: "./media/characters/milo/side.svg",
  18599. extra: 2644 / 2310,
  18600. bottom: 0.032
  18601. }
  18602. },
  18603. },
  18604. [
  18605. {
  18606. name: "Normal",
  18607. height: math.unit(9, "feet"),
  18608. default: true
  18609. },
  18610. {
  18611. name: "Macro",
  18612. height: math.unit(300, "feet")
  18613. },
  18614. ]
  18615. ))
  18616. characterMakers.push(() => makeCharacter(
  18617. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18618. {
  18619. side: {
  18620. height: math.unit(8, "meters"),
  18621. weight: math.unit(90000, "kg"),
  18622. name: "Side",
  18623. image: {
  18624. source: "./media/characters/ijzer/side.svg",
  18625. extra: 2756 / 1600,
  18626. bottom: 0.01
  18627. }
  18628. },
  18629. },
  18630. [
  18631. {
  18632. name: "Small",
  18633. height: math.unit(3, "meters")
  18634. },
  18635. {
  18636. name: "Normal",
  18637. height: math.unit(8, "meters"),
  18638. default: true
  18639. },
  18640. {
  18641. name: "Normal+",
  18642. height: math.unit(10, "meters")
  18643. },
  18644. {
  18645. name: "Bigger",
  18646. height: math.unit(24, "meters")
  18647. },
  18648. {
  18649. name: "Huge",
  18650. height: math.unit(80, "meters")
  18651. },
  18652. ]
  18653. ))
  18654. characterMakers.push(() => makeCharacter(
  18655. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18656. {
  18657. front: {
  18658. height: math.unit(6 + 2 / 12, "feet"),
  18659. weight: math.unit(153, "lb"),
  18660. name: "Front",
  18661. image: {
  18662. source: "./media/characters/luca-cervicum/front.svg",
  18663. extra: 370 / 327,
  18664. bottom: 0.015
  18665. }
  18666. },
  18667. back: {
  18668. height: math.unit(6 + 2 / 12, "feet"),
  18669. weight: math.unit(153, "lb"),
  18670. name: "Back",
  18671. image: {
  18672. source: "./media/characters/luca-cervicum/back.svg",
  18673. extra: 367 / 333,
  18674. bottom: 0.005
  18675. }
  18676. },
  18677. frontGear: {
  18678. height: math.unit(6 + 2 / 12, "feet"),
  18679. weight: math.unit(173, "lb"),
  18680. name: "Front (Gear)",
  18681. image: {
  18682. source: "./media/characters/luca-cervicum/front-gear.svg",
  18683. extra: 377 / 333,
  18684. bottom: 0.006
  18685. }
  18686. },
  18687. },
  18688. [
  18689. {
  18690. name: "Normal",
  18691. height: math.unit(6 + 2 / 12, "feet"),
  18692. default: true
  18693. },
  18694. ]
  18695. ))
  18696. characterMakers.push(() => makeCharacter(
  18697. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18698. {
  18699. front: {
  18700. height: math.unit(6 + 1 / 12, "feet"),
  18701. weight: math.unit(304, "lb"),
  18702. name: "Front",
  18703. image: {
  18704. source: "./media/characters/oliver/front.svg",
  18705. extra: 157 / 143,
  18706. bottom: 0.08
  18707. }
  18708. },
  18709. },
  18710. [
  18711. {
  18712. name: "Normal",
  18713. height: math.unit(6 + 1 / 12, "feet"),
  18714. default: true
  18715. },
  18716. ]
  18717. ))
  18718. characterMakers.push(() => makeCharacter(
  18719. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18720. {
  18721. front: {
  18722. height: math.unit(5 + 7 / 12, "feet"),
  18723. weight: math.unit(140, "lb"),
  18724. name: "Front",
  18725. image: {
  18726. source: "./media/characters/shane/front.svg",
  18727. extra: 304 / 289,
  18728. bottom: 0.005
  18729. }
  18730. },
  18731. },
  18732. [
  18733. {
  18734. name: "Normal",
  18735. height: math.unit(5 + 7 / 12, "feet"),
  18736. default: true
  18737. },
  18738. ]
  18739. ))
  18740. characterMakers.push(() => makeCharacter(
  18741. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18742. {
  18743. front: {
  18744. height: math.unit(5 + 9 / 12, "feet"),
  18745. weight: math.unit(178, "lb"),
  18746. name: "Front",
  18747. image: {
  18748. source: "./media/characters/shin/front.svg",
  18749. extra: 159 / 151,
  18750. bottom: 0.015
  18751. }
  18752. },
  18753. },
  18754. [
  18755. {
  18756. name: "Normal",
  18757. height: math.unit(5 + 9 / 12, "feet"),
  18758. default: true
  18759. },
  18760. ]
  18761. ))
  18762. characterMakers.push(() => makeCharacter(
  18763. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18764. {
  18765. front: {
  18766. height: math.unit(5 + 10 / 12, "feet"),
  18767. weight: math.unit(168, "lb"),
  18768. name: "Front",
  18769. image: {
  18770. source: "./media/characters/xerxes/front.svg",
  18771. extra: 282 / 260,
  18772. bottom: 0.045
  18773. }
  18774. },
  18775. },
  18776. [
  18777. {
  18778. name: "Normal",
  18779. height: math.unit(5 + 10 / 12, "feet"),
  18780. default: true
  18781. },
  18782. ]
  18783. ))
  18784. characterMakers.push(() => makeCharacter(
  18785. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18786. {
  18787. front: {
  18788. height: math.unit(6 + 7 / 12, "feet"),
  18789. weight: math.unit(208, "lb"),
  18790. name: "Front",
  18791. image: {
  18792. source: "./media/characters/chaska/front.svg",
  18793. extra: 332 / 319,
  18794. bottom: 0.015
  18795. }
  18796. },
  18797. },
  18798. [
  18799. {
  18800. name: "Normal",
  18801. height: math.unit(6 + 7 / 12, "feet"),
  18802. default: true
  18803. },
  18804. ]
  18805. ))
  18806. characterMakers.push(() => makeCharacter(
  18807. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18808. {
  18809. front: {
  18810. height: math.unit(5 + 8 / 12, "feet"),
  18811. weight: math.unit(208, "lb"),
  18812. name: "Front",
  18813. image: {
  18814. source: "./media/characters/enuk/front.svg",
  18815. extra: 437 / 406,
  18816. bottom: 0.02
  18817. }
  18818. },
  18819. },
  18820. [
  18821. {
  18822. name: "Normal",
  18823. height: math.unit(5 + 8 / 12, "feet"),
  18824. default: true
  18825. },
  18826. ]
  18827. ))
  18828. characterMakers.push(() => makeCharacter(
  18829. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18830. {
  18831. front: {
  18832. height: math.unit(5 + 10 / 12, "feet"),
  18833. weight: math.unit(252, "lb"),
  18834. name: "Front",
  18835. image: {
  18836. source: "./media/characters/bruun/front.svg",
  18837. extra: 197 / 187,
  18838. bottom: 0.012
  18839. }
  18840. },
  18841. },
  18842. [
  18843. {
  18844. name: "Normal",
  18845. height: math.unit(5 + 10 / 12, "feet"),
  18846. default: true
  18847. },
  18848. ]
  18849. ))
  18850. characterMakers.push(() => makeCharacter(
  18851. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18852. {
  18853. front: {
  18854. height: math.unit(6 + 10 / 12, "feet"),
  18855. weight: math.unit(255, "lb"),
  18856. name: "Front",
  18857. image: {
  18858. source: "./media/characters/alexeev/front.svg",
  18859. extra: 213 / 200,
  18860. bottom: 0.05
  18861. }
  18862. },
  18863. },
  18864. [
  18865. {
  18866. name: "Normal",
  18867. height: math.unit(6 + 10 / 12, "feet"),
  18868. default: true
  18869. },
  18870. ]
  18871. ))
  18872. characterMakers.push(() => makeCharacter(
  18873. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18874. {
  18875. front: {
  18876. height: math.unit(2 + 8 / 12, "feet"),
  18877. weight: math.unit(22, "lb"),
  18878. name: "Front",
  18879. image: {
  18880. source: "./media/characters/evelyn/front.svg",
  18881. extra: 208 / 180
  18882. }
  18883. },
  18884. },
  18885. [
  18886. {
  18887. name: "Normal",
  18888. height: math.unit(2 + 8 / 12, "feet"),
  18889. default: true
  18890. },
  18891. ]
  18892. ))
  18893. characterMakers.push(() => makeCharacter(
  18894. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18895. {
  18896. front: {
  18897. height: math.unit(5 + 9 / 12, "feet"),
  18898. weight: math.unit(139, "lb"),
  18899. name: "Front",
  18900. image: {
  18901. source: "./media/characters/inca/front.svg",
  18902. extra: 294 / 291,
  18903. bottom: 0.03
  18904. }
  18905. },
  18906. },
  18907. [
  18908. {
  18909. name: "Normal",
  18910. height: math.unit(5 + 9 / 12, "feet"),
  18911. default: true
  18912. },
  18913. ]
  18914. ))
  18915. characterMakers.push(() => makeCharacter(
  18916. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18917. {
  18918. front: {
  18919. height: math.unit(5 + 1 / 12, "feet"),
  18920. weight: math.unit(84, "lb"),
  18921. name: "Front",
  18922. image: {
  18923. source: "./media/characters/magdalene/front.svg",
  18924. extra: 293 / 273
  18925. }
  18926. },
  18927. },
  18928. [
  18929. {
  18930. name: "Normal",
  18931. height: math.unit(5 + 1 / 12, "feet"),
  18932. default: true
  18933. },
  18934. ]
  18935. ))
  18936. characterMakers.push(() => makeCharacter(
  18937. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18938. {
  18939. front: {
  18940. height: math.unit(6 + 3 / 12, "feet"),
  18941. weight: math.unit(185, "lb"),
  18942. name: "Front",
  18943. image: {
  18944. source: "./media/characters/mera/front.svg",
  18945. extra: 291 / 277,
  18946. bottom: 0.03
  18947. }
  18948. },
  18949. },
  18950. [
  18951. {
  18952. name: "Normal",
  18953. height: math.unit(6 + 3 / 12, "feet"),
  18954. default: true
  18955. },
  18956. ]
  18957. ))
  18958. characterMakers.push(() => makeCharacter(
  18959. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18960. {
  18961. front: {
  18962. height: math.unit(6 + 7 / 12, "feet"),
  18963. weight: math.unit(160, "lb"),
  18964. name: "Front",
  18965. image: {
  18966. source: "./media/characters/ceres/front.svg",
  18967. extra: 1023 / 950,
  18968. bottom: 0.027
  18969. }
  18970. },
  18971. back: {
  18972. height: math.unit(6 + 7 / 12, "feet"),
  18973. weight: math.unit(160, "lb"),
  18974. name: "Back",
  18975. image: {
  18976. source: "./media/characters/ceres/back.svg",
  18977. extra: 1023 / 950
  18978. }
  18979. },
  18980. },
  18981. [
  18982. {
  18983. name: "Normal",
  18984. height: math.unit(6 + 7 / 12, "feet"),
  18985. default: true
  18986. },
  18987. ]
  18988. ))
  18989. characterMakers.push(() => makeCharacter(
  18990. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18991. {
  18992. front: {
  18993. height: math.unit(5 + 10 / 12, "feet"),
  18994. weight: math.unit(150, "lb"),
  18995. name: "Front",
  18996. image: {
  18997. source: "./media/characters/kris/front.svg",
  18998. extra: 885 / 803,
  18999. bottom: 0.03
  19000. }
  19001. },
  19002. },
  19003. [
  19004. {
  19005. name: "Normal",
  19006. height: math.unit(5 + 10 / 12, "feet"),
  19007. default: true
  19008. },
  19009. ]
  19010. ))
  19011. characterMakers.push(() => makeCharacter(
  19012. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19013. {
  19014. front: {
  19015. height: math.unit(7, "feet"),
  19016. weight: math.unit(120, "kg"),
  19017. name: "Front",
  19018. image: {
  19019. source: "./media/characters/taluthus/front.svg",
  19020. extra: 903 / 833,
  19021. bottom: 0.015
  19022. }
  19023. },
  19024. },
  19025. [
  19026. {
  19027. name: "Normal",
  19028. height: math.unit(7, "feet"),
  19029. default: true
  19030. },
  19031. {
  19032. name: "Macro",
  19033. height: math.unit(300, "feet")
  19034. },
  19035. ]
  19036. ))
  19037. characterMakers.push(() => makeCharacter(
  19038. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19039. {
  19040. front: {
  19041. height: math.unit(5 + 9 / 12, "feet"),
  19042. weight: math.unit(145, "lb"),
  19043. name: "Front",
  19044. image: {
  19045. source: "./media/characters/dawn/front.svg",
  19046. extra: 2094 / 2016,
  19047. bottom: 0.025
  19048. }
  19049. },
  19050. back: {
  19051. height: math.unit(5 + 9 / 12, "feet"),
  19052. weight: math.unit(160, "lb"),
  19053. name: "Back",
  19054. image: {
  19055. source: "./media/characters/dawn/back.svg",
  19056. extra: 2112 / 2080,
  19057. bottom: 0.005
  19058. }
  19059. },
  19060. },
  19061. [
  19062. {
  19063. name: "Normal",
  19064. height: math.unit(6 + 7 / 12, "feet"),
  19065. default: true
  19066. },
  19067. ]
  19068. ))
  19069. characterMakers.push(() => makeCharacter(
  19070. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19071. {
  19072. anthro: {
  19073. height: math.unit(8 + 3 / 12, "feet"),
  19074. weight: math.unit(450, "lb"),
  19075. name: "Anthro",
  19076. image: {
  19077. source: "./media/characters/arador/anthro.svg",
  19078. extra: 1835 / 1718,
  19079. bottom: 0.025
  19080. }
  19081. },
  19082. feral: {
  19083. height: math.unit(4, "feet"),
  19084. weight: math.unit(200, "lb"),
  19085. name: "Feral",
  19086. image: {
  19087. source: "./media/characters/arador/feral.svg",
  19088. extra: 1683 / 1514,
  19089. bottom: 0.07
  19090. }
  19091. },
  19092. },
  19093. [
  19094. {
  19095. name: "Normal",
  19096. height: math.unit(8 + 3 / 12, "feet")
  19097. },
  19098. {
  19099. name: "Macro",
  19100. height: math.unit(82.5, "feet"),
  19101. default: true
  19102. },
  19103. ]
  19104. ))
  19105. characterMakers.push(() => makeCharacter(
  19106. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19107. {
  19108. front: {
  19109. height: math.unit(5 + 10 / 12, "feet"),
  19110. weight: math.unit(125, "lb"),
  19111. name: "Front",
  19112. image: {
  19113. source: "./media/characters/dharsi/front.svg",
  19114. extra: 716 / 630,
  19115. bottom: 0.035
  19116. }
  19117. },
  19118. },
  19119. [
  19120. {
  19121. name: "Nano",
  19122. height: math.unit(100, "nm")
  19123. },
  19124. {
  19125. name: "Micro",
  19126. height: math.unit(2, "inches")
  19127. },
  19128. {
  19129. name: "Normal",
  19130. height: math.unit(5 + 10 / 12, "feet"),
  19131. default: true
  19132. },
  19133. {
  19134. name: "Macro",
  19135. height: math.unit(1000, "feet")
  19136. },
  19137. {
  19138. name: "Megamacro",
  19139. height: math.unit(10, "miles")
  19140. },
  19141. {
  19142. name: "Gigamacro",
  19143. height: math.unit(3000, "miles")
  19144. },
  19145. {
  19146. name: "Teramacro",
  19147. height: math.unit(500000, "miles")
  19148. },
  19149. {
  19150. name: "Teramacro+",
  19151. height: math.unit(30, "galaxies")
  19152. },
  19153. ]
  19154. ))
  19155. characterMakers.push(() => makeCharacter(
  19156. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19157. {
  19158. front: {
  19159. height: math.unit(6, "feet"),
  19160. weight: math.unit(150, "lb"),
  19161. name: "Front",
  19162. image: {
  19163. source: "./media/characters/deathy/front.svg",
  19164. extra: 1552 / 1463,
  19165. bottom: 0.025
  19166. }
  19167. },
  19168. side: {
  19169. height: math.unit(6, "feet"),
  19170. weight: math.unit(150, "lb"),
  19171. name: "Side",
  19172. image: {
  19173. source: "./media/characters/deathy/side.svg",
  19174. extra: 1604 / 1455,
  19175. bottom: 0.025
  19176. }
  19177. },
  19178. back: {
  19179. height: math.unit(6, "feet"),
  19180. weight: math.unit(150, "lb"),
  19181. name: "Back",
  19182. image: {
  19183. source: "./media/characters/deathy/back.svg",
  19184. extra: 1580 / 1463,
  19185. bottom: 0.005
  19186. }
  19187. },
  19188. },
  19189. [
  19190. {
  19191. name: "Micro",
  19192. height: math.unit(5, "millimeters")
  19193. },
  19194. {
  19195. name: "Normal",
  19196. height: math.unit(6 + 5 / 12, "feet"),
  19197. default: true
  19198. },
  19199. ]
  19200. ))
  19201. characterMakers.push(() => makeCharacter(
  19202. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19203. {
  19204. front: {
  19205. height: math.unit(16, "feet"),
  19206. weight: math.unit(4000, "lb"),
  19207. name: "Front",
  19208. image: {
  19209. source: "./media/characters/juniper/front.svg",
  19210. bottom: 0.04
  19211. }
  19212. },
  19213. },
  19214. [
  19215. {
  19216. name: "Normal",
  19217. height: math.unit(16, "feet"),
  19218. default: true
  19219. },
  19220. ]
  19221. ))
  19222. characterMakers.push(() => makeCharacter(
  19223. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19224. {
  19225. front: {
  19226. height: math.unit(6, "feet"),
  19227. weight: math.unit(150, "lb"),
  19228. name: "Front",
  19229. image: {
  19230. source: "./media/characters/hipster/front.svg",
  19231. extra: 1312 / 1209,
  19232. bottom: 0.025
  19233. }
  19234. },
  19235. back: {
  19236. height: math.unit(6, "feet"),
  19237. weight: math.unit(150, "lb"),
  19238. name: "Back",
  19239. image: {
  19240. source: "./media/characters/hipster/back.svg",
  19241. extra: 1281 / 1196,
  19242. bottom: 0.01
  19243. }
  19244. },
  19245. },
  19246. [
  19247. {
  19248. name: "Micro",
  19249. height: math.unit(1, "mm")
  19250. },
  19251. {
  19252. name: "Normal",
  19253. height: math.unit(4, "inches"),
  19254. default: true
  19255. },
  19256. {
  19257. name: "Macro",
  19258. height: math.unit(500, "feet")
  19259. },
  19260. {
  19261. name: "Megamacro",
  19262. height: math.unit(1000, "miles")
  19263. },
  19264. ]
  19265. ))
  19266. characterMakers.push(() => makeCharacter(
  19267. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19268. {
  19269. front: {
  19270. height: math.unit(6, "feet"),
  19271. weight: math.unit(150, "lb"),
  19272. name: "Front",
  19273. image: {
  19274. source: "./media/characters/tendirmuldr/front.svg",
  19275. extra: 1878 / 1772,
  19276. bottom: 0.015
  19277. }
  19278. },
  19279. },
  19280. [
  19281. {
  19282. name: "Megamacro",
  19283. height: math.unit(1500, "miles"),
  19284. default: true
  19285. },
  19286. ]
  19287. ))
  19288. characterMakers.push(() => makeCharacter(
  19289. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19290. {
  19291. front: {
  19292. height: math.unit(14, "feet"),
  19293. weight: math.unit(12000, "lb"),
  19294. name: "Front",
  19295. image: {
  19296. source: "./media/characters/mort/front.svg",
  19297. extra: 365 / 318,
  19298. bottom: 0.01
  19299. }
  19300. },
  19301. side: {
  19302. height: math.unit(14, "feet"),
  19303. weight: math.unit(12000, "lb"),
  19304. name: "Side",
  19305. image: {
  19306. source: "./media/characters/mort/side.svg",
  19307. extra: 365 / 318,
  19308. bottom: 0.052
  19309. },
  19310. default: true
  19311. },
  19312. back: {
  19313. height: math.unit(14, "feet"),
  19314. weight: math.unit(12000, "lb"),
  19315. name: "Back",
  19316. image: {
  19317. source: "./media/characters/mort/back.svg",
  19318. extra: 371 / 332,
  19319. bottom: 0.18
  19320. }
  19321. },
  19322. },
  19323. [
  19324. {
  19325. name: "Normal",
  19326. height: math.unit(14, "feet"),
  19327. default: true
  19328. },
  19329. ]
  19330. ))
  19331. characterMakers.push(() => makeCharacter(
  19332. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19333. {
  19334. front: {
  19335. height: math.unit(8, "feet"),
  19336. weight: math.unit(1, "ton"),
  19337. name: "Front",
  19338. image: {
  19339. source: "./media/characters/lycoa/front.svg",
  19340. extra: 1875 / 1789,
  19341. bottom: 0.022
  19342. }
  19343. },
  19344. back: {
  19345. height: math.unit(8, "feet"),
  19346. weight: math.unit(1, "ton"),
  19347. name: "Back",
  19348. image: {
  19349. source: "./media/characters/lycoa/back.svg",
  19350. extra: 1835 / 1781,
  19351. bottom: 0.03
  19352. }
  19353. },
  19354. head: {
  19355. height: math.unit(2.1, "feet"),
  19356. name: "Head",
  19357. image: {
  19358. source: "./media/characters/lycoa/head.svg"
  19359. }
  19360. },
  19361. tailmaw: {
  19362. height: math.unit(1.9, "feet"),
  19363. name: "Tailmaw",
  19364. image: {
  19365. source: "./media/characters/lycoa/tailmaw.svg"
  19366. }
  19367. },
  19368. tentacles: {
  19369. height: math.unit(2.1, "feet"),
  19370. name: "Tentacles",
  19371. image: {
  19372. source: "./media/characters/lycoa/tentacles.svg"
  19373. }
  19374. },
  19375. dick: {
  19376. height: math.unit(1.73, "feet"),
  19377. name: "Dick",
  19378. image: {
  19379. source: "./media/characters/lycoa/dick.svg"
  19380. }
  19381. },
  19382. },
  19383. [
  19384. {
  19385. name: "Normal",
  19386. height: math.unit(8, "feet"),
  19387. default: true
  19388. },
  19389. {
  19390. name: "Macro",
  19391. height: math.unit(30, "feet")
  19392. },
  19393. ]
  19394. ))
  19395. characterMakers.push(() => makeCharacter(
  19396. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19397. {
  19398. front: {
  19399. height: math.unit(4 + 2 / 12, "feet"),
  19400. weight: math.unit(70, "lb"),
  19401. name: "Front",
  19402. image: {
  19403. source: "./media/characters/naldara/front.svg",
  19404. extra: 841 / 720,
  19405. bottom: 0.04
  19406. }
  19407. },
  19408. naga: {
  19409. height: math.unit(23, "feet"),
  19410. weight: math.unit(15000, "kg"),
  19411. name: "Naga",
  19412. image: {
  19413. source: "./media/characters/naldara/naga.svg",
  19414. extra: 3290/2959,
  19415. bottom: 124/3432
  19416. }
  19417. },
  19418. },
  19419. [
  19420. {
  19421. name: "Normal",
  19422. height: math.unit(4 + 2 / 12, "feet"),
  19423. default: true
  19424. },
  19425. ]
  19426. ))
  19427. characterMakers.push(() => makeCharacter(
  19428. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19429. {
  19430. front: {
  19431. height: math.unit(13 + 7 / 12, "feet"),
  19432. weight: math.unit(1500, "lb"),
  19433. name: "Front",
  19434. image: {
  19435. source: "./media/characters/briar/front.svg",
  19436. extra: 626 / 596,
  19437. bottom: 0.08
  19438. }
  19439. },
  19440. },
  19441. [
  19442. {
  19443. name: "Normal",
  19444. height: math.unit(13 + 7 / 12, "feet"),
  19445. default: true
  19446. },
  19447. ]
  19448. ))
  19449. characterMakers.push(() => makeCharacter(
  19450. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19451. {
  19452. side: {
  19453. height: math.unit(10, "feet"),
  19454. weight: math.unit(500, "lb"),
  19455. name: "Side",
  19456. image: {
  19457. source: "./media/characters/vanguard/side.svg",
  19458. extra: 502 / 425,
  19459. bottom: 0.087
  19460. }
  19461. },
  19462. },
  19463. [
  19464. {
  19465. name: "Normal",
  19466. height: math.unit(10, "feet"),
  19467. default: true
  19468. },
  19469. ]
  19470. ))
  19471. characterMakers.push(() => makeCharacter(
  19472. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19473. {
  19474. front: {
  19475. height: math.unit(7.5, "feet"),
  19476. weight: math.unit(2, "lb"),
  19477. name: "Front",
  19478. image: {
  19479. source: "./media/characters/artemis/front.svg",
  19480. extra: 1192 / 1075,
  19481. bottom: 0.07
  19482. }
  19483. },
  19484. frontNsfw: {
  19485. height: math.unit(7.5, "feet"),
  19486. weight: math.unit(2, "lb"),
  19487. name: "Front (NSFW)",
  19488. image: {
  19489. source: "./media/characters/artemis/front-nsfw.svg",
  19490. extra: 1192 / 1075,
  19491. bottom: 0.07
  19492. }
  19493. },
  19494. frontNsfwer: {
  19495. height: math.unit(7.5, "feet"),
  19496. weight: math.unit(2, "lb"),
  19497. name: "Front (NSFW-er)",
  19498. image: {
  19499. source: "./media/characters/artemis/front-nsfwer.svg",
  19500. extra: 1192 / 1075,
  19501. bottom: 0.07
  19502. }
  19503. },
  19504. side: {
  19505. height: math.unit(7.5, "feet"),
  19506. weight: math.unit(2, "lb"),
  19507. name: "Side",
  19508. image: {
  19509. source: "./media/characters/artemis/side.svg",
  19510. extra: 1192 / 1075,
  19511. bottom: 0.07
  19512. }
  19513. },
  19514. sideNsfw: {
  19515. height: math.unit(7.5, "feet"),
  19516. weight: math.unit(2, "lb"),
  19517. name: "Side (NSFW)",
  19518. image: {
  19519. source: "./media/characters/artemis/side-nsfw.svg",
  19520. extra: 1192 / 1075,
  19521. bottom: 0.07
  19522. }
  19523. },
  19524. sideNsfwer: {
  19525. height: math.unit(7.5, "feet"),
  19526. weight: math.unit(2, "lb"),
  19527. name: "Side (NSFW-er)",
  19528. image: {
  19529. source: "./media/characters/artemis/side-nsfwer.svg",
  19530. extra: 1192 / 1075,
  19531. bottom: 0.07
  19532. }
  19533. },
  19534. maw: {
  19535. height: math.unit(1.1, "feet"),
  19536. name: "Maw",
  19537. image: {
  19538. source: "./media/characters/artemis/maw.svg"
  19539. }
  19540. },
  19541. stomach: {
  19542. height: math.unit(0.95, "feet"),
  19543. name: "Stomach",
  19544. image: {
  19545. source: "./media/characters/artemis/stomach.svg"
  19546. }
  19547. },
  19548. dickCanine: {
  19549. height: math.unit(1, "feet"),
  19550. name: "Dick (Canine)",
  19551. image: {
  19552. source: "./media/characters/artemis/dick-canine.svg"
  19553. }
  19554. },
  19555. dickEquine: {
  19556. height: math.unit(0.85, "feet"),
  19557. name: "Dick (Equine)",
  19558. image: {
  19559. source: "./media/characters/artemis/dick-equine.svg"
  19560. }
  19561. },
  19562. dickExotic: {
  19563. height: math.unit(0.85, "feet"),
  19564. name: "Dick (Exotic)",
  19565. image: {
  19566. source: "./media/characters/artemis/dick-exotic.svg"
  19567. }
  19568. },
  19569. },
  19570. [
  19571. {
  19572. name: "Normal",
  19573. height: math.unit(7.5, "feet"),
  19574. default: true
  19575. },
  19576. {
  19577. name: "Enlarged",
  19578. height: math.unit(12, "feet")
  19579. },
  19580. ]
  19581. ))
  19582. characterMakers.push(() => makeCharacter(
  19583. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19584. {
  19585. front: {
  19586. height: math.unit(5 + 3 / 12, "feet"),
  19587. weight: math.unit(160, "lb"),
  19588. name: "Front",
  19589. image: {
  19590. source: "./media/characters/kira/front.svg",
  19591. extra: 906 / 786,
  19592. bottom: 0.01
  19593. }
  19594. },
  19595. back: {
  19596. height: math.unit(5 + 3 / 12, "feet"),
  19597. weight: math.unit(160, "lb"),
  19598. name: "Back",
  19599. image: {
  19600. source: "./media/characters/kira/back.svg",
  19601. extra: 882 / 757,
  19602. bottom: 0.005
  19603. }
  19604. },
  19605. frontDressed: {
  19606. height: math.unit(5 + 3 / 12, "feet"),
  19607. weight: math.unit(160, "lb"),
  19608. name: "Front (Dressed)",
  19609. image: {
  19610. source: "./media/characters/kira/front-dressed.svg",
  19611. extra: 906 / 786,
  19612. bottom: 0.01
  19613. }
  19614. },
  19615. beans: {
  19616. height: math.unit(0.92, "feet"),
  19617. name: "Beans",
  19618. image: {
  19619. source: "./media/characters/kira/beans.svg"
  19620. }
  19621. },
  19622. },
  19623. [
  19624. {
  19625. name: "Normal",
  19626. height: math.unit(5 + 3 / 12, "feet"),
  19627. default: true
  19628. },
  19629. ]
  19630. ))
  19631. characterMakers.push(() => makeCharacter(
  19632. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19633. {
  19634. front: {
  19635. height: math.unit(5 + 4 / 12, "feet"),
  19636. weight: math.unit(145, "lb"),
  19637. name: "Front",
  19638. image: {
  19639. source: "./media/characters/scramble/front.svg",
  19640. extra: 763 / 727,
  19641. bottom: 0.05
  19642. }
  19643. },
  19644. back: {
  19645. height: math.unit(5 + 4 / 12, "feet"),
  19646. weight: math.unit(145, "lb"),
  19647. name: "Back",
  19648. image: {
  19649. source: "./media/characters/scramble/back.svg",
  19650. extra: 826 / 737,
  19651. bottom: 0.002
  19652. }
  19653. },
  19654. },
  19655. [
  19656. {
  19657. name: "Normal",
  19658. height: math.unit(5 + 4 / 12, "feet"),
  19659. default: true
  19660. },
  19661. ]
  19662. ))
  19663. characterMakers.push(() => makeCharacter(
  19664. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19665. {
  19666. side: {
  19667. height: math.unit(6 + 2 / 12, "feet"),
  19668. weight: math.unit(190, "lb"),
  19669. name: "Side",
  19670. image: {
  19671. source: "./media/characters/biscuit/side.svg",
  19672. extra: 858 / 791,
  19673. bottom: 0.044
  19674. }
  19675. },
  19676. },
  19677. [
  19678. {
  19679. name: "Normal",
  19680. height: math.unit(6 + 2 / 12, "feet"),
  19681. default: true
  19682. },
  19683. ]
  19684. ))
  19685. characterMakers.push(() => makeCharacter(
  19686. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19687. {
  19688. front: {
  19689. height: math.unit(5 + 2 / 12, "feet"),
  19690. weight: math.unit(120, "lb"),
  19691. name: "Front",
  19692. image: {
  19693. source: "./media/characters/poffin/front.svg",
  19694. extra: 786 / 680,
  19695. bottom: 0.005
  19696. }
  19697. },
  19698. },
  19699. [
  19700. {
  19701. name: "Normal",
  19702. height: math.unit(5 + 2 / 12, "feet"),
  19703. default: true
  19704. },
  19705. ]
  19706. ))
  19707. characterMakers.push(() => makeCharacter(
  19708. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19709. {
  19710. front: {
  19711. height: math.unit(6 + 3 / 12, "feet"),
  19712. weight: math.unit(519, "lb"),
  19713. name: "Front",
  19714. image: {
  19715. source: "./media/characters/dhari/front.svg",
  19716. extra: 1048 / 946,
  19717. bottom: 0.015
  19718. }
  19719. },
  19720. back: {
  19721. height: math.unit(6 + 3 / 12, "feet"),
  19722. weight: math.unit(519, "lb"),
  19723. name: "Back",
  19724. image: {
  19725. source: "./media/characters/dhari/back.svg",
  19726. extra: 1048 / 931,
  19727. bottom: 0.005
  19728. }
  19729. },
  19730. frontDressed: {
  19731. height: math.unit(6 + 3 / 12, "feet"),
  19732. weight: math.unit(519, "lb"),
  19733. name: "Front (Dressed)",
  19734. image: {
  19735. source: "./media/characters/dhari/front-dressed.svg",
  19736. extra: 1713 / 1546,
  19737. bottom: 0.02
  19738. }
  19739. },
  19740. backDressed: {
  19741. height: math.unit(6 + 3 / 12, "feet"),
  19742. weight: math.unit(519, "lb"),
  19743. name: "Back (Dressed)",
  19744. image: {
  19745. source: "./media/characters/dhari/back-dressed.svg",
  19746. extra: 1699 / 1537,
  19747. bottom: 0.01
  19748. }
  19749. },
  19750. maw: {
  19751. height: math.unit(0.95, "feet"),
  19752. name: "Maw",
  19753. image: {
  19754. source: "./media/characters/dhari/maw.svg"
  19755. }
  19756. },
  19757. wereFront: {
  19758. height: math.unit(12 + 8 / 12, "feet"),
  19759. weight: math.unit(4000, "lb"),
  19760. name: "Front (Were)",
  19761. image: {
  19762. source: "./media/characters/dhari/were-front.svg",
  19763. extra: 1065 / 969,
  19764. bottom: 0.015
  19765. }
  19766. },
  19767. wereBack: {
  19768. height: math.unit(12 + 8 / 12, "feet"),
  19769. weight: math.unit(4000, "lb"),
  19770. name: "Back (Were)",
  19771. image: {
  19772. source: "./media/characters/dhari/were-back.svg",
  19773. extra: 1065 / 969,
  19774. bottom: 0.012
  19775. }
  19776. },
  19777. wereMaw: {
  19778. height: math.unit(0.625, "meters"),
  19779. name: "Maw (Were)",
  19780. image: {
  19781. source: "./media/characters/dhari/were-maw.svg"
  19782. }
  19783. },
  19784. },
  19785. [
  19786. {
  19787. name: "Normal",
  19788. height: math.unit(6 + 3 / 12, "feet"),
  19789. default: true
  19790. },
  19791. ]
  19792. ))
  19793. characterMakers.push(() => makeCharacter(
  19794. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19795. {
  19796. anthro: {
  19797. height: math.unit(5 + 7 / 12, "feet"),
  19798. weight: math.unit(175, "lb"),
  19799. name: "Anthro",
  19800. image: {
  19801. source: "./media/characters/rena-dyne/anthro.svg",
  19802. extra: 1849 / 1785,
  19803. bottom: 0.005
  19804. }
  19805. },
  19806. taur: {
  19807. height: math.unit(15 + 6 / 12, "feet"),
  19808. weight: math.unit(8000, "lb"),
  19809. name: "Taur",
  19810. image: {
  19811. source: "./media/characters/rena-dyne/taur.svg",
  19812. extra: 2315 / 2234,
  19813. bottom: 0.033
  19814. }
  19815. },
  19816. },
  19817. [
  19818. {
  19819. name: "Normal",
  19820. height: math.unit(5 + 7 / 12, "feet"),
  19821. default: true
  19822. },
  19823. ]
  19824. ))
  19825. characterMakers.push(() => makeCharacter(
  19826. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19827. {
  19828. front: {
  19829. height: math.unit(8, "feet"),
  19830. weight: math.unit(600, "lb"),
  19831. name: "Front",
  19832. image: {
  19833. source: "./media/characters/weremeep/front.svg",
  19834. extra: 967 / 862,
  19835. bottom: 0.01
  19836. }
  19837. },
  19838. },
  19839. [
  19840. {
  19841. name: "Normal",
  19842. height: math.unit(8, "feet"),
  19843. default: true
  19844. },
  19845. {
  19846. name: "Lorg",
  19847. height: math.unit(12, "feet")
  19848. },
  19849. {
  19850. name: "Oh Lawd She Comin'",
  19851. height: math.unit(20, "feet")
  19852. },
  19853. ]
  19854. ))
  19855. characterMakers.push(() => makeCharacter(
  19856. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19857. {
  19858. front: {
  19859. height: math.unit(4, "feet"),
  19860. weight: math.unit(90, "lb"),
  19861. name: "Front",
  19862. image: {
  19863. source: "./media/characters/reza/front.svg",
  19864. extra: 1183 / 1111,
  19865. bottom: 0.017
  19866. }
  19867. },
  19868. back: {
  19869. height: math.unit(4, "feet"),
  19870. weight: math.unit(90, "lb"),
  19871. name: "Back",
  19872. image: {
  19873. source: "./media/characters/reza/back.svg",
  19874. extra: 1183 / 1111,
  19875. bottom: 0.01
  19876. }
  19877. },
  19878. drake: {
  19879. height: math.unit(30, "feet"),
  19880. weight: math.unit(246960, "lb"),
  19881. name: "Drake",
  19882. image: {
  19883. source: "./media/characters/reza/drake.svg",
  19884. extra: 2350 / 2024,
  19885. bottom: 60.7 / 2403
  19886. }
  19887. },
  19888. },
  19889. [
  19890. {
  19891. name: "Normal",
  19892. height: math.unit(4, "feet"),
  19893. default: true
  19894. },
  19895. ]
  19896. ))
  19897. characterMakers.push(() => makeCharacter(
  19898. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19899. {
  19900. side: {
  19901. height: math.unit(15, "feet"),
  19902. weight: math.unit(14, "tons"),
  19903. name: "Side",
  19904. image: {
  19905. source: "./media/characters/athea/side.svg",
  19906. extra: 960 / 540,
  19907. bottom: 0.003
  19908. }
  19909. },
  19910. sitting: {
  19911. height: math.unit(6 * 2.85, "feet"),
  19912. weight: math.unit(14, "tons"),
  19913. name: "Sitting",
  19914. image: {
  19915. source: "./media/characters/athea/sitting.svg",
  19916. extra: 621 / 581,
  19917. bottom: 0.075
  19918. }
  19919. },
  19920. maw: {
  19921. height: math.unit(7.59498031496063, "feet"),
  19922. name: "Maw",
  19923. image: {
  19924. source: "./media/characters/athea/maw.svg"
  19925. }
  19926. },
  19927. },
  19928. [
  19929. {
  19930. name: "Lap Cat",
  19931. height: math.unit(2.5, "feet")
  19932. },
  19933. {
  19934. name: "Minimacro",
  19935. height: math.unit(15, "feet"),
  19936. default: true
  19937. },
  19938. {
  19939. name: "Macro",
  19940. height: math.unit(120, "feet")
  19941. },
  19942. {
  19943. name: "Macro+",
  19944. height: math.unit(640, "feet")
  19945. },
  19946. {
  19947. name: "Colossus",
  19948. height: math.unit(2.2, "miles")
  19949. },
  19950. ]
  19951. ))
  19952. characterMakers.push(() => makeCharacter(
  19953. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19954. {
  19955. front: {
  19956. height: math.unit(8 + 8 / 12, "feet"),
  19957. weight: math.unit(130, "kg"),
  19958. name: "Front",
  19959. image: {
  19960. source: "./media/characters/seroko/front.svg",
  19961. extra: 1385 / 1280,
  19962. bottom: 0.025
  19963. }
  19964. },
  19965. back: {
  19966. height: math.unit(8 + 8 / 12, "feet"),
  19967. weight: math.unit(130, "kg"),
  19968. name: "Back",
  19969. image: {
  19970. source: "./media/characters/seroko/back.svg",
  19971. extra: 1369 / 1238,
  19972. bottom: 0.018
  19973. }
  19974. },
  19975. frontDressed: {
  19976. height: math.unit(8 + 8 / 12, "feet"),
  19977. weight: math.unit(130, "kg"),
  19978. name: "Front (Dressed)",
  19979. image: {
  19980. source: "./media/characters/seroko/front-dressed.svg",
  19981. extra: 1366 / 1275,
  19982. bottom: 0.03
  19983. }
  19984. },
  19985. },
  19986. [
  19987. {
  19988. name: "Normal",
  19989. height: math.unit(8 + 8 / 12, "feet"),
  19990. default: true
  19991. },
  19992. ]
  19993. ))
  19994. characterMakers.push(() => makeCharacter(
  19995. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19996. {
  19997. front: {
  19998. height: math.unit(5.5, "feet"),
  19999. weight: math.unit(160, "lb"),
  20000. name: "Front",
  20001. image: {
  20002. source: "./media/characters/quatzi/front.svg",
  20003. extra: 2346 / 2242,
  20004. bottom: 0.015
  20005. }
  20006. },
  20007. },
  20008. [
  20009. {
  20010. name: "Normal",
  20011. height: math.unit(5.5, "feet"),
  20012. default: true
  20013. },
  20014. {
  20015. name: "Big",
  20016. height: math.unit(7.7, "feet")
  20017. },
  20018. ]
  20019. ))
  20020. characterMakers.push(() => makeCharacter(
  20021. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20022. {
  20023. front: {
  20024. height: math.unit(5 + 11 / 12, "feet"),
  20025. weight: math.unit(180, "lb"),
  20026. name: "Front",
  20027. image: {
  20028. source: "./media/characters/sen/front.svg",
  20029. extra: 1321 / 1254,
  20030. bottom: 0.015
  20031. }
  20032. },
  20033. side: {
  20034. height: math.unit(5 + 11 / 12, "feet"),
  20035. weight: math.unit(180, "lb"),
  20036. name: "Side",
  20037. image: {
  20038. source: "./media/characters/sen/side.svg",
  20039. extra: 1321 / 1254,
  20040. bottom: 0.007
  20041. }
  20042. },
  20043. back: {
  20044. height: math.unit(5 + 11 / 12, "feet"),
  20045. weight: math.unit(180, "lb"),
  20046. name: "Back",
  20047. image: {
  20048. source: "./media/characters/sen/back.svg",
  20049. extra: 1321 / 1254
  20050. }
  20051. },
  20052. },
  20053. [
  20054. {
  20055. name: "Normal",
  20056. height: math.unit(5 + 11 / 12, "feet"),
  20057. default: true
  20058. },
  20059. ]
  20060. ))
  20061. characterMakers.push(() => makeCharacter(
  20062. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20063. {
  20064. front: {
  20065. height: math.unit(166.6, "cm"),
  20066. weight: math.unit(66.6, "kg"),
  20067. name: "Front",
  20068. image: {
  20069. source: "./media/characters/fruity/front.svg",
  20070. extra: 1510 / 1386,
  20071. bottom: 0.04
  20072. }
  20073. },
  20074. back: {
  20075. height: math.unit(166.6, "cm"),
  20076. weight: math.unit(66.6, "lb"),
  20077. name: "Back",
  20078. image: {
  20079. source: "./media/characters/fruity/back.svg",
  20080. extra: 1563 / 1435,
  20081. bottom: 0.005
  20082. }
  20083. },
  20084. },
  20085. [
  20086. {
  20087. name: "Normal",
  20088. height: math.unit(166.6, "cm"),
  20089. default: true
  20090. },
  20091. {
  20092. name: "Demonic",
  20093. height: math.unit(166.6, "feet")
  20094. },
  20095. ]
  20096. ))
  20097. characterMakers.push(() => makeCharacter(
  20098. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20099. {
  20100. side: {
  20101. height: math.unit(10, "feet"),
  20102. weight: math.unit(500, "lb"),
  20103. name: "Side",
  20104. image: {
  20105. source: "./media/characters/zost/side.svg",
  20106. extra: 966 / 880,
  20107. bottom: 0.075
  20108. }
  20109. },
  20110. mawFront: {
  20111. height: math.unit(1.08, "meters"),
  20112. name: "Maw (Front)",
  20113. image: {
  20114. source: "./media/characters/zost/maw-front.svg"
  20115. }
  20116. },
  20117. mawSide: {
  20118. height: math.unit(2.66, "feet"),
  20119. name: "Maw (Side)",
  20120. image: {
  20121. source: "./media/characters/zost/maw-side.svg"
  20122. }
  20123. },
  20124. },
  20125. [
  20126. {
  20127. name: "Normal",
  20128. height: math.unit(10, "feet"),
  20129. default: true
  20130. },
  20131. ]
  20132. ))
  20133. characterMakers.push(() => makeCharacter(
  20134. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20135. {
  20136. front: {
  20137. height: math.unit(5 + 4 / 12, "feet"),
  20138. weight: math.unit(120, "lb"),
  20139. name: "Front",
  20140. image: {
  20141. source: "./media/characters/luci/front.svg",
  20142. extra: 1985 / 1884,
  20143. bottom: 0.04
  20144. }
  20145. },
  20146. back: {
  20147. height: math.unit(5 + 4 / 12, "feet"),
  20148. weight: math.unit(120, "lb"),
  20149. name: "Back",
  20150. image: {
  20151. source: "./media/characters/luci/back.svg",
  20152. extra: 1892 / 1791,
  20153. bottom: 0.002
  20154. }
  20155. },
  20156. },
  20157. [
  20158. {
  20159. name: "Normal",
  20160. height: math.unit(5 + 4 / 12, "feet"),
  20161. default: true
  20162. },
  20163. ]
  20164. ))
  20165. characterMakers.push(() => makeCharacter(
  20166. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20167. {
  20168. front: {
  20169. height: math.unit(1500, "feet"),
  20170. weight: math.unit(3.8e6, "tons"),
  20171. name: "Front",
  20172. image: {
  20173. source: "./media/characters/2th/front.svg",
  20174. extra: 3489 / 3350,
  20175. bottom: 0.1
  20176. }
  20177. },
  20178. foot: {
  20179. height: math.unit(461, "feet"),
  20180. name: "Foot",
  20181. image: {
  20182. source: "./media/characters/2th/foot.svg"
  20183. }
  20184. },
  20185. },
  20186. [
  20187. {
  20188. name: "\"Micro\"",
  20189. height: math.unit(15 + 7 / 12, "feet")
  20190. },
  20191. {
  20192. name: "Normal",
  20193. height: math.unit(1500, "feet"),
  20194. default: true
  20195. },
  20196. {
  20197. name: "Macro",
  20198. height: math.unit(5000, "feet")
  20199. },
  20200. {
  20201. name: "Megamacro",
  20202. height: math.unit(15, "miles")
  20203. },
  20204. {
  20205. name: "Gigamacro",
  20206. height: math.unit(4000, "miles")
  20207. },
  20208. {
  20209. name: "Galactic",
  20210. height: math.unit(50, "AU")
  20211. },
  20212. ]
  20213. ))
  20214. characterMakers.push(() => makeCharacter(
  20215. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20216. {
  20217. front: {
  20218. height: math.unit(5 + 6 / 12, "feet"),
  20219. weight: math.unit(220, "lb"),
  20220. name: "Front",
  20221. image: {
  20222. source: "./media/characters/amethyst/front.svg",
  20223. extra: 2078 / 2040,
  20224. bottom: 0.045
  20225. }
  20226. },
  20227. back: {
  20228. height: math.unit(5 + 6 / 12, "feet"),
  20229. weight: math.unit(220, "lb"),
  20230. name: "Back",
  20231. image: {
  20232. source: "./media/characters/amethyst/back.svg",
  20233. extra: 2021 / 1989,
  20234. bottom: 0.02
  20235. }
  20236. },
  20237. },
  20238. [
  20239. {
  20240. name: "Normal",
  20241. height: math.unit(5 + 6 / 12, "feet"),
  20242. default: true
  20243. },
  20244. ]
  20245. ))
  20246. characterMakers.push(() => makeCharacter(
  20247. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20248. {
  20249. front: {
  20250. height: math.unit(4 + 11 / 12, "feet"),
  20251. weight: math.unit(120, "lb"),
  20252. name: "Front",
  20253. image: {
  20254. source: "./media/characters/yumi-akiyama/front.svg",
  20255. extra: 1327 / 1235,
  20256. bottom: 0.02
  20257. }
  20258. },
  20259. back: {
  20260. height: math.unit(4 + 11 / 12, "feet"),
  20261. weight: math.unit(120, "lb"),
  20262. name: "Back",
  20263. image: {
  20264. source: "./media/characters/yumi-akiyama/back.svg",
  20265. extra: 1287 / 1245,
  20266. bottom: 0.002
  20267. }
  20268. },
  20269. },
  20270. [
  20271. {
  20272. name: "Galactic",
  20273. height: math.unit(50, "galaxies"),
  20274. default: true
  20275. },
  20276. {
  20277. name: "Universal",
  20278. height: math.unit(100, "universes")
  20279. },
  20280. ]
  20281. ))
  20282. characterMakers.push(() => makeCharacter(
  20283. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20284. {
  20285. front: {
  20286. height: math.unit(8, "feet"),
  20287. weight: math.unit(500, "lb"),
  20288. name: "Front",
  20289. image: {
  20290. source: "./media/characters/rifter-yrmori/front.svg",
  20291. extra: 1180 / 1125,
  20292. bottom: 0.02
  20293. }
  20294. },
  20295. back: {
  20296. height: math.unit(8, "feet"),
  20297. weight: math.unit(500, "lb"),
  20298. name: "Back",
  20299. image: {
  20300. source: "./media/characters/rifter-yrmori/back.svg",
  20301. extra: 1190 / 1145,
  20302. bottom: 0.001
  20303. }
  20304. },
  20305. wings: {
  20306. height: math.unit(7.75, "feet"),
  20307. weight: math.unit(500, "lb"),
  20308. name: "Wings",
  20309. image: {
  20310. source: "./media/characters/rifter-yrmori/wings.svg",
  20311. extra: 1357 / 1285
  20312. }
  20313. },
  20314. maw: {
  20315. height: math.unit(0.8, "feet"),
  20316. name: "Maw",
  20317. image: {
  20318. source: "./media/characters/rifter-yrmori/maw.svg"
  20319. }
  20320. },
  20321. mawfront: {
  20322. height: math.unit(1.45, "feet"),
  20323. name: "Maw (Front)",
  20324. image: {
  20325. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20326. }
  20327. },
  20328. },
  20329. [
  20330. {
  20331. name: "Normal",
  20332. height: math.unit(8, "feet"),
  20333. default: true
  20334. },
  20335. {
  20336. name: "Macro",
  20337. height: math.unit(42, "meters")
  20338. },
  20339. ]
  20340. ))
  20341. characterMakers.push(() => makeCharacter(
  20342. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20343. {
  20344. were: {
  20345. height: math.unit(25 + 6 / 12, "feet"),
  20346. weight: math.unit(10000, "lb"),
  20347. name: "Were",
  20348. image: {
  20349. source: "./media/characters/tahajin/were.svg",
  20350. extra: 801 / 770,
  20351. bottom: 0.042
  20352. }
  20353. },
  20354. aquatic: {
  20355. height: math.unit(6 + 4 / 12, "feet"),
  20356. weight: math.unit(160, "lb"),
  20357. name: "Aquatic",
  20358. image: {
  20359. source: "./media/characters/tahajin/aquatic.svg",
  20360. extra: 572 / 542,
  20361. bottom: 0.04
  20362. }
  20363. },
  20364. chow: {
  20365. height: math.unit(8 + 11 / 12, "feet"),
  20366. weight: math.unit(450, "lb"),
  20367. name: "Chow",
  20368. image: {
  20369. source: "./media/characters/tahajin/chow.svg",
  20370. extra: 660 / 640,
  20371. bottom: 0.015
  20372. }
  20373. },
  20374. demiNaga: {
  20375. height: math.unit(6 + 8 / 12, "feet"),
  20376. weight: math.unit(300, "lb"),
  20377. name: "Demi Naga",
  20378. image: {
  20379. source: "./media/characters/tahajin/demi-naga.svg",
  20380. extra: 643 / 615,
  20381. bottom: 0.1
  20382. }
  20383. },
  20384. data: {
  20385. height: math.unit(5, "inches"),
  20386. weight: math.unit(0.1, "lb"),
  20387. name: "Data",
  20388. image: {
  20389. source: "./media/characters/tahajin/data.svg"
  20390. }
  20391. },
  20392. fluu: {
  20393. height: math.unit(5 + 7 / 12, "feet"),
  20394. weight: math.unit(140, "lb"),
  20395. name: "Fluu",
  20396. image: {
  20397. source: "./media/characters/tahajin/fluu.svg",
  20398. extra: 628 / 592,
  20399. bottom: 0.02
  20400. }
  20401. },
  20402. starWarrior: {
  20403. height: math.unit(4 + 5 / 12, "feet"),
  20404. weight: math.unit(50, "lb"),
  20405. name: "Star Warrior",
  20406. image: {
  20407. source: "./media/characters/tahajin/star-warrior.svg"
  20408. }
  20409. },
  20410. },
  20411. [
  20412. {
  20413. name: "Normal",
  20414. height: math.unit(25 + 6 / 12, "feet"),
  20415. default: true
  20416. },
  20417. ]
  20418. ))
  20419. characterMakers.push(() => makeCharacter(
  20420. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20421. {
  20422. front: {
  20423. height: math.unit(8, "feet"),
  20424. weight: math.unit(350, "lb"),
  20425. name: "Front",
  20426. image: {
  20427. source: "./media/characters/gabira/front.svg",
  20428. extra: 608 / 580,
  20429. bottom: 0.03
  20430. }
  20431. },
  20432. back: {
  20433. height: math.unit(8, "feet"),
  20434. weight: math.unit(350, "lb"),
  20435. name: "Back",
  20436. image: {
  20437. source: "./media/characters/gabira/back.svg",
  20438. extra: 608 / 580,
  20439. bottom: 0.03
  20440. }
  20441. },
  20442. },
  20443. [
  20444. {
  20445. name: "Normal",
  20446. height: math.unit(8, "feet"),
  20447. default: true
  20448. },
  20449. ]
  20450. ))
  20451. characterMakers.push(() => makeCharacter(
  20452. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20453. {
  20454. front: {
  20455. height: math.unit(5 + 3 / 12, "feet"),
  20456. weight: math.unit(137, "lb"),
  20457. name: "Front",
  20458. image: {
  20459. source: "./media/characters/sasha-katraine/front.svg",
  20460. bottom: 0.045
  20461. }
  20462. },
  20463. },
  20464. [
  20465. {
  20466. name: "Micro",
  20467. height: math.unit(5, "inches")
  20468. },
  20469. {
  20470. name: "Normal",
  20471. height: math.unit(5 + 3 / 12, "feet"),
  20472. default: true
  20473. },
  20474. ]
  20475. ))
  20476. characterMakers.push(() => makeCharacter(
  20477. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20478. {
  20479. side: {
  20480. height: math.unit(4, "inches"),
  20481. weight: math.unit(200, "grams"),
  20482. name: "Side",
  20483. image: {
  20484. source: "./media/characters/der/side.svg",
  20485. extra: 719 / 400,
  20486. bottom: 30.6 / 749.9187
  20487. }
  20488. },
  20489. },
  20490. [
  20491. {
  20492. name: "Micro",
  20493. height: math.unit(4, "inches"),
  20494. default: true
  20495. },
  20496. ]
  20497. ))
  20498. characterMakers.push(() => makeCharacter(
  20499. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20500. {
  20501. side: {
  20502. height: math.unit(30, "meters"),
  20503. weight: math.unit(700, "tonnes"),
  20504. name: "Side",
  20505. image: {
  20506. source: "./media/characters/fixerdragon/side.svg",
  20507. extra: (1293.0514 - 116.03) / 1106.86,
  20508. bottom: 116.03 / 1293.0514
  20509. }
  20510. },
  20511. },
  20512. [
  20513. {
  20514. name: "Planck",
  20515. height: math.unit(1.6e-35, "meters")
  20516. },
  20517. {
  20518. name: "Micro",
  20519. height: math.unit(0.4, "meters")
  20520. },
  20521. {
  20522. name: "Normal",
  20523. height: math.unit(30, "meters"),
  20524. default: true
  20525. },
  20526. {
  20527. name: "Megamacro",
  20528. height: math.unit(1.2, "megameters")
  20529. },
  20530. {
  20531. name: "Teramacro",
  20532. height: math.unit(130, "terameters")
  20533. },
  20534. {
  20535. name: "Yottamacro",
  20536. height: math.unit(6200, "yottameters")
  20537. },
  20538. ]
  20539. ));
  20540. characterMakers.push(() => makeCharacter(
  20541. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20542. {
  20543. front: {
  20544. height: math.unit(8, "feet"),
  20545. weight: math.unit(250, "lb"),
  20546. name: "Front",
  20547. image: {
  20548. source: "./media/characters/kite/front.svg",
  20549. extra: 2796 / 2659,
  20550. bottom: 0.002
  20551. }
  20552. },
  20553. },
  20554. [
  20555. {
  20556. name: "Normal",
  20557. height: math.unit(8, "feet"),
  20558. default: true
  20559. },
  20560. {
  20561. name: "Macro",
  20562. height: math.unit(360, "feet")
  20563. },
  20564. {
  20565. name: "Megamacro",
  20566. height: math.unit(1500, "feet")
  20567. },
  20568. ]
  20569. ))
  20570. characterMakers.push(() => makeCharacter(
  20571. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20572. {
  20573. front: {
  20574. height: math.unit(5 + 10 / 12, "feet"),
  20575. weight: math.unit(150, "lb"),
  20576. name: "Front",
  20577. image: {
  20578. source: "./media/characters/poojawa-vynar/front.svg",
  20579. extra: (1506.1547 - 55) / 1356.6,
  20580. bottom: 55 / 1506.1547
  20581. }
  20582. },
  20583. frontTailless: {
  20584. height: math.unit(5 + 10 / 12, "feet"),
  20585. weight: math.unit(150, "lb"),
  20586. name: "Front (Tailless)",
  20587. image: {
  20588. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20589. extra: (1506.1547 - 55) / 1356.6,
  20590. bottom: 55 / 1506.1547
  20591. }
  20592. },
  20593. },
  20594. [
  20595. {
  20596. name: "Normal",
  20597. height: math.unit(5 + 10 / 12, "feet"),
  20598. default: true
  20599. },
  20600. ]
  20601. ))
  20602. characterMakers.push(() => makeCharacter(
  20603. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20604. {
  20605. front: {
  20606. height: math.unit(293, "meters"),
  20607. weight: math.unit(70400, "tons"),
  20608. name: "Front",
  20609. image: {
  20610. source: "./media/characters/violette/front.svg",
  20611. extra: 1227 / 1180,
  20612. bottom: 0.005
  20613. }
  20614. },
  20615. back: {
  20616. height: math.unit(293, "meters"),
  20617. weight: math.unit(70400, "tons"),
  20618. name: "Back",
  20619. image: {
  20620. source: "./media/characters/violette/back.svg",
  20621. extra: 1227 / 1180,
  20622. bottom: 0.005
  20623. }
  20624. },
  20625. },
  20626. [
  20627. {
  20628. name: "Macro",
  20629. height: math.unit(293, "meters"),
  20630. default: true
  20631. },
  20632. ]
  20633. ))
  20634. characterMakers.push(() => makeCharacter(
  20635. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20636. {
  20637. front: {
  20638. height: math.unit(1050, "feet"),
  20639. weight: math.unit(200000, "tons"),
  20640. name: "Front",
  20641. image: {
  20642. source: "./media/characters/alessandra/front.svg",
  20643. extra: 960 / 912,
  20644. bottom: 0.06
  20645. }
  20646. },
  20647. },
  20648. [
  20649. {
  20650. name: "Macro",
  20651. height: math.unit(1050, "feet")
  20652. },
  20653. {
  20654. name: "Macro+",
  20655. height: math.unit(900, "meters"),
  20656. default: true
  20657. },
  20658. ]
  20659. ))
  20660. characterMakers.push(() => makeCharacter(
  20661. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20662. {
  20663. front: {
  20664. height: math.unit(5, "feet"),
  20665. weight: math.unit(187, "lb"),
  20666. name: "Front",
  20667. image: {
  20668. source: "./media/characters/person/front.svg",
  20669. extra: 3087 / 2945,
  20670. bottom: 91 / 3181
  20671. }
  20672. },
  20673. },
  20674. [
  20675. {
  20676. name: "Micro",
  20677. height: math.unit(3, "inches")
  20678. },
  20679. {
  20680. name: "Normal",
  20681. height: math.unit(5, "feet"),
  20682. default: true
  20683. },
  20684. {
  20685. name: "Macro",
  20686. height: math.unit(90, "feet")
  20687. },
  20688. {
  20689. name: "Max Size",
  20690. height: math.unit(280, "feet")
  20691. },
  20692. ]
  20693. ))
  20694. characterMakers.push(() => makeCharacter(
  20695. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20696. {
  20697. front: {
  20698. height: math.unit(4.5, "meters"),
  20699. weight: math.unit(3200, "lb"),
  20700. name: "Front",
  20701. image: {
  20702. source: "./media/characters/ty/front.svg",
  20703. extra: 1038 / 960,
  20704. bottom: 31.156 / 1068
  20705. }
  20706. },
  20707. back: {
  20708. height: math.unit(4.5, "meters"),
  20709. weight: math.unit(3200, "lb"),
  20710. name: "Back",
  20711. image: {
  20712. source: "./media/characters/ty/back.svg",
  20713. extra: 1044 / 966,
  20714. bottom: 7.48 / 1049
  20715. }
  20716. },
  20717. },
  20718. [
  20719. {
  20720. name: "Normal",
  20721. height: math.unit(4.5, "meters"),
  20722. default: true
  20723. },
  20724. ]
  20725. ))
  20726. characterMakers.push(() => makeCharacter(
  20727. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20728. {
  20729. front: {
  20730. height: math.unit(5 + 4 / 12, "feet"),
  20731. weight: math.unit(115, "lb"),
  20732. name: "Front",
  20733. image: {
  20734. source: "./media/characters/rocky/front.svg",
  20735. extra: 1012 / 975,
  20736. bottom: 54 / 1066
  20737. }
  20738. },
  20739. },
  20740. [
  20741. {
  20742. name: "Normal",
  20743. height: math.unit(5 + 4 / 12, "feet"),
  20744. default: true
  20745. },
  20746. ]
  20747. ))
  20748. characterMakers.push(() => makeCharacter(
  20749. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20750. {
  20751. upright: {
  20752. height: math.unit(6, "meters"),
  20753. weight: math.unit(4000, "kg"),
  20754. name: "Upright",
  20755. image: {
  20756. source: "./media/characters/ruin/upright.svg",
  20757. extra: 668 / 661,
  20758. bottom: 42 / 799.8396
  20759. }
  20760. },
  20761. },
  20762. [
  20763. {
  20764. name: "Normal",
  20765. height: math.unit(6, "meters"),
  20766. default: true
  20767. },
  20768. ]
  20769. ))
  20770. characterMakers.push(() => makeCharacter(
  20771. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20772. {
  20773. front: {
  20774. height: math.unit(5, "feet"),
  20775. weight: math.unit(106, "lb"),
  20776. name: "Front",
  20777. image: {
  20778. source: "./media/characters/robin/front.svg",
  20779. extra: 862 / 799,
  20780. bottom: 42.4 / 914.8856
  20781. }
  20782. },
  20783. },
  20784. [
  20785. {
  20786. name: "Normal",
  20787. height: math.unit(5, "feet"),
  20788. default: true
  20789. },
  20790. ]
  20791. ))
  20792. characterMakers.push(() => makeCharacter(
  20793. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20794. {
  20795. side: {
  20796. height: math.unit(3, "feet"),
  20797. weight: math.unit(225, "lb"),
  20798. name: "Side",
  20799. image: {
  20800. source: "./media/characters/saian/side.svg",
  20801. extra: 566 / 356,
  20802. bottom: 79.7 / 643
  20803. }
  20804. },
  20805. maw: {
  20806. height: math.unit(2.85, "feet"),
  20807. name: "Maw",
  20808. image: {
  20809. source: "./media/characters/saian/maw.svg"
  20810. }
  20811. },
  20812. },
  20813. [
  20814. {
  20815. name: "Normal",
  20816. height: math.unit(3, "feet"),
  20817. default: true
  20818. },
  20819. ]
  20820. ))
  20821. characterMakers.push(() => makeCharacter(
  20822. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20823. {
  20824. side: {
  20825. height: math.unit(8, "feet"),
  20826. weight: math.unit(300, "lb"),
  20827. name: "Side",
  20828. image: {
  20829. source: "./media/characters/equus-silvermane/side.svg",
  20830. extra: 2176 / 2050,
  20831. bottom: 65.7 / 2245
  20832. }
  20833. },
  20834. front: {
  20835. height: math.unit(8, "feet"),
  20836. weight: math.unit(300, "lb"),
  20837. name: "Front",
  20838. image: {
  20839. source: "./media/characters/equus-silvermane/front.svg",
  20840. extra: 4633 / 4400,
  20841. bottom: 71.3 / 4706.915
  20842. }
  20843. },
  20844. sideStepping: {
  20845. height: math.unit(8, "feet"),
  20846. weight: math.unit(300, "lb"),
  20847. name: "Side (Stepping)",
  20848. image: {
  20849. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20850. extra: 1968 / 1860,
  20851. bottom: 16.4 / 1989
  20852. }
  20853. },
  20854. },
  20855. [
  20856. {
  20857. name: "Normal",
  20858. height: math.unit(8, "feet")
  20859. },
  20860. {
  20861. name: "Minimacro",
  20862. height: math.unit(75, "feet"),
  20863. default: true
  20864. },
  20865. {
  20866. name: "Macro",
  20867. height: math.unit(150, "feet")
  20868. },
  20869. {
  20870. name: "Macro+",
  20871. height: math.unit(1000, "feet")
  20872. },
  20873. {
  20874. name: "Megamacro",
  20875. height: math.unit(1, "mile")
  20876. },
  20877. ]
  20878. ))
  20879. characterMakers.push(() => makeCharacter(
  20880. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20881. {
  20882. side: {
  20883. height: math.unit(20, "feet"),
  20884. weight: math.unit(30000, "kg"),
  20885. name: "Side",
  20886. image: {
  20887. source: "./media/characters/windar/side.svg",
  20888. extra: 1491 / 1248,
  20889. bottom: 82.56 / 1568
  20890. }
  20891. },
  20892. },
  20893. [
  20894. {
  20895. name: "Normal",
  20896. height: math.unit(20, "feet"),
  20897. default: true
  20898. },
  20899. ]
  20900. ))
  20901. characterMakers.push(() => makeCharacter(
  20902. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20903. {
  20904. side: {
  20905. height: math.unit(15.66, "feet"),
  20906. weight: math.unit(150, "lb"),
  20907. name: "Side",
  20908. image: {
  20909. source: "./media/characters/melody/side.svg",
  20910. extra: 1097 / 944,
  20911. bottom: 11.8 / 1109
  20912. }
  20913. },
  20914. sideOutfit: {
  20915. height: math.unit(15.66, "feet"),
  20916. weight: math.unit(150, "lb"),
  20917. name: "Side (Outfit)",
  20918. image: {
  20919. source: "./media/characters/melody/side-outfit.svg",
  20920. extra: 1097 / 944,
  20921. bottom: 11.8 / 1109
  20922. }
  20923. },
  20924. },
  20925. [
  20926. {
  20927. name: "Normal",
  20928. height: math.unit(15.66, "feet"),
  20929. default: true
  20930. },
  20931. ]
  20932. ))
  20933. characterMakers.push(() => makeCharacter(
  20934. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20935. {
  20936. front: {
  20937. height: math.unit(8, "feet"),
  20938. weight: math.unit(325, "lb"),
  20939. name: "Front",
  20940. image: {
  20941. source: "./media/characters/windera/front.svg",
  20942. extra: 3180 / 2845,
  20943. bottom: 178 / 3365
  20944. }
  20945. },
  20946. },
  20947. [
  20948. {
  20949. name: "Normal",
  20950. height: math.unit(8, "feet"),
  20951. default: true
  20952. },
  20953. ]
  20954. ))
  20955. characterMakers.push(() => makeCharacter(
  20956. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20957. {
  20958. front: {
  20959. height: math.unit(28.75, "feet"),
  20960. weight: math.unit(2000, "kg"),
  20961. name: "Front",
  20962. image: {
  20963. source: "./media/characters/sonear/front.svg",
  20964. extra: 1041.1 / 964.9,
  20965. bottom: 53.7 / 1096.6
  20966. }
  20967. },
  20968. },
  20969. [
  20970. {
  20971. name: "Normal",
  20972. height: math.unit(28.75, "feet"),
  20973. default: true
  20974. },
  20975. ]
  20976. ))
  20977. characterMakers.push(() => makeCharacter(
  20978. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20979. {
  20980. side: {
  20981. height: math.unit(25.5, "feet"),
  20982. weight: math.unit(23000, "kg"),
  20983. name: "Side",
  20984. image: {
  20985. source: "./media/characters/kanara/side.svg"
  20986. }
  20987. },
  20988. },
  20989. [
  20990. {
  20991. name: "Normal",
  20992. height: math.unit(25.5, "feet"),
  20993. default: true
  20994. },
  20995. ]
  20996. ))
  20997. characterMakers.push(() => makeCharacter(
  20998. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20999. {
  21000. side: {
  21001. height: math.unit(10, "feet"),
  21002. weight: math.unit(1000, "kg"),
  21003. name: "Side",
  21004. image: {
  21005. source: "./media/characters/ereus/side.svg",
  21006. extra: 1157 / 959,
  21007. bottom: 153 / 1312.5
  21008. }
  21009. },
  21010. },
  21011. [
  21012. {
  21013. name: "Normal",
  21014. height: math.unit(10, "feet"),
  21015. default: true
  21016. },
  21017. ]
  21018. ))
  21019. characterMakers.push(() => makeCharacter(
  21020. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21021. {
  21022. side: {
  21023. height: math.unit(4.5, "feet"),
  21024. weight: math.unit(500, "lb"),
  21025. name: "Side",
  21026. image: {
  21027. source: "./media/characters/e-ter/side.svg",
  21028. extra: 1550 / 1248,
  21029. bottom: 146 / 1694
  21030. }
  21031. },
  21032. },
  21033. [
  21034. {
  21035. name: "Normal",
  21036. height: math.unit(4.5, "feet"),
  21037. default: true
  21038. },
  21039. ]
  21040. ))
  21041. characterMakers.push(() => makeCharacter(
  21042. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21043. {
  21044. side: {
  21045. height: math.unit(9.7, "feet"),
  21046. weight: math.unit(4000, "kg"),
  21047. name: "Side",
  21048. image: {
  21049. source: "./media/characters/yamie/side.svg"
  21050. }
  21051. },
  21052. },
  21053. [
  21054. {
  21055. name: "Normal",
  21056. height: math.unit(9.7, "feet"),
  21057. default: true
  21058. },
  21059. ]
  21060. ))
  21061. characterMakers.push(() => makeCharacter(
  21062. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21063. {
  21064. front: {
  21065. height: math.unit(50, "feet"),
  21066. weight: math.unit(50000, "kg"),
  21067. name: "Front",
  21068. image: {
  21069. source: "./media/characters/anders/front.svg",
  21070. extra: 570 / 539,
  21071. bottom: 14.7 / 586.7
  21072. }
  21073. },
  21074. },
  21075. [
  21076. {
  21077. name: "Large",
  21078. height: math.unit(50, "feet")
  21079. },
  21080. {
  21081. name: "Macro",
  21082. height: math.unit(2000, "feet"),
  21083. default: true
  21084. },
  21085. {
  21086. name: "Megamacro",
  21087. height: math.unit(12, "miles")
  21088. },
  21089. ]
  21090. ))
  21091. characterMakers.push(() => makeCharacter(
  21092. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21093. {
  21094. front: {
  21095. height: math.unit(7 + 2 / 12, "feet"),
  21096. weight: math.unit(300, "lb"),
  21097. name: "Front",
  21098. image: {
  21099. source: "./media/characters/reban/front.svg",
  21100. extra: 516 / 487,
  21101. bottom: 42.82 / 558.356
  21102. }
  21103. },
  21104. dick: {
  21105. height: math.unit(7 / 5, "feet"),
  21106. name: "Dick",
  21107. image: {
  21108. source: "./media/characters/reban/dick.svg"
  21109. }
  21110. },
  21111. },
  21112. [
  21113. {
  21114. name: "Natural Height",
  21115. height: math.unit(7 + 2 / 12, "feet")
  21116. },
  21117. {
  21118. name: "Macro",
  21119. height: math.unit(500, "feet"),
  21120. default: true
  21121. },
  21122. {
  21123. name: "Canon Height",
  21124. height: math.unit(50, "AU")
  21125. },
  21126. ]
  21127. ))
  21128. characterMakers.push(() => makeCharacter(
  21129. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21130. {
  21131. front: {
  21132. height: math.unit(6, "feet"),
  21133. weight: math.unit(150, "lb"),
  21134. name: "Front",
  21135. image: {
  21136. source: "./media/characters/terrance-keayes/front.svg",
  21137. extra: 1.005,
  21138. bottom: 151 / 1615
  21139. }
  21140. },
  21141. side: {
  21142. height: math.unit(6, "feet"),
  21143. weight: math.unit(150, "lb"),
  21144. name: "Side",
  21145. image: {
  21146. source: "./media/characters/terrance-keayes/side.svg",
  21147. extra: 1.005,
  21148. bottom: 129.4 / 1544
  21149. }
  21150. },
  21151. back: {
  21152. height: math.unit(6, "feet"),
  21153. weight: math.unit(150, "lb"),
  21154. name: "Back",
  21155. image: {
  21156. source: "./media/characters/terrance-keayes/back.svg",
  21157. extra: 1.005,
  21158. bottom: 58.4 / 1557.3
  21159. }
  21160. },
  21161. dick: {
  21162. height: math.unit(6 * 0.208, "feet"),
  21163. name: "Dick",
  21164. image: {
  21165. source: "./media/characters/terrance-keayes/dick.svg"
  21166. }
  21167. },
  21168. },
  21169. [
  21170. {
  21171. name: "Canon Height",
  21172. height: math.unit(35, "miles"),
  21173. default: true
  21174. },
  21175. ]
  21176. ))
  21177. characterMakers.push(() => makeCharacter(
  21178. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21179. {
  21180. front: {
  21181. height: math.unit(6, "feet"),
  21182. weight: math.unit(150, "lb"),
  21183. name: "Front",
  21184. image: {
  21185. source: "./media/characters/ofelia/front.svg",
  21186. extra: 546 / 541,
  21187. bottom: 39 / 583
  21188. }
  21189. },
  21190. back: {
  21191. height: math.unit(6, "feet"),
  21192. weight: math.unit(150, "lb"),
  21193. name: "Back",
  21194. image: {
  21195. source: "./media/characters/ofelia/back.svg",
  21196. extra: 564 / 559.5,
  21197. bottom: 8.69 / 573.02
  21198. }
  21199. },
  21200. maw: {
  21201. height: math.unit(1, "feet"),
  21202. name: "Maw",
  21203. image: {
  21204. source: "./media/characters/ofelia/maw.svg"
  21205. }
  21206. },
  21207. foot: {
  21208. height: math.unit(1.949, "feet"),
  21209. name: "Foot",
  21210. image: {
  21211. source: "./media/characters/ofelia/foot.svg"
  21212. }
  21213. },
  21214. },
  21215. [
  21216. {
  21217. name: "Canon Height",
  21218. height: math.unit(2000, "miles"),
  21219. default: true
  21220. },
  21221. ]
  21222. ))
  21223. characterMakers.push(() => makeCharacter(
  21224. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21225. {
  21226. front: {
  21227. height: math.unit(6, "feet"),
  21228. weight: math.unit(150, "lb"),
  21229. name: "Front",
  21230. image: {
  21231. source: "./media/characters/samuel/front.svg",
  21232. extra: 265 / 258,
  21233. bottom: 2 / 266.1566
  21234. }
  21235. },
  21236. },
  21237. [
  21238. {
  21239. name: "Macro",
  21240. height: math.unit(100, "feet"),
  21241. default: true
  21242. },
  21243. {
  21244. name: "Full Size",
  21245. height: math.unit(1000, "miles")
  21246. },
  21247. ]
  21248. ))
  21249. characterMakers.push(() => makeCharacter(
  21250. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21251. {
  21252. front: {
  21253. height: math.unit(6, "feet"),
  21254. weight: math.unit(300, "lb"),
  21255. name: "Front",
  21256. image: {
  21257. source: "./media/characters/beishir-kiel/front.svg",
  21258. extra: 569 / 547,
  21259. bottom: 41.9 / 609
  21260. }
  21261. },
  21262. maw: {
  21263. height: math.unit(6 * 0.202, "feet"),
  21264. name: "Maw",
  21265. image: {
  21266. source: "./media/characters/beishir-kiel/maw.svg"
  21267. }
  21268. },
  21269. },
  21270. [
  21271. {
  21272. name: "Macro",
  21273. height: math.unit(300, "feet"),
  21274. default: true
  21275. },
  21276. ]
  21277. ))
  21278. characterMakers.push(() => makeCharacter(
  21279. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21280. {
  21281. front: {
  21282. height: math.unit(5 + 8 / 12, "feet"),
  21283. weight: math.unit(120, "lb"),
  21284. name: "Front",
  21285. image: {
  21286. source: "./media/characters/logan-grey/front.svg",
  21287. extra: 2539 / 2393,
  21288. bottom: 97.6 / 2636.37
  21289. }
  21290. },
  21291. frontAlt: {
  21292. height: math.unit(5 + 8 / 12, "feet"),
  21293. weight: math.unit(120, "lb"),
  21294. name: "Front (Alt)",
  21295. image: {
  21296. source: "./media/characters/logan-grey/front-alt.svg",
  21297. extra: 958 / 893,
  21298. bottom: 15 / 970.768
  21299. }
  21300. },
  21301. back: {
  21302. height: math.unit(5 + 8 / 12, "feet"),
  21303. weight: math.unit(120, "lb"),
  21304. name: "Back",
  21305. image: {
  21306. source: "./media/characters/logan-grey/back.svg",
  21307. extra: 958 / 893,
  21308. bottom: 2.1881 / 970.9788
  21309. }
  21310. },
  21311. dick: {
  21312. height: math.unit(1.437, "feet"),
  21313. name: "Dick",
  21314. image: {
  21315. source: "./media/characters/logan-grey/dick.svg"
  21316. }
  21317. },
  21318. },
  21319. [
  21320. {
  21321. name: "Normal",
  21322. height: math.unit(5 + 8 / 12, "feet")
  21323. },
  21324. {
  21325. name: "The 500 Foot Femboy",
  21326. height: math.unit(500, "feet"),
  21327. default: true
  21328. },
  21329. {
  21330. name: "Megmacro",
  21331. height: math.unit(20, "miles")
  21332. },
  21333. ]
  21334. ))
  21335. characterMakers.push(() => makeCharacter(
  21336. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21337. {
  21338. front: {
  21339. height: math.unit(8 + 2 / 12, "feet"),
  21340. weight: math.unit(275, "lb"),
  21341. name: "Front",
  21342. image: {
  21343. source: "./media/characters/draganta/front.svg",
  21344. extra: 1177 / 1135,
  21345. bottom: 33.46 / 1212.1
  21346. }
  21347. },
  21348. },
  21349. [
  21350. {
  21351. name: "Normal",
  21352. height: math.unit(8 + 6 / 12, "feet"),
  21353. default: true
  21354. },
  21355. {
  21356. name: "Macro",
  21357. height: math.unit(150, "feet")
  21358. },
  21359. {
  21360. name: "Megamacro",
  21361. height: math.unit(1000, "miles")
  21362. },
  21363. ]
  21364. ))
  21365. characterMakers.push(() => makeCharacter(
  21366. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21367. {
  21368. front: {
  21369. height: math.unit(1.72, "m"),
  21370. weight: math.unit(80, "lb"),
  21371. name: "Front",
  21372. image: {
  21373. source: "./media/characters/voski/front.svg",
  21374. extra: 2076.22 / 2022.4,
  21375. bottom: 102.7 / 2177.3866
  21376. }
  21377. },
  21378. frontNsfw: {
  21379. height: math.unit(1.72, "m"),
  21380. weight: math.unit(80, "lb"),
  21381. name: "Front (NSFW)",
  21382. image: {
  21383. source: "./media/characters/voski/front-nsfw.svg",
  21384. extra: 2076.22 / 2022.4,
  21385. bottom: 102.7 / 2177.3866
  21386. }
  21387. },
  21388. back: {
  21389. height: math.unit(1.72, "m"),
  21390. weight: math.unit(80, "lb"),
  21391. name: "Back",
  21392. image: {
  21393. source: "./media/characters/voski/back.svg",
  21394. extra: 2104 / 2051,
  21395. bottom: 10.45 / 2113.63
  21396. }
  21397. },
  21398. },
  21399. [
  21400. {
  21401. name: "Normal",
  21402. height: math.unit(1.72, "m")
  21403. },
  21404. {
  21405. name: "Macro",
  21406. height: math.unit(55, "m"),
  21407. default: true
  21408. },
  21409. {
  21410. name: "Macro+",
  21411. height: math.unit(300, "m")
  21412. },
  21413. {
  21414. name: "Macro++",
  21415. height: math.unit(700, "m")
  21416. },
  21417. {
  21418. name: "Macro+++",
  21419. height: math.unit(4500, "m")
  21420. },
  21421. {
  21422. name: "Macro++++",
  21423. height: math.unit(45, "km")
  21424. },
  21425. {
  21426. name: "Macro+++++",
  21427. height: math.unit(1220, "km")
  21428. },
  21429. ]
  21430. ))
  21431. characterMakers.push(() => makeCharacter(
  21432. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21433. {
  21434. front: {
  21435. height: math.unit(2.3, "m"),
  21436. weight: math.unit(304, "kg"),
  21437. name: "Front",
  21438. image: {
  21439. source: "./media/characters/icowom-lee/front.svg",
  21440. extra: 985 / 955,
  21441. bottom: 25.4 / 1012
  21442. }
  21443. },
  21444. fronttentacles: {
  21445. height: math.unit(2.3, "m"),
  21446. weight: math.unit(304, "kg"),
  21447. name: "Front-tentacles",
  21448. image: {
  21449. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21450. extra: 985 / 955,
  21451. bottom: 25.4 / 1012
  21452. }
  21453. },
  21454. back: {
  21455. height: math.unit(2.3, "m"),
  21456. weight: math.unit(304, "kg"),
  21457. name: "Back",
  21458. image: {
  21459. source: "./media/characters/icowom-lee/back.svg",
  21460. extra: 975 / 954,
  21461. bottom: 9.5 / 985
  21462. }
  21463. },
  21464. backtentacles: {
  21465. height: math.unit(2.3, "m"),
  21466. weight: math.unit(304, "kg"),
  21467. name: "Back-tentacles",
  21468. image: {
  21469. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21470. extra: 975 / 954,
  21471. bottom: 9.5 / 985
  21472. }
  21473. },
  21474. frontDressed: {
  21475. height: math.unit(2.3, "m"),
  21476. weight: math.unit(304, "kg"),
  21477. name: "Front (Dressed)",
  21478. image: {
  21479. source: "./media/characters/icowom-lee/front-dressed.svg",
  21480. extra: 3076 / 2933,
  21481. bottom: 51.4 / 3125.1889
  21482. }
  21483. },
  21484. rump: {
  21485. height: math.unit(0.776, "meters"),
  21486. name: "Rump",
  21487. image: {
  21488. source: "./media/characters/icowom-lee/rump.svg"
  21489. }
  21490. },
  21491. genitals: {
  21492. height: math.unit(0.78, "meters"),
  21493. name: "Genitals",
  21494. image: {
  21495. source: "./media/characters/icowom-lee/genitals.svg"
  21496. }
  21497. },
  21498. },
  21499. [
  21500. {
  21501. name: "Normal",
  21502. height: math.unit(2.3, "meters"),
  21503. default: true
  21504. },
  21505. {
  21506. name: "Macro",
  21507. height: math.unit(94, "meters"),
  21508. default: true
  21509. },
  21510. ]
  21511. ))
  21512. characterMakers.push(() => makeCharacter(
  21513. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21514. {
  21515. front: {
  21516. height: math.unit(22, "meters"),
  21517. weight: math.unit(21000, "kg"),
  21518. name: "Front",
  21519. image: {
  21520. source: "./media/characters/shock-diamond/front.svg",
  21521. extra: 2204 / 2053,
  21522. bottom: 65 / 2239.47
  21523. }
  21524. },
  21525. frontNude: {
  21526. height: math.unit(22, "meters"),
  21527. weight: math.unit(21000, "kg"),
  21528. name: "Front (Nude)",
  21529. image: {
  21530. source: "./media/characters/shock-diamond/front-nude.svg",
  21531. extra: 2514 / 2285,
  21532. bottom: 13 / 2527.56
  21533. }
  21534. },
  21535. },
  21536. [
  21537. {
  21538. name: "Normal",
  21539. height: math.unit(3, "meters")
  21540. },
  21541. {
  21542. name: "Macro",
  21543. height: math.unit(22, "meters"),
  21544. default: true
  21545. },
  21546. ]
  21547. ))
  21548. characterMakers.push(() => makeCharacter(
  21549. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21550. {
  21551. front: {
  21552. height: math.unit(5 + 4 / 12, "feet"),
  21553. weight: math.unit(120, "lb"),
  21554. name: "Front",
  21555. image: {
  21556. source: "./media/characters/rory/front.svg",
  21557. extra: 589 / 556,
  21558. bottom: 45.7 / 635.76
  21559. }
  21560. },
  21561. frontNude: {
  21562. height: math.unit(5 + 4 / 12, "feet"),
  21563. weight: math.unit(120, "lb"),
  21564. name: "Front (Nude)",
  21565. image: {
  21566. source: "./media/characters/rory/front-nude.svg",
  21567. extra: 589 / 556,
  21568. bottom: 45.7 / 635.76
  21569. }
  21570. },
  21571. side: {
  21572. height: math.unit(5 + 4 / 12, "feet"),
  21573. weight: math.unit(120, "lb"),
  21574. name: "Side",
  21575. image: {
  21576. source: "./media/characters/rory/side.svg",
  21577. extra: 597 / 564,
  21578. bottom: 55 / 653
  21579. }
  21580. },
  21581. back: {
  21582. height: math.unit(5 + 4 / 12, "feet"),
  21583. weight: math.unit(120, "lb"),
  21584. name: "Back",
  21585. image: {
  21586. source: "./media/characters/rory/back.svg",
  21587. extra: 620 / 585,
  21588. bottom: 8.86 / 630.43
  21589. }
  21590. },
  21591. dick: {
  21592. height: math.unit(0.86, "feet"),
  21593. name: "Dick",
  21594. image: {
  21595. source: "./media/characters/rory/dick.svg"
  21596. }
  21597. },
  21598. },
  21599. [
  21600. {
  21601. name: "Normal",
  21602. height: math.unit(5 + 4 / 12, "feet"),
  21603. default: true
  21604. },
  21605. {
  21606. name: "Macro",
  21607. height: math.unit(100, "feet")
  21608. },
  21609. {
  21610. name: "Macro+",
  21611. height: math.unit(140, "feet")
  21612. },
  21613. {
  21614. name: "Macro++",
  21615. height: math.unit(300, "feet")
  21616. },
  21617. ]
  21618. ))
  21619. characterMakers.push(() => makeCharacter(
  21620. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21621. {
  21622. front: {
  21623. height: math.unit(5 + 9 / 12, "feet"),
  21624. weight: math.unit(190, "lb"),
  21625. name: "Front",
  21626. image: {
  21627. source: "./media/characters/sprisk/front.svg",
  21628. extra: 1225 / 1180,
  21629. bottom: 42.7 / 1266.4
  21630. }
  21631. },
  21632. frontNsfw: {
  21633. height: math.unit(5 + 9 / 12, "feet"),
  21634. weight: math.unit(190, "lb"),
  21635. name: "Front (NSFW)",
  21636. image: {
  21637. source: "./media/characters/sprisk/front-nsfw.svg",
  21638. extra: 1225 / 1180,
  21639. bottom: 42.7 / 1266.4
  21640. }
  21641. },
  21642. back: {
  21643. height: math.unit(5 + 9 / 12, "feet"),
  21644. weight: math.unit(190, "lb"),
  21645. name: "Back",
  21646. image: {
  21647. source: "./media/characters/sprisk/back.svg",
  21648. extra: 1247 / 1200,
  21649. bottom: 5.6 / 1253.04
  21650. }
  21651. },
  21652. },
  21653. [
  21654. {
  21655. name: "Tiny",
  21656. height: math.unit(2, "inches")
  21657. },
  21658. {
  21659. name: "Normal",
  21660. height: math.unit(5 + 9 / 12, "feet"),
  21661. default: true
  21662. },
  21663. {
  21664. name: "Mini Macro",
  21665. height: math.unit(18, "feet")
  21666. },
  21667. {
  21668. name: "Macro",
  21669. height: math.unit(100, "feet")
  21670. },
  21671. {
  21672. name: "MACRO",
  21673. height: math.unit(50, "miles")
  21674. },
  21675. {
  21676. name: "M A C R O",
  21677. height: math.unit(300, "miles")
  21678. },
  21679. ]
  21680. ))
  21681. characterMakers.push(() => makeCharacter(
  21682. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21683. {
  21684. side: {
  21685. height: math.unit(15.6, "meters"),
  21686. weight: math.unit(700000, "kg"),
  21687. name: "Side",
  21688. image: {
  21689. source: "./media/characters/bunsen/side.svg",
  21690. extra: 1644 / 358
  21691. }
  21692. },
  21693. foot: {
  21694. height: math.unit(1.611 * 1644 / 358, "meter"),
  21695. name: "Foot",
  21696. image: {
  21697. source: "./media/characters/bunsen/foot.svg"
  21698. }
  21699. },
  21700. },
  21701. [
  21702. {
  21703. name: "Small",
  21704. height: math.unit(10, "feet")
  21705. },
  21706. {
  21707. name: "Normal",
  21708. height: math.unit(15.6, "meters"),
  21709. default: true
  21710. },
  21711. ]
  21712. ))
  21713. characterMakers.push(() => makeCharacter(
  21714. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21715. {
  21716. front: {
  21717. height: math.unit(4 + 11 / 12, "feet"),
  21718. weight: math.unit(140, "lb"),
  21719. name: "Front",
  21720. image: {
  21721. source: "./media/characters/sesh/front.svg",
  21722. extra: 3420 / 3231,
  21723. bottom: 72 / 3949.5
  21724. }
  21725. },
  21726. },
  21727. [
  21728. {
  21729. name: "Normal",
  21730. height: math.unit(4 + 11 / 12, "feet")
  21731. },
  21732. {
  21733. name: "Grown",
  21734. height: math.unit(15, "feet"),
  21735. default: true
  21736. },
  21737. {
  21738. name: "Macro",
  21739. height: math.unit(1500, "feet")
  21740. },
  21741. {
  21742. name: "Megamacro",
  21743. height: math.unit(30, "miles")
  21744. },
  21745. {
  21746. name: "Continental",
  21747. height: math.unit(3000, "miles")
  21748. },
  21749. {
  21750. name: "Gravity Mass",
  21751. height: math.unit(300000, "miles")
  21752. },
  21753. {
  21754. name: "Planet Buster",
  21755. height: math.unit(30000000, "miles")
  21756. },
  21757. {
  21758. name: "Big",
  21759. height: math.unit(3000000000, "miles")
  21760. },
  21761. ]
  21762. ))
  21763. characterMakers.push(() => makeCharacter(
  21764. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21765. {
  21766. front: {
  21767. height: math.unit(9, "feet"),
  21768. weight: math.unit(350, "lb"),
  21769. name: "Front",
  21770. image: {
  21771. source: "./media/characters/pepper/front.svg",
  21772. extra: 1448 / 1312,
  21773. bottom: 9.4 / 1457.88
  21774. }
  21775. },
  21776. back: {
  21777. height: math.unit(9, "feet"),
  21778. weight: math.unit(350, "lb"),
  21779. name: "Back",
  21780. image: {
  21781. source: "./media/characters/pepper/back.svg",
  21782. extra: 1423 / 1300,
  21783. bottom: 4.6 / 1429
  21784. }
  21785. },
  21786. maw: {
  21787. height: math.unit(0.932, "feet"),
  21788. name: "Maw",
  21789. image: {
  21790. source: "./media/characters/pepper/maw.svg"
  21791. }
  21792. },
  21793. },
  21794. [
  21795. {
  21796. name: "Normal",
  21797. height: math.unit(9, "feet"),
  21798. default: true
  21799. },
  21800. ]
  21801. ))
  21802. characterMakers.push(() => makeCharacter(
  21803. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21804. {
  21805. front: {
  21806. height: math.unit(6, "feet"),
  21807. weight: math.unit(150, "lb"),
  21808. name: "Front",
  21809. image: {
  21810. source: "./media/characters/maelstrom/front.svg",
  21811. extra: 2100 / 1883,
  21812. bottom: 94 / 2196.7
  21813. }
  21814. },
  21815. },
  21816. [
  21817. {
  21818. name: "Less Kaiju",
  21819. height: math.unit(200, "feet")
  21820. },
  21821. {
  21822. name: "Kaiju",
  21823. height: math.unit(400, "feet"),
  21824. default: true
  21825. },
  21826. {
  21827. name: "Kaiju-er",
  21828. height: math.unit(600, "feet")
  21829. },
  21830. ]
  21831. ))
  21832. characterMakers.push(() => makeCharacter(
  21833. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21834. {
  21835. front: {
  21836. height: math.unit(6 + 5 / 12, "feet"),
  21837. weight: math.unit(180, "lb"),
  21838. name: "Front",
  21839. image: {
  21840. source: "./media/characters/lexir/front.svg",
  21841. extra: 180 / 172,
  21842. bottom: 12 / 192
  21843. }
  21844. },
  21845. back: {
  21846. height: math.unit(6 + 5 / 12, "feet"),
  21847. weight: math.unit(180, "lb"),
  21848. name: "Back",
  21849. image: {
  21850. source: "./media/characters/lexir/back.svg",
  21851. extra: 183.84 / 175.5,
  21852. bottom: 3.1 / 187
  21853. }
  21854. },
  21855. },
  21856. [
  21857. {
  21858. name: "Very Smal",
  21859. height: math.unit(1, "nm")
  21860. },
  21861. {
  21862. name: "Normal",
  21863. height: math.unit(6 + 5 / 12, "feet"),
  21864. default: true
  21865. },
  21866. {
  21867. name: "Macro",
  21868. height: math.unit(1, "mile")
  21869. },
  21870. {
  21871. name: "Megamacro",
  21872. height: math.unit(50, "miles")
  21873. },
  21874. ]
  21875. ))
  21876. characterMakers.push(() => makeCharacter(
  21877. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21878. {
  21879. front: {
  21880. height: math.unit(1.5, "meters"),
  21881. weight: math.unit(100, "lb"),
  21882. name: "Front",
  21883. image: {
  21884. source: "./media/characters/maksio/front.svg",
  21885. extra: 1549 / 1531,
  21886. bottom: 123.7 / 1674.5429
  21887. }
  21888. },
  21889. back: {
  21890. height: math.unit(1.5, "meters"),
  21891. weight: math.unit(100, "lb"),
  21892. name: "Back",
  21893. image: {
  21894. source: "./media/characters/maksio/back.svg",
  21895. extra: 1541 / 1509,
  21896. bottom: 97 / 1639
  21897. }
  21898. },
  21899. hand: {
  21900. height: math.unit(0.621, "feet"),
  21901. name: "Hand",
  21902. image: {
  21903. source: "./media/characters/maksio/hand.svg"
  21904. }
  21905. },
  21906. foot: {
  21907. height: math.unit(1.611, "feet"),
  21908. name: "Foot",
  21909. image: {
  21910. source: "./media/characters/maksio/foot.svg"
  21911. }
  21912. },
  21913. },
  21914. [
  21915. {
  21916. name: "Shrunken",
  21917. height: math.unit(10, "cm")
  21918. },
  21919. {
  21920. name: "Normal",
  21921. height: math.unit(150, "cm"),
  21922. default: true
  21923. },
  21924. ]
  21925. ))
  21926. characterMakers.push(() => makeCharacter(
  21927. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21928. {
  21929. front: {
  21930. height: math.unit(100, "feet"),
  21931. name: "Front",
  21932. image: {
  21933. source: "./media/characters/erza-bear/front.svg",
  21934. extra: 2449 / 2390,
  21935. bottom: 46 / 2494
  21936. }
  21937. },
  21938. back: {
  21939. height: math.unit(100, "feet"),
  21940. name: "Back",
  21941. image: {
  21942. source: "./media/characters/erza-bear/back.svg",
  21943. extra: 2489 / 2430,
  21944. bottom: 85.4 / 2480
  21945. }
  21946. },
  21947. tail: {
  21948. height: math.unit(42, "feet"),
  21949. name: "Tail",
  21950. image: {
  21951. source: "./media/characters/erza-bear/tail.svg"
  21952. }
  21953. },
  21954. tongue: {
  21955. height: math.unit(8, "feet"),
  21956. name: "Tongue",
  21957. image: {
  21958. source: "./media/characters/erza-bear/tongue.svg"
  21959. }
  21960. },
  21961. dick: {
  21962. height: math.unit(10.5, "feet"),
  21963. name: "Dick",
  21964. image: {
  21965. source: "./media/characters/erza-bear/dick.svg"
  21966. }
  21967. },
  21968. dickVertical: {
  21969. height: math.unit(16.9, "feet"),
  21970. name: "Dick (Vertical)",
  21971. image: {
  21972. source: "./media/characters/erza-bear/dick-vertical.svg"
  21973. }
  21974. },
  21975. },
  21976. [
  21977. {
  21978. name: "Macro",
  21979. height: math.unit(100, "feet"),
  21980. default: true
  21981. },
  21982. ]
  21983. ))
  21984. characterMakers.push(() => makeCharacter(
  21985. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21986. {
  21987. front: {
  21988. height: math.unit(172, "cm"),
  21989. weight: math.unit(73, "kg"),
  21990. name: "Front",
  21991. image: {
  21992. source: "./media/characters/violet-flor/front.svg",
  21993. extra: 1530 / 1442,
  21994. bottom: 61.9 / 1588.8
  21995. }
  21996. },
  21997. back: {
  21998. height: math.unit(180, "cm"),
  21999. weight: math.unit(73, "kg"),
  22000. name: "Back",
  22001. image: {
  22002. source: "./media/characters/violet-flor/back.svg",
  22003. extra: 1692 / 1630,
  22004. bottom: 20 / 1712
  22005. }
  22006. },
  22007. },
  22008. [
  22009. {
  22010. name: "Normal",
  22011. height: math.unit(172, "cm"),
  22012. default: true
  22013. },
  22014. ]
  22015. ))
  22016. characterMakers.push(() => makeCharacter(
  22017. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22018. {
  22019. front: {
  22020. height: math.unit(6, "feet"),
  22021. weight: math.unit(220, "lb"),
  22022. name: "Front",
  22023. image: {
  22024. source: "./media/characters/lynn-rhea/front.svg",
  22025. extra: 310 / 273
  22026. }
  22027. },
  22028. back: {
  22029. height: math.unit(6, "feet"),
  22030. weight: math.unit(220, "lb"),
  22031. name: "Back",
  22032. image: {
  22033. source: "./media/characters/lynn-rhea/back.svg",
  22034. extra: 310 / 273
  22035. }
  22036. },
  22037. dicks: {
  22038. height: math.unit(0.9, "feet"),
  22039. name: "Dicks",
  22040. image: {
  22041. source: "./media/characters/lynn-rhea/dicks.svg"
  22042. }
  22043. },
  22044. slit: {
  22045. height: math.unit(0.4, "feet"),
  22046. name: "Slit",
  22047. image: {
  22048. source: "./media/characters/lynn-rhea/slit.svg"
  22049. }
  22050. },
  22051. },
  22052. [
  22053. {
  22054. name: "Micro",
  22055. height: math.unit(1, "inch")
  22056. },
  22057. {
  22058. name: "Macro",
  22059. height: math.unit(60, "feet"),
  22060. default: true
  22061. },
  22062. {
  22063. name: "Megamacro",
  22064. height: math.unit(2, "miles")
  22065. },
  22066. {
  22067. name: "Gigamacro",
  22068. height: math.unit(3, "earths")
  22069. },
  22070. {
  22071. name: "Galactic",
  22072. height: math.unit(0.8, "galaxies")
  22073. },
  22074. ]
  22075. ))
  22076. characterMakers.push(() => makeCharacter(
  22077. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22078. {
  22079. front: {
  22080. height: math.unit(1600, "feet"),
  22081. weight: math.unit(85758785169, "kg"),
  22082. name: "Front",
  22083. image: {
  22084. source: "./media/characters/valathos/front.svg",
  22085. extra: 1451 / 1339
  22086. }
  22087. },
  22088. },
  22089. [
  22090. {
  22091. name: "Macro",
  22092. height: math.unit(1600, "feet"),
  22093. default: true
  22094. },
  22095. ]
  22096. ))
  22097. characterMakers.push(() => makeCharacter(
  22098. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22099. {
  22100. front: {
  22101. height: math.unit(7 + 5 / 12, "feet"),
  22102. weight: math.unit(300, "lb"),
  22103. name: "Front",
  22104. image: {
  22105. source: "./media/characters/azula/front.svg",
  22106. extra: 3208 / 2880,
  22107. bottom: 80.2 / 3277
  22108. }
  22109. },
  22110. back: {
  22111. height: math.unit(7 + 5 / 12, "feet"),
  22112. weight: math.unit(300, "lb"),
  22113. name: "Back",
  22114. image: {
  22115. source: "./media/characters/azula/back.svg",
  22116. extra: 3169 / 2822,
  22117. bottom: 150.6 / 3321
  22118. }
  22119. },
  22120. },
  22121. [
  22122. {
  22123. name: "Normal",
  22124. height: math.unit(7 + 5 / 12, "feet"),
  22125. default: true
  22126. },
  22127. {
  22128. name: "Big",
  22129. height: math.unit(20, "feet")
  22130. },
  22131. ]
  22132. ))
  22133. characterMakers.push(() => makeCharacter(
  22134. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22135. {
  22136. front: {
  22137. height: math.unit(5 + 1 / 12, "feet"),
  22138. weight: math.unit(110, "lb"),
  22139. name: "Front",
  22140. image: {
  22141. source: "./media/characters/rupert/front.svg",
  22142. extra: 1549 / 1495,
  22143. bottom: 54.2 / 1604.4
  22144. }
  22145. },
  22146. },
  22147. [
  22148. {
  22149. name: "Normal",
  22150. height: math.unit(5 + 1 / 12, "feet"),
  22151. default: true
  22152. },
  22153. ]
  22154. ))
  22155. characterMakers.push(() => makeCharacter(
  22156. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22157. {
  22158. front: {
  22159. height: math.unit(8 + 4 / 12, "feet"),
  22160. weight: math.unit(350, "lb"),
  22161. name: "Front",
  22162. image: {
  22163. source: "./media/characters/sheera-castellar/front.svg",
  22164. extra: 1957 / 1894,
  22165. bottom: 26.97 / 1975.017
  22166. }
  22167. },
  22168. side: {
  22169. height: math.unit(8 + 4 / 12, "feet"),
  22170. weight: math.unit(350, "lb"),
  22171. name: "Side",
  22172. image: {
  22173. source: "./media/characters/sheera-castellar/side.svg",
  22174. extra: 1957 / 1894
  22175. }
  22176. },
  22177. back: {
  22178. height: math.unit(8 + 4 / 12, "feet"),
  22179. weight: math.unit(350, "lb"),
  22180. name: "Back",
  22181. image: {
  22182. source: "./media/characters/sheera-castellar/back.svg",
  22183. extra: 1957 / 1894
  22184. }
  22185. },
  22186. angled: {
  22187. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22188. weight: math.unit(350, "lb"),
  22189. name: "Angled",
  22190. image: {
  22191. source: "./media/characters/sheera-castellar/angled.svg",
  22192. extra: 1807 / 1707,
  22193. bottom: 68 / 1875
  22194. }
  22195. },
  22196. genitals: {
  22197. height: math.unit(2.2, "feet"),
  22198. name: "Genitals",
  22199. image: {
  22200. source: "./media/characters/sheera-castellar/genitals.svg"
  22201. }
  22202. },
  22203. },
  22204. [
  22205. {
  22206. name: "Normal",
  22207. height: math.unit(8 + 4 / 12, "feet")
  22208. },
  22209. {
  22210. name: "Macro",
  22211. height: math.unit(150, "feet"),
  22212. default: true
  22213. },
  22214. {
  22215. name: "Macro+",
  22216. height: math.unit(800, "feet")
  22217. },
  22218. ]
  22219. ))
  22220. characterMakers.push(() => makeCharacter(
  22221. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22222. {
  22223. front: {
  22224. height: math.unit(6, "feet"),
  22225. weight: math.unit(150, "lb"),
  22226. name: "Front",
  22227. image: {
  22228. source: "./media/characters/jaipur/front.svg",
  22229. extra: 3860 / 3731,
  22230. bottom: 287 / 4140
  22231. }
  22232. },
  22233. back: {
  22234. height: math.unit(6, "feet"),
  22235. weight: math.unit(150, "lb"),
  22236. name: "Back",
  22237. image: {
  22238. source: "./media/characters/jaipur/back.svg",
  22239. extra: 4060 / 3930,
  22240. bottom: 151 / 4200
  22241. }
  22242. },
  22243. },
  22244. [
  22245. {
  22246. name: "Normal",
  22247. height: math.unit(1.85, "meters"),
  22248. default: true
  22249. },
  22250. {
  22251. name: "Macro",
  22252. height: math.unit(150, "meters")
  22253. },
  22254. {
  22255. name: "Macro+",
  22256. height: math.unit(0.5, "miles")
  22257. },
  22258. {
  22259. name: "Macro++",
  22260. height: math.unit(2.5, "miles")
  22261. },
  22262. {
  22263. name: "Macro+++",
  22264. height: math.unit(12, "miles")
  22265. },
  22266. {
  22267. name: "Macro++++",
  22268. height: math.unit(120, "miles")
  22269. },
  22270. {
  22271. name: "Macro+++++",
  22272. height: math.unit(1200, "miles")
  22273. },
  22274. ]
  22275. ))
  22276. characterMakers.push(() => makeCharacter(
  22277. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22278. {
  22279. front: {
  22280. height: math.unit(6, "feet"),
  22281. weight: math.unit(150, "lb"),
  22282. name: "Front",
  22283. image: {
  22284. source: "./media/characters/sheila-wolf/front.svg",
  22285. extra: 1931 / 1808,
  22286. bottom: 29.5 / 1960
  22287. }
  22288. },
  22289. dick: {
  22290. height: math.unit(1.464, "feet"),
  22291. name: "Dick",
  22292. image: {
  22293. source: "./media/characters/sheila-wolf/dick.svg"
  22294. }
  22295. },
  22296. muzzle: {
  22297. height: math.unit(0.513, "feet"),
  22298. name: "Muzzle",
  22299. image: {
  22300. source: "./media/characters/sheila-wolf/muzzle.svg"
  22301. }
  22302. },
  22303. },
  22304. [
  22305. {
  22306. name: "Macro",
  22307. height: math.unit(70, "feet"),
  22308. default: true
  22309. },
  22310. ]
  22311. ))
  22312. characterMakers.push(() => makeCharacter(
  22313. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22314. {
  22315. front: {
  22316. height: math.unit(32, "meters"),
  22317. weight: math.unit(300000, "kg"),
  22318. name: "Front",
  22319. image: {
  22320. source: "./media/characters/almor/front.svg",
  22321. extra: 1408 / 1322,
  22322. bottom: 94.6 / 1506.5
  22323. }
  22324. },
  22325. },
  22326. [
  22327. {
  22328. name: "Macro",
  22329. height: math.unit(32, "meters"),
  22330. default: true
  22331. },
  22332. ]
  22333. ))
  22334. characterMakers.push(() => makeCharacter(
  22335. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22336. {
  22337. front: {
  22338. height: math.unit(7, "feet"),
  22339. weight: math.unit(200, "lb"),
  22340. name: "Front",
  22341. image: {
  22342. source: "./media/characters/silver/front.svg",
  22343. extra: 472.1 / 450.5,
  22344. bottom: 26.5 / 499.424
  22345. }
  22346. },
  22347. },
  22348. [
  22349. {
  22350. name: "Normal",
  22351. height: math.unit(7, "feet"),
  22352. default: true
  22353. },
  22354. {
  22355. name: "Macro",
  22356. height: math.unit(800, "feet")
  22357. },
  22358. {
  22359. name: "Megamacro",
  22360. height: math.unit(250, "miles")
  22361. },
  22362. ]
  22363. ))
  22364. characterMakers.push(() => makeCharacter(
  22365. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22366. {
  22367. front: {
  22368. height: math.unit(6, "feet"),
  22369. weight: math.unit(150, "lb"),
  22370. name: "Front",
  22371. image: {
  22372. source: "./media/characters/pliskin/front.svg",
  22373. extra: 1469 / 1359,
  22374. bottom: 70 / 1540
  22375. }
  22376. },
  22377. },
  22378. [
  22379. {
  22380. name: "Micro",
  22381. height: math.unit(3, "inches")
  22382. },
  22383. {
  22384. name: "Normal",
  22385. height: math.unit(5 + 11 / 12, "feet"),
  22386. default: true
  22387. },
  22388. {
  22389. name: "Macro",
  22390. height: math.unit(120, "feet")
  22391. },
  22392. ]
  22393. ))
  22394. characterMakers.push(() => makeCharacter(
  22395. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22396. {
  22397. front: {
  22398. height: math.unit(6, "feet"),
  22399. weight: math.unit(150, "lb"),
  22400. name: "Front",
  22401. image: {
  22402. source: "./media/characters/sammy/front.svg",
  22403. extra: 1193 / 1089,
  22404. bottom: 30.5 / 1226
  22405. }
  22406. },
  22407. },
  22408. [
  22409. {
  22410. name: "Macro",
  22411. height: math.unit(1700, "feet"),
  22412. default: true
  22413. },
  22414. {
  22415. name: "Examacro",
  22416. height: math.unit(2.5e9, "lightyears")
  22417. },
  22418. ]
  22419. ))
  22420. characterMakers.push(() => makeCharacter(
  22421. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22422. {
  22423. front: {
  22424. height: math.unit(21, "meters"),
  22425. weight: math.unit(12, "tonnes"),
  22426. name: "Front",
  22427. image: {
  22428. source: "./media/characters/kuru/front.svg",
  22429. extra: 4301 / 3785,
  22430. bottom: 371.3 / 4691
  22431. }
  22432. },
  22433. },
  22434. [
  22435. {
  22436. name: "Macro",
  22437. height: math.unit(21, "meters"),
  22438. default: true
  22439. },
  22440. ]
  22441. ))
  22442. characterMakers.push(() => makeCharacter(
  22443. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22444. {
  22445. front: {
  22446. height: math.unit(23, "meters"),
  22447. weight: math.unit(12.2, "tonnes"),
  22448. name: "Front",
  22449. image: {
  22450. source: "./media/characters/rakka/front.svg",
  22451. extra: 4670 / 4169,
  22452. bottom: 301 / 4968.7
  22453. }
  22454. },
  22455. },
  22456. [
  22457. {
  22458. name: "Macro",
  22459. height: math.unit(23, "meters"),
  22460. default: true
  22461. },
  22462. ]
  22463. ))
  22464. characterMakers.push(() => makeCharacter(
  22465. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22466. {
  22467. front: {
  22468. height: math.unit(6, "feet"),
  22469. weight: math.unit(150, "lb"),
  22470. name: "Front",
  22471. image: {
  22472. source: "./media/characters/rhys-feline/front.svg",
  22473. extra: 2488 / 2308,
  22474. bottom: 35.67 / 2519.19
  22475. }
  22476. },
  22477. },
  22478. [
  22479. {
  22480. name: "Really Small",
  22481. height: math.unit(1, "nm")
  22482. },
  22483. {
  22484. name: "Micro",
  22485. height: math.unit(4, "inches")
  22486. },
  22487. {
  22488. name: "Normal",
  22489. height: math.unit(4 + 10 / 12, "feet"),
  22490. default: true
  22491. },
  22492. {
  22493. name: "Macro",
  22494. height: math.unit(100, "feet")
  22495. },
  22496. {
  22497. name: "Megamacto",
  22498. height: math.unit(50, "miles")
  22499. },
  22500. ]
  22501. ))
  22502. characterMakers.push(() => makeCharacter(
  22503. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22504. {
  22505. side: {
  22506. height: math.unit(30, "feet"),
  22507. weight: math.unit(35000, "kg"),
  22508. name: "Side",
  22509. image: {
  22510. source: "./media/characters/alydar/side.svg",
  22511. extra: 234 / 222,
  22512. bottom: 6.5 / 241
  22513. }
  22514. },
  22515. front: {
  22516. height: math.unit(30, "feet"),
  22517. weight: math.unit(35000, "kg"),
  22518. name: "Front",
  22519. image: {
  22520. source: "./media/characters/alydar/front.svg",
  22521. extra: 223.37 / 210.2,
  22522. bottom: 22.3 / 246.76
  22523. }
  22524. },
  22525. top: {
  22526. height: math.unit(64.54, "feet"),
  22527. weight: math.unit(35000, "kg"),
  22528. name: "Top",
  22529. image: {
  22530. source: "./media/characters/alydar/top.svg"
  22531. }
  22532. },
  22533. anthro: {
  22534. height: math.unit(30, "feet"),
  22535. weight: math.unit(9000, "kg"),
  22536. name: "Anthro",
  22537. image: {
  22538. source: "./media/characters/alydar/anthro.svg",
  22539. extra: 432 / 421,
  22540. bottom: 7.18 / 440
  22541. }
  22542. },
  22543. maw: {
  22544. height: math.unit(11.693, "feet"),
  22545. name: "Maw",
  22546. image: {
  22547. source: "./media/characters/alydar/maw.svg"
  22548. }
  22549. },
  22550. head: {
  22551. height: math.unit(11.693, "feet"),
  22552. name: "Head",
  22553. image: {
  22554. source: "./media/characters/alydar/head.svg"
  22555. }
  22556. },
  22557. headAlt: {
  22558. height: math.unit(12.861, "feet"),
  22559. name: "Head (Alt)",
  22560. image: {
  22561. source: "./media/characters/alydar/head-alt.svg"
  22562. }
  22563. },
  22564. wing: {
  22565. height: math.unit(20.712, "feet"),
  22566. name: "Wing",
  22567. image: {
  22568. source: "./media/characters/alydar/wing.svg"
  22569. }
  22570. },
  22571. wingFeather: {
  22572. height: math.unit(9.662, "feet"),
  22573. name: "Wing Feather",
  22574. image: {
  22575. source: "./media/characters/alydar/wing-feather.svg"
  22576. }
  22577. },
  22578. countourFeather: {
  22579. height: math.unit(4.154, "feet"),
  22580. name: "Contour Feather",
  22581. image: {
  22582. source: "./media/characters/alydar/contour-feather.svg"
  22583. }
  22584. },
  22585. },
  22586. [
  22587. {
  22588. name: "Diplomatic",
  22589. height: math.unit(13, "feet"),
  22590. default: true
  22591. },
  22592. {
  22593. name: "Small",
  22594. height: math.unit(30, "feet")
  22595. },
  22596. {
  22597. name: "Normal",
  22598. height: math.unit(95, "feet"),
  22599. default: true
  22600. },
  22601. {
  22602. name: "Large",
  22603. height: math.unit(285, "feet")
  22604. },
  22605. {
  22606. name: "Incomprehensible",
  22607. height: math.unit(450, "megameters")
  22608. },
  22609. ]
  22610. ))
  22611. characterMakers.push(() => makeCharacter(
  22612. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22613. {
  22614. side: {
  22615. height: math.unit(11, "feet"),
  22616. weight: math.unit(1750, "kg"),
  22617. name: "Side",
  22618. image: {
  22619. source: "./media/characters/selicia/side.svg",
  22620. extra: 440 / 396,
  22621. bottom: 24.8 / 465.979
  22622. }
  22623. },
  22624. maw: {
  22625. height: math.unit(4.665, "feet"),
  22626. name: "Maw",
  22627. image: {
  22628. source: "./media/characters/selicia/maw.svg"
  22629. }
  22630. },
  22631. },
  22632. [
  22633. {
  22634. name: "Normal",
  22635. height: math.unit(11, "feet"),
  22636. default: true
  22637. },
  22638. ]
  22639. ))
  22640. characterMakers.push(() => makeCharacter(
  22641. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22642. {
  22643. side: {
  22644. height: math.unit(2 + 6 / 12, "feet"),
  22645. weight: math.unit(30, "lb"),
  22646. name: "Side",
  22647. image: {
  22648. source: "./media/characters/layla/side.svg",
  22649. extra: 244 / 188,
  22650. bottom: 18.2 / 262.1
  22651. }
  22652. },
  22653. back: {
  22654. height: math.unit(2 + 6 / 12, "feet"),
  22655. weight: math.unit(30, "lb"),
  22656. name: "Back",
  22657. image: {
  22658. source: "./media/characters/layla/back.svg",
  22659. extra: 308 / 241.5,
  22660. bottom: 8.9 / 316.8
  22661. }
  22662. },
  22663. cumming: {
  22664. height: math.unit(2 + 6 / 12, "feet"),
  22665. weight: math.unit(30, "lb"),
  22666. name: "Cumming",
  22667. image: {
  22668. source: "./media/characters/layla/cumming.svg",
  22669. extra: 342 / 279,
  22670. bottom: 595 / 938
  22671. }
  22672. },
  22673. dickFlaccid: {
  22674. height: math.unit(2.595, "feet"),
  22675. name: "Flaccid Genitals",
  22676. image: {
  22677. source: "./media/characters/layla/dick-flaccid.svg"
  22678. }
  22679. },
  22680. dickErect: {
  22681. height: math.unit(2.359, "feet"),
  22682. name: "Erect Genitals",
  22683. image: {
  22684. source: "./media/characters/layla/dick-erect.svg"
  22685. }
  22686. },
  22687. },
  22688. [
  22689. {
  22690. name: "Micro",
  22691. height: math.unit(1, "inch")
  22692. },
  22693. {
  22694. name: "Small",
  22695. height: math.unit(1, "foot")
  22696. },
  22697. {
  22698. name: "Normal",
  22699. height: math.unit(2 + 6 / 12, "feet"),
  22700. default: true
  22701. },
  22702. {
  22703. name: "Macro",
  22704. height: math.unit(200, "feet")
  22705. },
  22706. {
  22707. name: "Megamacro",
  22708. height: math.unit(1000, "miles")
  22709. },
  22710. {
  22711. name: "Planetary",
  22712. height: math.unit(8000, "miles")
  22713. },
  22714. {
  22715. name: "True Layla",
  22716. height: math.unit(200000 * 7, "multiverses")
  22717. },
  22718. ]
  22719. ))
  22720. characterMakers.push(() => makeCharacter(
  22721. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22722. {
  22723. back: {
  22724. height: math.unit(10.5, "feet"),
  22725. weight: math.unit(800, "lb"),
  22726. name: "Back",
  22727. image: {
  22728. source: "./media/characters/knox/back.svg",
  22729. extra: 1486 / 1089,
  22730. bottom: 107 / 1601.4
  22731. }
  22732. },
  22733. side: {
  22734. height: math.unit(10.5, "feet"),
  22735. weight: math.unit(800, "lb"),
  22736. name: "Side",
  22737. image: {
  22738. source: "./media/characters/knox/side.svg",
  22739. extra: 244 / 218,
  22740. bottom: 14 / 260
  22741. }
  22742. },
  22743. },
  22744. [
  22745. {
  22746. name: "Compact",
  22747. height: math.unit(10.5, "feet"),
  22748. default: true
  22749. },
  22750. {
  22751. name: "Dynamax",
  22752. height: math.unit(210, "feet")
  22753. },
  22754. {
  22755. name: "Full Macro",
  22756. height: math.unit(850, "feet")
  22757. },
  22758. ]
  22759. ))
  22760. characterMakers.push(() => makeCharacter(
  22761. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22762. {
  22763. front: {
  22764. height: math.unit(6, "feet"),
  22765. weight: math.unit(152, "lb"),
  22766. name: "Front",
  22767. image: {
  22768. source: "./media/characters/shin-pikachu/front.svg",
  22769. extra: 1574 / 1480,
  22770. bottom: 53.3 / 1626
  22771. }
  22772. },
  22773. hand: {
  22774. height: math.unit(1.055, "feet"),
  22775. name: "Hand",
  22776. image: {
  22777. source: "./media/characters/shin-pikachu/hand.svg"
  22778. }
  22779. },
  22780. foot: {
  22781. height: math.unit(1.1, "feet"),
  22782. name: "Foot",
  22783. image: {
  22784. source: "./media/characters/shin-pikachu/foot.svg"
  22785. }
  22786. },
  22787. collar: {
  22788. height: math.unit(0.386, "feet"),
  22789. name: "Collar",
  22790. image: {
  22791. source: "./media/characters/shin-pikachu/collar.svg"
  22792. }
  22793. },
  22794. },
  22795. [
  22796. {
  22797. name: "Smallest",
  22798. height: math.unit(0.5, "inches")
  22799. },
  22800. {
  22801. name: "Micro",
  22802. height: math.unit(6, "inches")
  22803. },
  22804. {
  22805. name: "Normal",
  22806. height: math.unit(6, "feet"),
  22807. default: true
  22808. },
  22809. {
  22810. name: "Macro",
  22811. height: math.unit(150, "feet")
  22812. },
  22813. ]
  22814. ))
  22815. characterMakers.push(() => makeCharacter(
  22816. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22817. {
  22818. front: {
  22819. height: math.unit(28, "feet"),
  22820. weight: math.unit(10500, "lb"),
  22821. name: "Front",
  22822. image: {
  22823. source: "./media/characters/kayda/front.svg",
  22824. extra: 1536 / 1428,
  22825. bottom: 68.7 / 1603
  22826. }
  22827. },
  22828. back: {
  22829. height: math.unit(28, "feet"),
  22830. weight: math.unit(10500, "lb"),
  22831. name: "Back",
  22832. image: {
  22833. source: "./media/characters/kayda/back.svg",
  22834. extra: 1557 / 1464,
  22835. bottom: 39.5 / 1597.49
  22836. }
  22837. },
  22838. dick: {
  22839. height: math.unit(3.858, "feet"),
  22840. name: "Dick",
  22841. image: {
  22842. source: "./media/characters/kayda/dick.svg"
  22843. }
  22844. },
  22845. },
  22846. [
  22847. {
  22848. name: "Macro",
  22849. height: math.unit(28, "feet"),
  22850. default: true
  22851. },
  22852. ]
  22853. ))
  22854. characterMakers.push(() => makeCharacter(
  22855. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22856. {
  22857. front: {
  22858. height: math.unit(10 + 11 / 12, "feet"),
  22859. weight: math.unit(1400, "lb"),
  22860. name: "Front",
  22861. image: {
  22862. source: "./media/characters/brian/front.svg",
  22863. extra: 737 / 692,
  22864. bottom: 55.4 / 785
  22865. }
  22866. },
  22867. },
  22868. [
  22869. {
  22870. name: "Normal",
  22871. height: math.unit(10 + 11 / 12, "feet"),
  22872. default: true
  22873. },
  22874. ]
  22875. ))
  22876. characterMakers.push(() => makeCharacter(
  22877. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22878. {
  22879. front: {
  22880. height: math.unit(5 + 8 / 12, "feet"),
  22881. weight: math.unit(140, "lb"),
  22882. name: "Front",
  22883. image: {
  22884. source: "./media/characters/khemri/front.svg",
  22885. extra: 4780 / 4059,
  22886. bottom: 80.1 / 4859.25
  22887. }
  22888. },
  22889. },
  22890. [
  22891. {
  22892. name: "Micro",
  22893. height: math.unit(6, "inches")
  22894. },
  22895. {
  22896. name: "Normal",
  22897. height: math.unit(5 + 8 / 12, "feet"),
  22898. default: true
  22899. },
  22900. ]
  22901. ))
  22902. characterMakers.push(() => makeCharacter(
  22903. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22904. {
  22905. front: {
  22906. height: math.unit(13, "feet"),
  22907. weight: math.unit(1700, "lb"),
  22908. name: "Front",
  22909. image: {
  22910. source: "./media/characters/felix-braveheart/front.svg",
  22911. extra: 1222 / 1157,
  22912. bottom: 53.2 / 1280
  22913. }
  22914. },
  22915. back: {
  22916. height: math.unit(13, "feet"),
  22917. weight: math.unit(1700, "lb"),
  22918. name: "Back",
  22919. image: {
  22920. source: "./media/characters/felix-braveheart/back.svg",
  22921. extra: 1277 / 1203,
  22922. bottom: 50.2 / 1327
  22923. }
  22924. },
  22925. feral: {
  22926. height: math.unit(6, "feet"),
  22927. weight: math.unit(400, "lb"),
  22928. name: "Feral",
  22929. image: {
  22930. source: "./media/characters/felix-braveheart/feral.svg",
  22931. extra: 682 / 625,
  22932. bottom: 6.9 / 688
  22933. }
  22934. },
  22935. },
  22936. [
  22937. {
  22938. name: "Normal",
  22939. height: math.unit(13, "feet"),
  22940. default: true
  22941. },
  22942. ]
  22943. ))
  22944. characterMakers.push(() => makeCharacter(
  22945. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22946. {
  22947. side: {
  22948. height: math.unit(5 + 11 / 12, "feet"),
  22949. weight: math.unit(1400, "lb"),
  22950. name: "Side",
  22951. image: {
  22952. source: "./media/characters/shadow-blade/side.svg",
  22953. extra: 1726 / 1267,
  22954. bottom: 58.4 / 1785
  22955. }
  22956. },
  22957. },
  22958. [
  22959. {
  22960. name: "Normal",
  22961. height: math.unit(5 + 11 / 12, "feet"),
  22962. default: true
  22963. },
  22964. ]
  22965. ))
  22966. characterMakers.push(() => makeCharacter(
  22967. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22968. {
  22969. front: {
  22970. height: math.unit(1 + 6 / 12, "feet"),
  22971. weight: math.unit(25, "lb"),
  22972. name: "Front",
  22973. image: {
  22974. source: "./media/characters/karla-halldor/front.svg",
  22975. extra: 1459 / 1383,
  22976. bottom: 12 / 1472
  22977. }
  22978. },
  22979. },
  22980. [
  22981. {
  22982. name: "Normal",
  22983. height: math.unit(1 + 6 / 12, "feet"),
  22984. default: true
  22985. },
  22986. ]
  22987. ))
  22988. characterMakers.push(() => makeCharacter(
  22989. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22990. {
  22991. front: {
  22992. height: math.unit(6 + 2 / 12, "feet"),
  22993. weight: math.unit(160, "lb"),
  22994. name: "Front",
  22995. image: {
  22996. source: "./media/characters/ariam/front.svg",
  22997. extra: 714 / 617,
  22998. bottom: 23.4 / 737,
  22999. }
  23000. },
  23001. squatting: {
  23002. height: math.unit(4.1, "feet"),
  23003. weight: math.unit(160, "lb"),
  23004. name: "Squatting",
  23005. image: {
  23006. source: "./media/characters/ariam/squatting.svg",
  23007. extra: 2617 / 2112,
  23008. bottom: 61.2 / 2681,
  23009. }
  23010. },
  23011. },
  23012. [
  23013. {
  23014. name: "Normal",
  23015. height: math.unit(6 + 2 / 12, "feet"),
  23016. default: true
  23017. },
  23018. {
  23019. name: "Normal+",
  23020. height: math.unit(4, "meters")
  23021. },
  23022. {
  23023. name: "Macro",
  23024. height: math.unit(50, "meters")
  23025. },
  23026. {
  23027. name: "Macro+",
  23028. height: math.unit(100, "meters")
  23029. },
  23030. {
  23031. name: "Megamacro",
  23032. height: math.unit(20, "km")
  23033. },
  23034. ]
  23035. ))
  23036. characterMakers.push(() => makeCharacter(
  23037. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23038. {
  23039. front: {
  23040. height: math.unit(1.67, "meters"),
  23041. weight: math.unit(140, "lb"),
  23042. name: "Front",
  23043. image: {
  23044. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23045. extra: 438 / 410,
  23046. bottom: 0.75 / 439
  23047. }
  23048. },
  23049. },
  23050. [
  23051. {
  23052. name: "Shrunken",
  23053. height: math.unit(7.6, "cm")
  23054. },
  23055. {
  23056. name: "Human Scale",
  23057. height: math.unit(1.67, "meters")
  23058. },
  23059. {
  23060. name: "Wolxi Scale",
  23061. height: math.unit(36.7, "meters"),
  23062. default: true
  23063. },
  23064. ]
  23065. ))
  23066. characterMakers.push(() => makeCharacter(
  23067. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23068. {
  23069. front: {
  23070. height: math.unit(1.73, "meters"),
  23071. weight: math.unit(240, "lb"),
  23072. name: "Front",
  23073. image: {
  23074. source: "./media/characters/izue-two-mothers/front.svg",
  23075. extra: 469 / 437,
  23076. bottom: 1.24 / 470.6
  23077. }
  23078. },
  23079. },
  23080. [
  23081. {
  23082. name: "Shrunken",
  23083. height: math.unit(7.86, "cm")
  23084. },
  23085. {
  23086. name: "Human Scale",
  23087. height: math.unit(1.73, "meters")
  23088. },
  23089. {
  23090. name: "Wolxi Scale",
  23091. height: math.unit(38, "meters"),
  23092. default: true
  23093. },
  23094. ]
  23095. ))
  23096. characterMakers.push(() => makeCharacter(
  23097. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23098. {
  23099. front: {
  23100. height: math.unit(1.55, "meters"),
  23101. weight: math.unit(120, "lb"),
  23102. name: "Front",
  23103. image: {
  23104. source: "./media/characters/teeku-love-shack/front.svg",
  23105. extra: 387 / 362,
  23106. bottom: 1.51 / 388
  23107. }
  23108. },
  23109. },
  23110. [
  23111. {
  23112. name: "Shrunken",
  23113. height: math.unit(7, "cm")
  23114. },
  23115. {
  23116. name: "Human Scale",
  23117. height: math.unit(1.55, "meters")
  23118. },
  23119. {
  23120. name: "Wolxi Scale",
  23121. height: math.unit(34.1, "meters"),
  23122. default: true
  23123. },
  23124. ]
  23125. ))
  23126. characterMakers.push(() => makeCharacter(
  23127. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23128. {
  23129. front: {
  23130. height: math.unit(1.83, "meters"),
  23131. weight: math.unit(135, "lb"),
  23132. name: "Front",
  23133. image: {
  23134. source: "./media/characters/dejma-the-red/front.svg",
  23135. extra: 480 / 458,
  23136. bottom: 1.8 / 482
  23137. }
  23138. },
  23139. },
  23140. [
  23141. {
  23142. name: "Shrunken",
  23143. height: math.unit(8.3, "cm")
  23144. },
  23145. {
  23146. name: "Human Scale",
  23147. height: math.unit(1.83, "meters")
  23148. },
  23149. {
  23150. name: "Wolxi Scale",
  23151. height: math.unit(40, "meters"),
  23152. default: true
  23153. },
  23154. ]
  23155. ))
  23156. characterMakers.push(() => makeCharacter(
  23157. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23158. {
  23159. front: {
  23160. height: math.unit(1.78, "meters"),
  23161. weight: math.unit(65, "kg"),
  23162. name: "Front",
  23163. image: {
  23164. source: "./media/characters/aki/front.svg",
  23165. extra: 452 / 415
  23166. }
  23167. },
  23168. frontNsfw: {
  23169. height: math.unit(1.78, "meters"),
  23170. weight: math.unit(65, "kg"),
  23171. name: "Front (NSFW)",
  23172. image: {
  23173. source: "./media/characters/aki/front-nsfw.svg",
  23174. extra: 452 / 415
  23175. }
  23176. },
  23177. back: {
  23178. height: math.unit(1.78, "meters"),
  23179. weight: math.unit(65, "kg"),
  23180. name: "Back",
  23181. image: {
  23182. source: "./media/characters/aki/back.svg",
  23183. extra: 452 / 415
  23184. }
  23185. },
  23186. rump: {
  23187. height: math.unit(2.05, "feet"),
  23188. name: "Rump",
  23189. image: {
  23190. source: "./media/characters/aki/rump.svg"
  23191. }
  23192. },
  23193. dick: {
  23194. height: math.unit(0.95, "feet"),
  23195. name: "Dick",
  23196. image: {
  23197. source: "./media/characters/aki/dick.svg"
  23198. }
  23199. },
  23200. },
  23201. [
  23202. {
  23203. name: "Micro",
  23204. height: math.unit(15, "cm")
  23205. },
  23206. {
  23207. name: "Normal",
  23208. height: math.unit(178, "cm"),
  23209. default: true
  23210. },
  23211. {
  23212. name: "Macro",
  23213. height: math.unit(214, "m")
  23214. },
  23215. {
  23216. name: "Macro+",
  23217. height: math.unit(534, "m")
  23218. },
  23219. ]
  23220. ))
  23221. characterMakers.push(() => makeCharacter(
  23222. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23223. {
  23224. front: {
  23225. height: math.unit(5 + 5 / 12, "feet"),
  23226. weight: math.unit(120, "lb"),
  23227. name: "Front",
  23228. image: {
  23229. source: "./media/characters/ari/front.svg",
  23230. extra: 714.5 / 682,
  23231. bottom: 8 / 722.5
  23232. }
  23233. },
  23234. },
  23235. [
  23236. {
  23237. name: "Normal",
  23238. height: math.unit(5 + 5 / 12, "feet")
  23239. },
  23240. {
  23241. name: "Macro",
  23242. height: math.unit(100, "feet"),
  23243. default: true
  23244. },
  23245. {
  23246. name: "Megamacro",
  23247. height: math.unit(100, "miles")
  23248. },
  23249. {
  23250. name: "Gigamacro",
  23251. height: math.unit(80000, "miles")
  23252. },
  23253. ]
  23254. ))
  23255. characterMakers.push(() => makeCharacter(
  23256. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23257. {
  23258. side: {
  23259. height: math.unit(9, "feet"),
  23260. weight: math.unit(400, "kg"),
  23261. name: "Side",
  23262. image: {
  23263. source: "./media/characters/bolt/side.svg",
  23264. extra: 1126 / 896,
  23265. bottom: 60 / 1187.3,
  23266. }
  23267. },
  23268. },
  23269. [
  23270. {
  23271. name: "Micro",
  23272. height: math.unit(5, "inches")
  23273. },
  23274. {
  23275. name: "Normal",
  23276. height: math.unit(9, "feet"),
  23277. default: true
  23278. },
  23279. {
  23280. name: "Macro",
  23281. height: math.unit(700, "feet")
  23282. },
  23283. {
  23284. name: "Max Size",
  23285. height: math.unit(1.52e22, "yottameters")
  23286. },
  23287. ]
  23288. ))
  23289. characterMakers.push(() => makeCharacter(
  23290. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23291. {
  23292. front: {
  23293. height: math.unit(4.53, "meters"),
  23294. weight: math.unit(3, "tons"),
  23295. name: "Front",
  23296. image: {
  23297. source: "./media/characters/draekon-sylviar/front.svg",
  23298. extra: 1228 / 1068,
  23299. bottom: 41 / 1270
  23300. }
  23301. },
  23302. tail: {
  23303. height: math.unit(1.772, "meter"),
  23304. name: "Tail",
  23305. image: {
  23306. source: "./media/characters/draekon-sylviar/tail.svg"
  23307. }
  23308. },
  23309. head: {
  23310. height: math.unit(1.331, "meter"),
  23311. name: "Head",
  23312. image: {
  23313. source: "./media/characters/draekon-sylviar/head.svg"
  23314. }
  23315. },
  23316. hand: {
  23317. height: math.unit(0.564, "meter"),
  23318. name: "Hand",
  23319. image: {
  23320. source: "./media/characters/draekon-sylviar/hand.svg"
  23321. }
  23322. },
  23323. foot: {
  23324. height: math.unit(0.621, "meter"),
  23325. name: "Foot",
  23326. image: {
  23327. source: "./media/characters/draekon-sylviar/foot.svg",
  23328. bottom: 32 / 324
  23329. }
  23330. },
  23331. dick: {
  23332. height: math.unit(61, "cm"),
  23333. name: "Dick",
  23334. image: {
  23335. source: "./media/characters/draekon-sylviar/dick.svg"
  23336. }
  23337. },
  23338. dickseparated: {
  23339. height: math.unit(61, "cm"),
  23340. name: "Dick-separated",
  23341. image: {
  23342. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23343. }
  23344. },
  23345. },
  23346. [
  23347. {
  23348. name: "Small",
  23349. height: math.unit(4.53 / 2, "meters"),
  23350. default: true
  23351. },
  23352. {
  23353. name: "Normal",
  23354. height: math.unit(4.53, "meters"),
  23355. default: true
  23356. },
  23357. {
  23358. name: "Large",
  23359. height: math.unit(4.53 * 2, "meters"),
  23360. },
  23361. ]
  23362. ))
  23363. characterMakers.push(() => makeCharacter(
  23364. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23365. {
  23366. front: {
  23367. height: math.unit(6 + 2 / 12, "feet"),
  23368. weight: math.unit(180, "lb"),
  23369. name: "Front",
  23370. image: {
  23371. source: "./media/characters/brawler/front.svg",
  23372. extra: 3301 / 3027,
  23373. bottom: 138 / 3439
  23374. }
  23375. },
  23376. },
  23377. [
  23378. {
  23379. name: "Normal",
  23380. height: math.unit(6 + 2 / 12, "feet"),
  23381. default: true
  23382. },
  23383. ]
  23384. ))
  23385. characterMakers.push(() => makeCharacter(
  23386. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23387. {
  23388. front: {
  23389. height: math.unit(11, "feet"),
  23390. weight: math.unit(1000, "lb"),
  23391. name: "Front",
  23392. image: {
  23393. source: "./media/characters/alex/front.svg",
  23394. bottom: 44.5 / 620
  23395. }
  23396. },
  23397. },
  23398. [
  23399. {
  23400. name: "Micro",
  23401. height: math.unit(5, "inches")
  23402. },
  23403. {
  23404. name: "Normal",
  23405. height: math.unit(11, "feet"),
  23406. default: true
  23407. },
  23408. {
  23409. name: "Macro",
  23410. height: math.unit(9.5e9, "feet")
  23411. },
  23412. {
  23413. name: "Max Size",
  23414. height: math.unit(1.4e283, "yottameters")
  23415. },
  23416. ]
  23417. ))
  23418. characterMakers.push(() => makeCharacter(
  23419. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23420. {
  23421. female: {
  23422. height: math.unit(29.9, "m"),
  23423. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23424. name: "Female",
  23425. image: {
  23426. source: "./media/characters/zenari/female.svg",
  23427. extra: 3281.6 / 3217,
  23428. bottom: 72.2 / 3353
  23429. }
  23430. },
  23431. male: {
  23432. height: math.unit(27.7, "m"),
  23433. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23434. name: "Male",
  23435. image: {
  23436. source: "./media/characters/zenari/male.svg",
  23437. extra: 3008 / 2991,
  23438. bottom: 54.6 / 3069
  23439. }
  23440. },
  23441. },
  23442. [
  23443. {
  23444. name: "Macro",
  23445. height: math.unit(29.7, "meters"),
  23446. default: true
  23447. },
  23448. ]
  23449. ))
  23450. characterMakers.push(() => makeCharacter(
  23451. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23452. {
  23453. female: {
  23454. height: math.unit(23.8, "m"),
  23455. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23456. name: "Female",
  23457. image: {
  23458. source: "./media/characters/mactarian/female.svg",
  23459. extra: 2662 / 2569,
  23460. bottom: 73 / 2736
  23461. }
  23462. },
  23463. male: {
  23464. height: math.unit(23.8, "m"),
  23465. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23466. name: "Male",
  23467. image: {
  23468. source: "./media/characters/mactarian/male.svg",
  23469. extra: 2673 / 2600,
  23470. bottom: 76 / 2750
  23471. }
  23472. },
  23473. },
  23474. [
  23475. {
  23476. name: "Macro",
  23477. height: math.unit(23.8, "meters"),
  23478. default: true
  23479. },
  23480. ]
  23481. ))
  23482. characterMakers.push(() => makeCharacter(
  23483. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23484. {
  23485. female: {
  23486. height: math.unit(19.3, "m"),
  23487. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23488. name: "Female",
  23489. image: {
  23490. source: "./media/characters/umok/female.svg",
  23491. extra: 2186 / 2078,
  23492. bottom: 87 / 2277
  23493. }
  23494. },
  23495. male: {
  23496. height: math.unit(19.5, "m"),
  23497. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23498. name: "Male",
  23499. image: {
  23500. source: "./media/characters/umok/male.svg",
  23501. extra: 2233 / 2140,
  23502. bottom: 24.4 / 2258
  23503. }
  23504. },
  23505. },
  23506. [
  23507. {
  23508. name: "Macro",
  23509. height: math.unit(19.3, "meters"),
  23510. default: true
  23511. },
  23512. ]
  23513. ))
  23514. characterMakers.push(() => makeCharacter(
  23515. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23516. {
  23517. female: {
  23518. height: math.unit(26.15, "m"),
  23519. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23520. name: "Female",
  23521. image: {
  23522. source: "./media/characters/joraxian/female.svg",
  23523. extra: 2912 / 2824,
  23524. bottom: 36 / 2956
  23525. }
  23526. },
  23527. male: {
  23528. height: math.unit(25.4, "m"),
  23529. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23530. name: "Male",
  23531. image: {
  23532. source: "./media/characters/joraxian/male.svg",
  23533. extra: 2877 / 2721,
  23534. bottom: 82 / 2967
  23535. }
  23536. },
  23537. },
  23538. [
  23539. {
  23540. name: "Macro",
  23541. height: math.unit(26.15, "meters"),
  23542. default: true
  23543. },
  23544. ]
  23545. ))
  23546. characterMakers.push(() => makeCharacter(
  23547. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23548. {
  23549. female: {
  23550. height: math.unit(21.6, "m"),
  23551. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23552. name: "Female",
  23553. image: {
  23554. source: "./media/characters/sthara/female.svg",
  23555. extra: 2516 / 2347,
  23556. bottom: 21.5 / 2537
  23557. }
  23558. },
  23559. male: {
  23560. height: math.unit(24, "m"),
  23561. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23562. name: "Male",
  23563. image: {
  23564. source: "./media/characters/sthara/male.svg",
  23565. extra: 2732 / 2607,
  23566. bottom: 23 / 2732
  23567. }
  23568. },
  23569. },
  23570. [
  23571. {
  23572. name: "Macro",
  23573. height: math.unit(21.6, "meters"),
  23574. default: true
  23575. },
  23576. ]
  23577. ))
  23578. characterMakers.push(() => makeCharacter(
  23579. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23580. {
  23581. front: {
  23582. height: math.unit(6 + 4 / 12, "feet"),
  23583. weight: math.unit(175, "lb"),
  23584. name: "Front",
  23585. image: {
  23586. source: "./media/characters/luka-bryzant/front.svg",
  23587. extra: 311 / 289,
  23588. bottom: 4 / 315
  23589. }
  23590. },
  23591. back: {
  23592. height: math.unit(6 + 4 / 12, "feet"),
  23593. weight: math.unit(175, "lb"),
  23594. name: "Back",
  23595. image: {
  23596. source: "./media/characters/luka-bryzant/back.svg",
  23597. extra: 311 / 289,
  23598. bottom: 3.8 / 313.7
  23599. }
  23600. },
  23601. },
  23602. [
  23603. {
  23604. name: "Micro",
  23605. height: math.unit(10, "inches")
  23606. },
  23607. {
  23608. name: "Normal",
  23609. height: math.unit(6 + 4 / 12, "feet"),
  23610. default: true
  23611. },
  23612. {
  23613. name: "Large",
  23614. height: math.unit(12, "feet")
  23615. },
  23616. ]
  23617. ))
  23618. characterMakers.push(() => makeCharacter(
  23619. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23620. {
  23621. front: {
  23622. height: math.unit(5 + 7 / 12, "feet"),
  23623. weight: math.unit(185, "lb"),
  23624. name: "Front",
  23625. image: {
  23626. source: "./media/characters/aman-aquila/front.svg",
  23627. extra: 1013 / 976,
  23628. bottom: 45.6 / 1057
  23629. }
  23630. },
  23631. side: {
  23632. height: math.unit(5 + 7 / 12, "feet"),
  23633. weight: math.unit(185, "lb"),
  23634. name: "Side",
  23635. image: {
  23636. source: "./media/characters/aman-aquila/side.svg",
  23637. extra: 1054 / 1011,
  23638. bottom: 15 / 1070
  23639. }
  23640. },
  23641. back: {
  23642. height: math.unit(5 + 7 / 12, "feet"),
  23643. weight: math.unit(185, "lb"),
  23644. name: "Back",
  23645. image: {
  23646. source: "./media/characters/aman-aquila/back.svg",
  23647. extra: 1026 / 970,
  23648. bottom: 12 / 1039
  23649. }
  23650. },
  23651. head: {
  23652. height: math.unit(1.211, "feet"),
  23653. name: "Head",
  23654. image: {
  23655. source: "./media/characters/aman-aquila/head.svg",
  23656. }
  23657. },
  23658. },
  23659. [
  23660. {
  23661. name: "Minimicro",
  23662. height: math.unit(0.057, "inches")
  23663. },
  23664. {
  23665. name: "Micro",
  23666. height: math.unit(7, "inches")
  23667. },
  23668. {
  23669. name: "Mini",
  23670. height: math.unit(3 + 7 / 12, "feet")
  23671. },
  23672. {
  23673. name: "Normal",
  23674. height: math.unit(5 + 7 / 12, "feet"),
  23675. default: true
  23676. },
  23677. {
  23678. name: "Macro",
  23679. height: math.unit(157 + 7 / 12, "feet")
  23680. },
  23681. {
  23682. name: "Megamacro",
  23683. height: math.unit(1557 + 7 / 12, "feet")
  23684. },
  23685. {
  23686. name: "Gigamacro",
  23687. height: math.unit(15557 + 7 / 12, "feet")
  23688. },
  23689. ]
  23690. ))
  23691. characterMakers.push(() => makeCharacter(
  23692. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23693. {
  23694. front: {
  23695. height: math.unit(3 + 2 / 12, "inches"),
  23696. weight: math.unit(0.3, "ounces"),
  23697. name: "Front",
  23698. image: {
  23699. source: "./media/characters/hiphae/front.svg",
  23700. extra: 1931 / 1683,
  23701. bottom: 24 / 1955
  23702. }
  23703. },
  23704. },
  23705. [
  23706. {
  23707. name: "Normal",
  23708. height: math.unit(3 + 1 / 2, "inches"),
  23709. default: true
  23710. },
  23711. ]
  23712. ))
  23713. characterMakers.push(() => makeCharacter(
  23714. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23715. {
  23716. front: {
  23717. height: math.unit(5 + 10 / 12, "feet"),
  23718. weight: math.unit(165, "lb"),
  23719. name: "Front",
  23720. image: {
  23721. source: "./media/characters/nicky/front.svg",
  23722. extra: 3144 / 2886,
  23723. bottom: 45.6 / 3192
  23724. }
  23725. },
  23726. back: {
  23727. height: math.unit(5 + 10 / 12, "feet"),
  23728. weight: math.unit(165, "lb"),
  23729. name: "Back",
  23730. image: {
  23731. source: "./media/characters/nicky/back.svg",
  23732. extra: 3055 / 2804,
  23733. bottom: 28.4 / 3087
  23734. }
  23735. },
  23736. frontclothed: {
  23737. height: math.unit(5 + 10 / 12, "feet"),
  23738. weight: math.unit(165, "lb"),
  23739. name: "Front-clothed",
  23740. image: {
  23741. source: "./media/characters/nicky/front-clothed.svg",
  23742. extra: 3184.9 / 2926.9,
  23743. bottom: 86.5 / 3239.9
  23744. }
  23745. },
  23746. foot: {
  23747. height: math.unit(1.16, "feet"),
  23748. name: "Foot",
  23749. image: {
  23750. source: "./media/characters/nicky/foot.svg"
  23751. }
  23752. },
  23753. feet: {
  23754. height: math.unit(1.34, "feet"),
  23755. name: "Feet",
  23756. image: {
  23757. source: "./media/characters/nicky/feet.svg"
  23758. }
  23759. },
  23760. maw: {
  23761. height: math.unit(0.9, "feet"),
  23762. name: "Maw",
  23763. image: {
  23764. source: "./media/characters/nicky/maw.svg"
  23765. }
  23766. },
  23767. },
  23768. [
  23769. {
  23770. name: "Normal",
  23771. height: math.unit(5 + 10 / 12, "feet"),
  23772. default: true
  23773. },
  23774. {
  23775. name: "Macro",
  23776. height: math.unit(60, "feet")
  23777. },
  23778. {
  23779. name: "Megamacro",
  23780. height: math.unit(1, "mile")
  23781. },
  23782. ]
  23783. ))
  23784. characterMakers.push(() => makeCharacter(
  23785. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23786. {
  23787. side: {
  23788. height: math.unit(10, "feet"),
  23789. weight: math.unit(600, "lb"),
  23790. name: "Side",
  23791. image: {
  23792. source: "./media/characters/blair/side.svg",
  23793. bottom: 16.6 / 475,
  23794. extra: 458 / 431
  23795. }
  23796. },
  23797. },
  23798. [
  23799. {
  23800. name: "Micro",
  23801. height: math.unit(8, "inches")
  23802. },
  23803. {
  23804. name: "Normal",
  23805. height: math.unit(10, "feet"),
  23806. default: true
  23807. },
  23808. {
  23809. name: "Macro",
  23810. height: math.unit(180, "feet")
  23811. },
  23812. ]
  23813. ))
  23814. characterMakers.push(() => makeCharacter(
  23815. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23816. {
  23817. front: {
  23818. height: math.unit(5 + 4 / 12, "feet"),
  23819. weight: math.unit(125, "lb"),
  23820. name: "Front",
  23821. image: {
  23822. source: "./media/characters/fisher/front.svg",
  23823. extra: 444 / 390,
  23824. bottom: 2 / 444.8
  23825. }
  23826. },
  23827. },
  23828. [
  23829. {
  23830. name: "Micro",
  23831. height: math.unit(4, "inches")
  23832. },
  23833. {
  23834. name: "Normal",
  23835. height: math.unit(5 + 4 / 12, "feet"),
  23836. default: true
  23837. },
  23838. {
  23839. name: "Macro",
  23840. height: math.unit(100, "feet")
  23841. },
  23842. ]
  23843. ))
  23844. characterMakers.push(() => makeCharacter(
  23845. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23846. {
  23847. front: {
  23848. height: math.unit(6.71, "feet"),
  23849. weight: math.unit(200, "lb"),
  23850. capacity: math.unit(1000000, "people"),
  23851. name: "Front",
  23852. image: {
  23853. source: "./media/characters/gliss/front.svg",
  23854. extra: 2347 / 2231,
  23855. bottom: 113 / 2462
  23856. }
  23857. },
  23858. hammerspaceSize: {
  23859. height: math.unit(6.71 * 717, "feet"),
  23860. weight: math.unit(200, "lb"),
  23861. capacity: math.unit(1000000, "people"),
  23862. name: "Hammerspace Size",
  23863. image: {
  23864. source: "./media/characters/gliss/front.svg",
  23865. extra: 2347 / 2231,
  23866. bottom: 113 / 2462
  23867. }
  23868. },
  23869. },
  23870. [
  23871. {
  23872. name: "Normal",
  23873. height: math.unit(6.71, "feet"),
  23874. default: true
  23875. },
  23876. ]
  23877. ))
  23878. characterMakers.push(() => makeCharacter(
  23879. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23880. {
  23881. side: {
  23882. height: math.unit(1.44, "m"),
  23883. weight: math.unit(80, "kg"),
  23884. name: "Side",
  23885. image: {
  23886. source: "./media/characters/dune-anderson/side.svg",
  23887. bottom: 49 / 1426
  23888. }
  23889. },
  23890. },
  23891. [
  23892. {
  23893. name: "Wolf-sized",
  23894. height: math.unit(1.44, "meters")
  23895. },
  23896. {
  23897. name: "Normal",
  23898. height: math.unit(5.05, "meters"),
  23899. default: true
  23900. },
  23901. {
  23902. name: "Big",
  23903. height: math.unit(14.4, "meters")
  23904. },
  23905. {
  23906. name: "Huge",
  23907. height: math.unit(144, "meters")
  23908. },
  23909. ]
  23910. ))
  23911. characterMakers.push(() => makeCharacter(
  23912. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23913. {
  23914. front: {
  23915. height: math.unit(7, "feet"),
  23916. weight: math.unit(425, "lb"),
  23917. name: "Front",
  23918. image: {
  23919. source: "./media/characters/hind/front.svg",
  23920. extra: 2091 / 1860,
  23921. bottom: 129 / 2220
  23922. }
  23923. },
  23924. back: {
  23925. height: math.unit(7, "feet"),
  23926. weight: math.unit(425, "lb"),
  23927. name: "Back",
  23928. image: {
  23929. source: "./media/characters/hind/back.svg",
  23930. extra: 2091 / 1860,
  23931. bottom: 24.6 / 2309
  23932. }
  23933. },
  23934. tail: {
  23935. height: math.unit(2.8, "feet"),
  23936. name: "Tail",
  23937. image: {
  23938. source: "./media/characters/hind/tail.svg"
  23939. }
  23940. },
  23941. head: {
  23942. height: math.unit(2.55, "feet"),
  23943. name: "Head",
  23944. image: {
  23945. source: "./media/characters/hind/head.svg"
  23946. }
  23947. },
  23948. },
  23949. [
  23950. {
  23951. name: "XS",
  23952. height: math.unit(0.7, "feet")
  23953. },
  23954. {
  23955. name: "Normal",
  23956. height: math.unit(7, "feet"),
  23957. default: true
  23958. },
  23959. {
  23960. name: "XL",
  23961. height: math.unit(70, "feet")
  23962. },
  23963. ]
  23964. ))
  23965. characterMakers.push(() => makeCharacter(
  23966. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23967. {
  23968. front: {
  23969. height: math.unit(6, "feet"),
  23970. weight: math.unit(150, "lb"),
  23971. name: "Front",
  23972. image: {
  23973. source: "./media/characters/dylan-skaven/front.svg",
  23974. extra: 2318 / 2063,
  23975. bottom: 93.4 / 2410
  23976. }
  23977. },
  23978. },
  23979. [
  23980. {
  23981. name: "Nano",
  23982. height: math.unit(1, "mm")
  23983. },
  23984. {
  23985. name: "Micro",
  23986. height: math.unit(1, "cm")
  23987. },
  23988. {
  23989. name: "Normal",
  23990. height: math.unit(2.1, "meters"),
  23991. default: true
  23992. },
  23993. ]
  23994. ))
  23995. characterMakers.push(() => makeCharacter(
  23996. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23997. {
  23998. front: {
  23999. height: math.unit(7 + 5 / 12, "feet"),
  24000. weight: math.unit(357, "lb"),
  24001. name: "Front",
  24002. image: {
  24003. source: "./media/characters/solex-draconov/front.svg",
  24004. extra: 1993 / 1865,
  24005. bottom: 117 / 2111
  24006. }
  24007. },
  24008. },
  24009. [
  24010. {
  24011. name: "Natural Height",
  24012. height: math.unit(7 + 5 / 12, "feet"),
  24013. default: true
  24014. },
  24015. {
  24016. name: "Macro",
  24017. height: math.unit(350, "feet")
  24018. },
  24019. {
  24020. name: "Macro+",
  24021. height: math.unit(1000, "feet")
  24022. },
  24023. {
  24024. name: "Megamacro",
  24025. height: math.unit(20, "km")
  24026. },
  24027. {
  24028. name: "Megamacro+",
  24029. height: math.unit(1000, "km")
  24030. },
  24031. {
  24032. name: "Gigamacro",
  24033. height: math.unit(2.5, "Gm")
  24034. },
  24035. {
  24036. name: "Teramacro",
  24037. height: math.unit(15, "Tm")
  24038. },
  24039. {
  24040. name: "Galactic",
  24041. height: math.unit(30, "Zm")
  24042. },
  24043. {
  24044. name: "Universal",
  24045. height: math.unit(21000, "Ym")
  24046. },
  24047. {
  24048. name: "Omniversal",
  24049. height: math.unit(9.861e50, "Ym")
  24050. },
  24051. {
  24052. name: "Existential",
  24053. height: math.unit(1e300, "meters")
  24054. },
  24055. ]
  24056. ))
  24057. characterMakers.push(() => makeCharacter(
  24058. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24059. {
  24060. side: {
  24061. height: math.unit(25, "feet"),
  24062. weight: math.unit(90000, "lb"),
  24063. name: "Side",
  24064. image: {
  24065. source: "./media/characters/mandarax/side.svg",
  24066. extra: 614 / 332,
  24067. bottom: 55 / 630
  24068. }
  24069. },
  24070. head: {
  24071. height: math.unit(11.4, "feet"),
  24072. name: "Head",
  24073. image: {
  24074. source: "./media/characters/mandarax/head.svg"
  24075. }
  24076. },
  24077. belly: {
  24078. height: math.unit(33, "feet"),
  24079. name: "Belly",
  24080. capacity: math.unit(500, "people"),
  24081. image: {
  24082. source: "./media/characters/mandarax/belly.svg"
  24083. }
  24084. },
  24085. dick: {
  24086. height: math.unit(8.46, "feet"),
  24087. name: "Dick",
  24088. image: {
  24089. source: "./media/characters/mandarax/dick.svg"
  24090. }
  24091. },
  24092. top: {
  24093. height: math.unit(28, "meters"),
  24094. name: "Top",
  24095. image: {
  24096. source: "./media/characters/mandarax/top.svg"
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Normal",
  24103. height: math.unit(25, "feet"),
  24104. default: true
  24105. },
  24106. ]
  24107. ))
  24108. characterMakers.push(() => makeCharacter(
  24109. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24110. {
  24111. front: {
  24112. height: math.unit(5, "feet"),
  24113. weight: math.unit(90, "lb"),
  24114. name: "Front",
  24115. image: {
  24116. source: "./media/characters/pixil/front.svg",
  24117. extra: 2000 / 1618,
  24118. bottom: 12.3 / 2011
  24119. }
  24120. },
  24121. },
  24122. [
  24123. {
  24124. name: "Normal",
  24125. height: math.unit(5, "feet"),
  24126. default: true
  24127. },
  24128. {
  24129. name: "Megamacro",
  24130. height: math.unit(10, "miles"),
  24131. },
  24132. ]
  24133. ))
  24134. characterMakers.push(() => makeCharacter(
  24135. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24136. {
  24137. front: {
  24138. height: math.unit(7 + 2 / 12, "feet"),
  24139. weight: math.unit(200, "lb"),
  24140. name: "Front",
  24141. image: {
  24142. source: "./media/characters/angel/front.svg",
  24143. extra: 1830 / 1737,
  24144. bottom: 22.6 / 1854,
  24145. }
  24146. },
  24147. },
  24148. [
  24149. {
  24150. name: "Normal",
  24151. height: math.unit(7 + 2 / 12, "feet"),
  24152. default: true
  24153. },
  24154. {
  24155. name: "Macro",
  24156. height: math.unit(1000, "feet")
  24157. },
  24158. {
  24159. name: "Megamacro",
  24160. height: math.unit(2, "miles")
  24161. },
  24162. {
  24163. name: "Gigamacro",
  24164. height: math.unit(20, "earths")
  24165. },
  24166. ]
  24167. ))
  24168. characterMakers.push(() => makeCharacter(
  24169. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24170. {
  24171. front: {
  24172. height: math.unit(5, "feet"),
  24173. weight: math.unit(180, "lb"),
  24174. name: "Front",
  24175. image: {
  24176. source: "./media/characters/mekana/front.svg",
  24177. extra: 1671 / 1605,
  24178. bottom: 3.5 / 1691
  24179. }
  24180. },
  24181. side: {
  24182. height: math.unit(5, "feet"),
  24183. weight: math.unit(180, "lb"),
  24184. name: "Side",
  24185. image: {
  24186. source: "./media/characters/mekana/side.svg",
  24187. extra: 1671 / 1605,
  24188. bottom: 3.5 / 1691
  24189. }
  24190. },
  24191. back: {
  24192. height: math.unit(5, "feet"),
  24193. weight: math.unit(180, "lb"),
  24194. name: "Back",
  24195. image: {
  24196. source: "./media/characters/mekana/back.svg",
  24197. extra: 1671 / 1605,
  24198. bottom: 3.5 / 1691
  24199. }
  24200. },
  24201. },
  24202. [
  24203. {
  24204. name: "Normal",
  24205. height: math.unit(5, "feet"),
  24206. default: true
  24207. },
  24208. ]
  24209. ))
  24210. characterMakers.push(() => makeCharacter(
  24211. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24212. {
  24213. front: {
  24214. height: math.unit(4 + 6 / 12, "feet"),
  24215. weight: math.unit(80, "lb"),
  24216. name: "Front",
  24217. image: {
  24218. source: "./media/characters/pixie/front.svg",
  24219. extra: 1924 / 1825,
  24220. bottom: 22.4 / 1946
  24221. }
  24222. },
  24223. },
  24224. [
  24225. {
  24226. name: "Normal",
  24227. height: math.unit(4 + 6 / 12, "feet"),
  24228. default: true
  24229. },
  24230. {
  24231. name: "Macro",
  24232. height: math.unit(40, "feet")
  24233. },
  24234. ]
  24235. ))
  24236. characterMakers.push(() => makeCharacter(
  24237. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24238. {
  24239. front: {
  24240. height: math.unit(2.1, "meters"),
  24241. weight: math.unit(200, "lb"),
  24242. name: "Front",
  24243. image: {
  24244. source: "./media/characters/the-lascivious/front.svg",
  24245. extra: 1 / 0.893,
  24246. bottom: 3.5 / 573.7
  24247. }
  24248. },
  24249. },
  24250. [
  24251. {
  24252. name: "Human Scale",
  24253. height: math.unit(2.1, "meters")
  24254. },
  24255. {
  24256. name: "Wolxi Scale",
  24257. height: math.unit(46.2, "m"),
  24258. default: true
  24259. },
  24260. {
  24261. name: "Boinker of Buildings",
  24262. height: math.unit(10, "km")
  24263. },
  24264. {
  24265. name: "Shagger of Skyscrapers",
  24266. height: math.unit(40, "km")
  24267. },
  24268. {
  24269. name: "Banger of Boroughs",
  24270. height: math.unit(4000, "km")
  24271. },
  24272. {
  24273. name: "Screwer of States",
  24274. height: math.unit(100000, "km")
  24275. },
  24276. {
  24277. name: "Pounder of Planets",
  24278. height: math.unit(2000000, "km")
  24279. },
  24280. ]
  24281. ))
  24282. characterMakers.push(() => makeCharacter(
  24283. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24284. {
  24285. front: {
  24286. height: math.unit(6, "feet"),
  24287. weight: math.unit(150, "lb"),
  24288. name: "Front",
  24289. image: {
  24290. source: "./media/characters/aj/front.svg",
  24291. extra: 2039 / 1562,
  24292. bottom: 40 / 2079
  24293. }
  24294. },
  24295. },
  24296. [
  24297. {
  24298. name: "Normal",
  24299. height: math.unit(11 + 6 / 12, "feet"),
  24300. default: true
  24301. },
  24302. {
  24303. name: "Megamacro",
  24304. height: math.unit(60, "megameters")
  24305. },
  24306. ]
  24307. ))
  24308. characterMakers.push(() => makeCharacter(
  24309. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24310. {
  24311. side: {
  24312. height: math.unit(31 + 8/12, "feet"),
  24313. weight: math.unit(75000, "kg"),
  24314. name: "Side",
  24315. image: {
  24316. source: "./media/characters/koros/side.svg",
  24317. extra: 1442/1297,
  24318. bottom: 122.7/1562
  24319. }
  24320. },
  24321. dicksKingsCrown: {
  24322. height: math.unit(6, "feet"),
  24323. name: "Dicks (King's Crown)",
  24324. image: {
  24325. source: "./media/characters/koros/dicks-kings-crown.svg"
  24326. }
  24327. },
  24328. dicksTailSet: {
  24329. height: math.unit(3, "feet"),
  24330. name: "Dicks (Tail Set)",
  24331. image: {
  24332. source: "./media/characters/koros/dicks-tail-set.svg"
  24333. }
  24334. },
  24335. dickCumming: {
  24336. height: math.unit(7.98, "feet"),
  24337. name: "Dick (Cumming)",
  24338. image: {
  24339. source: "./media/characters/koros/dick-cumming.svg"
  24340. }
  24341. },
  24342. dicksBack: {
  24343. height: math.unit(5.9, "feet"),
  24344. name: "Dicks (Back)",
  24345. image: {
  24346. source: "./media/characters/koros/dicks-back.svg"
  24347. }
  24348. },
  24349. dicksFront: {
  24350. height: math.unit(3.72, "feet"),
  24351. name: "Dicks (Front)",
  24352. image: {
  24353. source: "./media/characters/koros/dicks-front.svg"
  24354. }
  24355. },
  24356. dicksPeeking: {
  24357. height: math.unit(3.0, "feet"),
  24358. name: "Dicks (Peeking)",
  24359. image: {
  24360. source: "./media/characters/koros/dicks-peeking.svg"
  24361. }
  24362. },
  24363. eye: {
  24364. height: math.unit(1.7, "feet"),
  24365. name: "Eye",
  24366. image: {
  24367. source: "./media/characters/koros/eye.svg"
  24368. }
  24369. },
  24370. headFront: {
  24371. height: math.unit(11.69, "feet"),
  24372. name: "Head (Front)",
  24373. image: {
  24374. source: "./media/characters/koros/head-front.svg"
  24375. }
  24376. },
  24377. headSide: {
  24378. height: math.unit(14, "feet"),
  24379. name: "Head (Side)",
  24380. image: {
  24381. source: "./media/characters/koros/head-side.svg"
  24382. }
  24383. },
  24384. leg: {
  24385. height: math.unit(17, "feet"),
  24386. name: "Leg",
  24387. image: {
  24388. source: "./media/characters/koros/leg.svg"
  24389. }
  24390. },
  24391. mawSide: {
  24392. height: math.unit(12.8, "feet"),
  24393. name: "Maw (Side)",
  24394. image: {
  24395. source: "./media/characters/koros/maw-side.svg"
  24396. }
  24397. },
  24398. mawSpitting: {
  24399. height: math.unit(17, "feet"),
  24400. name: "Maw (Spitting)",
  24401. image: {
  24402. source: "./media/characters/koros/maw-spitting.svg"
  24403. }
  24404. },
  24405. slit: {
  24406. height: math.unit(2.8, "feet"),
  24407. name: "Slit",
  24408. image: {
  24409. source: "./media/characters/koros/slit.svg"
  24410. }
  24411. },
  24412. stomach: {
  24413. height: math.unit(6.8, "feet"),
  24414. capacity: math.unit(20, "people"),
  24415. name: "Stomach",
  24416. image: {
  24417. source: "./media/characters/koros/stomach.svg"
  24418. }
  24419. },
  24420. wingspanBottom: {
  24421. height: math.unit(114, "feet"),
  24422. name: "Wingspan (Bottom)",
  24423. image: {
  24424. source: "./media/characters/koros/wingspan-bottom.svg"
  24425. }
  24426. },
  24427. wingspanTop: {
  24428. height: math.unit(104, "feet"),
  24429. name: "Wingspan (Top)",
  24430. image: {
  24431. source: "./media/characters/koros/wingspan-top.svg"
  24432. }
  24433. },
  24434. },
  24435. [
  24436. {
  24437. name: "Normal",
  24438. height: math.unit(31 + 8/12, "feet"),
  24439. default: true
  24440. },
  24441. ]
  24442. ))
  24443. characterMakers.push(() => makeCharacter(
  24444. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24445. {
  24446. front: {
  24447. height: math.unit(18 + 5/12, "feet"),
  24448. weight: math.unit(3750, "kg"),
  24449. name: "Front",
  24450. image: {
  24451. source: "./media/characters/vexx/front.svg",
  24452. extra: 426/396,
  24453. bottom: 31.5/458
  24454. }
  24455. },
  24456. maw: {
  24457. height: math.unit(6, "feet"),
  24458. name: "Maw",
  24459. image: {
  24460. source: "./media/characters/vexx/maw.svg"
  24461. }
  24462. },
  24463. },
  24464. [
  24465. {
  24466. name: "Normal",
  24467. height: math.unit(18 + 5/12, "feet"),
  24468. default: true
  24469. },
  24470. ]
  24471. ))
  24472. characterMakers.push(() => makeCharacter(
  24473. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24474. {
  24475. front: {
  24476. height: math.unit(17 + 6/12, "feet"),
  24477. weight: math.unit(150, "lb"),
  24478. name: "Front",
  24479. image: {
  24480. source: "./media/characters/baadra/front.svg",
  24481. extra: 3137/2890,
  24482. bottom: 168.4/3305
  24483. }
  24484. },
  24485. back: {
  24486. height: math.unit(17 + 6/12, "feet"),
  24487. weight: math.unit(150, "lb"),
  24488. name: "Back",
  24489. image: {
  24490. source: "./media/characters/baadra/back.svg",
  24491. extra: 3142/2890,
  24492. bottom: 220/3371
  24493. }
  24494. },
  24495. head: {
  24496. height: math.unit(5.45, "feet"),
  24497. name: "Head",
  24498. image: {
  24499. source: "./media/characters/baadra/head.svg"
  24500. }
  24501. },
  24502. headAngry: {
  24503. height: math.unit(4.95, "feet"),
  24504. name: "Head (Angry)",
  24505. image: {
  24506. source: "./media/characters/baadra/head-angry.svg"
  24507. }
  24508. },
  24509. headOpen: {
  24510. height: math.unit(6, "feet"),
  24511. name: "Head (Open)",
  24512. image: {
  24513. source: "./media/characters/baadra/head-open.svg"
  24514. }
  24515. },
  24516. },
  24517. [
  24518. {
  24519. name: "Normal",
  24520. height: math.unit(17 + 6/12, "feet"),
  24521. default: true
  24522. },
  24523. ]
  24524. ))
  24525. characterMakers.push(() => makeCharacter(
  24526. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24527. {
  24528. front: {
  24529. height: math.unit(7 + 3/12, "feet"),
  24530. weight: math.unit(180, "lb"),
  24531. name: "Front",
  24532. image: {
  24533. source: "./media/characters/juri/front.svg",
  24534. extra: 1401/1237,
  24535. bottom: 18.5/1418
  24536. }
  24537. },
  24538. side: {
  24539. height: math.unit(7 + 3/12, "feet"),
  24540. weight: math.unit(180, "lb"),
  24541. name: "Side",
  24542. image: {
  24543. source: "./media/characters/juri/side.svg",
  24544. extra: 1424/1242,
  24545. bottom: 18.5/1447
  24546. }
  24547. },
  24548. sitting: {
  24549. height: math.unit(6, "feet"),
  24550. weight: math.unit(180, "lb"),
  24551. name: "Sitting",
  24552. image: {
  24553. source: "./media/characters/juri/sitting.svg",
  24554. extra: 1270/1143,
  24555. bottom: 100/1343
  24556. }
  24557. },
  24558. back: {
  24559. height: math.unit(7 + 3/12, "feet"),
  24560. weight: math.unit(180, "lb"),
  24561. name: "Back",
  24562. image: {
  24563. source: "./media/characters/juri/back.svg",
  24564. extra: 1377/1240,
  24565. bottom: 23.7/1405
  24566. }
  24567. },
  24568. maw: {
  24569. height: math.unit(2.8, "feet"),
  24570. name: "Maw",
  24571. image: {
  24572. source: "./media/characters/juri/maw.svg"
  24573. }
  24574. },
  24575. stomach: {
  24576. height: math.unit(0.89, "feet"),
  24577. capacity: math.unit(4, "liters"),
  24578. name: "Stomach",
  24579. image: {
  24580. source: "./media/characters/juri/stomach.svg"
  24581. }
  24582. },
  24583. },
  24584. [
  24585. {
  24586. name: "Normal",
  24587. height: math.unit(7 + 3/12, "feet"),
  24588. default: true
  24589. },
  24590. ]
  24591. ))
  24592. characterMakers.push(() => makeCharacter(
  24593. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24594. {
  24595. fox: {
  24596. height: math.unit(5 + 6/12, "feet"),
  24597. weight: math.unit(140, "lb"),
  24598. name: "Fox",
  24599. image: {
  24600. source: "./media/characters/maxene-sita/fox.svg",
  24601. extra: 146/138,
  24602. bottom: 2.1/148.19
  24603. }
  24604. },
  24605. kitsune: {
  24606. height: math.unit(10, "feet"),
  24607. weight: math.unit(800, "lb"),
  24608. name: "Kitsune",
  24609. image: {
  24610. source: "./media/characters/maxene-sita/kitsune.svg",
  24611. extra: 185/176,
  24612. bottom: 4.7/189.9
  24613. }
  24614. },
  24615. },
  24616. [
  24617. {
  24618. name: "Normal",
  24619. height: math.unit(5 + 6/12, "feet"),
  24620. default: true
  24621. },
  24622. ]
  24623. ))
  24624. characterMakers.push(() => makeCharacter(
  24625. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24626. {
  24627. front: {
  24628. height: math.unit(3 + 4/12, "feet"),
  24629. weight: math.unit(70, "lb"),
  24630. name: "Front",
  24631. image: {
  24632. source: "./media/characters/maia/front.svg",
  24633. extra: 227/219.5,
  24634. bottom: 40 / 267
  24635. }
  24636. },
  24637. back: {
  24638. height: math.unit(3 + 4/12, "feet"),
  24639. weight: math.unit(70, "lb"),
  24640. name: "Back",
  24641. image: {
  24642. source: "./media/characters/maia/back.svg",
  24643. extra: 237/225
  24644. }
  24645. },
  24646. },
  24647. [
  24648. {
  24649. name: "Normal",
  24650. height: math.unit(3 + 4/12, "feet"),
  24651. default: true
  24652. },
  24653. ]
  24654. ))
  24655. characterMakers.push(() => makeCharacter(
  24656. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24657. {
  24658. front: {
  24659. height: math.unit(5 + 10/12, "feet"),
  24660. weight: math.unit(197, "lb"),
  24661. name: "Front",
  24662. image: {
  24663. source: "./media/characters/jabaro/front.svg",
  24664. extra: 225/216,
  24665. bottom: 5.06/230
  24666. }
  24667. },
  24668. back: {
  24669. height: math.unit(5 + 10/12, "feet"),
  24670. weight: math.unit(197, "lb"),
  24671. name: "Back",
  24672. image: {
  24673. source: "./media/characters/jabaro/back.svg",
  24674. extra: 225/219,
  24675. bottom: 1.9/227
  24676. }
  24677. },
  24678. },
  24679. [
  24680. {
  24681. name: "Normal",
  24682. height: math.unit(5 + 10/12, "feet"),
  24683. default: true
  24684. },
  24685. ]
  24686. ))
  24687. characterMakers.push(() => makeCharacter(
  24688. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24689. {
  24690. front: {
  24691. height: math.unit(5 + 8/12, "feet"),
  24692. weight: math.unit(139, "lb"),
  24693. name: "Front",
  24694. image: {
  24695. source: "./media/characters/risa/front.svg",
  24696. extra: 270/260,
  24697. bottom: 11.2/282
  24698. }
  24699. },
  24700. back: {
  24701. height: math.unit(5 + 8/12, "feet"),
  24702. weight: math.unit(139, "lb"),
  24703. name: "Back",
  24704. image: {
  24705. source: "./media/characters/risa/back.svg",
  24706. extra: 264/255,
  24707. bottom: 4/268
  24708. }
  24709. },
  24710. },
  24711. [
  24712. {
  24713. name: "Normal",
  24714. height: math.unit(5 + 8/12, "feet"),
  24715. default: true
  24716. },
  24717. ]
  24718. ))
  24719. characterMakers.push(() => makeCharacter(
  24720. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24721. {
  24722. front: {
  24723. height: math.unit(2 + 11/12, "feet"),
  24724. weight: math.unit(30, "lb"),
  24725. name: "Front",
  24726. image: {
  24727. source: "./media/characters/weatley/front.svg",
  24728. bottom: 10.7/414,
  24729. extra: 403.5/362
  24730. }
  24731. },
  24732. back: {
  24733. height: math.unit(2 + 11/12, "feet"),
  24734. weight: math.unit(30, "lb"),
  24735. name: "Back",
  24736. image: {
  24737. source: "./media/characters/weatley/back.svg",
  24738. bottom: 10.7/414,
  24739. extra: 403.5/362
  24740. }
  24741. },
  24742. },
  24743. [
  24744. {
  24745. name: "Normal",
  24746. height: math.unit(2 + 11/12, "feet"),
  24747. default: true
  24748. },
  24749. ]
  24750. ))
  24751. characterMakers.push(() => makeCharacter(
  24752. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24753. {
  24754. front: {
  24755. height: math.unit(5 + 2/12, "feet"),
  24756. weight: math.unit(50, "kg"),
  24757. name: "Front",
  24758. image: {
  24759. source: "./media/characters/mercury-crescent/front.svg",
  24760. extra: 1088/1033,
  24761. bottom: 18.9/1109
  24762. }
  24763. },
  24764. },
  24765. [
  24766. {
  24767. name: "Normal",
  24768. height: math.unit(5 + 2/12, "feet"),
  24769. default: true
  24770. },
  24771. ]
  24772. ))
  24773. characterMakers.push(() => makeCharacter(
  24774. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24775. {
  24776. front: {
  24777. height: math.unit(2, "feet"),
  24778. weight: math.unit(15, "kg"),
  24779. name: "Front",
  24780. image: {
  24781. source: "./media/characters/diamond-jones/front.svg",
  24782. bottom: 16/568
  24783. }
  24784. },
  24785. },
  24786. [
  24787. {
  24788. name: "Normal",
  24789. height: math.unit(2, "feet"),
  24790. default: true
  24791. },
  24792. ]
  24793. ))
  24794. characterMakers.push(() => makeCharacter(
  24795. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24796. {
  24797. front: {
  24798. height: math.unit(3, "feet"),
  24799. weight: math.unit(30, "kg"),
  24800. name: "Front",
  24801. image: {
  24802. source: "./media/characters/sweet-bit/front.svg",
  24803. extra: 675/567,
  24804. bottom: 27.7/703
  24805. }
  24806. },
  24807. },
  24808. [
  24809. {
  24810. name: "Normal",
  24811. height: math.unit(3, "feet"),
  24812. default: true
  24813. },
  24814. ]
  24815. ))
  24816. characterMakers.push(() => makeCharacter(
  24817. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24818. {
  24819. side: {
  24820. height: math.unit(9.178, "feet"),
  24821. weight: math.unit(500, "lb"),
  24822. name: "Side",
  24823. image: {
  24824. source: "./media/characters/umbrazen/side.svg",
  24825. extra: 1730/1473,
  24826. bottom: 34.6/1765
  24827. }
  24828. },
  24829. },
  24830. [
  24831. {
  24832. name: "Normal",
  24833. height: math.unit(9.178, "feet"),
  24834. default: true
  24835. },
  24836. ]
  24837. ))
  24838. characterMakers.push(() => makeCharacter(
  24839. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24840. {
  24841. front: {
  24842. height: math.unit(10, "feet"),
  24843. weight: math.unit(750, "lb"),
  24844. name: "Front",
  24845. image: {
  24846. source: "./media/characters/arlist/front.svg",
  24847. extra: 961/778,
  24848. bottom: 6.2/986
  24849. }
  24850. },
  24851. },
  24852. [
  24853. {
  24854. name: "Normal",
  24855. height: math.unit(10, "feet"),
  24856. default: true
  24857. },
  24858. ]
  24859. ))
  24860. characterMakers.push(() => makeCharacter(
  24861. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24862. {
  24863. front: {
  24864. height: math.unit(5 + 1/12, "feet"),
  24865. weight: math.unit(110, "lb"),
  24866. name: "Front",
  24867. image: {
  24868. source: "./media/characters/aradel/front.svg",
  24869. extra: 324/303,
  24870. bottom: 3.6/329.4
  24871. }
  24872. },
  24873. },
  24874. [
  24875. {
  24876. name: "Normal",
  24877. height: math.unit(5 + 1/12, "feet"),
  24878. default: true
  24879. },
  24880. ]
  24881. ))
  24882. characterMakers.push(() => makeCharacter(
  24883. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24884. {
  24885. front: {
  24886. height: math.unit(3 + 8/12, "feet"),
  24887. weight: math.unit(50, "lb"),
  24888. name: "Front",
  24889. image: {
  24890. source: "./media/characters/serryn/front.svg",
  24891. extra: 1792/1656,
  24892. bottom: 43.5/1840
  24893. }
  24894. },
  24895. },
  24896. [
  24897. {
  24898. name: "Normal",
  24899. height: math.unit(3 + 8/12, "feet"),
  24900. default: true
  24901. },
  24902. ]
  24903. ))
  24904. characterMakers.push(() => makeCharacter(
  24905. { name: "Xavier Thyme" },
  24906. {
  24907. front: {
  24908. height: math.unit(7 + 10/12, "feet"),
  24909. weight: math.unit(255, "lb"),
  24910. name: "Front",
  24911. image: {
  24912. source: "./media/characters/xavier-thyme/front.svg",
  24913. extra: 3733/3642,
  24914. bottom: 131/3869
  24915. }
  24916. },
  24917. frontRaven: {
  24918. height: math.unit(7 + 10/12, "feet"),
  24919. weight: math.unit(255, "lb"),
  24920. name: "Front (Raven)",
  24921. image: {
  24922. source: "./media/characters/xavier-thyme/front-raven.svg",
  24923. extra: 4385/3642,
  24924. bottom: 131/4517
  24925. }
  24926. },
  24927. },
  24928. [
  24929. {
  24930. name: "Normal",
  24931. height: math.unit(7 + 10/12, "feet"),
  24932. default: true
  24933. },
  24934. ]
  24935. ))
  24936. characterMakers.push(() => makeCharacter(
  24937. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24938. {
  24939. front: {
  24940. height: math.unit(1.6, "m"),
  24941. weight: math.unit(50, "kg"),
  24942. name: "Front",
  24943. image: {
  24944. source: "./media/characters/kiki/front.svg",
  24945. extra: 4682/3610,
  24946. bottom: 115/4777
  24947. }
  24948. },
  24949. },
  24950. [
  24951. {
  24952. name: "Normal",
  24953. height: math.unit(1.6, "meters"),
  24954. default: true
  24955. },
  24956. ]
  24957. ))
  24958. characterMakers.push(() => makeCharacter(
  24959. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24960. {
  24961. front: {
  24962. height: math.unit(50, "m"),
  24963. weight: math.unit(500, "tonnes"),
  24964. name: "Front",
  24965. image: {
  24966. source: "./media/characters/ryoko/front.svg",
  24967. extra: 4632/3926,
  24968. bottom: 193/4823
  24969. }
  24970. },
  24971. },
  24972. [
  24973. {
  24974. name: "Normal",
  24975. height: math.unit(50, "meters"),
  24976. default: true
  24977. },
  24978. ]
  24979. ))
  24980. characterMakers.push(() => makeCharacter(
  24981. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  24982. {
  24983. front: {
  24984. height: math.unit(30, "m"),
  24985. weight: math.unit(22, "tonnes"),
  24986. name: "Front",
  24987. image: {
  24988. source: "./media/characters/elio/front.svg",
  24989. extra: 4582/3720,
  24990. bottom: 236/4828
  24991. }
  24992. },
  24993. },
  24994. [
  24995. {
  24996. name: "Normal",
  24997. height: math.unit(30, "meters"),
  24998. default: true
  24999. },
  25000. ]
  25001. ))
  25002. characterMakers.push(() => makeCharacter(
  25003. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25004. {
  25005. front: {
  25006. height: math.unit(6 + 3/12, "feet"),
  25007. weight: math.unit(120, "lb"),
  25008. name: "Front",
  25009. image: {
  25010. source: "./media/characters/azura/front.svg",
  25011. extra: 1149/1135,
  25012. bottom: 45/1194
  25013. }
  25014. },
  25015. frontClothed: {
  25016. height: math.unit(6 + 3/12, "feet"),
  25017. weight: math.unit(120, "lb"),
  25018. name: "Front (Clothed)",
  25019. image: {
  25020. source: "./media/characters/azura/front-clothed.svg",
  25021. extra: 1149/1135,
  25022. bottom: 45/1194
  25023. }
  25024. },
  25025. },
  25026. [
  25027. {
  25028. name: "Normal",
  25029. height: math.unit(6 + 3/12, "feet"),
  25030. default: true
  25031. },
  25032. {
  25033. name: "Macro",
  25034. height: math.unit(20 + 6/12, "feet")
  25035. },
  25036. {
  25037. name: "Megamacro",
  25038. height: math.unit(12, "miles")
  25039. },
  25040. {
  25041. name: "Gigamacro",
  25042. height: math.unit(10000, "miles")
  25043. },
  25044. {
  25045. name: "Teramacro",
  25046. height: math.unit(900000, "miles")
  25047. },
  25048. ]
  25049. ))
  25050. characterMakers.push(() => makeCharacter(
  25051. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25052. {
  25053. front: {
  25054. height: math.unit(12, "feet"),
  25055. weight: math.unit(1, "ton"),
  25056. capacity: math.unit(660000, "gallons"),
  25057. name: "Front",
  25058. image: {
  25059. source: "./media/characters/zeus/front.svg",
  25060. extra: 5005/4717,
  25061. bottom: 363/5388
  25062. }
  25063. },
  25064. },
  25065. [
  25066. {
  25067. name: "Normal",
  25068. height: math.unit(12, "feet")
  25069. },
  25070. {
  25071. name: "Preferred Size",
  25072. height: math.unit(0.5, "miles"),
  25073. default: true
  25074. },
  25075. {
  25076. name: "Giga Horse",
  25077. height: math.unit(300, "miles")
  25078. },
  25079. {
  25080. name: "Riding Planets",
  25081. height: math.unit(30, "megameters")
  25082. },
  25083. {
  25084. name: "Cosmic Giant",
  25085. height: math.unit(3, "zettameters")
  25086. },
  25087. {
  25088. name: "Breeding God",
  25089. height: math.unit(9.92e22, "yottameters")
  25090. },
  25091. ]
  25092. ))
  25093. characterMakers.push(() => makeCharacter(
  25094. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25095. {
  25096. side: {
  25097. height: math.unit(9, "feet"),
  25098. weight: math.unit(1500, "kg"),
  25099. name: "Side",
  25100. image: {
  25101. source: "./media/characters/fang/side.svg",
  25102. extra: 924/866,
  25103. bottom: 47.5/972.3
  25104. }
  25105. },
  25106. },
  25107. [
  25108. {
  25109. name: "Normal",
  25110. height: math.unit(9, "feet"),
  25111. default: true
  25112. },
  25113. {
  25114. name: "Macro",
  25115. height: math.unit(75 + 6/12, "feet")
  25116. },
  25117. {
  25118. name: "Teramacro",
  25119. height: math.unit(50000, "miles")
  25120. },
  25121. ]
  25122. ))
  25123. characterMakers.push(() => makeCharacter(
  25124. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25125. {
  25126. front: {
  25127. height: math.unit(10, "feet"),
  25128. weight: math.unit(2, "tons"),
  25129. name: "Front",
  25130. image: {
  25131. source: "./media/characters/rekhit/front.svg",
  25132. extra: 2796/2590,
  25133. bottom: 225/3022
  25134. }
  25135. },
  25136. },
  25137. [
  25138. {
  25139. name: "Normal",
  25140. height: math.unit(10, "feet"),
  25141. default: true
  25142. },
  25143. {
  25144. name: "Macro",
  25145. height: math.unit(500, "feet")
  25146. },
  25147. ]
  25148. ))
  25149. characterMakers.push(() => makeCharacter(
  25150. { name: "Dahlia Verrick" },
  25151. {
  25152. front: {
  25153. height: math.unit(7 + 6.451/12, "feet"),
  25154. weight: math.unit(310, "lb"),
  25155. name: "Front",
  25156. image: {
  25157. source: "./media/characters/dahlia-verrick/front.svg",
  25158. extra: 1488/1365,
  25159. bottom: 6.2/1495
  25160. }
  25161. },
  25162. back: {
  25163. height: math.unit(7 + 6.451/12, "feet"),
  25164. weight: math.unit(310, "lb"),
  25165. name: "Back",
  25166. image: {
  25167. source: "./media/characters/dahlia-verrick/back.svg",
  25168. extra: 1472/1351,
  25169. bottom: 5.28/1477
  25170. }
  25171. },
  25172. frontBusiness: {
  25173. height: math.unit(7 + 6.451/12, "feet"),
  25174. weight: math.unit(200, "lb"),
  25175. name: "Front (Business)",
  25176. image: {
  25177. source: "./media/characters/dahlia-verrick/front-business.svg",
  25178. extra: 1478/1381,
  25179. bottom: 5.5/1484
  25180. }
  25181. },
  25182. frontCasual: {
  25183. height: math.unit(7 + 6.451/12, "feet"),
  25184. weight: math.unit(200, "lb"),
  25185. name: "Front (Casual)",
  25186. image: {
  25187. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25188. extra: 1478/1381,
  25189. bottom: 5.5/1484
  25190. }
  25191. },
  25192. },
  25193. [
  25194. {
  25195. name: "Travel-Sized",
  25196. height: math.unit(7.45, "inches")
  25197. },
  25198. {
  25199. name: "Normal",
  25200. height: math.unit(7 + 6.451/12, "feet"),
  25201. default: true
  25202. },
  25203. {
  25204. name: "Hitting the Town",
  25205. height: math.unit(37 + 8/12, "feet")
  25206. },
  25207. {
  25208. name: "Stomp in the Suburbs",
  25209. height: math.unit(964 + 9.728/12, "feet")
  25210. },
  25211. {
  25212. name: "Sit on the City",
  25213. height: math.unit(61747 + 10.592/12, "feet")
  25214. },
  25215. {
  25216. name: "Glomp the Globe",
  25217. height: math.unit(252919327 + 4.832/12, "feet")
  25218. },
  25219. ]
  25220. ))
  25221. characterMakers.push(() => makeCharacter(
  25222. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25223. {
  25224. front: {
  25225. height: math.unit(6 + 4/12, "feet"),
  25226. weight: math.unit(320, "lb"),
  25227. name: "Front",
  25228. image: {
  25229. source: "./media/characters/balina-mahigan/front.svg",
  25230. extra: 447/428,
  25231. bottom: 18/466
  25232. }
  25233. },
  25234. back: {
  25235. height: math.unit(6 + 4/12, "feet"),
  25236. weight: math.unit(320, "lb"),
  25237. name: "Back",
  25238. image: {
  25239. source: "./media/characters/balina-mahigan/back.svg",
  25240. extra: 445/428,
  25241. bottom: 4.07/448
  25242. }
  25243. },
  25244. arm: {
  25245. height: math.unit(1.88, "feet"),
  25246. name: "Arm",
  25247. image: {
  25248. source: "./media/characters/balina-mahigan/arm.svg"
  25249. }
  25250. },
  25251. backPort: {
  25252. height: math.unit(0.685, "feet"),
  25253. name: "Back Port",
  25254. image: {
  25255. source: "./media/characters/balina-mahigan/back-port.svg"
  25256. }
  25257. },
  25258. hoofpaw: {
  25259. height: math.unit(1.41, "feet"),
  25260. name: "Hoofpaw",
  25261. image: {
  25262. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25263. }
  25264. },
  25265. leftHandBack: {
  25266. height: math.unit(0.938, "feet"),
  25267. name: "Left Hand (Back)",
  25268. image: {
  25269. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25270. }
  25271. },
  25272. leftHandFront: {
  25273. height: math.unit(0.938, "feet"),
  25274. name: "Left Hand (Front)",
  25275. image: {
  25276. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25277. }
  25278. },
  25279. rightHandBack: {
  25280. height: math.unit(0.95, "feet"),
  25281. name: "Right Hand (Back)",
  25282. image: {
  25283. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25284. }
  25285. },
  25286. rightHandFront: {
  25287. height: math.unit(0.95, "feet"),
  25288. name: "Right Hand (Front)",
  25289. image: {
  25290. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25291. }
  25292. },
  25293. },
  25294. [
  25295. {
  25296. name: "Normal",
  25297. height: math.unit(6 + 4/12, "feet"),
  25298. default: true
  25299. },
  25300. ]
  25301. ))
  25302. characterMakers.push(() => makeCharacter(
  25303. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25304. {
  25305. front: {
  25306. height: math.unit(6, "feet"),
  25307. weight: math.unit(320, "lb"),
  25308. name: "Front",
  25309. image: {
  25310. source: "./media/characters/balina-mejeri/front.svg",
  25311. extra: 517/488,
  25312. bottom: 44.2/561
  25313. }
  25314. },
  25315. },
  25316. [
  25317. {
  25318. name: "Normal",
  25319. height: math.unit(6 + 4/12, "feet")
  25320. },
  25321. {
  25322. name: "Business",
  25323. height: math.unit(155, "feet"),
  25324. default: true
  25325. },
  25326. ]
  25327. ))
  25328. characterMakers.push(() => makeCharacter(
  25329. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25330. {
  25331. kneeling: {
  25332. height: math.unit(6 + 4/12, "feet"),
  25333. weight: math.unit(300*20, "lb"),
  25334. name: "Kneeling",
  25335. image: {
  25336. source: "./media/characters/balbarian/kneeling.svg",
  25337. extra: 922/862,
  25338. bottom: 42.4/965
  25339. }
  25340. },
  25341. },
  25342. [
  25343. {
  25344. name: "Normal",
  25345. height: math.unit(6 + 4/12, "feet")
  25346. },
  25347. {
  25348. name: "Treasured",
  25349. height: math.unit(18 + 9/12, "feet"),
  25350. default: true
  25351. },
  25352. {
  25353. name: "Macro",
  25354. height: math.unit(900, "feet")
  25355. },
  25356. ]
  25357. ))
  25358. characterMakers.push(() => makeCharacter(
  25359. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25360. {
  25361. front: {
  25362. height: math.unit(6 + 4/12, "feet"),
  25363. weight: math.unit(325, "lb"),
  25364. name: "Front",
  25365. image: {
  25366. source: "./media/characters/balina-amarini/front.svg",
  25367. extra: 415/403,
  25368. bottom: 19/433.4
  25369. }
  25370. },
  25371. back: {
  25372. height: math.unit(6 + 4/12, "feet"),
  25373. weight: math.unit(325, "lb"),
  25374. name: "Back",
  25375. image: {
  25376. source: "./media/characters/balina-amarini/back.svg",
  25377. extra: 415/403,
  25378. bottom: 13.5/432
  25379. }
  25380. },
  25381. overdrive: {
  25382. height: math.unit(6 + 4/12, "feet"),
  25383. weight: math.unit(400, "lb"),
  25384. name: "Overdrive",
  25385. image: {
  25386. source: "./media/characters/balina-amarini/overdrive.svg",
  25387. extra: 269/259,
  25388. bottom: 12/282
  25389. }
  25390. },
  25391. },
  25392. [
  25393. {
  25394. name: "Boom",
  25395. height: math.unit(9 + 10/12, "feet"),
  25396. default: true
  25397. },
  25398. {
  25399. name: "Macro",
  25400. height: math.unit(280, "feet")
  25401. },
  25402. ]
  25403. ))
  25404. characterMakers.push(() => makeCharacter(
  25405. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25406. {
  25407. goddess: {
  25408. height: math.unit(600, "feet"),
  25409. weight: math.unit(2000000, "tons"),
  25410. name: "Goddess",
  25411. image: {
  25412. source: "./media/characters/lady-kubwa/goddess.svg",
  25413. extra: 1240.5/1223,
  25414. bottom: 22/1263
  25415. }
  25416. },
  25417. goddesser: {
  25418. height: math.unit(900, "feet"),
  25419. weight: math.unit(20000000, "lb"),
  25420. name: "Goddess-er",
  25421. image: {
  25422. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25423. extra: 899/888,
  25424. bottom: 12.6/912
  25425. }
  25426. },
  25427. },
  25428. [
  25429. {
  25430. name: "Macro",
  25431. height: math.unit(600, "feet"),
  25432. default: true
  25433. },
  25434. {
  25435. name: "Megamacro",
  25436. height: math.unit(250, "miles")
  25437. },
  25438. ]
  25439. ))
  25440. characterMakers.push(() => makeCharacter(
  25441. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25442. {
  25443. front: {
  25444. height: math.unit(7 + 7/12, "feet"),
  25445. weight: math.unit(250, "lb"),
  25446. name: "Front",
  25447. image: {
  25448. source: "./media/characters/tala-grovehorn/front.svg",
  25449. extra: 2636/2525,
  25450. bottom: 147/2781
  25451. }
  25452. },
  25453. back: {
  25454. height: math.unit(7 + 7/12, "feet"),
  25455. weight: math.unit(250, "lb"),
  25456. name: "Back",
  25457. image: {
  25458. source: "./media/characters/tala-grovehorn/back.svg",
  25459. extra: 2635/2539,
  25460. bottom: 100/2732.8
  25461. }
  25462. },
  25463. mouth: {
  25464. height: math.unit(1.15, "feet"),
  25465. name: "Mouth",
  25466. image: {
  25467. source: "./media/characters/tala-grovehorn/mouth.svg"
  25468. }
  25469. },
  25470. dick: {
  25471. height: math.unit(2.36, "feet"),
  25472. name: "Dick",
  25473. image: {
  25474. source: "./media/characters/tala-grovehorn/dick.svg"
  25475. }
  25476. },
  25477. slit: {
  25478. height: math.unit(0.61, "feet"),
  25479. name: "Slit",
  25480. image: {
  25481. source: "./media/characters/tala-grovehorn/slit.svg"
  25482. }
  25483. },
  25484. },
  25485. [
  25486. ]
  25487. ))
  25488. characterMakers.push(() => makeCharacter(
  25489. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25490. {
  25491. front: {
  25492. height: math.unit(7 + 7/12, "feet"),
  25493. weight: math.unit(225, "lb"),
  25494. name: "Front",
  25495. image: {
  25496. source: "./media/characters/epona/front.svg",
  25497. extra: 2445/2290,
  25498. bottom: 251/2696
  25499. }
  25500. },
  25501. back: {
  25502. height: math.unit(7 + 7/12, "feet"),
  25503. weight: math.unit(225, "lb"),
  25504. name: "Back",
  25505. image: {
  25506. source: "./media/characters/epona/back.svg",
  25507. extra: 2546/2408,
  25508. bottom: 44/2589
  25509. }
  25510. },
  25511. genitals: {
  25512. height: math.unit(1.5, "feet"),
  25513. name: "Genitals",
  25514. image: {
  25515. source: "./media/characters/epona/genitals.svg"
  25516. }
  25517. },
  25518. },
  25519. [
  25520. {
  25521. name: "Normal",
  25522. height: math.unit(7 + 7/12, "feet")
  25523. },
  25524. ]
  25525. ))
  25526. characterMakers.push(() => makeCharacter(
  25527. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25528. {
  25529. front: {
  25530. height: math.unit(7, "feet"),
  25531. weight: math.unit(518, "lb"),
  25532. name: "Front",
  25533. image: {
  25534. source: "./media/characters/avia-bloodbourn/front.svg",
  25535. extra: 1466/1350,
  25536. bottom: 65/1527
  25537. }
  25538. },
  25539. },
  25540. [
  25541. ]
  25542. ))
  25543. characterMakers.push(() => makeCharacter(
  25544. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25545. {
  25546. front: {
  25547. height: math.unit(9.35, "feet"),
  25548. weight: math.unit(600, "lb"),
  25549. name: "Front",
  25550. image: {
  25551. source: "./media/characters/amera/front.svg",
  25552. extra: 891/818,
  25553. bottom: 30/922.7
  25554. }
  25555. },
  25556. back: {
  25557. height: math.unit(9.35, "feet"),
  25558. weight: math.unit(600, "lb"),
  25559. name: "Back",
  25560. image: {
  25561. source: "./media/characters/amera/back.svg",
  25562. extra: 876/824,
  25563. bottom: 6.8/884
  25564. }
  25565. },
  25566. dick: {
  25567. height: math.unit(2.14, "feet"),
  25568. name: "Dick",
  25569. image: {
  25570. source: "./media/characters/amera/dick.svg"
  25571. }
  25572. },
  25573. },
  25574. [
  25575. {
  25576. name: "Normal",
  25577. height: math.unit(9.35, "feet"),
  25578. default: true
  25579. },
  25580. ]
  25581. ))
  25582. characterMakers.push(() => makeCharacter(
  25583. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25584. {
  25585. kneeling: {
  25586. height: math.unit(3 + 4/12, "feet"),
  25587. weight: math.unit(90, "lb"),
  25588. name: "Kneeling",
  25589. image: {
  25590. source: "./media/characters/rosewen/kneeling.svg",
  25591. extra: 1835/1571,
  25592. bottom: 27.7/1862
  25593. }
  25594. },
  25595. },
  25596. [
  25597. {
  25598. name: "Normal",
  25599. height: math.unit(3 + 4/12, "feet"),
  25600. default: true
  25601. },
  25602. ]
  25603. ))
  25604. characterMakers.push(() => makeCharacter(
  25605. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25606. {
  25607. front: {
  25608. height: math.unit(5 + 10/12, "feet"),
  25609. weight: math.unit(200, "lb"),
  25610. name: "Front",
  25611. image: {
  25612. source: "./media/characters/sabah/front.svg",
  25613. extra: 849/763,
  25614. bottom: 33.9/881
  25615. }
  25616. },
  25617. },
  25618. [
  25619. {
  25620. name: "Normal",
  25621. height: math.unit(5 + 10/12, "feet"),
  25622. default: true
  25623. },
  25624. ]
  25625. ))
  25626. characterMakers.push(() => makeCharacter(
  25627. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25628. {
  25629. front: {
  25630. height: math.unit(3 + 5/12, "feet"),
  25631. weight: math.unit(40, "kg"),
  25632. name: "Front",
  25633. image: {
  25634. source: "./media/characters/purple-flame/front.svg",
  25635. extra: 1577/1412,
  25636. bottom: 97/1694
  25637. }
  25638. },
  25639. frontDressed: {
  25640. height: math.unit(3 + 5/12, "feet"),
  25641. weight: math.unit(40, "kg"),
  25642. name: "Front (Dressed)",
  25643. image: {
  25644. source: "./media/characters/purple-flame/front-dressed.svg",
  25645. extra: 1577/1412,
  25646. bottom: 97/1694
  25647. }
  25648. },
  25649. headphones: {
  25650. height: math.unit(0.85, "feet"),
  25651. name: "Headphones",
  25652. image: {
  25653. source: "./media/characters/purple-flame/headphones.svg"
  25654. }
  25655. },
  25656. },
  25657. [
  25658. {
  25659. name: "Really Small",
  25660. height: math.unit(5, "cm")
  25661. },
  25662. {
  25663. name: "Micro",
  25664. height: math.unit(1 + 5/12, "feet")
  25665. },
  25666. {
  25667. name: "Normal",
  25668. height: math.unit(3 + 5/12, "feet"),
  25669. default: true
  25670. },
  25671. {
  25672. name: "Minimacro",
  25673. height: math.unit(125, "feet")
  25674. },
  25675. {
  25676. name: "Macro",
  25677. height: math.unit(0.5, "miles")
  25678. },
  25679. {
  25680. name: "Megamacro",
  25681. height: math.unit(50, "miles")
  25682. },
  25683. {
  25684. name: "Gigantic",
  25685. height: math.unit(750, "miles")
  25686. },
  25687. {
  25688. name: "Planetary",
  25689. height: math.unit(15000, "miles")
  25690. },
  25691. ]
  25692. ))
  25693. characterMakers.push(() => makeCharacter(
  25694. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25695. {
  25696. front: {
  25697. height: math.unit(14, "feet"),
  25698. weight: math.unit(959, "lb"),
  25699. name: "Front",
  25700. image: {
  25701. source: "./media/characters/arsenal/front.svg",
  25702. extra: 2357/2157,
  25703. bottom: 93/2458
  25704. }
  25705. },
  25706. },
  25707. [
  25708. {
  25709. name: "Normal",
  25710. height: math.unit(14, "feet"),
  25711. default: true
  25712. },
  25713. ]
  25714. ))
  25715. characterMakers.push(() => makeCharacter(
  25716. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25717. {
  25718. front: {
  25719. height: math.unit(6, "feet"),
  25720. weight: math.unit(150, "lb"),
  25721. name: "Front",
  25722. image: {
  25723. source: "./media/characters/adira/front.svg",
  25724. extra: 1078/1029,
  25725. bottom: 87/1166
  25726. }
  25727. },
  25728. },
  25729. [
  25730. {
  25731. name: "Micro",
  25732. height: math.unit(4, "inches"),
  25733. default: true
  25734. },
  25735. {
  25736. name: "Macro",
  25737. height: math.unit(50, "feet")
  25738. },
  25739. ]
  25740. ))
  25741. characterMakers.push(() => makeCharacter(
  25742. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25743. {
  25744. front: {
  25745. height: math.unit(16, "feet"),
  25746. weight: math.unit(1000, "lb"),
  25747. name: "Front",
  25748. image: {
  25749. source: "./media/characters/grim/front.svg",
  25750. extra: 622/614,
  25751. bottom: 18.1/642
  25752. }
  25753. },
  25754. back: {
  25755. height: math.unit(16, "feet"),
  25756. weight: math.unit(1000, "lb"),
  25757. name: "Back",
  25758. image: {
  25759. source: "./media/characters/grim/back.svg",
  25760. extra: 610.6/602,
  25761. bottom: 40.8/652
  25762. }
  25763. },
  25764. hunched: {
  25765. height: math.unit(9.75, "feet"),
  25766. weight: math.unit(1000, "lb"),
  25767. name: "Hunched",
  25768. image: {
  25769. source: "./media/characters/grim/hunched.svg",
  25770. extra: 304/297,
  25771. bottom: 35.4/394
  25772. }
  25773. },
  25774. },
  25775. [
  25776. {
  25777. name: "Normal",
  25778. height: math.unit(16, "feet"),
  25779. default: true
  25780. },
  25781. ]
  25782. ))
  25783. characterMakers.push(() => makeCharacter(
  25784. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25785. {
  25786. front: {
  25787. height: math.unit(2.3, "meters"),
  25788. weight: math.unit(300, "lb"),
  25789. name: "Front",
  25790. image: {
  25791. source: "./media/characters/sinja/front-sfw.svg",
  25792. extra: 1393/1294,
  25793. bottom: 70/1463
  25794. }
  25795. },
  25796. frontNsfw: {
  25797. height: math.unit(2.3, "meters"),
  25798. weight: math.unit(300, "lb"),
  25799. name: "Front (NSFW)",
  25800. image: {
  25801. source: "./media/characters/sinja/front-nsfw.svg",
  25802. extra: 1393/1294,
  25803. bottom: 70/1463
  25804. }
  25805. },
  25806. back: {
  25807. height: math.unit(2.3, "meters"),
  25808. weight: math.unit(300, "lb"),
  25809. name: "Back",
  25810. image: {
  25811. source: "./media/characters/sinja/back.svg",
  25812. extra: 1393/1294,
  25813. bottom: 70/1463
  25814. }
  25815. },
  25816. head: {
  25817. height: math.unit(1.771, "feet"),
  25818. name: "Head",
  25819. image: {
  25820. source: "./media/characters/sinja/head.svg"
  25821. }
  25822. },
  25823. slit: {
  25824. height: math.unit(0.8, "feet"),
  25825. name: "Slit",
  25826. image: {
  25827. source: "./media/characters/sinja/slit.svg"
  25828. }
  25829. },
  25830. },
  25831. [
  25832. {
  25833. name: "Normal",
  25834. height: math.unit(2.3, "meters")
  25835. },
  25836. {
  25837. name: "Macro",
  25838. height: math.unit(91, "meters"),
  25839. default: true
  25840. },
  25841. {
  25842. name: "Megamacro",
  25843. height: math.unit(91440, "meters")
  25844. },
  25845. {
  25846. name: "Gigamacro",
  25847. height: math.unit(60960000, "meters")
  25848. },
  25849. {
  25850. name: "Teramacro",
  25851. height: math.unit(9144000000, "meters")
  25852. },
  25853. ]
  25854. ))
  25855. characterMakers.push(() => makeCharacter(
  25856. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25857. {
  25858. front: {
  25859. height: math.unit(1.7, "meters"),
  25860. weight: math.unit(130, "lb"),
  25861. name: "Front",
  25862. image: {
  25863. source: "./media/characters/kyu/front.svg",
  25864. extra: 415/395,
  25865. bottom: 5/420
  25866. }
  25867. },
  25868. head: {
  25869. height: math.unit(1.75, "feet"),
  25870. name: "Head",
  25871. image: {
  25872. source: "./media/characters/kyu/head.svg"
  25873. }
  25874. },
  25875. foot: {
  25876. height: math.unit(0.81, "feet"),
  25877. name: "Foot",
  25878. image: {
  25879. source: "./media/characters/kyu/foot.svg"
  25880. }
  25881. },
  25882. },
  25883. [
  25884. {
  25885. name: "Normal",
  25886. height: math.unit(1.7, "meters")
  25887. },
  25888. {
  25889. name: "Macro",
  25890. height: math.unit(131, "feet"),
  25891. default: true
  25892. },
  25893. {
  25894. name: "Megamacro",
  25895. height: math.unit(91440, "meters")
  25896. },
  25897. {
  25898. name: "Gigamacro",
  25899. height: math.unit(60960000, "meters")
  25900. },
  25901. {
  25902. name: "Teramacro",
  25903. height: math.unit(9144000000, "meters")
  25904. },
  25905. ]
  25906. ))
  25907. characterMakers.push(() => makeCharacter(
  25908. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  25909. {
  25910. front: {
  25911. height: math.unit(7 + 1/12, "feet"),
  25912. weight: math.unit(250, "lb"),
  25913. name: "Front",
  25914. image: {
  25915. source: "./media/characters/joey/front.svg",
  25916. extra: 1791/1537,
  25917. bottom: 28/1816
  25918. }
  25919. },
  25920. },
  25921. [
  25922. {
  25923. name: "Micro",
  25924. height: math.unit(3, "inches")
  25925. },
  25926. {
  25927. name: "Normal",
  25928. height: math.unit(7 + 1/12, "feet"),
  25929. default: true
  25930. },
  25931. ]
  25932. ))
  25933. characterMakers.push(() => makeCharacter(
  25934. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  25935. {
  25936. front: {
  25937. height: math.unit(165, "cm"),
  25938. weight: math.unit(140, "lb"),
  25939. name: "Front",
  25940. image: {
  25941. source: "./media/characters/sam-evans/front.svg",
  25942. extra: 3417/3230,
  25943. bottom: 41.3/3417
  25944. }
  25945. },
  25946. frontSixTails: {
  25947. height: math.unit(165, "cm"),
  25948. weight: math.unit(140, "lb"),
  25949. name: "Front-six-tails",
  25950. image: {
  25951. source: "./media/characters/sam-evans/front-six-tails.svg",
  25952. extra: 3417/3230,
  25953. bottom: 41.3/3417
  25954. }
  25955. },
  25956. back: {
  25957. height: math.unit(165, "cm"),
  25958. weight: math.unit(140, "lb"),
  25959. name: "Back",
  25960. image: {
  25961. source: "./media/characters/sam-evans/back.svg",
  25962. extra: 3227/3032,
  25963. bottom: 6.8/3234
  25964. }
  25965. },
  25966. face: {
  25967. height: math.unit(0.68, "feet"),
  25968. name: "Face",
  25969. image: {
  25970. source: "./media/characters/sam-evans/face.svg"
  25971. }
  25972. },
  25973. },
  25974. [
  25975. {
  25976. name: "Normal",
  25977. height: math.unit(165, "cm"),
  25978. default: true
  25979. },
  25980. {
  25981. name: "Macro",
  25982. height: math.unit(100, "meters")
  25983. },
  25984. {
  25985. name: "Macro+",
  25986. height: math.unit(800, "meters")
  25987. },
  25988. {
  25989. name: "Macro++",
  25990. height: math.unit(3, "km")
  25991. },
  25992. {
  25993. name: "Macro+++",
  25994. height: math.unit(30, "km")
  25995. },
  25996. ]
  25997. ))
  25998. characterMakers.push(() => makeCharacter(
  25999. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26000. {
  26001. front: {
  26002. height: math.unit(10, "feet"),
  26003. weight: math.unit(750, "lb"),
  26004. name: "Front",
  26005. image: {
  26006. source: "./media/characters/juliet-a/front.svg",
  26007. extra: 1766/1720,
  26008. bottom: 43/1809
  26009. }
  26010. },
  26011. back: {
  26012. height: math.unit(10, "feet"),
  26013. weight: math.unit(750, "lb"),
  26014. name: "Back",
  26015. image: {
  26016. source: "./media/characters/juliet-a/back.svg",
  26017. extra: 1781/1734,
  26018. bottom: 35/1810,
  26019. }
  26020. },
  26021. },
  26022. [
  26023. {
  26024. name: "Normal",
  26025. height: math.unit(10, "feet"),
  26026. default: true
  26027. },
  26028. {
  26029. name: "Dragon Form",
  26030. height: math.unit(250, "feet")
  26031. },
  26032. {
  26033. name: "Macro",
  26034. height: math.unit(1000, "feet")
  26035. },
  26036. {
  26037. name: "Megamacro",
  26038. height: math.unit(10000, "feet")
  26039. }
  26040. ]
  26041. ))
  26042. characterMakers.push(() => makeCharacter(
  26043. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26044. {
  26045. regular: {
  26046. height: math.unit(7 + 3/12, "feet"),
  26047. weight: math.unit(260, "lb"),
  26048. name: "Regular",
  26049. image: {
  26050. source: "./media/characters/wild/regular.svg",
  26051. extra: 97.45/92,
  26052. bottom: 6.8/104.3
  26053. }
  26054. },
  26055. biggums: {
  26056. height: math.unit(8 + 6 /12, "feet"),
  26057. weight: math.unit(425, "lb"),
  26058. name: "Biggums",
  26059. image: {
  26060. source: "./media/characters/wild/biggums.svg",
  26061. extra: 97.45/92,
  26062. bottom: 7.5/132.34
  26063. }
  26064. },
  26065. mawRegular: {
  26066. height: math.unit(1.24, "feet"),
  26067. name: "Maw (Regular)",
  26068. image: {
  26069. source: "./media/characters/wild/maw.svg"
  26070. }
  26071. },
  26072. mawBiggums: {
  26073. height: math.unit(1.47, "feet"),
  26074. name: "Maw (Biggums)",
  26075. image: {
  26076. source: "./media/characters/wild/maw.svg"
  26077. }
  26078. },
  26079. },
  26080. [
  26081. {
  26082. name: "Normal",
  26083. height: math.unit(7 + 3/12, "feet"),
  26084. default: true
  26085. },
  26086. ]
  26087. ))
  26088. characterMakers.push(() => makeCharacter(
  26089. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26090. {
  26091. front: {
  26092. height: math.unit(2.5, "meters"),
  26093. weight: math.unit(200, "kg"),
  26094. name: "Front",
  26095. image: {
  26096. source: "./media/characters/vidar/front.svg",
  26097. extra: 2994/2795,
  26098. bottom: 56/3061
  26099. }
  26100. },
  26101. back: {
  26102. height: math.unit(2.5, "meters"),
  26103. weight: math.unit(200, "kg"),
  26104. name: "Back",
  26105. image: {
  26106. source: "./media/characters/vidar/back.svg",
  26107. extra: 3131/2928,
  26108. bottom: 13.5/3141.5
  26109. }
  26110. },
  26111. feral: {
  26112. height: math.unit(2.5, "meters"),
  26113. weight: math.unit(2000, "kg"),
  26114. name: "Feral",
  26115. image: {
  26116. source: "./media/characters/vidar/feral.svg",
  26117. extra: 2790/1765,
  26118. bottom: 6/2796
  26119. }
  26120. },
  26121. },
  26122. [
  26123. {
  26124. name: "Normal",
  26125. height: math.unit(2.5, "meters"),
  26126. default: true
  26127. },
  26128. {
  26129. name: "Macro",
  26130. height: math.unit(100, "meters")
  26131. },
  26132. ]
  26133. ))
  26134. characterMakers.push(() => makeCharacter(
  26135. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26136. {
  26137. front: {
  26138. height: math.unit(5 + 9/12, "feet"),
  26139. weight: math.unit(120, "lb"),
  26140. name: "Front",
  26141. image: {
  26142. source: "./media/characters/ash/front.svg",
  26143. extra: 2189/1961,
  26144. bottom: 5.2/2194
  26145. }
  26146. },
  26147. },
  26148. [
  26149. {
  26150. name: "Normal",
  26151. height: math.unit(5 + 9/12, "feet"),
  26152. default: true
  26153. },
  26154. ]
  26155. ))
  26156. characterMakers.push(() => makeCharacter(
  26157. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26158. {
  26159. front: {
  26160. height: math.unit(9, "feet"),
  26161. weight: math.unit(10000, "lb"),
  26162. name: "Front",
  26163. image: {
  26164. source: "./media/characters/gygabite/front.svg",
  26165. bottom: 31.7/537.8,
  26166. extra: 505/370
  26167. }
  26168. },
  26169. },
  26170. [
  26171. {
  26172. name: "Normal",
  26173. height: math.unit(9, "feet"),
  26174. default: true
  26175. },
  26176. ]
  26177. ))
  26178. characterMakers.push(() => makeCharacter(
  26179. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26180. {
  26181. front: {
  26182. height: math.unit(12, "feet"),
  26183. weight: math.unit(35000, "lb"),
  26184. name: "Front",
  26185. image: {
  26186. source: "./media/characters/p0tat0/front.svg",
  26187. extra: 1065/921,
  26188. bottom: 55.7/1121.25
  26189. }
  26190. },
  26191. },
  26192. [
  26193. {
  26194. name: "Normal",
  26195. height: math.unit(12, "feet"),
  26196. default: true
  26197. },
  26198. ]
  26199. ))
  26200. characterMakers.push(() => makeCharacter(
  26201. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26202. {
  26203. side: {
  26204. height: math.unit(6.5, "feet"),
  26205. weight: math.unit(800, "lb"),
  26206. name: "Side",
  26207. image: {
  26208. source: "./media/characters/dusk/side.svg",
  26209. extra: 615/373,
  26210. bottom: 53/664
  26211. }
  26212. },
  26213. sitting: {
  26214. height: math.unit(7, "feet"),
  26215. weight: math.unit(800, "lb"),
  26216. name: "Sitting",
  26217. image: {
  26218. source: "./media/characters/dusk/sitting.svg",
  26219. extra: 753/425,
  26220. bottom: 33/774
  26221. }
  26222. },
  26223. head: {
  26224. height: math.unit(6.1, "feet"),
  26225. name: "Head",
  26226. image: {
  26227. source: "./media/characters/dusk/head.svg"
  26228. }
  26229. },
  26230. },
  26231. [
  26232. {
  26233. name: "Normal",
  26234. height: math.unit(7, "feet"),
  26235. default: true
  26236. },
  26237. ]
  26238. ))
  26239. characterMakers.push(() => makeCharacter(
  26240. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26241. {
  26242. front: {
  26243. height: math.unit(15, "feet"),
  26244. weight: math.unit(7000, "lb"),
  26245. name: "Front",
  26246. image: {
  26247. source: "./media/characters/jay-direwolf/front.svg",
  26248. extra: 1810/1732,
  26249. bottom: 66/1892
  26250. }
  26251. },
  26252. },
  26253. [
  26254. {
  26255. name: "Normal",
  26256. height: math.unit(15, "feet"),
  26257. default: true
  26258. },
  26259. ]
  26260. ))
  26261. characterMakers.push(() => makeCharacter(
  26262. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26263. {
  26264. front: {
  26265. height: math.unit(4 + 9/12, "feet"),
  26266. weight: math.unit(130, "lb"),
  26267. name: "Front",
  26268. image: {
  26269. source: "./media/characters/anchovie/front.svg",
  26270. extra: 382/350,
  26271. bottom: 25/409
  26272. }
  26273. },
  26274. back: {
  26275. height: math.unit(4 + 9/12, "feet"),
  26276. weight: math.unit(130, "lb"),
  26277. name: "Back",
  26278. image: {
  26279. source: "./media/characters/anchovie/back.svg",
  26280. extra: 385/352,
  26281. bottom: 16.6/402
  26282. }
  26283. },
  26284. frontDressed: {
  26285. height: math.unit(4 + 9/12, "feet"),
  26286. weight: math.unit(130, "lb"),
  26287. name: "Front (Dressed)",
  26288. image: {
  26289. source: "./media/characters/anchovie/front-dressed.svg",
  26290. extra: 382/350,
  26291. bottom: 25/409
  26292. }
  26293. },
  26294. backDressed: {
  26295. height: math.unit(4 + 9/12, "feet"),
  26296. weight: math.unit(130, "lb"),
  26297. name: "Back (Dressed)",
  26298. image: {
  26299. source: "./media/characters/anchovie/back-dressed.svg",
  26300. extra: 385/352,
  26301. bottom: 16.6/402
  26302. }
  26303. },
  26304. },
  26305. [
  26306. {
  26307. name: "Micro",
  26308. height: math.unit(6.4, "inches")
  26309. },
  26310. {
  26311. name: "Normal",
  26312. height: math.unit(4 + 9/12, "feet"),
  26313. default: true
  26314. },
  26315. ]
  26316. ))
  26317. characterMakers.push(() => makeCharacter(
  26318. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26319. {
  26320. front: {
  26321. height: math.unit(2, "meters"),
  26322. weight: math.unit(180, "lb"),
  26323. name: "Front",
  26324. image: {
  26325. source: "./media/characters/acidrenamon/front.svg",
  26326. extra: 987/890,
  26327. bottom: 22.8/1009
  26328. }
  26329. },
  26330. back: {
  26331. height: math.unit(2, "meters"),
  26332. weight: math.unit(180, "lb"),
  26333. name: "Back",
  26334. image: {
  26335. source: "./media/characters/acidrenamon/back.svg",
  26336. extra: 983/891,
  26337. bottom: 8.4/992
  26338. }
  26339. },
  26340. head: {
  26341. height: math.unit(1.92, "feet"),
  26342. name: "Head",
  26343. image: {
  26344. source: "./media/characters/acidrenamon/head.svg"
  26345. }
  26346. },
  26347. rump: {
  26348. height: math.unit(1.72, "feet"),
  26349. name: "Rump",
  26350. image: {
  26351. source: "./media/characters/acidrenamon/rump.svg"
  26352. }
  26353. },
  26354. tail: {
  26355. height: math.unit(4.2, "feet"),
  26356. name: "Tail",
  26357. image: {
  26358. source: "./media/characters/acidrenamon/tail.svg"
  26359. }
  26360. },
  26361. },
  26362. [
  26363. {
  26364. name: "Normal",
  26365. height: math.unit(2, "meters"),
  26366. default: true
  26367. },
  26368. {
  26369. name: "Minimacro",
  26370. height: math.unit(7, "meters")
  26371. },
  26372. {
  26373. name: "Macro",
  26374. height: math.unit(200, "meters")
  26375. },
  26376. {
  26377. name: "Gigamacro",
  26378. height: math.unit(0.2, "earths")
  26379. },
  26380. ]
  26381. ))
  26382. characterMakers.push(() => makeCharacter(
  26383. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26384. {
  26385. front: {
  26386. height: math.unit(6, "feet"),
  26387. weight: math.unit(150, "lb"),
  26388. name: "Front",
  26389. image: {
  26390. source: "./media/characters/kenzie-lee/front.svg",
  26391. extra: 1525/1465,
  26392. bottom: 45/1570
  26393. }
  26394. },
  26395. side: {
  26396. height: math.unit(6, "feet"),
  26397. weight: math.unit(150, "lb"),
  26398. name: "Side",
  26399. image: {
  26400. source: "./media/characters/kenzie-lee/side.svg",
  26401. extra: 5505/5383,
  26402. bottom: 60/5573
  26403. }
  26404. },
  26405. },
  26406. [
  26407. {
  26408. name: "Normal",
  26409. height: math.unit(152, "feet"),
  26410. default: true
  26411. },
  26412. {
  26413. name: "Megamacro",
  26414. height: math.unit(7, "miles")
  26415. },
  26416. {
  26417. name: "Gigamacro",
  26418. height: math.unit(8000, "miles")
  26419. },
  26420. ]
  26421. ))
  26422. //characters
  26423. function makeCharacters() {
  26424. const results = [];
  26425. characterMakers.forEach(character => {
  26426. results.push(character());
  26427. });
  26428. return results;
  26429. }