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

27838 строки
693 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. "ferromorph": {
  1304. name: "Ferromorph",
  1305. parents: ["construct"]
  1306. },
  1307. "meowth": {
  1308. name: "Meowth",
  1309. parents: ["cat", "pokemon"]
  1310. },
  1311. "pavodragon": {
  1312. name: "Pavodragon",
  1313. parents: ["dragon"]
  1314. },
  1315. "aaltranae": {
  1316. name: "Aaltranae",
  1317. parents: ["dragon"]
  1318. },
  1319. }
  1320. //species
  1321. function getSpeciesInfo(speciesList) {
  1322. let result = new Set();
  1323. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1324. result.add(entry)
  1325. });
  1326. return Array.from(result);
  1327. };
  1328. function getSpeciesInfoHelper(species) {
  1329. if (!speciesData[species]) {
  1330. console.warn(species + " doesn't exist");
  1331. return [];
  1332. }
  1333. if (speciesData[species].parents) {
  1334. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1335. } else {
  1336. return [species];
  1337. }
  1338. }
  1339. characterMakers.push(() => makeCharacter(
  1340. {
  1341. name: "Fen",
  1342. species: ["crux"],
  1343. description: {
  1344. title: "Bio",
  1345. text: "Very furry. Sheds on everything."
  1346. },
  1347. tags: [
  1348. "anthro",
  1349. "goo"
  1350. ]
  1351. },
  1352. {
  1353. back: {
  1354. height: math.unit(2.2428, "meter"),
  1355. weight: math.unit(124.738, "kg"),
  1356. name: "Back",
  1357. image: {
  1358. source: "./media/characters/fen/back.svg",
  1359. extra: 1025 / 935,
  1360. bottom: 0.01
  1361. },
  1362. info: {
  1363. description: {
  1364. mode: "append",
  1365. text: "\n\nHe is not currently looking at you."
  1366. }
  1367. }
  1368. },
  1369. full: {
  1370. height: math.unit(1.34, "meter"),
  1371. weight: math.unit(225, "kg"),
  1372. name: "Full",
  1373. image: {
  1374. source: "./media/characters/fen/full.svg"
  1375. },
  1376. info: {
  1377. description: {
  1378. mode: "append",
  1379. text: "\n\nMunch."
  1380. }
  1381. }
  1382. },
  1383. kneeling: {
  1384. height: math.unit(5.4, "feet"),
  1385. weight: math.unit(124.738, "kg"),
  1386. name: "Kneeling",
  1387. image: {
  1388. source: "./media/characters/fen/kneeling.svg",
  1389. extra: 563 / 507
  1390. }
  1391. },
  1392. goo: {
  1393. height: math.unit(2.8, "feet"),
  1394. weight: math.unit(125, "kg"),
  1395. capacity: math.unit(1, "people"),
  1396. name: "Goo",
  1397. image: {
  1398. source: "./media/characters/fen/goo.svg",
  1399. bottom: 116 / 613
  1400. }
  1401. },
  1402. lounging: {
  1403. height: math.unit(6.5, "feet"),
  1404. weight: math.unit(125, "kg"),
  1405. name: "Lounging",
  1406. image: {
  1407. source: "./media/characters/fen/lounging.svg"
  1408. }
  1409. },
  1410. },
  1411. [
  1412. {
  1413. name: "Normal",
  1414. height: math.unit(2.2428, "meter")
  1415. },
  1416. {
  1417. name: "Big",
  1418. height: math.unit(12, "feet")
  1419. },
  1420. {
  1421. name: "Minimacro",
  1422. height: math.unit(40, "feet"),
  1423. default: true,
  1424. info: {
  1425. description: {
  1426. mode: "append",
  1427. text: "\n\nTOO DAMN BIG"
  1428. }
  1429. }
  1430. },
  1431. {
  1432. name: "Macro",
  1433. height: math.unit(100, "feet"),
  1434. info: {
  1435. description: {
  1436. mode: "append",
  1437. text: "\n\nTOO DAMN BIG"
  1438. }
  1439. }
  1440. },
  1441. {
  1442. name: "Macro+",
  1443. height: math.unit(300, "feet")
  1444. },
  1445. {
  1446. name: "Megamacro",
  1447. height: math.unit(2, "miles")
  1448. }
  1449. ]
  1450. ))
  1451. characterMakers.push(() => makeCharacter(
  1452. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1453. {
  1454. front: {
  1455. height: math.unit(183, "cm"),
  1456. weight: math.unit(80, "kg"),
  1457. name: "Front",
  1458. image: {
  1459. source: "./media/characters/sofia-fluttertail/front.svg",
  1460. bottom: 0.01,
  1461. extra: 2154 / 2081
  1462. }
  1463. },
  1464. frontAlt: {
  1465. height: math.unit(183, "cm"),
  1466. weight: math.unit(80, "kg"),
  1467. name: "Front (alt)",
  1468. image: {
  1469. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1470. }
  1471. },
  1472. back: {
  1473. height: math.unit(183, "cm"),
  1474. weight: math.unit(80, "kg"),
  1475. name: "Back",
  1476. image: {
  1477. source: "./media/characters/sofia-fluttertail/back.svg"
  1478. }
  1479. },
  1480. kneeling: {
  1481. height: math.unit(125, "cm"),
  1482. weight: math.unit(80, "kg"),
  1483. name: "Kneeling",
  1484. image: {
  1485. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1486. extra: 1033 / 977,
  1487. bottom: 23.7 / 1057
  1488. }
  1489. },
  1490. maw: {
  1491. height: math.unit(183 / 5, "cm"),
  1492. name: "Maw",
  1493. image: {
  1494. source: "./media/characters/sofia-fluttertail/maw.svg"
  1495. }
  1496. },
  1497. mawcloseup: {
  1498. height: math.unit(183 / 5 * 0.41, "cm"),
  1499. name: "Maw (Closeup)",
  1500. image: {
  1501. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1502. }
  1503. },
  1504. },
  1505. [
  1506. {
  1507. name: "Normal",
  1508. height: math.unit(1.83, "meter")
  1509. },
  1510. {
  1511. name: "Size Thief",
  1512. height: math.unit(18, "feet")
  1513. },
  1514. {
  1515. name: "50 Foot Collie",
  1516. height: math.unit(50, "feet")
  1517. },
  1518. {
  1519. name: "Macro",
  1520. height: math.unit(96, "feet"),
  1521. default: true
  1522. },
  1523. {
  1524. name: "Megamerger",
  1525. height: math.unit(650, "feet")
  1526. },
  1527. ]
  1528. ))
  1529. characterMakers.push(() => makeCharacter(
  1530. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1531. {
  1532. front: {
  1533. height: math.unit(7, "feet"),
  1534. weight: math.unit(100, "kg"),
  1535. name: "Front",
  1536. image: {
  1537. source: "./media/characters/march/front.svg",
  1538. extra: 1,
  1539. bottom: 0.015
  1540. }
  1541. },
  1542. foot: {
  1543. height: math.unit(0.9, "feet"),
  1544. name: "Foot",
  1545. image: {
  1546. source: "./media/characters/march/foot.svg"
  1547. }
  1548. },
  1549. },
  1550. [
  1551. {
  1552. name: "Normal",
  1553. height: math.unit(7.9, "feet")
  1554. },
  1555. {
  1556. name: "Macro",
  1557. height: math.unit(220, "meters")
  1558. },
  1559. {
  1560. name: "Megamacro",
  1561. height: math.unit(2.98, "km"),
  1562. default: true
  1563. },
  1564. {
  1565. name: "Gigamacro",
  1566. height: math.unit(15963, "km")
  1567. },
  1568. {
  1569. name: "Teramacro",
  1570. height: math.unit(2980000000, "km")
  1571. },
  1572. {
  1573. name: "Examacro",
  1574. height: math.unit(250, "parsecs")
  1575. },
  1576. ]
  1577. ))
  1578. characterMakers.push(() => makeCharacter(
  1579. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1580. {
  1581. front: {
  1582. height: math.unit(6, "feet"),
  1583. weight: math.unit(60, "kg"),
  1584. name: "Front",
  1585. image: {
  1586. source: "./media/characters/noir/front.svg",
  1587. extra: 1,
  1588. bottom: 0.032
  1589. }
  1590. },
  1591. },
  1592. [
  1593. {
  1594. name: "Normal",
  1595. height: math.unit(6.6, "feet")
  1596. },
  1597. {
  1598. name: "Macro",
  1599. height: math.unit(500, "feet")
  1600. },
  1601. {
  1602. name: "Megamacro",
  1603. height: math.unit(2.5, "km"),
  1604. default: true
  1605. },
  1606. {
  1607. name: "Gigamacro",
  1608. height: math.unit(22500, "km")
  1609. },
  1610. {
  1611. name: "Teramacro",
  1612. height: math.unit(2500000000, "km")
  1613. },
  1614. {
  1615. name: "Examacro",
  1616. height: math.unit(200, "parsecs")
  1617. },
  1618. ]
  1619. ))
  1620. characterMakers.push(() => makeCharacter(
  1621. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1622. {
  1623. front: {
  1624. height: math.unit(7, "feet"),
  1625. weight: math.unit(100, "kg"),
  1626. name: "Front",
  1627. image: {
  1628. source: "./media/characters/okuri/front.svg",
  1629. extra: 1,
  1630. bottom: 0.037
  1631. }
  1632. },
  1633. back: {
  1634. height: math.unit(7, "feet"),
  1635. weight: math.unit(100, "kg"),
  1636. name: "Back",
  1637. image: {
  1638. source: "./media/characters/okuri/back.svg",
  1639. extra: 1,
  1640. bottom: 0.007
  1641. }
  1642. },
  1643. },
  1644. [
  1645. {
  1646. name: "Megamacro",
  1647. height: math.unit(100, "miles"),
  1648. default: true
  1649. },
  1650. ]
  1651. ))
  1652. characterMakers.push(() => makeCharacter(
  1653. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1654. {
  1655. front: {
  1656. height: math.unit(7, "feet"),
  1657. weight: math.unit(100, "kg"),
  1658. name: "Front",
  1659. image: {
  1660. source: "./media/characters/manny/front.svg",
  1661. extra: 1,
  1662. bottom: 0.06
  1663. }
  1664. },
  1665. back: {
  1666. height: math.unit(7, "feet"),
  1667. weight: math.unit(100, "kg"),
  1668. name: "Back",
  1669. image: {
  1670. source: "./media/characters/manny/back.svg",
  1671. extra: 1,
  1672. bottom: 0.014
  1673. }
  1674. },
  1675. },
  1676. [
  1677. {
  1678. name: "Normal",
  1679. height: math.unit(7, "feet"),
  1680. },
  1681. {
  1682. name: "Macro",
  1683. height: math.unit(78, "feet"),
  1684. default: true
  1685. },
  1686. {
  1687. name: "Macro+",
  1688. height: math.unit(300, "meters")
  1689. },
  1690. {
  1691. name: "Macro++",
  1692. height: math.unit(2400, "meters")
  1693. },
  1694. {
  1695. name: "Megamacro",
  1696. height: math.unit(5167, "meters")
  1697. },
  1698. {
  1699. name: "Gigamacro",
  1700. height: math.unit(41769, "miles")
  1701. },
  1702. ]
  1703. ))
  1704. characterMakers.push(() => makeCharacter(
  1705. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1706. {
  1707. front: {
  1708. height: math.unit(7, "feet"),
  1709. weight: math.unit(100, "kg"),
  1710. name: "Front",
  1711. image: {
  1712. source: "./media/characters/adake/front-1.svg"
  1713. }
  1714. },
  1715. frontAlt: {
  1716. height: math.unit(7, "feet"),
  1717. weight: math.unit(100, "kg"),
  1718. name: "Front (Alt)",
  1719. image: {
  1720. source: "./media/characters/adake/front-2.svg",
  1721. extra: 1,
  1722. bottom: 0.01
  1723. }
  1724. },
  1725. back: {
  1726. height: math.unit(7, "feet"),
  1727. weight: math.unit(100, "kg"),
  1728. name: "Back",
  1729. image: {
  1730. source: "./media/characters/adake/back.svg",
  1731. }
  1732. },
  1733. kneel: {
  1734. height: math.unit(5.385, "feet"),
  1735. weight: math.unit(100, "kg"),
  1736. name: "Kneeling",
  1737. image: {
  1738. source: "./media/characters/adake/kneel.svg",
  1739. bottom: 0.052
  1740. }
  1741. },
  1742. },
  1743. [
  1744. {
  1745. name: "Normal",
  1746. height: math.unit(7, "feet"),
  1747. },
  1748. {
  1749. name: "Macro",
  1750. height: math.unit(78, "feet"),
  1751. default: true
  1752. },
  1753. {
  1754. name: "Macro+",
  1755. height: math.unit(300, "meters")
  1756. },
  1757. {
  1758. name: "Macro++",
  1759. height: math.unit(2400, "meters")
  1760. },
  1761. {
  1762. name: "Megamacro",
  1763. height: math.unit(5167, "meters")
  1764. },
  1765. {
  1766. name: "Gigamacro",
  1767. height: math.unit(41769, "miles")
  1768. },
  1769. ]
  1770. ))
  1771. characterMakers.push(() => makeCharacter(
  1772. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1773. {
  1774. front: {
  1775. height: math.unit(1.65, "meters"),
  1776. weight: math.unit(50, "kg"),
  1777. name: "Front",
  1778. image: {
  1779. source: "./media/characters/elijah/front.svg",
  1780. extra: 858 / 830,
  1781. bottom: 95.5 / 953.8559
  1782. }
  1783. },
  1784. back: {
  1785. height: math.unit(1.65, "meters"),
  1786. weight: math.unit(50, "kg"),
  1787. name: "Back",
  1788. image: {
  1789. source: "./media/characters/elijah/back.svg",
  1790. extra: 895 / 850,
  1791. bottom: 5.3 / 897.956
  1792. }
  1793. },
  1794. frontNsfw: {
  1795. height: math.unit(1.65, "meters"),
  1796. weight: math.unit(50, "kg"),
  1797. name: "Front (NSFW)",
  1798. image: {
  1799. source: "./media/characters/elijah/front-nsfw.svg",
  1800. extra: 858 / 830,
  1801. bottom: 95.5 / 953.8559
  1802. }
  1803. },
  1804. backNsfw: {
  1805. height: math.unit(1.65, "meters"),
  1806. weight: math.unit(50, "kg"),
  1807. name: "Back (NSFW)",
  1808. image: {
  1809. source: "./media/characters/elijah/back-nsfw.svg",
  1810. extra: 895 / 850,
  1811. bottom: 5.3 / 897.956
  1812. }
  1813. },
  1814. dick: {
  1815. height: math.unit(1, "feet"),
  1816. name: "Dick",
  1817. image: {
  1818. source: "./media/characters/elijah/dick.svg"
  1819. }
  1820. },
  1821. beakOpen: {
  1822. height: math.unit(1.25, "feet"),
  1823. name: "Beak (Open)",
  1824. image: {
  1825. source: "./media/characters/elijah/beak-open.svg"
  1826. }
  1827. },
  1828. beakShut: {
  1829. height: math.unit(1.25, "feet"),
  1830. name: "Beak (Shut)",
  1831. image: {
  1832. source: "./media/characters/elijah/beak-shut.svg"
  1833. }
  1834. },
  1835. footFlexing: {
  1836. height: math.unit(1.61, "feet"),
  1837. name: "Foot (Flexing)",
  1838. image: {
  1839. source: "./media/characters/elijah/foot-flexing.svg"
  1840. }
  1841. },
  1842. footStepping: {
  1843. height: math.unit(1.44, "feet"),
  1844. name: "Foot (Stepping)",
  1845. image: {
  1846. source: "./media/characters/elijah/foot-stepping.svg"
  1847. }
  1848. },
  1849. plantigradeLeg: {
  1850. height: math.unit(2.34, "feet"),
  1851. name: "Plantigrade Leg",
  1852. image: {
  1853. source: "./media/characters/elijah/plantigrade-leg.svg"
  1854. }
  1855. },
  1856. plantigradeFootLeft: {
  1857. height: math.unit(0.9, "feet"),
  1858. name: "Plantigrade Foot (Left)",
  1859. image: {
  1860. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1861. }
  1862. },
  1863. plantigradeFootRight: {
  1864. height: math.unit(0.9, "feet"),
  1865. name: "Plantigrade Foot (Right)",
  1866. image: {
  1867. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1868. }
  1869. },
  1870. },
  1871. [
  1872. {
  1873. name: "Normal",
  1874. height: math.unit(1.65, "meters")
  1875. },
  1876. {
  1877. name: "Macro",
  1878. height: math.unit(55, "meters"),
  1879. default: true
  1880. },
  1881. {
  1882. name: "Macro+",
  1883. height: math.unit(105, "meters")
  1884. },
  1885. ]
  1886. ))
  1887. characterMakers.push(() => makeCharacter(
  1888. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1889. {
  1890. front: {
  1891. height: math.unit(11, "feet"),
  1892. weight: math.unit(80, "kg"),
  1893. name: "Front",
  1894. image: {
  1895. source: "./media/characters/rai/front.svg",
  1896. extra: 1,
  1897. bottom: 0.03
  1898. }
  1899. },
  1900. side: {
  1901. height: math.unit(11, "feet"),
  1902. weight: math.unit(80, "kg"),
  1903. name: "Side",
  1904. image: {
  1905. source: "./media/characters/rai/side.svg"
  1906. }
  1907. },
  1908. back: {
  1909. height: math.unit(11, "feet"),
  1910. weight: math.unit(80, "lb"),
  1911. name: "Back",
  1912. image: {
  1913. source: "./media/characters/rai/back.svg",
  1914. extra: 1,
  1915. bottom: 0.01
  1916. }
  1917. },
  1918. feral: {
  1919. height: math.unit(11, "feet"),
  1920. weight: math.unit(800, "lb"),
  1921. name: "Feral",
  1922. image: {
  1923. source: "./media/characters/rai/feral.svg",
  1924. extra: 1050 / 659,
  1925. bottom: 0.07
  1926. }
  1927. },
  1928. dragon: {
  1929. height: math.unit(23, "feet"),
  1930. weight: math.unit(50000, "lb"),
  1931. name: "Dragon",
  1932. image: {
  1933. source: "./media/characters/rai/dragon.svg",
  1934. extra: 2498 / 2030,
  1935. bottom: 85.2 / 2584
  1936. }
  1937. },
  1938. maw: {
  1939. height: math.unit(6 / 3.81416, "feet"),
  1940. name: "Maw",
  1941. image: {
  1942. source: "./media/characters/rai/maw.svg"
  1943. }
  1944. },
  1945. },
  1946. [
  1947. {
  1948. name: "Normal",
  1949. height: math.unit(11, "feet")
  1950. },
  1951. {
  1952. name: "Macro",
  1953. height: math.unit(302, "feet"),
  1954. default: true
  1955. },
  1956. ]
  1957. ))
  1958. characterMakers.push(() => makeCharacter(
  1959. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1960. {
  1961. frontDressed: {
  1962. height: math.unit(216, "feet"),
  1963. weight: math.unit(7000000, "lb"),
  1964. name: "Front (Dressed)",
  1965. image: {
  1966. source: "./media/characters/jazzy/front-dressed.svg",
  1967. extra: 2738 / 2651,
  1968. bottom: 41.8 / 2786
  1969. }
  1970. },
  1971. backDressed: {
  1972. height: math.unit(216, "feet"),
  1973. weight: math.unit(7000000, "lb"),
  1974. name: "Back (Dressed)",
  1975. image: {
  1976. source: "./media/characters/jazzy/back-dressed.svg",
  1977. extra: 2775 / 2673,
  1978. bottom: 36.8 / 2817
  1979. }
  1980. },
  1981. front: {
  1982. height: math.unit(216, "feet"),
  1983. weight: math.unit(7000000, "lb"),
  1984. name: "Front",
  1985. image: {
  1986. source: "./media/characters/jazzy/front.svg",
  1987. extra: 2738 / 2651,
  1988. bottom: 41.8 / 2786
  1989. }
  1990. },
  1991. back: {
  1992. height: math.unit(216, "feet"),
  1993. weight: math.unit(7000000, "lb"),
  1994. name: "Back",
  1995. image: {
  1996. source: "./media/characters/jazzy/back.svg",
  1997. extra: 2775 / 2673,
  1998. bottom: 36.8 / 2817
  1999. }
  2000. },
  2001. maw: {
  2002. height: math.unit(20, "feet"),
  2003. name: "Maw",
  2004. image: {
  2005. source: "./media/characters/jazzy/maw.svg"
  2006. }
  2007. },
  2008. paws: {
  2009. height: math.unit(27.5, "feet"),
  2010. name: "Paws",
  2011. image: {
  2012. source: "./media/characters/jazzy/paws.svg"
  2013. }
  2014. },
  2015. eye: {
  2016. height: math.unit(4.4, "feet"),
  2017. name: "Eye",
  2018. image: {
  2019. source: "./media/characters/jazzy/eye.svg"
  2020. }
  2021. },
  2022. droneOffense: {
  2023. height: math.unit(9.5, "inches"),
  2024. name: "Drone (Offense)",
  2025. image: {
  2026. source: "./media/characters/jazzy/drone-offense.svg"
  2027. }
  2028. },
  2029. droneRecon: {
  2030. height: math.unit(9.5, "inches"),
  2031. name: "Drone (Recon)",
  2032. image: {
  2033. source: "./media/characters/jazzy/drone-recon.svg"
  2034. }
  2035. },
  2036. droneDefense: {
  2037. height: math.unit(9.5, "inches"),
  2038. name: "Drone (Defense)",
  2039. image: {
  2040. source: "./media/characters/jazzy/drone-defense.svg"
  2041. }
  2042. },
  2043. },
  2044. [
  2045. {
  2046. name: "Macro",
  2047. height: math.unit(216, "feet"),
  2048. default: true
  2049. },
  2050. ]
  2051. ))
  2052. characterMakers.push(() => makeCharacter(
  2053. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2054. {
  2055. front: {
  2056. height: math.unit(7, "feet"),
  2057. weight: math.unit(80, "kg"),
  2058. name: "Front",
  2059. image: {
  2060. source: "./media/characters/flamm/front.svg",
  2061. extra: 1794 / 1677,
  2062. bottom: 31.7 / 1828.5
  2063. }
  2064. },
  2065. },
  2066. [
  2067. {
  2068. name: "Normal",
  2069. height: math.unit(9.5, "feet")
  2070. },
  2071. {
  2072. name: "Macro",
  2073. height: math.unit(200, "feet"),
  2074. default: true
  2075. },
  2076. ]
  2077. ))
  2078. characterMakers.push(() => makeCharacter(
  2079. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2080. {
  2081. front: {
  2082. height: math.unit(7, "feet"),
  2083. weight: math.unit(80, "kg"),
  2084. name: "Front",
  2085. image: {
  2086. source: "./media/characters/zephiro/front.svg",
  2087. extra: 2309 / 2162,
  2088. bottom: 0.069
  2089. }
  2090. },
  2091. side: {
  2092. height: math.unit(7, "feet"),
  2093. weight: math.unit(80, "kg"),
  2094. name: "Side",
  2095. image: {
  2096. source: "./media/characters/zephiro/side.svg",
  2097. extra: 2403 / 2279,
  2098. bottom: 0.015
  2099. }
  2100. },
  2101. back: {
  2102. height: math.unit(7, "feet"),
  2103. weight: math.unit(80, "kg"),
  2104. name: "Back",
  2105. image: {
  2106. source: "./media/characters/zephiro/back.svg",
  2107. extra: 2373 / 2244,
  2108. bottom: 0.013
  2109. }
  2110. },
  2111. },
  2112. [
  2113. {
  2114. name: "Micro",
  2115. height: math.unit(3, "inches")
  2116. },
  2117. {
  2118. name: "Normal",
  2119. height: math.unit(5 + 3 / 12, "feet"),
  2120. default: true
  2121. },
  2122. {
  2123. name: "Macro",
  2124. height: math.unit(118, "feet")
  2125. },
  2126. ]
  2127. ))
  2128. characterMakers.push(() => makeCharacter(
  2129. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2130. {
  2131. front: {
  2132. height: math.unit(5, "feet"),
  2133. weight: math.unit(90, "kg"),
  2134. name: "Front",
  2135. image: {
  2136. source: "./media/characters/fory/front.svg",
  2137. extra: 2862 / 2674,
  2138. bottom: 180 / 3043.8
  2139. }
  2140. },
  2141. back: {
  2142. height: math.unit(5, "feet"),
  2143. weight: math.unit(90, "kg"),
  2144. name: "Back",
  2145. image: {
  2146. source: "./media/characters/fory/back.svg",
  2147. extra: 2962 / 2791,
  2148. bottom: 106 / 3071.8
  2149. }
  2150. },
  2151. foot: {
  2152. height: math.unit(2.14, "feet"),
  2153. name: "Foot",
  2154. image: {
  2155. source: "./media/characters/fory/foot.svg"
  2156. }
  2157. },
  2158. },
  2159. [
  2160. {
  2161. name: "Normal",
  2162. height: math.unit(5, "feet")
  2163. },
  2164. {
  2165. name: "Macro",
  2166. height: math.unit(50, "feet"),
  2167. default: true
  2168. },
  2169. {
  2170. name: "Megamacro",
  2171. height: math.unit(10, "miles")
  2172. },
  2173. {
  2174. name: "Gigamacro",
  2175. height: math.unit(5, "earths")
  2176. },
  2177. ]
  2178. ))
  2179. characterMakers.push(() => makeCharacter(
  2180. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2181. {
  2182. front: {
  2183. height: math.unit(7, "feet"),
  2184. weight: math.unit(90, "kg"),
  2185. name: "Front",
  2186. image: {
  2187. source: "./media/characters/kurrikage/front.svg",
  2188. extra: 1,
  2189. bottom: 0.035
  2190. }
  2191. },
  2192. back: {
  2193. height: math.unit(7, "feet"),
  2194. weight: math.unit(90, "lb"),
  2195. name: "Back",
  2196. image: {
  2197. source: "./media/characters/kurrikage/back.svg"
  2198. }
  2199. },
  2200. paw: {
  2201. height: math.unit(1.5, "feet"),
  2202. name: "Paw",
  2203. image: {
  2204. source: "./media/characters/kurrikage/paw.svg"
  2205. }
  2206. },
  2207. staff: {
  2208. height: math.unit(6.7, "feet"),
  2209. name: "Staff",
  2210. image: {
  2211. source: "./media/characters/kurrikage/staff.svg"
  2212. }
  2213. },
  2214. peek: {
  2215. height: math.unit(1.05, "feet"),
  2216. name: "Peeking",
  2217. image: {
  2218. source: "./media/characters/kurrikage/peek.svg",
  2219. bottom: 0.08
  2220. }
  2221. },
  2222. },
  2223. [
  2224. {
  2225. name: "Normal",
  2226. height: math.unit(12, "feet"),
  2227. default: true
  2228. },
  2229. {
  2230. name: "Big",
  2231. height: math.unit(20, "feet")
  2232. },
  2233. {
  2234. name: "Macro",
  2235. height: math.unit(500, "feet")
  2236. },
  2237. {
  2238. name: "Megamacro",
  2239. height: math.unit(20, "miles")
  2240. },
  2241. ]
  2242. ))
  2243. characterMakers.push(() => makeCharacter(
  2244. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2245. {
  2246. front: {
  2247. height: math.unit(6, "feet"),
  2248. weight: math.unit(75, "kg"),
  2249. name: "Front",
  2250. image: {
  2251. source: "./media/characters/shingo/front.svg",
  2252. extra: 3511 / 3338,
  2253. bottom: 0.005
  2254. }
  2255. },
  2256. paw: {
  2257. height: math.unit(1, "feet"),
  2258. name: "Paw",
  2259. image: {
  2260. source: "./media/characters/shingo/paw.svg"
  2261. }
  2262. },
  2263. },
  2264. [
  2265. {
  2266. name: "Micro",
  2267. height: math.unit(4, "inches")
  2268. },
  2269. {
  2270. name: "Normal",
  2271. height: math.unit(6, "feet"),
  2272. default: true
  2273. },
  2274. {
  2275. name: "Macro",
  2276. height: math.unit(108, "feet")
  2277. }
  2278. ]
  2279. ))
  2280. characterMakers.push(() => makeCharacter(
  2281. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2282. {
  2283. side: {
  2284. height: math.unit(6, "feet"),
  2285. weight: math.unit(75, "kg"),
  2286. name: "Side",
  2287. image: {
  2288. source: "./media/characters/aigey/side.svg"
  2289. }
  2290. },
  2291. },
  2292. [
  2293. {
  2294. name: "Macro",
  2295. height: math.unit(200, "feet"),
  2296. default: true
  2297. },
  2298. {
  2299. name: "Megamacro",
  2300. height: math.unit(100, "miles")
  2301. },
  2302. ]
  2303. )
  2304. )
  2305. characterMakers.push(() => makeCharacter(
  2306. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2307. {
  2308. front: {
  2309. height: math.unit(5 + 5 / 12, "feet"),
  2310. weight: math.unit(75, "kg"),
  2311. name: "Front",
  2312. image: {
  2313. source: "./media/characters/natasha/front.svg",
  2314. extra: 859 / 824,
  2315. bottom: 23 / 879.6
  2316. }
  2317. },
  2318. frontNsfw: {
  2319. height: math.unit(5 + 5 / 12, "feet"),
  2320. weight: math.unit(75, "kg"),
  2321. name: "Front (NSFW)",
  2322. image: {
  2323. source: "./media/characters/natasha/front-nsfw.svg",
  2324. extra: 859 / 824,
  2325. bottom: 23 / 879.6
  2326. }
  2327. },
  2328. frontErect: {
  2329. height: math.unit(5 + 5 / 12, "feet"),
  2330. weight: math.unit(75, "kg"),
  2331. name: "Front (Erect)",
  2332. image: {
  2333. source: "./media/characters/natasha/front-erect.svg",
  2334. extra: 859 / 824,
  2335. bottom: 23 / 879.6
  2336. }
  2337. },
  2338. back: {
  2339. height: math.unit(5 + 5 / 12, "feet"),
  2340. weight: math.unit(75, "kg"),
  2341. name: "Back",
  2342. image: {
  2343. source: "./media/characters/natasha/back.svg",
  2344. extra: 887.9 / 852.6,
  2345. bottom: 9.7 / 896.4
  2346. }
  2347. },
  2348. backAlt: {
  2349. height: math.unit(5 + 5 / 12, "feet"),
  2350. weight: math.unit(75, "kg"),
  2351. name: "Back (Alt)",
  2352. image: {
  2353. source: "./media/characters/natasha/back-alt.svg",
  2354. extra: 1236.7 / 1192,
  2355. bottom: 22.3 / 1258.2
  2356. }
  2357. },
  2358. dick: {
  2359. height: math.unit(1.772, "feet"),
  2360. name: "Dick",
  2361. image: {
  2362. source: "./media/characters/natasha/dick.svg"
  2363. }
  2364. },
  2365. },
  2366. [
  2367. {
  2368. name: "Normal",
  2369. height: math.unit(5 + 5 / 12, "feet")
  2370. },
  2371. {
  2372. name: "Large",
  2373. height: math.unit(12, "feet")
  2374. },
  2375. {
  2376. name: "Macro",
  2377. height: math.unit(100, "feet"),
  2378. default: true
  2379. },
  2380. {
  2381. name: "Macro+",
  2382. height: math.unit(260, "feet")
  2383. },
  2384. {
  2385. name: "Macro++",
  2386. height: math.unit(1, "mile")
  2387. },
  2388. ]
  2389. ))
  2390. characterMakers.push(() => makeCharacter(
  2391. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2392. {
  2393. front: {
  2394. height: math.unit(6, "feet"),
  2395. weight: math.unit(75, "kg"),
  2396. name: "Front",
  2397. image: {
  2398. source: "./media/characters/malik/front.svg"
  2399. }
  2400. },
  2401. side: {
  2402. height: math.unit(6, "feet"),
  2403. weight: math.unit(75, "kg"),
  2404. name: "Side",
  2405. image: {
  2406. source: "./media/characters/malik/side.svg",
  2407. extra: 1.1539
  2408. }
  2409. },
  2410. back: {
  2411. height: math.unit(6, "feet"),
  2412. weight: math.unit(75, "kg"),
  2413. name: "Back",
  2414. image: {
  2415. source: "./media/characters/malik/back.svg"
  2416. }
  2417. },
  2418. },
  2419. [
  2420. {
  2421. name: "Macro",
  2422. height: math.unit(156, "feet"),
  2423. default: true
  2424. },
  2425. {
  2426. name: "Macro+",
  2427. height: math.unit(1188, "feet")
  2428. },
  2429. ]
  2430. ))
  2431. characterMakers.push(() => makeCharacter(
  2432. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2433. {
  2434. front: {
  2435. height: math.unit(6, "feet"),
  2436. weight: math.unit(75, "kg"),
  2437. name: "Front",
  2438. image: {
  2439. source: "./media/characters/sefer/front.svg",
  2440. extra: 848 / 659,
  2441. bottom: 28.3 / 876.442
  2442. }
  2443. },
  2444. back: {
  2445. height: math.unit(6, "feet"),
  2446. weight: math.unit(75, "kg"),
  2447. name: "Back",
  2448. image: {
  2449. source: "./media/characters/sefer/back.svg",
  2450. extra: 864 / 695,
  2451. bottom: 10 / 871
  2452. }
  2453. },
  2454. frontDressed: {
  2455. height: math.unit(6, "feet"),
  2456. weight: math.unit(75, "kg"),
  2457. name: "Front (Dressed)",
  2458. image: {
  2459. source: "./media/characters/sefer/front-dressed.svg",
  2460. extra: 839 / 653,
  2461. bottom: 37.6 / 878
  2462. }
  2463. },
  2464. },
  2465. [
  2466. {
  2467. name: "Normal",
  2468. height: math.unit(6, "feet"),
  2469. default: true
  2470. },
  2471. ]
  2472. ))
  2473. characterMakers.push(() => makeCharacter(
  2474. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2475. {
  2476. body: {
  2477. height: math.unit(2.2428, "meter"),
  2478. weight: math.unit(124.738, "kg"),
  2479. name: "Body",
  2480. image: {
  2481. extra: 1225 / 1050,
  2482. source: "./media/characters/north/front.svg"
  2483. }
  2484. }
  2485. },
  2486. [
  2487. {
  2488. name: "Micro",
  2489. height: math.unit(4, "inches")
  2490. },
  2491. {
  2492. name: "Macro",
  2493. height: math.unit(63, "meters")
  2494. },
  2495. {
  2496. name: "Megamacro",
  2497. height: math.unit(101, "miles"),
  2498. default: true
  2499. }
  2500. ]
  2501. ))
  2502. characterMakers.push(() => makeCharacter(
  2503. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2504. {
  2505. angled: {
  2506. height: math.unit(4, "meter"),
  2507. weight: math.unit(150, "kg"),
  2508. name: "Angled",
  2509. image: {
  2510. source: "./media/characters/talan/angled-sfw.svg",
  2511. bottom: 29 / 3734
  2512. }
  2513. },
  2514. angledNsfw: {
  2515. height: math.unit(4, "meter"),
  2516. weight: math.unit(150, "kg"),
  2517. name: "Angled (NSFW)",
  2518. image: {
  2519. source: "./media/characters/talan/angled-nsfw.svg",
  2520. bottom: 29 / 3734
  2521. }
  2522. },
  2523. frontNsfw: {
  2524. height: math.unit(4, "meter"),
  2525. weight: math.unit(150, "kg"),
  2526. name: "Front (NSFW)",
  2527. image: {
  2528. source: "./media/characters/talan/front-nsfw.svg",
  2529. bottom: 29 / 3734
  2530. }
  2531. },
  2532. sideNsfw: {
  2533. height: math.unit(4, "meter"),
  2534. weight: math.unit(150, "kg"),
  2535. name: "Side (NSFW)",
  2536. image: {
  2537. source: "./media/characters/talan/side-nsfw.svg",
  2538. bottom: 29 / 3734
  2539. }
  2540. },
  2541. back: {
  2542. height: math.unit(4, "meter"),
  2543. weight: math.unit(150, "kg"),
  2544. name: "Back",
  2545. image: {
  2546. source: "./media/characters/talan/back.svg"
  2547. }
  2548. },
  2549. dickBottom: {
  2550. height: math.unit(0.621, "meter"),
  2551. name: "Dick (Bottom)",
  2552. image: {
  2553. source: "./media/characters/talan/dick-bottom.svg"
  2554. }
  2555. },
  2556. dickTop: {
  2557. height: math.unit(0.621, "meter"),
  2558. name: "Dick (Top)",
  2559. image: {
  2560. source: "./media/characters/talan/dick-top.svg"
  2561. }
  2562. },
  2563. dickSide: {
  2564. height: math.unit(0.305, "meter"),
  2565. name: "Dick (Side)",
  2566. image: {
  2567. source: "./media/characters/talan/dick-side.svg"
  2568. }
  2569. },
  2570. dickFront: {
  2571. height: math.unit(0.305, "meter"),
  2572. name: "Dick (Front)",
  2573. image: {
  2574. source: "./media/characters/talan/dick-front.svg"
  2575. }
  2576. },
  2577. },
  2578. [
  2579. {
  2580. name: "Normal",
  2581. height: math.unit(4, "meters")
  2582. },
  2583. {
  2584. name: "Macro",
  2585. height: math.unit(100, "meters")
  2586. },
  2587. {
  2588. name: "Megamacro",
  2589. height: math.unit(2, "miles"),
  2590. default: true
  2591. },
  2592. {
  2593. name: "Gigamacro",
  2594. height: math.unit(5000, "miles")
  2595. },
  2596. {
  2597. name: "Teramacro",
  2598. height: math.unit(100, "parsecs")
  2599. }
  2600. ]
  2601. ))
  2602. characterMakers.push(() => makeCharacter(
  2603. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2604. {
  2605. front: {
  2606. height: math.unit(2, "meter"),
  2607. weight: math.unit(90, "kg"),
  2608. name: "Front",
  2609. image: {
  2610. source: "./media/characters/gael'rathus/front.svg"
  2611. }
  2612. },
  2613. frontAlt: {
  2614. height: math.unit(2, "meter"),
  2615. weight: math.unit(90, "kg"),
  2616. name: "Front (alt)",
  2617. image: {
  2618. source: "./media/characters/gael'rathus/front-alt.svg"
  2619. }
  2620. },
  2621. frontAlt2: {
  2622. height: math.unit(2, "meter"),
  2623. weight: math.unit(90, "kg"),
  2624. name: "Front (alt 2)",
  2625. image: {
  2626. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2627. }
  2628. }
  2629. },
  2630. [
  2631. {
  2632. name: "Normal",
  2633. height: math.unit(9, "feet"),
  2634. default: true
  2635. },
  2636. {
  2637. name: "Large",
  2638. height: math.unit(25, "feet")
  2639. },
  2640. {
  2641. name: "Macro",
  2642. height: math.unit(0.25, "miles")
  2643. },
  2644. {
  2645. name: "Megamacro",
  2646. height: math.unit(10, "miles")
  2647. }
  2648. ]
  2649. ))
  2650. characterMakers.push(() => makeCharacter(
  2651. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2652. {
  2653. side: {
  2654. height: math.unit(2, "meter"),
  2655. weight: math.unit(140, "kg"),
  2656. name: "Side",
  2657. image: {
  2658. source: "./media/characters/sosha/side.svg",
  2659. bottom: 0.042
  2660. }
  2661. },
  2662. },
  2663. [
  2664. {
  2665. name: "Normal",
  2666. height: math.unit(12, "feet"),
  2667. default: true
  2668. }
  2669. ]
  2670. ))
  2671. characterMakers.push(() => makeCharacter(
  2672. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2673. {
  2674. side: {
  2675. height: math.unit(5 + 5 / 12, "feet"),
  2676. weight: math.unit(170, "kg"),
  2677. name: "Side",
  2678. image: {
  2679. source: "./media/characters/runnola/side.svg",
  2680. extra: 741 / 448,
  2681. bottom: 0.05
  2682. }
  2683. },
  2684. },
  2685. [
  2686. {
  2687. name: "Small",
  2688. height: math.unit(3, "feet")
  2689. },
  2690. {
  2691. name: "Normal",
  2692. height: math.unit(5 + 5 / 12, "feet"),
  2693. default: true
  2694. },
  2695. {
  2696. name: "Big",
  2697. height: math.unit(10, "feet")
  2698. },
  2699. ]
  2700. ))
  2701. characterMakers.push(() => makeCharacter(
  2702. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2703. {
  2704. front: {
  2705. height: math.unit(2, "meter"),
  2706. weight: math.unit(50, "kg"),
  2707. name: "Front",
  2708. image: {
  2709. source: "./media/characters/kurribird/front.svg",
  2710. bottom: 0.015
  2711. }
  2712. },
  2713. frontAlt: {
  2714. height: math.unit(1.5, "meter"),
  2715. weight: math.unit(50, "kg"),
  2716. name: "Front (Alt)",
  2717. image: {
  2718. source: "./media/characters/kurribird/front-alt.svg",
  2719. extra: 1.45
  2720. }
  2721. },
  2722. },
  2723. [
  2724. {
  2725. name: "Normal",
  2726. height: math.unit(7, "feet")
  2727. },
  2728. {
  2729. name: "Big",
  2730. height: math.unit(12, "feet"),
  2731. default: true
  2732. },
  2733. {
  2734. name: "Macro",
  2735. height: math.unit(1500, "feet")
  2736. },
  2737. {
  2738. name: "Megamacro",
  2739. height: math.unit(2, "miles")
  2740. }
  2741. ]
  2742. ))
  2743. characterMakers.push(() => makeCharacter(
  2744. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2745. {
  2746. front: {
  2747. height: math.unit(2, "meter"),
  2748. weight: math.unit(80, "kg"),
  2749. name: "Front",
  2750. image: {
  2751. source: "./media/characters/elbial/front.svg",
  2752. extra: 1643 / 1556,
  2753. bottom: 60.2 / 1696
  2754. }
  2755. },
  2756. side: {
  2757. height: math.unit(2, "meter"),
  2758. weight: math.unit(80, "kg"),
  2759. name: "Side",
  2760. image: {
  2761. source: "./media/characters/elbial/side.svg",
  2762. extra: 1630 / 1565,
  2763. bottom: 71.5 / 1697
  2764. }
  2765. },
  2766. back: {
  2767. height: math.unit(2, "meter"),
  2768. weight: math.unit(80, "kg"),
  2769. name: "Back",
  2770. image: {
  2771. source: "./media/characters/elbial/back.svg",
  2772. extra: 1668 / 1595,
  2773. bottom: 5.6 / 1672
  2774. }
  2775. },
  2776. frontDressed: {
  2777. height: math.unit(2, "meter"),
  2778. weight: math.unit(80, "kg"),
  2779. name: "Front (Dressed)",
  2780. image: {
  2781. source: "./media/characters/elbial/front-dressed.svg",
  2782. extra: 1653 / 1584,
  2783. bottom: 57 / 1708
  2784. }
  2785. },
  2786. genitals: {
  2787. height: math.unit(2 / 3.367, "meter"),
  2788. name: "Genitals",
  2789. image: {
  2790. source: "./media/characters/elbial/genitals.svg"
  2791. }
  2792. },
  2793. },
  2794. [
  2795. {
  2796. name: "Large",
  2797. height: math.unit(100, "feet")
  2798. },
  2799. {
  2800. name: "Macro",
  2801. height: math.unit(500, "feet"),
  2802. default: true
  2803. },
  2804. {
  2805. name: "Megamacro",
  2806. height: math.unit(10, "miles")
  2807. },
  2808. {
  2809. name: "Gigamacro",
  2810. height: math.unit(25000, "miles")
  2811. },
  2812. {
  2813. name: "Full-Size",
  2814. height: math.unit(8000000, "gigaparsecs")
  2815. }
  2816. ]
  2817. ))
  2818. characterMakers.push(() => makeCharacter(
  2819. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2820. {
  2821. front: {
  2822. height: math.unit(2, "meter"),
  2823. weight: math.unit(60, "kg"),
  2824. name: "Front",
  2825. image: {
  2826. source: "./media/characters/noah/front.svg"
  2827. }
  2828. },
  2829. talons: {
  2830. height: math.unit(0.315, "meter"),
  2831. name: "Talons",
  2832. image: {
  2833. source: "./media/characters/noah/talons.svg"
  2834. }
  2835. }
  2836. },
  2837. [
  2838. {
  2839. name: "Large",
  2840. height: math.unit(50, "feet")
  2841. },
  2842. {
  2843. name: "Macro",
  2844. height: math.unit(750, "feet"),
  2845. default: true
  2846. },
  2847. {
  2848. name: "Megamacro",
  2849. height: math.unit(50, "miles")
  2850. },
  2851. {
  2852. name: "Gigamacro",
  2853. height: math.unit(100000, "miles")
  2854. },
  2855. {
  2856. name: "Full-Size",
  2857. height: math.unit(3000000000, "miles")
  2858. }
  2859. ]
  2860. ))
  2861. characterMakers.push(() => makeCharacter(
  2862. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2863. {
  2864. front: {
  2865. height: math.unit(2, "meter"),
  2866. weight: math.unit(80, "kg"),
  2867. name: "Front",
  2868. image: {
  2869. source: "./media/characters/natalya/front.svg"
  2870. }
  2871. },
  2872. back: {
  2873. height: math.unit(2, "meter"),
  2874. weight: math.unit(80, "kg"),
  2875. name: "Back",
  2876. image: {
  2877. source: "./media/characters/natalya/back.svg"
  2878. }
  2879. }
  2880. },
  2881. [
  2882. {
  2883. name: "Normal",
  2884. height: math.unit(150, "feet"),
  2885. default: true
  2886. },
  2887. {
  2888. name: "Megamacro",
  2889. height: math.unit(5, "miles")
  2890. },
  2891. {
  2892. name: "Full-Size",
  2893. height: math.unit(600, "kiloparsecs")
  2894. }
  2895. ]
  2896. ))
  2897. characterMakers.push(() => makeCharacter(
  2898. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2899. {
  2900. front: {
  2901. height: math.unit(2, "meter"),
  2902. weight: math.unit(50, "kg"),
  2903. name: "Front",
  2904. image: {
  2905. source: "./media/characters/erestrebah/front.svg",
  2906. extra: 208 / 193,
  2907. bottom: 0.055
  2908. }
  2909. },
  2910. back: {
  2911. height: math.unit(2, "meter"),
  2912. weight: math.unit(50, "kg"),
  2913. name: "Back",
  2914. image: {
  2915. source: "./media/characters/erestrebah/back.svg",
  2916. extra: 1.3
  2917. }
  2918. }
  2919. },
  2920. [
  2921. {
  2922. name: "Normal",
  2923. height: math.unit(10, "feet")
  2924. },
  2925. {
  2926. name: "Large",
  2927. height: math.unit(50, "feet"),
  2928. default: true
  2929. },
  2930. {
  2931. name: "Macro",
  2932. height: math.unit(300, "feet")
  2933. },
  2934. {
  2935. name: "Macro+",
  2936. height: math.unit(750, "feet")
  2937. },
  2938. {
  2939. name: "Megamacro",
  2940. height: math.unit(3, "miles")
  2941. }
  2942. ]
  2943. ))
  2944. characterMakers.push(() => makeCharacter(
  2945. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2946. {
  2947. front: {
  2948. height: math.unit(2, "meter"),
  2949. weight: math.unit(80, "kg"),
  2950. name: "Front",
  2951. image: {
  2952. source: "./media/characters/jennifer/front.svg",
  2953. bottom: 0.11,
  2954. extra: 1.16
  2955. }
  2956. },
  2957. frontAlt: {
  2958. height: math.unit(2, "meter"),
  2959. weight: math.unit(80, "kg"),
  2960. name: "Front (Alt)",
  2961. image: {
  2962. source: "./media/characters/jennifer/front-alt.svg"
  2963. }
  2964. }
  2965. },
  2966. [
  2967. {
  2968. name: "Canon Height",
  2969. height: math.unit(120, "feet"),
  2970. default: true
  2971. },
  2972. {
  2973. name: "Macro+",
  2974. height: math.unit(300, "feet")
  2975. },
  2976. {
  2977. name: "Megamacro",
  2978. height: math.unit(20000, "feet")
  2979. }
  2980. ]
  2981. ))
  2982. characterMakers.push(() => makeCharacter(
  2983. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2984. {
  2985. front: {
  2986. height: math.unit(2, "meter"),
  2987. weight: math.unit(50, "kg"),
  2988. name: "Front",
  2989. image: {
  2990. source: "./media/characters/kalista/front.svg",
  2991. extra: 1947 / 1700,
  2992. bottom: 76.6 / 1412.98
  2993. }
  2994. },
  2995. back: {
  2996. height: math.unit(2, "meter"),
  2997. weight: math.unit(50, "kg"),
  2998. name: "Back",
  2999. image: {
  3000. source: "./media/characters/kalista/back.svg",
  3001. extra: 1366 / 1156,
  3002. bottom: 33.9 / 1362.78
  3003. }
  3004. }
  3005. },
  3006. [
  3007. {
  3008. name: "Uncomfortably Small",
  3009. height: math.unit(10, "feet")
  3010. },
  3011. {
  3012. name: "Small",
  3013. height: math.unit(30, "feet")
  3014. },
  3015. {
  3016. name: "Macro",
  3017. height: math.unit(100, "feet"),
  3018. default: true
  3019. },
  3020. {
  3021. name: "Macro+",
  3022. height: math.unit(2000, "feet")
  3023. },
  3024. {
  3025. name: "True Form",
  3026. height: math.unit(8924, "miles")
  3027. }
  3028. ]
  3029. ))
  3030. characterMakers.push(() => makeCharacter(
  3031. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3032. {
  3033. front: {
  3034. height: math.unit(2, "meter"),
  3035. weight: math.unit(120, "kg"),
  3036. name: "Front",
  3037. image: {
  3038. source: "./media/characters/ggv/front.svg"
  3039. }
  3040. },
  3041. side: {
  3042. height: math.unit(2, "meter"),
  3043. weight: math.unit(120, "kg"),
  3044. name: "Side",
  3045. image: {
  3046. source: "./media/characters/ggv/side.svg"
  3047. }
  3048. }
  3049. },
  3050. [
  3051. {
  3052. name: "Extremely Puny",
  3053. height: math.unit(9 + 5 / 12, "feet")
  3054. },
  3055. {
  3056. name: "Horribly Small",
  3057. height: math.unit(47.7, "miles"),
  3058. default: true
  3059. },
  3060. {
  3061. name: "Reasonably Sized",
  3062. height: math.unit(25000, "parsecs")
  3063. },
  3064. {
  3065. name: "Slightly Uncompressed",
  3066. height: math.unit(7.77e31, "parsecs")
  3067. },
  3068. {
  3069. name: "Omniversal",
  3070. height: math.unit(1e300, "meters")
  3071. },
  3072. ]
  3073. ))
  3074. characterMakers.push(() => makeCharacter(
  3075. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3076. {
  3077. front: {
  3078. height: math.unit(2, "meter"),
  3079. weight: math.unit(75, "lb"),
  3080. name: "Front",
  3081. image: {
  3082. source: "./media/characters/napalm/front.svg"
  3083. }
  3084. },
  3085. back: {
  3086. height: math.unit(2, "meter"),
  3087. weight: math.unit(75, "lb"),
  3088. name: "Back",
  3089. image: {
  3090. source: "./media/characters/napalm/back.svg"
  3091. }
  3092. }
  3093. },
  3094. [
  3095. {
  3096. name: "Standard",
  3097. height: math.unit(55, "feet"),
  3098. default: true
  3099. }
  3100. ]
  3101. ))
  3102. characterMakers.push(() => makeCharacter(
  3103. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3104. {
  3105. front: {
  3106. height: math.unit(7 + 5 / 6, "feet"),
  3107. weight: math.unit(325, "lb"),
  3108. name: "Front",
  3109. image: {
  3110. source: "./media/characters/asana/front.svg",
  3111. extra: 1133 / 1060,
  3112. bottom: 15.2/1148.6
  3113. }
  3114. },
  3115. back: {
  3116. height: math.unit(7 + 5 / 6, "feet"),
  3117. weight: math.unit(325, "lb"),
  3118. name: "Back",
  3119. image: {
  3120. source: "./media/characters/asana/back.svg",
  3121. extra: 1114 / 1043,
  3122. bottom: 5/1120
  3123. }
  3124. },
  3125. dressedDark: {
  3126. height: math.unit(7 + 5 / 6, "feet"),
  3127. weight: math.unit(325, "lb"),
  3128. name: "Dressed (Dark)",
  3129. image: {
  3130. source: "./media/characters/asana/dressed-dark.svg",
  3131. extra: 1133 / 1060,
  3132. bottom: 15.2/1148.6
  3133. }
  3134. },
  3135. dressedLight: {
  3136. height: math.unit(7 + 5 / 6, "feet"),
  3137. weight: math.unit(325, "lb"),
  3138. name: "Dressed (Light)",
  3139. image: {
  3140. source: "./media/characters/asana/dressed-light.svg",
  3141. extra: 1133 / 1060,
  3142. bottom: 15.2/1148.6
  3143. }
  3144. },
  3145. },
  3146. [
  3147. {
  3148. name: "Standard",
  3149. height: math.unit(7 + 5 / 6, "feet"),
  3150. default: true
  3151. },
  3152. {
  3153. name: "Large",
  3154. height: math.unit(10, "meters")
  3155. },
  3156. {
  3157. name: "Macro",
  3158. height: math.unit(2500, "meters")
  3159. },
  3160. {
  3161. name: "Megamacro",
  3162. height: math.unit(5e6, "meters")
  3163. },
  3164. {
  3165. name: "Examacro",
  3166. height: math.unit(5e12, "lightyears")
  3167. },
  3168. {
  3169. name: "Max Size",
  3170. height: math.unit(1e31, "lightyears")
  3171. }
  3172. ]
  3173. ))
  3174. characterMakers.push(() => makeCharacter(
  3175. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3176. {
  3177. front: {
  3178. height: math.unit(2, "meter"),
  3179. weight: math.unit(60, "kg"),
  3180. name: "Front",
  3181. image: {
  3182. source: "./media/characters/ebony/front.svg",
  3183. bottom: 0.03,
  3184. extra: 1045 / 810 + 0.03
  3185. }
  3186. },
  3187. side: {
  3188. height: math.unit(2, "meter"),
  3189. weight: math.unit(60, "kg"),
  3190. name: "Side",
  3191. image: {
  3192. source: "./media/characters/ebony/side.svg",
  3193. bottom: 0.03,
  3194. extra: 1045 / 810 + 0.03
  3195. }
  3196. },
  3197. back: {
  3198. height: math.unit(2, "meter"),
  3199. weight: math.unit(60, "kg"),
  3200. name: "Back",
  3201. image: {
  3202. source: "./media/characters/ebony/back.svg",
  3203. bottom: 0.01,
  3204. extra: 1045 / 810 + 0.01
  3205. }
  3206. },
  3207. },
  3208. [
  3209. // TODO check why I did this lol
  3210. {
  3211. name: "Standard",
  3212. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3213. default: true
  3214. },
  3215. {
  3216. name: "Macro",
  3217. height: math.unit(200, "feet")
  3218. },
  3219. {
  3220. name: "Gigamacro",
  3221. height: math.unit(13000, "km")
  3222. }
  3223. ]
  3224. ))
  3225. characterMakers.push(() => makeCharacter(
  3226. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3227. {
  3228. front: {
  3229. height: math.unit(6, "feet"),
  3230. weight: math.unit(175, "lb"),
  3231. name: "Front",
  3232. image: {
  3233. source: "./media/characters/mountain/front.svg",
  3234. extra: 972/955,
  3235. bottom: 64/1036.6
  3236. }
  3237. },
  3238. back: {
  3239. height: math.unit(6, "feet"),
  3240. weight: math.unit(175, "lb"),
  3241. name: "Back",
  3242. image: {
  3243. source: "./media/characters/mountain/back.svg",
  3244. extra: 970/950,
  3245. bottom: 28.25/999
  3246. }
  3247. },
  3248. },
  3249. [
  3250. {
  3251. name: "Large",
  3252. height: math.unit(20, "meters")
  3253. },
  3254. {
  3255. name: "Macro",
  3256. height: math.unit(300, "meters")
  3257. },
  3258. {
  3259. name: "Gigamacro",
  3260. height: math.unit(10000, "km"),
  3261. default: true
  3262. },
  3263. {
  3264. name: "Examacro",
  3265. height: math.unit(10e9, "lightyears")
  3266. }
  3267. ]
  3268. ))
  3269. characterMakers.push(() => makeCharacter(
  3270. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3271. {
  3272. front: {
  3273. height: math.unit(8, "feet"),
  3274. weight: math.unit(500, "lb"),
  3275. name: "Front",
  3276. image: {
  3277. source: "./media/characters/rick/front.svg"
  3278. }
  3279. }
  3280. },
  3281. [
  3282. {
  3283. name: "Normal",
  3284. height: math.unit(8, "feet"),
  3285. default: true
  3286. },
  3287. {
  3288. name: "Macro",
  3289. height: math.unit(5, "km")
  3290. }
  3291. ]
  3292. ))
  3293. characterMakers.push(() => makeCharacter(
  3294. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3295. {
  3296. front: {
  3297. height: math.unit(8, "feet"),
  3298. weight: math.unit(120, "lb"),
  3299. name: "Front",
  3300. image: {
  3301. source: "./media/characters/ona/front.svg"
  3302. }
  3303. },
  3304. frontAlt: {
  3305. height: math.unit(8, "feet"),
  3306. weight: math.unit(120, "lb"),
  3307. name: "Front (Alt)",
  3308. image: {
  3309. source: "./media/characters/ona/front-alt.svg"
  3310. }
  3311. },
  3312. back: {
  3313. height: math.unit(8, "feet"),
  3314. weight: math.unit(120, "lb"),
  3315. name: "Back",
  3316. image: {
  3317. source: "./media/characters/ona/back.svg"
  3318. }
  3319. },
  3320. foot: {
  3321. height: math.unit(1.1, "feet"),
  3322. name: "Foot",
  3323. image: {
  3324. source: "./media/characters/ona/foot.svg"
  3325. }
  3326. }
  3327. },
  3328. [
  3329. {
  3330. name: "Megamacro",
  3331. height: math.unit(70, "km"),
  3332. default: true
  3333. },
  3334. {
  3335. name: "Gigamacro",
  3336. height: math.unit(681818, "miles")
  3337. },
  3338. {
  3339. name: "Examacro",
  3340. height: math.unit(3800000, "lightyears")
  3341. },
  3342. ]
  3343. ))
  3344. characterMakers.push(() => makeCharacter(
  3345. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3346. {
  3347. front: {
  3348. height: math.unit(12, "feet"),
  3349. weight: math.unit(3000, "lb"),
  3350. name: "Front",
  3351. image: {
  3352. source: "./media/characters/mech/front.svg",
  3353. bottom: 0.025,
  3354. }
  3355. },
  3356. back: {
  3357. height: math.unit(12, "feet"),
  3358. weight: math.unit(3000, "lb"),
  3359. name: "Back",
  3360. image: {
  3361. source: "./media/characters/mech/back.svg",
  3362. bottom: 0.03,
  3363. }
  3364. }
  3365. },
  3366. [
  3367. {
  3368. name: "Normal",
  3369. height: math.unit(12, "feet")
  3370. },
  3371. {
  3372. name: "Macro",
  3373. height: math.unit(300, "feet"),
  3374. default: true
  3375. },
  3376. {
  3377. name: "Macro+",
  3378. height: math.unit(1500, "feet")
  3379. },
  3380. ]
  3381. ))
  3382. characterMakers.push(() => makeCharacter(
  3383. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3384. {
  3385. front: {
  3386. height: math.unit(1.3, "meter"),
  3387. weight: math.unit(30, "kg"),
  3388. name: "Front",
  3389. image: {
  3390. source: "./media/characters/gregory/front.svg",
  3391. }
  3392. }
  3393. },
  3394. [
  3395. {
  3396. name: "Normal",
  3397. height: math.unit(1.3, "meter"),
  3398. default: true
  3399. },
  3400. {
  3401. name: "Macro",
  3402. height: math.unit(20, "meter")
  3403. }
  3404. ]
  3405. ))
  3406. characterMakers.push(() => makeCharacter(
  3407. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3408. {
  3409. front: {
  3410. height: math.unit(2.8, "meter"),
  3411. weight: math.unit(200, "kg"),
  3412. name: "Front",
  3413. image: {
  3414. source: "./media/characters/elory/front.svg",
  3415. }
  3416. }
  3417. },
  3418. [
  3419. {
  3420. name: "Normal",
  3421. height: math.unit(2.8, "meter"),
  3422. default: true
  3423. },
  3424. {
  3425. name: "Macro",
  3426. height: math.unit(38, "meter")
  3427. }
  3428. ]
  3429. ))
  3430. characterMakers.push(() => makeCharacter(
  3431. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3432. {
  3433. front: {
  3434. height: math.unit(470, "feet"),
  3435. weight: math.unit(924, "tons"),
  3436. name: "Front",
  3437. image: {
  3438. source: "./media/characters/angelpatamon/front.svg",
  3439. }
  3440. }
  3441. },
  3442. [
  3443. {
  3444. name: "Normal",
  3445. height: math.unit(470, "feet"),
  3446. default: true
  3447. },
  3448. {
  3449. name: "Deity Size I",
  3450. height: math.unit(28651.2, "km")
  3451. },
  3452. {
  3453. name: "Deity Size II",
  3454. height: math.unit(171907.2, "km")
  3455. }
  3456. ]
  3457. ))
  3458. characterMakers.push(() => makeCharacter(
  3459. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3460. {
  3461. side: {
  3462. height: math.unit(7.2, "meter"),
  3463. weight: math.unit(8.2, "tons"),
  3464. name: "Side",
  3465. image: {
  3466. source: "./media/characters/cryae/side.svg",
  3467. extra: 3500 / 1500
  3468. }
  3469. }
  3470. },
  3471. [
  3472. {
  3473. name: "Normal",
  3474. height: math.unit(7.2, "meter"),
  3475. default: true
  3476. }
  3477. ]
  3478. ))
  3479. characterMakers.push(() => makeCharacter(
  3480. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3481. {
  3482. front: {
  3483. height: math.unit(6, "feet"),
  3484. weight: math.unit(175, "lb"),
  3485. name: "Front",
  3486. image: {
  3487. source: "./media/characters/xera/front.svg",
  3488. extra: 2377 / 1972,
  3489. bottom: 75.5/2452
  3490. }
  3491. },
  3492. side: {
  3493. height: math.unit(6, "feet"),
  3494. weight: math.unit(175, "lb"),
  3495. name: "Side",
  3496. image: {
  3497. source: "./media/characters/xera/side.svg",
  3498. extra: 2345/2019,
  3499. bottom: 39.7/2384
  3500. }
  3501. },
  3502. back: {
  3503. height: math.unit(6, "feet"),
  3504. weight: math.unit(175, "lb"),
  3505. name: "Back",
  3506. image: {
  3507. source: "./media/characters/xera/back.svg",
  3508. extra: 2095/1984,
  3509. bottom: 67/2166
  3510. }
  3511. },
  3512. },
  3513. [
  3514. {
  3515. name: "Small",
  3516. height: math.unit(10, "feet")
  3517. },
  3518. {
  3519. name: "Macro",
  3520. height: math.unit(500, "meters"),
  3521. default: true
  3522. },
  3523. {
  3524. name: "Macro+",
  3525. height: math.unit(10, "km")
  3526. },
  3527. {
  3528. name: "Gigamacro",
  3529. height: math.unit(25000, "km")
  3530. },
  3531. {
  3532. name: "Teramacro",
  3533. height: math.unit(3e6, "km")
  3534. }
  3535. ]
  3536. ))
  3537. characterMakers.push(() => makeCharacter(
  3538. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3539. {
  3540. front: {
  3541. height: math.unit(6, "feet"),
  3542. weight: math.unit(175, "lb"),
  3543. name: "Front",
  3544. image: {
  3545. source: "./media/characters/nebula/front.svg",
  3546. extra: 2566/2362,
  3547. bottom: 81/2644
  3548. }
  3549. }
  3550. },
  3551. [
  3552. {
  3553. name: "Small",
  3554. height: math.unit(4.5, "meters")
  3555. },
  3556. {
  3557. name: "Macro",
  3558. height: math.unit(1500, "meters"),
  3559. default: true
  3560. },
  3561. {
  3562. name: "Megamacro",
  3563. height: math.unit(150, "km")
  3564. },
  3565. {
  3566. name: "Gigamacro",
  3567. height: math.unit(27000, "km")
  3568. }
  3569. ]
  3570. ))
  3571. characterMakers.push(() => makeCharacter(
  3572. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3573. {
  3574. front: {
  3575. height: math.unit(6, "feet"),
  3576. weight: math.unit(225, "lb"),
  3577. name: "Front",
  3578. image: {
  3579. source: "./media/characters/abysgar/front.svg"
  3580. }
  3581. }
  3582. },
  3583. [
  3584. {
  3585. name: "Small",
  3586. height: math.unit(4.5, "meters")
  3587. },
  3588. {
  3589. name: "Macro",
  3590. height: math.unit(1250, "meters"),
  3591. default: true
  3592. },
  3593. {
  3594. name: "Megamacro",
  3595. height: math.unit(125, "km")
  3596. },
  3597. {
  3598. name: "Gigamacro",
  3599. height: math.unit(26000, "km")
  3600. }
  3601. ]
  3602. ))
  3603. characterMakers.push(() => makeCharacter(
  3604. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3605. {
  3606. front: {
  3607. height: math.unit(6, "feet"),
  3608. weight: math.unit(180, "lb"),
  3609. name: "Front",
  3610. image: {
  3611. source: "./media/characters/yakuz/front.svg"
  3612. }
  3613. }
  3614. },
  3615. [
  3616. {
  3617. name: "Small",
  3618. height: math.unit(5, "meters")
  3619. },
  3620. {
  3621. name: "Macro",
  3622. height: math.unit(1500, "meters"),
  3623. default: true
  3624. },
  3625. {
  3626. name: "Megamacro",
  3627. height: math.unit(200, "km")
  3628. },
  3629. {
  3630. name: "Gigamacro",
  3631. height: math.unit(100000, "km")
  3632. }
  3633. ]
  3634. ))
  3635. characterMakers.push(() => makeCharacter(
  3636. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3637. {
  3638. front: {
  3639. height: math.unit(6, "feet"),
  3640. weight: math.unit(175, "lb"),
  3641. name: "Front",
  3642. image: {
  3643. source: "./media/characters/mirova/front.svg",
  3644. extra: 3334/3071,
  3645. bottom: 42/3375.6
  3646. }
  3647. }
  3648. },
  3649. [
  3650. {
  3651. name: "Small",
  3652. height: math.unit(5, "meters")
  3653. },
  3654. {
  3655. name: "Macro",
  3656. height: math.unit(900, "meters"),
  3657. default: true
  3658. },
  3659. {
  3660. name: "Megamacro",
  3661. height: math.unit(135, "km")
  3662. },
  3663. {
  3664. name: "Gigamacro",
  3665. height: math.unit(20000, "km")
  3666. }
  3667. ]
  3668. ))
  3669. characterMakers.push(() => makeCharacter(
  3670. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3671. {
  3672. side: {
  3673. height: math.unit(28.35, "feet"),
  3674. weight: math.unit(99.75, "tons"),
  3675. name: "Side",
  3676. image: {
  3677. source: "./media/characters/asana-mech/side.svg",
  3678. extra: 923/699,
  3679. bottom: 50/975
  3680. }
  3681. },
  3682. chaingun: {
  3683. height: math.unit(7, "feet"),
  3684. weight: math.unit(2400, "lb"),
  3685. name: "Chaingun",
  3686. image: {
  3687. source: "./media/characters/asana-mech/chaingun.svg"
  3688. }
  3689. },
  3690. laser: {
  3691. height: math.unit(7.12, "feet"),
  3692. weight: math.unit(2000, "lb"),
  3693. name: "Laser",
  3694. image: {
  3695. source: "./media/characters/asana-mech/laser.svg"
  3696. }
  3697. },
  3698. },
  3699. [
  3700. {
  3701. name: "Normal",
  3702. height: math.unit(28.35, "feet"),
  3703. default: true
  3704. },
  3705. {
  3706. name: "Macro",
  3707. height: math.unit(2500, "feet")
  3708. },
  3709. {
  3710. name: "Megamacro",
  3711. height: math.unit(25, "miles")
  3712. },
  3713. {
  3714. name: "Examacro",
  3715. height: math.unit(6e8, "lightyears")
  3716. },
  3717. ]
  3718. ))
  3719. characterMakers.push(() => makeCharacter(
  3720. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3721. {
  3722. front: {
  3723. height: math.unit(5, "meters"),
  3724. weight: math.unit(1000, "kg"),
  3725. name: "Front",
  3726. image: {
  3727. source: "./media/characters/asche/front.svg",
  3728. extra: 1258/1190,
  3729. bottom: 47/1305
  3730. }
  3731. },
  3732. frontUnderwear: {
  3733. height: math.unit(5, "meters"),
  3734. weight: math.unit(1000, "kg"),
  3735. name: "Front (Underwear)",
  3736. image: {
  3737. source: "./media/characters/asche/front-underwear.svg",
  3738. extra: 1258/1190,
  3739. bottom: 47/1305
  3740. }
  3741. },
  3742. frontDressed: {
  3743. height: math.unit(5, "meters"),
  3744. weight: math.unit(1000, "kg"),
  3745. name: "Front (Dressed)",
  3746. image: {
  3747. source: "./media/characters/asche/front-dressed.svg",
  3748. extra: 1258/1190,
  3749. bottom: 47/1305
  3750. }
  3751. },
  3752. frontArmor: {
  3753. height: math.unit(5, "meters"),
  3754. weight: math.unit(1000, "kg"),
  3755. name: "Front (Armored)",
  3756. image: {
  3757. source: "./media/characters/asche/front-armored.svg",
  3758. extra: 1374 / 1308,
  3759. bottom: 23/1397
  3760. }
  3761. },
  3762. mp724: {
  3763. height: math.unit(0.96, "meters"),
  3764. weight: math.unit(38, "kg"),
  3765. name: "H&K MP724",
  3766. image: {
  3767. source: "./media/characters/asche/h&k-mp724.svg"
  3768. }
  3769. },
  3770. side: {
  3771. height: math.unit(5, "meters"),
  3772. weight: math.unit(1000, "kg"),
  3773. name: "Side",
  3774. image: {
  3775. source: "./media/characters/asche/side.svg",
  3776. extra: 1717 / 1609,
  3777. bottom: 0.005
  3778. }
  3779. },
  3780. back: {
  3781. height: math.unit(5, "meters"),
  3782. weight: math.unit(1000, "kg"),
  3783. name: "Back",
  3784. image: {
  3785. source: "./media/characters/asche/back.svg",
  3786. extra: 1570 / 1501
  3787. }
  3788. },
  3789. },
  3790. [
  3791. {
  3792. name: "DEFCON 5",
  3793. height: math.unit(5, "meters")
  3794. },
  3795. {
  3796. name: "DEFCON 4",
  3797. height: math.unit(500, "meters"),
  3798. default: true
  3799. },
  3800. {
  3801. name: "DEFCON 3",
  3802. height: math.unit(5, "km")
  3803. },
  3804. {
  3805. name: "DEFCON 2",
  3806. height: math.unit(500, "km")
  3807. },
  3808. {
  3809. name: "DEFCON 1",
  3810. height: math.unit(500000, "km")
  3811. },
  3812. {
  3813. name: "DEFCON 0",
  3814. height: math.unit(3, "gigaparsecs")
  3815. },
  3816. ]
  3817. ))
  3818. characterMakers.push(() => makeCharacter(
  3819. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3820. {
  3821. front: {
  3822. height: math.unit(2, "meters"),
  3823. weight: math.unit(76, "kg"),
  3824. name: "Front",
  3825. image: {
  3826. source: "./media/characters/gale/front.svg"
  3827. }
  3828. },
  3829. frontAlt1: {
  3830. height: math.unit(2, "meters"),
  3831. weight: math.unit(76, "kg"),
  3832. name: "Front (Alt 1)",
  3833. image: {
  3834. source: "./media/characters/gale/front-alt-1.svg"
  3835. }
  3836. },
  3837. frontAlt2: {
  3838. height: math.unit(2, "meters"),
  3839. weight: math.unit(76, "kg"),
  3840. name: "Front (Alt 2)",
  3841. image: {
  3842. source: "./media/characters/gale/front-alt-2.svg"
  3843. }
  3844. },
  3845. },
  3846. [
  3847. {
  3848. name: "Normal",
  3849. height: math.unit(7, "feet")
  3850. },
  3851. {
  3852. name: "Macro",
  3853. height: math.unit(150, "feet"),
  3854. default: true
  3855. },
  3856. {
  3857. name: "Macro+",
  3858. height: math.unit(300, "feet")
  3859. },
  3860. ]
  3861. ))
  3862. characterMakers.push(() => makeCharacter(
  3863. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3864. {
  3865. front: {
  3866. height: math.unit(2, "meters"),
  3867. weight: math.unit(76, "kg"),
  3868. name: "Front",
  3869. image: {
  3870. source: "./media/characters/draylen/front.svg"
  3871. }
  3872. }
  3873. },
  3874. [
  3875. {
  3876. name: "Macro",
  3877. height: math.unit(150, "feet"),
  3878. default: true
  3879. }
  3880. ]
  3881. ))
  3882. characterMakers.push(() => makeCharacter(
  3883. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3884. {
  3885. front: {
  3886. height: math.unit(7 + 9 / 12, "feet"),
  3887. weight: math.unit(379, "lbs"),
  3888. name: "Front",
  3889. image: {
  3890. source: "./media/characters/chez/front.svg"
  3891. }
  3892. },
  3893. side: {
  3894. height: math.unit(7 + 9 / 12, "feet"),
  3895. weight: math.unit(379, "lbs"),
  3896. name: "Side",
  3897. image: {
  3898. source: "./media/characters/chez/side.svg"
  3899. }
  3900. }
  3901. },
  3902. [
  3903. {
  3904. name: "Normal",
  3905. height: math.unit(7 + 9 / 12, "feet"),
  3906. default: true
  3907. },
  3908. {
  3909. name: "God King",
  3910. height: math.unit(9750000, "meters")
  3911. }
  3912. ]
  3913. ))
  3914. characterMakers.push(() => makeCharacter(
  3915. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3916. {
  3917. front: {
  3918. height: math.unit(6, "feet"),
  3919. weight: math.unit(275, "lbs"),
  3920. name: "Front",
  3921. image: {
  3922. source: "./media/characters/kaylum/front.svg",
  3923. bottom: 0.01,
  3924. extra: 1166 / 1031
  3925. }
  3926. },
  3927. frontWingless: {
  3928. height: math.unit(6, "feet"),
  3929. weight: math.unit(275, "lbs"),
  3930. name: "Front (Wingless)",
  3931. image: {
  3932. source: "./media/characters/kaylum/front-wingless.svg",
  3933. bottom: 0.01,
  3934. extra: 1117 / 1031
  3935. }
  3936. }
  3937. },
  3938. [
  3939. {
  3940. name: "Normal",
  3941. height: math.unit(3.05, "meters")
  3942. },
  3943. {
  3944. name: "Master",
  3945. height: math.unit(5.5, "meters")
  3946. },
  3947. {
  3948. name: "Rampage",
  3949. height: math.unit(19, "meters")
  3950. },
  3951. {
  3952. name: "Macro Lite",
  3953. height: math.unit(37, "meters")
  3954. },
  3955. {
  3956. name: "Hyper Predator",
  3957. height: math.unit(61, "meters")
  3958. },
  3959. {
  3960. name: "Macro",
  3961. height: math.unit(138, "meters"),
  3962. default: true
  3963. }
  3964. ]
  3965. ))
  3966. characterMakers.push(() => makeCharacter(
  3967. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3968. {
  3969. front: {
  3970. height: math.unit(6, "feet"),
  3971. weight: math.unit(150, "lbs"),
  3972. name: "Front",
  3973. image: {
  3974. source: "./media/characters/geta/front.svg"
  3975. }
  3976. }
  3977. },
  3978. [
  3979. {
  3980. name: "Micro",
  3981. height: math.unit(3, "inches"),
  3982. default: true
  3983. },
  3984. {
  3985. name: "Normal",
  3986. height: math.unit(5 + 5 / 12, "feet")
  3987. }
  3988. ]
  3989. ))
  3990. characterMakers.push(() => makeCharacter(
  3991. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3992. {
  3993. front: {
  3994. height: math.unit(6, "feet"),
  3995. weight: math.unit(300, "lbs"),
  3996. name: "Front",
  3997. image: {
  3998. source: "./media/characters/tyrnn/front.svg"
  3999. }
  4000. }
  4001. },
  4002. [
  4003. {
  4004. name: "Main Height",
  4005. height: math.unit(355, "feet"),
  4006. default: true
  4007. },
  4008. {
  4009. name: "Fave. Height",
  4010. height: math.unit(2400, "feet")
  4011. }
  4012. ]
  4013. ))
  4014. characterMakers.push(() => makeCharacter(
  4015. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4016. {
  4017. front: {
  4018. height: math.unit(6, "feet"),
  4019. weight: math.unit(300, "lbs"),
  4020. name: "Front",
  4021. image: {
  4022. source: "./media/characters/appledectomy/front.svg"
  4023. }
  4024. }
  4025. },
  4026. [
  4027. {
  4028. name: "Macro",
  4029. height: math.unit(2500, "feet")
  4030. },
  4031. {
  4032. name: "Megamacro",
  4033. height: math.unit(50, "miles"),
  4034. default: true
  4035. },
  4036. {
  4037. name: "Gigamacro",
  4038. height: math.unit(5000, "miles")
  4039. },
  4040. {
  4041. name: "Teramacro",
  4042. height: math.unit(250000, "miles")
  4043. },
  4044. ]
  4045. ))
  4046. characterMakers.push(() => makeCharacter(
  4047. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4048. {
  4049. front: {
  4050. height: math.unit(6, "feet"),
  4051. weight: math.unit(200, "lbs"),
  4052. name: "Front",
  4053. image: {
  4054. source: "./media/characters/vulpes/front.svg",
  4055. extra: 573 / 543,
  4056. bottom: 0.033
  4057. }
  4058. },
  4059. side: {
  4060. height: math.unit(6, "feet"),
  4061. weight: math.unit(200, "lbs"),
  4062. name: "Side",
  4063. image: {
  4064. source: "./media/characters/vulpes/side.svg",
  4065. extra: 573 / 543,
  4066. bottom: 0.01
  4067. }
  4068. },
  4069. back: {
  4070. height: math.unit(6, "feet"),
  4071. weight: math.unit(200, "lbs"),
  4072. name: "Back",
  4073. image: {
  4074. source: "./media/characters/vulpes/back.svg",
  4075. extra: 573 / 543,
  4076. }
  4077. },
  4078. feet: {
  4079. height: math.unit(1.276, "feet"),
  4080. name: "Feet",
  4081. image: {
  4082. source: "./media/characters/vulpes/feet.svg"
  4083. }
  4084. },
  4085. maw: {
  4086. height: math.unit(1.18, "feet"),
  4087. name: "Maw",
  4088. image: {
  4089. source: "./media/characters/vulpes/maw.svg"
  4090. }
  4091. },
  4092. },
  4093. [
  4094. {
  4095. name: "Micro",
  4096. height: math.unit(2, "inches")
  4097. },
  4098. {
  4099. name: "Normal",
  4100. height: math.unit(6.3, "feet")
  4101. },
  4102. {
  4103. name: "Macro",
  4104. height: math.unit(850, "feet")
  4105. },
  4106. {
  4107. name: "Megamacro",
  4108. height: math.unit(7500, "feet"),
  4109. default: true
  4110. },
  4111. {
  4112. name: "Gigamacro",
  4113. height: math.unit(570000, "miles")
  4114. }
  4115. ]
  4116. ))
  4117. characterMakers.push(() => makeCharacter(
  4118. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4119. {
  4120. front: {
  4121. height: math.unit(6, "feet"),
  4122. weight: math.unit(210, "lbs"),
  4123. name: "Front",
  4124. image: {
  4125. source: "./media/characters/rain-fallen/front.svg"
  4126. }
  4127. },
  4128. side: {
  4129. height: math.unit(6, "feet"),
  4130. weight: math.unit(210, "lbs"),
  4131. name: "Side",
  4132. image: {
  4133. source: "./media/characters/rain-fallen/side.svg"
  4134. }
  4135. },
  4136. back: {
  4137. height: math.unit(6, "feet"),
  4138. weight: math.unit(210, "lbs"),
  4139. name: "Back",
  4140. image: {
  4141. source: "./media/characters/rain-fallen/back.svg"
  4142. }
  4143. },
  4144. feral: {
  4145. height: math.unit(9, "feet"),
  4146. weight: math.unit(700, "lbs"),
  4147. name: "Feral",
  4148. image: {
  4149. source: "./media/characters/rain-fallen/feral.svg"
  4150. }
  4151. },
  4152. },
  4153. [
  4154. {
  4155. name: "Normal",
  4156. height: math.unit(5, "meter")
  4157. },
  4158. {
  4159. name: "Macro",
  4160. height: math.unit(150, "meter"),
  4161. default: true
  4162. },
  4163. {
  4164. name: "Megamacro",
  4165. height: math.unit(278e6, "meter")
  4166. },
  4167. {
  4168. name: "Gigamacro",
  4169. height: math.unit(2e9, "meter")
  4170. },
  4171. {
  4172. name: "Teramacro",
  4173. height: math.unit(8e12, "meter")
  4174. },
  4175. {
  4176. name: "Devourer",
  4177. height: math.unit(14, "zettameters")
  4178. },
  4179. {
  4180. name: "Scarlet King",
  4181. height: math.unit(18, "yottameters")
  4182. },
  4183. {
  4184. name: "Void",
  4185. height: math.unit(6.66e66, "yottameters")
  4186. }
  4187. ]
  4188. ))
  4189. characterMakers.push(() => makeCharacter(
  4190. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4191. {
  4192. standing: {
  4193. height: math.unit(6, "feet"),
  4194. weight: math.unit(180, "lbs"),
  4195. name: "Standing",
  4196. image: {
  4197. source: "./media/characters/zaakira/standing.svg"
  4198. }
  4199. },
  4200. laying: {
  4201. height: math.unit(3, "feet"),
  4202. weight: math.unit(180, "lbs"),
  4203. name: "Laying",
  4204. image: {
  4205. source: "./media/characters/zaakira/laying.svg"
  4206. }
  4207. },
  4208. },
  4209. [
  4210. {
  4211. name: "Normal",
  4212. height: math.unit(12, "feet")
  4213. },
  4214. {
  4215. name: "Macro",
  4216. height: math.unit(279, "feet"),
  4217. default: true
  4218. }
  4219. ]
  4220. ))
  4221. characterMakers.push(() => makeCharacter(
  4222. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4223. {
  4224. femSfw: {
  4225. height: math.unit(8, "feet"),
  4226. weight: math.unit(350, "lb"),
  4227. name: "Fem",
  4228. image: {
  4229. source: "./media/characters/sigvald/fem-sfw.svg",
  4230. extra: 182/164,
  4231. bottom: 8.7/190.5
  4232. }
  4233. },
  4234. femNsfw: {
  4235. height: math.unit(8, "feet"),
  4236. weight: math.unit(350, "lb"),
  4237. name: "Fem (NSFW)",
  4238. image: {
  4239. source: "./media/characters/sigvald/fem-nsfw.svg",
  4240. extra: 182/164,
  4241. bottom: 8.7/190.5
  4242. }
  4243. },
  4244. maleNsfw: {
  4245. height: math.unit(8, "feet"),
  4246. weight: math.unit(350, "lb"),
  4247. name: "Male (NSFW)",
  4248. image: {
  4249. source: "./media/characters/sigvald/male-nsfw.svg",
  4250. extra: 182/164,
  4251. bottom: 8.7/190.5
  4252. }
  4253. },
  4254. hermNsfw: {
  4255. height: math.unit(8, "feet"),
  4256. weight: math.unit(350, "lb"),
  4257. name: "Herm (NSFW)",
  4258. image: {
  4259. source: "./media/characters/sigvald/herm-nsfw.svg",
  4260. extra: 182/164,
  4261. bottom: 8.7/190.5
  4262. }
  4263. },
  4264. dick: {
  4265. height: math.unit(2.36, "feet"),
  4266. name: "Dick",
  4267. image: {
  4268. source: "./media/characters/sigvald/dick.svg"
  4269. }
  4270. },
  4271. eye: {
  4272. height: math.unit(0.31, "feet"),
  4273. name: "Eye",
  4274. image: {
  4275. source: "./media/characters/sigvald/eye.svg"
  4276. }
  4277. },
  4278. mouth: {
  4279. height: math.unit(0.92, "feet"),
  4280. name: "Mouth",
  4281. image: {
  4282. source: "./media/characters/sigvald/mouth.svg"
  4283. }
  4284. },
  4285. paws: {
  4286. height: math.unit(2.2, "feet"),
  4287. name: "Paws",
  4288. image: {
  4289. source: "./media/characters/sigvald/paws.svg"
  4290. }
  4291. }
  4292. },
  4293. [
  4294. {
  4295. name: "Normal",
  4296. height: math.unit(8, "feet")
  4297. },
  4298. {
  4299. name: "Large",
  4300. height: math.unit(12, "feet")
  4301. },
  4302. {
  4303. name: "Larger",
  4304. height: math.unit(20, "feet")
  4305. },
  4306. {
  4307. name: "Macro",
  4308. height: math.unit(150, "feet")
  4309. },
  4310. {
  4311. name: "Macro+",
  4312. height: math.unit(200, "feet"),
  4313. default: true
  4314. },
  4315. ]
  4316. ))
  4317. characterMakers.push(() => makeCharacter(
  4318. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4319. {
  4320. side: {
  4321. height: math.unit(12, "feet"),
  4322. weight: math.unit(2000, "kg"),
  4323. name: "Side",
  4324. image: {
  4325. source: "./media/characters/scott/side.svg",
  4326. extra: 754 / 724,
  4327. bottom: 0.069
  4328. }
  4329. },
  4330. upright: {
  4331. height: math.unit(12, "feet"),
  4332. weight: math.unit(2000, "kg"),
  4333. name: "Upright",
  4334. image: {
  4335. source: "./media/characters/scott/upright.svg",
  4336. extra: 3881 / 3722,
  4337. bottom: 0.05
  4338. }
  4339. },
  4340. },
  4341. [
  4342. {
  4343. name: "Normal",
  4344. height: math.unit(12, "feet"),
  4345. default: true
  4346. },
  4347. ]
  4348. ))
  4349. characterMakers.push(() => makeCharacter(
  4350. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4351. {
  4352. side: {
  4353. height: math.unit(8, "meters"),
  4354. weight: math.unit(84755, "lbs"),
  4355. name: "Side",
  4356. image: {
  4357. source: "./media/characters/tobias/side.svg",
  4358. extra: 1474 / 1096,
  4359. bottom: 38.9 / 1513.1235
  4360. }
  4361. },
  4362. },
  4363. [
  4364. {
  4365. name: "Normal",
  4366. height: math.unit(8, "meters"),
  4367. default: true
  4368. },
  4369. ]
  4370. ))
  4371. characterMakers.push(() => makeCharacter(
  4372. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4373. {
  4374. front: {
  4375. height: math.unit(5.5, "feet"),
  4376. weight: math.unit(400, "lbs"),
  4377. name: "Front",
  4378. image: {
  4379. source: "./media/characters/kieran/front.svg",
  4380. extra: 2694 / 2364,
  4381. bottom: 217 / 2908
  4382. }
  4383. },
  4384. side: {
  4385. height: math.unit(5.5, "feet"),
  4386. weight: math.unit(400, "lbs"),
  4387. name: "Side",
  4388. image: {
  4389. source: "./media/characters/kieran/side.svg",
  4390. extra: 875 / 777,
  4391. bottom: 84.6 / 959
  4392. }
  4393. },
  4394. },
  4395. [
  4396. {
  4397. name: "Normal",
  4398. height: math.unit(5.5, "feet"),
  4399. default: true
  4400. },
  4401. ]
  4402. ))
  4403. characterMakers.push(() => makeCharacter(
  4404. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4405. {
  4406. side: {
  4407. height: math.unit(2, "meters"),
  4408. weight: math.unit(70, "kg"),
  4409. name: "Side",
  4410. image: {
  4411. source: "./media/characters/sanya/side.svg",
  4412. bottom: 0.02,
  4413. extra: 1.02
  4414. }
  4415. },
  4416. },
  4417. [
  4418. {
  4419. name: "Small",
  4420. height: math.unit(2, "meters")
  4421. },
  4422. {
  4423. name: "Normal",
  4424. height: math.unit(3, "meters")
  4425. },
  4426. {
  4427. name: "Macro",
  4428. height: math.unit(16, "meters"),
  4429. default: true
  4430. },
  4431. ]
  4432. ))
  4433. characterMakers.push(() => makeCharacter(
  4434. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4435. {
  4436. front: {
  4437. height: math.unit(2, "meters"),
  4438. weight: math.unit(120, "kg"),
  4439. name: "Front",
  4440. image: {
  4441. source: "./media/characters/miranda/front.svg",
  4442. extra: 195/185,
  4443. bottom: 10.9/206.5
  4444. }
  4445. },
  4446. back: {
  4447. height: math.unit(2, "meters"),
  4448. weight: math.unit(120, "kg"),
  4449. name: "Back",
  4450. image: {
  4451. source: "./media/characters/miranda/back.svg",
  4452. extra: 201/193,
  4453. bottom: 2.3/203.7
  4454. }
  4455. },
  4456. },
  4457. [
  4458. {
  4459. name: "Normal",
  4460. height: math.unit(10, "feet"),
  4461. default: true
  4462. }
  4463. ]
  4464. ))
  4465. characterMakers.push(() => makeCharacter(
  4466. { name: "James", species: ["deer"], tags: ["anthro"] },
  4467. {
  4468. side: {
  4469. height: math.unit(2, "meters"),
  4470. weight: math.unit(100, "kg"),
  4471. name: "Front",
  4472. image: {
  4473. source: "./media/characters/james/front.svg",
  4474. extra: 10 / 8.5
  4475. }
  4476. },
  4477. },
  4478. [
  4479. {
  4480. name: "Normal",
  4481. height: math.unit(8.5, "feet"),
  4482. default: true
  4483. }
  4484. ]
  4485. ))
  4486. characterMakers.push(() => makeCharacter(
  4487. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4488. {
  4489. side: {
  4490. height: math.unit(9.5, "feet"),
  4491. weight: math.unit(2500, "lbs"),
  4492. name: "Side",
  4493. image: {
  4494. source: "./media/characters/heather/side.svg"
  4495. }
  4496. },
  4497. },
  4498. [
  4499. {
  4500. name: "Normal",
  4501. height: math.unit(9.5, "feet"),
  4502. default: true
  4503. }
  4504. ]
  4505. ))
  4506. characterMakers.push(() => makeCharacter(
  4507. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4508. {
  4509. side: {
  4510. height: math.unit(6.5, "feet"),
  4511. weight: math.unit(400, "lbs"),
  4512. name: "Side",
  4513. image: {
  4514. source: "./media/characters/lukas/side.svg",
  4515. extra: 7.25 / 6.5
  4516. }
  4517. },
  4518. },
  4519. [
  4520. {
  4521. name: "Normal",
  4522. height: math.unit(6.5, "feet"),
  4523. default: true
  4524. }
  4525. ]
  4526. ))
  4527. characterMakers.push(() => makeCharacter(
  4528. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4529. {
  4530. side: {
  4531. height: math.unit(5, "feet"),
  4532. weight: math.unit(3000, "lbs"),
  4533. name: "Side",
  4534. image: {
  4535. source: "./media/characters/louise/side.svg"
  4536. }
  4537. },
  4538. },
  4539. [
  4540. {
  4541. name: "Normal",
  4542. height: math.unit(5, "feet"),
  4543. default: true
  4544. }
  4545. ]
  4546. ))
  4547. characterMakers.push(() => makeCharacter(
  4548. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4549. {
  4550. side: {
  4551. height: math.unit(6, "feet"),
  4552. weight: math.unit(150, "lbs"),
  4553. name: "Side",
  4554. image: {
  4555. source: "./media/characters/ramona/side.svg"
  4556. }
  4557. },
  4558. },
  4559. [
  4560. {
  4561. name: "Normal",
  4562. height: math.unit(5.3, "meters"),
  4563. default: true
  4564. },
  4565. {
  4566. name: "Macro",
  4567. height: math.unit(20, "stories")
  4568. },
  4569. {
  4570. name: "Macro+",
  4571. height: math.unit(50, "stories")
  4572. },
  4573. ]
  4574. ))
  4575. characterMakers.push(() => makeCharacter(
  4576. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4577. {
  4578. standing: {
  4579. height: math.unit(5.75, "feet"),
  4580. weight: math.unit(160, "lbs"),
  4581. name: "Standing",
  4582. image: {
  4583. source: "./media/characters/deerpuff/standing.svg",
  4584. extra: 682 / 624
  4585. }
  4586. },
  4587. sitting: {
  4588. height: math.unit(5.75 / 1.79, "feet"),
  4589. weight: math.unit(160, "lbs"),
  4590. name: "Sitting",
  4591. image: {
  4592. source: "./media/characters/deerpuff/sitting.svg",
  4593. bottom: 44 / 400,
  4594. extra: 1
  4595. }
  4596. },
  4597. taurLaying: {
  4598. height: math.unit(6, "feet"),
  4599. weight: math.unit(400, "lbs"),
  4600. name: "Taur (Laying)",
  4601. image: {
  4602. source: "./media/characters/deerpuff/taur-laying.svg"
  4603. }
  4604. },
  4605. },
  4606. [
  4607. {
  4608. name: "Puffball",
  4609. height: math.unit(6, "inches")
  4610. },
  4611. {
  4612. name: "Normalpuff",
  4613. height: math.unit(5.75, "feet")
  4614. },
  4615. {
  4616. name: "Macropuff",
  4617. height: math.unit(1500, "feet"),
  4618. default: true
  4619. },
  4620. {
  4621. name: "Megapuff",
  4622. height: math.unit(500, "miles")
  4623. },
  4624. {
  4625. name: "Gigapuff",
  4626. height: math.unit(250000, "miles")
  4627. },
  4628. {
  4629. name: "Omegapuff",
  4630. height: math.unit(1000, "lightyears")
  4631. },
  4632. ]
  4633. ))
  4634. characterMakers.push(() => makeCharacter(
  4635. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4636. {
  4637. stomping: {
  4638. height: math.unit(6, "feet"),
  4639. weight: math.unit(170, "lbs"),
  4640. name: "Stomping",
  4641. image: {
  4642. source: "./media/characters/vivian/stomping.svg"
  4643. }
  4644. },
  4645. sitting: {
  4646. height: math.unit(6 / 1.75, "feet"),
  4647. weight: math.unit(170, "lbs"),
  4648. name: "Sitting",
  4649. image: {
  4650. source: "./media/characters/vivian/sitting.svg",
  4651. bottom: 1 / 6.4,
  4652. extra: 1,
  4653. }
  4654. },
  4655. },
  4656. [
  4657. {
  4658. name: "Normal",
  4659. height: math.unit(7, "feet"),
  4660. default: true
  4661. },
  4662. {
  4663. name: "Macro",
  4664. height: math.unit(10, "stories")
  4665. },
  4666. {
  4667. name: "Macro+",
  4668. height: math.unit(30, "stories")
  4669. },
  4670. {
  4671. name: "Megamacro",
  4672. height: math.unit(10, "miles")
  4673. },
  4674. {
  4675. name: "Megamacro+",
  4676. height: math.unit(2750000, "meters")
  4677. },
  4678. ]
  4679. ))
  4680. characterMakers.push(() => makeCharacter(
  4681. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4682. {
  4683. front: {
  4684. height: math.unit(6, "feet"),
  4685. weight: math.unit(160, "lbs"),
  4686. name: "Front",
  4687. image: {
  4688. source: "./media/characters/prince/front.svg",
  4689. extra: 3400 / 3000
  4690. }
  4691. },
  4692. jumping: {
  4693. height: math.unit(6, "feet"),
  4694. weight: math.unit(160, "lbs"),
  4695. name: "Jumping",
  4696. image: {
  4697. source: "./media/characters/prince/jump.svg",
  4698. extra: 2555 / 2134
  4699. }
  4700. },
  4701. },
  4702. [
  4703. {
  4704. name: "Normal",
  4705. height: math.unit(7.75, "feet"),
  4706. default: true
  4707. },
  4708. {
  4709. name: "Not cute",
  4710. height: math.unit(17, "feet")
  4711. },
  4712. {
  4713. name: "I said NOT",
  4714. height: math.unit(91, "feet")
  4715. },
  4716. {
  4717. name: "Please stop",
  4718. height: math.unit(560, "feet")
  4719. },
  4720. {
  4721. name: "What have you done",
  4722. height: math.unit(2200, "feet")
  4723. },
  4724. {
  4725. name: "Deer God",
  4726. height: math.unit(3.6, "miles")
  4727. },
  4728. ]
  4729. ))
  4730. characterMakers.push(() => makeCharacter(
  4731. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4732. {
  4733. standing: {
  4734. height: math.unit(6, "feet"),
  4735. weight: math.unit(300, "lbs"),
  4736. name: "Standing",
  4737. image: {
  4738. source: "./media/characters/psymon/standing.svg",
  4739. extra: 1888 / 1810,
  4740. bottom: 0.05
  4741. }
  4742. },
  4743. slithering: {
  4744. height: math.unit(6, "feet"),
  4745. weight: math.unit(300, "lbs"),
  4746. name: "Slithering",
  4747. image: {
  4748. source: "./media/characters/psymon/slithering.svg",
  4749. extra: 1330 / 1224
  4750. }
  4751. },
  4752. slitheringAlt: {
  4753. height: math.unit(6, "feet"),
  4754. weight: math.unit(300, "lbs"),
  4755. name: "Slithering (Alt)",
  4756. image: {
  4757. source: "./media/characters/psymon/slithering-alt.svg",
  4758. extra: 1330 / 1224
  4759. }
  4760. },
  4761. },
  4762. [
  4763. {
  4764. name: "Normal",
  4765. height: math.unit(11.25, "feet"),
  4766. default: true
  4767. },
  4768. {
  4769. name: "Large",
  4770. height: math.unit(27, "feet")
  4771. },
  4772. {
  4773. name: "Giant",
  4774. height: math.unit(87, "feet")
  4775. },
  4776. {
  4777. name: "Macro",
  4778. height: math.unit(365, "feet")
  4779. },
  4780. {
  4781. name: "Megamacro",
  4782. height: math.unit(3, "miles")
  4783. },
  4784. {
  4785. name: "World Serpent",
  4786. height: math.unit(8000, "miles")
  4787. },
  4788. ]
  4789. ))
  4790. characterMakers.push(() => makeCharacter(
  4791. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4792. {
  4793. front: {
  4794. height: math.unit(6, "feet"),
  4795. weight: math.unit(180, "lbs"),
  4796. name: "Front",
  4797. image: {
  4798. source: "./media/characters/daimos/front.svg",
  4799. extra: 4160 / 3897,
  4800. bottom: 0.021
  4801. }
  4802. }
  4803. },
  4804. [
  4805. {
  4806. name: "Normal",
  4807. height: math.unit(8, "feet"),
  4808. default: true
  4809. },
  4810. {
  4811. name: "Big Dog",
  4812. height: math.unit(22, "feet")
  4813. },
  4814. {
  4815. name: "Macro",
  4816. height: math.unit(127, "feet")
  4817. },
  4818. {
  4819. name: "Megamacro",
  4820. height: math.unit(3600, "feet")
  4821. },
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4826. {
  4827. side: {
  4828. height: math.unit(6, "feet"),
  4829. weight: math.unit(180, "lbs"),
  4830. name: "Side",
  4831. image: {
  4832. source: "./media/characters/blake/side.svg",
  4833. extra: 1212 / 1120,
  4834. bottom: 0.05
  4835. }
  4836. },
  4837. crouched: {
  4838. height: math.unit(6 * 0.57, "feet"),
  4839. weight: math.unit(180, "lbs"),
  4840. name: "Crouched",
  4841. image: {
  4842. source: "./media/characters/blake/crouched.svg",
  4843. extra: 840 / 587,
  4844. bottom: 0.04
  4845. }
  4846. },
  4847. bent: {
  4848. height: math.unit(6 * 0.75, "feet"),
  4849. weight: math.unit(180, "lbs"),
  4850. name: "Bent",
  4851. image: {
  4852. source: "./media/characters/blake/bent.svg",
  4853. extra: 592 / 544,
  4854. bottom: 0.035
  4855. }
  4856. },
  4857. },
  4858. [
  4859. {
  4860. name: "Normal",
  4861. height: math.unit(8 + 1 / 6, "feet"),
  4862. default: true
  4863. },
  4864. {
  4865. name: "Big Backside",
  4866. height: math.unit(37, "feet")
  4867. },
  4868. {
  4869. name: "Subway Shredder",
  4870. height: math.unit(72, "feet")
  4871. },
  4872. {
  4873. name: "City Carver",
  4874. height: math.unit(1675, "feet")
  4875. },
  4876. {
  4877. name: "Tectonic Tweaker",
  4878. height: math.unit(2300, "miles")
  4879. },
  4880. ]
  4881. ))
  4882. characterMakers.push(() => makeCharacter(
  4883. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4884. {
  4885. front: {
  4886. height: math.unit(6, "feet"),
  4887. weight: math.unit(180, "lbs"),
  4888. name: "Front",
  4889. image: {
  4890. source: "./media/characters/guisetto/front.svg",
  4891. extra: 856 / 817,
  4892. bottom: 0.06
  4893. }
  4894. },
  4895. airborne: {
  4896. height: math.unit(6, "feet"),
  4897. weight: math.unit(180, "lbs"),
  4898. name: "Airborne",
  4899. image: {
  4900. source: "./media/characters/guisetto/airborne.svg",
  4901. extra: 584 / 525
  4902. }
  4903. },
  4904. },
  4905. [
  4906. {
  4907. name: "Normal",
  4908. height: math.unit(10 + 11 / 12, "feet"),
  4909. default: true
  4910. },
  4911. {
  4912. name: "Large",
  4913. height: math.unit(35, "feet")
  4914. },
  4915. {
  4916. name: "Macro",
  4917. height: math.unit(475, "feet")
  4918. },
  4919. ]
  4920. ))
  4921. characterMakers.push(() => makeCharacter(
  4922. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4923. {
  4924. front: {
  4925. height: math.unit(6, "feet"),
  4926. weight: math.unit(180, "lbs"),
  4927. name: "Front",
  4928. image: {
  4929. source: "./media/characters/luxor/front.svg",
  4930. extra: 2940 / 2152
  4931. }
  4932. },
  4933. back: {
  4934. height: math.unit(6, "feet"),
  4935. weight: math.unit(180, "lbs"),
  4936. name: "Back",
  4937. image: {
  4938. source: "./media/characters/luxor/back.svg",
  4939. extra: 1083 / 960
  4940. }
  4941. },
  4942. },
  4943. [
  4944. {
  4945. name: "Normal",
  4946. height: math.unit(5 + 5 / 6, "feet"),
  4947. default: true
  4948. },
  4949. {
  4950. name: "Lamp",
  4951. height: math.unit(50, "feet")
  4952. },
  4953. {
  4954. name: "Lämp",
  4955. height: math.unit(300, "feet")
  4956. },
  4957. {
  4958. name: "The sun is a lamp",
  4959. height: math.unit(250000, "miles")
  4960. },
  4961. ]
  4962. ))
  4963. characterMakers.push(() => makeCharacter(
  4964. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4965. {
  4966. front: {
  4967. height: math.unit(6, "feet"),
  4968. weight: math.unit(50, "lbs"),
  4969. name: "Front",
  4970. image: {
  4971. source: "./media/characters/huoyan/front.svg"
  4972. }
  4973. },
  4974. side: {
  4975. height: math.unit(6, "feet"),
  4976. weight: math.unit(180, "lbs"),
  4977. name: "Side",
  4978. image: {
  4979. source: "./media/characters/huoyan/side.svg"
  4980. }
  4981. },
  4982. },
  4983. [
  4984. {
  4985. name: "Chef",
  4986. height: math.unit(9, "feet")
  4987. },
  4988. {
  4989. name: "Normal",
  4990. height: math.unit(65, "feet"),
  4991. default: true
  4992. },
  4993. {
  4994. name: "Macro",
  4995. height: math.unit(780, "feet")
  4996. },
  4997. {
  4998. name: "Flaming Mountain",
  4999. height: math.unit(4.8, "miles")
  5000. },
  5001. {
  5002. name: "Celestial",
  5003. height: math.unit(765000, "miles")
  5004. },
  5005. ]
  5006. ))
  5007. characterMakers.push(() => makeCharacter(
  5008. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5009. {
  5010. front: {
  5011. height: math.unit(5 + 3 / 4, "feet"),
  5012. weight: math.unit(120, "lbs"),
  5013. name: "Front",
  5014. image: {
  5015. source: "./media/characters/tails/front.svg"
  5016. }
  5017. }
  5018. },
  5019. [
  5020. {
  5021. name: "Normal",
  5022. height: math.unit(5 + 3 / 4, "feet"),
  5023. default: true
  5024. }
  5025. ]
  5026. ))
  5027. characterMakers.push(() => makeCharacter(
  5028. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5029. {
  5030. front: {
  5031. height: math.unit(4, "feet"),
  5032. weight: math.unit(50, "lbs"),
  5033. name: "Front",
  5034. image: {
  5035. source: "./media/characters/rainy/front.svg"
  5036. }
  5037. }
  5038. },
  5039. [
  5040. {
  5041. name: "Macro",
  5042. height: math.unit(800, "feet"),
  5043. default: true
  5044. }
  5045. ]
  5046. ))
  5047. characterMakers.push(() => makeCharacter(
  5048. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5049. {
  5050. front: {
  5051. height: math.unit(6, "feet"),
  5052. weight: math.unit(150, "lbs"),
  5053. name: "Front",
  5054. image: {
  5055. source: "./media/characters/rainier/front.svg"
  5056. }
  5057. }
  5058. },
  5059. [
  5060. {
  5061. name: "Micro",
  5062. height: math.unit(2, "mm"),
  5063. default: true
  5064. }
  5065. ]
  5066. ))
  5067. characterMakers.push(() => makeCharacter(
  5068. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5069. {
  5070. front: {
  5071. height: math.unit(6, "feet"),
  5072. weight: math.unit(180, "lbs"),
  5073. name: "Front",
  5074. image: {
  5075. source: "./media/characters/andy/front.svg"
  5076. }
  5077. }
  5078. },
  5079. [
  5080. {
  5081. name: "Normal",
  5082. height: math.unit(8, "feet"),
  5083. default: true
  5084. },
  5085. {
  5086. name: "Macro",
  5087. height: math.unit(1000, "feet")
  5088. },
  5089. {
  5090. name: "Megamacro",
  5091. height: math.unit(5, "miles")
  5092. },
  5093. {
  5094. name: "Gigamacro",
  5095. height: math.unit(5000, "miles")
  5096. },
  5097. ]
  5098. ))
  5099. characterMakers.push(() => makeCharacter(
  5100. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5101. {
  5102. front: {
  5103. height: math.unit(6, "feet"),
  5104. weight: math.unit(210, "lbs"),
  5105. name: "Front",
  5106. image: {
  5107. source: "./media/characters/cimmaron/front-sfw.svg",
  5108. extra: 701 / 676,
  5109. bottom: 0.046
  5110. }
  5111. },
  5112. back: {
  5113. height: math.unit(6, "feet"),
  5114. weight: math.unit(210, "lbs"),
  5115. name: "Back",
  5116. image: {
  5117. source: "./media/characters/cimmaron/back-sfw.svg",
  5118. extra: 701 / 676,
  5119. bottom: 0.046
  5120. }
  5121. },
  5122. frontNsfw: {
  5123. height: math.unit(6, "feet"),
  5124. weight: math.unit(210, "lbs"),
  5125. name: "Front (NSFW)",
  5126. image: {
  5127. source: "./media/characters/cimmaron/front-nsfw.svg",
  5128. extra: 701 / 676,
  5129. bottom: 0.046
  5130. }
  5131. },
  5132. backNsfw: {
  5133. height: math.unit(6, "feet"),
  5134. weight: math.unit(210, "lbs"),
  5135. name: "Back (NSFW)",
  5136. image: {
  5137. source: "./media/characters/cimmaron/back-nsfw.svg",
  5138. extra: 701 / 676,
  5139. bottom: 0.046
  5140. }
  5141. },
  5142. dick: {
  5143. height: math.unit(1.714, "feet"),
  5144. name: "Dick",
  5145. image: {
  5146. source: "./media/characters/cimmaron/dick.svg"
  5147. }
  5148. },
  5149. },
  5150. [
  5151. {
  5152. name: "Normal",
  5153. height: math.unit(6, "feet"),
  5154. default: true
  5155. },
  5156. {
  5157. name: "Macro Mayor",
  5158. height: math.unit(350, "meters")
  5159. },
  5160. ]
  5161. ))
  5162. characterMakers.push(() => makeCharacter(
  5163. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5164. {
  5165. front: {
  5166. height: math.unit(6, "feet"),
  5167. weight: math.unit(200, "lbs"),
  5168. name: "Front",
  5169. image: {
  5170. source: "./media/characters/akari/front.svg",
  5171. extra: 962 / 901,
  5172. bottom: 0.04
  5173. }
  5174. }
  5175. },
  5176. [
  5177. {
  5178. name: "Micro",
  5179. height: math.unit(5, "inches"),
  5180. default: true
  5181. },
  5182. {
  5183. name: "Normal",
  5184. height: math.unit(7, "feet")
  5185. },
  5186. ]
  5187. ))
  5188. characterMakers.push(() => makeCharacter(
  5189. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5190. {
  5191. front: {
  5192. height: math.unit(6, "feet"),
  5193. weight: math.unit(140, "lbs"),
  5194. name: "Front",
  5195. image: {
  5196. source: "./media/characters/cynosura/front.svg",
  5197. extra: 896 / 847
  5198. }
  5199. },
  5200. back: {
  5201. height: math.unit(6, "feet"),
  5202. weight: math.unit(140, "lbs"),
  5203. name: "Back",
  5204. image: {
  5205. source: "./media/characters/cynosura/back.svg",
  5206. extra: 1365 / 1250
  5207. }
  5208. },
  5209. },
  5210. [
  5211. {
  5212. name: "Micro",
  5213. height: math.unit(4, "inches")
  5214. },
  5215. {
  5216. name: "Normal",
  5217. height: math.unit(5.75, "feet"),
  5218. default: true
  5219. },
  5220. {
  5221. name: "Tall",
  5222. height: math.unit(10, "feet")
  5223. },
  5224. {
  5225. name: "Big",
  5226. height: math.unit(20, "feet")
  5227. },
  5228. {
  5229. name: "Macro",
  5230. height: math.unit(50, "feet")
  5231. },
  5232. ]
  5233. ))
  5234. characterMakers.push(() => makeCharacter(
  5235. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5236. {
  5237. front: {
  5238. height: math.unit(6, "feet"),
  5239. weight: math.unit(170, "lbs"),
  5240. name: "Front",
  5241. image: {
  5242. source: "./media/characters/gin/front.svg",
  5243. extra: 1.053,
  5244. bottom: 0.025
  5245. }
  5246. },
  5247. foot: {
  5248. height: math.unit(6 / 4.25, "feet"),
  5249. name: "Foot",
  5250. image: {
  5251. source: "./media/characters/gin/foot.svg"
  5252. }
  5253. },
  5254. sole: {
  5255. height: math.unit(6 / 4.40, "feet"),
  5256. name: "Sole",
  5257. image: {
  5258. source: "./media/characters/gin/sole.svg"
  5259. }
  5260. },
  5261. },
  5262. [
  5263. {
  5264. name: "Normal",
  5265. height: math.unit(13 + 2 / 12, "feet")
  5266. },
  5267. {
  5268. name: "Macro",
  5269. height: math.unit(1500, "feet")
  5270. },
  5271. {
  5272. name: "Megamacro",
  5273. height: math.unit(200, "miles"),
  5274. default: true
  5275. },
  5276. {
  5277. name: "Gigamacro",
  5278. height: math.unit(500, "megameters")
  5279. },
  5280. {
  5281. name: "Teramacro",
  5282. height: math.unit(15, "lightyears")
  5283. }
  5284. ]
  5285. ))
  5286. characterMakers.push(() => makeCharacter(
  5287. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5288. {
  5289. front: {
  5290. height: math.unit(6 + 1 / 6, "feet"),
  5291. weight: math.unit(178, "lbs"),
  5292. name: "Front",
  5293. image: {
  5294. source: "./media/characters/guy/front.svg"
  5295. }
  5296. }
  5297. },
  5298. [
  5299. {
  5300. name: "Normal",
  5301. height: math.unit(6 + 1 / 6, "feet"),
  5302. default: true
  5303. },
  5304. {
  5305. name: "Large",
  5306. height: math.unit(25 + 7 / 12, "feet")
  5307. },
  5308. {
  5309. name: "Macro",
  5310. height: math.unit(60 + 9 / 12, "feet")
  5311. },
  5312. {
  5313. name: "Macro+",
  5314. height: math.unit(246, "feet")
  5315. },
  5316. {
  5317. name: "Macro++",
  5318. height: math.unit(878, "feet")
  5319. }
  5320. ]
  5321. ))
  5322. characterMakers.push(() => makeCharacter(
  5323. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5324. {
  5325. front: {
  5326. height: math.unit(9, "feet"),
  5327. weight: math.unit(800, "lbs"),
  5328. name: "Front",
  5329. image: {
  5330. source: "./media/characters/tiberius/front.svg",
  5331. extra: 2295 / 2071
  5332. }
  5333. },
  5334. back: {
  5335. height: math.unit(9, "feet"),
  5336. weight: math.unit(800, "lbs"),
  5337. name: "Back",
  5338. image: {
  5339. source: "./media/characters/tiberius/back.svg",
  5340. extra: 2373 / 2160
  5341. }
  5342. },
  5343. },
  5344. [
  5345. {
  5346. name: "Normal",
  5347. height: math.unit(9, "feet"),
  5348. default: true
  5349. }
  5350. ]
  5351. ))
  5352. characterMakers.push(() => makeCharacter(
  5353. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5354. {
  5355. front: {
  5356. height: math.unit(6, "feet"),
  5357. weight: math.unit(600, "lbs"),
  5358. name: "Front",
  5359. image: {
  5360. source: "./media/characters/surgo/front.svg",
  5361. extra: 3591 / 2227
  5362. }
  5363. },
  5364. back: {
  5365. height: math.unit(6, "feet"),
  5366. weight: math.unit(600, "lbs"),
  5367. name: "Back",
  5368. image: {
  5369. source: "./media/characters/surgo/back.svg",
  5370. extra: 3557 / 2228
  5371. }
  5372. },
  5373. laying: {
  5374. height: math.unit(6 * 0.85, "feet"),
  5375. weight: math.unit(600, "lbs"),
  5376. name: "Laying",
  5377. image: {
  5378. source: "./media/characters/surgo/laying.svg"
  5379. }
  5380. },
  5381. },
  5382. [
  5383. {
  5384. name: "Normal",
  5385. height: math.unit(6, "feet"),
  5386. default: true
  5387. }
  5388. ]
  5389. ))
  5390. characterMakers.push(() => makeCharacter(
  5391. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5392. {
  5393. side: {
  5394. height: math.unit(6, "feet"),
  5395. weight: math.unit(150, "lbs"),
  5396. name: "Side",
  5397. image: {
  5398. source: "./media/characters/cibus/side.svg",
  5399. extra: 800 / 400
  5400. }
  5401. },
  5402. },
  5403. [
  5404. {
  5405. name: "Normal",
  5406. height: math.unit(6, "feet"),
  5407. default: true
  5408. }
  5409. ]
  5410. ))
  5411. characterMakers.push(() => makeCharacter(
  5412. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5413. {
  5414. front: {
  5415. height: math.unit(6, "feet"),
  5416. weight: math.unit(240, "lbs"),
  5417. name: "Front",
  5418. image: {
  5419. source: "./media/characters/nibbles/front.svg"
  5420. }
  5421. },
  5422. side: {
  5423. height: math.unit(6, "feet"),
  5424. weight: math.unit(240, "lbs"),
  5425. name: "Side",
  5426. image: {
  5427. source: "./media/characters/nibbles/side.svg"
  5428. }
  5429. },
  5430. },
  5431. [
  5432. {
  5433. name: "Normal",
  5434. height: math.unit(9, "feet"),
  5435. default: true
  5436. }
  5437. ]
  5438. ))
  5439. characterMakers.push(() => makeCharacter(
  5440. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5441. {
  5442. side: {
  5443. height: math.unit(5 + 1 / 6, "feet"),
  5444. weight: math.unit(130, "lbs"),
  5445. name: "Side",
  5446. image: {
  5447. source: "./media/characters/rikky/side.svg",
  5448. extra: 851/801
  5449. }
  5450. },
  5451. },
  5452. [
  5453. {
  5454. name: "Normal",
  5455. height: math.unit(5 + 1 / 6, "feet")
  5456. },
  5457. {
  5458. name: "Macro",
  5459. height: math.unit(152, "feet"),
  5460. default: true
  5461. },
  5462. {
  5463. name: "Megamacro",
  5464. height: math.unit(7, "miles")
  5465. }
  5466. ]
  5467. ))
  5468. characterMakers.push(() => makeCharacter(
  5469. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5470. {
  5471. side: {
  5472. height: math.unit(370, "cm"),
  5473. weight: math.unit(350, "lbs"),
  5474. name: "Side",
  5475. image: {
  5476. source: "./media/characters/malfressa/side.svg"
  5477. }
  5478. },
  5479. walking: {
  5480. height: math.unit(370, "cm"),
  5481. weight: math.unit(350, "lbs"),
  5482. name: "Walking",
  5483. image: {
  5484. source: "./media/characters/malfressa/walking.svg"
  5485. }
  5486. },
  5487. feral: {
  5488. height: math.unit(2500, "cm"),
  5489. weight: math.unit(100000, "lbs"),
  5490. name: "Feral",
  5491. image: {
  5492. source: "./media/characters/malfressa/feral.svg",
  5493. extra: 2108 / 837,
  5494. bottom: 0.02
  5495. }
  5496. },
  5497. },
  5498. [
  5499. {
  5500. name: "Normal",
  5501. height: math.unit(370, "cm")
  5502. },
  5503. {
  5504. name: "Macro",
  5505. height: math.unit(300, "meters"),
  5506. default: true
  5507. }
  5508. ]
  5509. ))
  5510. characterMakers.push(() => makeCharacter(
  5511. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5512. {
  5513. front: {
  5514. height: math.unit(6, "feet"),
  5515. weight: math.unit(60, "kg"),
  5516. name: "Front",
  5517. image: {
  5518. source: "./media/characters/jaro/front.svg"
  5519. }
  5520. },
  5521. back: {
  5522. height: math.unit(6, "feet"),
  5523. weight: math.unit(60, "kg"),
  5524. name: "Back",
  5525. image: {
  5526. source: "./media/characters/jaro/back.svg"
  5527. }
  5528. },
  5529. },
  5530. [
  5531. {
  5532. name: "Micro",
  5533. height: math.unit(7, "inches")
  5534. },
  5535. {
  5536. name: "Normal",
  5537. height: math.unit(5.5, "feet"),
  5538. default: true
  5539. },
  5540. {
  5541. name: "Minimacro",
  5542. height: math.unit(20, "feet")
  5543. },
  5544. {
  5545. name: "Macro",
  5546. height: math.unit(200, "meters")
  5547. }
  5548. ]
  5549. ))
  5550. characterMakers.push(() => makeCharacter(
  5551. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5552. {
  5553. front: {
  5554. height: math.unit(6, "feet"),
  5555. weight: math.unit(195, "lb"),
  5556. name: "Front",
  5557. image: {
  5558. source: "./media/characters/rogue/front.svg"
  5559. }
  5560. },
  5561. },
  5562. [
  5563. {
  5564. name: "Macro",
  5565. height: math.unit(90, "feet"),
  5566. default: true
  5567. },
  5568. ]
  5569. ))
  5570. characterMakers.push(() => makeCharacter(
  5571. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5572. {
  5573. front: {
  5574. height: math.unit(5 + 8 / 12, "feet"),
  5575. weight: math.unit(140, "lb"),
  5576. name: "Front",
  5577. image: {
  5578. source: "./media/characters/piper/front.svg",
  5579. extra: 3928 / 3681
  5580. }
  5581. },
  5582. },
  5583. [
  5584. {
  5585. name: "Micro",
  5586. height: math.unit(2, "inches")
  5587. },
  5588. {
  5589. name: "Normal",
  5590. height: math.unit(5 + 8 / 12, "feet")
  5591. },
  5592. {
  5593. name: "Macro",
  5594. height: math.unit(250, "feet"),
  5595. default: true
  5596. },
  5597. {
  5598. name: "Megamacro",
  5599. height: math.unit(7, "miles")
  5600. },
  5601. ]
  5602. ))
  5603. characterMakers.push(() => makeCharacter(
  5604. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5605. {
  5606. front: {
  5607. height: math.unit(6, "feet"),
  5608. weight: math.unit(220, "lb"),
  5609. name: "Front",
  5610. image: {
  5611. source: "./media/characters/gemini/front.svg"
  5612. }
  5613. },
  5614. back: {
  5615. height: math.unit(6, "feet"),
  5616. weight: math.unit(220, "lb"),
  5617. name: "Back",
  5618. image: {
  5619. source: "./media/characters/gemini/back.svg"
  5620. }
  5621. },
  5622. kneeling: {
  5623. height: math.unit(6 / 1.5, "feet"),
  5624. weight: math.unit(220, "lb"),
  5625. name: "Kneeling",
  5626. image: {
  5627. source: "./media/characters/gemini/kneeling.svg",
  5628. bottom: 0.02
  5629. }
  5630. },
  5631. },
  5632. [
  5633. {
  5634. name: "Macro",
  5635. height: math.unit(300, "meters"),
  5636. default: true
  5637. },
  5638. {
  5639. name: "Megamacro",
  5640. height: math.unit(6900, "meters")
  5641. },
  5642. ]
  5643. ))
  5644. characterMakers.push(() => makeCharacter(
  5645. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5646. {
  5647. anthro: {
  5648. height: math.unit(2.35, "meters"),
  5649. weight: math.unit(73, "kg"),
  5650. name: "Anthro",
  5651. image: {
  5652. source: "./media/characters/alicia/anthro.svg",
  5653. extra: 2571 / 2385,
  5654. bottom: 75 / 2648
  5655. }
  5656. },
  5657. paw: {
  5658. height: math.unit(1.32, "feet"),
  5659. name: "Paw",
  5660. image: {
  5661. source: "./media/characters/alicia/paw.svg"
  5662. }
  5663. },
  5664. feral: {
  5665. height: math.unit(1.69, "meters"),
  5666. weight: math.unit(73, "kg"),
  5667. name: "Feral",
  5668. image: {
  5669. source: "./media/characters/alicia/feral.svg",
  5670. extra: 2123 / 1715,
  5671. bottom: 222 / 2349
  5672. }
  5673. },
  5674. },
  5675. [
  5676. {
  5677. name: "Normal",
  5678. height: math.unit(2.35, "meters")
  5679. },
  5680. {
  5681. name: "Macro",
  5682. height: math.unit(60, "meters"),
  5683. default: true
  5684. },
  5685. {
  5686. name: "Megamacro",
  5687. height: math.unit(10000, "kilometers")
  5688. },
  5689. ]
  5690. ))
  5691. characterMakers.push(() => makeCharacter(
  5692. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5693. {
  5694. front: {
  5695. height: math.unit(7, "feet"),
  5696. weight: math.unit(250, "lbs"),
  5697. name: "Front",
  5698. image: {
  5699. source: "./media/characters/archy/front.svg"
  5700. }
  5701. }
  5702. },
  5703. [
  5704. {
  5705. name: "Micro",
  5706. height: math.unit(1, "inch")
  5707. },
  5708. {
  5709. name: "Shorty",
  5710. height: math.unit(5, "feet")
  5711. },
  5712. {
  5713. name: "Normal",
  5714. height: math.unit(7, "feet")
  5715. },
  5716. {
  5717. name: "Macro",
  5718. height: math.unit(600, "meters"),
  5719. default: true
  5720. },
  5721. {
  5722. name: "Megamacro",
  5723. height: math.unit(1, "mile")
  5724. },
  5725. ]
  5726. ))
  5727. characterMakers.push(() => makeCharacter(
  5728. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5729. {
  5730. front: {
  5731. height: math.unit(1.65, "meters"),
  5732. weight: math.unit(74, "kg"),
  5733. name: "Front",
  5734. image: {
  5735. source: "./media/characters/berri/front.svg",
  5736. extra: 857 / 837,
  5737. bottom: 18 / 877
  5738. }
  5739. },
  5740. bum: {
  5741. height: math.unit(1.46, "feet"),
  5742. name: "Bum",
  5743. image: {
  5744. source: "./media/characters/berri/bum.svg"
  5745. }
  5746. },
  5747. mouth: {
  5748. height: math.unit(0.44, "feet"),
  5749. name: "Mouth",
  5750. image: {
  5751. source: "./media/characters/berri/mouth.svg"
  5752. }
  5753. },
  5754. paw: {
  5755. height: math.unit(0.826, "feet"),
  5756. name: "Paw",
  5757. image: {
  5758. source: "./media/characters/berri/paw.svg"
  5759. }
  5760. },
  5761. },
  5762. [
  5763. {
  5764. name: "Normal",
  5765. height: math.unit(1.65, "meters")
  5766. },
  5767. {
  5768. name: "Macro",
  5769. height: math.unit(60, "m"),
  5770. default: true
  5771. },
  5772. {
  5773. name: "Megamacro",
  5774. height: math.unit(9.213, "km")
  5775. },
  5776. {
  5777. name: "Planet Eater",
  5778. height: math.unit(489, "megameters")
  5779. },
  5780. {
  5781. name: "Teramacro",
  5782. height: math.unit(2471635000000, "meters")
  5783. },
  5784. {
  5785. name: "Examacro",
  5786. height: math.unit(8.0624e+26, "meters")
  5787. }
  5788. ]
  5789. ))
  5790. characterMakers.push(() => makeCharacter(
  5791. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5792. {
  5793. front: {
  5794. height: math.unit(1.72, "meters"),
  5795. weight: math.unit(68, "kg"),
  5796. name: "Front",
  5797. image: {
  5798. source: "./media/characters/lexi/front.svg"
  5799. }
  5800. }
  5801. },
  5802. [
  5803. {
  5804. name: "Very Smol",
  5805. height: math.unit(10, "mm")
  5806. },
  5807. {
  5808. name: "Micro",
  5809. height: math.unit(6.8, "cm"),
  5810. default: true
  5811. },
  5812. {
  5813. name: "Normal",
  5814. height: math.unit(1.72, "m")
  5815. }
  5816. ]
  5817. ))
  5818. characterMakers.push(() => makeCharacter(
  5819. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5820. {
  5821. front: {
  5822. height: math.unit(1.69, "meters"),
  5823. weight: math.unit(68, "kg"),
  5824. name: "Front",
  5825. image: {
  5826. source: "./media/characters/martin/front.svg",
  5827. extra: 596 / 581
  5828. }
  5829. }
  5830. },
  5831. [
  5832. {
  5833. name: "Micro",
  5834. height: math.unit(6.85, "cm"),
  5835. default: true
  5836. },
  5837. {
  5838. name: "Normal",
  5839. height: math.unit(1.69, "m")
  5840. }
  5841. ]
  5842. ))
  5843. characterMakers.push(() => makeCharacter(
  5844. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5845. {
  5846. front: {
  5847. height: math.unit(1.69, "meters"),
  5848. weight: math.unit(68, "kg"),
  5849. name: "Front",
  5850. image: {
  5851. source: "./media/characters/juno/front.svg"
  5852. }
  5853. }
  5854. },
  5855. [
  5856. {
  5857. name: "Micro",
  5858. height: math.unit(7, "cm")
  5859. },
  5860. {
  5861. name: "Normal",
  5862. height: math.unit(1.89, "m")
  5863. },
  5864. {
  5865. name: "Macro",
  5866. height: math.unit(353, "meters"),
  5867. default: true
  5868. }
  5869. ]
  5870. ))
  5871. characterMakers.push(() => makeCharacter(
  5872. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5873. {
  5874. front: {
  5875. height: math.unit(1.93, "meters"),
  5876. weight: math.unit(83, "kg"),
  5877. name: "Front",
  5878. image: {
  5879. source: "./media/characters/samantha/front.svg"
  5880. }
  5881. },
  5882. frontClothed: {
  5883. height: math.unit(1.93, "meters"),
  5884. weight: math.unit(83, "kg"),
  5885. name: "Front (Clothed)",
  5886. image: {
  5887. source: "./media/characters/samantha/front-clothed.svg"
  5888. }
  5889. },
  5890. back: {
  5891. height: math.unit(1.93, "meters"),
  5892. weight: math.unit(83, "kg"),
  5893. name: "Back",
  5894. image: {
  5895. source: "./media/characters/samantha/back.svg"
  5896. }
  5897. },
  5898. },
  5899. [
  5900. {
  5901. name: "Normal",
  5902. height: math.unit(1.93, "m")
  5903. },
  5904. {
  5905. name: "Macro",
  5906. height: math.unit(74, "meters"),
  5907. default: true
  5908. },
  5909. {
  5910. name: "Macro+",
  5911. height: math.unit(223, "meters"),
  5912. },
  5913. {
  5914. name: "Megamacro",
  5915. height: math.unit(8381, "meters"),
  5916. },
  5917. {
  5918. name: "Megamacro+",
  5919. height: math.unit(12000, "kilometers")
  5920. },
  5921. ]
  5922. ))
  5923. characterMakers.push(() => makeCharacter(
  5924. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5925. {
  5926. front: {
  5927. height: math.unit(1.92, "meters"),
  5928. weight: math.unit(80, "kg"),
  5929. name: "Front",
  5930. image: {
  5931. source: "./media/characters/dr-clay/front.svg"
  5932. }
  5933. },
  5934. frontClothed: {
  5935. height: math.unit(1.92, "meters"),
  5936. weight: math.unit(80, "kg"),
  5937. name: "Front (Clothed)",
  5938. image: {
  5939. source: "./media/characters/dr-clay/front-clothed.svg"
  5940. }
  5941. }
  5942. },
  5943. [
  5944. {
  5945. name: "Normal",
  5946. height: math.unit(1.92, "m")
  5947. },
  5948. {
  5949. name: "Macro",
  5950. height: math.unit(214, "meters"),
  5951. default: true
  5952. },
  5953. {
  5954. name: "Macro+",
  5955. height: math.unit(12.237, "meters"),
  5956. },
  5957. {
  5958. name: "Megamacro",
  5959. height: math.unit(557, "megameters"),
  5960. },
  5961. {
  5962. name: "Unimaginable",
  5963. height: math.unit(120e9, "lightyears")
  5964. },
  5965. ]
  5966. ))
  5967. characterMakers.push(() => makeCharacter(
  5968. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5969. {
  5970. front: {
  5971. height: math.unit(2, "meters"),
  5972. weight: math.unit(80, "kg"),
  5973. name: "Front",
  5974. image: {
  5975. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5976. }
  5977. }
  5978. },
  5979. [
  5980. {
  5981. name: "Teramacro",
  5982. height: math.unit(500000, "lightyears"),
  5983. default: true
  5984. },
  5985. ]
  5986. ))
  5987. characterMakers.push(() => makeCharacter(
  5988. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5989. {
  5990. front: {
  5991. height: math.unit(2, "meters"),
  5992. weight: math.unit(150, "kg"),
  5993. name: "Front",
  5994. image: {
  5995. source: "./media/characters/vemus/front.svg",
  5996. extra: 2384 / 2084,
  5997. bottom: 0.0123
  5998. }
  5999. }
  6000. },
  6001. [
  6002. {
  6003. name: "Normal",
  6004. height: math.unit(3.75, "meters"),
  6005. default: true
  6006. },
  6007. {
  6008. name: "Big",
  6009. height: math.unit(8, "meters")
  6010. },
  6011. {
  6012. name: "Macro",
  6013. height: math.unit(100, "meters")
  6014. },
  6015. {
  6016. name: "Macro+",
  6017. height: math.unit(1500, "meters")
  6018. },
  6019. {
  6020. name: "Stellar",
  6021. height: math.unit(14e8, "meters")
  6022. },
  6023. ]
  6024. ))
  6025. characterMakers.push(() => makeCharacter(
  6026. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6027. {
  6028. front: {
  6029. height: math.unit(2, "meters"),
  6030. weight: math.unit(70, "kg"),
  6031. name: "Front",
  6032. image: {
  6033. source: "./media/characters/beherit/front.svg",
  6034. extra: 1408 / 1242
  6035. }
  6036. }
  6037. },
  6038. [
  6039. {
  6040. name: "Normal",
  6041. height: math.unit(6, "feet")
  6042. },
  6043. {
  6044. name: "Lorg",
  6045. height: math.unit(25, "feet"),
  6046. default: true
  6047. },
  6048. {
  6049. name: "Lorger",
  6050. height: math.unit(75, "feet")
  6051. },
  6052. {
  6053. name: "Macro",
  6054. height: math.unit(200, "meters")
  6055. },
  6056. ]
  6057. ))
  6058. characterMakers.push(() => makeCharacter(
  6059. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6060. {
  6061. front: {
  6062. height: math.unit(2, "meters"),
  6063. weight: math.unit(150, "kg"),
  6064. name: "Front",
  6065. image: {
  6066. source: "./media/characters/everett/front.svg",
  6067. extra: 2038 / 1737,
  6068. bottom: 0.03
  6069. }
  6070. },
  6071. paw: {
  6072. height: math.unit(2 / 3.6, "meters"),
  6073. name: "Paw",
  6074. image: {
  6075. source: "./media/characters/everett/paw.svg"
  6076. }
  6077. },
  6078. },
  6079. [
  6080. {
  6081. name: "Normal",
  6082. height: math.unit(15, "feet"),
  6083. default: true
  6084. },
  6085. {
  6086. name: "Lorg",
  6087. height: math.unit(70, "feet"),
  6088. default: true
  6089. },
  6090. {
  6091. name: "Lorger",
  6092. height: math.unit(250, "feet")
  6093. },
  6094. {
  6095. name: "Macro",
  6096. height: math.unit(500, "meters")
  6097. },
  6098. ]
  6099. ))
  6100. characterMakers.push(() => makeCharacter(
  6101. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6102. {
  6103. front: {
  6104. height: math.unit(2, "meters"),
  6105. weight: math.unit(86, "kg"),
  6106. name: "Front",
  6107. image: {
  6108. source: "./media/characters/rose-lion/front.svg"
  6109. }
  6110. },
  6111. bent: {
  6112. height: math.unit(2 / 1.4288, "meters"),
  6113. weight: math.unit(86, "kg"),
  6114. name: "Bent",
  6115. image: {
  6116. source: "./media/characters/rose-lion/bent.svg"
  6117. }
  6118. }
  6119. },
  6120. [
  6121. {
  6122. name: "Mini-Micro",
  6123. height: math.unit(1, "cm")
  6124. },
  6125. {
  6126. name: "Micro",
  6127. height: math.unit(3.5, "inches"),
  6128. default: true
  6129. },
  6130. {
  6131. name: "Normal",
  6132. height: math.unit(6 + 1 / 6, "feet")
  6133. },
  6134. {
  6135. name: "Mini-Macro",
  6136. height: math.unit(9 + 10 / 12, "feet")
  6137. },
  6138. ]
  6139. ))
  6140. characterMakers.push(() => makeCharacter(
  6141. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6142. {
  6143. front: {
  6144. height: math.unit(2, "meters"),
  6145. weight: math.unit(350, "lbs"),
  6146. name: "Front",
  6147. image: {
  6148. source: "./media/characters/regal/front.svg"
  6149. }
  6150. },
  6151. back: {
  6152. height: math.unit(2, "meters"),
  6153. weight: math.unit(350, "lbs"),
  6154. name: "Back",
  6155. image: {
  6156. source: "./media/characters/regal/back.svg"
  6157. }
  6158. },
  6159. },
  6160. [
  6161. {
  6162. name: "Macro",
  6163. height: math.unit(350, "feet"),
  6164. default: true
  6165. }
  6166. ]
  6167. ))
  6168. characterMakers.push(() => makeCharacter(
  6169. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6170. {
  6171. front: {
  6172. height: math.unit(4 + 11 / 12, "feet"),
  6173. weight: math.unit(100, "lbs"),
  6174. name: "Front",
  6175. image: {
  6176. source: "./media/characters/opal/front.svg"
  6177. }
  6178. },
  6179. frontAlt: {
  6180. height: math.unit(4 + 11 / 12, "feet"),
  6181. weight: math.unit(100, "lbs"),
  6182. name: "Front (Alt)",
  6183. image: {
  6184. source: "./media/characters/opal/front-alt.svg"
  6185. }
  6186. },
  6187. },
  6188. [
  6189. {
  6190. name: "Small",
  6191. height: math.unit(4 + 11 / 12, "feet")
  6192. },
  6193. {
  6194. name: "Normal",
  6195. height: math.unit(20, "feet"),
  6196. default: true
  6197. },
  6198. {
  6199. name: "Macro",
  6200. height: math.unit(120, "feet")
  6201. },
  6202. {
  6203. name: "Megamacro",
  6204. height: math.unit(80, "miles")
  6205. },
  6206. {
  6207. name: "True Size",
  6208. height: math.unit(100000, "lightyears")
  6209. },
  6210. ]
  6211. ))
  6212. characterMakers.push(() => makeCharacter(
  6213. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6214. {
  6215. front: {
  6216. height: math.unit(6, "feet"),
  6217. weight: math.unit(200, "lbs"),
  6218. name: "Front",
  6219. image: {
  6220. source: "./media/characters/vector-wuff/front.svg"
  6221. }
  6222. }
  6223. },
  6224. [
  6225. {
  6226. name: "Normal",
  6227. height: math.unit(2.8, "meters")
  6228. },
  6229. {
  6230. name: "Macro",
  6231. height: math.unit(450, "meters"),
  6232. default: true
  6233. },
  6234. {
  6235. name: "Megamacro",
  6236. height: math.unit(15, "kilometers")
  6237. }
  6238. ]
  6239. ))
  6240. characterMakers.push(() => makeCharacter(
  6241. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6242. {
  6243. front: {
  6244. height: math.unit(6, "feet"),
  6245. weight: math.unit(256, "lbs"),
  6246. name: "Front",
  6247. image: {
  6248. source: "./media/characters/dannik/front.svg"
  6249. }
  6250. }
  6251. },
  6252. [
  6253. {
  6254. name: "Macro",
  6255. height: math.unit(69.57, "meters"),
  6256. default: true
  6257. },
  6258. ]
  6259. ))
  6260. characterMakers.push(() => makeCharacter(
  6261. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6262. {
  6263. front: {
  6264. height: math.unit(6, "feet"),
  6265. weight: math.unit(120, "lbs"),
  6266. name: "Front",
  6267. image: {
  6268. source: "./media/characters/azura-saharah/front.svg"
  6269. }
  6270. },
  6271. back: {
  6272. height: math.unit(6, "feet"),
  6273. weight: math.unit(120, "lbs"),
  6274. name: "Back",
  6275. image: {
  6276. source: "./media/characters/azura-saharah/back.svg"
  6277. }
  6278. },
  6279. },
  6280. [
  6281. {
  6282. name: "Macro",
  6283. height: math.unit(100, "feet"),
  6284. default: true
  6285. },
  6286. ]
  6287. ))
  6288. characterMakers.push(() => makeCharacter(
  6289. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6290. {
  6291. side: {
  6292. height: math.unit(5 + 4 / 12, "feet"),
  6293. weight: math.unit(163, "lbs"),
  6294. name: "Side",
  6295. image: {
  6296. source: "./media/characters/kennedy/side.svg"
  6297. }
  6298. }
  6299. },
  6300. [
  6301. {
  6302. name: "Standard Doggo",
  6303. height: math.unit(5 + 4 / 12, "feet")
  6304. },
  6305. {
  6306. name: "Big Doggo",
  6307. height: math.unit(25 + 3 / 12, "feet"),
  6308. default: true
  6309. },
  6310. ]
  6311. ))
  6312. characterMakers.push(() => makeCharacter(
  6313. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6314. {
  6315. front: {
  6316. height: math.unit(6, "feet"),
  6317. weight: math.unit(90, "lbs"),
  6318. name: "Front",
  6319. image: {
  6320. source: "./media/characters/odi-lunar/front.svg"
  6321. }
  6322. }
  6323. },
  6324. [
  6325. {
  6326. name: "Micro",
  6327. height: math.unit(3, "inches"),
  6328. default: true
  6329. },
  6330. {
  6331. name: "Normal",
  6332. height: math.unit(5.5, "feet")
  6333. }
  6334. ]
  6335. ))
  6336. characterMakers.push(() => makeCharacter(
  6337. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6338. {
  6339. back: {
  6340. height: math.unit(6, "feet"),
  6341. weight: math.unit(220, "lbs"),
  6342. name: "Back",
  6343. image: {
  6344. source: "./media/characters/mandake/back.svg"
  6345. }
  6346. }
  6347. },
  6348. [
  6349. {
  6350. name: "Normal",
  6351. height: math.unit(7, "feet"),
  6352. default: true
  6353. },
  6354. {
  6355. name: "Macro",
  6356. height: math.unit(78, "feet")
  6357. },
  6358. {
  6359. name: "Macro+",
  6360. height: math.unit(300, "meters")
  6361. },
  6362. {
  6363. name: "Macro++",
  6364. height: math.unit(2400, "feet")
  6365. },
  6366. {
  6367. name: "Megamacro",
  6368. height: math.unit(5167, "meters")
  6369. },
  6370. {
  6371. name: "Gigamacro",
  6372. height: math.unit(41769, "miles")
  6373. },
  6374. ]
  6375. ))
  6376. characterMakers.push(() => makeCharacter(
  6377. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6378. {
  6379. front: {
  6380. height: math.unit(6, "feet"),
  6381. weight: math.unit(120, "lbs"),
  6382. name: "Front",
  6383. image: {
  6384. source: "./media/characters/yozey/front.svg"
  6385. }
  6386. },
  6387. frontAlt: {
  6388. height: math.unit(6, "feet"),
  6389. weight: math.unit(120, "lbs"),
  6390. name: "Front (Alt)",
  6391. image: {
  6392. source: "./media/characters/yozey/front-alt.svg"
  6393. }
  6394. },
  6395. side: {
  6396. height: math.unit(6, "feet"),
  6397. weight: math.unit(120, "lbs"),
  6398. name: "Side",
  6399. image: {
  6400. source: "./media/characters/yozey/side.svg"
  6401. }
  6402. },
  6403. },
  6404. [
  6405. {
  6406. name: "Micro",
  6407. height: math.unit(3, "inches"),
  6408. default: true
  6409. },
  6410. {
  6411. name: "Normal",
  6412. height: math.unit(6, "feet")
  6413. }
  6414. ]
  6415. ))
  6416. characterMakers.push(() => makeCharacter(
  6417. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6418. {
  6419. front: {
  6420. height: math.unit(6, "feet"),
  6421. weight: math.unit(103, "lbs"),
  6422. name: "Front",
  6423. image: {
  6424. source: "./media/characters/valeska-voss/front.svg"
  6425. }
  6426. }
  6427. },
  6428. [
  6429. {
  6430. name: "Mini-Sized Sub",
  6431. height: math.unit(3.1, "inches")
  6432. },
  6433. {
  6434. name: "Mid-Sized Sub",
  6435. height: math.unit(6.2, "inches")
  6436. },
  6437. {
  6438. name: "Full-Sized Sub",
  6439. height: math.unit(9.3, "inches")
  6440. },
  6441. {
  6442. name: "Normal",
  6443. height: math.unit(5 + 2 / 12, "foot"),
  6444. default: true
  6445. },
  6446. ]
  6447. ))
  6448. characterMakers.push(() => makeCharacter(
  6449. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6450. {
  6451. front: {
  6452. height: math.unit(6, "feet"),
  6453. weight: math.unit(160, "lbs"),
  6454. name: "Front",
  6455. image: {
  6456. source: "./media/characters/gene-zeta/front.svg",
  6457. bottom: 0.03,
  6458. extra: 1
  6459. }
  6460. }
  6461. },
  6462. [
  6463. {
  6464. name: "Normal",
  6465. height: math.unit(6.25, "foot"),
  6466. default: true
  6467. },
  6468. ]
  6469. ))
  6470. characterMakers.push(() => makeCharacter(
  6471. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6472. {
  6473. front: {
  6474. height: math.unit(6, "feet"),
  6475. weight: math.unit(350, "lbs"),
  6476. name: "Front",
  6477. image: {
  6478. source: "./media/characters/razinox/front.svg",
  6479. extra: 1686 / 1548,
  6480. bottom: 28.2 / 1868
  6481. }
  6482. },
  6483. back: {
  6484. height: math.unit(6, "feet"),
  6485. weight: math.unit(350, "lbs"),
  6486. name: "Back",
  6487. image: {
  6488. source: "./media/characters/razinox/back.svg",
  6489. extra: 1660 / 1590,
  6490. bottom: 15 / 1665
  6491. }
  6492. },
  6493. },
  6494. [
  6495. {
  6496. name: "Normal",
  6497. height: math.unit(10 + 8 / 12, "foot")
  6498. },
  6499. {
  6500. name: "Minimacro",
  6501. height: math.unit(15, "foot")
  6502. },
  6503. {
  6504. name: "Macro",
  6505. height: math.unit(60, "foot"),
  6506. default: true
  6507. },
  6508. {
  6509. name: "Megamacro",
  6510. height: math.unit(5, "miles")
  6511. },
  6512. {
  6513. name: "Gigamacro",
  6514. height: math.unit(6000, "miles")
  6515. },
  6516. ]
  6517. ))
  6518. characterMakers.push(() => makeCharacter(
  6519. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6520. {
  6521. front: {
  6522. height: math.unit(6, "feet"),
  6523. weight: math.unit(150, "lbs"),
  6524. name: "Front",
  6525. image: {
  6526. source: "./media/characters/cobalt/front.svg"
  6527. }
  6528. }
  6529. },
  6530. [
  6531. {
  6532. name: "Normal",
  6533. height: math.unit(8 + 1 / 12, "foot")
  6534. },
  6535. {
  6536. name: "Macro",
  6537. height: math.unit(111, "foot"),
  6538. default: true
  6539. },
  6540. {
  6541. name: "Supracosmic",
  6542. height: math.unit(1e42, "feet")
  6543. },
  6544. ]
  6545. ))
  6546. characterMakers.push(() => makeCharacter(
  6547. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6548. {
  6549. front: {
  6550. height: math.unit(6, "feet"),
  6551. weight: math.unit(140, "lbs"),
  6552. name: "Front",
  6553. image: {
  6554. source: "./media/characters/amanda/front.svg"
  6555. }
  6556. }
  6557. },
  6558. [
  6559. {
  6560. name: "Micro",
  6561. height: math.unit(5, "inches"),
  6562. default: true
  6563. },
  6564. ]
  6565. ))
  6566. characterMakers.push(() => makeCharacter(
  6567. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6568. {
  6569. front: {
  6570. height: math.unit(5.59, "feet"),
  6571. weight: math.unit(250, "lbs"),
  6572. name: "Front",
  6573. image: {
  6574. source: "./media/characters/teal/front.svg"
  6575. }
  6576. },
  6577. frontAlt: {
  6578. height: math.unit(6, "feet"),
  6579. weight: math.unit(250, "lbs"),
  6580. name: "Front (Alt)",
  6581. image: {
  6582. source: "./media/characters/teal/front-alt.svg",
  6583. bottom: 0.04,
  6584. extra: 1
  6585. }
  6586. },
  6587. },
  6588. [
  6589. {
  6590. name: "Normal",
  6591. height: math.unit(12, "feet"),
  6592. default: true
  6593. },
  6594. {
  6595. name: "Macro",
  6596. height: math.unit(300, "feet")
  6597. },
  6598. ]
  6599. ))
  6600. characterMakers.push(() => makeCharacter(
  6601. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6602. {
  6603. frontCat: {
  6604. height: math.unit(6, "feet"),
  6605. weight: math.unit(180, "lbs"),
  6606. name: "Front (Cat)",
  6607. image: {
  6608. source: "./media/characters/ravin-amulet/front-cat.svg"
  6609. }
  6610. },
  6611. frontCatAlt: {
  6612. height: math.unit(6, "feet"),
  6613. weight: math.unit(180, "lbs"),
  6614. name: "Front (Alt, Cat)",
  6615. image: {
  6616. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6617. }
  6618. },
  6619. frontWerewolf: {
  6620. height: math.unit(6 * 1.2, "feet"),
  6621. weight: math.unit(225, "lbs"),
  6622. name: "Front (Werewolf)",
  6623. image: {
  6624. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6625. }
  6626. },
  6627. backWerewolf: {
  6628. height: math.unit(6 * 1.2, "feet"),
  6629. weight: math.unit(225, "lbs"),
  6630. name: "Back (Werewolf)",
  6631. image: {
  6632. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6633. }
  6634. },
  6635. },
  6636. [
  6637. {
  6638. name: "Nano",
  6639. height: math.unit(1, "micrometer")
  6640. },
  6641. {
  6642. name: "Micro",
  6643. height: math.unit(1, "inch")
  6644. },
  6645. {
  6646. name: "Normal",
  6647. height: math.unit(6, "feet"),
  6648. default: true
  6649. },
  6650. {
  6651. name: "Macro",
  6652. height: math.unit(60, "feet")
  6653. }
  6654. ]
  6655. ))
  6656. characterMakers.push(() => makeCharacter(
  6657. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6658. {
  6659. front: {
  6660. height: math.unit(6, "feet"),
  6661. weight: math.unit(165, "lbs"),
  6662. name: "Front",
  6663. image: {
  6664. source: "./media/characters/fluoresce/front.svg"
  6665. }
  6666. }
  6667. },
  6668. [
  6669. {
  6670. name: "Micro",
  6671. height: math.unit(6, "cm")
  6672. },
  6673. {
  6674. name: "Normal",
  6675. height: math.unit(5 + 7 / 12, "feet"),
  6676. default: true
  6677. },
  6678. {
  6679. name: "Macro",
  6680. height: math.unit(56, "feet")
  6681. },
  6682. {
  6683. name: "Megamacro",
  6684. height: math.unit(1.9, "miles")
  6685. },
  6686. ]
  6687. ))
  6688. characterMakers.push(() => makeCharacter(
  6689. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6690. {
  6691. front: {
  6692. height: math.unit(9 + 6 / 12, "feet"),
  6693. weight: math.unit(523, "lbs"),
  6694. name: "Side",
  6695. image: {
  6696. source: "./media/characters/aurora/side.svg"
  6697. }
  6698. }
  6699. },
  6700. [
  6701. {
  6702. name: "Normal",
  6703. height: math.unit(9 + 6 / 12, "feet")
  6704. },
  6705. {
  6706. name: "Macro",
  6707. height: math.unit(96, "feet"),
  6708. default: true
  6709. },
  6710. {
  6711. name: "Macro+",
  6712. height: math.unit(243, "feet")
  6713. },
  6714. ]
  6715. ))
  6716. characterMakers.push(() => makeCharacter(
  6717. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6718. {
  6719. front: {
  6720. height: math.unit(194, "cm"),
  6721. weight: math.unit(90, "kg"),
  6722. name: "Front",
  6723. image: {
  6724. source: "./media/characters/ranek/front.svg"
  6725. }
  6726. },
  6727. side: {
  6728. height: math.unit(194, "cm"),
  6729. weight: math.unit(90, "kg"),
  6730. name: "Side",
  6731. image: {
  6732. source: "./media/characters/ranek/side.svg"
  6733. }
  6734. },
  6735. back: {
  6736. height: math.unit(194, "cm"),
  6737. weight: math.unit(90, "kg"),
  6738. name: "Back",
  6739. image: {
  6740. source: "./media/characters/ranek/back.svg"
  6741. }
  6742. },
  6743. feral: {
  6744. height: math.unit(30, "cm"),
  6745. weight: math.unit(1.6, "lbs"),
  6746. name: "Feral",
  6747. image: {
  6748. source: "./media/characters/ranek/feral.svg"
  6749. }
  6750. },
  6751. },
  6752. [
  6753. {
  6754. name: "Normal",
  6755. height: math.unit(194, "cm"),
  6756. default: true
  6757. },
  6758. {
  6759. name: "Macro",
  6760. height: math.unit(100, "meters")
  6761. },
  6762. ]
  6763. ))
  6764. characterMakers.push(() => makeCharacter(
  6765. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6766. {
  6767. front: {
  6768. height: math.unit(5 + 6 / 12, "feet"),
  6769. weight: math.unit(153, "lbs"),
  6770. name: "Front",
  6771. image: {
  6772. source: "./media/characters/andrew-cooper/front.svg"
  6773. }
  6774. },
  6775. },
  6776. [
  6777. {
  6778. name: "Nano",
  6779. height: math.unit(1, "mm")
  6780. },
  6781. {
  6782. name: "Micro",
  6783. height: math.unit(2, "inches")
  6784. },
  6785. {
  6786. name: "Normal",
  6787. height: math.unit(5 + 6 / 12, "feet"),
  6788. default: true
  6789. }
  6790. ]
  6791. ))
  6792. characterMakers.push(() => makeCharacter(
  6793. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6794. {
  6795. front: {
  6796. height: math.unit(6, "feet"),
  6797. weight: math.unit(180, "lbs"),
  6798. name: "Front",
  6799. image: {
  6800. source: "./media/characters/akane-sato/front.svg",
  6801. extra: 1219 / 1140
  6802. }
  6803. },
  6804. back: {
  6805. height: math.unit(6, "feet"),
  6806. weight: math.unit(180, "lbs"),
  6807. name: "Back",
  6808. image: {
  6809. source: "./media/characters/akane-sato/back.svg",
  6810. extra: 1219 / 1170
  6811. }
  6812. },
  6813. },
  6814. [
  6815. {
  6816. name: "Normal",
  6817. height: math.unit(2.5, "meters")
  6818. },
  6819. {
  6820. name: "Macro",
  6821. height: math.unit(250, "meters"),
  6822. default: true
  6823. },
  6824. {
  6825. name: "Megamacro",
  6826. height: math.unit(25, "km")
  6827. },
  6828. ]
  6829. ))
  6830. characterMakers.push(() => makeCharacter(
  6831. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6832. {
  6833. front: {
  6834. height: math.unit(6, "feet"),
  6835. weight: math.unit(65, "kg"),
  6836. name: "Front",
  6837. image: {
  6838. source: "./media/characters/rook/front.svg",
  6839. extra: 960 / 950
  6840. }
  6841. }
  6842. },
  6843. [
  6844. {
  6845. name: "Normal",
  6846. height: math.unit(8.8, "feet")
  6847. },
  6848. {
  6849. name: "Macro",
  6850. height: math.unit(88, "feet"),
  6851. default: true
  6852. },
  6853. {
  6854. name: "Megamacro",
  6855. height: math.unit(8, "miles")
  6856. },
  6857. ]
  6858. ))
  6859. characterMakers.push(() => makeCharacter(
  6860. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6861. {
  6862. front: {
  6863. height: math.unit(12 + 2 / 12, "feet"),
  6864. weight: math.unit(808, "lbs"),
  6865. name: "Front",
  6866. image: {
  6867. source: "./media/characters/prodigy/front.svg"
  6868. }
  6869. }
  6870. },
  6871. [
  6872. {
  6873. name: "Normal",
  6874. height: math.unit(12 + 2 / 12, "feet"),
  6875. default: true
  6876. },
  6877. {
  6878. name: "Macro",
  6879. height: math.unit(143, "feet")
  6880. },
  6881. {
  6882. name: "Macro+",
  6883. height: math.unit(400, "feet")
  6884. },
  6885. ]
  6886. ))
  6887. characterMakers.push(() => makeCharacter(
  6888. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6889. {
  6890. front: {
  6891. height: math.unit(6, "feet"),
  6892. weight: math.unit(225, "lbs"),
  6893. name: "Front",
  6894. image: {
  6895. source: "./media/characters/daniel/front.svg"
  6896. }
  6897. },
  6898. leaning: {
  6899. height: math.unit(6, "feet"),
  6900. weight: math.unit(225, "lbs"),
  6901. name: "Leaning",
  6902. image: {
  6903. source: "./media/characters/daniel/leaning.svg"
  6904. }
  6905. },
  6906. },
  6907. [
  6908. {
  6909. name: "Macro",
  6910. height: math.unit(1000, "feet"),
  6911. default: true
  6912. },
  6913. ]
  6914. ))
  6915. characterMakers.push(() => makeCharacter(
  6916. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6917. {
  6918. front: {
  6919. height: math.unit(6, "feet"),
  6920. weight: math.unit(88, "lbs"),
  6921. name: "Front",
  6922. image: {
  6923. source: "./media/characters/chiros/front.svg",
  6924. extra: 306 / 226
  6925. }
  6926. },
  6927. side: {
  6928. height: math.unit(6, "feet"),
  6929. weight: math.unit(88, "lbs"),
  6930. name: "Side",
  6931. image: {
  6932. source: "./media/characters/chiros/side.svg",
  6933. extra: 306 / 226
  6934. }
  6935. },
  6936. },
  6937. [
  6938. {
  6939. name: "Normal",
  6940. height: math.unit(6, "cm"),
  6941. default: true
  6942. },
  6943. ]
  6944. ))
  6945. characterMakers.push(() => makeCharacter(
  6946. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6947. {
  6948. front: {
  6949. height: math.unit(6, "feet"),
  6950. weight: math.unit(100, "lbs"),
  6951. name: "Front",
  6952. image: {
  6953. source: "./media/characters/selka/front.svg",
  6954. extra: 947 / 887
  6955. }
  6956. }
  6957. },
  6958. [
  6959. {
  6960. name: "Normal",
  6961. height: math.unit(5, "cm"),
  6962. default: true
  6963. },
  6964. ]
  6965. ))
  6966. characterMakers.push(() => makeCharacter(
  6967. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6968. {
  6969. front: {
  6970. height: math.unit(8 + 3 / 12, "feet"),
  6971. weight: math.unit(424, "lbs"),
  6972. name: "Front",
  6973. image: {
  6974. source: "./media/characters/verin/front.svg",
  6975. extra: 1845 / 1550
  6976. }
  6977. },
  6978. frontArmored: {
  6979. height: math.unit(8 + 3 / 12, "feet"),
  6980. weight: math.unit(424, "lbs"),
  6981. name: "Front (Armored)",
  6982. image: {
  6983. source: "./media/characters/verin/front-armor.svg",
  6984. extra: 1845 / 1550,
  6985. bottom: 0.01
  6986. }
  6987. },
  6988. back: {
  6989. height: math.unit(8 + 3 / 12, "feet"),
  6990. weight: math.unit(424, "lbs"),
  6991. name: "Back",
  6992. image: {
  6993. source: "./media/characters/verin/back.svg",
  6994. bottom: 0.1,
  6995. extra: 1
  6996. }
  6997. },
  6998. foot: {
  6999. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7000. name: "Foot",
  7001. image: {
  7002. source: "./media/characters/verin/foot.svg"
  7003. }
  7004. },
  7005. },
  7006. [
  7007. {
  7008. name: "Normal",
  7009. height: math.unit(8 + 3 / 12, "feet")
  7010. },
  7011. {
  7012. name: "Minimacro",
  7013. height: math.unit(21, "feet"),
  7014. default: true
  7015. },
  7016. {
  7017. name: "Macro",
  7018. height: math.unit(626, "feet")
  7019. },
  7020. ]
  7021. ))
  7022. characterMakers.push(() => makeCharacter(
  7023. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7024. {
  7025. front: {
  7026. height: math.unit(2.718, "meters"),
  7027. weight: math.unit(150, "lbs"),
  7028. name: "Front",
  7029. image: {
  7030. source: "./media/characters/sovrim-terraquian/front.svg"
  7031. }
  7032. },
  7033. back: {
  7034. height: math.unit(2.718, "meters"),
  7035. weight: math.unit(150, "lbs"),
  7036. name: "Back",
  7037. image: {
  7038. source: "./media/characters/sovrim-terraquian/back.svg"
  7039. }
  7040. }
  7041. },
  7042. [
  7043. {
  7044. name: "Micro",
  7045. height: math.unit(2, "inches")
  7046. },
  7047. {
  7048. name: "Small",
  7049. height: math.unit(1, "meter")
  7050. },
  7051. {
  7052. name: "Normal",
  7053. height: math.unit(Math.E, "meters"),
  7054. default: true
  7055. },
  7056. {
  7057. name: "Macro",
  7058. height: math.unit(20, "meters")
  7059. },
  7060. {
  7061. name: "Macro+",
  7062. height: math.unit(400, "meters")
  7063. },
  7064. ]
  7065. ))
  7066. characterMakers.push(() => makeCharacter(
  7067. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7068. {
  7069. front: {
  7070. height: math.unit(7, "feet"),
  7071. weight: math.unit(489, "lbs"),
  7072. name: "Front",
  7073. image: {
  7074. source: "./media/characters/reece-silvermane/front.svg",
  7075. bottom: 0.02,
  7076. extra: 1
  7077. }
  7078. },
  7079. },
  7080. [
  7081. {
  7082. name: "Macro",
  7083. height: math.unit(1.5, "miles"),
  7084. default: true
  7085. },
  7086. ]
  7087. ))
  7088. characterMakers.push(() => makeCharacter(
  7089. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7090. {
  7091. front: {
  7092. height: math.unit(6, "feet"),
  7093. weight: math.unit(78, "kg"),
  7094. name: "Front",
  7095. image: {
  7096. source: "./media/characters/kane/front.svg",
  7097. extra: 978 / 899
  7098. }
  7099. },
  7100. },
  7101. [
  7102. {
  7103. name: "Normal",
  7104. height: math.unit(2.1, "m"),
  7105. },
  7106. {
  7107. name: "Macro",
  7108. height: math.unit(1, "km"),
  7109. default: true
  7110. },
  7111. ]
  7112. ))
  7113. characterMakers.push(() => makeCharacter(
  7114. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7115. {
  7116. front: {
  7117. height: math.unit(6, "feet"),
  7118. weight: math.unit(200, "kg"),
  7119. name: "Front",
  7120. image: {
  7121. source: "./media/characters/tegon/front.svg",
  7122. bottom: 0.01,
  7123. extra: 1
  7124. }
  7125. },
  7126. },
  7127. [
  7128. {
  7129. name: "Micro",
  7130. height: math.unit(1, "inch")
  7131. },
  7132. {
  7133. name: "Normal",
  7134. height: math.unit(6 + 3 / 12, "feet"),
  7135. default: true
  7136. },
  7137. {
  7138. name: "Macro",
  7139. height: math.unit(300, "feet")
  7140. },
  7141. {
  7142. name: "Megamacro",
  7143. height: math.unit(69, "miles")
  7144. },
  7145. ]
  7146. ))
  7147. characterMakers.push(() => makeCharacter(
  7148. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7149. {
  7150. side: {
  7151. height: math.unit(6, "feet"),
  7152. weight: math.unit(2304, "lbs"),
  7153. name: "Side",
  7154. image: {
  7155. source: "./media/characters/arcturax/side.svg",
  7156. extra: 790 / 376,
  7157. bottom: 0.01
  7158. }
  7159. },
  7160. },
  7161. [
  7162. {
  7163. name: "Micro",
  7164. height: math.unit(2, "inch")
  7165. },
  7166. {
  7167. name: "Normal",
  7168. height: math.unit(6, "feet")
  7169. },
  7170. {
  7171. name: "Macro",
  7172. height: math.unit(39, "feet"),
  7173. default: true
  7174. },
  7175. {
  7176. name: "Megamacro",
  7177. height: math.unit(7, "miles")
  7178. },
  7179. ]
  7180. ))
  7181. characterMakers.push(() => makeCharacter(
  7182. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7183. {
  7184. front: {
  7185. height: math.unit(6, "feet"),
  7186. weight: math.unit(50, "lbs"),
  7187. name: "Front",
  7188. image: {
  7189. source: "./media/characters/sentri/front.svg",
  7190. extra: 1750 / 1570,
  7191. bottom: 0.025
  7192. }
  7193. },
  7194. frontAlt: {
  7195. height: math.unit(6, "feet"),
  7196. weight: math.unit(50, "lbs"),
  7197. name: "Front (Alt)",
  7198. image: {
  7199. source: "./media/characters/sentri/front-alt.svg",
  7200. extra: 1750 / 1570,
  7201. bottom: 0.025
  7202. }
  7203. },
  7204. },
  7205. [
  7206. {
  7207. name: "Normal",
  7208. height: math.unit(15, "feet"),
  7209. default: true
  7210. },
  7211. {
  7212. name: "Macro",
  7213. height: math.unit(2500, "feet")
  7214. }
  7215. ]
  7216. ))
  7217. characterMakers.push(() => makeCharacter(
  7218. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7219. {
  7220. front: {
  7221. height: math.unit(5 + 8 / 12, "feet"),
  7222. weight: math.unit(130, "lbs"),
  7223. name: "Front",
  7224. image: {
  7225. source: "./media/characters/corvin/front.svg",
  7226. extra: 1803 / 1629
  7227. }
  7228. },
  7229. frontShirt: {
  7230. height: math.unit(5 + 8 / 12, "feet"),
  7231. weight: math.unit(130, "lbs"),
  7232. name: "Front (Shirt)",
  7233. image: {
  7234. source: "./media/characters/corvin/front-shirt.svg",
  7235. extra: 1803 / 1629
  7236. }
  7237. },
  7238. frontPoncho: {
  7239. height: math.unit(5 + 8 / 12, "feet"),
  7240. weight: math.unit(130, "lbs"),
  7241. name: "Front (Poncho)",
  7242. image: {
  7243. source: "./media/characters/corvin/front-poncho.svg",
  7244. extra: 1803 / 1629
  7245. }
  7246. },
  7247. side: {
  7248. height: math.unit(5 + 8 / 12, "feet"),
  7249. weight: math.unit(130, "lbs"),
  7250. name: "Side",
  7251. image: {
  7252. source: "./media/characters/corvin/side.svg",
  7253. extra: 1012 / 945
  7254. }
  7255. },
  7256. back: {
  7257. height: math.unit(5 + 8 / 12, "feet"),
  7258. weight: math.unit(130, "lbs"),
  7259. name: "Back",
  7260. image: {
  7261. source: "./media/characters/corvin/back.svg",
  7262. extra: 1803 / 1629
  7263. }
  7264. },
  7265. },
  7266. [
  7267. {
  7268. name: "Micro",
  7269. height: math.unit(3, "inches")
  7270. },
  7271. {
  7272. name: "Normal",
  7273. height: math.unit(5 + 8 / 12, "feet")
  7274. },
  7275. {
  7276. name: "Macro",
  7277. height: math.unit(300, "feet"),
  7278. default: true
  7279. },
  7280. {
  7281. name: "Megamacro",
  7282. height: math.unit(500, "miles")
  7283. }
  7284. ]
  7285. ))
  7286. characterMakers.push(() => makeCharacter(
  7287. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7288. {
  7289. front: {
  7290. height: math.unit(6, "feet"),
  7291. weight: math.unit(135, "lbs"),
  7292. name: "Front",
  7293. image: {
  7294. source: "./media/characters/q/front.svg",
  7295. extra: 854 / 752,
  7296. bottom: 0.005
  7297. }
  7298. },
  7299. back: {
  7300. height: math.unit(6, "feet"),
  7301. weight: math.unit(130, "lbs"),
  7302. name: "Back",
  7303. image: {
  7304. source: "./media/characters/q/back.svg",
  7305. extra: 854 / 752
  7306. }
  7307. },
  7308. },
  7309. [
  7310. {
  7311. name: "Macro",
  7312. height: math.unit(90, "feet"),
  7313. default: true
  7314. },
  7315. {
  7316. name: "Extra Macro",
  7317. height: math.unit(300, "feet"),
  7318. },
  7319. {
  7320. name: "BIG WALF",
  7321. height: math.unit(750, "feet"),
  7322. },
  7323. ]
  7324. ))
  7325. characterMakers.push(() => makeCharacter(
  7326. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7327. {
  7328. front: {
  7329. height: math.unit(6, "feet"),
  7330. weight: math.unit(150, "lbs"),
  7331. name: "Front",
  7332. image: {
  7333. source: "./media/characters/carley/front.svg",
  7334. extra: 3927 / 3540,
  7335. bottom: 29.2/735
  7336. }
  7337. }
  7338. },
  7339. [
  7340. {
  7341. name: "Normal",
  7342. height: math.unit(6 + 3 / 12, "feet")
  7343. },
  7344. {
  7345. name: "Macro",
  7346. height: math.unit(185, "feet"),
  7347. default: true
  7348. },
  7349. {
  7350. name: "Megamacro",
  7351. height: math.unit(8, "miles"),
  7352. },
  7353. ]
  7354. ))
  7355. characterMakers.push(() => makeCharacter(
  7356. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7357. {
  7358. front: {
  7359. height: math.unit(3, "feet"),
  7360. weight: math.unit(28, "lbs"),
  7361. name: "Front",
  7362. image: {
  7363. source: "./media/characters/citrine/front.svg"
  7364. }
  7365. }
  7366. },
  7367. [
  7368. {
  7369. name: "Normal",
  7370. height: math.unit(3, "feet"),
  7371. default: true
  7372. }
  7373. ]
  7374. ))
  7375. characterMakers.push(() => makeCharacter(
  7376. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7377. {
  7378. front: {
  7379. height: math.unit(14, "feet"),
  7380. weight: math.unit(1450, "kg"),
  7381. capacity: math.unit(15, "people"),
  7382. name: "Front",
  7383. image: {
  7384. source: "./media/characters/aura-starwind/front.svg",
  7385. extra: 1455 / 1335
  7386. }
  7387. },
  7388. side: {
  7389. height: math.unit(14, "feet"),
  7390. weight: math.unit(1450, "kg"),
  7391. capacity: math.unit(15, "people"),
  7392. name: "Side",
  7393. image: {
  7394. source: "./media/characters/aura-starwind/side.svg",
  7395. extra: 1654 / 1497
  7396. }
  7397. },
  7398. taur: {
  7399. height: math.unit(18, "feet"),
  7400. weight: math.unit(5500, "kg"),
  7401. capacity: math.unit(50, "people"),
  7402. name: "Taur",
  7403. image: {
  7404. source: "./media/characters/aura-starwind/taur.svg",
  7405. extra: 1760 / 1650
  7406. }
  7407. },
  7408. feral: {
  7409. height: math.unit(46, "feet"),
  7410. weight: math.unit(25000, "kg"),
  7411. capacity: math.unit(120, "people"),
  7412. name: "Feral",
  7413. image: {
  7414. source: "./media/characters/aura-starwind/feral.svg"
  7415. }
  7416. },
  7417. },
  7418. [
  7419. {
  7420. name: "Normal",
  7421. height: math.unit(14, "feet"),
  7422. default: true
  7423. },
  7424. {
  7425. name: "Macro",
  7426. height: math.unit(50, "meters")
  7427. },
  7428. {
  7429. name: "Megamacro",
  7430. height: math.unit(5000, "meters")
  7431. },
  7432. {
  7433. name: "Gigamacro",
  7434. height: math.unit(100000, "kilometers")
  7435. },
  7436. ]
  7437. ))
  7438. characterMakers.push(() => makeCharacter(
  7439. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7440. {
  7441. front: {
  7442. height: math.unit(2 + 7 / 12, "feet"),
  7443. weight: math.unit(32, "lbs"),
  7444. name: "Front",
  7445. image: {
  7446. source: "./media/characters/rivet/front.svg",
  7447. extra: 1716 / 1658,
  7448. bottom: 0.03
  7449. }
  7450. },
  7451. foot: {
  7452. height: math.unit(0.551, "feet"),
  7453. name: "Rivet's Foot",
  7454. image: {
  7455. source: "./media/characters/rivet/foot.svg"
  7456. },
  7457. rename: true
  7458. }
  7459. },
  7460. [
  7461. {
  7462. name: "Micro",
  7463. height: math.unit(1.5, "inches"),
  7464. },
  7465. {
  7466. name: "Normal",
  7467. height: math.unit(2 + 7 / 12, "feet"),
  7468. default: true
  7469. },
  7470. {
  7471. name: "Macro",
  7472. height: math.unit(85, "feet")
  7473. },
  7474. {
  7475. name: "Megamacro",
  7476. height: math.unit(2.2, "km")
  7477. }
  7478. ]
  7479. ))
  7480. characterMakers.push(() => makeCharacter(
  7481. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7482. {
  7483. front: {
  7484. height: math.unit(5 + 9 / 12, "feet"),
  7485. weight: math.unit(150, "lbs"),
  7486. name: "Front",
  7487. image: {
  7488. source: "./media/characters/coffee/front.svg",
  7489. extra: 3666 / 3032,
  7490. bottom: 0.04
  7491. }
  7492. },
  7493. foot: {
  7494. height: math.unit(1.29, "feet"),
  7495. name: "Foot",
  7496. image: {
  7497. source: "./media/characters/coffee/foot.svg"
  7498. }
  7499. },
  7500. },
  7501. [
  7502. {
  7503. name: "Micro",
  7504. height: math.unit(2, "inches"),
  7505. },
  7506. {
  7507. name: "Normal",
  7508. height: math.unit(5 + 9 / 12, "feet"),
  7509. default: true
  7510. },
  7511. {
  7512. name: "Macro",
  7513. height: math.unit(800, "feet")
  7514. },
  7515. {
  7516. name: "Megamacro",
  7517. height: math.unit(25, "miles")
  7518. }
  7519. ]
  7520. ))
  7521. characterMakers.push(() => makeCharacter(
  7522. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7523. {
  7524. front: {
  7525. height: math.unit(6, "feet"),
  7526. weight: math.unit(200, "lbs"),
  7527. name: "Front",
  7528. image: {
  7529. source: "./media/characters/chari-gal/front.svg",
  7530. extra: 1568 / 1385,
  7531. bottom: 0.047
  7532. }
  7533. },
  7534. gigantamax: {
  7535. height: math.unit(6 * 16, "feet"),
  7536. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7537. name: "Gigantamax",
  7538. image: {
  7539. source: "./media/characters/chari-gal/gigantamax.svg",
  7540. extra: 1124 / 888,
  7541. bottom: 0.03
  7542. }
  7543. },
  7544. },
  7545. [
  7546. {
  7547. name: "Normal",
  7548. height: math.unit(5 + 7 / 12, "feet")
  7549. },
  7550. {
  7551. name: "Macro",
  7552. height: math.unit(200, "feet"),
  7553. default: true
  7554. }
  7555. ]
  7556. ))
  7557. characterMakers.push(() => makeCharacter(
  7558. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7559. {
  7560. front: {
  7561. height: math.unit(6, "feet"),
  7562. weight: math.unit(150, "lbs"),
  7563. name: "Front",
  7564. image: {
  7565. source: "./media/characters/nova/front.svg",
  7566. extra: 5000 / 4722,
  7567. bottom: 0.02
  7568. }
  7569. }
  7570. },
  7571. [
  7572. {
  7573. name: "Micro-",
  7574. height: math.unit(0.8, "inches")
  7575. },
  7576. {
  7577. name: "Micro",
  7578. height: math.unit(2, "inches"),
  7579. default: true
  7580. },
  7581. ]
  7582. ))
  7583. characterMakers.push(() => makeCharacter(
  7584. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7585. {
  7586. front: {
  7587. height: math.unit(3 + 1 / 12, "feet"),
  7588. weight: math.unit(21.7, "lbs"),
  7589. name: "Front",
  7590. image: {
  7591. source: "./media/characters/argent/front.svg",
  7592. extra: 1471 / 1331,
  7593. bottom: 100.8 / 1575.5
  7594. }
  7595. }
  7596. },
  7597. [
  7598. {
  7599. name: "Micro",
  7600. height: math.unit(2, "inches")
  7601. },
  7602. {
  7603. name: "Normal",
  7604. height: math.unit(3 + 1 / 12, "feet"),
  7605. default: true
  7606. },
  7607. {
  7608. name: "Macro",
  7609. height: math.unit(120, "feet")
  7610. },
  7611. ]
  7612. ))
  7613. characterMakers.push(() => makeCharacter(
  7614. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7615. {
  7616. lamp: {
  7617. height: math.unit(7 * 1559 / 989, "feet"),
  7618. name: "Magic Lamp",
  7619. image: {
  7620. source: "./media/characters/mira-al-cul/lamp.svg",
  7621. extra: 1617 / 1559
  7622. }
  7623. },
  7624. front: {
  7625. height: math.unit(7, "feet"),
  7626. name: "Front",
  7627. image: {
  7628. source: "./media/characters/mira-al-cul/front.svg",
  7629. extra: 1044 / 990
  7630. }
  7631. },
  7632. },
  7633. [
  7634. {
  7635. name: "Heavily Restricted",
  7636. height: math.unit(7 * 1559 / 989, "feet")
  7637. },
  7638. {
  7639. name: "Freshly Freed",
  7640. height: math.unit(50 * 1559 / 989, "feet")
  7641. },
  7642. {
  7643. name: "World Encompassing",
  7644. height: math.unit(10000 * 1559 / 989, "miles")
  7645. },
  7646. {
  7647. name: "Galactic",
  7648. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7649. },
  7650. {
  7651. name: "Palmed Universe",
  7652. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7653. default: true
  7654. },
  7655. {
  7656. name: "Multiversal Matriarch",
  7657. height: math.unit(8.87e10, "yottameters")
  7658. },
  7659. {
  7660. name: "Void Mother",
  7661. height: math.unit(3.14e110, "yottaparsecs")
  7662. },
  7663. {
  7664. name: "Toying with Transcendence",
  7665. height: math.unit(1e307, "meters")
  7666. },
  7667. ]
  7668. ))
  7669. characterMakers.push(() => makeCharacter(
  7670. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7671. {
  7672. front: {
  7673. height: math.unit(17 + 1 / 12, "feet"),
  7674. weight: math.unit(476.2 * 5, "lbs"),
  7675. name: "Front",
  7676. image: {
  7677. source: "./media/characters/kuro-shi-uchū/front.svg",
  7678. extra: 2329 / 1835,
  7679. bottom: 0.02
  7680. }
  7681. },
  7682. },
  7683. [
  7684. {
  7685. name: "Micro",
  7686. height: math.unit(2, "inches")
  7687. },
  7688. {
  7689. name: "Normal",
  7690. height: math.unit(12, "meters")
  7691. },
  7692. {
  7693. name: "Planetary",
  7694. height: math.unit(0.00929, "AU"),
  7695. default: true
  7696. },
  7697. {
  7698. name: "Universal",
  7699. height: math.unit(20, "gigaparsecs")
  7700. },
  7701. ]
  7702. ))
  7703. characterMakers.push(() => makeCharacter(
  7704. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7705. {
  7706. front: {
  7707. height: math.unit(5 + 2 / 12, "feet"),
  7708. weight: math.unit(120, "lbs"),
  7709. name: "Front",
  7710. image: {
  7711. source: "./media/characters/katherine/front.svg",
  7712. extra: 2075 / 1969
  7713. }
  7714. },
  7715. dress: {
  7716. height: math.unit(5 + 2 / 12, "feet"),
  7717. weight: math.unit(120, "lbs"),
  7718. name: "Dress",
  7719. image: {
  7720. source: "./media/characters/katherine/dress.svg",
  7721. extra: 2258 / 2064
  7722. }
  7723. },
  7724. },
  7725. [
  7726. {
  7727. name: "Micro",
  7728. height: math.unit(1, "inches"),
  7729. default: true
  7730. },
  7731. {
  7732. name: "Normal",
  7733. height: math.unit(5 + 2 / 12, "feet")
  7734. },
  7735. {
  7736. name: "Macro",
  7737. height: math.unit(100, "meters")
  7738. },
  7739. {
  7740. name: "Megamacro",
  7741. height: math.unit(80, "miles")
  7742. },
  7743. ]
  7744. ))
  7745. characterMakers.push(() => makeCharacter(
  7746. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7747. {
  7748. front: {
  7749. height: math.unit(7 + 8 / 12, "feet"),
  7750. weight: math.unit(250, "lbs"),
  7751. name: "Front",
  7752. image: {
  7753. source: "./media/characters/yevis/front.svg",
  7754. extra: 1938 / 1755
  7755. }
  7756. }
  7757. },
  7758. [
  7759. {
  7760. name: "Mortal",
  7761. height: math.unit(7 + 8 / 12, "feet")
  7762. },
  7763. {
  7764. name: "Battle",
  7765. height: math.unit(25 + 11 / 12, "feet")
  7766. },
  7767. {
  7768. name: "Wrath",
  7769. height: math.unit(1654 + 11 / 12, "feet")
  7770. },
  7771. {
  7772. name: "Planet Destroyer",
  7773. height: math.unit(12000, "miles")
  7774. },
  7775. {
  7776. name: "Galaxy Conqueror",
  7777. height: math.unit(1.45, "zettameters"),
  7778. default: true
  7779. },
  7780. {
  7781. name: "Universal War",
  7782. height: math.unit(184, "gigaparsecs")
  7783. },
  7784. {
  7785. name: "Eternity War",
  7786. height: math.unit(1.98e55, "yottaparsecs")
  7787. },
  7788. ]
  7789. ))
  7790. characterMakers.push(() => makeCharacter(
  7791. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7792. {
  7793. front: {
  7794. height: math.unit(5 + 8 / 12, "feet"),
  7795. weight: math.unit(63, "kg"),
  7796. name: "Front",
  7797. image: {
  7798. source: "./media/characters/xavier/front.svg",
  7799. extra: 944 / 883
  7800. }
  7801. },
  7802. frontStretch: {
  7803. height: math.unit(5 + 8 / 12, "feet"),
  7804. weight: math.unit(63, "kg"),
  7805. name: "Stretching",
  7806. image: {
  7807. source: "./media/characters/xavier/front-stretch.svg",
  7808. extra: 962 / 820
  7809. }
  7810. },
  7811. },
  7812. [
  7813. {
  7814. name: "Normal",
  7815. height: math.unit(5 + 8 / 12, "feet")
  7816. },
  7817. {
  7818. name: "Macro",
  7819. height: math.unit(100, "meters"),
  7820. default: true
  7821. },
  7822. {
  7823. name: "McLargeHuge",
  7824. height: math.unit(10, "miles")
  7825. },
  7826. ]
  7827. ))
  7828. characterMakers.push(() => makeCharacter(
  7829. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7830. {
  7831. front: {
  7832. height: math.unit(5 + 5 / 12, "feet"),
  7833. weight: math.unit(150, "lb"),
  7834. name: "Front",
  7835. image: {
  7836. source: "./media/characters/joshii/front.svg"
  7837. }
  7838. },
  7839. foot: {
  7840. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7841. name: "Foot",
  7842. image: {
  7843. source: "./media/characters/joshii/foot.svg"
  7844. }
  7845. },
  7846. },
  7847. [
  7848. {
  7849. name: "Micro",
  7850. height: math.unit(2, "inches")
  7851. },
  7852. {
  7853. name: "Normal",
  7854. height: math.unit(5 + 5 / 12, "feet"),
  7855. default: true
  7856. },
  7857. {
  7858. name: "Macro",
  7859. height: math.unit(785, "feet")
  7860. },
  7861. {
  7862. name: "Megamacro",
  7863. height: math.unit(24.5, "miles")
  7864. },
  7865. ]
  7866. ))
  7867. characterMakers.push(() => makeCharacter(
  7868. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7869. {
  7870. front: {
  7871. height: math.unit(6, "feet"),
  7872. weight: math.unit(150, "lb"),
  7873. name: "Front",
  7874. image: {
  7875. source: "./media/characters/goddess-elizabeth/front.svg",
  7876. extra: 1800 / 1525,
  7877. bottom: 0.005
  7878. }
  7879. },
  7880. foot: {
  7881. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7882. name: "Foot",
  7883. image: {
  7884. source: "./media/characters/goddess-elizabeth/foot.svg"
  7885. }
  7886. },
  7887. mouth: {
  7888. height: math.unit(6, "feet"),
  7889. name: "Mouth",
  7890. image: {
  7891. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7892. }
  7893. },
  7894. },
  7895. [
  7896. {
  7897. name: "Micro",
  7898. height: math.unit(12, "feet")
  7899. },
  7900. {
  7901. name: "Normal",
  7902. height: math.unit(80, "miles"),
  7903. default: true
  7904. },
  7905. {
  7906. name: "Macro",
  7907. height: math.unit(15000, "parsecs")
  7908. },
  7909. ]
  7910. ))
  7911. characterMakers.push(() => makeCharacter(
  7912. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7913. {
  7914. front: {
  7915. height: math.unit(5 + 9 / 12, "feet"),
  7916. weight: math.unit(144, "lb"),
  7917. name: "Front",
  7918. image: {
  7919. source: "./media/characters/kara/front.svg"
  7920. }
  7921. },
  7922. feet: {
  7923. height: math.unit(6 / 6.765, "feet"),
  7924. name: "Kara's Feet",
  7925. rename: true,
  7926. image: {
  7927. source: "./media/characters/kara/feet.svg"
  7928. }
  7929. },
  7930. },
  7931. [
  7932. {
  7933. name: "Normal",
  7934. height: math.unit(5 + 9 / 12, "feet")
  7935. },
  7936. {
  7937. name: "Macro",
  7938. height: math.unit(174, "feet"),
  7939. default: true
  7940. },
  7941. ]
  7942. ))
  7943. characterMakers.push(() => makeCharacter(
  7944. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7945. {
  7946. front: {
  7947. height: math.unit(18, "feet"),
  7948. weight: math.unit(4050, "lb"),
  7949. name: "Front",
  7950. image: {
  7951. source: "./media/characters/tyrone/front.svg",
  7952. extra: 2520 / 2402,
  7953. bottom: 0.025
  7954. }
  7955. },
  7956. },
  7957. [
  7958. {
  7959. name: "Normal",
  7960. height: math.unit(18, "feet"),
  7961. default: true
  7962. },
  7963. {
  7964. name: "Macro",
  7965. height: math.unit(300, "feet")
  7966. },
  7967. ]
  7968. ))
  7969. characterMakers.push(() => makeCharacter(
  7970. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7971. {
  7972. front: {
  7973. height: math.unit(7 + 8 / 12, "feet"),
  7974. weight: math.unit(120, "lb"),
  7975. name: "Front",
  7976. image: {
  7977. source: "./media/characters/danny/front.svg",
  7978. extra: 1490 / 1350
  7979. }
  7980. },
  7981. back: {
  7982. height: math.unit(7 + 8 / 12, "feet"),
  7983. weight: math.unit(120, "lb"),
  7984. name: "Back",
  7985. image: {
  7986. source: "./media/characters/danny/back.svg",
  7987. extra: 1490 / 1350
  7988. }
  7989. },
  7990. },
  7991. [
  7992. {
  7993. name: "Normal",
  7994. height: math.unit(7 + 8 / 12, "feet"),
  7995. default: true
  7996. },
  7997. ]
  7998. ))
  7999. characterMakers.push(() => makeCharacter(
  8000. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8001. {
  8002. front: {
  8003. height: math.unit(3.5, "inches"),
  8004. weight: math.unit(19, "grams"),
  8005. name: "Front",
  8006. image: {
  8007. source: "./media/characters/mallow/front.svg",
  8008. extra: 471 / 431
  8009. }
  8010. },
  8011. back: {
  8012. height: math.unit(3.5, "inches"),
  8013. weight: math.unit(19, "grams"),
  8014. name: "Back",
  8015. image: {
  8016. source: "./media/characters/mallow/back.svg",
  8017. extra: 471 / 431
  8018. }
  8019. },
  8020. },
  8021. [
  8022. {
  8023. name: "Normal",
  8024. height: math.unit(3.5, "inches"),
  8025. default: true
  8026. },
  8027. ]
  8028. ))
  8029. characterMakers.push(() => makeCharacter(
  8030. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8031. {
  8032. front: {
  8033. height: math.unit(9, "feet"),
  8034. weight: math.unit(230, "kg"),
  8035. name: "Front",
  8036. image: {
  8037. source: "./media/characters/starry-aqua/front.svg"
  8038. }
  8039. },
  8040. back: {
  8041. height: math.unit(9, "feet"),
  8042. weight: math.unit(230, "kg"),
  8043. name: "Back",
  8044. image: {
  8045. source: "./media/characters/starry-aqua/back.svg"
  8046. }
  8047. },
  8048. hand: {
  8049. height: math.unit(9 * 0.1168, "feet"),
  8050. name: "Hand",
  8051. image: {
  8052. source: "./media/characters/starry-aqua/hand.svg"
  8053. }
  8054. },
  8055. foot: {
  8056. height: math.unit(9 * 0.18, "feet"),
  8057. name: "Foot",
  8058. image: {
  8059. source: "./media/characters/starry-aqua/foot.svg"
  8060. }
  8061. }
  8062. },
  8063. [
  8064. {
  8065. name: "Micro",
  8066. height: math.unit(3, "inches")
  8067. },
  8068. {
  8069. name: "Normal",
  8070. height: math.unit(9, "feet")
  8071. },
  8072. {
  8073. name: "Macro",
  8074. height: math.unit(300, "feet"),
  8075. default: true
  8076. },
  8077. {
  8078. name: "Megamacro",
  8079. height: math.unit(3200, "feet")
  8080. }
  8081. ]
  8082. ))
  8083. characterMakers.push(() => makeCharacter(
  8084. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8085. {
  8086. front: {
  8087. height: math.unit(6, "feet"),
  8088. weight: math.unit(230, "lb"),
  8089. name: "Front",
  8090. image: {
  8091. source: "./media/characters/luka/front.svg",
  8092. extra: 1,
  8093. bottom: 0.025
  8094. }
  8095. },
  8096. },
  8097. [
  8098. {
  8099. name: "Normal",
  8100. height: math.unit(12 + 8 / 12, "feet"),
  8101. default: true
  8102. },
  8103. {
  8104. name: "Minimacro",
  8105. height: math.unit(20, "feet")
  8106. },
  8107. {
  8108. name: "Macro",
  8109. height: math.unit(250, "feet")
  8110. },
  8111. {
  8112. name: "Megamacro",
  8113. height: math.unit(5, "miles")
  8114. },
  8115. {
  8116. name: "Gigamacro",
  8117. height: math.unit(8000, "miles")
  8118. },
  8119. ]
  8120. ))
  8121. characterMakers.push(() => makeCharacter(
  8122. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8123. {
  8124. front: {
  8125. height: math.unit(6, "feet"),
  8126. weight: math.unit(150, "lb"),
  8127. name: "Front",
  8128. image: {
  8129. source: "./media/characters/natalie-nightring/front.svg",
  8130. extra: 1,
  8131. bottom: 0.06
  8132. }
  8133. },
  8134. },
  8135. [
  8136. {
  8137. name: "Uh Oh",
  8138. height: math.unit(0.1, "mm")
  8139. },
  8140. {
  8141. name: "Small",
  8142. height: math.unit(3, "inches")
  8143. },
  8144. {
  8145. name: "Human Scale",
  8146. height: math.unit(6, "feet")
  8147. },
  8148. {
  8149. name: "Librarian",
  8150. height: math.unit(50, "feet"),
  8151. default: true
  8152. },
  8153. {
  8154. name: "Immense",
  8155. height: math.unit(200, "miles")
  8156. },
  8157. ]
  8158. ))
  8159. characterMakers.push(() => makeCharacter(
  8160. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8161. {
  8162. front: {
  8163. height: math.unit(6, "feet"),
  8164. weight: math.unit(180, "lbs"),
  8165. name: "Front",
  8166. image: {
  8167. source: "./media/characters/danni-rosie/front.svg",
  8168. extra: 1260 / 1128,
  8169. bottom: 0.022
  8170. }
  8171. },
  8172. },
  8173. [
  8174. {
  8175. name: "Micro",
  8176. height: math.unit(2, "inches"),
  8177. default: true
  8178. },
  8179. ]
  8180. ))
  8181. characterMakers.push(() => makeCharacter(
  8182. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8183. {
  8184. front: {
  8185. height: math.unit(5 + 9 / 12, "feet"),
  8186. weight: math.unit(220, "lb"),
  8187. name: "Front",
  8188. image: {
  8189. source: "./media/characters/samantha-kruse/front.svg",
  8190. extra: (985 / 935),
  8191. bottom: 0.03
  8192. }
  8193. },
  8194. frontUndressed: {
  8195. height: math.unit(5 + 9 / 12, "feet"),
  8196. weight: math.unit(220, "lb"),
  8197. name: "Front (Undressed)",
  8198. image: {
  8199. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8200. extra: (973 / 923),
  8201. bottom: 0.025
  8202. }
  8203. },
  8204. fat: {
  8205. height: math.unit(5 + 9 / 12, "feet"),
  8206. weight: math.unit(900, "lb"),
  8207. name: "Front (Fat)",
  8208. image: {
  8209. source: "./media/characters/samantha-kruse/fat.svg",
  8210. extra: 2688 / 2561
  8211. }
  8212. },
  8213. },
  8214. [
  8215. {
  8216. name: "Normal",
  8217. height: math.unit(5 + 9 / 12, "feet"),
  8218. default: true
  8219. }
  8220. ]
  8221. ))
  8222. characterMakers.push(() => makeCharacter(
  8223. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8224. {
  8225. back: {
  8226. height: math.unit(5 + 4 / 12, "feet"),
  8227. weight: math.unit(4963, "lb"),
  8228. name: "Back",
  8229. image: {
  8230. source: "./media/characters/amelia-rosie/back.svg",
  8231. extra: 1113 / 963,
  8232. bottom: 0.01
  8233. }
  8234. },
  8235. },
  8236. [
  8237. {
  8238. name: "Level 0",
  8239. height: math.unit(5 + 4 / 12, "feet")
  8240. },
  8241. {
  8242. name: "Level 1",
  8243. height: math.unit(164597, "feet"),
  8244. default: true
  8245. },
  8246. {
  8247. name: "Level 2",
  8248. height: math.unit(956243, "miles")
  8249. },
  8250. {
  8251. name: "Level 3",
  8252. height: math.unit(29421709423, "miles")
  8253. },
  8254. {
  8255. name: "Level 4",
  8256. height: math.unit(154, "lightyears")
  8257. },
  8258. {
  8259. name: "Level 5",
  8260. height: math.unit(4738272, "lightyears")
  8261. },
  8262. {
  8263. name: "Level 6",
  8264. height: math.unit(145787152896, "lightyears")
  8265. },
  8266. ]
  8267. ))
  8268. characterMakers.push(() => makeCharacter(
  8269. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8270. {
  8271. front: {
  8272. height: math.unit(5 + 11 / 12, "feet"),
  8273. weight: math.unit(65, "kg"),
  8274. name: "Front",
  8275. image: {
  8276. source: "./media/characters/rook-kitara/front.svg",
  8277. extra: 1347 / 1274,
  8278. bottom: 0.005
  8279. }
  8280. },
  8281. },
  8282. [
  8283. {
  8284. name: "Totally Unfair",
  8285. height: math.unit(1.8, "mm")
  8286. },
  8287. {
  8288. name: "Lap Rookie",
  8289. height: math.unit(1.4, "feet")
  8290. },
  8291. {
  8292. name: "Normal",
  8293. height: math.unit(5 + 11 / 12, "feet"),
  8294. default: true
  8295. },
  8296. {
  8297. name: "How Did This Happen",
  8298. height: math.unit(80, "miles")
  8299. }
  8300. ]
  8301. ))
  8302. characterMakers.push(() => makeCharacter(
  8303. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8304. {
  8305. front: {
  8306. height: math.unit(7, "feet"),
  8307. weight: math.unit(300, "lb"),
  8308. name: "Front",
  8309. image: {
  8310. source: "./media/characters/pisces/front.svg",
  8311. extra: 2255 / 2115,
  8312. bottom: 0.03
  8313. }
  8314. },
  8315. back: {
  8316. height: math.unit(7, "feet"),
  8317. weight: math.unit(300, "lb"),
  8318. name: "Back",
  8319. image: {
  8320. source: "./media/characters/pisces/back.svg",
  8321. extra: 2146 / 2055,
  8322. bottom: 0.04
  8323. }
  8324. },
  8325. },
  8326. [
  8327. {
  8328. name: "Normal",
  8329. height: math.unit(7, "feet"),
  8330. default: true
  8331. },
  8332. {
  8333. name: "Swimming Pool",
  8334. height: math.unit(12.2, "meters")
  8335. },
  8336. {
  8337. name: "Olympic Swimming Pool",
  8338. height: math.unit(56.3, "meters")
  8339. },
  8340. {
  8341. name: "Lake Superior",
  8342. height: math.unit(93900, "meters")
  8343. },
  8344. {
  8345. name: "Mediterranean Sea",
  8346. height: math.unit(644457, "meters")
  8347. },
  8348. {
  8349. name: "World's Oceans",
  8350. height: math.unit(4567491, "meters")
  8351. },
  8352. ]
  8353. ))
  8354. characterMakers.push(() => makeCharacter(
  8355. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8356. {
  8357. front: {
  8358. height: math.unit(2.3, "meters"),
  8359. weight: math.unit(120, "kg"),
  8360. name: "Front",
  8361. image: {
  8362. source: "./media/characters/zelas/front.svg"
  8363. }
  8364. },
  8365. side: {
  8366. height: math.unit(2.3, "meters"),
  8367. weight: math.unit(120, "kg"),
  8368. name: "Side",
  8369. image: {
  8370. source: "./media/characters/zelas/side.svg"
  8371. }
  8372. },
  8373. back: {
  8374. height: math.unit(2.3, "meters"),
  8375. weight: math.unit(120, "kg"),
  8376. name: "Back",
  8377. image: {
  8378. source: "./media/characters/zelas/back.svg"
  8379. }
  8380. },
  8381. foot: {
  8382. height: math.unit(1.116, "feet"),
  8383. name: "Foot",
  8384. image: {
  8385. source: "./media/characters/zelas/foot.svg"
  8386. }
  8387. },
  8388. },
  8389. [
  8390. {
  8391. name: "Normal",
  8392. height: math.unit(2.3, "meters")
  8393. },
  8394. {
  8395. name: "Macro",
  8396. height: math.unit(30, "meters"),
  8397. default: true
  8398. },
  8399. ]
  8400. ))
  8401. characterMakers.push(() => makeCharacter(
  8402. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8403. {
  8404. front: {
  8405. height: math.unit(1, "inch"),
  8406. weight: math.unit(0.21, "grams"),
  8407. name: "Front",
  8408. image: {
  8409. source: "./media/characters/talbot/front.svg",
  8410. extra: 594 / 544
  8411. }
  8412. },
  8413. },
  8414. [
  8415. {
  8416. name: "Micro",
  8417. height: math.unit(1, "inch"),
  8418. default: true
  8419. },
  8420. ]
  8421. ))
  8422. characterMakers.push(() => makeCharacter(
  8423. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8424. {
  8425. front: {
  8426. height: math.unit(3 + 3 / 12, "feet"),
  8427. weight: math.unit(51.8, "lb"),
  8428. name: "Front",
  8429. image: {
  8430. source: "./media/characters/fliss/front.svg",
  8431. extra: 840 / 640
  8432. }
  8433. },
  8434. },
  8435. [
  8436. {
  8437. name: "Teeny Tiny",
  8438. height: math.unit(1, "mm")
  8439. },
  8440. {
  8441. name: "Small",
  8442. height: math.unit(1, "inch"),
  8443. default: true
  8444. },
  8445. {
  8446. name: "Standard Sylveon",
  8447. height: math.unit(3 + 3 / 12, "feet")
  8448. },
  8449. {
  8450. name: "Large Nuisance",
  8451. height: math.unit(33, "feet")
  8452. },
  8453. {
  8454. name: "City Filler",
  8455. height: math.unit(3000, "feet")
  8456. },
  8457. {
  8458. name: "New Horizon",
  8459. height: math.unit(6000, "miles")
  8460. },
  8461. ]
  8462. ))
  8463. characterMakers.push(() => makeCharacter(
  8464. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8465. {
  8466. front: {
  8467. height: math.unit(5, "cm"),
  8468. weight: math.unit(1.94, "g"),
  8469. name: "Front",
  8470. image: {
  8471. source: "./media/characters/fleta/front.svg",
  8472. extra: 835 / 803
  8473. }
  8474. },
  8475. back: {
  8476. height: math.unit(5, "cm"),
  8477. weight: math.unit(1.94, "g"),
  8478. name: "Back",
  8479. image: {
  8480. source: "./media/characters/fleta/back.svg",
  8481. extra: 835 / 803
  8482. }
  8483. },
  8484. },
  8485. [
  8486. {
  8487. name: "Micro",
  8488. height: math.unit(5, "cm"),
  8489. default: true
  8490. },
  8491. ]
  8492. ))
  8493. characterMakers.push(() => makeCharacter(
  8494. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8495. {
  8496. front: {
  8497. height: math.unit(6, "feet"),
  8498. weight: math.unit(225, "lb"),
  8499. name: "Front",
  8500. image: {
  8501. source: "./media/characters/dominic/front.svg",
  8502. extra: 1770 / 1620,
  8503. bottom: 0.025
  8504. }
  8505. },
  8506. back: {
  8507. height: math.unit(6, "feet"),
  8508. weight: math.unit(225, "lb"),
  8509. name: "Back",
  8510. image: {
  8511. source: "./media/characters/dominic/back.svg",
  8512. extra: 1745 / 1620,
  8513. bottom: 0.065
  8514. }
  8515. },
  8516. },
  8517. [
  8518. {
  8519. name: "Nano",
  8520. height: math.unit(0.1, "mm")
  8521. },
  8522. {
  8523. name: "Micro-",
  8524. height: math.unit(1, "mm")
  8525. },
  8526. {
  8527. name: "Micro",
  8528. height: math.unit(4, "inches")
  8529. },
  8530. {
  8531. name: "Normal",
  8532. height: math.unit(6 + 4 / 12, "feet"),
  8533. default: true
  8534. },
  8535. {
  8536. name: "Macro",
  8537. height: math.unit(115, "feet")
  8538. },
  8539. {
  8540. name: "Macro+",
  8541. height: math.unit(955, "feet")
  8542. },
  8543. {
  8544. name: "Megamacro",
  8545. height: math.unit(8990, "feet")
  8546. },
  8547. {
  8548. name: "Gigmacro",
  8549. height: math.unit(9310, "miles")
  8550. },
  8551. {
  8552. name: "Teramacro",
  8553. height: math.unit(1567005010, "miles")
  8554. },
  8555. {
  8556. name: "Examacro",
  8557. height: math.unit(1425, "parsecs")
  8558. },
  8559. ]
  8560. ))
  8561. characterMakers.push(() => makeCharacter(
  8562. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8563. {
  8564. front: {
  8565. height: math.unit(400, "feet"),
  8566. weight: math.unit(44444444, "lb"),
  8567. name: "Front",
  8568. image: {
  8569. source: "./media/characters/major-colonel/front.svg"
  8570. }
  8571. },
  8572. back: {
  8573. height: math.unit(400, "feet"),
  8574. weight: math.unit(44444444, "lb"),
  8575. name: "Back",
  8576. image: {
  8577. source: "./media/characters/major-colonel/back.svg"
  8578. }
  8579. },
  8580. },
  8581. [
  8582. {
  8583. name: "Macro",
  8584. height: math.unit(400, "feet"),
  8585. default: true
  8586. },
  8587. ]
  8588. ))
  8589. characterMakers.push(() => makeCharacter(
  8590. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8591. {
  8592. catFront: {
  8593. height: math.unit(6, "feet"),
  8594. weight: math.unit(120, "lb"),
  8595. name: "Front (Cat Side)",
  8596. image: {
  8597. source: "./media/characters/axel-lycan/cat-front.svg",
  8598. extra: 430 / 402,
  8599. bottom: 43 / 472.35
  8600. }
  8601. },
  8602. catBack: {
  8603. height: math.unit(6, "feet"),
  8604. weight: math.unit(120, "lb"),
  8605. name: "Back (Cat Side)",
  8606. image: {
  8607. source: "./media/characters/axel-lycan/cat-back.svg",
  8608. extra: 447 / 419,
  8609. bottom: 23.3 / 469
  8610. }
  8611. },
  8612. wolfFront: {
  8613. height: math.unit(6, "feet"),
  8614. weight: math.unit(120, "lb"),
  8615. name: "Front (Wolf Side)",
  8616. image: {
  8617. source: "./media/characters/axel-lycan/wolf-front.svg",
  8618. extra: 485 / 456,
  8619. bottom: 19 / 504
  8620. }
  8621. },
  8622. wolfBack: {
  8623. height: math.unit(6, "feet"),
  8624. weight: math.unit(120, "lb"),
  8625. name: "Back (Wolf Side)",
  8626. image: {
  8627. source: "./media/characters/axel-lycan/wolf-back.svg",
  8628. extra: 475 / 438,
  8629. bottom: 39.2 / 514
  8630. }
  8631. },
  8632. },
  8633. [
  8634. {
  8635. name: "Macro",
  8636. height: math.unit(1, "km"),
  8637. default: true
  8638. },
  8639. ]
  8640. ))
  8641. characterMakers.push(() => makeCharacter(
  8642. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8643. {
  8644. front: {
  8645. height: math.unit(5 + 9 / 12, "feet"),
  8646. weight: math.unit(175, "lb"),
  8647. name: "Front",
  8648. image: {
  8649. source: "./media/characters/vanrel-hyena/front.svg",
  8650. extra: 1086 / 1010,
  8651. bottom: 0.04
  8652. }
  8653. },
  8654. },
  8655. [
  8656. {
  8657. name: "Normal",
  8658. height: math.unit(5 + 9 / 12, "feet"),
  8659. default: true
  8660. },
  8661. ]
  8662. ))
  8663. characterMakers.push(() => makeCharacter(
  8664. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8665. {
  8666. front: {
  8667. height: math.unit(6, "feet"),
  8668. weight: math.unit(103, "lb"),
  8669. name: "Front",
  8670. image: {
  8671. source: "./media/characters/abbott-absol/front.svg",
  8672. extra: 2010 / 1842
  8673. }
  8674. },
  8675. },
  8676. [
  8677. {
  8678. name: "Megamicro",
  8679. height: math.unit(0.1, "mm")
  8680. },
  8681. {
  8682. name: "Micro",
  8683. height: math.unit(1, "inch")
  8684. },
  8685. {
  8686. name: "Normal",
  8687. height: math.unit(6, "feet"),
  8688. default: true
  8689. },
  8690. ]
  8691. ))
  8692. characterMakers.push(() => makeCharacter(
  8693. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8694. {
  8695. front: {
  8696. height: math.unit(6, "feet"),
  8697. weight: math.unit(264, "lb"),
  8698. name: "Front",
  8699. image: {
  8700. source: "./media/characters/hector/front.svg",
  8701. extra: 2280 / 2130,
  8702. bottom: 0.07
  8703. }
  8704. },
  8705. },
  8706. [
  8707. {
  8708. name: "Normal",
  8709. height: math.unit(12.25, "foot"),
  8710. default: true
  8711. },
  8712. {
  8713. name: "Macro",
  8714. height: math.unit(160, "feet")
  8715. },
  8716. ]
  8717. ))
  8718. characterMakers.push(() => makeCharacter(
  8719. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8720. {
  8721. front: {
  8722. height: math.unit(6, "feet"),
  8723. weight: math.unit(150, "lb"),
  8724. name: "Front",
  8725. image: {
  8726. source: "./media/characters/sal/front.svg",
  8727. extra: 1846 / 1699,
  8728. bottom: 0.04
  8729. }
  8730. },
  8731. },
  8732. [
  8733. {
  8734. name: "Megamacro",
  8735. height: math.unit(10, "miles"),
  8736. default: true
  8737. },
  8738. ]
  8739. ))
  8740. characterMakers.push(() => makeCharacter(
  8741. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8742. {
  8743. front: {
  8744. height: math.unit(3, "meters"),
  8745. weight: math.unit(450, "kg"),
  8746. name: "front",
  8747. image: {
  8748. source: "./media/characters/ranger/front.svg",
  8749. extra: 2401 / 2243,
  8750. bottom: 0.05
  8751. }
  8752. },
  8753. },
  8754. [
  8755. {
  8756. name: "Normal",
  8757. height: math.unit(3, "meters"),
  8758. default: true
  8759. },
  8760. ]
  8761. ))
  8762. characterMakers.push(() => makeCharacter(
  8763. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8764. {
  8765. front: {
  8766. height: math.unit(14, "feet"),
  8767. weight: math.unit(800, "kg"),
  8768. name: "Front",
  8769. image: {
  8770. source: "./media/characters/theresa/front.svg",
  8771. extra: 3575 / 3346,
  8772. bottom: 0.03
  8773. }
  8774. },
  8775. },
  8776. [
  8777. {
  8778. name: "Normal",
  8779. height: math.unit(14, "feet"),
  8780. default: true
  8781. },
  8782. ]
  8783. ))
  8784. characterMakers.push(() => makeCharacter(
  8785. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8786. {
  8787. front: {
  8788. height: math.unit(6, "feet"),
  8789. weight: math.unit(3, "kg"),
  8790. name: "Front",
  8791. image: {
  8792. source: "./media/characters/ine/front.svg",
  8793. extra: 678 / 539,
  8794. bottom: 0.023
  8795. }
  8796. },
  8797. },
  8798. [
  8799. {
  8800. name: "Normal",
  8801. height: math.unit(2.265, "feet"),
  8802. default: true
  8803. },
  8804. ]
  8805. ))
  8806. characterMakers.push(() => makeCharacter(
  8807. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8808. {
  8809. front: {
  8810. height: math.unit(5, "feet"),
  8811. weight: math.unit(30, "kg"),
  8812. name: "Front",
  8813. image: {
  8814. source: "./media/characters/vial/front.svg",
  8815. extra: 1365 / 1277,
  8816. bottom: 0.04
  8817. }
  8818. },
  8819. },
  8820. [
  8821. {
  8822. name: "Normal",
  8823. height: math.unit(5, "feet"),
  8824. default: true
  8825. },
  8826. ]
  8827. ))
  8828. characterMakers.push(() => makeCharacter(
  8829. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8830. {
  8831. side: {
  8832. height: math.unit(3.4, "meters"),
  8833. weight: math.unit(1000, "lb"),
  8834. name: "Side",
  8835. image: {
  8836. source: "./media/characters/rovoska/side.svg",
  8837. extra: 4403 / 1515
  8838. }
  8839. },
  8840. },
  8841. [
  8842. {
  8843. name: "Normal",
  8844. height: math.unit(3.4, "meters"),
  8845. default: true
  8846. },
  8847. ]
  8848. ))
  8849. characterMakers.push(() => makeCharacter(
  8850. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8851. {
  8852. front: {
  8853. height: math.unit(8, "feet"),
  8854. weight: math.unit(315, "lb"),
  8855. name: "Front",
  8856. image: {
  8857. source: "./media/characters/gunner-rotthbauer/front.svg"
  8858. }
  8859. },
  8860. back: {
  8861. height: math.unit(8, "feet"),
  8862. weight: math.unit(315, "lb"),
  8863. name: "Back",
  8864. image: {
  8865. source: "./media/characters/gunner-rotthbauer/back.svg"
  8866. }
  8867. },
  8868. },
  8869. [
  8870. {
  8871. name: "Micro",
  8872. height: math.unit(3.5, "inches")
  8873. },
  8874. {
  8875. name: "Normal",
  8876. height: math.unit(8, "feet"),
  8877. default: true
  8878. },
  8879. {
  8880. name: "Macro",
  8881. height: math.unit(250, "feet")
  8882. },
  8883. {
  8884. name: "Megamacro",
  8885. height: math.unit(1, "AU")
  8886. },
  8887. ]
  8888. ))
  8889. characterMakers.push(() => makeCharacter(
  8890. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8891. {
  8892. front: {
  8893. height: math.unit(5 + 5 / 12, "feet"),
  8894. weight: math.unit(140, "lb"),
  8895. name: "Front",
  8896. image: {
  8897. source: "./media/characters/allatia/front.svg",
  8898. extra: 1227 / 1180,
  8899. bottom: 0.027
  8900. }
  8901. },
  8902. },
  8903. [
  8904. {
  8905. name: "Normal",
  8906. height: math.unit(5 + 5 / 12, "feet")
  8907. },
  8908. {
  8909. name: "Macro",
  8910. height: math.unit(250, "feet"),
  8911. default: true
  8912. },
  8913. {
  8914. name: "Megamacro",
  8915. height: math.unit(8, "miles")
  8916. }
  8917. ]
  8918. ))
  8919. characterMakers.push(() => makeCharacter(
  8920. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8921. {
  8922. front: {
  8923. height: math.unit(6, "feet"),
  8924. weight: math.unit(120, "lb"),
  8925. name: "Front",
  8926. image: {
  8927. source: "./media/characters/tene/front.svg",
  8928. extra: 1728 / 1578,
  8929. bottom: 0.022
  8930. }
  8931. },
  8932. stomping: {
  8933. height: math.unit(2.025, "meters"),
  8934. weight: math.unit(120, "lb"),
  8935. name: "Stomping",
  8936. image: {
  8937. source: "./media/characters/tene/stomping.svg",
  8938. extra: 938 / 873,
  8939. bottom: 0.01
  8940. }
  8941. },
  8942. sitting: {
  8943. height: math.unit(1, "meter"),
  8944. weight: math.unit(120, "lb"),
  8945. name: "Sitting",
  8946. image: {
  8947. source: "./media/characters/tene/sitting.svg",
  8948. extra: 437 / 415,
  8949. bottom: 0.1
  8950. }
  8951. },
  8952. feral: {
  8953. height: math.unit(3.9, "feet"),
  8954. weight: math.unit(250, "lb"),
  8955. name: "Feral",
  8956. image: {
  8957. source: "./media/characters/tene/feral.svg",
  8958. extra: 717 / 458,
  8959. bottom: 0.179
  8960. }
  8961. },
  8962. },
  8963. [
  8964. {
  8965. name: "Normal",
  8966. height: math.unit(6, "feet")
  8967. },
  8968. {
  8969. name: "Macro",
  8970. height: math.unit(300, "feet"),
  8971. default: true
  8972. },
  8973. {
  8974. name: "Megamacro",
  8975. height: math.unit(5, "miles")
  8976. },
  8977. ]
  8978. ))
  8979. characterMakers.push(() => makeCharacter(
  8980. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8981. {
  8982. side: {
  8983. height: math.unit(6, "feet"),
  8984. name: "Side",
  8985. image: {
  8986. source: "./media/characters/evander/side.svg",
  8987. extra: 877 / 477
  8988. }
  8989. },
  8990. },
  8991. [
  8992. {
  8993. name: "Normal",
  8994. height: math.unit(0.83, "meters"),
  8995. default: true
  8996. },
  8997. ]
  8998. ))
  8999. characterMakers.push(() => makeCharacter(
  9000. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9001. {
  9002. front: {
  9003. height: math.unit(12, "feet"),
  9004. weight: math.unit(1000, "lb"),
  9005. name: "Front",
  9006. image: {
  9007. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9008. extra: 1762 / 1611
  9009. }
  9010. },
  9011. back: {
  9012. height: math.unit(12, "feet"),
  9013. weight: math.unit(1000, "lb"),
  9014. name: "Back",
  9015. image: {
  9016. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9017. extra: 1762 / 1611
  9018. }
  9019. },
  9020. },
  9021. [
  9022. {
  9023. name: "Normal",
  9024. height: math.unit(12, "feet"),
  9025. default: true
  9026. },
  9027. {
  9028. name: "Kaiju",
  9029. height: math.unit(150, "feet")
  9030. },
  9031. ]
  9032. ))
  9033. characterMakers.push(() => makeCharacter(
  9034. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9035. {
  9036. front: {
  9037. height: math.unit(6, "feet"),
  9038. weight: math.unit(150, "lb"),
  9039. name: "Front",
  9040. image: {
  9041. source: "./media/characters/zero-alurus/front.svg"
  9042. }
  9043. },
  9044. back: {
  9045. height: math.unit(6, "feet"),
  9046. weight: math.unit(150, "lb"),
  9047. name: "Back",
  9048. image: {
  9049. source: "./media/characters/zero-alurus/back.svg"
  9050. }
  9051. },
  9052. },
  9053. [
  9054. {
  9055. name: "Normal",
  9056. height: math.unit(5 + 10 / 12, "feet")
  9057. },
  9058. {
  9059. name: "Macro",
  9060. height: math.unit(60, "feet"),
  9061. default: true
  9062. },
  9063. {
  9064. name: "Macro+",
  9065. height: math.unit(450, "feet")
  9066. },
  9067. ]
  9068. ))
  9069. characterMakers.push(() => makeCharacter(
  9070. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9071. {
  9072. front: {
  9073. height: math.unit(6, "feet"),
  9074. weight: math.unit(200, "lb"),
  9075. name: "Front",
  9076. image: {
  9077. source: "./media/characters/mega-shi/front.svg",
  9078. extra: 1279 / 1250,
  9079. bottom: 0.02
  9080. }
  9081. },
  9082. back: {
  9083. height: math.unit(6, "feet"),
  9084. weight: math.unit(200, "lb"),
  9085. name: "Back",
  9086. image: {
  9087. source: "./media/characters/mega-shi/back.svg",
  9088. extra: 1279 / 1250,
  9089. bottom: 0.02
  9090. }
  9091. },
  9092. },
  9093. [
  9094. {
  9095. name: "Micro",
  9096. height: math.unit(16 + 6 / 12, "feet")
  9097. },
  9098. {
  9099. name: "Third Dimension",
  9100. height: math.unit(40, "meters")
  9101. },
  9102. {
  9103. name: "Normal",
  9104. height: math.unit(660, "feet"),
  9105. default: true
  9106. },
  9107. {
  9108. name: "Megamacro",
  9109. height: math.unit(10, "miles")
  9110. },
  9111. {
  9112. name: "Planetary Launch",
  9113. height: math.unit(500, "miles")
  9114. },
  9115. {
  9116. name: "Interstellar",
  9117. height: math.unit(1e9, "miles")
  9118. },
  9119. {
  9120. name: "Leaving the Universe",
  9121. height: math.unit(1, "gigaparsec")
  9122. },
  9123. {
  9124. name: "Travelling Universes",
  9125. height: math.unit(30e15, "parsecs")
  9126. },
  9127. ]
  9128. ))
  9129. characterMakers.push(() => makeCharacter(
  9130. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9131. {
  9132. front: {
  9133. height: math.unit(6, "feet"),
  9134. weight: math.unit(150, "lb"),
  9135. name: "Front",
  9136. image: {
  9137. source: "./media/characters/odyssey/front.svg",
  9138. extra: 1782 / 1582,
  9139. bottom: 0.01
  9140. }
  9141. },
  9142. side: {
  9143. height: math.unit(5.7, "feet"),
  9144. weight: math.unit(140, "lb"),
  9145. name: "Side",
  9146. image: {
  9147. source: "./media/characters/odyssey/side.svg",
  9148. extra: 6462 / 5700
  9149. }
  9150. },
  9151. },
  9152. [
  9153. {
  9154. name: "Normal",
  9155. height: math.unit(5 + 4 / 12, "feet")
  9156. },
  9157. {
  9158. name: "Macro",
  9159. height: math.unit(1, "km")
  9160. },
  9161. {
  9162. name: "Megamacro",
  9163. height: math.unit(3000, "km")
  9164. },
  9165. {
  9166. name: "Gigamacro",
  9167. height: math.unit(1, "AU"),
  9168. default: true
  9169. },
  9170. {
  9171. name: "Omniversal",
  9172. height: math.unit(100e14, "lightyears")
  9173. },
  9174. ]
  9175. ))
  9176. characterMakers.push(() => makeCharacter(
  9177. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9178. {
  9179. front: {
  9180. height: math.unit(6, "feet"),
  9181. weight: math.unit(300, "lb"),
  9182. name: "Front",
  9183. image: {
  9184. source: "./media/characters/mekuto/front.svg",
  9185. extra: 921 / 832,
  9186. bottom: 0.03
  9187. }
  9188. },
  9189. hand: {
  9190. height: math.unit(6 / 10.24, "feet"),
  9191. name: "Hand",
  9192. image: {
  9193. source: "./media/characters/mekuto/hand.svg"
  9194. }
  9195. },
  9196. foot: {
  9197. height: math.unit(6 / 5.05, "feet"),
  9198. name: "Foot",
  9199. image: {
  9200. source: "./media/characters/mekuto/foot.svg"
  9201. }
  9202. },
  9203. },
  9204. [
  9205. {
  9206. name: "Minimicro",
  9207. height: math.unit(0.2, "inches")
  9208. },
  9209. {
  9210. name: "Micro",
  9211. height: math.unit(1.5, "inches")
  9212. },
  9213. {
  9214. name: "Normal",
  9215. height: math.unit(5 + 11 / 12, "feet"),
  9216. default: true
  9217. },
  9218. {
  9219. name: "Minimacro",
  9220. height: math.unit(17 + 9 / 12, "feet")
  9221. },
  9222. {
  9223. name: "Macro",
  9224. height: math.unit(177.5, "feet")
  9225. },
  9226. {
  9227. name: "Megamacro",
  9228. height: math.unit(152, "miles")
  9229. },
  9230. ]
  9231. ))
  9232. characterMakers.push(() => makeCharacter(
  9233. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9234. {
  9235. front: {
  9236. height: math.unit(6.5, "inches"),
  9237. weight: math.unit(13, "oz"),
  9238. name: "Front",
  9239. image: {
  9240. source: "./media/characters/dafydd-tomos/front.svg",
  9241. extra: 2990 / 2603,
  9242. bottom: 0.03
  9243. }
  9244. },
  9245. },
  9246. [
  9247. {
  9248. name: "Micro",
  9249. height: math.unit(6.5, "inches"),
  9250. default: true
  9251. },
  9252. ]
  9253. ))
  9254. characterMakers.push(() => makeCharacter(
  9255. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9256. {
  9257. front: {
  9258. height: math.unit(6, "feet"),
  9259. weight: math.unit(150, "lb"),
  9260. name: "Front",
  9261. image: {
  9262. source: "./media/characters/splinter/front.svg",
  9263. extra: 2990 / 2882,
  9264. bottom: 0.04
  9265. }
  9266. },
  9267. back: {
  9268. height: math.unit(6, "feet"),
  9269. weight: math.unit(150, "lb"),
  9270. name: "Back",
  9271. image: {
  9272. source: "./media/characters/splinter/back.svg",
  9273. extra: 2990 / 2882,
  9274. bottom: 0.04
  9275. }
  9276. },
  9277. },
  9278. [
  9279. {
  9280. name: "Normal",
  9281. height: math.unit(6, "feet")
  9282. },
  9283. {
  9284. name: "Macro",
  9285. height: math.unit(230, "meters"),
  9286. default: true
  9287. },
  9288. ]
  9289. ))
  9290. characterMakers.push(() => makeCharacter(
  9291. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9292. {
  9293. front: {
  9294. height: math.unit(4 + 10 / 12, "feet"),
  9295. weight: math.unit(480, "lb"),
  9296. name: "Front",
  9297. image: {
  9298. source: "./media/characters/snow-gabumon/front.svg",
  9299. extra: 1140 / 963,
  9300. bottom: 0.058
  9301. }
  9302. },
  9303. back: {
  9304. height: math.unit(4 + 10 / 12, "feet"),
  9305. weight: math.unit(480, "lb"),
  9306. name: "Back",
  9307. image: {
  9308. source: "./media/characters/snow-gabumon/back.svg",
  9309. extra: 1115 / 962,
  9310. bottom: 0.041
  9311. }
  9312. },
  9313. frontUndresed: {
  9314. height: math.unit(4 + 10 / 12, "feet"),
  9315. weight: math.unit(480, "lb"),
  9316. name: "Front (Undressed)",
  9317. image: {
  9318. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9319. extra: 1061 / 960,
  9320. bottom: 0.045
  9321. }
  9322. },
  9323. },
  9324. [
  9325. {
  9326. name: "Micro",
  9327. height: math.unit(1, "inch")
  9328. },
  9329. {
  9330. name: "Normal",
  9331. height: math.unit(4 + 10 / 12, "feet"),
  9332. default: true
  9333. },
  9334. {
  9335. name: "Macro",
  9336. height: math.unit(200, "feet")
  9337. },
  9338. {
  9339. name: "Megamacro",
  9340. height: math.unit(120, "miles")
  9341. },
  9342. {
  9343. name: "Gigamacro",
  9344. height: math.unit(9800, "miles")
  9345. },
  9346. ]
  9347. ))
  9348. characterMakers.push(() => makeCharacter(
  9349. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9350. {
  9351. front: {
  9352. height: math.unit(1.7, "meters"),
  9353. weight: math.unit(140, "lb"),
  9354. name: "Front",
  9355. image: {
  9356. source: "./media/characters/moody/front.svg",
  9357. extra: 3226 / 3007,
  9358. bottom: 0.087
  9359. }
  9360. },
  9361. },
  9362. [
  9363. {
  9364. name: "Micro",
  9365. height: math.unit(1, "mm")
  9366. },
  9367. {
  9368. name: "Normal",
  9369. height: math.unit(1.7, "meters"),
  9370. default: true
  9371. },
  9372. {
  9373. name: "Macro",
  9374. height: math.unit(80, "meters")
  9375. },
  9376. {
  9377. name: "Macro+",
  9378. height: math.unit(500, "meters")
  9379. },
  9380. ]
  9381. ))
  9382. characterMakers.push(() => makeCharacter(
  9383. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9384. {
  9385. front: {
  9386. height: math.unit(6, "feet"),
  9387. weight: math.unit(150, "lb"),
  9388. name: "Front",
  9389. image: {
  9390. source: "./media/characters/zyas/front.svg",
  9391. extra: 1180 / 1120,
  9392. bottom: 0.045
  9393. }
  9394. },
  9395. },
  9396. [
  9397. {
  9398. name: "Normal",
  9399. height: math.unit(10, "feet"),
  9400. default: true
  9401. },
  9402. {
  9403. name: "Macro",
  9404. height: math.unit(500, "feet")
  9405. },
  9406. {
  9407. name: "Megamacro",
  9408. height: math.unit(5, "miles")
  9409. },
  9410. {
  9411. name: "Teramacro",
  9412. height: math.unit(150000, "miles")
  9413. },
  9414. ]
  9415. ))
  9416. characterMakers.push(() => makeCharacter(
  9417. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9418. {
  9419. front: {
  9420. height: math.unit(6, "feet"),
  9421. weight: math.unit(150, "lb"),
  9422. name: "Front",
  9423. image: {
  9424. source: "./media/characters/cuon/front.svg",
  9425. extra: 1390 / 1320,
  9426. bottom: 0.008
  9427. }
  9428. },
  9429. },
  9430. [
  9431. {
  9432. name: "Micro",
  9433. height: math.unit(3, "inches")
  9434. },
  9435. {
  9436. name: "Normal",
  9437. height: math.unit(18 + 9 / 12, "feet"),
  9438. default: true
  9439. },
  9440. {
  9441. name: "Macro",
  9442. height: math.unit(360, "feet")
  9443. },
  9444. {
  9445. name: "Megamacro",
  9446. height: math.unit(360, "miles")
  9447. },
  9448. ]
  9449. ))
  9450. characterMakers.push(() => makeCharacter(
  9451. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9452. {
  9453. front: {
  9454. height: math.unit(2.4, "meters"),
  9455. weight: math.unit(70, "kg"),
  9456. name: "Front",
  9457. image: {
  9458. source: "./media/characters/nyanuxk/front.svg",
  9459. extra: 1172 / 1084,
  9460. bottom: 0.065
  9461. }
  9462. },
  9463. side: {
  9464. height: math.unit(2.4, "meters"),
  9465. weight: math.unit(70, "kg"),
  9466. name: "Side",
  9467. image: {
  9468. source: "./media/characters/nyanuxk/side.svg",
  9469. extra: 1190 / 1132,
  9470. bottom: 0.007
  9471. }
  9472. },
  9473. back: {
  9474. height: math.unit(2.4, "meters"),
  9475. weight: math.unit(70, "kg"),
  9476. name: "Back",
  9477. image: {
  9478. source: "./media/characters/nyanuxk/back.svg",
  9479. extra: 1200 / 1141,
  9480. bottom: 0.015
  9481. }
  9482. },
  9483. foot: {
  9484. height: math.unit(0.52, "meters"),
  9485. name: "Foot",
  9486. image: {
  9487. source: "./media/characters/nyanuxk/foot.svg"
  9488. }
  9489. },
  9490. },
  9491. [
  9492. {
  9493. name: "Micro",
  9494. height: math.unit(2, "cm")
  9495. },
  9496. {
  9497. name: "Normal",
  9498. height: math.unit(2.4, "meters"),
  9499. default: true
  9500. },
  9501. {
  9502. name: "Smaller Macro",
  9503. height: math.unit(120, "meters")
  9504. },
  9505. {
  9506. name: "Bigger Macro",
  9507. height: math.unit(1.2, "km")
  9508. },
  9509. {
  9510. name: "Megamacro",
  9511. height: math.unit(15, "kilometers")
  9512. },
  9513. {
  9514. name: "Gigamacro",
  9515. height: math.unit(2000, "km")
  9516. },
  9517. {
  9518. name: "Teramacro",
  9519. height: math.unit(500000, "km")
  9520. },
  9521. ]
  9522. ))
  9523. characterMakers.push(() => makeCharacter(
  9524. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9525. {
  9526. side: {
  9527. height: math.unit(6, "feet"),
  9528. name: "Side",
  9529. image: {
  9530. source: "./media/characters/ailbhe/side.svg",
  9531. extra: 757 / 464,
  9532. bottom: 0.041
  9533. }
  9534. },
  9535. },
  9536. [
  9537. {
  9538. name: "Normal",
  9539. height: math.unit(1.07, "meters"),
  9540. default: true
  9541. },
  9542. ]
  9543. ))
  9544. characterMakers.push(() => makeCharacter(
  9545. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9546. {
  9547. front: {
  9548. height: math.unit(6, "feet"),
  9549. weight: math.unit(120, "kg"),
  9550. name: "Front",
  9551. image: {
  9552. source: "./media/characters/zevulfius/front.svg",
  9553. extra: 965 / 903
  9554. }
  9555. },
  9556. side: {
  9557. height: math.unit(6, "feet"),
  9558. weight: math.unit(120, "kg"),
  9559. name: "Side",
  9560. image: {
  9561. source: "./media/characters/zevulfius/side.svg",
  9562. extra: 939 / 900
  9563. }
  9564. },
  9565. back: {
  9566. height: math.unit(6, "feet"),
  9567. weight: math.unit(120, "kg"),
  9568. name: "Back",
  9569. image: {
  9570. source: "./media/characters/zevulfius/back.svg",
  9571. extra: 918 / 854,
  9572. bottom: 0.005
  9573. }
  9574. },
  9575. foot: {
  9576. height: math.unit(6 / 3.72, "feet"),
  9577. name: "Foot",
  9578. image: {
  9579. source: "./media/characters/zevulfius/foot.svg"
  9580. }
  9581. },
  9582. },
  9583. [
  9584. {
  9585. name: "Macro",
  9586. height: math.unit(750, "meters")
  9587. },
  9588. {
  9589. name: "Megamacro",
  9590. height: math.unit(20, "km"),
  9591. default: true
  9592. },
  9593. {
  9594. name: "Gigamacro",
  9595. height: math.unit(2000, "km")
  9596. },
  9597. {
  9598. name: "Teramacro",
  9599. height: math.unit(250000, "km")
  9600. },
  9601. ]
  9602. ))
  9603. characterMakers.push(() => makeCharacter(
  9604. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9605. {
  9606. front: {
  9607. height: math.unit(100, "feet"),
  9608. weight: math.unit(350, "kg"),
  9609. name: "Front",
  9610. image: {
  9611. source: "./media/characters/rikes/front.svg",
  9612. extra: 1565 / 1483,
  9613. bottom: 0.017
  9614. }
  9615. },
  9616. },
  9617. [
  9618. {
  9619. name: "Macro",
  9620. height: math.unit(100, "feet"),
  9621. default: true
  9622. },
  9623. ]
  9624. ))
  9625. characterMakers.push(() => makeCharacter(
  9626. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9627. {
  9628. anthro: {
  9629. height: math.unit(8, "feet"),
  9630. weight: math.unit(120, "kg"),
  9631. name: "Anthro",
  9632. image: {
  9633. source: "./media/characters/adam-silver-mane/anthro.svg",
  9634. extra: 5743 / 5339,
  9635. bottom: 0.07
  9636. }
  9637. },
  9638. taur: {
  9639. height: math.unit(16, "feet"),
  9640. weight: math.unit(1500, "kg"),
  9641. name: "Taur",
  9642. image: {
  9643. source: "./media/characters/adam-silver-mane/taur.svg",
  9644. extra: 1713 / 1571,
  9645. bottom: 0.01
  9646. }
  9647. },
  9648. },
  9649. [
  9650. {
  9651. name: "Normal",
  9652. height: math.unit(8, "feet")
  9653. },
  9654. {
  9655. name: "Minimacro",
  9656. height: math.unit(80, "feet")
  9657. },
  9658. {
  9659. name: "Macro",
  9660. height: math.unit(800, "feet"),
  9661. default: true
  9662. },
  9663. {
  9664. name: "Megamacro",
  9665. height: math.unit(8000, "feet")
  9666. },
  9667. {
  9668. name: "Gigamacro",
  9669. height: math.unit(800, "miles")
  9670. },
  9671. {
  9672. name: "Teramacro",
  9673. height: math.unit(80000, "miles")
  9674. },
  9675. {
  9676. name: "Celestial",
  9677. height: math.unit(8e6, "miles")
  9678. },
  9679. {
  9680. name: "Star Dragon",
  9681. height: math.unit(800000, "parsecs")
  9682. },
  9683. {
  9684. name: "Godly",
  9685. height: math.unit(800, "teraparsecs")
  9686. },
  9687. ]
  9688. ))
  9689. characterMakers.push(() => makeCharacter(
  9690. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9691. {
  9692. front: {
  9693. height: math.unit(6, "feet"),
  9694. weight: math.unit(150, "lb"),
  9695. name: "Front",
  9696. image: {
  9697. source: "./media/characters/ky'owin/front.svg",
  9698. extra: 3888 / 3068,
  9699. bottom: 0.015
  9700. }
  9701. },
  9702. },
  9703. [
  9704. {
  9705. name: "Normal",
  9706. height: math.unit(6 + 8 / 12, "feet")
  9707. },
  9708. {
  9709. name: "Large",
  9710. height: math.unit(68, "feet")
  9711. },
  9712. {
  9713. name: "Macro",
  9714. height: math.unit(132, "feet")
  9715. },
  9716. {
  9717. name: "Macro+",
  9718. height: math.unit(340, "feet")
  9719. },
  9720. {
  9721. name: "Macro++",
  9722. height: math.unit(680, "feet"),
  9723. default: true
  9724. },
  9725. {
  9726. name: "Megamacro",
  9727. height: math.unit(1, "mile")
  9728. },
  9729. {
  9730. name: "Megamacro+",
  9731. height: math.unit(10, "miles")
  9732. },
  9733. ]
  9734. ))
  9735. characterMakers.push(() => makeCharacter(
  9736. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9737. {
  9738. front: {
  9739. height: math.unit(4, "feet"),
  9740. weight: math.unit(50, "lb"),
  9741. name: "Front",
  9742. image: {
  9743. source: "./media/characters/mal/front.svg",
  9744. extra: 785 / 724,
  9745. bottom: 0.07
  9746. }
  9747. },
  9748. },
  9749. [
  9750. {
  9751. name: "Micro",
  9752. height: math.unit(4, "inches")
  9753. },
  9754. {
  9755. name: "Normal",
  9756. height: math.unit(4, "feet"),
  9757. default: true
  9758. },
  9759. {
  9760. name: "Macro",
  9761. height: math.unit(200, "feet")
  9762. },
  9763. ]
  9764. ))
  9765. characterMakers.push(() => makeCharacter(
  9766. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9767. {
  9768. front: {
  9769. height: math.unit(6, "feet"),
  9770. weight: math.unit(150, "lb"),
  9771. name: "Front",
  9772. image: {
  9773. source: "./media/characters/jordan-deware/front.svg",
  9774. extra: 1191 / 1012
  9775. }
  9776. },
  9777. },
  9778. [
  9779. {
  9780. name: "Nano",
  9781. height: math.unit(0.01, "mm")
  9782. },
  9783. {
  9784. name: "Minimicro",
  9785. height: math.unit(1, "mm")
  9786. },
  9787. {
  9788. name: "Micro",
  9789. height: math.unit(0.5, "inches")
  9790. },
  9791. {
  9792. name: "Normal",
  9793. height: math.unit(4, "feet"),
  9794. default: true
  9795. },
  9796. {
  9797. name: "Minimacro",
  9798. height: math.unit(40, "meters")
  9799. },
  9800. {
  9801. name: "Small Macro",
  9802. height: math.unit(400, "meters")
  9803. },
  9804. {
  9805. name: "Macro",
  9806. height: math.unit(4, "miles")
  9807. },
  9808. {
  9809. name: "Megamacro",
  9810. height: math.unit(40, "miles")
  9811. },
  9812. {
  9813. name: "Megamacro+",
  9814. height: math.unit(400, "miles")
  9815. },
  9816. {
  9817. name: "Gigamacro",
  9818. height: math.unit(400000, "miles")
  9819. },
  9820. ]
  9821. ))
  9822. characterMakers.push(() => makeCharacter(
  9823. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9824. {
  9825. side: {
  9826. height: math.unit(6, "feet"),
  9827. weight: math.unit(150, "lb"),
  9828. name: "Side",
  9829. image: {
  9830. source: "./media/characters/kimiko/side.svg",
  9831. extra: 600 / 358
  9832. }
  9833. },
  9834. },
  9835. [
  9836. {
  9837. name: "Normal",
  9838. height: math.unit(15, "feet"),
  9839. default: true
  9840. },
  9841. {
  9842. name: "Macro",
  9843. height: math.unit(220, "feet")
  9844. },
  9845. {
  9846. name: "Macro+",
  9847. height: math.unit(1450, "feet")
  9848. },
  9849. {
  9850. name: "Megamacro",
  9851. height: math.unit(11500, "feet")
  9852. },
  9853. {
  9854. name: "Gigamacro",
  9855. height: math.unit(9500, "miles")
  9856. },
  9857. {
  9858. name: "Teramacro",
  9859. height: math.unit(2208005005, "miles")
  9860. },
  9861. {
  9862. name: "Examacro",
  9863. height: math.unit(2750, "parsecs")
  9864. },
  9865. {
  9866. name: "Zettamacro",
  9867. height: math.unit(101500, "parsecs")
  9868. },
  9869. ]
  9870. ))
  9871. characterMakers.push(() => makeCharacter(
  9872. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9873. {
  9874. front: {
  9875. height: math.unit(6, "feet"),
  9876. weight: math.unit(70, "kg"),
  9877. name: "Front",
  9878. image: {
  9879. source: "./media/characters/andrew-sleepy/front.svg"
  9880. }
  9881. },
  9882. side: {
  9883. height: math.unit(6, "feet"),
  9884. weight: math.unit(70, "kg"),
  9885. name: "Side",
  9886. image: {
  9887. source: "./media/characters/andrew-sleepy/side.svg"
  9888. }
  9889. },
  9890. },
  9891. [
  9892. {
  9893. name: "Micro",
  9894. height: math.unit(1, "mm"),
  9895. default: true
  9896. },
  9897. ]
  9898. ))
  9899. characterMakers.push(() => makeCharacter(
  9900. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9901. {
  9902. front: {
  9903. height: math.unit(6, "feet"),
  9904. weight: math.unit(150, "lb"),
  9905. name: "Front",
  9906. image: {
  9907. source: "./media/characters/judio/front.svg",
  9908. extra: 1258 / 1110
  9909. }
  9910. },
  9911. },
  9912. [
  9913. {
  9914. name: "Normal",
  9915. height: math.unit(5 + 6 / 12, "feet")
  9916. },
  9917. {
  9918. name: "Macro",
  9919. height: math.unit(1000, "feet"),
  9920. default: true
  9921. },
  9922. {
  9923. name: "Megamacro",
  9924. height: math.unit(10, "miles")
  9925. },
  9926. ]
  9927. ))
  9928. characterMakers.push(() => makeCharacter(
  9929. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9930. {
  9931. front: {
  9932. height: math.unit(6, "feet"),
  9933. weight: math.unit(68, "kg"),
  9934. name: "Front",
  9935. image: {
  9936. source: "./media/characters/nomaxice/front.svg",
  9937. extra: 1498 / 1073,
  9938. bottom: 0.075
  9939. }
  9940. },
  9941. foot: {
  9942. height: math.unit(1.1, "feet"),
  9943. name: "Foot",
  9944. image: {
  9945. source: "./media/characters/nomaxice/foot.svg"
  9946. }
  9947. },
  9948. },
  9949. [
  9950. {
  9951. name: "Micro",
  9952. height: math.unit(8, "cm")
  9953. },
  9954. {
  9955. name: "Norm",
  9956. height: math.unit(1.82, "m")
  9957. },
  9958. {
  9959. name: "Norm+",
  9960. height: math.unit(8.8, "feet")
  9961. },
  9962. {
  9963. name: "Big",
  9964. height: math.unit(8, "meters"),
  9965. default: true
  9966. },
  9967. {
  9968. name: "Macro",
  9969. height: math.unit(18, "meters")
  9970. },
  9971. {
  9972. name: "Macro+",
  9973. height: math.unit(88, "meters")
  9974. },
  9975. ]
  9976. ))
  9977. characterMakers.push(() => makeCharacter(
  9978. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9979. {
  9980. front: {
  9981. height: math.unit(12, "feet"),
  9982. weight: math.unit(1.5, "tons"),
  9983. name: "Front",
  9984. image: {
  9985. source: "./media/characters/dydros/front.svg",
  9986. extra: 863 / 800,
  9987. bottom: 0.015
  9988. }
  9989. },
  9990. back: {
  9991. height: math.unit(12, "feet"),
  9992. weight: math.unit(1.5, "tons"),
  9993. name: "Back",
  9994. image: {
  9995. source: "./media/characters/dydros/back.svg",
  9996. extra: 900 / 843,
  9997. bottom: 0.005
  9998. }
  9999. },
  10000. },
  10001. [
  10002. {
  10003. name: "Normal",
  10004. height: math.unit(12, "feet"),
  10005. default: true
  10006. },
  10007. ]
  10008. ))
  10009. characterMakers.push(() => makeCharacter(
  10010. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10011. {
  10012. front: {
  10013. height: math.unit(6, "feet"),
  10014. weight: math.unit(100, "kg"),
  10015. name: "Front",
  10016. image: {
  10017. source: "./media/characters/riggi/front.svg",
  10018. extra: 5787 / 5303
  10019. }
  10020. },
  10021. hyper: {
  10022. height: math.unit(6 * 5 / 3, "feet"),
  10023. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10024. name: "Hyper",
  10025. image: {
  10026. source: "./media/characters/riggi/hyper.svg",
  10027. extra: 3595 / 3485
  10028. }
  10029. },
  10030. },
  10031. [
  10032. {
  10033. name: "Small Macro",
  10034. height: math.unit(50, "feet")
  10035. },
  10036. {
  10037. name: "Default",
  10038. height: math.unit(200, "feet"),
  10039. default: true
  10040. },
  10041. {
  10042. name: "Loom",
  10043. height: math.unit(10000, "feet")
  10044. },
  10045. {
  10046. name: "Cruising Altitude",
  10047. height: math.unit(30000, "feet")
  10048. },
  10049. {
  10050. name: "Megamacro",
  10051. height: math.unit(100, "miles")
  10052. },
  10053. {
  10054. name: "Continent Sized",
  10055. height: math.unit(2800, "miles")
  10056. },
  10057. {
  10058. name: "Earth Sized",
  10059. height: math.unit(8000, "miles")
  10060. },
  10061. ]
  10062. ))
  10063. characterMakers.push(() => makeCharacter(
  10064. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10065. {
  10066. front: {
  10067. height: math.unit(6, "feet"),
  10068. weight: math.unit(250, "lb"),
  10069. name: "Front",
  10070. image: {
  10071. source: "./media/characters/alexi/front.svg",
  10072. extra: 3483 / 3291,
  10073. bottom: 0.04
  10074. }
  10075. },
  10076. back: {
  10077. height: math.unit(6, "feet"),
  10078. weight: math.unit(250, "lb"),
  10079. name: "Back",
  10080. image: {
  10081. source: "./media/characters/alexi/back.svg",
  10082. extra: 3533 / 3356,
  10083. bottom: 0.021
  10084. }
  10085. },
  10086. frontTransforming: {
  10087. height: math.unit(8.58, "feet"),
  10088. weight: math.unit(1300, "lb"),
  10089. name: "Transforming",
  10090. image: {
  10091. source: "./media/characters/alexi/front-transforming.svg",
  10092. extra: 437 / 409,
  10093. bottom: 19 / 458.66
  10094. }
  10095. },
  10096. frontTransformed: {
  10097. height: math.unit(12.5, "feet"),
  10098. weight: math.unit(4000, "lb"),
  10099. name: "Transformed",
  10100. image: {
  10101. source: "./media/characters/alexi/front-transformed.svg",
  10102. extra: 639 / 614,
  10103. bottom: 30.55 / 671
  10104. }
  10105. },
  10106. },
  10107. [
  10108. {
  10109. name: "Normal",
  10110. height: math.unit(3, "meters"),
  10111. default: true
  10112. },
  10113. {
  10114. name: "Minimacro",
  10115. height: math.unit(30, "meters")
  10116. },
  10117. {
  10118. name: "Macro",
  10119. height: math.unit(500, "meters")
  10120. },
  10121. {
  10122. name: "Megamacro",
  10123. height: math.unit(9000, "km")
  10124. },
  10125. {
  10126. name: "Teramacro",
  10127. height: math.unit(384000, "km")
  10128. },
  10129. ]
  10130. ))
  10131. characterMakers.push(() => makeCharacter(
  10132. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10133. {
  10134. front: {
  10135. height: math.unit(6, "feet"),
  10136. weight: math.unit(150, "lb"),
  10137. name: "Front",
  10138. image: {
  10139. source: "./media/characters/kayroo/front.svg",
  10140. extra: 1153 / 1038,
  10141. bottom: 0.06
  10142. }
  10143. },
  10144. foot: {
  10145. height: math.unit(6, "feet"),
  10146. weight: math.unit(150, "lb"),
  10147. name: "Foot",
  10148. image: {
  10149. source: "./media/characters/kayroo/foot.svg"
  10150. }
  10151. },
  10152. },
  10153. [
  10154. {
  10155. name: "Normal",
  10156. height: math.unit(8, "feet"),
  10157. default: true
  10158. },
  10159. {
  10160. name: "Minimacro",
  10161. height: math.unit(250, "feet")
  10162. },
  10163. {
  10164. name: "Macro",
  10165. height: math.unit(2800, "feet")
  10166. },
  10167. {
  10168. name: "Megamacro",
  10169. height: math.unit(5200, "feet")
  10170. },
  10171. {
  10172. name: "Gigamacro",
  10173. height: math.unit(27000, "feet")
  10174. },
  10175. {
  10176. name: "Omega",
  10177. height: math.unit(45000, "feet")
  10178. },
  10179. ]
  10180. ))
  10181. characterMakers.push(() => makeCharacter(
  10182. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10183. {
  10184. front: {
  10185. height: math.unit(18, "feet"),
  10186. weight: math.unit(5800, "lb"),
  10187. name: "Front",
  10188. image: {
  10189. source: "./media/characters/rhys/front.svg",
  10190. extra: 3386 / 3090,
  10191. bottom: 0.07
  10192. }
  10193. },
  10194. },
  10195. [
  10196. {
  10197. name: "Normal",
  10198. height: math.unit(18, "feet"),
  10199. default: true
  10200. },
  10201. {
  10202. name: "Working Size",
  10203. height: math.unit(200, "feet")
  10204. },
  10205. {
  10206. name: "Demolition Size",
  10207. height: math.unit(2000, "feet")
  10208. },
  10209. {
  10210. name: "Maximum Licensed Size",
  10211. height: math.unit(5, "miles")
  10212. },
  10213. {
  10214. name: "Maximum Observed Size",
  10215. height: math.unit(10, "yottameters")
  10216. },
  10217. ]
  10218. ))
  10219. characterMakers.push(() => makeCharacter(
  10220. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10221. {
  10222. front: {
  10223. height: math.unit(6, "feet"),
  10224. weight: math.unit(250, "lb"),
  10225. name: "Front",
  10226. image: {
  10227. source: "./media/characters/toto/front.svg",
  10228. extra: 527 / 479,
  10229. bottom: 0.05
  10230. }
  10231. },
  10232. },
  10233. [
  10234. {
  10235. name: "Micro",
  10236. height: math.unit(3, "feet")
  10237. },
  10238. {
  10239. name: "Normal",
  10240. height: math.unit(10, "feet")
  10241. },
  10242. {
  10243. name: "Macro",
  10244. height: math.unit(150, "feet"),
  10245. default: true
  10246. },
  10247. {
  10248. name: "Megamacro",
  10249. height: math.unit(1200, "feet")
  10250. },
  10251. ]
  10252. ))
  10253. characterMakers.push(() => makeCharacter(
  10254. { name: "King", species: ["lion"], tags: ["anthro"] },
  10255. {
  10256. back: {
  10257. height: math.unit(6, "feet"),
  10258. weight: math.unit(150, "lb"),
  10259. name: "Back",
  10260. image: {
  10261. source: "./media/characters/king/back.svg"
  10262. }
  10263. },
  10264. },
  10265. [
  10266. {
  10267. name: "Micro",
  10268. height: math.unit(2, "inches")
  10269. },
  10270. {
  10271. name: "Normal",
  10272. height: math.unit(8, "feet")
  10273. },
  10274. {
  10275. name: "Macro",
  10276. height: math.unit(200, "feet"),
  10277. default: true
  10278. },
  10279. {
  10280. name: "Megamacro",
  10281. height: math.unit(50, "miles")
  10282. },
  10283. ]
  10284. ))
  10285. characterMakers.push(() => makeCharacter(
  10286. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10287. {
  10288. anthro: {
  10289. height: math.unit(6 + 5 / 12, "feet"),
  10290. weight: math.unit(280, "lb"),
  10291. name: "Anthro",
  10292. image: {
  10293. source: "./media/characters/cordite/anthro.svg",
  10294. extra: 1986 / 1905,
  10295. bottom: 0.025
  10296. }
  10297. },
  10298. feral: {
  10299. height: math.unit(2, "feet"),
  10300. weight: math.unit(90, "lb"),
  10301. name: "Feral",
  10302. image: {
  10303. source: "./media/characters/cordite/feral.svg",
  10304. extra: 1260 / 755,
  10305. bottom: 0.05
  10306. }
  10307. },
  10308. },
  10309. [
  10310. {
  10311. name: "Normal",
  10312. height: math.unit(6 + 5 / 12, "feet"),
  10313. default: true
  10314. },
  10315. ]
  10316. ))
  10317. characterMakers.push(() => makeCharacter(
  10318. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10319. {
  10320. front: {
  10321. height: math.unit(6, "feet"),
  10322. weight: math.unit(150, "lb"),
  10323. name: "Front",
  10324. image: {
  10325. source: "./media/characters/pianostrong/front.svg",
  10326. extra: 6577 / 6254,
  10327. bottom: 0.02
  10328. }
  10329. },
  10330. side: {
  10331. height: math.unit(6, "feet"),
  10332. weight: math.unit(150, "lb"),
  10333. name: "Side",
  10334. image: {
  10335. source: "./media/characters/pianostrong/side.svg",
  10336. extra: 6106 / 5730
  10337. }
  10338. },
  10339. back: {
  10340. height: math.unit(6, "feet"),
  10341. weight: math.unit(150, "lb"),
  10342. name: "Back",
  10343. image: {
  10344. source: "./media/characters/pianostrong/back.svg",
  10345. extra: 6085 / 5733,
  10346. bottom: 0.01
  10347. }
  10348. },
  10349. },
  10350. [
  10351. {
  10352. name: "Macro",
  10353. height: math.unit(100, "feet")
  10354. },
  10355. {
  10356. name: "Macro+",
  10357. height: math.unit(300, "feet"),
  10358. default: true
  10359. },
  10360. {
  10361. name: "Macro++",
  10362. height: math.unit(1000, "feet")
  10363. },
  10364. ]
  10365. ))
  10366. characterMakers.push(() => makeCharacter(
  10367. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10368. {
  10369. front: {
  10370. height: math.unit(6, "feet"),
  10371. weight: math.unit(150, "lb"),
  10372. name: "Front",
  10373. image: {
  10374. source: "./media/characters/kona/front.svg",
  10375. extra: 2960 / 2629,
  10376. bottom: 0.005
  10377. }
  10378. },
  10379. },
  10380. [
  10381. {
  10382. name: "Normal",
  10383. height: math.unit(11 + 8 / 12, "feet")
  10384. },
  10385. {
  10386. name: "Macro",
  10387. height: math.unit(850, "feet"),
  10388. default: true
  10389. },
  10390. {
  10391. name: "Macro+",
  10392. height: math.unit(1.5, "km"),
  10393. default: true
  10394. },
  10395. {
  10396. name: "Megamacro",
  10397. height: math.unit(80, "miles")
  10398. },
  10399. {
  10400. name: "Gigamacro",
  10401. height: math.unit(3500, "miles")
  10402. },
  10403. ]
  10404. ))
  10405. characterMakers.push(() => makeCharacter(
  10406. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10407. {
  10408. side: {
  10409. height: math.unit(1.9, "meters"),
  10410. weight: math.unit(326, "kg"),
  10411. name: "Side",
  10412. image: {
  10413. source: "./media/characters/levi/side.svg",
  10414. extra: 1704 / 1334,
  10415. bottom: 0.02
  10416. }
  10417. },
  10418. },
  10419. [
  10420. {
  10421. name: "Normal",
  10422. height: math.unit(1.9, "meters"),
  10423. default: true
  10424. },
  10425. {
  10426. name: "Macro",
  10427. height: math.unit(20, "meters")
  10428. },
  10429. {
  10430. name: "Macro+",
  10431. height: math.unit(200, "meters")
  10432. },
  10433. {
  10434. name: "Megamacro",
  10435. height: math.unit(2, "km")
  10436. },
  10437. {
  10438. name: "Megamacro+",
  10439. height: math.unit(20, "km")
  10440. },
  10441. {
  10442. name: "Gigamacro",
  10443. height: math.unit(2500, "km")
  10444. },
  10445. {
  10446. name: "Gigamacro+",
  10447. height: math.unit(120000, "km")
  10448. },
  10449. {
  10450. name: "Teramacro",
  10451. height: math.unit(7.77e6, "km")
  10452. },
  10453. ]
  10454. ))
  10455. characterMakers.push(() => makeCharacter(
  10456. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10457. {
  10458. front: {
  10459. height: math.unit(6 + 4 / 12, "feet"),
  10460. weight: math.unit(188, "lb"),
  10461. name: "Front",
  10462. image: {
  10463. source: "./media/characters/bmc/front.svg",
  10464. extra: 1067 / 1022,
  10465. bottom: 0.047
  10466. }
  10467. },
  10468. },
  10469. [
  10470. {
  10471. name: "Human-sized",
  10472. height: math.unit(6 + 4 / 12, "feet")
  10473. },
  10474. {
  10475. name: "Small",
  10476. height: math.unit(250, "feet")
  10477. },
  10478. {
  10479. name: "Normal",
  10480. height: math.unit(1250, "feet"),
  10481. default: true
  10482. },
  10483. {
  10484. name: "Good Day",
  10485. height: math.unit(88, "miles")
  10486. },
  10487. {
  10488. name: "Largest Measured Size",
  10489. height: math.unit(11.2e6, "lightyears")
  10490. },
  10491. ]
  10492. ))
  10493. characterMakers.push(() => makeCharacter(
  10494. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10495. {
  10496. front: {
  10497. height: math.unit(20, "feet"),
  10498. weight: math.unit(2016, "kg"),
  10499. name: "Front",
  10500. image: {
  10501. source: "./media/characters/sven-the-kaiju/front.svg",
  10502. extra: 1479 / 1449,
  10503. bottom: 0.05
  10504. }
  10505. },
  10506. },
  10507. [
  10508. {
  10509. name: "Fairy",
  10510. height: math.unit(6, "inches")
  10511. },
  10512. {
  10513. name: "Normal",
  10514. height: math.unit(20, "feet"),
  10515. default: true
  10516. },
  10517. {
  10518. name: "Rampage",
  10519. height: math.unit(200, "feet")
  10520. },
  10521. {
  10522. name: "Archfey Forest Guardian",
  10523. height: math.unit(1, "mile")
  10524. },
  10525. ]
  10526. ))
  10527. characterMakers.push(() => makeCharacter(
  10528. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10529. {
  10530. front: {
  10531. height: math.unit(4, "meters"),
  10532. weight: math.unit(2, "tons"),
  10533. name: "Front",
  10534. image: {
  10535. source: "./media/characters/marik/front.svg",
  10536. extra: 1057 / 1003,
  10537. bottom: 0.08
  10538. }
  10539. },
  10540. },
  10541. [
  10542. {
  10543. name: "Normal",
  10544. height: math.unit(4, "meters"),
  10545. default: true
  10546. },
  10547. {
  10548. name: "Macro",
  10549. height: math.unit(20, "meters")
  10550. },
  10551. {
  10552. name: "Megamacro",
  10553. height: math.unit(50, "km")
  10554. },
  10555. {
  10556. name: "Gigamacro",
  10557. height: math.unit(100, "km")
  10558. },
  10559. {
  10560. name: "Alpha Macro",
  10561. height: math.unit(7.88e7, "yottameters")
  10562. },
  10563. ]
  10564. ))
  10565. characterMakers.push(() => makeCharacter(
  10566. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10567. {
  10568. front: {
  10569. height: math.unit(6, "feet"),
  10570. weight: math.unit(110, "lb"),
  10571. name: "Front",
  10572. image: {
  10573. source: "./media/characters/mel/front.svg",
  10574. extra: 736 / 617,
  10575. bottom: 0.017
  10576. }
  10577. },
  10578. },
  10579. [
  10580. {
  10581. name: "Pico",
  10582. height: math.unit(3, "pm")
  10583. },
  10584. {
  10585. name: "Nano",
  10586. height: math.unit(3, "nm")
  10587. },
  10588. {
  10589. name: "Micro",
  10590. height: math.unit(0.3, "mm"),
  10591. default: true
  10592. },
  10593. {
  10594. name: "Micro+",
  10595. height: math.unit(3, "mm")
  10596. },
  10597. {
  10598. name: "Normal",
  10599. height: math.unit(5 + 10.5 / 12, "feet")
  10600. },
  10601. ]
  10602. ))
  10603. characterMakers.push(() => makeCharacter(
  10604. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10605. {
  10606. kaiju: {
  10607. height: math.unit(1.75, "meters"),
  10608. weight: math.unit(55, "kg"),
  10609. name: "Kaiju",
  10610. image: {
  10611. source: "./media/characters/lykonous/kaiju.svg",
  10612. extra: 1055 / 946,
  10613. bottom: 0.135
  10614. }
  10615. },
  10616. },
  10617. [
  10618. {
  10619. name: "Normal",
  10620. height: math.unit(2.5, "meters"),
  10621. default: true
  10622. },
  10623. {
  10624. name: "Kaiju Dragon",
  10625. height: math.unit(60, "meters")
  10626. },
  10627. {
  10628. name: "Mega Kaiju",
  10629. height: math.unit(120, "km")
  10630. },
  10631. {
  10632. name: "Giga Kaiju",
  10633. height: math.unit(200, "megameters")
  10634. },
  10635. {
  10636. name: "Terra Kaiju",
  10637. height: math.unit(400, "gigameters")
  10638. },
  10639. {
  10640. name: "Kaiju Dragon God",
  10641. height: math.unit(13000, "exaparsecs")
  10642. },
  10643. ]
  10644. ))
  10645. characterMakers.push(() => makeCharacter(
  10646. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10647. {
  10648. front: {
  10649. height: math.unit(6, "feet"),
  10650. weight: math.unit(150, "lb"),
  10651. name: "Front",
  10652. image: {
  10653. source: "./media/characters/blü/front.svg",
  10654. extra: 1883 / 1564,
  10655. bottom: 0.031
  10656. }
  10657. },
  10658. },
  10659. [
  10660. {
  10661. name: "Normal",
  10662. height: math.unit(13, "feet"),
  10663. default: true
  10664. },
  10665. {
  10666. name: "Big Boi",
  10667. height: math.unit(150, "meters")
  10668. },
  10669. {
  10670. name: "Mini Stomper",
  10671. height: math.unit(300, "meters")
  10672. },
  10673. {
  10674. name: "Macro",
  10675. height: math.unit(1000, "meters")
  10676. },
  10677. {
  10678. name: "Megamacro",
  10679. height: math.unit(11000, "meters")
  10680. },
  10681. {
  10682. name: "Gigamacro",
  10683. height: math.unit(11000, "km")
  10684. },
  10685. {
  10686. name: "Teramacro",
  10687. height: math.unit(420000, "km")
  10688. },
  10689. {
  10690. name: "Examacro",
  10691. height: math.unit(120, "parsecs")
  10692. },
  10693. {
  10694. name: "God Tho",
  10695. height: math.unit(98000000000, "parsecs")
  10696. },
  10697. ]
  10698. ))
  10699. characterMakers.push(() => makeCharacter(
  10700. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10701. {
  10702. taurFront: {
  10703. height: math.unit(6, "feet"),
  10704. weight: math.unit(200, "lb"),
  10705. name: "Taur (Front)",
  10706. image: {
  10707. source: "./media/characters/scales/taur-front.svg",
  10708. extra: 1,
  10709. bottom: 0.05
  10710. }
  10711. },
  10712. taurBack: {
  10713. height: math.unit(6, "feet"),
  10714. weight: math.unit(200, "lb"),
  10715. name: "Taur (Back)",
  10716. image: {
  10717. source: "./media/characters/scales/taur-back.svg",
  10718. extra: 1,
  10719. bottom: 0.08
  10720. }
  10721. },
  10722. anthro: {
  10723. height: math.unit(6 * 7 / 12, "feet"),
  10724. weight: math.unit(100, "lb"),
  10725. name: "Anthro",
  10726. image: {
  10727. source: "./media/characters/scales/anthro.svg",
  10728. extra: 1,
  10729. bottom: 0.06
  10730. }
  10731. },
  10732. },
  10733. [
  10734. {
  10735. name: "Normal",
  10736. height: math.unit(12, "feet"),
  10737. default: true
  10738. },
  10739. ]
  10740. ))
  10741. characterMakers.push(() => makeCharacter(
  10742. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10743. {
  10744. front: {
  10745. height: math.unit(6, "feet"),
  10746. weight: math.unit(150, "lb"),
  10747. name: "Front",
  10748. image: {
  10749. source: "./media/characters/koragos/front.svg",
  10750. extra: 841 / 794,
  10751. bottom: 0.035
  10752. }
  10753. },
  10754. back: {
  10755. height: math.unit(6, "feet"),
  10756. weight: math.unit(150, "lb"),
  10757. name: "Back",
  10758. image: {
  10759. source: "./media/characters/koragos/back.svg",
  10760. extra: 841 / 810,
  10761. bottom: 0.022
  10762. }
  10763. },
  10764. },
  10765. [
  10766. {
  10767. name: "Normal",
  10768. height: math.unit(6 + 11 / 12, "feet"),
  10769. default: true
  10770. },
  10771. {
  10772. name: "Macro",
  10773. height: math.unit(490, "feet")
  10774. },
  10775. {
  10776. name: "Megamacro",
  10777. height: math.unit(10, "miles")
  10778. },
  10779. {
  10780. name: "Gigamacro",
  10781. height: math.unit(50, "miles")
  10782. },
  10783. ]
  10784. ))
  10785. characterMakers.push(() => makeCharacter(
  10786. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10787. {
  10788. front: {
  10789. height: math.unit(6, "feet"),
  10790. weight: math.unit(250, "lb"),
  10791. name: "Front",
  10792. image: {
  10793. source: "./media/characters/xylrem/front.svg",
  10794. extra: 3323 / 3050,
  10795. bottom: 0.065
  10796. }
  10797. },
  10798. },
  10799. [
  10800. {
  10801. name: "Micro",
  10802. height: math.unit(4, "feet")
  10803. },
  10804. {
  10805. name: "Normal",
  10806. height: math.unit(16, "feet"),
  10807. default: true
  10808. },
  10809. {
  10810. name: "Macro",
  10811. height: math.unit(2720, "feet")
  10812. },
  10813. {
  10814. name: "Megamacro",
  10815. height: math.unit(25000, "miles")
  10816. },
  10817. ]
  10818. ))
  10819. characterMakers.push(() => makeCharacter(
  10820. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10821. {
  10822. front: {
  10823. height: math.unit(8, "feet"),
  10824. weight: math.unit(250, "kg"),
  10825. name: "Front",
  10826. image: {
  10827. source: "./media/characters/ikideru/front.svg",
  10828. extra: 930 / 870,
  10829. bottom: 0.087
  10830. }
  10831. },
  10832. back: {
  10833. height: math.unit(8, "feet"),
  10834. weight: math.unit(250, "kg"),
  10835. name: "Back",
  10836. image: {
  10837. source: "./media/characters/ikideru/back.svg",
  10838. extra: 919 / 852,
  10839. bottom: 0.055
  10840. }
  10841. },
  10842. },
  10843. [
  10844. {
  10845. name: "Rare",
  10846. height: math.unit(8, "feet"),
  10847. default: true
  10848. },
  10849. {
  10850. name: "Playful Loom",
  10851. height: math.unit(80, "feet")
  10852. },
  10853. {
  10854. name: "City Leaner",
  10855. height: math.unit(230, "feet")
  10856. },
  10857. {
  10858. name: "Megamacro",
  10859. height: math.unit(2500, "feet")
  10860. },
  10861. {
  10862. name: "Gigamacro",
  10863. height: math.unit(26400, "feet")
  10864. },
  10865. {
  10866. name: "Tectonic Shifter",
  10867. height: math.unit(1.7, "megameters")
  10868. },
  10869. {
  10870. name: "Planet Carer",
  10871. height: math.unit(21, "megameters")
  10872. },
  10873. {
  10874. name: "God",
  10875. height: math.unit(11157.22, "parsecs")
  10876. },
  10877. ]
  10878. ))
  10879. characterMakers.push(() => makeCharacter(
  10880. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10881. {
  10882. front: {
  10883. height: math.unit(6, "feet"),
  10884. weight: math.unit(120, "lb"),
  10885. name: "Front",
  10886. image: {
  10887. source: "./media/characters/neo/front.svg"
  10888. }
  10889. },
  10890. },
  10891. [
  10892. {
  10893. name: "Micro",
  10894. height: math.unit(2, "inches"),
  10895. default: true
  10896. },
  10897. {
  10898. name: "Human Size",
  10899. height: math.unit(5 + 8 / 12, "feet")
  10900. },
  10901. ]
  10902. ))
  10903. characterMakers.push(() => makeCharacter(
  10904. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10905. {
  10906. front: {
  10907. height: math.unit(13 + 10 / 12, "feet"),
  10908. weight: math.unit(5320, "lb"),
  10909. name: "Front",
  10910. image: {
  10911. source: "./media/characters/chauncey-chantz/front.svg",
  10912. extra: 1587 / 1435,
  10913. bottom: 0.02
  10914. }
  10915. },
  10916. },
  10917. [
  10918. {
  10919. name: "Normal",
  10920. height: math.unit(13 + 10 / 12, "feet"),
  10921. default: true
  10922. },
  10923. {
  10924. name: "Macro",
  10925. height: math.unit(45, "feet")
  10926. },
  10927. {
  10928. name: "Megamacro",
  10929. height: math.unit(250, "miles")
  10930. },
  10931. {
  10932. name: "Planetary",
  10933. height: math.unit(10000, "miles")
  10934. },
  10935. {
  10936. name: "Galactic",
  10937. height: math.unit(40000, "parsecs")
  10938. },
  10939. {
  10940. name: "Universal",
  10941. height: math.unit(1, "yottameter")
  10942. },
  10943. ]
  10944. ))
  10945. characterMakers.push(() => makeCharacter(
  10946. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10947. {
  10948. front: {
  10949. height: math.unit(6, "feet"),
  10950. weight: math.unit(150, "lb"),
  10951. name: "Front",
  10952. image: {
  10953. source: "./media/characters/epifox/front.svg",
  10954. extra: 1,
  10955. bottom: 0.075
  10956. }
  10957. },
  10958. },
  10959. [
  10960. {
  10961. name: "Micro",
  10962. height: math.unit(6, "inches")
  10963. },
  10964. {
  10965. name: "Normal",
  10966. height: math.unit(12, "feet"),
  10967. default: true
  10968. },
  10969. {
  10970. name: "Macro",
  10971. height: math.unit(3810, "feet")
  10972. },
  10973. {
  10974. name: "Megamacro",
  10975. height: math.unit(500, "miles")
  10976. },
  10977. ]
  10978. ))
  10979. characterMakers.push(() => makeCharacter(
  10980. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10981. {
  10982. front: {
  10983. height: math.unit(1.8796, "m"),
  10984. weight: math.unit(230, "lb"),
  10985. name: "Front",
  10986. image: {
  10987. source: "./media/characters/colin-t/front.svg",
  10988. extra: 1272 / 1193,
  10989. bottom: 0.07
  10990. }
  10991. },
  10992. },
  10993. [
  10994. {
  10995. name: "Micro",
  10996. height: math.unit(0.571, "meters")
  10997. },
  10998. {
  10999. name: "Normal",
  11000. height: math.unit(1.8796, "meters"),
  11001. default: true
  11002. },
  11003. {
  11004. name: "Tall",
  11005. height: math.unit(4, "meters")
  11006. },
  11007. {
  11008. name: "Macro",
  11009. height: math.unit(67.241, "meters")
  11010. },
  11011. {
  11012. name: "Megamacro",
  11013. height: math.unit(371.856, "meters")
  11014. },
  11015. {
  11016. name: "Planetary",
  11017. height: math.unit(12631.5689, "km")
  11018. },
  11019. ]
  11020. ))
  11021. characterMakers.push(() => makeCharacter(
  11022. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11023. {
  11024. front: {
  11025. height: math.unit(1.85, "meters"),
  11026. weight: math.unit(80, "kg"),
  11027. name: "Front",
  11028. image: {
  11029. source: "./media/characters/matvei/front.svg",
  11030. extra: 614 / 594,
  11031. bottom: 0.01
  11032. }
  11033. },
  11034. },
  11035. [
  11036. {
  11037. name: "Normal",
  11038. height: math.unit(1.85, "meters"),
  11039. default: true
  11040. },
  11041. ]
  11042. ))
  11043. characterMakers.push(() => makeCharacter(
  11044. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11045. {
  11046. front: {
  11047. height: math.unit(5 + 9 / 12, "feet"),
  11048. weight: math.unit(70, "lb"),
  11049. name: "Front",
  11050. image: {
  11051. source: "./media/characters/quincy/front.svg",
  11052. extra: 3041 / 2751
  11053. }
  11054. },
  11055. back: {
  11056. height: math.unit(5 + 9 / 12, "feet"),
  11057. weight: math.unit(70, "lb"),
  11058. name: "Back",
  11059. image: {
  11060. source: "./media/characters/quincy/back.svg",
  11061. extra: 3041 / 2751
  11062. }
  11063. },
  11064. flying: {
  11065. height: math.unit(5 + 4 / 12, "feet"),
  11066. weight: math.unit(70, "lb"),
  11067. name: "Flying",
  11068. image: {
  11069. source: "./media/characters/quincy/flying.svg",
  11070. extra: 1044 / 930
  11071. }
  11072. },
  11073. },
  11074. [
  11075. {
  11076. name: "Micro",
  11077. height: math.unit(3, "cm")
  11078. },
  11079. {
  11080. name: "Normal",
  11081. height: math.unit(5 + 9 / 12, "feet")
  11082. },
  11083. {
  11084. name: "Macro",
  11085. height: math.unit(200, "meters"),
  11086. default: true
  11087. },
  11088. {
  11089. name: "Megamacro",
  11090. height: math.unit(1000, "meters")
  11091. },
  11092. ]
  11093. ))
  11094. characterMakers.push(() => makeCharacter(
  11095. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11096. {
  11097. front: {
  11098. height: math.unit(4 + 7 / 12, "feet"),
  11099. weight: math.unit(150, "lb"),
  11100. name: "Front",
  11101. image: {
  11102. source: "./media/characters/vanrel/front.svg",
  11103. extra: 1,
  11104. bottom: 0.02
  11105. }
  11106. },
  11107. elemental: {
  11108. height: math.unit(3, "feet"),
  11109. weight: math.unit(150, "lb"),
  11110. name: "Elemental",
  11111. image: {
  11112. source: "./media/characters/vanrel/elemental.svg",
  11113. extra: 192.3 / 162.8,
  11114. bottom: 1.79 / 194.17
  11115. }
  11116. },
  11117. side: {
  11118. height: math.unit(4 + 7 / 12, "feet"),
  11119. weight: math.unit(150, "lb"),
  11120. name: "Side",
  11121. image: {
  11122. source: "./media/characters/vanrel/side.svg",
  11123. extra: 1,
  11124. bottom: 0.025
  11125. }
  11126. },
  11127. tome: {
  11128. height: math.unit(1.35, "feet"),
  11129. weight: math.unit(10, "lb"),
  11130. name: "Vanrel's Tome",
  11131. rename: true,
  11132. image: {
  11133. source: "./media/characters/vanrel/tome.svg"
  11134. }
  11135. },
  11136. beans: {
  11137. height: math.unit(0.89, "feet"),
  11138. name: "Beans",
  11139. image: {
  11140. source: "./media/characters/vanrel/beans.svg"
  11141. }
  11142. },
  11143. },
  11144. [
  11145. {
  11146. name: "Normal",
  11147. height: math.unit(4 + 7 / 12, "feet"),
  11148. default: true
  11149. },
  11150. ]
  11151. ))
  11152. characterMakers.push(() => makeCharacter(
  11153. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11154. {
  11155. front: {
  11156. height: math.unit(7 + 5 / 12, "feet"),
  11157. weight: math.unit(150, "lb"),
  11158. name: "Front",
  11159. image: {
  11160. source: "./media/characters/kuiper-vanrel/front.svg",
  11161. extra: 1118 / 1068,
  11162. bottom: 0.09
  11163. }
  11164. },
  11165. foot: {
  11166. height: math.unit(0.55, "meters"),
  11167. name: "Foot",
  11168. image: {
  11169. source: "./media/characters/kuiper-vanrel/foot.svg",
  11170. }
  11171. },
  11172. battle: {
  11173. height: math.unit(6.824, "feet"),
  11174. weight: math.unit(150, "lb"),
  11175. name: "Battle",
  11176. image: {
  11177. source: "./media/characters/kuiper-vanrel/battle.svg",
  11178. extra: 1466 / 1327,
  11179. bottom: 29 / 1492.5
  11180. }
  11181. },
  11182. },
  11183. [
  11184. {
  11185. name: "Normal",
  11186. height: math.unit(7 + 5 / 12, "feet"),
  11187. default: true
  11188. },
  11189. ]
  11190. ))
  11191. characterMakers.push(() => makeCharacter(
  11192. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11193. {
  11194. front: {
  11195. height: math.unit(8 + 5 / 12, "feet"),
  11196. weight: math.unit(150, "lb"),
  11197. name: "Front",
  11198. image: {
  11199. source: "./media/characters/keset-vanrel/front.svg",
  11200. extra: 1150 / 1084,
  11201. bottom: 0.05
  11202. }
  11203. },
  11204. hand: {
  11205. height: math.unit(0.6, "meters"),
  11206. name: "Hand",
  11207. image: {
  11208. source: "./media/characters/keset-vanrel/hand.svg"
  11209. }
  11210. },
  11211. foot: {
  11212. height: math.unit(0.94978, "meters"),
  11213. name: "Foot",
  11214. image: {
  11215. source: "./media/characters/keset-vanrel/foot.svg"
  11216. }
  11217. },
  11218. battle: {
  11219. height: math.unit(7.408, "feet"),
  11220. weight: math.unit(150, "lb"),
  11221. name: "Battle",
  11222. image: {
  11223. source: "./media/characters/keset-vanrel/battle.svg",
  11224. extra: 1890 / 1386,
  11225. bottom: 73.28 / 1970
  11226. }
  11227. },
  11228. },
  11229. [
  11230. {
  11231. name: "Normal",
  11232. height: math.unit(8 + 5 / 12, "feet"),
  11233. default: true
  11234. },
  11235. ]
  11236. ))
  11237. characterMakers.push(() => makeCharacter(
  11238. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11239. {
  11240. front: {
  11241. height: math.unit(6, "feet"),
  11242. weight: math.unit(150, "lb"),
  11243. name: "Front",
  11244. image: {
  11245. source: "./media/characters/neos/front.svg",
  11246. extra: 1696 / 992,
  11247. bottom: 0.14
  11248. }
  11249. },
  11250. },
  11251. [
  11252. {
  11253. name: "Normal",
  11254. height: math.unit(54, "cm"),
  11255. default: true
  11256. },
  11257. {
  11258. name: "Macro",
  11259. height: math.unit(100, "m")
  11260. },
  11261. {
  11262. name: "Megamacro",
  11263. height: math.unit(10, "km")
  11264. },
  11265. {
  11266. name: "Megamacro+",
  11267. height: math.unit(100, "km")
  11268. },
  11269. {
  11270. name: "Gigamacro",
  11271. height: math.unit(100, "Mm")
  11272. },
  11273. {
  11274. name: "Teramacro",
  11275. height: math.unit(100, "Gm")
  11276. },
  11277. {
  11278. name: "Examacro",
  11279. height: math.unit(100, "Em")
  11280. },
  11281. {
  11282. name: "Godly",
  11283. height: math.unit(10000, "Ym")
  11284. },
  11285. {
  11286. name: "Beyond Godly",
  11287. height: math.unit(25, "multiverses")
  11288. },
  11289. ]
  11290. ))
  11291. characterMakers.push(() => makeCharacter(
  11292. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11293. {
  11294. feminine: {
  11295. height: math.unit(5, "feet"),
  11296. weight: math.unit(100, "lb"),
  11297. name: "Feminine",
  11298. image: {
  11299. source: "./media/characters/sammy-mouse/feminine.svg",
  11300. extra: 2526 / 2425,
  11301. bottom: 0.123
  11302. }
  11303. },
  11304. masculine: {
  11305. height: math.unit(5, "feet"),
  11306. weight: math.unit(100, "lb"),
  11307. name: "Masculine",
  11308. image: {
  11309. source: "./media/characters/sammy-mouse/masculine.svg",
  11310. extra: 2526 / 2425,
  11311. bottom: 0.123
  11312. }
  11313. },
  11314. },
  11315. [
  11316. {
  11317. name: "Micro",
  11318. height: math.unit(5, "inches")
  11319. },
  11320. {
  11321. name: "Normal",
  11322. height: math.unit(5, "feet"),
  11323. default: true
  11324. },
  11325. {
  11326. name: "Macro",
  11327. height: math.unit(60, "feet")
  11328. },
  11329. ]
  11330. ))
  11331. characterMakers.push(() => makeCharacter(
  11332. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11333. {
  11334. front: {
  11335. height: math.unit(4, "feet"),
  11336. weight: math.unit(50, "lb"),
  11337. name: "Front",
  11338. image: {
  11339. source: "./media/characters/kole/front.svg",
  11340. extra: 1423 / 1303,
  11341. bottom: 0.025
  11342. }
  11343. },
  11344. back: {
  11345. height: math.unit(4, "feet"),
  11346. weight: math.unit(50, "lb"),
  11347. name: "Back",
  11348. image: {
  11349. source: "./media/characters/kole/back.svg",
  11350. extra: 1426 / 1280,
  11351. bottom: 0.02
  11352. }
  11353. },
  11354. },
  11355. [
  11356. {
  11357. name: "Normal",
  11358. height: math.unit(4, "feet"),
  11359. default: true
  11360. },
  11361. ]
  11362. ))
  11363. characterMakers.push(() => makeCharacter(
  11364. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11365. {
  11366. front: {
  11367. height: math.unit(2 + 6 / 12, "feet"),
  11368. weight: math.unit(20, "lb"),
  11369. name: "Front",
  11370. image: {
  11371. source: "./media/characters/rufran/front.svg",
  11372. extra: 2041 / 1839,
  11373. bottom: 0.055
  11374. }
  11375. },
  11376. back: {
  11377. height: math.unit(2 + 6 / 12, "feet"),
  11378. weight: math.unit(20, "lb"),
  11379. name: "Back",
  11380. image: {
  11381. source: "./media/characters/rufran/back.svg",
  11382. extra: 2054 / 1839,
  11383. bottom: 0.01
  11384. }
  11385. },
  11386. hand: {
  11387. height: math.unit(0.2166, "meters"),
  11388. name: "Hand",
  11389. image: {
  11390. source: "./media/characters/rufran/hand.svg"
  11391. }
  11392. },
  11393. foot: {
  11394. height: math.unit(0.185, "meters"),
  11395. name: "Foot",
  11396. image: {
  11397. source: "./media/characters/rufran/foot.svg"
  11398. }
  11399. },
  11400. },
  11401. [
  11402. {
  11403. name: "Micro",
  11404. height: math.unit(1, "inch")
  11405. },
  11406. {
  11407. name: "Normal",
  11408. height: math.unit(2 + 6 / 12, "feet"),
  11409. default: true
  11410. },
  11411. {
  11412. name: "Big",
  11413. height: math.unit(60, "feet")
  11414. },
  11415. {
  11416. name: "Macro",
  11417. height: math.unit(325, "feet")
  11418. },
  11419. ]
  11420. ))
  11421. characterMakers.push(() => makeCharacter(
  11422. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11423. {
  11424. front: {
  11425. height: math.unit(0.3, "meters"),
  11426. weight: math.unit(3.5, "kg"),
  11427. name: "Front",
  11428. image: {
  11429. source: "./media/characters/chip/front.svg",
  11430. extra: 748 / 674
  11431. }
  11432. },
  11433. },
  11434. [
  11435. {
  11436. name: "Micro",
  11437. height: math.unit(1, "inch"),
  11438. default: true
  11439. },
  11440. ]
  11441. ))
  11442. characterMakers.push(() => makeCharacter(
  11443. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11444. {
  11445. side: {
  11446. height: math.unit(2.3, "meters"),
  11447. weight: math.unit(3500, "lb"),
  11448. name: "Side",
  11449. image: {
  11450. source: "./media/characters/torvid/side.svg",
  11451. extra: 1972 / 722,
  11452. bottom: 0.035
  11453. }
  11454. },
  11455. },
  11456. [
  11457. {
  11458. name: "Normal",
  11459. height: math.unit(2.3, "meters"),
  11460. default: true
  11461. },
  11462. ]
  11463. ))
  11464. characterMakers.push(() => makeCharacter(
  11465. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11466. {
  11467. front: {
  11468. height: math.unit(2, "meters"),
  11469. weight: math.unit(150.5, "kg"),
  11470. name: "Front",
  11471. image: {
  11472. source: "./media/characters/susan/front.svg",
  11473. extra: 693 / 635,
  11474. bottom: 0.05
  11475. }
  11476. },
  11477. },
  11478. [
  11479. {
  11480. name: "Megamacro",
  11481. height: math.unit(505, "miles"),
  11482. default: true
  11483. },
  11484. ]
  11485. ))
  11486. characterMakers.push(() => makeCharacter(
  11487. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11488. {
  11489. front: {
  11490. height: math.unit(6, "feet"),
  11491. weight: math.unit(150, "lb"),
  11492. name: "Front",
  11493. image: {
  11494. source: "./media/characters/raindrops/front.svg",
  11495. extra: 2655 / 2461,
  11496. bottom: 49/2705
  11497. }
  11498. },
  11499. back: {
  11500. height: math.unit(6, "feet"),
  11501. weight: math.unit(150, "lb"),
  11502. name: "Back",
  11503. image: {
  11504. source: "./media/characters/raindrops/back.svg",
  11505. extra: 2574 / 2400,
  11506. bottom: 65/2634
  11507. }
  11508. },
  11509. },
  11510. [
  11511. {
  11512. name: "Micro",
  11513. height: math.unit(6, "inches")
  11514. },
  11515. {
  11516. name: "Normal",
  11517. height: math.unit(6 + 2 / 12, "feet")
  11518. },
  11519. {
  11520. name: "Macro",
  11521. height: math.unit(131, "feet"),
  11522. default: true
  11523. },
  11524. {
  11525. name: "Megamacro",
  11526. height: math.unit(15, "miles")
  11527. },
  11528. {
  11529. name: "Gigamacro",
  11530. height: math.unit(4000, "miles")
  11531. },
  11532. {
  11533. name: "Teramacro",
  11534. height: math.unit(315000, "miles")
  11535. },
  11536. ]
  11537. ))
  11538. characterMakers.push(() => makeCharacter(
  11539. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11540. {
  11541. front: {
  11542. height: math.unit(2.794, "meters"),
  11543. weight: math.unit(325, "kg"),
  11544. name: "Front",
  11545. image: {
  11546. source: "./media/characters/tezwa/front.svg",
  11547. extra: 2083 / 1906,
  11548. bottom: 0.031
  11549. }
  11550. },
  11551. foot: {
  11552. height: math.unit(0.687, "meters"),
  11553. name: "Foot",
  11554. image: {
  11555. source: "./media/characters/tezwa/foot.svg"
  11556. }
  11557. },
  11558. },
  11559. [
  11560. {
  11561. name: "Normal",
  11562. height: math.unit(9 + 2 / 12, "feet"),
  11563. default: true
  11564. },
  11565. ]
  11566. ))
  11567. characterMakers.push(() => makeCharacter(
  11568. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11569. {
  11570. front: {
  11571. height: math.unit(58, "feet"),
  11572. weight: math.unit(89000, "lb"),
  11573. name: "Front",
  11574. image: {
  11575. source: "./media/characters/typhus/front.svg",
  11576. extra: 816 / 800,
  11577. bottom: 0.065
  11578. }
  11579. },
  11580. },
  11581. [
  11582. {
  11583. name: "Macro",
  11584. height: math.unit(58, "feet"),
  11585. default: true
  11586. },
  11587. ]
  11588. ))
  11589. characterMakers.push(() => makeCharacter(
  11590. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11591. {
  11592. front: {
  11593. height: math.unit(12, "feet"),
  11594. weight: math.unit(6, "tonnes"),
  11595. name: "Front",
  11596. image: {
  11597. source: "./media/characters/lyra-von-wulf/front.svg",
  11598. extra: 1,
  11599. bottom: 0.10
  11600. }
  11601. },
  11602. frontMecha: {
  11603. height: math.unit(12, "feet"),
  11604. weight: math.unit(12, "tonnes"),
  11605. name: "Front (Mecha)",
  11606. image: {
  11607. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11608. extra: 1,
  11609. bottom: 0.042
  11610. }
  11611. },
  11612. maw: {
  11613. height: math.unit(2.2, "feet"),
  11614. name: "Maw",
  11615. image: {
  11616. source: "./media/characters/lyra-von-wulf/maw.svg"
  11617. }
  11618. },
  11619. },
  11620. [
  11621. {
  11622. name: "Normal",
  11623. height: math.unit(12, "feet"),
  11624. default: true
  11625. },
  11626. {
  11627. name: "Classic",
  11628. height: math.unit(50, "feet")
  11629. },
  11630. {
  11631. name: "Macro",
  11632. height: math.unit(500, "feet")
  11633. },
  11634. {
  11635. name: "Megamacro",
  11636. height: math.unit(1, "mile")
  11637. },
  11638. {
  11639. name: "Gigamacro",
  11640. height: math.unit(400, "miles")
  11641. },
  11642. {
  11643. name: "Teramacro",
  11644. height: math.unit(22000, "miles")
  11645. },
  11646. {
  11647. name: "Solarmacro",
  11648. height: math.unit(8600000, "miles")
  11649. },
  11650. {
  11651. name: "Galactic",
  11652. height: math.unit(1057000, "lightyears")
  11653. },
  11654. ]
  11655. ))
  11656. characterMakers.push(() => makeCharacter(
  11657. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11658. {
  11659. front: {
  11660. height: math.unit(6 + 10 / 12, "feet"),
  11661. weight: math.unit(150, "lb"),
  11662. name: "Front",
  11663. image: {
  11664. source: "./media/characters/dixon/front.svg",
  11665. extra: 3361 / 3209,
  11666. bottom: 0.01
  11667. }
  11668. },
  11669. },
  11670. [
  11671. {
  11672. name: "Normal",
  11673. height: math.unit(6 + 10 / 12, "feet"),
  11674. default: true
  11675. },
  11676. {
  11677. name: "Big",
  11678. height: math.unit(12, "meters")
  11679. },
  11680. {
  11681. name: "Macro",
  11682. height: math.unit(500, "meters")
  11683. },
  11684. {
  11685. name: "Megamacro",
  11686. height: math.unit(2, "km")
  11687. },
  11688. ]
  11689. ))
  11690. characterMakers.push(() => makeCharacter(
  11691. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11692. {
  11693. front: {
  11694. height: math.unit(185, "cm"),
  11695. weight: math.unit(68, "kg"),
  11696. name: "Front",
  11697. image: {
  11698. source: "./media/characters/kauko/front.svg",
  11699. extra: 1455 / 1421,
  11700. bottom: 0.03
  11701. }
  11702. },
  11703. back: {
  11704. height: math.unit(185, "cm"),
  11705. weight: math.unit(68, "kg"),
  11706. name: "Back",
  11707. image: {
  11708. source: "./media/characters/kauko/back.svg",
  11709. extra: 1455 / 1421,
  11710. bottom: 0.004
  11711. }
  11712. },
  11713. },
  11714. [
  11715. {
  11716. name: "Normal",
  11717. height: math.unit(185, "cm"),
  11718. default: true
  11719. },
  11720. ]
  11721. ))
  11722. characterMakers.push(() => makeCharacter(
  11723. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11724. {
  11725. front: {
  11726. height: math.unit(6, "feet"),
  11727. weight: math.unit(150, "kg"),
  11728. name: "Front",
  11729. image: {
  11730. source: "./media/characters/varg/front.svg",
  11731. extra: 1108 / 1018,
  11732. bottom: 0.0375
  11733. }
  11734. },
  11735. },
  11736. [
  11737. {
  11738. name: "Normal",
  11739. height: math.unit(5, "meters")
  11740. },
  11741. {
  11742. name: "Macro",
  11743. height: math.unit(200, "meters")
  11744. },
  11745. {
  11746. name: "Megamacro",
  11747. height: math.unit(20, "kilometers")
  11748. },
  11749. {
  11750. name: "True Size",
  11751. height: math.unit(211, "km"),
  11752. default: true
  11753. },
  11754. {
  11755. name: "Gigamacro",
  11756. height: math.unit(1000, "km")
  11757. },
  11758. {
  11759. name: "Gigamacro+",
  11760. height: math.unit(8000, "km")
  11761. },
  11762. {
  11763. name: "Teramacro",
  11764. height: math.unit(1000000, "km")
  11765. },
  11766. ]
  11767. ))
  11768. characterMakers.push(() => makeCharacter(
  11769. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11770. {
  11771. front: {
  11772. height: math.unit(7 + 7 / 12, "feet"),
  11773. weight: math.unit(267, "lb"),
  11774. name: "Front",
  11775. image: {
  11776. source: "./media/characters/dayza/front.svg",
  11777. extra: 1262 / 1200,
  11778. bottom: 0.035
  11779. }
  11780. },
  11781. side: {
  11782. height: math.unit(7 + 7 / 12, "feet"),
  11783. weight: math.unit(267, "lb"),
  11784. name: "Side",
  11785. image: {
  11786. source: "./media/characters/dayza/side.svg",
  11787. extra: 1295 / 1245,
  11788. bottom: 0.05
  11789. }
  11790. },
  11791. back: {
  11792. height: math.unit(7 + 7 / 12, "feet"),
  11793. weight: math.unit(267, "lb"),
  11794. name: "Back",
  11795. image: {
  11796. source: "./media/characters/dayza/back.svg",
  11797. extra: 1241 / 1170
  11798. }
  11799. },
  11800. },
  11801. [
  11802. {
  11803. name: "Normal",
  11804. height: math.unit(7 + 7 / 12, "feet"),
  11805. default: true
  11806. },
  11807. {
  11808. name: "Macro",
  11809. height: math.unit(155, "feet")
  11810. },
  11811. ]
  11812. ))
  11813. characterMakers.push(() => makeCharacter(
  11814. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11815. {
  11816. front: {
  11817. height: math.unit(6 + 5 / 12, "feet"),
  11818. weight: math.unit(160, "lb"),
  11819. name: "Front",
  11820. image: {
  11821. source: "./media/characters/xanthos/front.svg",
  11822. extra: 1,
  11823. bottom: 0.04
  11824. }
  11825. },
  11826. back: {
  11827. height: math.unit(6 + 5 / 12, "feet"),
  11828. weight: math.unit(160, "lb"),
  11829. name: "Back",
  11830. image: {
  11831. source: "./media/characters/xanthos/back.svg",
  11832. extra: 1,
  11833. bottom: 0.03
  11834. }
  11835. },
  11836. hand: {
  11837. height: math.unit(0.928, "feet"),
  11838. name: "Hand",
  11839. image: {
  11840. source: "./media/characters/xanthos/hand.svg"
  11841. }
  11842. },
  11843. foot: {
  11844. height: math.unit(1.286, "feet"),
  11845. name: "Foot",
  11846. image: {
  11847. source: "./media/characters/xanthos/foot.svg"
  11848. }
  11849. },
  11850. },
  11851. [
  11852. {
  11853. name: "Normal",
  11854. height: math.unit(6 + 5 / 12, "feet"),
  11855. default: true
  11856. },
  11857. {
  11858. name: "Normal+",
  11859. height: math.unit(6, "meters")
  11860. },
  11861. {
  11862. name: "Macro",
  11863. height: math.unit(40, "feet")
  11864. },
  11865. {
  11866. name: "Macro+",
  11867. height: math.unit(200, "meters")
  11868. },
  11869. {
  11870. name: "Megamacro",
  11871. height: math.unit(20, "km")
  11872. },
  11873. {
  11874. name: "Megamacro+",
  11875. height: math.unit(100, "km")
  11876. },
  11877. ]
  11878. ))
  11879. characterMakers.push(() => makeCharacter(
  11880. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11881. {
  11882. front: {
  11883. height: math.unit(6 + 3 / 12, "feet"),
  11884. weight: math.unit(215, "lb"),
  11885. name: "Front",
  11886. image: {
  11887. source: "./media/characters/grynn/front.svg",
  11888. extra: 4627 / 4209,
  11889. bottom: 0.047
  11890. }
  11891. },
  11892. },
  11893. [
  11894. {
  11895. name: "Micro",
  11896. height: math.unit(6, "inches")
  11897. },
  11898. {
  11899. name: "Normal",
  11900. height: math.unit(6 + 3 / 12, "feet"),
  11901. default: true
  11902. },
  11903. {
  11904. name: "Big",
  11905. height: math.unit(104, "feet")
  11906. },
  11907. {
  11908. name: "Macro",
  11909. height: math.unit(944, "feet")
  11910. },
  11911. {
  11912. name: "Macro+",
  11913. height: math.unit(9480, "feet")
  11914. },
  11915. {
  11916. name: "Megamacro",
  11917. height: math.unit(78752, "feet")
  11918. },
  11919. {
  11920. name: "Megamacro+",
  11921. height: math.unit(630128, "feet")
  11922. },
  11923. {
  11924. name: "Megamacro++",
  11925. height: math.unit(3150695, "feet")
  11926. },
  11927. ]
  11928. ))
  11929. characterMakers.push(() => makeCharacter(
  11930. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11931. {
  11932. front: {
  11933. height: math.unit(7 + 5 / 12, "feet"),
  11934. weight: math.unit(450, "lb"),
  11935. name: "Front",
  11936. image: {
  11937. source: "./media/characters/mocha-aura/front.svg",
  11938. extra: 1907 / 1817,
  11939. bottom: 0.04
  11940. }
  11941. },
  11942. back: {
  11943. height: math.unit(7 + 5 / 12, "feet"),
  11944. weight: math.unit(450, "lb"),
  11945. name: "Back",
  11946. image: {
  11947. source: "./media/characters/mocha-aura/back.svg",
  11948. extra: 1900 / 1825,
  11949. bottom: 0.045
  11950. }
  11951. },
  11952. },
  11953. [
  11954. {
  11955. name: "Nano",
  11956. height: math.unit(1, "nm")
  11957. },
  11958. {
  11959. name: "Megamicro",
  11960. height: math.unit(1, "mm")
  11961. },
  11962. {
  11963. name: "Micro",
  11964. height: math.unit(3, "inches")
  11965. },
  11966. {
  11967. name: "Normal",
  11968. height: math.unit(7 + 5 / 12, "feet"),
  11969. default: true
  11970. },
  11971. {
  11972. name: "Macro",
  11973. height: math.unit(30, "feet")
  11974. },
  11975. {
  11976. name: "Megamacro",
  11977. height: math.unit(3500, "feet")
  11978. },
  11979. {
  11980. name: "Teramacro",
  11981. height: math.unit(500000, "miles")
  11982. },
  11983. {
  11984. name: "Petamacro",
  11985. height: math.unit(50000000000000000, "parsecs")
  11986. },
  11987. ]
  11988. ))
  11989. characterMakers.push(() => makeCharacter(
  11990. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11991. {
  11992. front: {
  11993. height: math.unit(6, "feet"),
  11994. weight: math.unit(150, "lb"),
  11995. name: "Front",
  11996. image: {
  11997. source: "./media/characters/ilisha-devya/front.svg",
  11998. extra: 1,
  11999. bottom: 0.175
  12000. }
  12001. },
  12002. back: {
  12003. height: math.unit(6, "feet"),
  12004. weight: math.unit(150, "lb"),
  12005. name: "Back",
  12006. image: {
  12007. source: "./media/characters/ilisha-devya/back.svg",
  12008. extra: 1,
  12009. bottom: 0.015
  12010. }
  12011. },
  12012. },
  12013. [
  12014. {
  12015. name: "Macro",
  12016. height: math.unit(500, "feet"),
  12017. default: true
  12018. },
  12019. {
  12020. name: "Megamacro",
  12021. height: math.unit(10, "miles")
  12022. },
  12023. {
  12024. name: "Gigamacro",
  12025. height: math.unit(100000, "miles")
  12026. },
  12027. {
  12028. name: "Examacro",
  12029. height: math.unit(1e9, "lightyears")
  12030. },
  12031. {
  12032. name: "Omniversal",
  12033. height: math.unit(1e33, "lightyears")
  12034. },
  12035. {
  12036. name: "Beyond Infinite",
  12037. height: math.unit(1e100, "lightyears")
  12038. },
  12039. ]
  12040. ))
  12041. characterMakers.push(() => makeCharacter(
  12042. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12043. {
  12044. Side: {
  12045. height: math.unit(6, "feet"),
  12046. weight: math.unit(150, "lb"),
  12047. name: "Side",
  12048. image: {
  12049. source: "./media/characters/mira/side.svg",
  12050. extra: 900 / 799,
  12051. bottom: 0.02
  12052. }
  12053. },
  12054. },
  12055. [
  12056. {
  12057. name: "Human Size",
  12058. height: math.unit(6, "feet")
  12059. },
  12060. {
  12061. name: "Macro",
  12062. height: math.unit(100, "feet"),
  12063. default: true
  12064. },
  12065. {
  12066. name: "Megamacro",
  12067. height: math.unit(10, "miles")
  12068. },
  12069. {
  12070. name: "Gigamacro",
  12071. height: math.unit(25000, "miles")
  12072. },
  12073. {
  12074. name: "Teramacro",
  12075. height: math.unit(300, "AU")
  12076. },
  12077. {
  12078. name: "Full Size",
  12079. height: math.unit(4.5e10, "lightyears")
  12080. },
  12081. ]
  12082. ))
  12083. characterMakers.push(() => makeCharacter(
  12084. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12085. {
  12086. front: {
  12087. height: math.unit(6, "feet"),
  12088. weight: math.unit(150, "lb"),
  12089. name: "Front",
  12090. image: {
  12091. source: "./media/characters/holly/front.svg",
  12092. extra: 639 / 606
  12093. }
  12094. },
  12095. back: {
  12096. height: math.unit(6, "feet"),
  12097. weight: math.unit(150, "lb"),
  12098. name: "Back",
  12099. image: {
  12100. source: "./media/characters/holly/back.svg",
  12101. extra: 623 / 598
  12102. }
  12103. },
  12104. frontWorking: {
  12105. height: math.unit(6, "feet"),
  12106. weight: math.unit(150, "lb"),
  12107. name: "Front (Working)",
  12108. image: {
  12109. source: "./media/characters/holly/front-working.svg",
  12110. extra: 607 / 577,
  12111. bottom: 0.048
  12112. }
  12113. },
  12114. },
  12115. [
  12116. {
  12117. name: "Normal",
  12118. height: math.unit(12 + 3 / 12, "feet"),
  12119. default: true
  12120. },
  12121. ]
  12122. ))
  12123. characterMakers.push(() => makeCharacter(
  12124. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12125. {
  12126. front: {
  12127. height: math.unit(6, "feet"),
  12128. weight: math.unit(150, "lb"),
  12129. name: "Front",
  12130. image: {
  12131. source: "./media/characters/porter/front.svg",
  12132. extra: 1,
  12133. bottom: 0.01
  12134. }
  12135. },
  12136. frontRobes: {
  12137. height: math.unit(6, "feet"),
  12138. weight: math.unit(150, "lb"),
  12139. name: "Front (Robes)",
  12140. image: {
  12141. source: "./media/characters/porter/front-robes.svg",
  12142. extra: 1.01,
  12143. bottom: 0.01
  12144. }
  12145. },
  12146. },
  12147. [
  12148. {
  12149. name: "Normal",
  12150. height: math.unit(11 + 9 / 12, "feet"),
  12151. default: true
  12152. },
  12153. ]
  12154. ))
  12155. characterMakers.push(() => makeCharacter(
  12156. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12157. {
  12158. legendary: {
  12159. height: math.unit(6, "feet"),
  12160. weight: math.unit(150, "lb"),
  12161. name: "Legendary",
  12162. image: {
  12163. source: "./media/characters/lucy/legendary.svg",
  12164. extra: 1355 / 1100,
  12165. bottom: 0.045
  12166. }
  12167. },
  12168. },
  12169. [
  12170. {
  12171. name: "Legendary",
  12172. height: math.unit(86882 * 2, "miles"),
  12173. default: true
  12174. },
  12175. ]
  12176. ))
  12177. characterMakers.push(() => makeCharacter(
  12178. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12179. {
  12180. front: {
  12181. height: math.unit(6, "feet"),
  12182. weight: math.unit(150, "lb"),
  12183. name: "Front",
  12184. image: {
  12185. source: "./media/characters/drusilla/front.svg",
  12186. extra: 678 / 635,
  12187. bottom: 0.03
  12188. }
  12189. },
  12190. back: {
  12191. height: math.unit(6, "feet"),
  12192. weight: math.unit(150, "lb"),
  12193. name: "Back",
  12194. image: {
  12195. source: "./media/characters/drusilla/back.svg",
  12196. extra: 678 / 635,
  12197. bottom: 0.005
  12198. }
  12199. },
  12200. },
  12201. [
  12202. {
  12203. name: "Macro",
  12204. height: math.unit(100, "feet")
  12205. },
  12206. {
  12207. name: "Canon Height",
  12208. height: math.unit(2000, "feet"),
  12209. default: true
  12210. },
  12211. ]
  12212. ))
  12213. characterMakers.push(() => makeCharacter(
  12214. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12215. {
  12216. front: {
  12217. height: math.unit(6, "feet"),
  12218. weight: math.unit(180, "lb"),
  12219. name: "Front",
  12220. image: {
  12221. source: "./media/characters/renard-thatch/front.svg",
  12222. extra: 2411 / 2275,
  12223. bottom: 0.01
  12224. }
  12225. },
  12226. frontPosing: {
  12227. height: math.unit(6, "feet"),
  12228. weight: math.unit(180, "lb"),
  12229. name: "Front (Posing)",
  12230. image: {
  12231. source: "./media/characters/renard-thatch/front-posing.svg",
  12232. extra: 2381 / 2261,
  12233. bottom: 0.01
  12234. }
  12235. },
  12236. back: {
  12237. height: math.unit(6, "feet"),
  12238. weight: math.unit(180, "lb"),
  12239. name: "Back",
  12240. image: {
  12241. source: "./media/characters/renard-thatch/back.svg",
  12242. extra: 2428 / 2288
  12243. }
  12244. },
  12245. },
  12246. [
  12247. {
  12248. name: "Micro",
  12249. height: math.unit(3, "inches")
  12250. },
  12251. {
  12252. name: "Default",
  12253. height: math.unit(6, "feet"),
  12254. default: true
  12255. },
  12256. {
  12257. name: "Macro",
  12258. height: math.unit(75, "feet")
  12259. },
  12260. ]
  12261. ))
  12262. characterMakers.push(() => makeCharacter(
  12263. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12264. {
  12265. front: {
  12266. height: math.unit(1450, "feet"),
  12267. weight: math.unit(1.21e6, "tons"),
  12268. name: "Front",
  12269. image: {
  12270. source: "./media/characters/sekvra/front.svg",
  12271. extra: 1,
  12272. bottom: 0.03
  12273. }
  12274. },
  12275. frontClothed: {
  12276. height: math.unit(1450, "feet"),
  12277. weight: math.unit(1.21e6, "tons"),
  12278. name: "Front (Clothed)",
  12279. image: {
  12280. source: "./media/characters/sekvra/front-clothed.svg",
  12281. extra: 1,
  12282. bottom: 0.03
  12283. }
  12284. },
  12285. side: {
  12286. height: math.unit(1450, "feet"),
  12287. weight: math.unit(1.21e6, "tons"),
  12288. name: "Side",
  12289. image: {
  12290. source: "./media/characters/sekvra/side.svg",
  12291. extra: 1,
  12292. bottom: 0.025
  12293. }
  12294. },
  12295. back: {
  12296. height: math.unit(1450, "feet"),
  12297. weight: math.unit(1.21e6, "tons"),
  12298. name: "Back",
  12299. image: {
  12300. source: "./media/characters/sekvra/back.svg",
  12301. extra: 1,
  12302. bottom: 0.005
  12303. }
  12304. },
  12305. },
  12306. [
  12307. {
  12308. name: "Macro",
  12309. height: math.unit(1450, "feet"),
  12310. default: true
  12311. },
  12312. {
  12313. name: "Megamacro",
  12314. height: math.unit(15000, "feet")
  12315. },
  12316. ]
  12317. ))
  12318. characterMakers.push(() => makeCharacter(
  12319. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12320. {
  12321. front: {
  12322. height: math.unit(6, "feet"),
  12323. weight: math.unit(150, "lb"),
  12324. name: "Front",
  12325. image: {
  12326. source: "./media/characters/carmine/front.svg",
  12327. extra: 1,
  12328. bottom: 0.035
  12329. }
  12330. },
  12331. frontArmor: {
  12332. height: math.unit(6, "feet"),
  12333. weight: math.unit(150, "lb"),
  12334. name: "Front (Armor)",
  12335. image: {
  12336. source: "./media/characters/carmine/front-armor.svg",
  12337. extra: 1,
  12338. bottom: 0.035
  12339. }
  12340. },
  12341. },
  12342. [
  12343. {
  12344. name: "Large",
  12345. height: math.unit(1, "mile")
  12346. },
  12347. {
  12348. name: "Huge",
  12349. height: math.unit(40, "miles"),
  12350. default: true
  12351. },
  12352. {
  12353. name: "Colossal",
  12354. height: math.unit(2500, "miles")
  12355. },
  12356. ]
  12357. ))
  12358. characterMakers.push(() => makeCharacter(
  12359. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12360. {
  12361. front: {
  12362. height: math.unit(6, "feet"),
  12363. weight: math.unit(150, "lb"),
  12364. name: "Front",
  12365. image: {
  12366. source: "./media/characters/elyssia/front.svg",
  12367. extra: 2201 / 2035,
  12368. bottom: 0.05
  12369. }
  12370. },
  12371. frontClothed: {
  12372. height: math.unit(6, "feet"),
  12373. weight: math.unit(150, "lb"),
  12374. name: "Front (Clothed)",
  12375. image: {
  12376. source: "./media/characters/elyssia/front-clothed.svg",
  12377. extra: 2201 / 2035,
  12378. bottom: 0.05
  12379. }
  12380. },
  12381. back: {
  12382. height: math.unit(6, "feet"),
  12383. weight: math.unit(150, "lb"),
  12384. name: "Back",
  12385. image: {
  12386. source: "./media/characters/elyssia/back.svg",
  12387. extra: 2201 / 2035,
  12388. bottom: 0.013
  12389. }
  12390. },
  12391. },
  12392. [
  12393. {
  12394. name: "Smaller",
  12395. height: math.unit(150, "feet")
  12396. },
  12397. {
  12398. name: "Standard",
  12399. height: math.unit(1400, "feet"),
  12400. default: true
  12401. },
  12402. {
  12403. name: "Distracted",
  12404. height: math.unit(15000, "feet")
  12405. },
  12406. ]
  12407. ))
  12408. characterMakers.push(() => makeCharacter(
  12409. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12410. {
  12411. front: {
  12412. height: math.unit(7 + 4 / 12, "feet"),
  12413. weight: math.unit(500, "lb"),
  12414. name: "Front",
  12415. image: {
  12416. source: "./media/characters/geno-maxwell/front.svg",
  12417. extra: 2207 / 2040,
  12418. bottom: 0.015
  12419. }
  12420. },
  12421. },
  12422. [
  12423. {
  12424. name: "Micro",
  12425. height: math.unit(3, "inches")
  12426. },
  12427. {
  12428. name: "Normal",
  12429. height: math.unit(7 + 4 / 12, "feet"),
  12430. default: true
  12431. },
  12432. {
  12433. name: "Macro",
  12434. height: math.unit(220, "feet")
  12435. },
  12436. {
  12437. name: "Megamacro",
  12438. height: math.unit(11, "miles")
  12439. },
  12440. ]
  12441. ))
  12442. characterMakers.push(() => makeCharacter(
  12443. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12444. {
  12445. front: {
  12446. height: math.unit(7 + 4 / 12, "feet"),
  12447. weight: math.unit(500, "lb"),
  12448. name: "Front",
  12449. image: {
  12450. source: "./media/characters/regena-maxwell/front.svg",
  12451. extra: 3115 / 2770,
  12452. bottom: 0.02
  12453. }
  12454. },
  12455. },
  12456. [
  12457. {
  12458. name: "Normal",
  12459. height: math.unit(7 + 4 / 12, "feet"),
  12460. default: true
  12461. },
  12462. {
  12463. name: "Macro",
  12464. height: math.unit(220, "feet")
  12465. },
  12466. {
  12467. name: "Megamacro",
  12468. height: math.unit(11, "miles")
  12469. },
  12470. ]
  12471. ))
  12472. characterMakers.push(() => makeCharacter(
  12473. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12474. {
  12475. front: {
  12476. height: math.unit(6, "feet"),
  12477. weight: math.unit(150, "lb"),
  12478. name: "Front",
  12479. image: {
  12480. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12481. extra: 860 / 690,
  12482. bottom: 0.03
  12483. }
  12484. },
  12485. },
  12486. [
  12487. {
  12488. name: "Normal",
  12489. height: math.unit(1.7, "meters"),
  12490. default: true
  12491. },
  12492. ]
  12493. ))
  12494. characterMakers.push(() => makeCharacter(
  12495. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12496. {
  12497. front: {
  12498. height: math.unit(6, "feet"),
  12499. weight: math.unit(150, "lb"),
  12500. name: "Front",
  12501. image: {
  12502. source: "./media/characters/quilly/front.svg",
  12503. extra: 890 / 776
  12504. }
  12505. },
  12506. },
  12507. [
  12508. {
  12509. name: "Gigamacro",
  12510. height: math.unit(404090, "miles"),
  12511. default: true
  12512. },
  12513. ]
  12514. ))
  12515. characterMakers.push(() => makeCharacter(
  12516. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12517. {
  12518. front: {
  12519. height: math.unit(7 + 8 / 12, "feet"),
  12520. weight: math.unit(350, "lb"),
  12521. name: "Front",
  12522. image: {
  12523. source: "./media/characters/tempest/front.svg",
  12524. extra: 1175 / 1086,
  12525. bottom: 0.02
  12526. }
  12527. },
  12528. },
  12529. [
  12530. {
  12531. name: "Normal",
  12532. height: math.unit(7 + 8 / 12, "feet"),
  12533. default: true
  12534. },
  12535. ]
  12536. ))
  12537. characterMakers.push(() => makeCharacter(
  12538. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12539. {
  12540. side: {
  12541. height: math.unit(4 + 5 / 12, "feet"),
  12542. weight: math.unit(80, "lb"),
  12543. name: "Side",
  12544. image: {
  12545. source: "./media/characters/rodger/side.svg",
  12546. extra: 1235 / 1118
  12547. }
  12548. },
  12549. },
  12550. [
  12551. {
  12552. name: "Micro",
  12553. height: math.unit(1, "inch")
  12554. },
  12555. {
  12556. name: "Normal",
  12557. height: math.unit(4 + 5 / 12, "feet"),
  12558. default: true
  12559. },
  12560. {
  12561. name: "Macro",
  12562. height: math.unit(120, "feet")
  12563. },
  12564. ]
  12565. ))
  12566. characterMakers.push(() => makeCharacter(
  12567. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12568. {
  12569. front: {
  12570. height: math.unit(6, "feet"),
  12571. weight: math.unit(150, "lb"),
  12572. name: "Front",
  12573. image: {
  12574. source: "./media/characters/danyel/front.svg",
  12575. extra: 1185 / 1123,
  12576. bottom: 0.05
  12577. }
  12578. },
  12579. },
  12580. [
  12581. {
  12582. name: "Shrunken",
  12583. height: math.unit(0.5, "mm")
  12584. },
  12585. {
  12586. name: "Micro",
  12587. height: math.unit(1, "mm"),
  12588. default: true
  12589. },
  12590. {
  12591. name: "Upsized",
  12592. height: math.unit(5 + 5 / 12, "feet")
  12593. },
  12594. ]
  12595. ))
  12596. characterMakers.push(() => makeCharacter(
  12597. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12598. {
  12599. front: {
  12600. height: math.unit(5 + 6 / 12, "feet"),
  12601. weight: math.unit(200, "lb"),
  12602. name: "Front",
  12603. image: {
  12604. source: "./media/characters/vivian-bijoux/front.svg",
  12605. extra: 1,
  12606. bottom: 0.072
  12607. }
  12608. },
  12609. },
  12610. [
  12611. {
  12612. name: "Normal",
  12613. height: math.unit(5 + 6 / 12, "feet"),
  12614. default: true
  12615. },
  12616. {
  12617. name: "Bad Dream",
  12618. height: math.unit(500, "feet")
  12619. },
  12620. {
  12621. name: "Nightmare",
  12622. height: math.unit(500, "miles")
  12623. },
  12624. ]
  12625. ))
  12626. characterMakers.push(() => makeCharacter(
  12627. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12628. {
  12629. front: {
  12630. height: math.unit(6 + 1 / 12, "feet"),
  12631. weight: math.unit(260, "lb"),
  12632. name: "Front",
  12633. image: {
  12634. source: "./media/characters/zeta/front.svg",
  12635. extra: 1968 / 1889,
  12636. bottom: 0.06
  12637. }
  12638. },
  12639. back: {
  12640. height: math.unit(6 + 1 / 12, "feet"),
  12641. weight: math.unit(260, "lb"),
  12642. name: "Back",
  12643. image: {
  12644. source: "./media/characters/zeta/back.svg",
  12645. extra: 1944 / 1858,
  12646. bottom: 0.03
  12647. }
  12648. },
  12649. hand: {
  12650. height: math.unit(1.112, "feet"),
  12651. name: "Hand",
  12652. image: {
  12653. source: "./media/characters/zeta/hand.svg"
  12654. }
  12655. },
  12656. foot: {
  12657. height: math.unit(1.48, "feet"),
  12658. name: "Foot",
  12659. image: {
  12660. source: "./media/characters/zeta/foot.svg"
  12661. }
  12662. },
  12663. },
  12664. [
  12665. {
  12666. name: "Micro",
  12667. height: math.unit(6, "inches")
  12668. },
  12669. {
  12670. name: "Normal",
  12671. height: math.unit(6 + 1 / 12, "feet"),
  12672. default: true
  12673. },
  12674. {
  12675. name: "Macro",
  12676. height: math.unit(20, "feet")
  12677. },
  12678. ]
  12679. ))
  12680. characterMakers.push(() => makeCharacter(
  12681. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12682. {
  12683. front: {
  12684. height: math.unit(6, "feet"),
  12685. weight: math.unit(150, "lb"),
  12686. name: "Front",
  12687. image: {
  12688. source: "./media/characters/jamie-larsen/front.svg",
  12689. extra: 962 / 933,
  12690. bottom: 0.02
  12691. }
  12692. },
  12693. back: {
  12694. height: math.unit(6, "feet"),
  12695. weight: math.unit(150, "lb"),
  12696. name: "Back",
  12697. image: {
  12698. source: "./media/characters/jamie-larsen/back.svg",
  12699. extra: 997 / 946
  12700. }
  12701. },
  12702. },
  12703. [
  12704. {
  12705. name: "Macro",
  12706. height: math.unit(28 + 7 / 12, "feet"),
  12707. default: true
  12708. },
  12709. {
  12710. name: "Macro+",
  12711. height: math.unit(180, "feet")
  12712. },
  12713. {
  12714. name: "Megamacro",
  12715. height: math.unit(10, "miles")
  12716. },
  12717. {
  12718. name: "Gigamacro",
  12719. height: math.unit(200000, "miles")
  12720. },
  12721. ]
  12722. ))
  12723. characterMakers.push(() => makeCharacter(
  12724. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12725. {
  12726. front: {
  12727. height: math.unit(6, "feet"),
  12728. weight: math.unit(120, "lb"),
  12729. name: "Front",
  12730. image: {
  12731. source: "./media/characters/vance/front.svg",
  12732. extra: 1980 / 1890,
  12733. bottom: 0.09
  12734. }
  12735. },
  12736. back: {
  12737. height: math.unit(6, "feet"),
  12738. weight: math.unit(120, "lb"),
  12739. name: "Back",
  12740. image: {
  12741. source: "./media/characters/vance/back.svg",
  12742. extra: 2081 / 1994,
  12743. bottom: 0.014
  12744. }
  12745. },
  12746. hand: {
  12747. height: math.unit(0.88, "feet"),
  12748. name: "Hand",
  12749. image: {
  12750. source: "./media/characters/vance/hand.svg"
  12751. }
  12752. },
  12753. foot: {
  12754. height: math.unit(0.64, "feet"),
  12755. name: "Foot",
  12756. image: {
  12757. source: "./media/characters/vance/foot.svg"
  12758. }
  12759. },
  12760. },
  12761. [
  12762. {
  12763. name: "Small",
  12764. height: math.unit(90, "feet"),
  12765. default: true
  12766. },
  12767. {
  12768. name: "Macro",
  12769. height: math.unit(100, "meters")
  12770. },
  12771. {
  12772. name: "Megamacro",
  12773. height: math.unit(15, "miles")
  12774. },
  12775. ]
  12776. ))
  12777. characterMakers.push(() => makeCharacter(
  12778. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12779. {
  12780. front: {
  12781. height: math.unit(6, "feet"),
  12782. weight: math.unit(180, "lb"),
  12783. name: "Front",
  12784. image: {
  12785. source: "./media/characters/xochitl/front.svg",
  12786. extra: 2297 / 2261,
  12787. bottom: 0.065
  12788. }
  12789. },
  12790. back: {
  12791. height: math.unit(6, "feet"),
  12792. weight: math.unit(180, "lb"),
  12793. name: "Back",
  12794. image: {
  12795. source: "./media/characters/xochitl/back.svg",
  12796. extra: 2386 / 2354,
  12797. bottom: 0.01
  12798. }
  12799. },
  12800. foot: {
  12801. height: math.unit(6 / 5 * 1.15, "feet"),
  12802. weight: math.unit(150, "lb"),
  12803. name: "Foot",
  12804. image: {
  12805. source: "./media/characters/xochitl/foot.svg"
  12806. }
  12807. },
  12808. },
  12809. [
  12810. {
  12811. name: "Macro",
  12812. height: math.unit(80, "feet")
  12813. },
  12814. {
  12815. name: "Macro+",
  12816. height: math.unit(400, "feet"),
  12817. default: true
  12818. },
  12819. {
  12820. name: "Gigamacro",
  12821. height: math.unit(80000, "miles")
  12822. },
  12823. {
  12824. name: "Gigamacro+",
  12825. height: math.unit(400000, "miles")
  12826. },
  12827. {
  12828. name: "Teramacro",
  12829. height: math.unit(300, "AU")
  12830. },
  12831. ]
  12832. ))
  12833. characterMakers.push(() => makeCharacter(
  12834. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12835. {
  12836. front: {
  12837. height: math.unit(6, "feet"),
  12838. weight: math.unit(150, "lb"),
  12839. name: "Front",
  12840. image: {
  12841. source: "./media/characters/vincent/front.svg",
  12842. extra: 1130 / 1080,
  12843. bottom: 0.055
  12844. }
  12845. },
  12846. beak: {
  12847. height: math.unit(6 * 0.1, "feet"),
  12848. name: "Beak",
  12849. image: {
  12850. source: "./media/characters/vincent/beak.svg"
  12851. }
  12852. },
  12853. hand: {
  12854. height: math.unit(6 * 0.85, "feet"),
  12855. weight: math.unit(150, "lb"),
  12856. name: "Hand",
  12857. image: {
  12858. source: "./media/characters/vincent/hand.svg"
  12859. }
  12860. },
  12861. foot: {
  12862. height: math.unit(6 * 0.19, "feet"),
  12863. weight: math.unit(150, "lb"),
  12864. name: "Foot",
  12865. image: {
  12866. source: "./media/characters/vincent/foot.svg"
  12867. }
  12868. },
  12869. },
  12870. [
  12871. {
  12872. name: "Base",
  12873. height: math.unit(6 + 5 / 12, "feet"),
  12874. default: true
  12875. },
  12876. {
  12877. name: "Macro",
  12878. height: math.unit(300, "feet")
  12879. },
  12880. {
  12881. name: "Megamacro",
  12882. height: math.unit(2, "miles")
  12883. },
  12884. {
  12885. name: "Gigamacro",
  12886. height: math.unit(1000, "miles")
  12887. },
  12888. ]
  12889. ))
  12890. characterMakers.push(() => makeCharacter(
  12891. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12892. {
  12893. front: {
  12894. height: math.unit(6 + 2 / 12, "feet"),
  12895. weight: math.unit(265, "lb"),
  12896. name: "Front",
  12897. image: {
  12898. source: "./media/characters/jay/front.svg",
  12899. extra: 1510 / 1430,
  12900. bottom: 0.042
  12901. }
  12902. },
  12903. back: {
  12904. height: math.unit(6 + 2 / 12, "feet"),
  12905. weight: math.unit(265, "lb"),
  12906. name: "Back",
  12907. image: {
  12908. source: "./media/characters/jay/back.svg",
  12909. extra: 1510 / 1430,
  12910. bottom: 0.025
  12911. }
  12912. },
  12913. clothed: {
  12914. height: math.unit(6 + 2 / 12, "feet"),
  12915. weight: math.unit(265, "lb"),
  12916. name: "Front (Clothed)",
  12917. image: {
  12918. source: "./media/characters/jay/clothed.svg",
  12919. extra: 744 / 699,
  12920. bottom: 0.043
  12921. }
  12922. },
  12923. head: {
  12924. height: math.unit(1.772, "feet"),
  12925. name: "Head",
  12926. image: {
  12927. source: "./media/characters/jay/head.svg"
  12928. }
  12929. },
  12930. sizeRay: {
  12931. height: math.unit(1.331, "feet"),
  12932. name: "Size Ray",
  12933. image: {
  12934. source: "./media/characters/jay/size-ray.svg"
  12935. }
  12936. },
  12937. },
  12938. [
  12939. {
  12940. name: "Micro",
  12941. height: math.unit(1, "inch")
  12942. },
  12943. {
  12944. name: "Normal",
  12945. height: math.unit(6 + 2 / 12, "feet"),
  12946. default: true
  12947. },
  12948. {
  12949. name: "Macro",
  12950. height: math.unit(1, "mile")
  12951. },
  12952. {
  12953. name: "Megamacro",
  12954. height: math.unit(100, "miles")
  12955. },
  12956. ]
  12957. ))
  12958. characterMakers.push(() => makeCharacter(
  12959. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12960. {
  12961. front: {
  12962. height: math.unit(2, "meters"),
  12963. weight: math.unit(500, "kg"),
  12964. name: "Front",
  12965. image: {
  12966. source: "./media/characters/coatl/front.svg",
  12967. extra: 3948 / 3500,
  12968. bottom: 0.082
  12969. }
  12970. },
  12971. },
  12972. [
  12973. {
  12974. name: "Normal",
  12975. height: math.unit(4, "meters")
  12976. },
  12977. {
  12978. name: "Macro",
  12979. height: math.unit(100, "meters"),
  12980. default: true
  12981. },
  12982. {
  12983. name: "Macro+",
  12984. height: math.unit(300, "meters")
  12985. },
  12986. {
  12987. name: "Megamacro",
  12988. height: math.unit(3, "gigameters")
  12989. },
  12990. {
  12991. name: "Megamacro+",
  12992. height: math.unit(300, "terameters")
  12993. },
  12994. {
  12995. name: "Megamacro++",
  12996. height: math.unit(3, "lightyears")
  12997. },
  12998. ]
  12999. ))
  13000. characterMakers.push(() => makeCharacter(
  13001. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13002. {
  13003. front: {
  13004. height: math.unit(6, "feet"),
  13005. weight: math.unit(50, "kg"),
  13006. name: "front",
  13007. image: {
  13008. source: "./media/characters/shiroryu/front.svg",
  13009. extra: 1990 / 1935
  13010. }
  13011. },
  13012. },
  13013. [
  13014. {
  13015. name: "Mortal Mingling",
  13016. height: math.unit(3, "meters")
  13017. },
  13018. {
  13019. name: "Kaiju-ish",
  13020. height: math.unit(250, "meters")
  13021. },
  13022. {
  13023. name: "Somewhat Godly",
  13024. height: math.unit(400, "km"),
  13025. default: true
  13026. },
  13027. {
  13028. name: "Planetary",
  13029. height: math.unit(300, "megameters")
  13030. },
  13031. {
  13032. name: "Galaxy-dwarfing",
  13033. height: math.unit(450, "kiloparsecs")
  13034. },
  13035. {
  13036. name: "Universe Eater",
  13037. height: math.unit(150, "gigaparsecs")
  13038. },
  13039. {
  13040. name: "Almost Immeasurable",
  13041. height: math.unit(1.3e266, "yottaparsecs")
  13042. },
  13043. ]
  13044. ))
  13045. characterMakers.push(() => makeCharacter(
  13046. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13047. {
  13048. front: {
  13049. height: math.unit(6, "feet"),
  13050. weight: math.unit(150, "lb"),
  13051. name: "Front",
  13052. image: {
  13053. source: "./media/characters/umeko/front.svg",
  13054. extra: 1,
  13055. bottom: 0.019
  13056. }
  13057. },
  13058. frontArmored: {
  13059. height: math.unit(6, "feet"),
  13060. weight: math.unit(150, "lb"),
  13061. name: "Front (Armored)",
  13062. image: {
  13063. source: "./media/characters/umeko/front-armored.svg",
  13064. extra: 1,
  13065. bottom: 0.021
  13066. }
  13067. },
  13068. },
  13069. [
  13070. {
  13071. name: "Macro",
  13072. height: math.unit(220, "feet"),
  13073. default: true
  13074. },
  13075. {
  13076. name: "Guardian Dragon",
  13077. height: math.unit(50, "miles")
  13078. },
  13079. {
  13080. name: "Cosmic",
  13081. height: math.unit(800000, "miles")
  13082. },
  13083. ]
  13084. ))
  13085. characterMakers.push(() => makeCharacter(
  13086. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13087. {
  13088. front: {
  13089. height: math.unit(6, "feet"),
  13090. weight: math.unit(150, "lb"),
  13091. name: "Front",
  13092. image: {
  13093. source: "./media/characters/cassidy/front.svg",
  13094. extra: 1,
  13095. bottom: 0.043
  13096. }
  13097. },
  13098. },
  13099. [
  13100. {
  13101. name: "Canon Height",
  13102. height: math.unit(120, "feet"),
  13103. default: true
  13104. },
  13105. {
  13106. name: "Macro+",
  13107. height: math.unit(400, "feet")
  13108. },
  13109. {
  13110. name: "Macro++",
  13111. height: math.unit(4000, "feet")
  13112. },
  13113. {
  13114. name: "Megamacro",
  13115. height: math.unit(3, "miles")
  13116. },
  13117. ]
  13118. ))
  13119. characterMakers.push(() => makeCharacter(
  13120. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13121. {
  13122. front: {
  13123. height: math.unit(6, "feet"),
  13124. weight: math.unit(150, "lb"),
  13125. name: "Front",
  13126. image: {
  13127. source: "./media/characters/isaac/front.svg",
  13128. extra: 896 / 815,
  13129. bottom: 0.11
  13130. }
  13131. },
  13132. },
  13133. [
  13134. {
  13135. name: "Human Size",
  13136. height: math.unit(8, "feet"),
  13137. default: true
  13138. },
  13139. {
  13140. name: "Macro",
  13141. height: math.unit(400, "feet")
  13142. },
  13143. {
  13144. name: "Megamacro",
  13145. height: math.unit(50, "miles")
  13146. },
  13147. {
  13148. name: "Canon Height",
  13149. height: math.unit(200, "AU")
  13150. },
  13151. ]
  13152. ))
  13153. characterMakers.push(() => makeCharacter(
  13154. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13155. {
  13156. front: {
  13157. height: math.unit(6, "feet"),
  13158. weight: math.unit(72, "kg"),
  13159. name: "Front",
  13160. image: {
  13161. source: "./media/characters/sleekit/front.svg",
  13162. extra: 4693 / 4487,
  13163. bottom: 0.012
  13164. }
  13165. },
  13166. },
  13167. [
  13168. {
  13169. name: "Minimum Height",
  13170. height: math.unit(10, "meters")
  13171. },
  13172. {
  13173. name: "Smaller",
  13174. height: math.unit(25, "meters")
  13175. },
  13176. {
  13177. name: "Larger",
  13178. height: math.unit(38, "meters"),
  13179. default: true
  13180. },
  13181. {
  13182. name: "Maximum height",
  13183. height: math.unit(100, "meters")
  13184. },
  13185. ]
  13186. ))
  13187. characterMakers.push(() => makeCharacter(
  13188. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13189. {
  13190. front: {
  13191. height: math.unit(6, "feet"),
  13192. weight: math.unit(150, "lb"),
  13193. name: "Front",
  13194. image: {
  13195. source: "./media/characters/nillia/front.svg",
  13196. extra: 2195 / 2037,
  13197. bottom: 0.005
  13198. }
  13199. },
  13200. back: {
  13201. height: math.unit(6, "feet"),
  13202. weight: math.unit(150, "lb"),
  13203. name: "Back",
  13204. image: {
  13205. source: "./media/characters/nillia/back.svg",
  13206. extra: 2195 / 2037,
  13207. bottom: 0.005
  13208. }
  13209. },
  13210. },
  13211. [
  13212. {
  13213. name: "Canon Height",
  13214. height: math.unit(489, "feet"),
  13215. default: true
  13216. }
  13217. ]
  13218. ))
  13219. characterMakers.push(() => makeCharacter(
  13220. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13221. {
  13222. front: {
  13223. height: math.unit(6, "feet"),
  13224. weight: math.unit(150, "lb"),
  13225. name: "Front",
  13226. image: {
  13227. source: "./media/characters/mesmyriza/front.svg",
  13228. extra: 2067 / 1784,
  13229. bottom: 0.035
  13230. }
  13231. },
  13232. foot: {
  13233. height: math.unit(6 / (250 / 35), "feet"),
  13234. name: "Foot",
  13235. image: {
  13236. source: "./media/characters/mesmyriza/foot.svg"
  13237. }
  13238. },
  13239. },
  13240. [
  13241. {
  13242. name: "Macro",
  13243. height: math.unit(457, "meters"),
  13244. default: true
  13245. },
  13246. {
  13247. name: "Megamacro",
  13248. height: math.unit(8, "megameters")
  13249. },
  13250. ]
  13251. ))
  13252. characterMakers.push(() => makeCharacter(
  13253. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13254. {
  13255. front: {
  13256. height: math.unit(6, "feet"),
  13257. weight: math.unit(250, "lb"),
  13258. name: "Front",
  13259. image: {
  13260. source: "./media/characters/saudade/front.svg",
  13261. extra: 1172 / 1139,
  13262. bottom: 0.035
  13263. }
  13264. },
  13265. },
  13266. [
  13267. {
  13268. name: "Micro",
  13269. height: math.unit(3, "inches")
  13270. },
  13271. {
  13272. name: "Normal",
  13273. height: math.unit(6, "feet"),
  13274. default: true
  13275. },
  13276. {
  13277. name: "Macro",
  13278. height: math.unit(50, "feet")
  13279. },
  13280. {
  13281. name: "Megamacro",
  13282. height: math.unit(2800, "feet")
  13283. },
  13284. ]
  13285. ))
  13286. characterMakers.push(() => makeCharacter(
  13287. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13288. {
  13289. front: {
  13290. height: math.unit(5 + 4 / 12, "feet"),
  13291. weight: math.unit(100, "lb"),
  13292. name: "Front",
  13293. image: {
  13294. source: "./media/characters/keireer/front.svg",
  13295. extra: 716 / 666,
  13296. bottom: 0.05
  13297. }
  13298. },
  13299. },
  13300. [
  13301. {
  13302. name: "Normal",
  13303. height: math.unit(5 + 4 / 12, "feet"),
  13304. default: true
  13305. },
  13306. ]
  13307. ))
  13308. characterMakers.push(() => makeCharacter(
  13309. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13310. {
  13311. front: {
  13312. height: math.unit(6, "feet"),
  13313. weight: math.unit(90, "kg"),
  13314. name: "Front",
  13315. image: {
  13316. source: "./media/characters/mirja/front.svg",
  13317. extra: 1789 / 1683,
  13318. bottom: 0.05
  13319. }
  13320. },
  13321. frontDressed: {
  13322. height: math.unit(6, "feet"),
  13323. weight: math.unit(90, "lb"),
  13324. name: "Front (Dressed)",
  13325. image: {
  13326. source: "./media/characters/mirja/front-dressed.svg",
  13327. extra: 1789 / 1683,
  13328. bottom: 0.05
  13329. }
  13330. },
  13331. back: {
  13332. height: math.unit(6, "feet"),
  13333. weight: math.unit(90, "lb"),
  13334. name: "Back",
  13335. image: {
  13336. source: "./media/characters/mirja/back.svg",
  13337. extra: 953 / 917,
  13338. bottom: 0.017
  13339. }
  13340. },
  13341. },
  13342. [
  13343. {
  13344. name: "\"Incognito\"",
  13345. height: math.unit(3, "meters")
  13346. },
  13347. {
  13348. name: "Strolling Size",
  13349. height: math.unit(15, "km")
  13350. },
  13351. {
  13352. name: "Larger Strolling Size",
  13353. height: math.unit(400, "km")
  13354. },
  13355. {
  13356. name: "Preferred Size",
  13357. height: math.unit(5000, "km")
  13358. },
  13359. {
  13360. name: "True Size",
  13361. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13362. default: true
  13363. },
  13364. ]
  13365. ))
  13366. characterMakers.push(() => makeCharacter(
  13367. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13368. {
  13369. front: {
  13370. height: math.unit(15, "feet"),
  13371. weight: math.unit(880, "kg"),
  13372. name: "Front",
  13373. image: {
  13374. source: "./media/characters/nightraver/front.svg",
  13375. extra: 2444 / 2160,
  13376. bottom: 0.027
  13377. }
  13378. },
  13379. back: {
  13380. height: math.unit(15, "feet"),
  13381. weight: math.unit(880, "kg"),
  13382. name: "Back",
  13383. image: {
  13384. source: "./media/characters/nightraver/back.svg",
  13385. extra: 2309 / 2180,
  13386. bottom: 0.005
  13387. }
  13388. },
  13389. sole: {
  13390. height: math.unit(2.878, "feet"),
  13391. name: "Sole",
  13392. image: {
  13393. source: "./media/characters/nightraver/sole.svg"
  13394. }
  13395. },
  13396. foot: {
  13397. height: math.unit(2.285, "feet"),
  13398. name: "Foot",
  13399. image: {
  13400. source: "./media/characters/nightraver/foot.svg"
  13401. }
  13402. },
  13403. maw: {
  13404. height: math.unit(2.67, "feet"),
  13405. name: "Maw",
  13406. image: {
  13407. source: "./media/characters/nightraver/maw.svg"
  13408. }
  13409. },
  13410. },
  13411. [
  13412. {
  13413. name: "Micro",
  13414. height: math.unit(1, "cm")
  13415. },
  13416. {
  13417. name: "Normal",
  13418. height: math.unit(15, "feet"),
  13419. default: true
  13420. },
  13421. {
  13422. name: "Macro",
  13423. height: math.unit(300, "feet")
  13424. },
  13425. {
  13426. name: "Megamacro",
  13427. height: math.unit(300, "miles")
  13428. },
  13429. {
  13430. name: "Gigamacro",
  13431. height: math.unit(10000, "miles")
  13432. },
  13433. ]
  13434. ))
  13435. characterMakers.push(() => makeCharacter(
  13436. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13437. {
  13438. side: {
  13439. height: math.unit(2, "inches"),
  13440. weight: math.unit(5, "grams"),
  13441. name: "Side",
  13442. image: {
  13443. source: "./media/characters/arc/side.svg"
  13444. }
  13445. },
  13446. },
  13447. [
  13448. {
  13449. name: "Micro",
  13450. height: math.unit(2, "inches"),
  13451. default: true
  13452. },
  13453. ]
  13454. ))
  13455. characterMakers.push(() => makeCharacter(
  13456. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13457. {
  13458. front: {
  13459. height: math.unit(1.1938, "meters"),
  13460. weight: math.unit(54, "kg"),
  13461. name: "Front",
  13462. image: {
  13463. source: "./media/characters/nebula-shahar/front.svg",
  13464. extra: 1642 / 1436,
  13465. bottom: 0.06
  13466. }
  13467. },
  13468. },
  13469. [
  13470. {
  13471. name: "Megamicro",
  13472. height: math.unit(0.3, "mm")
  13473. },
  13474. {
  13475. name: "Micro",
  13476. height: math.unit(3, "cm")
  13477. },
  13478. {
  13479. name: "Normal",
  13480. height: math.unit(138, "cm"),
  13481. default: true
  13482. },
  13483. {
  13484. name: "Macro",
  13485. height: math.unit(30, "m")
  13486. },
  13487. ]
  13488. ))
  13489. characterMakers.push(() => makeCharacter(
  13490. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13491. {
  13492. front: {
  13493. height: math.unit(5.24, "feet"),
  13494. weight: math.unit(150, "lb"),
  13495. name: "Front",
  13496. image: {
  13497. source: "./media/characters/shayla/front.svg",
  13498. extra: 1512 / 1414,
  13499. bottom: 0.01
  13500. }
  13501. },
  13502. back: {
  13503. height: math.unit(5.24, "feet"),
  13504. weight: math.unit(150, "lb"),
  13505. name: "Back",
  13506. image: {
  13507. source: "./media/characters/shayla/back.svg",
  13508. extra: 1512 / 1414
  13509. }
  13510. },
  13511. hand: {
  13512. height: math.unit(0.7781496062992126, "feet"),
  13513. name: "Hand",
  13514. image: {
  13515. source: "./media/characters/shayla/hand.svg"
  13516. }
  13517. },
  13518. foot: {
  13519. height: math.unit(1.4206036745406823, "feet"),
  13520. name: "Foot",
  13521. image: {
  13522. source: "./media/characters/shayla/foot.svg"
  13523. }
  13524. },
  13525. },
  13526. [
  13527. {
  13528. name: "Micro",
  13529. height: math.unit(0.32, "feet")
  13530. },
  13531. {
  13532. name: "Normal",
  13533. height: math.unit(5.24, "feet"),
  13534. default: true
  13535. },
  13536. {
  13537. name: "Macro",
  13538. height: math.unit(492.12, "feet")
  13539. },
  13540. {
  13541. name: "Megamacro",
  13542. height: math.unit(186.41, "miles")
  13543. },
  13544. ]
  13545. ))
  13546. characterMakers.push(() => makeCharacter(
  13547. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13548. {
  13549. front: {
  13550. height: math.unit(2.2, "m"),
  13551. weight: math.unit(120, "kg"),
  13552. name: "Front",
  13553. image: {
  13554. source: "./media/characters/pia-jr/front.svg",
  13555. extra: 1000 / 970,
  13556. bottom: 0.035
  13557. }
  13558. },
  13559. hand: {
  13560. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13561. name: "Hand",
  13562. image: {
  13563. source: "./media/characters/pia-jr/hand.svg"
  13564. }
  13565. },
  13566. paw: {
  13567. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13568. name: "Paw",
  13569. image: {
  13570. source: "./media/characters/pia-jr/paw.svg"
  13571. }
  13572. },
  13573. },
  13574. [
  13575. {
  13576. name: "Micro",
  13577. height: math.unit(1.2, "cm")
  13578. },
  13579. {
  13580. name: "Normal",
  13581. height: math.unit(2.2, "m"),
  13582. default: true
  13583. },
  13584. {
  13585. name: "Macro",
  13586. height: math.unit(180, "m")
  13587. },
  13588. {
  13589. name: "Megamacro",
  13590. height: math.unit(420, "km")
  13591. },
  13592. ]
  13593. ))
  13594. characterMakers.push(() => makeCharacter(
  13595. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13596. {
  13597. front: {
  13598. height: math.unit(2, "m"),
  13599. weight: math.unit(115, "kg"),
  13600. name: "Front",
  13601. image: {
  13602. source: "./media/characters/pia-sr/front.svg",
  13603. extra: 760 / 730,
  13604. bottom: 0.015
  13605. }
  13606. },
  13607. back: {
  13608. height: math.unit(2, "m"),
  13609. weight: math.unit(115, "kg"),
  13610. name: "Back",
  13611. image: {
  13612. source: "./media/characters/pia-sr/back.svg",
  13613. extra: 760 / 730,
  13614. bottom: 0.01
  13615. }
  13616. },
  13617. hand: {
  13618. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13619. name: "Hand",
  13620. image: {
  13621. source: "./media/characters/pia-sr/hand.svg"
  13622. }
  13623. },
  13624. foot: {
  13625. height: math.unit(1.83, "feet"),
  13626. name: "Foot",
  13627. image: {
  13628. source: "./media/characters/pia-sr/foot.svg"
  13629. }
  13630. },
  13631. },
  13632. [
  13633. {
  13634. name: "Micro",
  13635. height: math.unit(88, "mm")
  13636. },
  13637. {
  13638. name: "Normal",
  13639. height: math.unit(2, "m"),
  13640. default: true
  13641. },
  13642. {
  13643. name: "Macro",
  13644. height: math.unit(200, "m")
  13645. },
  13646. {
  13647. name: "Megamacro",
  13648. height: math.unit(420, "km")
  13649. },
  13650. ]
  13651. ))
  13652. characterMakers.push(() => makeCharacter(
  13653. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13654. {
  13655. front: {
  13656. height: math.unit(8 + 2 / 12, "feet"),
  13657. weight: math.unit(300, "lb"),
  13658. name: "Front",
  13659. image: {
  13660. source: "./media/characters/kibibyte/front.svg",
  13661. extra: 2221 / 2098,
  13662. bottom: 0.04
  13663. }
  13664. },
  13665. },
  13666. [
  13667. {
  13668. name: "Normal",
  13669. height: math.unit(8 + 2 / 12, "feet"),
  13670. default: true
  13671. },
  13672. {
  13673. name: "Socialable Macro",
  13674. height: math.unit(50, "feet")
  13675. },
  13676. {
  13677. name: "Macro",
  13678. height: math.unit(300, "feet")
  13679. },
  13680. {
  13681. name: "Megamacro",
  13682. height: math.unit(500, "miles")
  13683. },
  13684. ]
  13685. ))
  13686. characterMakers.push(() => makeCharacter(
  13687. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13688. {
  13689. front: {
  13690. height: math.unit(6, "feet"),
  13691. weight: math.unit(150, "lb"),
  13692. name: "Front",
  13693. image: {
  13694. source: "./media/characters/felix/front.svg",
  13695. extra: 762 / 722,
  13696. bottom: 0.02
  13697. }
  13698. },
  13699. frontClothed: {
  13700. height: math.unit(6, "feet"),
  13701. weight: math.unit(150, "lb"),
  13702. name: "Front (Clothed)",
  13703. image: {
  13704. source: "./media/characters/felix/front-clothed.svg",
  13705. extra: 762 / 722,
  13706. bottom: 0.02
  13707. }
  13708. },
  13709. },
  13710. [
  13711. {
  13712. name: "Normal",
  13713. height: math.unit(6 + 8 / 12, "feet"),
  13714. default: true
  13715. },
  13716. {
  13717. name: "Macro",
  13718. height: math.unit(2600, "feet")
  13719. },
  13720. {
  13721. name: "Megamacro",
  13722. height: math.unit(450, "miles")
  13723. },
  13724. ]
  13725. ))
  13726. characterMakers.push(() => makeCharacter(
  13727. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13728. {
  13729. front: {
  13730. height: math.unit(6 + 1 / 12, "feet"),
  13731. weight: math.unit(250, "lb"),
  13732. name: "Front",
  13733. image: {
  13734. source: "./media/characters/tobo/front.svg",
  13735. extra: 608 / 586,
  13736. bottom: 0.023
  13737. }
  13738. },
  13739. back: {
  13740. height: math.unit(6 + 1 / 12, "feet"),
  13741. weight: math.unit(250, "lb"),
  13742. name: "Back",
  13743. image: {
  13744. source: "./media/characters/tobo/back.svg",
  13745. extra: 608 / 586
  13746. }
  13747. },
  13748. },
  13749. [
  13750. {
  13751. name: "Nano",
  13752. height: math.unit(2, "nm")
  13753. },
  13754. {
  13755. name: "Megamicro",
  13756. height: math.unit(0.1, "mm")
  13757. },
  13758. {
  13759. name: "Micro",
  13760. height: math.unit(1, "inch"),
  13761. default: true
  13762. },
  13763. {
  13764. name: "Human-sized",
  13765. height: math.unit(6 + 1 / 12, "feet")
  13766. },
  13767. {
  13768. name: "Macro",
  13769. height: math.unit(250, "feet")
  13770. },
  13771. {
  13772. name: "Megamacro",
  13773. height: math.unit(75, "miles")
  13774. },
  13775. {
  13776. name: "Texas-sized",
  13777. height: math.unit(750, "miles")
  13778. },
  13779. {
  13780. name: "Teramacro",
  13781. height: math.unit(50000, "miles")
  13782. },
  13783. ]
  13784. ))
  13785. characterMakers.push(() => makeCharacter(
  13786. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13787. {
  13788. front: {
  13789. height: math.unit(6, "feet"),
  13790. weight: math.unit(269, "lb"),
  13791. name: "Front",
  13792. image: {
  13793. source: "./media/characters/danny-kapowsky/front.svg",
  13794. extra: 766 / 736,
  13795. bottom: 0.044
  13796. }
  13797. },
  13798. back: {
  13799. height: math.unit(6, "feet"),
  13800. weight: math.unit(269, "lb"),
  13801. name: "Back",
  13802. image: {
  13803. source: "./media/characters/danny-kapowsky/back.svg",
  13804. extra: 797 / 760,
  13805. bottom: 0.025
  13806. }
  13807. },
  13808. },
  13809. [
  13810. {
  13811. name: "Macro",
  13812. height: math.unit(150, "feet"),
  13813. default: true
  13814. },
  13815. {
  13816. name: "Macro+",
  13817. height: math.unit(200, "feet")
  13818. },
  13819. {
  13820. name: "Macro++",
  13821. height: math.unit(300, "feet")
  13822. },
  13823. {
  13824. name: "Macro+++",
  13825. height: math.unit(400, "feet")
  13826. },
  13827. ]
  13828. ))
  13829. characterMakers.push(() => makeCharacter(
  13830. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13831. {
  13832. side: {
  13833. height: math.unit(6, "feet"),
  13834. weight: math.unit(170, "lb"),
  13835. name: "Side",
  13836. image: {
  13837. source: "./media/characters/finn/side.svg",
  13838. extra: 1953 / 1807,
  13839. bottom: 0.057
  13840. }
  13841. },
  13842. },
  13843. [
  13844. {
  13845. name: "Megamacro",
  13846. height: math.unit(14445, "feet"),
  13847. default: true
  13848. },
  13849. ]
  13850. ))
  13851. characterMakers.push(() => makeCharacter(
  13852. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13853. {
  13854. front: {
  13855. height: math.unit(5 + 6 / 12, "feet"),
  13856. weight: math.unit(125, "lb"),
  13857. name: "Front",
  13858. image: {
  13859. source: "./media/characters/roy/front.svg",
  13860. extra: 1,
  13861. bottom: 0.11
  13862. }
  13863. },
  13864. },
  13865. [
  13866. {
  13867. name: "Micro",
  13868. height: math.unit(3, "inches"),
  13869. default: true
  13870. },
  13871. {
  13872. name: "Normal",
  13873. height: math.unit(5 + 6 / 12, "feet")
  13874. },
  13875. {
  13876. name: "Lesser Macro",
  13877. height: math.unit(60, "feet")
  13878. },
  13879. {
  13880. name: "Greater Macro",
  13881. height: math.unit(120, "feet")
  13882. },
  13883. ]
  13884. ))
  13885. characterMakers.push(() => makeCharacter(
  13886. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13887. {
  13888. front: {
  13889. height: math.unit(6, "feet"),
  13890. weight: math.unit(100, "lb"),
  13891. name: "Front",
  13892. image: {
  13893. source: "./media/characters/aevsivs/front.svg",
  13894. extra: 1,
  13895. bottom: 0.03
  13896. }
  13897. },
  13898. back: {
  13899. height: math.unit(6, "feet"),
  13900. weight: math.unit(100, "lb"),
  13901. name: "Back",
  13902. image: {
  13903. source: "./media/characters/aevsivs/back.svg"
  13904. }
  13905. },
  13906. },
  13907. [
  13908. {
  13909. name: "Micro",
  13910. height: math.unit(2, "inches"),
  13911. default: true
  13912. },
  13913. {
  13914. name: "Normal",
  13915. height: math.unit(5, "feet")
  13916. },
  13917. ]
  13918. ))
  13919. characterMakers.push(() => makeCharacter(
  13920. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13921. {
  13922. front: {
  13923. height: math.unit(5 + 7 / 12, "feet"),
  13924. weight: math.unit(159, "lb"),
  13925. name: "Front",
  13926. image: {
  13927. source: "./media/characters/hildegard/front.svg",
  13928. extra: 289 / 269,
  13929. bottom: 7.63/297.8
  13930. }
  13931. },
  13932. back: {
  13933. height: math.unit(5 + 7 / 12, "feet"),
  13934. weight: math.unit(159, "lb"),
  13935. name: "Back",
  13936. image: {
  13937. source: "./media/characters/hildegard/back.svg",
  13938. extra: 280/260,
  13939. bottom: 2.3/282
  13940. }
  13941. },
  13942. },
  13943. [
  13944. {
  13945. name: "Normal",
  13946. height: math.unit(5 + 7 / 12, "feet"),
  13947. default: true
  13948. },
  13949. ]
  13950. ))
  13951. characterMakers.push(() => makeCharacter(
  13952. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13953. {
  13954. bernard: {
  13955. height: math.unit(2 + 7 / 12, "feet"),
  13956. weight: math.unit(66, "lb"),
  13957. name: "Bernard",
  13958. rename: true,
  13959. image: {
  13960. source: "./media/characters/bernard-wilder/bernard.svg",
  13961. extra: 192 / 128,
  13962. bottom: 0.05
  13963. }
  13964. },
  13965. wilder: {
  13966. height: math.unit(5 + 8 / 12, "feet"),
  13967. weight: math.unit(143, "lb"),
  13968. name: "Wilder",
  13969. rename: true,
  13970. image: {
  13971. source: "./media/characters/bernard-wilder/wilder.svg",
  13972. extra: 361 / 312,
  13973. bottom: 0.02
  13974. }
  13975. },
  13976. },
  13977. [
  13978. {
  13979. name: "Normal",
  13980. height: math.unit(2 + 7 / 12, "feet"),
  13981. default: true
  13982. },
  13983. ]
  13984. ))
  13985. characterMakers.push(() => makeCharacter(
  13986. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13987. {
  13988. anthro: {
  13989. height: math.unit(6 + 1 / 12, "feet"),
  13990. weight: math.unit(155, "lb"),
  13991. name: "Anthro",
  13992. image: {
  13993. source: "./media/characters/hearth/anthro.svg",
  13994. extra: 260 / 250,
  13995. bottom: 0.02
  13996. }
  13997. },
  13998. feral: {
  13999. height: math.unit(3.78, "feet"),
  14000. weight: math.unit(35, "kg"),
  14001. name: "Feral",
  14002. image: {
  14003. source: "./media/characters/hearth/feral.svg",
  14004. extra: 153 / 135,
  14005. bottom: 0.03
  14006. }
  14007. },
  14008. },
  14009. [
  14010. {
  14011. name: "Normal",
  14012. height: math.unit(6 + 1 / 12, "feet"),
  14013. default: true
  14014. },
  14015. ]
  14016. ))
  14017. characterMakers.push(() => makeCharacter(
  14018. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14019. {
  14020. front: {
  14021. height: math.unit(6, "feet"),
  14022. weight: math.unit(182, "lb"),
  14023. name: "Front",
  14024. image: {
  14025. source: "./media/characters/ingrid/front.svg",
  14026. extra: 294 / 268,
  14027. bottom: 0.027
  14028. }
  14029. },
  14030. },
  14031. [
  14032. {
  14033. name: "Normal",
  14034. height: math.unit(6, "feet"),
  14035. default: true
  14036. },
  14037. ]
  14038. ))
  14039. characterMakers.push(() => makeCharacter(
  14040. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14041. {
  14042. eevee: {
  14043. height: math.unit(2 + 10 / 12, "feet"),
  14044. weight: math.unit(86, "lb"),
  14045. name: "Malgam",
  14046. image: {
  14047. source: "./media/characters/malgam/eevee.svg",
  14048. extra: 218 / 180,
  14049. bottom: 0.2
  14050. }
  14051. },
  14052. sylveon: {
  14053. height: math.unit(4, "feet"),
  14054. weight: math.unit(101, "lb"),
  14055. name: "Future Malgam",
  14056. rename: true,
  14057. image: {
  14058. source: "./media/characters/malgam/sylveon.svg",
  14059. extra: 371 / 325,
  14060. bottom: 0.015
  14061. }
  14062. },
  14063. gigantamax: {
  14064. height: math.unit(50, "feet"),
  14065. name: "Gigantamax Malgam",
  14066. rename: true,
  14067. image: {
  14068. source: "./media/characters/malgam/gigantamax.svg"
  14069. }
  14070. },
  14071. },
  14072. [
  14073. {
  14074. name: "Normal",
  14075. height: math.unit(2 + 10 / 12, "feet"),
  14076. default: true
  14077. },
  14078. ]
  14079. ))
  14080. characterMakers.push(() => makeCharacter(
  14081. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14082. {
  14083. front: {
  14084. height: math.unit(5 + 11 / 12, "feet"),
  14085. weight: math.unit(188, "lb"),
  14086. name: "Front",
  14087. image: {
  14088. source: "./media/characters/fleur/front.svg",
  14089. extra: 309 / 283,
  14090. bottom: 0.007
  14091. }
  14092. },
  14093. },
  14094. [
  14095. {
  14096. name: "Normal",
  14097. height: math.unit(5 + 11 / 12, "feet"),
  14098. default: true
  14099. },
  14100. ]
  14101. ))
  14102. characterMakers.push(() => makeCharacter(
  14103. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14104. {
  14105. front: {
  14106. height: math.unit(5 + 4 / 12, "feet"),
  14107. weight: math.unit(122, "lb"),
  14108. name: "Front",
  14109. image: {
  14110. source: "./media/characters/jude/front.svg",
  14111. extra: 288 / 273,
  14112. bottom: 0.03
  14113. }
  14114. },
  14115. },
  14116. [
  14117. {
  14118. name: "Normal",
  14119. height: math.unit(5 + 4 / 12, "feet"),
  14120. default: true
  14121. },
  14122. ]
  14123. ))
  14124. characterMakers.push(() => makeCharacter(
  14125. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14126. {
  14127. front: {
  14128. height: math.unit(5 + 11 / 12, "feet"),
  14129. weight: math.unit(190, "lb"),
  14130. name: "Front",
  14131. image: {
  14132. source: "./media/characters/seara/front.svg",
  14133. extra: 1,
  14134. bottom: 0.05
  14135. }
  14136. },
  14137. },
  14138. [
  14139. {
  14140. name: "Normal",
  14141. height: math.unit(5 + 11 / 12, "feet"),
  14142. default: true
  14143. },
  14144. ]
  14145. ))
  14146. characterMakers.push(() => makeCharacter(
  14147. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14148. {
  14149. front: {
  14150. height: math.unit(16 + 5 / 12, "feet"),
  14151. weight: math.unit(524, "lb"),
  14152. name: "Front",
  14153. image: {
  14154. source: "./media/characters/caspian/front.svg",
  14155. extra: 1,
  14156. bottom: 0.04
  14157. }
  14158. },
  14159. },
  14160. [
  14161. {
  14162. name: "Normal",
  14163. height: math.unit(16 + 5 / 12, "feet"),
  14164. default: true
  14165. },
  14166. ]
  14167. ))
  14168. characterMakers.push(() => makeCharacter(
  14169. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14170. {
  14171. front: {
  14172. height: math.unit(5 + 7 / 12, "feet"),
  14173. weight: math.unit(170, "lb"),
  14174. name: "Front",
  14175. image: {
  14176. source: "./media/characters/mika/front.svg",
  14177. extra: 1,
  14178. bottom: 0.016
  14179. }
  14180. },
  14181. },
  14182. [
  14183. {
  14184. name: "Normal",
  14185. height: math.unit(5 + 7 / 12, "feet"),
  14186. default: true
  14187. },
  14188. ]
  14189. ))
  14190. characterMakers.push(() => makeCharacter(
  14191. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14192. {
  14193. front: {
  14194. height: math.unit(6 + 2 / 12, "feet"),
  14195. weight: math.unit(268, "lb"),
  14196. name: "Front",
  14197. image: {
  14198. source: "./media/characters/sol/front.svg",
  14199. extra: 247 / 231,
  14200. bottom: 0.05
  14201. }
  14202. },
  14203. },
  14204. [
  14205. {
  14206. name: "Normal",
  14207. height: math.unit(6 + 2 / 12, "feet"),
  14208. default: true
  14209. },
  14210. ]
  14211. ))
  14212. characterMakers.push(() => makeCharacter(
  14213. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14214. {
  14215. buizel: {
  14216. height: math.unit(2 + 5 / 12, "feet"),
  14217. weight: math.unit(87, "lb"),
  14218. name: "Buizel",
  14219. image: {
  14220. source: "./media/characters/umiko/buizel.svg",
  14221. extra: 172 / 157,
  14222. bottom: 0.01
  14223. }
  14224. },
  14225. floatzel: {
  14226. height: math.unit(5 + 9 / 12, "feet"),
  14227. weight: math.unit(250, "lb"),
  14228. name: "Floatzel",
  14229. image: {
  14230. source: "./media/characters/umiko/floatzel.svg",
  14231. extra: 262 / 248
  14232. }
  14233. },
  14234. },
  14235. [
  14236. {
  14237. name: "Normal",
  14238. height: math.unit(2 + 5 / 12, "feet"),
  14239. default: true
  14240. },
  14241. ]
  14242. ))
  14243. characterMakers.push(() => makeCharacter(
  14244. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14245. {
  14246. front: {
  14247. height: math.unit(6 + 2 / 12, "feet"),
  14248. weight: math.unit(146, "lb"),
  14249. name: "Front",
  14250. image: {
  14251. source: "./media/characters/iliac/front.svg",
  14252. extra: 389 / 365,
  14253. bottom: 0.035
  14254. }
  14255. },
  14256. },
  14257. [
  14258. {
  14259. name: "Normal",
  14260. height: math.unit(6 + 2 / 12, "feet"),
  14261. default: true
  14262. },
  14263. ]
  14264. ))
  14265. characterMakers.push(() => makeCharacter(
  14266. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14267. {
  14268. front: {
  14269. height: math.unit(6, "feet"),
  14270. weight: math.unit(170, "lb"),
  14271. name: "Front",
  14272. image: {
  14273. source: "./media/characters/topaz/front.svg",
  14274. extra: 317 / 303,
  14275. bottom: 0.055
  14276. }
  14277. },
  14278. },
  14279. [
  14280. {
  14281. name: "Normal",
  14282. height: math.unit(6, "feet"),
  14283. default: true
  14284. },
  14285. ]
  14286. ))
  14287. characterMakers.push(() => makeCharacter(
  14288. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14289. {
  14290. front: {
  14291. height: math.unit(5 + 11 / 12, "feet"),
  14292. weight: math.unit(144, "lb"),
  14293. name: "Front",
  14294. image: {
  14295. source: "./media/characters/gabriel/front.svg",
  14296. extra: 285 / 262,
  14297. bottom: 0.004
  14298. }
  14299. },
  14300. },
  14301. [
  14302. {
  14303. name: "Normal",
  14304. height: math.unit(5 + 11 / 12, "feet"),
  14305. default: true
  14306. },
  14307. ]
  14308. ))
  14309. characterMakers.push(() => makeCharacter(
  14310. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14311. {
  14312. side: {
  14313. height: math.unit(6 + 5 / 12, "feet"),
  14314. weight: math.unit(300, "lb"),
  14315. name: "Side",
  14316. image: {
  14317. source: "./media/characters/tempest-suicune/side.svg",
  14318. extra: 195 / 154,
  14319. bottom: 0.04
  14320. }
  14321. },
  14322. },
  14323. [
  14324. {
  14325. name: "Normal",
  14326. height: math.unit(6 + 5 / 12, "feet"),
  14327. default: true
  14328. },
  14329. ]
  14330. ))
  14331. characterMakers.push(() => makeCharacter(
  14332. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14333. {
  14334. front: {
  14335. height: math.unit(7 + 2 / 12, "feet"),
  14336. weight: math.unit(322, "lb"),
  14337. name: "Front",
  14338. image: {
  14339. source: "./media/characters/vulcan/front.svg",
  14340. extra: 154 / 147,
  14341. bottom: 0.04
  14342. }
  14343. },
  14344. },
  14345. [
  14346. {
  14347. name: "Normal",
  14348. height: math.unit(7 + 2 / 12, "feet"),
  14349. default: true
  14350. },
  14351. ]
  14352. ))
  14353. characterMakers.push(() => makeCharacter(
  14354. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14355. {
  14356. front: {
  14357. height: math.unit(5 + 10 / 12, "feet"),
  14358. weight: math.unit(264, "lb"),
  14359. name: "Front",
  14360. image: {
  14361. source: "./media/characters/gault/front.svg",
  14362. extra: 161 / 140,
  14363. bottom: 0.028
  14364. }
  14365. },
  14366. },
  14367. [
  14368. {
  14369. name: "Normal",
  14370. height: math.unit(5 + 10 / 12, "feet"),
  14371. default: true
  14372. },
  14373. ]
  14374. ))
  14375. characterMakers.push(() => makeCharacter(
  14376. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14377. {
  14378. front: {
  14379. height: math.unit(6, "feet"),
  14380. weight: math.unit(150, "lb"),
  14381. name: "Front",
  14382. image: {
  14383. source: "./media/characters/shard/front.svg",
  14384. extra: 273 / 238,
  14385. bottom: 0.02
  14386. }
  14387. },
  14388. },
  14389. [
  14390. {
  14391. name: "Normal",
  14392. height: math.unit(3 + 6 / 12, "feet"),
  14393. default: true
  14394. },
  14395. ]
  14396. ))
  14397. characterMakers.push(() => makeCharacter(
  14398. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14399. {
  14400. front: {
  14401. height: math.unit(5 + 11 / 12, "feet"),
  14402. weight: math.unit(146, "lb"),
  14403. name: "Front",
  14404. image: {
  14405. source: "./media/characters/ashe/front.svg",
  14406. extra: 400 / 373,
  14407. bottom: 0.01
  14408. }
  14409. },
  14410. },
  14411. [
  14412. {
  14413. name: "Normal",
  14414. height: math.unit(5 + 11 / 12, "feet"),
  14415. default: true
  14416. },
  14417. ]
  14418. ))
  14419. characterMakers.push(() => makeCharacter(
  14420. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14421. {
  14422. front: {
  14423. height: math.unit(5 + 5 / 12, "feet"),
  14424. weight: math.unit(135, "lb"),
  14425. name: "Front",
  14426. image: {
  14427. source: "./media/characters/beatrix/front.svg",
  14428. extra: 392 / 379,
  14429. bottom: 0.01
  14430. }
  14431. },
  14432. },
  14433. [
  14434. {
  14435. name: "Normal",
  14436. height: math.unit(6, "feet"),
  14437. default: true
  14438. },
  14439. ]
  14440. ))
  14441. characterMakers.push(() => makeCharacter(
  14442. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14443. {
  14444. front: {
  14445. height: math.unit(6, "feet"),
  14446. weight: math.unit(150, "lb"),
  14447. name: "Front",
  14448. image: {
  14449. source: "./media/characters/ignatius/front.svg",
  14450. extra: 245 / 222,
  14451. bottom: 0.01
  14452. }
  14453. },
  14454. },
  14455. [
  14456. {
  14457. name: "Normal",
  14458. height: math.unit(5 + 5 / 12, "feet"),
  14459. default: true
  14460. },
  14461. ]
  14462. ))
  14463. characterMakers.push(() => makeCharacter(
  14464. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14465. {
  14466. front: {
  14467. height: math.unit(6 + 2 / 12, "feet"),
  14468. weight: math.unit(138, "lb"),
  14469. name: "Front",
  14470. image: {
  14471. source: "./media/characters/mei-li/front.svg",
  14472. extra: 237 / 229,
  14473. bottom: 0.03
  14474. }
  14475. },
  14476. },
  14477. [
  14478. {
  14479. name: "Normal",
  14480. height: math.unit(6 + 2 / 12, "feet"),
  14481. default: true
  14482. },
  14483. ]
  14484. ))
  14485. characterMakers.push(() => makeCharacter(
  14486. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14487. {
  14488. front: {
  14489. height: math.unit(2 + 4 / 12, "feet"),
  14490. weight: math.unit(62, "lb"),
  14491. name: "Front",
  14492. image: {
  14493. source: "./media/characters/puru/front.svg",
  14494. extra: 206 / 149,
  14495. bottom: 0.06
  14496. }
  14497. },
  14498. },
  14499. [
  14500. {
  14501. name: "Normal",
  14502. height: math.unit(2 + 4 / 12, "feet"),
  14503. default: true
  14504. },
  14505. ]
  14506. ))
  14507. characterMakers.push(() => makeCharacter(
  14508. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14509. {
  14510. taur: {
  14511. height: math.unit(11, "feet"),
  14512. weight: math.unit(500, "lb"),
  14513. name: "Taur",
  14514. image: {
  14515. source: "./media/characters/kee/taur.svg",
  14516. extra: 1,
  14517. bottom: 0.04
  14518. }
  14519. },
  14520. },
  14521. [
  14522. {
  14523. name: "Normal",
  14524. height: math.unit(11, "feet"),
  14525. default: true
  14526. },
  14527. ]
  14528. ))
  14529. characterMakers.push(() => makeCharacter(
  14530. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14531. {
  14532. anthro: {
  14533. height: math.unit(7, "feet"),
  14534. weight: math.unit(190, "lb"),
  14535. name: "Anthro",
  14536. image: {
  14537. source: "./media/characters/cobalt-dracha/anthro.svg",
  14538. extra: 231 / 225,
  14539. bottom: 0.04
  14540. }
  14541. },
  14542. feral: {
  14543. height: math.unit(9 + 7 / 12, "feet"),
  14544. weight: math.unit(294, "lb"),
  14545. name: "Feral",
  14546. image: {
  14547. source: "./media/characters/cobalt-dracha/feral.svg",
  14548. extra: 692 / 633,
  14549. bottom: 0.05
  14550. }
  14551. },
  14552. },
  14553. [
  14554. {
  14555. name: "Normal",
  14556. height: math.unit(7, "feet"),
  14557. default: true
  14558. },
  14559. ]
  14560. ))
  14561. characterMakers.push(() => makeCharacter(
  14562. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14563. {
  14564. fallen: {
  14565. height: math.unit(11 + 8 / 12, "feet"),
  14566. weight: math.unit(485, "lb"),
  14567. name: "Java (Fallen)",
  14568. rename: true,
  14569. image: {
  14570. source: "./media/characters/java/fallen.svg",
  14571. extra: 226 / 208,
  14572. bottom: 0.005
  14573. }
  14574. },
  14575. godkin: {
  14576. height: math.unit(10 + 6 / 12, "feet"),
  14577. weight: math.unit(328, "lb"),
  14578. name: "Java (Godkin)",
  14579. rename: true,
  14580. image: {
  14581. source: "./media/characters/java/godkin.svg",
  14582. extra: 270 / 262,
  14583. bottom: 0.02
  14584. }
  14585. },
  14586. },
  14587. [
  14588. {
  14589. name: "Normal",
  14590. height: math.unit(11 + 8 / 12, "feet"),
  14591. default: true
  14592. },
  14593. ]
  14594. ))
  14595. characterMakers.push(() => makeCharacter(
  14596. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14597. {
  14598. front: {
  14599. height: math.unit(7 + 8 / 12, "feet"),
  14600. weight: math.unit(320, "lb"),
  14601. name: "Front",
  14602. image: {
  14603. source: "./media/characters/skoll/front.svg",
  14604. extra: 232 / 220,
  14605. bottom: 0.02
  14606. }
  14607. },
  14608. },
  14609. [
  14610. {
  14611. name: "Normal",
  14612. height: math.unit(7 + 8 / 12, "feet"),
  14613. default: true
  14614. },
  14615. ]
  14616. ))
  14617. characterMakers.push(() => makeCharacter(
  14618. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14619. {
  14620. front: {
  14621. height: math.unit(5 + 9 / 12, "feet"),
  14622. weight: math.unit(170, "lb"),
  14623. name: "Front",
  14624. image: {
  14625. source: "./media/characters/purna/front.svg",
  14626. extra: 239 / 229,
  14627. bottom: 0.01
  14628. }
  14629. },
  14630. },
  14631. [
  14632. {
  14633. name: "Normal",
  14634. height: math.unit(5 + 9 / 12, "feet"),
  14635. default: true
  14636. },
  14637. ]
  14638. ))
  14639. characterMakers.push(() => makeCharacter(
  14640. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14641. {
  14642. front: {
  14643. height: math.unit(5 + 9 / 12, "feet"),
  14644. weight: math.unit(142, "lb"),
  14645. name: "Front",
  14646. image: {
  14647. source: "./media/characters/kuva/front.svg",
  14648. extra: 281 / 271,
  14649. bottom: 0.006
  14650. }
  14651. },
  14652. },
  14653. [
  14654. {
  14655. name: "Normal",
  14656. height: math.unit(5 + 9 / 12, "feet"),
  14657. default: true
  14658. },
  14659. ]
  14660. ))
  14661. characterMakers.push(() => makeCharacter(
  14662. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14663. {
  14664. anthro: {
  14665. height: math.unit(9 + 2 / 12, "feet"),
  14666. weight: math.unit(270, "lb"),
  14667. name: "Anthro",
  14668. image: {
  14669. source: "./media/characters/embra/anthro.svg",
  14670. extra: 200 / 187,
  14671. bottom: 0.02
  14672. }
  14673. },
  14674. feral: {
  14675. height: math.unit(18 + 8 / 12, "feet"),
  14676. weight: math.unit(576, "lb"),
  14677. name: "Feral",
  14678. image: {
  14679. source: "./media/characters/embra/feral.svg",
  14680. extra: 152 / 137,
  14681. bottom: 0.037
  14682. }
  14683. },
  14684. },
  14685. [
  14686. {
  14687. name: "Normal",
  14688. height: math.unit(9 + 2 / 12, "feet"),
  14689. default: true
  14690. },
  14691. ]
  14692. ))
  14693. characterMakers.push(() => makeCharacter(
  14694. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14695. {
  14696. anthro: {
  14697. height: math.unit(10 + 9 / 12, "feet"),
  14698. weight: math.unit(224, "lb"),
  14699. name: "Anthro",
  14700. image: {
  14701. source: "./media/characters/grottos/anthro.svg",
  14702. extra: 350 / 332,
  14703. bottom: 0.045
  14704. }
  14705. },
  14706. feral: {
  14707. height: math.unit(20 + 7 / 12, "feet"),
  14708. weight: math.unit(629, "lb"),
  14709. name: "Feral",
  14710. image: {
  14711. source: "./media/characters/grottos/feral.svg",
  14712. extra: 207 / 190,
  14713. bottom: 0.05
  14714. }
  14715. },
  14716. },
  14717. [
  14718. {
  14719. name: "Normal",
  14720. height: math.unit(10 + 9 / 12, "feet"),
  14721. default: true
  14722. },
  14723. ]
  14724. ))
  14725. characterMakers.push(() => makeCharacter(
  14726. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14727. {
  14728. anthro: {
  14729. height: math.unit(9 + 6 / 12, "feet"),
  14730. weight: math.unit(298, "lb"),
  14731. name: "Anthro",
  14732. image: {
  14733. source: "./media/characters/frifna/anthro.svg",
  14734. extra: 282 / 269,
  14735. bottom: 0.015
  14736. }
  14737. },
  14738. feral: {
  14739. height: math.unit(16 + 2 / 12, "feet"),
  14740. weight: math.unit(624, "lb"),
  14741. name: "Feral",
  14742. image: {
  14743. source: "./media/characters/frifna/feral.svg"
  14744. }
  14745. },
  14746. },
  14747. [
  14748. {
  14749. name: "Normal",
  14750. height: math.unit(9 + 6 / 12, "feet"),
  14751. default: true
  14752. },
  14753. ]
  14754. ))
  14755. characterMakers.push(() => makeCharacter(
  14756. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14757. {
  14758. front: {
  14759. height: math.unit(6 + 2 / 12, "feet"),
  14760. weight: math.unit(168, "lb"),
  14761. name: "Front",
  14762. image: {
  14763. source: "./media/characters/elise/front.svg",
  14764. extra: 276 / 271
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Normal",
  14771. height: math.unit(6 + 2 / 12, "feet"),
  14772. default: true
  14773. },
  14774. ]
  14775. ))
  14776. characterMakers.push(() => makeCharacter(
  14777. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14778. {
  14779. front: {
  14780. height: math.unit(5 + 10 / 12, "feet"),
  14781. weight: math.unit(210, "lb"),
  14782. name: "Front",
  14783. image: {
  14784. source: "./media/characters/glade/front.svg",
  14785. extra: 258 / 247,
  14786. bottom: 0.008
  14787. }
  14788. },
  14789. },
  14790. [
  14791. {
  14792. name: "Normal",
  14793. height: math.unit(5 + 10 / 12, "feet"),
  14794. default: true
  14795. },
  14796. ]
  14797. ))
  14798. characterMakers.push(() => makeCharacter(
  14799. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14800. {
  14801. front: {
  14802. height: math.unit(5 + 10 / 12, "feet"),
  14803. weight: math.unit(129, "lb"),
  14804. name: "Front",
  14805. image: {
  14806. source: "./media/characters/rina/front.svg",
  14807. extra: 266 / 255,
  14808. bottom: 0.005
  14809. }
  14810. },
  14811. },
  14812. [
  14813. {
  14814. name: "Normal",
  14815. height: math.unit(5 + 10 / 12, "feet"),
  14816. default: true
  14817. },
  14818. ]
  14819. ))
  14820. characterMakers.push(() => makeCharacter(
  14821. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14822. {
  14823. front: {
  14824. height: math.unit(6 + 1 / 12, "feet"),
  14825. weight: math.unit(192, "lb"),
  14826. name: "Front",
  14827. image: {
  14828. source: "./media/characters/veronica/front.svg",
  14829. extra: 319 / 309,
  14830. bottom: 0.005
  14831. }
  14832. },
  14833. },
  14834. [
  14835. {
  14836. name: "Normal",
  14837. height: math.unit(6 + 1 / 12, "feet"),
  14838. default: true
  14839. },
  14840. ]
  14841. ))
  14842. characterMakers.push(() => makeCharacter(
  14843. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14844. {
  14845. front: {
  14846. height: math.unit(9 + 3 / 12, "feet"),
  14847. weight: math.unit(1100, "lb"),
  14848. name: "Front",
  14849. image: {
  14850. source: "./media/characters/braxton/front.svg",
  14851. extra: 1057 / 984,
  14852. bottom: 0.05
  14853. }
  14854. },
  14855. },
  14856. [
  14857. {
  14858. name: "Normal",
  14859. height: math.unit(9 + 3 / 12, "feet")
  14860. },
  14861. {
  14862. name: "Giant",
  14863. height: math.unit(300, "feet"),
  14864. default: true
  14865. },
  14866. {
  14867. name: "Macro",
  14868. height: math.unit(700, "feet")
  14869. },
  14870. {
  14871. name: "Megamacro",
  14872. height: math.unit(6000, "feet")
  14873. },
  14874. ]
  14875. ))
  14876. characterMakers.push(() => makeCharacter(
  14877. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14878. {
  14879. front: {
  14880. height: math.unit(6 + 7 / 12, "feet"),
  14881. weight: math.unit(150, "lb"),
  14882. name: "Front",
  14883. image: {
  14884. source: "./media/characters/blue-feyonics/front.svg",
  14885. extra: 1403 / 1306,
  14886. bottom: 0.047
  14887. }
  14888. },
  14889. },
  14890. [
  14891. {
  14892. name: "Normal",
  14893. height: math.unit(6 + 7 / 12, "feet"),
  14894. default: true
  14895. },
  14896. ]
  14897. ))
  14898. characterMakers.push(() => makeCharacter(
  14899. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14900. {
  14901. front: {
  14902. height: math.unit(1.8, "meters"),
  14903. weight: math.unit(60, "kg"),
  14904. name: "Front",
  14905. image: {
  14906. source: "./media/characters/maxwell/front.svg",
  14907. extra: 2060 / 1873
  14908. }
  14909. },
  14910. },
  14911. [
  14912. {
  14913. name: "Micro",
  14914. height: math.unit(1, "mm")
  14915. },
  14916. {
  14917. name: "Normal",
  14918. height: math.unit(1.8, "meter"),
  14919. default: true
  14920. },
  14921. {
  14922. name: "Macro",
  14923. height: math.unit(30, "meters")
  14924. },
  14925. {
  14926. name: "Megamacro",
  14927. height: math.unit(10, "km")
  14928. },
  14929. ]
  14930. ))
  14931. characterMakers.push(() => makeCharacter(
  14932. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14933. {
  14934. front: {
  14935. height: math.unit(6, "feet"),
  14936. weight: math.unit(150, "lb"),
  14937. name: "Front",
  14938. image: {
  14939. source: "./media/characters/jack/front.svg",
  14940. extra: 1754 / 1640,
  14941. bottom: 0.01
  14942. }
  14943. },
  14944. },
  14945. [
  14946. {
  14947. name: "Normal",
  14948. height: math.unit(80000, "feet"),
  14949. default: true
  14950. },
  14951. {
  14952. name: "Max size",
  14953. height: math.unit(10, "lightyears")
  14954. },
  14955. ]
  14956. ))
  14957. characterMakers.push(() => makeCharacter(
  14958. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14959. {
  14960. upright: {
  14961. height: math.unit(7, "feet"),
  14962. weight: math.unit(170, "lb"),
  14963. name: "Upright",
  14964. image: {
  14965. source: "./media/characters/cafat/upright.svg",
  14966. bottom: 0.01
  14967. }
  14968. },
  14969. uprightFull: {
  14970. height: math.unit(7, "feet"),
  14971. weight: math.unit(170, "lb"),
  14972. name: "Upright (Full)",
  14973. image: {
  14974. source: "./media/characters/cafat/upright-full.svg",
  14975. bottom: 0.01
  14976. }
  14977. },
  14978. side: {
  14979. height: math.unit(5, "feet"),
  14980. weight: math.unit(150, "lb"),
  14981. name: "Side",
  14982. image: {
  14983. source: "./media/characters/cafat/side.svg"
  14984. }
  14985. },
  14986. },
  14987. [
  14988. {
  14989. name: "Small",
  14990. height: math.unit(7, "feet"),
  14991. default: true
  14992. },
  14993. {
  14994. name: "Large",
  14995. height: math.unit(15.5, "feet")
  14996. },
  14997. ]
  14998. ))
  14999. characterMakers.push(() => makeCharacter(
  15000. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15001. {
  15002. front: {
  15003. height: math.unit(6, "feet"),
  15004. weight: math.unit(150, "lb"),
  15005. name: "Front",
  15006. image: {
  15007. source: "./media/characters/verin-raharra/front.svg",
  15008. extra: 5019 / 4835,
  15009. bottom: 0.023
  15010. }
  15011. },
  15012. },
  15013. [
  15014. {
  15015. name: "Normal",
  15016. height: math.unit(7 + 5 / 12, "feet"),
  15017. default: true
  15018. },
  15019. {
  15020. name: "Upsized",
  15021. height: math.unit(20, "feet")
  15022. },
  15023. ]
  15024. ))
  15025. characterMakers.push(() => makeCharacter(
  15026. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15027. {
  15028. front: {
  15029. height: math.unit(7, "feet"),
  15030. weight: math.unit(230, "lb"),
  15031. name: "Front",
  15032. image: {
  15033. source: "./media/characters/nakata/front.svg",
  15034. extra: 1.005,
  15035. bottom: 0.01
  15036. }
  15037. },
  15038. },
  15039. [
  15040. {
  15041. name: "Normal",
  15042. height: math.unit(7, "feet"),
  15043. default: true
  15044. },
  15045. {
  15046. name: "Big",
  15047. height: math.unit(14, "feet")
  15048. },
  15049. {
  15050. name: "Macro",
  15051. height: math.unit(400, "feet")
  15052. },
  15053. ]
  15054. ))
  15055. characterMakers.push(() => makeCharacter(
  15056. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15057. {
  15058. front: {
  15059. height: math.unit(4.91, "feet"),
  15060. weight: math.unit(100, "lb"),
  15061. name: "Front",
  15062. image: {
  15063. source: "./media/characters/lily/front.svg",
  15064. extra: 1585 / 1415,
  15065. bottom: 0.02
  15066. }
  15067. },
  15068. },
  15069. [
  15070. {
  15071. name: "Normal",
  15072. height: math.unit(4.91, "feet"),
  15073. default: true
  15074. },
  15075. ]
  15076. ))
  15077. characterMakers.push(() => makeCharacter(
  15078. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15079. {
  15080. laying: {
  15081. height: math.unit(4 + 4 / 12, "feet"),
  15082. weight: math.unit(600, "lb"),
  15083. name: "Laying",
  15084. image: {
  15085. source: "./media/characters/sheila/laying.svg",
  15086. extra: 1333 / 1265,
  15087. bottom: 0.16
  15088. }
  15089. },
  15090. },
  15091. [
  15092. {
  15093. name: "Normal",
  15094. height: math.unit(4 + 4 / 12, "feet"),
  15095. default: true
  15096. },
  15097. ]
  15098. ))
  15099. characterMakers.push(() => makeCharacter(
  15100. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15101. {
  15102. front: {
  15103. height: math.unit(6, "feet"),
  15104. weight: math.unit(190, "lb"),
  15105. name: "Front",
  15106. image: {
  15107. source: "./media/characters/sax/front.svg",
  15108. extra: 1187 / 973,
  15109. bottom: 0.042
  15110. }
  15111. },
  15112. },
  15113. [
  15114. {
  15115. name: "Micro",
  15116. height: math.unit(4, "inches"),
  15117. default: true
  15118. },
  15119. ]
  15120. ))
  15121. characterMakers.push(() => makeCharacter(
  15122. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15123. {
  15124. front: {
  15125. height: math.unit(6, "feet"),
  15126. weight: math.unit(150, "lb"),
  15127. name: "Front",
  15128. image: {
  15129. source: "./media/characters/pandora/front.svg",
  15130. extra: 2720 / 2556,
  15131. bottom: 0.015
  15132. }
  15133. },
  15134. back: {
  15135. height: math.unit(6, "feet"),
  15136. weight: math.unit(150, "lb"),
  15137. name: "Back",
  15138. image: {
  15139. source: "./media/characters/pandora/back.svg",
  15140. extra: 2720 / 2556,
  15141. bottom: 0.01
  15142. }
  15143. },
  15144. beans: {
  15145. height: math.unit(6 / 8, "feet"),
  15146. name: "Beans",
  15147. image: {
  15148. source: "./media/characters/pandora/beans.svg"
  15149. }
  15150. },
  15151. skirt: {
  15152. height: math.unit(6, "feet"),
  15153. weight: math.unit(150, "lb"),
  15154. name: "Skirt",
  15155. image: {
  15156. source: "./media/characters/pandora/skirt.svg",
  15157. extra: 1622 / 1525,
  15158. bottom: 0.015
  15159. }
  15160. },
  15161. hoodie: {
  15162. height: math.unit(6, "feet"),
  15163. weight: math.unit(150, "lb"),
  15164. name: "Hoodie",
  15165. image: {
  15166. source: "./media/characters/pandora/hoodie.svg",
  15167. extra: 1622 / 1525,
  15168. bottom: 0.015
  15169. }
  15170. },
  15171. casual: {
  15172. height: math.unit(6, "feet"),
  15173. weight: math.unit(150, "lb"),
  15174. name: "Casual",
  15175. image: {
  15176. source: "./media/characters/pandora/casual.svg",
  15177. extra: 1622 / 1525,
  15178. bottom: 0.015
  15179. }
  15180. },
  15181. },
  15182. [
  15183. {
  15184. name: "Normal",
  15185. height: math.unit(6, "feet")
  15186. },
  15187. {
  15188. name: "Big Steppy",
  15189. height: math.unit(1, "km"),
  15190. default: true
  15191. },
  15192. ]
  15193. ))
  15194. characterMakers.push(() => makeCharacter(
  15195. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15196. {
  15197. side: {
  15198. height: math.unit(10, "feet"),
  15199. weight: math.unit(800, "kg"),
  15200. name: "Side",
  15201. image: {
  15202. source: "./media/characters/venio-darcony/side.svg",
  15203. extra: 1373 / 1003,
  15204. bottom: 0.037
  15205. }
  15206. },
  15207. front: {
  15208. height: math.unit(19, "feet"),
  15209. weight: math.unit(800, "kg"),
  15210. name: "Front",
  15211. image: {
  15212. source: "./media/characters/venio-darcony/front.svg"
  15213. }
  15214. },
  15215. back: {
  15216. height: math.unit(19, "feet"),
  15217. weight: math.unit(800, "kg"),
  15218. name: "Back",
  15219. image: {
  15220. source: "./media/characters/venio-darcony/back.svg"
  15221. }
  15222. },
  15223. sideNsfw: {
  15224. height: math.unit(10, "feet"),
  15225. weight: math.unit(800, "kg"),
  15226. name: "Side (NSFW)",
  15227. image: {
  15228. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15229. extra: 1373 / 1003,
  15230. bottom: 0.037
  15231. }
  15232. },
  15233. frontNsfw: {
  15234. height: math.unit(19, "feet"),
  15235. weight: math.unit(800, "kg"),
  15236. name: "Front (NSFW)",
  15237. image: {
  15238. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15239. }
  15240. },
  15241. backNsfw: {
  15242. height: math.unit(19, "feet"),
  15243. weight: math.unit(800, "kg"),
  15244. name: "Back (NSFW)",
  15245. image: {
  15246. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15247. }
  15248. },
  15249. sideArmored: {
  15250. height: math.unit(10, "feet"),
  15251. weight: math.unit(800, "kg"),
  15252. name: "Side (Armored)",
  15253. image: {
  15254. source: "./media/characters/venio-darcony/side-armored.svg",
  15255. extra: 1373 / 1003,
  15256. bottom: 0.037
  15257. }
  15258. },
  15259. frontArmored: {
  15260. height: math.unit(19, "feet"),
  15261. weight: math.unit(900, "kg"),
  15262. name: "Front (Armored)",
  15263. image: {
  15264. source: "./media/characters/venio-darcony/front-armored.svg"
  15265. }
  15266. },
  15267. backArmored: {
  15268. height: math.unit(19, "feet"),
  15269. weight: math.unit(900, "kg"),
  15270. name: "Back (Armored)",
  15271. image: {
  15272. source: "./media/characters/venio-darcony/back-armored.svg"
  15273. }
  15274. },
  15275. sword: {
  15276. height: math.unit(10, "feet"),
  15277. weight: math.unit(50, "lb"),
  15278. name: "Sword",
  15279. image: {
  15280. source: "./media/characters/venio-darcony/sword.svg"
  15281. }
  15282. },
  15283. },
  15284. [
  15285. {
  15286. name: "Normal",
  15287. height: math.unit(10, "feet")
  15288. },
  15289. {
  15290. name: "Macro",
  15291. height: math.unit(130, "feet"),
  15292. default: true
  15293. },
  15294. {
  15295. name: "Macro+",
  15296. height: math.unit(240, "feet")
  15297. },
  15298. ]
  15299. ))
  15300. characterMakers.push(() => makeCharacter(
  15301. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15302. {
  15303. front: {
  15304. height: math.unit(6, "feet"),
  15305. weight: math.unit(150, "lb"),
  15306. name: "Front",
  15307. image: {
  15308. source: "./media/characters/veski/front.svg",
  15309. extra: 1299 / 1225,
  15310. bottom: 0.04
  15311. }
  15312. },
  15313. back: {
  15314. height: math.unit(6, "feet"),
  15315. weight: math.unit(150, "lb"),
  15316. name: "Back",
  15317. image: {
  15318. source: "./media/characters/veski/back.svg",
  15319. extra: 1299 / 1225,
  15320. bottom: 0.008
  15321. }
  15322. },
  15323. maw: {
  15324. height: math.unit(1.5 * 1.21, "feet"),
  15325. name: "Maw",
  15326. image: {
  15327. source: "./media/characters/veski/maw.svg"
  15328. }
  15329. },
  15330. },
  15331. [
  15332. {
  15333. name: "Macro",
  15334. height: math.unit(2, "km"),
  15335. default: true
  15336. },
  15337. ]
  15338. ))
  15339. characterMakers.push(() => makeCharacter(
  15340. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15341. {
  15342. front: {
  15343. height: math.unit(5 + 7 / 12, "feet"),
  15344. name: "Front",
  15345. image: {
  15346. source: "./media/characters/isabelle/front.svg",
  15347. extra: 2130 / 1976,
  15348. bottom: 0.05
  15349. }
  15350. },
  15351. },
  15352. [
  15353. {
  15354. name: "Supermicro",
  15355. height: math.unit(10, "micrometers")
  15356. },
  15357. {
  15358. name: "Micro",
  15359. height: math.unit(1, "inch")
  15360. },
  15361. {
  15362. name: "Tiny",
  15363. height: math.unit(5, "inches")
  15364. },
  15365. {
  15366. name: "Standard",
  15367. height: math.unit(5 + 7 / 12, "inches")
  15368. },
  15369. {
  15370. name: "Macro",
  15371. height: math.unit(80, "meters"),
  15372. default: true
  15373. },
  15374. {
  15375. name: "Megamacro",
  15376. height: math.unit(250, "meters")
  15377. },
  15378. {
  15379. name: "Gigamacro",
  15380. height: math.unit(5, "km")
  15381. },
  15382. {
  15383. name: "Cosmic",
  15384. height: math.unit(2.5e6, "miles")
  15385. },
  15386. ]
  15387. ))
  15388. characterMakers.push(() => makeCharacter(
  15389. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15390. {
  15391. front: {
  15392. height: math.unit(6, "feet"),
  15393. weight: math.unit(150, "lb"),
  15394. name: "Front",
  15395. image: {
  15396. source: "./media/characters/hanzo/front.svg",
  15397. extra: 374 / 344,
  15398. bottom: 0.02
  15399. }
  15400. },
  15401. },
  15402. [
  15403. {
  15404. name: "Normal",
  15405. height: math.unit(8, "feet"),
  15406. default: true
  15407. },
  15408. ]
  15409. ))
  15410. characterMakers.push(() => makeCharacter(
  15411. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15412. {
  15413. front: {
  15414. height: math.unit(7, "feet"),
  15415. weight: math.unit(130, "lb"),
  15416. name: "Front",
  15417. image: {
  15418. source: "./media/characters/anna/front.svg",
  15419. extra: 169 / 145,
  15420. bottom: 0.06
  15421. }
  15422. },
  15423. full: {
  15424. height: math.unit(4.96, "feet"),
  15425. weight: math.unit(220, "lb"),
  15426. name: "Full",
  15427. image: {
  15428. source: "./media/characters/anna/full.svg",
  15429. extra: 138 / 114,
  15430. bottom: 0.15
  15431. }
  15432. },
  15433. tongue: {
  15434. height: math.unit(2.53, "feet"),
  15435. name: "Tongue",
  15436. image: {
  15437. source: "./media/characters/anna/tongue.svg"
  15438. }
  15439. },
  15440. },
  15441. [
  15442. {
  15443. name: "Normal",
  15444. height: math.unit(7, "feet"),
  15445. default: true
  15446. },
  15447. ]
  15448. ))
  15449. characterMakers.push(() => makeCharacter(
  15450. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15451. {
  15452. front: {
  15453. height: math.unit(7, "feet"),
  15454. weight: math.unit(150, "lb"),
  15455. name: "Front",
  15456. image: {
  15457. source: "./media/characters/ian-corvid/front.svg",
  15458. extra: 150 / 142,
  15459. bottom: 0.02
  15460. }
  15461. },
  15462. back: {
  15463. height: math.unit(7, "feet"),
  15464. weight: math.unit(150, "lb"),
  15465. name: "Back",
  15466. image: {
  15467. source: "./media/characters/ian-corvid/back.svg",
  15468. extra: 150 / 143,
  15469. bottom: 0.01
  15470. }
  15471. },
  15472. stomping: {
  15473. height: math.unit(7, "feet"),
  15474. weight: math.unit(150, "lb"),
  15475. name: "Stomping",
  15476. image: {
  15477. source: "./media/characters/ian-corvid/stomping.svg",
  15478. extra: 76 / 72
  15479. }
  15480. },
  15481. sitting: {
  15482. height: math.unit(7 / 1.8, "feet"),
  15483. weight: math.unit(150, "lb"),
  15484. name: "Sitting",
  15485. image: {
  15486. source: "./media/characters/ian-corvid/sitting.svg",
  15487. extra: 1400 / 1269,
  15488. bottom: 0.15
  15489. }
  15490. },
  15491. },
  15492. [
  15493. {
  15494. name: "Tiny Microw",
  15495. height: math.unit(1, "inch")
  15496. },
  15497. {
  15498. name: "Microw",
  15499. height: math.unit(6, "inches")
  15500. },
  15501. {
  15502. name: "Crow",
  15503. height: math.unit(7 + 1 / 12, "feet"),
  15504. default: true
  15505. },
  15506. {
  15507. name: "Macrow",
  15508. height: math.unit(176, "feet")
  15509. },
  15510. ]
  15511. ))
  15512. characterMakers.push(() => makeCharacter(
  15513. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15514. {
  15515. front: {
  15516. height: math.unit(5 + 7 / 12, "feet"),
  15517. weight: math.unit(147, "lb"),
  15518. name: "Front",
  15519. image: {
  15520. source: "./media/characters/natalie-kellon/front.svg",
  15521. extra: 1214 / 1141,
  15522. bottom: 0.02
  15523. }
  15524. },
  15525. },
  15526. [
  15527. {
  15528. name: "Micro",
  15529. height: math.unit(1 / 16, "inch")
  15530. },
  15531. {
  15532. name: "Tiny",
  15533. height: math.unit(4, "inches")
  15534. },
  15535. {
  15536. name: "Normal",
  15537. height: math.unit(5 + 7 / 12, "feet"),
  15538. default: true
  15539. },
  15540. {
  15541. name: "Amazon",
  15542. height: math.unit(12, "feet")
  15543. },
  15544. {
  15545. name: "Giantess",
  15546. height: math.unit(160, "meters")
  15547. },
  15548. {
  15549. name: "Titaness",
  15550. height: math.unit(800, "meters")
  15551. },
  15552. ]
  15553. ))
  15554. characterMakers.push(() => makeCharacter(
  15555. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15556. {
  15557. front: {
  15558. height: math.unit(6, "feet"),
  15559. weight: math.unit(150, "lb"),
  15560. name: "Front",
  15561. image: {
  15562. source: "./media/characters/alluria/front.svg",
  15563. extra: 806 / 738,
  15564. bottom: 0.01
  15565. }
  15566. },
  15567. side: {
  15568. height: math.unit(6, "feet"),
  15569. weight: math.unit(150, "lb"),
  15570. name: "Side",
  15571. image: {
  15572. source: "./media/characters/alluria/side.svg",
  15573. extra: 800 / 750,
  15574. }
  15575. },
  15576. back: {
  15577. height: math.unit(6, "feet"),
  15578. weight: math.unit(150, "lb"),
  15579. name: "Back",
  15580. image: {
  15581. source: "./media/characters/alluria/back.svg",
  15582. extra: 806 / 738,
  15583. }
  15584. },
  15585. frontMaid: {
  15586. height: math.unit(6, "feet"),
  15587. weight: math.unit(150, "lb"),
  15588. name: "Front (Maid)",
  15589. image: {
  15590. source: "./media/characters/alluria/front-maid.svg",
  15591. extra: 806 / 738,
  15592. bottom: 0.01
  15593. }
  15594. },
  15595. sideMaid: {
  15596. height: math.unit(6, "feet"),
  15597. weight: math.unit(150, "lb"),
  15598. name: "Side (Maid)",
  15599. image: {
  15600. source: "./media/characters/alluria/side-maid.svg",
  15601. extra: 800 / 750,
  15602. bottom: 0.005
  15603. }
  15604. },
  15605. backMaid: {
  15606. height: math.unit(6, "feet"),
  15607. weight: math.unit(150, "lb"),
  15608. name: "Back (Maid)",
  15609. image: {
  15610. source: "./media/characters/alluria/back-maid.svg",
  15611. extra: 806 / 738,
  15612. }
  15613. },
  15614. },
  15615. [
  15616. {
  15617. name: "Micro",
  15618. height: math.unit(6, "inches"),
  15619. default: true
  15620. },
  15621. ]
  15622. ))
  15623. characterMakers.push(() => makeCharacter(
  15624. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15625. {
  15626. front: {
  15627. height: math.unit(6, "feet"),
  15628. weight: math.unit(150, "lb"),
  15629. name: "Front",
  15630. image: {
  15631. source: "./media/characters/kyle/front.svg",
  15632. extra: 1069 / 962,
  15633. bottom: 77.228 / 1727.45
  15634. }
  15635. },
  15636. },
  15637. [
  15638. {
  15639. name: "Macro",
  15640. height: math.unit(150, "feet"),
  15641. default: true
  15642. },
  15643. ]
  15644. ))
  15645. characterMakers.push(() => makeCharacter(
  15646. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15647. {
  15648. front: {
  15649. height: math.unit(6, "feet"),
  15650. weight: math.unit(300, "lb"),
  15651. name: "Front",
  15652. image: {
  15653. source: "./media/characters/duncan/front.svg",
  15654. extra: 1650 / 1482,
  15655. bottom: 0.05
  15656. }
  15657. },
  15658. },
  15659. [
  15660. {
  15661. name: "Macro",
  15662. height: math.unit(100, "feet"),
  15663. default: true
  15664. },
  15665. ]
  15666. ))
  15667. characterMakers.push(() => makeCharacter(
  15668. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15669. {
  15670. front: {
  15671. height: math.unit(5 + 4 / 12, "feet"),
  15672. weight: math.unit(220, "lb"),
  15673. name: "Front",
  15674. image: {
  15675. source: "./media/characters/memory/front.svg",
  15676. extra: 3641 / 3545,
  15677. bottom: 0.03
  15678. }
  15679. },
  15680. back: {
  15681. height: math.unit(5 + 4 / 12, "feet"),
  15682. weight: math.unit(220, "lb"),
  15683. name: "Back",
  15684. image: {
  15685. source: "./media/characters/memory/back.svg",
  15686. extra: 3641 / 3545,
  15687. bottom: 0.025
  15688. }
  15689. },
  15690. frontSkirt: {
  15691. height: math.unit(5 + 4 / 12, "feet"),
  15692. weight: math.unit(220, "lb"),
  15693. name: "Front (Skirt)",
  15694. image: {
  15695. source: "./media/characters/memory/front-skirt.svg",
  15696. extra: 3641 / 3545,
  15697. bottom: 0.03
  15698. }
  15699. },
  15700. frontDress: {
  15701. height: math.unit(5 + 4 / 12, "feet"),
  15702. weight: math.unit(220, "lb"),
  15703. name: "Front (Dress)",
  15704. image: {
  15705. source: "./media/characters/memory/front-dress.svg",
  15706. extra: 3641 / 3545,
  15707. bottom: 0.03
  15708. }
  15709. },
  15710. },
  15711. [
  15712. {
  15713. name: "Micro",
  15714. height: math.unit(6, "inches"),
  15715. default: true
  15716. },
  15717. {
  15718. name: "Normal",
  15719. height: math.unit(5 + 4 / 12, "feet")
  15720. },
  15721. ]
  15722. ))
  15723. characterMakers.push(() => makeCharacter(
  15724. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15725. {
  15726. front: {
  15727. height: math.unit(4 + 11 / 12, "feet"),
  15728. weight: math.unit(100, "lb"),
  15729. name: "Front",
  15730. image: {
  15731. source: "./media/characters/luno/front.svg",
  15732. extra: 1535 / 1487,
  15733. bottom: 0.03
  15734. }
  15735. },
  15736. },
  15737. [
  15738. {
  15739. name: "Micro",
  15740. height: math.unit(3, "inches")
  15741. },
  15742. {
  15743. name: "Normal",
  15744. height: math.unit(4 + 11 / 12, "feet"),
  15745. default: true
  15746. },
  15747. {
  15748. name: "Macro",
  15749. height: math.unit(300, "feet")
  15750. },
  15751. {
  15752. name: "Megamacro",
  15753. height: math.unit(700, "miles")
  15754. },
  15755. ]
  15756. ))
  15757. characterMakers.push(() => makeCharacter(
  15758. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15759. {
  15760. front: {
  15761. height: math.unit(6 + 2 / 12, "feet"),
  15762. weight: math.unit(170, "lb"),
  15763. name: "Front",
  15764. image: {
  15765. source: "./media/characters/jamesy/front.svg",
  15766. extra: 440 / 382,
  15767. bottom: 0.005
  15768. }
  15769. },
  15770. },
  15771. [
  15772. {
  15773. name: "Micro",
  15774. height: math.unit(3, "inches")
  15775. },
  15776. {
  15777. name: "Normal",
  15778. height: math.unit(6 + 2 / 12, "feet"),
  15779. default: true
  15780. },
  15781. {
  15782. name: "Macro",
  15783. height: math.unit(300, "feet")
  15784. },
  15785. {
  15786. name: "Megamacro",
  15787. height: math.unit(700, "miles")
  15788. },
  15789. ]
  15790. ))
  15791. characterMakers.push(() => makeCharacter(
  15792. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15793. {
  15794. front: {
  15795. height: math.unit(6, "feet"),
  15796. weight: math.unit(160, "lb"),
  15797. name: "Front",
  15798. image: {
  15799. source: "./media/characters/mark/front.svg",
  15800. extra: 3300 / 3100,
  15801. bottom: 136.42 / 3440.47
  15802. }
  15803. },
  15804. },
  15805. [
  15806. {
  15807. name: "Macro",
  15808. height: math.unit(120, "meters")
  15809. },
  15810. {
  15811. name: "Bigger Macro",
  15812. height: math.unit(350, "meters")
  15813. },
  15814. {
  15815. name: "Megamacro",
  15816. height: math.unit(8, "km"),
  15817. default: true
  15818. },
  15819. {
  15820. name: "Continental",
  15821. height: math.unit(4550, "km")
  15822. },
  15823. {
  15824. name: "Planetary",
  15825. height: math.unit(65000, "km")
  15826. },
  15827. ]
  15828. ))
  15829. characterMakers.push(() => makeCharacter(
  15830. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15831. {
  15832. front: {
  15833. height: math.unit(6, "feet"),
  15834. weight: math.unit(400, "lb"),
  15835. name: "Front",
  15836. image: {
  15837. source: "./media/characters/mac/front.svg",
  15838. extra: 1048 / 987.7,
  15839. bottom: 60 / 1107.6,
  15840. }
  15841. },
  15842. },
  15843. [
  15844. {
  15845. name: "Macro",
  15846. height: math.unit(500, "feet"),
  15847. default: true
  15848. },
  15849. ]
  15850. ))
  15851. characterMakers.push(() => makeCharacter(
  15852. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15853. {
  15854. front: {
  15855. height: math.unit(5 + 2 / 12, "feet"),
  15856. weight: math.unit(190, "lb"),
  15857. name: "Front",
  15858. image: {
  15859. source: "./media/characters/bari/front.svg",
  15860. extra: 3156 / 2880,
  15861. bottom: 0.03
  15862. }
  15863. },
  15864. back: {
  15865. height: math.unit(5 + 2 / 12, "feet"),
  15866. weight: math.unit(190, "lb"),
  15867. name: "Back",
  15868. image: {
  15869. source: "./media/characters/bari/back.svg",
  15870. extra: 3260 / 2834,
  15871. bottom: 0.025
  15872. }
  15873. },
  15874. frontPlush: {
  15875. height: math.unit(5 + 2 / 12, "feet"),
  15876. weight: math.unit(190, "lb"),
  15877. name: "Front (Plush)",
  15878. image: {
  15879. source: "./media/characters/bari/front-plush.svg",
  15880. extra: 1112 / 1061,
  15881. bottom: 0.002
  15882. }
  15883. },
  15884. },
  15885. [
  15886. {
  15887. name: "Micro",
  15888. height: math.unit(3, "inches")
  15889. },
  15890. {
  15891. name: "Normal",
  15892. height: math.unit(5 + 2 / 12, "feet"),
  15893. default: true
  15894. },
  15895. {
  15896. name: "Macro",
  15897. height: math.unit(20, "feet")
  15898. },
  15899. ]
  15900. ))
  15901. characterMakers.push(() => makeCharacter(
  15902. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15903. {
  15904. front: {
  15905. height: math.unit(6 + 1 / 12, "feet"),
  15906. weight: math.unit(275, "lb"),
  15907. name: "Front",
  15908. image: {
  15909. source: "./media/characters/hunter-misha-raven/front.svg"
  15910. }
  15911. },
  15912. },
  15913. [
  15914. {
  15915. name: "Mortal",
  15916. height: math.unit(6 + 1 / 12, "feet")
  15917. },
  15918. {
  15919. name: "Divine",
  15920. height: math.unit(1.12134e34, "parsecs"),
  15921. default: true
  15922. },
  15923. ]
  15924. ))
  15925. characterMakers.push(() => makeCharacter(
  15926. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15927. {
  15928. front: {
  15929. height: math.unit(6 + 3 / 12, "feet"),
  15930. weight: math.unit(220, "lb"),
  15931. name: "Front",
  15932. image: {
  15933. source: "./media/characters/max-calore/front.svg",
  15934. extra: 1700 / 1648,
  15935. bottom: 0.01
  15936. }
  15937. },
  15938. back: {
  15939. height: math.unit(6 + 3 / 12, "feet"),
  15940. weight: math.unit(220, "lb"),
  15941. name: "Back",
  15942. image: {
  15943. source: "./media/characters/max-calore/back.svg",
  15944. extra: 1700 / 1648,
  15945. bottom: 0.01
  15946. }
  15947. },
  15948. },
  15949. [
  15950. {
  15951. name: "Normal",
  15952. height: math.unit(6 + 3 / 12, "feet"),
  15953. default: true
  15954. },
  15955. ]
  15956. ))
  15957. characterMakers.push(() => makeCharacter(
  15958. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15959. {
  15960. side: {
  15961. height: math.unit(2 + 8 / 12, "feet"),
  15962. weight: math.unit(99, "lb"),
  15963. name: "Side",
  15964. image: {
  15965. source: "./media/characters/aspen/side.svg",
  15966. extra: 152 / 138,
  15967. bottom: 0.032
  15968. }
  15969. },
  15970. },
  15971. [
  15972. {
  15973. name: "Normal",
  15974. height: math.unit(2 + 8 / 12, "feet"),
  15975. default: true
  15976. },
  15977. ]
  15978. ))
  15979. characterMakers.push(() => makeCharacter(
  15980. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15981. {
  15982. side: {
  15983. height: math.unit(3 + 2 / 12, "feet"),
  15984. weight: math.unit(224, "lb"),
  15985. name: "Side",
  15986. image: {
  15987. source: "./media/characters/sheila-feral-wolf/side.svg",
  15988. extra: 179 / 166,
  15989. bottom: 0.03
  15990. }
  15991. },
  15992. },
  15993. [
  15994. {
  15995. name: "Normal",
  15996. height: math.unit(3 + 2 / 12, "feet"),
  15997. default: true
  15998. },
  15999. ]
  16000. ))
  16001. characterMakers.push(() => makeCharacter(
  16002. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16003. {
  16004. side: {
  16005. height: math.unit(1 + 9 / 12, "feet"),
  16006. weight: math.unit(38, "lb"),
  16007. name: "Side",
  16008. image: {
  16009. source: "./media/characters/michelle/side.svg",
  16010. extra: 147 / 136.7,
  16011. bottom: 0.03
  16012. }
  16013. },
  16014. },
  16015. [
  16016. {
  16017. name: "Normal",
  16018. height: math.unit(1 + 9 / 12, "feet"),
  16019. default: true
  16020. },
  16021. ]
  16022. ))
  16023. characterMakers.push(() => makeCharacter(
  16024. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16025. {
  16026. front: {
  16027. height: math.unit(1 + 1 / 12, "feet"),
  16028. weight: math.unit(18, "lb"),
  16029. name: "Front",
  16030. image: {
  16031. source: "./media/characters/nino/front.svg"
  16032. }
  16033. },
  16034. },
  16035. [
  16036. {
  16037. name: "Normal",
  16038. height: math.unit(1 + 1 / 12, "feet"),
  16039. default: true
  16040. },
  16041. ]
  16042. ))
  16043. characterMakers.push(() => makeCharacter(
  16044. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16045. {
  16046. front: {
  16047. height: math.unit(1, "feet"),
  16048. weight: math.unit(16, "lb"),
  16049. name: "Front",
  16050. image: {
  16051. source: "./media/characters/viola/front.svg"
  16052. }
  16053. },
  16054. },
  16055. [
  16056. {
  16057. name: "Normal",
  16058. height: math.unit(1, "feet"),
  16059. default: true
  16060. },
  16061. ]
  16062. ))
  16063. characterMakers.push(() => makeCharacter(
  16064. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16065. {
  16066. front: {
  16067. height: math.unit(6 + 5 / 12, "feet"),
  16068. weight: math.unit(580, "lb"),
  16069. name: "Front",
  16070. image: {
  16071. source: "./media/characters/atlas/front.svg",
  16072. extra: 298.5 / 290,
  16073. bottom: 0.015
  16074. }
  16075. },
  16076. },
  16077. [
  16078. {
  16079. name: "Normal",
  16080. height: math.unit(6 + 5 / 12, "feet"),
  16081. default: true
  16082. },
  16083. ]
  16084. ))
  16085. characterMakers.push(() => makeCharacter(
  16086. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16087. {
  16088. side: {
  16089. height: math.unit(1 + 10 / 12, "feet"),
  16090. weight: math.unit(25, "lb"),
  16091. name: "Side",
  16092. image: {
  16093. source: "./media/characters/davy/side.svg",
  16094. extra: 200 / 170,
  16095. bottom: 0.01
  16096. }
  16097. },
  16098. },
  16099. [
  16100. {
  16101. name: "Normal",
  16102. height: math.unit(1 + 10 / 12, "feet"),
  16103. default: true
  16104. },
  16105. ]
  16106. ))
  16107. characterMakers.push(() => makeCharacter(
  16108. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16109. {
  16110. side: {
  16111. height: math.unit(4 + 8 / 12, "feet"),
  16112. weight: math.unit(166, "lb"),
  16113. name: "Side",
  16114. image: {
  16115. source: "./media/characters/fiona/side.svg",
  16116. extra: 232 / 220,
  16117. bottom: 0.03
  16118. }
  16119. },
  16120. },
  16121. [
  16122. {
  16123. name: "Normal",
  16124. height: math.unit(4 + 8 / 12, "feet"),
  16125. default: true
  16126. },
  16127. ]
  16128. ))
  16129. characterMakers.push(() => makeCharacter(
  16130. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16131. {
  16132. front: {
  16133. height: math.unit(2, "feet"),
  16134. weight: math.unit(62, "lb"),
  16135. name: "Front",
  16136. image: {
  16137. source: "./media/characters/lyla/front.svg",
  16138. bottom: 0.1
  16139. }
  16140. },
  16141. },
  16142. [
  16143. {
  16144. name: "Normal",
  16145. height: math.unit(2, "feet"),
  16146. default: true
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16152. {
  16153. side: {
  16154. height: math.unit(1.8, "feet"),
  16155. weight: math.unit(44, "lb"),
  16156. name: "Side",
  16157. image: {
  16158. source: "./media/characters/perseus/side.svg",
  16159. bottom: 0.21
  16160. }
  16161. },
  16162. },
  16163. [
  16164. {
  16165. name: "Normal",
  16166. height: math.unit(1.8, "feet"),
  16167. default: true
  16168. },
  16169. ]
  16170. ))
  16171. characterMakers.push(() => makeCharacter(
  16172. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16173. {
  16174. side: {
  16175. height: math.unit(4 + 2 / 12, "feet"),
  16176. weight: math.unit(20, "lb"),
  16177. name: "Side",
  16178. image: {
  16179. source: "./media/characters/remus/side.svg"
  16180. }
  16181. },
  16182. },
  16183. [
  16184. {
  16185. name: "Normal",
  16186. height: math.unit(4 + 2 / 12, "feet"),
  16187. default: true
  16188. },
  16189. ]
  16190. ))
  16191. characterMakers.push(() => makeCharacter(
  16192. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16193. {
  16194. front: {
  16195. height: math.unit(4 + 11 / 12, "feet"),
  16196. weight: math.unit(114, "lb"),
  16197. name: "Front",
  16198. image: {
  16199. source: "./media/characters/raf/front.svg",
  16200. bottom: 20.5/1863
  16201. }
  16202. },
  16203. side: {
  16204. height: math.unit(4 + 11 / 12, "feet"),
  16205. weight: math.unit(114, "lb"),
  16206. name: "Side",
  16207. image: {
  16208. source: "./media/characters/raf/side.svg",
  16209. bottom: 22/1822
  16210. }
  16211. },
  16212. },
  16213. [
  16214. {
  16215. name: "Micro",
  16216. height: math.unit(2, "inches")
  16217. },
  16218. {
  16219. name: "Normal",
  16220. height: math.unit(4 + 11 / 12, "feet"),
  16221. default: true
  16222. },
  16223. {
  16224. name: "Macro",
  16225. height: math.unit(70, "feet")
  16226. },
  16227. ]
  16228. ))
  16229. characterMakers.push(() => makeCharacter(
  16230. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16231. {
  16232. front: {
  16233. height: math.unit(1.5, "meters"),
  16234. weight: math.unit(68, "kg"),
  16235. name: "Front",
  16236. image: {
  16237. source: "./media/characters/liam-einarr/front.svg",
  16238. extra: 2822 / 2666
  16239. }
  16240. },
  16241. back: {
  16242. height: math.unit(1.5, "meters"),
  16243. weight: math.unit(68, "kg"),
  16244. name: "Back",
  16245. image: {
  16246. source: "./media/characters/liam-einarr/back.svg",
  16247. extra: 2822 / 2666,
  16248. bottom: 0.015
  16249. }
  16250. },
  16251. },
  16252. [
  16253. {
  16254. name: "Normal",
  16255. height: math.unit(1.5, "meters"),
  16256. default: true
  16257. },
  16258. {
  16259. name: "Macro",
  16260. height: math.unit(150, "meters")
  16261. },
  16262. {
  16263. name: "Megamacro",
  16264. height: math.unit(35, "km")
  16265. },
  16266. ]
  16267. ))
  16268. characterMakers.push(() => makeCharacter(
  16269. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16270. {
  16271. front: {
  16272. height: math.unit(6, "feet"),
  16273. weight: math.unit(75, "kg"),
  16274. name: "Front",
  16275. image: {
  16276. source: "./media/characters/linda/front.svg",
  16277. extra: 930 / 874,
  16278. bottom: 0.004
  16279. }
  16280. },
  16281. },
  16282. [
  16283. {
  16284. name: "Normal",
  16285. height: math.unit(6, "feet"),
  16286. default: true
  16287. },
  16288. ]
  16289. ))
  16290. characterMakers.push(() => makeCharacter(
  16291. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16292. {
  16293. front: {
  16294. height: math.unit(6 + 8 / 12, "feet"),
  16295. weight: math.unit(220, "lb"),
  16296. name: "Front",
  16297. image: {
  16298. source: "./media/characters/caylex/front.svg",
  16299. extra: 821 / 772,
  16300. bottom: 0.07
  16301. }
  16302. },
  16303. back: {
  16304. height: math.unit(6 + 8 / 12, "feet"),
  16305. weight: math.unit(220, "lb"),
  16306. name: "Back",
  16307. image: {
  16308. source: "./media/characters/caylex/back.svg",
  16309. extra: 821 / 772,
  16310. bottom: 0.022
  16311. }
  16312. },
  16313. hand: {
  16314. height: math.unit(1.25, "feet"),
  16315. name: "Hand",
  16316. image: {
  16317. source: "./media/characters/caylex/hand.svg"
  16318. }
  16319. },
  16320. foot: {
  16321. height: math.unit(1.6, "feet"),
  16322. name: "Foot",
  16323. image: {
  16324. source: "./media/characters/caylex/foot.svg"
  16325. }
  16326. },
  16327. armored: {
  16328. height: math.unit(6 + 8 / 12, "feet"),
  16329. weight: math.unit(250, "lb"),
  16330. name: "Armored",
  16331. image: {
  16332. source: "./media/characters/caylex/armored.svg",
  16333. extra: 1420 / 1310,
  16334. bottom: 0.045
  16335. }
  16336. },
  16337. },
  16338. [
  16339. {
  16340. name: "Normal",
  16341. height: math.unit(6 + 8 / 12, "feet"),
  16342. default: true
  16343. },
  16344. {
  16345. name: "Normal+",
  16346. height: math.unit(12, "feet")
  16347. },
  16348. ]
  16349. ))
  16350. characterMakers.push(() => makeCharacter(
  16351. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16352. {
  16353. front: {
  16354. height: math.unit(7 + 6 / 12, "feet"),
  16355. weight: math.unit(288, "lb"),
  16356. name: "Front",
  16357. image: {
  16358. source: "./media/characters/alana/front.svg",
  16359. extra: 679 / 653,
  16360. bottom: 22.5 / 701
  16361. }
  16362. },
  16363. },
  16364. [
  16365. {
  16366. name: "Normal",
  16367. height: math.unit(7 + 6 / 12, "feet")
  16368. },
  16369. {
  16370. name: "Large",
  16371. height: math.unit(50, "feet")
  16372. },
  16373. {
  16374. name: "Macro",
  16375. height: math.unit(100, "feet"),
  16376. default: true
  16377. },
  16378. {
  16379. name: "Macro+",
  16380. height: math.unit(200, "feet")
  16381. },
  16382. ]
  16383. ))
  16384. characterMakers.push(() => makeCharacter(
  16385. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16386. {
  16387. front: {
  16388. height: math.unit(6 + 1 / 12, "feet"),
  16389. weight: math.unit(210, "lb"),
  16390. name: "Front",
  16391. image: {
  16392. source: "./media/characters/hasani/front.svg",
  16393. extra: 244 / 232,
  16394. bottom: 0.01
  16395. }
  16396. },
  16397. back: {
  16398. height: math.unit(6 + 1 / 12, "feet"),
  16399. weight: math.unit(210, "lb"),
  16400. name: "Back",
  16401. image: {
  16402. source: "./media/characters/hasani/back.svg",
  16403. extra: 244 / 232,
  16404. bottom: 0.01
  16405. }
  16406. },
  16407. },
  16408. [
  16409. {
  16410. name: "Normal",
  16411. height: math.unit(6 + 1 / 12, "feet")
  16412. },
  16413. {
  16414. name: "Macro",
  16415. height: math.unit(175, "feet"),
  16416. default: true
  16417. },
  16418. ]
  16419. ))
  16420. characterMakers.push(() => makeCharacter(
  16421. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16422. {
  16423. front: {
  16424. height: math.unit(1.82, "meters"),
  16425. weight: math.unit(140, "lb"),
  16426. name: "Front",
  16427. image: {
  16428. source: "./media/characters/nita/front.svg",
  16429. extra: 2473 / 2363,
  16430. bottom: 0.01
  16431. }
  16432. },
  16433. },
  16434. [
  16435. {
  16436. name: "Normal",
  16437. height: math.unit(1.82, "m")
  16438. },
  16439. {
  16440. name: "Macro",
  16441. height: math.unit(300, "m")
  16442. },
  16443. {
  16444. name: "Mistake Canon",
  16445. height: math.unit(0.5, "miles"),
  16446. default: true
  16447. },
  16448. {
  16449. name: "Big Mistake",
  16450. height: math.unit(13, "miles")
  16451. },
  16452. {
  16453. name: "Playing God",
  16454. height: math.unit(2450, "miles")
  16455. },
  16456. ]
  16457. ))
  16458. characterMakers.push(() => makeCharacter(
  16459. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16460. {
  16461. front: {
  16462. height: math.unit(4, "feet"),
  16463. weight: math.unit(120, "lb"),
  16464. name: "Front",
  16465. image: {
  16466. source: "./media/characters/shiriko/front.svg",
  16467. extra: 195 / 188
  16468. }
  16469. },
  16470. },
  16471. [
  16472. {
  16473. name: "Normal",
  16474. height: math.unit(4, "feet"),
  16475. default: true
  16476. },
  16477. ]
  16478. ))
  16479. characterMakers.push(() => makeCharacter(
  16480. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16481. {
  16482. front: {
  16483. height: math.unit(6, "feet"),
  16484. name: "front",
  16485. image: {
  16486. source: "./media/characters/deja/front.svg",
  16487. extra: 926 / 840,
  16488. bottom: 0.07
  16489. }
  16490. },
  16491. },
  16492. [
  16493. {
  16494. name: "Planck Length",
  16495. height: math.unit(1.6e-35, "meters")
  16496. },
  16497. {
  16498. name: "Normal",
  16499. height: math.unit(30.48, "meters"),
  16500. default: true
  16501. },
  16502. {
  16503. name: "Universal",
  16504. height: math.unit(8.8e26, "meters")
  16505. },
  16506. ]
  16507. ))
  16508. characterMakers.push(() => makeCharacter(
  16509. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16510. {
  16511. side: {
  16512. height: math.unit(8, "feet"),
  16513. weight: math.unit(6300, "lb"),
  16514. name: "Side",
  16515. image: {
  16516. source: "./media/characters/anima/side.svg",
  16517. bottom: 0.035
  16518. }
  16519. },
  16520. },
  16521. [
  16522. {
  16523. name: "Normal",
  16524. height: math.unit(8, "feet"),
  16525. default: true
  16526. },
  16527. ]
  16528. ))
  16529. characterMakers.push(() => makeCharacter(
  16530. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16531. {
  16532. front: {
  16533. height: math.unit(8, "feet"),
  16534. weight: math.unit(350, "lb"),
  16535. name: "Front",
  16536. image: {
  16537. source: "./media/characters/bianca/front.svg",
  16538. extra: 234 / 225,
  16539. bottom: 0.03
  16540. }
  16541. },
  16542. },
  16543. [
  16544. {
  16545. name: "Normal",
  16546. height: math.unit(8, "feet"),
  16547. default: true
  16548. },
  16549. ]
  16550. ))
  16551. characterMakers.push(() => makeCharacter(
  16552. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16553. {
  16554. front: {
  16555. height: math.unit(6, "feet"),
  16556. weight: math.unit(150, "lb"),
  16557. name: "Front",
  16558. image: {
  16559. source: "./media/characters/adinia/front.svg",
  16560. extra: 1845 / 1672,
  16561. bottom: 0.02
  16562. }
  16563. },
  16564. back: {
  16565. height: math.unit(6, "feet"),
  16566. weight: math.unit(150, "lb"),
  16567. name: "Back",
  16568. image: {
  16569. source: "./media/characters/adinia/back.svg",
  16570. extra: 1845 / 1672,
  16571. bottom: 0.002
  16572. }
  16573. },
  16574. },
  16575. [
  16576. {
  16577. name: "Normal",
  16578. height: math.unit(11 + 5 / 12, "feet"),
  16579. default: true
  16580. },
  16581. ]
  16582. ))
  16583. characterMakers.push(() => makeCharacter(
  16584. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16585. {
  16586. front: {
  16587. height: math.unit(3, "meters"),
  16588. weight: math.unit(200, "kg"),
  16589. name: "Front",
  16590. image: {
  16591. source: "./media/characters/lykasa/front.svg",
  16592. extra: 1076 / 976,
  16593. bottom: 0.06
  16594. }
  16595. },
  16596. },
  16597. [
  16598. {
  16599. name: "Normal",
  16600. height: math.unit(3, "meters")
  16601. },
  16602. {
  16603. name: "Kaiju",
  16604. height: math.unit(120, "meters"),
  16605. default: true
  16606. },
  16607. {
  16608. name: "Mega Kaiju",
  16609. height: math.unit(240, "km")
  16610. },
  16611. {
  16612. name: "Giga Kaiju",
  16613. height: math.unit(400, "megameters")
  16614. },
  16615. {
  16616. name: "Tera Kaiju",
  16617. height: math.unit(800, "gigameters")
  16618. },
  16619. {
  16620. name: "Kaiju Dragon Goddess",
  16621. height: math.unit(26, "zettaparsecs")
  16622. },
  16623. ]
  16624. ))
  16625. characterMakers.push(() => makeCharacter(
  16626. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16627. {
  16628. side: {
  16629. height: math.unit(283 / 124 * 6, "feet"),
  16630. weight: math.unit(35000, "lb"),
  16631. name: "Side",
  16632. image: {
  16633. source: "./media/characters/malfaren/side.svg",
  16634. extra: 2500 / 1010,
  16635. bottom: 0.01
  16636. }
  16637. },
  16638. front: {
  16639. height: math.unit(22.36, "feet"),
  16640. weight: math.unit(35000, "lb"),
  16641. name: "Front",
  16642. image: {
  16643. source: "./media/characters/malfaren/front.svg",
  16644. extra: 1631 / 1476,
  16645. bottom: 0.01
  16646. }
  16647. },
  16648. maw: {
  16649. height: math.unit(6.9, "feet"),
  16650. name: "Maw",
  16651. image: {
  16652. source: "./media/characters/malfaren/maw.svg"
  16653. }
  16654. },
  16655. },
  16656. [
  16657. {
  16658. name: "Big",
  16659. height: math.unit(283 / 162 * 6, "feet"),
  16660. },
  16661. {
  16662. name: "Bigger",
  16663. height: math.unit(283 / 124 * 6, "feet")
  16664. },
  16665. {
  16666. name: "Massive",
  16667. height: math.unit(283 / 92 * 6, "feet"),
  16668. default: true
  16669. },
  16670. {
  16671. name: "👀💦",
  16672. height: math.unit(283 / 73 * 6, "feet"),
  16673. },
  16674. ]
  16675. ))
  16676. characterMakers.push(() => makeCharacter(
  16677. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16678. {
  16679. front: {
  16680. height: math.unit(1.7, "m"),
  16681. weight: math.unit(70, "kg"),
  16682. name: "Front",
  16683. image: {
  16684. source: "./media/characters/kernel/front.svg",
  16685. extra: 222 / 210,
  16686. bottom: 0.007
  16687. }
  16688. },
  16689. },
  16690. [
  16691. {
  16692. name: "Nano",
  16693. height: math.unit(17, "micrometers")
  16694. },
  16695. {
  16696. name: "Micro",
  16697. height: math.unit(1.7, "mm")
  16698. },
  16699. {
  16700. name: "Small",
  16701. height: math.unit(1.7, "cm")
  16702. },
  16703. {
  16704. name: "Normal",
  16705. height: math.unit(1.7, "m"),
  16706. default: true
  16707. },
  16708. ]
  16709. ))
  16710. characterMakers.push(() => makeCharacter(
  16711. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16712. {
  16713. front: {
  16714. height: math.unit(1.75, "meters"),
  16715. weight: math.unit(65, "kg"),
  16716. name: "Front",
  16717. image: {
  16718. source: "./media/characters/jayne-folest/front.svg",
  16719. extra: 2115 / 2007,
  16720. bottom: 0.02
  16721. }
  16722. },
  16723. back: {
  16724. height: math.unit(1.75, "meters"),
  16725. weight: math.unit(65, "kg"),
  16726. name: "Back",
  16727. image: {
  16728. source: "./media/characters/jayne-folest/back.svg",
  16729. extra: 2115 / 2007,
  16730. bottom: 0.005
  16731. }
  16732. },
  16733. frontClothed: {
  16734. height: math.unit(1.75, "meters"),
  16735. weight: math.unit(65, "kg"),
  16736. name: "Front (Clothed)",
  16737. image: {
  16738. source: "./media/characters/jayne-folest/front-clothed.svg",
  16739. extra: 2115 / 2007,
  16740. bottom: 0.035
  16741. }
  16742. },
  16743. hand: {
  16744. height: math.unit(1 / 1.260, "feet"),
  16745. name: "Hand",
  16746. image: {
  16747. source: "./media/characters/jayne-folest/hand.svg"
  16748. }
  16749. },
  16750. foot: {
  16751. height: math.unit(1 / 0.918, "feet"),
  16752. name: "Foot",
  16753. image: {
  16754. source: "./media/characters/jayne-folest/foot.svg"
  16755. }
  16756. },
  16757. },
  16758. [
  16759. {
  16760. name: "Micro",
  16761. height: math.unit(4, "cm")
  16762. },
  16763. {
  16764. name: "Normal",
  16765. height: math.unit(1.75, "meters")
  16766. },
  16767. {
  16768. name: "Macro",
  16769. height: math.unit(47.5, "meters"),
  16770. default: true
  16771. },
  16772. ]
  16773. ))
  16774. characterMakers.push(() => makeCharacter(
  16775. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16776. {
  16777. front: {
  16778. height: math.unit(180, "cm"),
  16779. weight: math.unit(70, "kg"),
  16780. name: "Front",
  16781. image: {
  16782. source: "./media/characters/algier/front.svg",
  16783. extra: 596 / 572,
  16784. bottom: 0.04
  16785. }
  16786. },
  16787. back: {
  16788. height: math.unit(180, "cm"),
  16789. weight: math.unit(70, "kg"),
  16790. name: "Back",
  16791. image: {
  16792. source: "./media/characters/algier/back.svg",
  16793. extra: 596 / 572,
  16794. bottom: 0.025
  16795. }
  16796. },
  16797. frontdressed: {
  16798. height: math.unit(180, "cm"),
  16799. weight: math.unit(150, "kg"),
  16800. name: "Front-dressed",
  16801. image: {
  16802. source: "./media/characters/algier/front-dressed.svg",
  16803. extra: 596 / 572,
  16804. bottom: 0.038
  16805. }
  16806. },
  16807. },
  16808. [
  16809. {
  16810. name: "Micro",
  16811. height: math.unit(5, "cm")
  16812. },
  16813. {
  16814. name: "Normal",
  16815. height: math.unit(180, "cm"),
  16816. default: true
  16817. },
  16818. {
  16819. name: "Macro",
  16820. height: math.unit(64, "m")
  16821. },
  16822. ]
  16823. ))
  16824. characterMakers.push(() => makeCharacter(
  16825. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16826. {
  16827. upright: {
  16828. height: math.unit(7, "feet"),
  16829. weight: math.unit(300, "lb"),
  16830. name: "Upright",
  16831. image: {
  16832. source: "./media/characters/pretzel/upright.svg",
  16833. extra: 534 / 522,
  16834. bottom: 0.065
  16835. }
  16836. },
  16837. sprawling: {
  16838. height: math.unit(3.75, "feet"),
  16839. weight: math.unit(300, "lb"),
  16840. name: "Sprawling",
  16841. image: {
  16842. source: "./media/characters/pretzel/sprawling.svg",
  16843. extra: 314 / 281,
  16844. bottom: 0.1
  16845. }
  16846. },
  16847. tongue: {
  16848. height: math.unit(2, "feet"),
  16849. name: "Tongue",
  16850. image: {
  16851. source: "./media/characters/pretzel/tongue.svg"
  16852. }
  16853. },
  16854. },
  16855. [
  16856. {
  16857. name: "Normal",
  16858. height: math.unit(7, "feet"),
  16859. default: true
  16860. },
  16861. {
  16862. name: "Oversized",
  16863. height: math.unit(15, "feet")
  16864. },
  16865. {
  16866. name: "Huge",
  16867. height: math.unit(30, "feet")
  16868. },
  16869. {
  16870. name: "Macro",
  16871. height: math.unit(250, "feet")
  16872. },
  16873. ]
  16874. ))
  16875. characterMakers.push(() => makeCharacter(
  16876. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16877. {
  16878. sideFront: {
  16879. height: math.unit(5 + 2 / 12, "feet"),
  16880. weight: math.unit(120, "lb"),
  16881. name: "Front Side",
  16882. image: {
  16883. source: "./media/characters/roxi/side-front.svg",
  16884. extra: 2924 / 2717,
  16885. bottom: 0.08
  16886. }
  16887. },
  16888. sideBack: {
  16889. height: math.unit(5 + 2 / 12, "feet"),
  16890. weight: math.unit(120, "lb"),
  16891. name: "Back Side",
  16892. image: {
  16893. source: "./media/characters/roxi/side-back.svg",
  16894. extra: 2904 / 2693,
  16895. bottom: 0.06
  16896. }
  16897. },
  16898. front: {
  16899. height: math.unit(5 + 2 / 12, "feet"),
  16900. weight: math.unit(120, "lb"),
  16901. name: "Front",
  16902. image: {
  16903. source: "./media/characters/roxi/front.svg",
  16904. extra: 2028 / 1907,
  16905. bottom: 0.01
  16906. }
  16907. },
  16908. frontAlt: {
  16909. height: math.unit(5 + 2 / 12, "feet"),
  16910. weight: math.unit(120, "lb"),
  16911. name: "Front (Alt)",
  16912. image: {
  16913. source: "./media/characters/roxi/front-alt.svg",
  16914. extra: 1828 / 1798,
  16915. bottom: 0.01
  16916. }
  16917. },
  16918. sitting: {
  16919. height: math.unit(2.8, "feet"),
  16920. weight: math.unit(120, "lb"),
  16921. name: "Sitting",
  16922. image: {
  16923. source: "./media/characters/roxi/sitting.svg",
  16924. extra: 2660 / 2462,
  16925. bottom: 0.1
  16926. }
  16927. },
  16928. },
  16929. [
  16930. {
  16931. name: "Normal",
  16932. height: math.unit(5 + 2 / 12, "feet"),
  16933. default: true
  16934. },
  16935. ]
  16936. ))
  16937. characterMakers.push(() => makeCharacter(
  16938. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16939. {
  16940. side: {
  16941. height: math.unit(55, "feet"),
  16942. weight: math.unit(153, "tons"),
  16943. name: "Side",
  16944. image: {
  16945. source: "./media/characters/shadow/side.svg",
  16946. extra: 701 / 628,
  16947. bottom: 0.02
  16948. }
  16949. },
  16950. flying: {
  16951. height: math.unit(145, "feet"),
  16952. weight: math.unit(153, "tons"),
  16953. name: "Flying",
  16954. image: {
  16955. source: "./media/characters/shadow/flying.svg"
  16956. }
  16957. },
  16958. },
  16959. [
  16960. {
  16961. name: "Normal",
  16962. height: math.unit(55, "feet"),
  16963. default: true
  16964. },
  16965. ]
  16966. ))
  16967. characterMakers.push(() => makeCharacter(
  16968. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16969. {
  16970. front: {
  16971. height: math.unit(6, "feet"),
  16972. weight: math.unit(200, "lb"),
  16973. name: "Front",
  16974. image: {
  16975. source: "./media/characters/marcie/front.svg",
  16976. extra: 960 / 876,
  16977. bottom: 58 / 1017.87
  16978. }
  16979. },
  16980. },
  16981. [
  16982. {
  16983. name: "Macro",
  16984. height: math.unit(1, "mile"),
  16985. default: true
  16986. },
  16987. ]
  16988. ))
  16989. characterMakers.push(() => makeCharacter(
  16990. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16991. {
  16992. front: {
  16993. height: math.unit(7, "feet"),
  16994. weight: math.unit(200, "lb"),
  16995. name: "Front",
  16996. image: {
  16997. source: "./media/characters/kachina/front.svg",
  16998. extra: 1290.68 / 1119,
  16999. bottom: 36.5 / 1327.18
  17000. }
  17001. },
  17002. },
  17003. [
  17004. {
  17005. name: "Normal",
  17006. height: math.unit(7, "feet"),
  17007. default: true
  17008. },
  17009. ]
  17010. ))
  17011. characterMakers.push(() => makeCharacter(
  17012. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17013. {
  17014. looking: {
  17015. height: math.unit(2, "meters"),
  17016. weight: math.unit(300, "kg"),
  17017. name: "Looking",
  17018. image: {
  17019. source: "./media/characters/kash/looking.svg",
  17020. extra: 474 / 344,
  17021. bottom: 0.03
  17022. }
  17023. },
  17024. side: {
  17025. height: math.unit(2, "meters"),
  17026. weight: math.unit(300, "kg"),
  17027. name: "Side",
  17028. image: {
  17029. source: "./media/characters/kash/side.svg",
  17030. extra: 302 / 251,
  17031. bottom: 0.03
  17032. }
  17033. },
  17034. front: {
  17035. height: math.unit(2, "meters"),
  17036. weight: math.unit(300, "kg"),
  17037. name: "Front",
  17038. image: {
  17039. source: "./media/characters/kash/front.svg",
  17040. extra: 495 / 360,
  17041. bottom: 0.015
  17042. }
  17043. },
  17044. },
  17045. [
  17046. {
  17047. name: "Normal",
  17048. height: math.unit(2, "meters"),
  17049. default: true
  17050. },
  17051. {
  17052. name: "Big",
  17053. height: math.unit(3, "meters")
  17054. },
  17055. {
  17056. name: "Large",
  17057. height: math.unit(5, "meters")
  17058. },
  17059. ]
  17060. ))
  17061. characterMakers.push(() => makeCharacter(
  17062. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17063. {
  17064. feeding: {
  17065. height: math.unit(6.7, "feet"),
  17066. weight: math.unit(350, "lb"),
  17067. name: "Feeding",
  17068. image: {
  17069. source: "./media/characters/lalim/feeding.svg",
  17070. }
  17071. },
  17072. },
  17073. [
  17074. {
  17075. name: "Normal",
  17076. height: math.unit(6.7, "feet"),
  17077. default: true
  17078. },
  17079. ]
  17080. ))
  17081. characterMakers.push(() => makeCharacter(
  17082. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17083. {
  17084. front: {
  17085. height: math.unit(9.5, "feet"),
  17086. weight: math.unit(600, "lb"),
  17087. name: "Front",
  17088. image: {
  17089. source: "./media/characters/de'vout/front.svg",
  17090. extra: 1443 / 1328,
  17091. bottom: 0.025
  17092. }
  17093. },
  17094. back: {
  17095. height: math.unit(9.5, "feet"),
  17096. weight: math.unit(600, "lb"),
  17097. name: "Back",
  17098. image: {
  17099. source: "./media/characters/de'vout/back.svg",
  17100. extra: 1443 / 1328
  17101. }
  17102. },
  17103. frontDressed: {
  17104. height: math.unit(9.5, "feet"),
  17105. weight: math.unit(600, "lb"),
  17106. name: "Front (Dressed",
  17107. image: {
  17108. source: "./media/characters/de'vout/front-dressed.svg",
  17109. extra: 1443 / 1328,
  17110. bottom: 0.025
  17111. }
  17112. },
  17113. backDressed: {
  17114. height: math.unit(9.5, "feet"),
  17115. weight: math.unit(600, "lb"),
  17116. name: "Back (Dressed",
  17117. image: {
  17118. source: "./media/characters/de'vout/back-dressed.svg",
  17119. extra: 1443 / 1328
  17120. }
  17121. },
  17122. },
  17123. [
  17124. {
  17125. name: "Normal",
  17126. height: math.unit(9.5, "feet"),
  17127. default: true
  17128. },
  17129. ]
  17130. ))
  17131. characterMakers.push(() => makeCharacter(
  17132. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17133. {
  17134. front: {
  17135. height: math.unit(8, "feet"),
  17136. weight: math.unit(225, "lb"),
  17137. name: "Front",
  17138. image: {
  17139. source: "./media/characters/talana/front.svg",
  17140. extra: 1410 / 1300,
  17141. bottom: 0.015
  17142. }
  17143. },
  17144. frontDressed: {
  17145. height: math.unit(8, "feet"),
  17146. weight: math.unit(225, "lb"),
  17147. name: "Front (Dressed",
  17148. image: {
  17149. source: "./media/characters/talana/front-dressed.svg",
  17150. extra: 1410 / 1300,
  17151. bottom: 0.015
  17152. }
  17153. },
  17154. },
  17155. [
  17156. {
  17157. name: "Normal",
  17158. height: math.unit(8, "feet"),
  17159. default: true
  17160. },
  17161. ]
  17162. ))
  17163. characterMakers.push(() => makeCharacter(
  17164. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17165. {
  17166. side: {
  17167. height: math.unit(7.2, "feet"),
  17168. weight: math.unit(150, "lb"),
  17169. name: "Side",
  17170. image: {
  17171. source: "./media/characters/xeauvok/side.svg",
  17172. extra: 1975 / 1523,
  17173. bottom: 0.07
  17174. }
  17175. },
  17176. },
  17177. [
  17178. {
  17179. name: "Normal",
  17180. height: math.unit(7.2, "feet"),
  17181. default: true
  17182. },
  17183. ]
  17184. ))
  17185. characterMakers.push(() => makeCharacter(
  17186. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17187. {
  17188. side: {
  17189. height: math.unit(10, "feet"),
  17190. weight: math.unit(900, "kg"),
  17191. name: "Side",
  17192. image: {
  17193. source: "./media/characters/zara/side.svg",
  17194. extra: 504 / 498
  17195. }
  17196. },
  17197. },
  17198. [
  17199. {
  17200. name: "Normal",
  17201. height: math.unit(10, "feet"),
  17202. default: true
  17203. },
  17204. ]
  17205. ))
  17206. characterMakers.push(() => makeCharacter(
  17207. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17208. {
  17209. side: {
  17210. height: math.unit(6, "feet"),
  17211. weight: math.unit(150, "lb"),
  17212. name: "Side",
  17213. image: {
  17214. source: "./media/characters/richard-dragon/side.svg",
  17215. extra: 845 / 340,
  17216. bottom: 0.017
  17217. }
  17218. },
  17219. maw: {
  17220. height: math.unit(2.97, "feet"),
  17221. name: "Maw",
  17222. image: {
  17223. source: "./media/characters/richard-dragon/maw.svg"
  17224. }
  17225. },
  17226. },
  17227. [
  17228. ]
  17229. ))
  17230. characterMakers.push(() => makeCharacter(
  17231. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17232. {
  17233. front: {
  17234. height: math.unit(4, "feet"),
  17235. weight: math.unit(100, "lb"),
  17236. name: "Front",
  17237. image: {
  17238. source: "./media/characters/richard-smeargle/front.svg",
  17239. extra: 2952 / 2820,
  17240. bottom: 0.028
  17241. }
  17242. },
  17243. },
  17244. [
  17245. {
  17246. name: "Normal",
  17247. height: math.unit(4, "feet"),
  17248. default: true
  17249. },
  17250. {
  17251. name: "Dynamax",
  17252. height: math.unit(20, "meters")
  17253. },
  17254. ]
  17255. ))
  17256. characterMakers.push(() => makeCharacter(
  17257. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17258. {
  17259. front: {
  17260. height: math.unit(6, "feet"),
  17261. weight: math.unit(110, "lb"),
  17262. name: "Front",
  17263. image: {
  17264. source: "./media/characters/klay/front.svg",
  17265. extra: 962 / 883,
  17266. bottom: 0.04
  17267. }
  17268. },
  17269. back: {
  17270. height: math.unit(6, "feet"),
  17271. weight: math.unit(110, "lb"),
  17272. name: "Back",
  17273. image: {
  17274. source: "./media/characters/klay/back.svg",
  17275. extra: 962 / 883
  17276. }
  17277. },
  17278. beans: {
  17279. height: math.unit(1.15, "feet"),
  17280. name: "Beans",
  17281. image: {
  17282. source: "./media/characters/klay/beans.svg"
  17283. }
  17284. },
  17285. },
  17286. [
  17287. {
  17288. name: "Micro",
  17289. height: math.unit(6, "inches")
  17290. },
  17291. {
  17292. name: "Mini",
  17293. height: math.unit(3, "feet")
  17294. },
  17295. {
  17296. name: "Normal",
  17297. height: math.unit(6, "feet"),
  17298. default: true
  17299. },
  17300. {
  17301. name: "Big",
  17302. height: math.unit(25, "feet")
  17303. },
  17304. {
  17305. name: "Macro",
  17306. height: math.unit(100, "feet")
  17307. },
  17308. {
  17309. name: "Megamacro",
  17310. height: math.unit(400, "feet")
  17311. },
  17312. ]
  17313. ))
  17314. characterMakers.push(() => makeCharacter(
  17315. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17316. {
  17317. front: {
  17318. height: math.unit(6, "feet"),
  17319. weight: math.unit(160, "lb"),
  17320. name: "Front",
  17321. image: {
  17322. source: "./media/characters/marcus/front.svg",
  17323. extra: 734 / 676,
  17324. bottom: 0.03
  17325. }
  17326. },
  17327. },
  17328. [
  17329. {
  17330. name: "Little",
  17331. height: math.unit(6, "feet")
  17332. },
  17333. {
  17334. name: "Normal",
  17335. height: math.unit(110, "feet"),
  17336. default: true
  17337. },
  17338. {
  17339. name: "Macro",
  17340. height: math.unit(250, "feet")
  17341. },
  17342. {
  17343. name: "Megamacro",
  17344. height: math.unit(1000, "feet")
  17345. },
  17346. ]
  17347. ))
  17348. characterMakers.push(() => makeCharacter(
  17349. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17350. {
  17351. front: {
  17352. height: math.unit(7, "feet"),
  17353. weight: math.unit(275, "lb"),
  17354. name: "Front",
  17355. image: {
  17356. source: "./media/characters/claude-delroute/front.svg",
  17357. extra: 230 / 214,
  17358. bottom: 0.007
  17359. }
  17360. },
  17361. side: {
  17362. height: math.unit(7, "feet"),
  17363. weight: math.unit(275, "lb"),
  17364. name: "Side",
  17365. image: {
  17366. source: "./media/characters/claude-delroute/side.svg",
  17367. extra: 222 / 214,
  17368. bottom: 0.01
  17369. }
  17370. },
  17371. back: {
  17372. height: math.unit(7, "feet"),
  17373. weight: math.unit(275, "lb"),
  17374. name: "Back",
  17375. image: {
  17376. source: "./media/characters/claude-delroute/back.svg",
  17377. extra: 230 / 214,
  17378. bottom: 0.015
  17379. }
  17380. },
  17381. maw: {
  17382. height: math.unit(0.6407, "meters"),
  17383. name: "Maw",
  17384. image: {
  17385. source: "./media/characters/claude-delroute/maw.svg"
  17386. }
  17387. },
  17388. },
  17389. [
  17390. {
  17391. name: "Normal",
  17392. height: math.unit(7, "feet"),
  17393. default: true
  17394. },
  17395. {
  17396. name: "Lorge",
  17397. height: math.unit(20, "feet")
  17398. },
  17399. ]
  17400. ))
  17401. characterMakers.push(() => makeCharacter(
  17402. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17403. {
  17404. front: {
  17405. height: math.unit(8 + 4 / 12, "feet"),
  17406. weight: math.unit(600, "lb"),
  17407. name: "Front",
  17408. image: {
  17409. source: "./media/characters/dragonien/front.svg",
  17410. extra: 100 / 94,
  17411. bottom: 3.3 / 103.3445
  17412. }
  17413. },
  17414. back: {
  17415. height: math.unit(8 + 4 / 12, "feet"),
  17416. weight: math.unit(600, "lb"),
  17417. name: "Back",
  17418. image: {
  17419. source: "./media/characters/dragonien/back.svg",
  17420. extra: 776 / 746,
  17421. bottom: 6.4 / 782.0616
  17422. }
  17423. },
  17424. foot: {
  17425. height: math.unit(1.54, "feet"),
  17426. name: "Foot",
  17427. image: {
  17428. source: "./media/characters/dragonien/foot.svg",
  17429. }
  17430. },
  17431. },
  17432. [
  17433. {
  17434. name: "Normal",
  17435. height: math.unit(8 + 4 / 12, "feet"),
  17436. default: true
  17437. },
  17438. {
  17439. name: "Macro",
  17440. height: math.unit(200, "feet")
  17441. },
  17442. {
  17443. name: "Megamacro",
  17444. height: math.unit(1, "mile")
  17445. },
  17446. {
  17447. name: "Gigamacro",
  17448. height: math.unit(1000, "miles")
  17449. },
  17450. ]
  17451. ))
  17452. characterMakers.push(() => makeCharacter(
  17453. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17454. {
  17455. front: {
  17456. height: math.unit(5 + 2 / 12, "feet"),
  17457. weight: math.unit(110, "lb"),
  17458. name: "Front",
  17459. image: {
  17460. source: "./media/characters/desta/front.svg",
  17461. extra: 767/726,
  17462. bottom: 11.7/779
  17463. }
  17464. },
  17465. back: {
  17466. height: math.unit(5 + 2 / 12, "feet"),
  17467. weight: math.unit(110, "lb"),
  17468. name: "Back",
  17469. image: {
  17470. source: "./media/characters/desta/back.svg",
  17471. extra: 777/728,
  17472. bottom: 6/784
  17473. }
  17474. },
  17475. frontAlt: {
  17476. height: math.unit(5 + 2 / 12, "feet"),
  17477. weight: math.unit(110, "lb"),
  17478. name: "Front",
  17479. image: {
  17480. source: "./media/characters/desta/front-alt.svg",
  17481. extra: 1482 / 1417
  17482. }
  17483. },
  17484. side: {
  17485. height: math.unit(5 + 2 / 12, "feet"),
  17486. weight: math.unit(110, "lb"),
  17487. name: "Side",
  17488. image: {
  17489. source: "./media/characters/desta/side.svg",
  17490. extra: 2579 / 2491,
  17491. bottom: 0.053
  17492. }
  17493. },
  17494. },
  17495. [
  17496. {
  17497. name: "Micro",
  17498. height: math.unit(6, "inches")
  17499. },
  17500. {
  17501. name: "Normal",
  17502. height: math.unit(5 + 2 / 12, "feet"),
  17503. default: true
  17504. },
  17505. {
  17506. name: "Macro",
  17507. height: math.unit(62, "feet")
  17508. },
  17509. {
  17510. name: "Megamacro",
  17511. height: math.unit(1800, "feet")
  17512. },
  17513. ]
  17514. ))
  17515. characterMakers.push(() => makeCharacter(
  17516. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17517. {
  17518. front: {
  17519. height: math.unit(10, "feet"),
  17520. weight: math.unit(700, "lb"),
  17521. name: "Front",
  17522. image: {
  17523. source: "./media/characters/storm-alystar/front.svg",
  17524. extra: 2112 / 1898,
  17525. bottom: 0.034
  17526. }
  17527. },
  17528. },
  17529. [
  17530. {
  17531. name: "Micro",
  17532. height: math.unit(3.5, "inches")
  17533. },
  17534. {
  17535. name: "Normal",
  17536. height: math.unit(10, "feet"),
  17537. default: true
  17538. },
  17539. {
  17540. name: "Macro",
  17541. height: math.unit(400, "feet")
  17542. },
  17543. {
  17544. name: "Deific",
  17545. height: math.unit(60, "miles")
  17546. },
  17547. ]
  17548. ))
  17549. characterMakers.push(() => makeCharacter(
  17550. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17551. {
  17552. front: {
  17553. height: math.unit(2.35, "meters"),
  17554. weight: math.unit(119, "kg"),
  17555. name: "Front",
  17556. image: {
  17557. source: "./media/characters/ilia/front.svg",
  17558. extra: 1285 / 1255,
  17559. bottom: 0.06
  17560. }
  17561. },
  17562. },
  17563. [
  17564. {
  17565. name: "Normal",
  17566. height: math.unit(2.35, "meters")
  17567. },
  17568. {
  17569. name: "Macro",
  17570. height: math.unit(140, "meters"),
  17571. default: true
  17572. },
  17573. {
  17574. name: "Megamacro",
  17575. height: math.unit(100, "miles")
  17576. },
  17577. ]
  17578. ))
  17579. characterMakers.push(() => makeCharacter(
  17580. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17581. {
  17582. front: {
  17583. height: math.unit(6 + 5 / 12, "feet"),
  17584. weight: math.unit(190, "lb"),
  17585. name: "Front",
  17586. image: {
  17587. source: "./media/characters/kingdead/front.svg",
  17588. extra: 1228 / 1177
  17589. }
  17590. },
  17591. },
  17592. [
  17593. {
  17594. name: "Micro",
  17595. height: math.unit(7, "inches")
  17596. },
  17597. {
  17598. name: "Normal",
  17599. height: math.unit(6 + 5 / 12, "feet")
  17600. },
  17601. {
  17602. name: "Macro",
  17603. height: math.unit(150, "feet"),
  17604. default: true
  17605. },
  17606. {
  17607. name: "Megamacro",
  17608. height: math.unit(200, "miles")
  17609. },
  17610. ]
  17611. ))
  17612. characterMakers.push(() => makeCharacter(
  17613. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17614. {
  17615. front: {
  17616. height: math.unit(8, "feet"),
  17617. weight: math.unit(600, "lb"),
  17618. name: "Front",
  17619. image: {
  17620. source: "./media/characters/kyrehx/front.svg",
  17621. extra: 1195 / 1095,
  17622. bottom: 0.034
  17623. }
  17624. },
  17625. },
  17626. [
  17627. {
  17628. name: "Micro",
  17629. height: math.unit(2, "inches")
  17630. },
  17631. {
  17632. name: "Normal",
  17633. height: math.unit(8, "feet"),
  17634. default: true
  17635. },
  17636. {
  17637. name: "Macro",
  17638. height: math.unit(255, "feet")
  17639. },
  17640. ]
  17641. ))
  17642. characterMakers.push(() => makeCharacter(
  17643. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17644. {
  17645. front: {
  17646. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17647. weight: math.unit(184, "lb"),
  17648. name: "Front",
  17649. image: {
  17650. source: "./media/characters/xang/front.svg",
  17651. extra: 845 / 755
  17652. }
  17653. },
  17654. },
  17655. [
  17656. {
  17657. name: "Normal",
  17658. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17659. default: true
  17660. },
  17661. {
  17662. name: "Macro",
  17663. height: math.unit(0.935 * 146, "feet")
  17664. },
  17665. {
  17666. name: "Megamacro",
  17667. height: math.unit(0.935 * 3, "miles")
  17668. },
  17669. ]
  17670. ))
  17671. characterMakers.push(() => makeCharacter(
  17672. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17673. {
  17674. frontDressed: {
  17675. height: math.unit(5 + 7 / 12, "feet"),
  17676. weight: math.unit(140, "lb"),
  17677. name: "Front (Dressed)",
  17678. image: {
  17679. source: "./media/characters/doc-weardno/front-dressed.svg",
  17680. extra: 263 / 234
  17681. }
  17682. },
  17683. backDressed: {
  17684. height: math.unit(5 + 7 / 12, "feet"),
  17685. weight: math.unit(140, "lb"),
  17686. name: "Back (Dressed)",
  17687. image: {
  17688. source: "./media/characters/doc-weardno/back-dressed.svg",
  17689. extra: 266 / 238
  17690. }
  17691. },
  17692. front: {
  17693. height: math.unit(5 + 7 / 12, "feet"),
  17694. weight: math.unit(140, "lb"),
  17695. name: "Front",
  17696. image: {
  17697. source: "./media/characters/doc-weardno/front.svg",
  17698. extra: 254 / 233
  17699. }
  17700. },
  17701. },
  17702. [
  17703. {
  17704. name: "Micro",
  17705. height: math.unit(3, "inches")
  17706. },
  17707. {
  17708. name: "Normal",
  17709. height: math.unit(5 + 7 / 12, "feet"),
  17710. default: true
  17711. },
  17712. {
  17713. name: "Macro",
  17714. height: math.unit(25, "feet")
  17715. },
  17716. {
  17717. name: "Megamacro",
  17718. height: math.unit(2, "miles")
  17719. },
  17720. ]
  17721. ))
  17722. characterMakers.push(() => makeCharacter(
  17723. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17724. {
  17725. front: {
  17726. height: math.unit(6 + 2 / 12, "feet"),
  17727. weight: math.unit(153, "lb"),
  17728. name: "Front",
  17729. image: {
  17730. source: "./media/characters/seth-whilst/front.svg",
  17731. bottom: 0.07
  17732. }
  17733. },
  17734. },
  17735. [
  17736. {
  17737. name: "Micro",
  17738. height: math.unit(5, "inches")
  17739. },
  17740. {
  17741. name: "Normal",
  17742. height: math.unit(6 + 2 / 12, "feet"),
  17743. default: true
  17744. },
  17745. ]
  17746. ))
  17747. characterMakers.push(() => makeCharacter(
  17748. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17749. {
  17750. front: {
  17751. height: math.unit(3, "inches"),
  17752. weight: math.unit(8, "grams"),
  17753. name: "Front",
  17754. image: {
  17755. source: "./media/characters/pocket-jabari/front.svg",
  17756. extra: 1024 / 974,
  17757. bottom: 0.039
  17758. }
  17759. },
  17760. },
  17761. [
  17762. {
  17763. name: "Minimicro",
  17764. height: math.unit(8, "mm")
  17765. },
  17766. {
  17767. name: "Micro",
  17768. height: math.unit(3, "inches"),
  17769. default: true
  17770. },
  17771. {
  17772. name: "Normal",
  17773. height: math.unit(3, "feet")
  17774. },
  17775. ]
  17776. ))
  17777. characterMakers.push(() => makeCharacter(
  17778. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17779. {
  17780. front: {
  17781. height: math.unit(15, "feet"),
  17782. weight: math.unit(3280, "lb"),
  17783. name: "Front",
  17784. image: {
  17785. source: "./media/characters/sapphy/front.svg",
  17786. extra: 671 / 577,
  17787. bottom: 0.085
  17788. }
  17789. },
  17790. back: {
  17791. height: math.unit(15, "feet"),
  17792. weight: math.unit(3280, "lb"),
  17793. name: "Back",
  17794. image: {
  17795. source: "./media/characters/sapphy/back.svg",
  17796. extra: 631 / 607,
  17797. bottom: 0.045
  17798. }
  17799. },
  17800. },
  17801. [
  17802. {
  17803. name: "Normal",
  17804. height: math.unit(15, "feet")
  17805. },
  17806. {
  17807. name: "Casual Macro",
  17808. height: math.unit(120, "feet")
  17809. },
  17810. {
  17811. name: "Macro",
  17812. height: math.unit(2150, "feet"),
  17813. default: true
  17814. },
  17815. {
  17816. name: "Megamacro",
  17817. height: math.unit(8, "miles")
  17818. },
  17819. {
  17820. name: "Galaxy Mom",
  17821. height: math.unit(6, "megalightyears")
  17822. },
  17823. ]
  17824. ))
  17825. characterMakers.push(() => makeCharacter(
  17826. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17827. {
  17828. front: {
  17829. height: math.unit(6, "feet"),
  17830. weight: math.unit(170, "lb"),
  17831. name: "Front",
  17832. image: {
  17833. source: "./media/characters/kiro/front.svg",
  17834. extra: 1064 / 1012,
  17835. bottom: 0.052
  17836. }
  17837. },
  17838. },
  17839. [
  17840. {
  17841. name: "Micro",
  17842. height: math.unit(6, "inches")
  17843. },
  17844. {
  17845. name: "Normal",
  17846. height: math.unit(6, "feet"),
  17847. default: true
  17848. },
  17849. {
  17850. name: "Macro",
  17851. height: math.unit(72, "feet")
  17852. },
  17853. ]
  17854. ))
  17855. characterMakers.push(() => makeCharacter(
  17856. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17857. {
  17858. front: {
  17859. height: math.unit(5 + 9 / 12, "feet"),
  17860. weight: math.unit(175, "lb"),
  17861. name: "Front",
  17862. image: {
  17863. source: "./media/characters/irishfox/front.svg",
  17864. extra: 1912 / 1680,
  17865. bottom: 0.02
  17866. }
  17867. },
  17868. },
  17869. [
  17870. {
  17871. name: "Nano",
  17872. height: math.unit(1, "mm")
  17873. },
  17874. {
  17875. name: "Micro",
  17876. height: math.unit(2, "inches")
  17877. },
  17878. {
  17879. name: "Normal",
  17880. height: math.unit(5 + 9 / 12, "feet"),
  17881. default: true
  17882. },
  17883. {
  17884. name: "Macro",
  17885. height: math.unit(45, "feet")
  17886. },
  17887. ]
  17888. ))
  17889. characterMakers.push(() => makeCharacter(
  17890. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17891. {
  17892. front: {
  17893. height: math.unit(6 + 1 / 12, "feet"),
  17894. weight: math.unit(150, "lb"),
  17895. name: "Front",
  17896. image: {
  17897. source: "./media/characters/aronai-sieyes/front.svg",
  17898. extra: 1556 / 1480,
  17899. bottom: 0.015
  17900. }
  17901. },
  17902. side: {
  17903. height: math.unit(6 + 1 / 12, "feet"),
  17904. weight: math.unit(150, "lb"),
  17905. name: "Side",
  17906. image: {
  17907. source: "./media/characters/aronai-sieyes/side.svg",
  17908. extra: 1433 / 1390,
  17909. bottom: 0.0393
  17910. }
  17911. },
  17912. back: {
  17913. height: math.unit(6 + 1 / 12, "feet"),
  17914. weight: math.unit(150, "lb"),
  17915. name: "Back",
  17916. image: {
  17917. source: "./media/characters/aronai-sieyes/back.svg",
  17918. extra: 1544 / 1494,
  17919. bottom: 0.02
  17920. }
  17921. },
  17922. frontClothed: {
  17923. height: math.unit(6 + 1 / 12, "feet"),
  17924. weight: math.unit(150, "lb"),
  17925. name: "Front (Clothed)",
  17926. image: {
  17927. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17928. extra: 1582 / 1527
  17929. }
  17930. },
  17931. feral: {
  17932. height: math.unit(18, "feet"),
  17933. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17934. name: "Feral",
  17935. image: {
  17936. source: "./media/characters/aronai-sieyes/feral.svg",
  17937. extra: 1530 / 1240,
  17938. bottom: 0.035
  17939. }
  17940. },
  17941. },
  17942. [
  17943. {
  17944. name: "Micro",
  17945. height: math.unit(2, "inches")
  17946. },
  17947. {
  17948. name: "Normal",
  17949. height: math.unit(6 + 1 / 12, "feet"),
  17950. default: true
  17951. }
  17952. ]
  17953. ))
  17954. characterMakers.push(() => makeCharacter(
  17955. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17956. {
  17957. front: {
  17958. height: math.unit(12, "feet"),
  17959. weight: math.unit(410, "kg"),
  17960. name: "Front",
  17961. image: {
  17962. source: "./media/characters/xuna/front.svg",
  17963. extra: 2184 / 1980
  17964. }
  17965. },
  17966. side: {
  17967. height: math.unit(12, "feet"),
  17968. weight: math.unit(410, "kg"),
  17969. name: "Side",
  17970. image: {
  17971. source: "./media/characters/xuna/side.svg",
  17972. extra: 2184 / 1980
  17973. }
  17974. },
  17975. back: {
  17976. height: math.unit(12, "feet"),
  17977. weight: math.unit(410, "kg"),
  17978. name: "Back",
  17979. image: {
  17980. source: "./media/characters/xuna/back.svg",
  17981. extra: 2184 / 1980
  17982. }
  17983. },
  17984. },
  17985. [
  17986. {
  17987. name: "Nano glow",
  17988. height: math.unit(10, "nm")
  17989. },
  17990. {
  17991. name: "Micro floof",
  17992. height: math.unit(0.3, "m")
  17993. },
  17994. {
  17995. name: "Huggable softy boi",
  17996. height: math.unit(3.6576, "m"),
  17997. default: true
  17998. },
  17999. {
  18000. name: "Admirable floof",
  18001. height: math.unit(80, "meters")
  18002. },
  18003. {
  18004. name: "Gentle macro",
  18005. height: math.unit(300, "meters")
  18006. },
  18007. {
  18008. name: "Very careful floof",
  18009. height: math.unit(3200, "meters")
  18010. },
  18011. {
  18012. name: "The mega floof",
  18013. height: math.unit(36000, "meters")
  18014. },
  18015. {
  18016. name: "Giga-fur-Wicker",
  18017. height: math.unit(4800000, "meters")
  18018. },
  18019. {
  18020. name: "Licky world",
  18021. height: math.unit(20000000, "meters")
  18022. },
  18023. {
  18024. name: "Floofy cyan sun",
  18025. height: math.unit(1500000000, "meters")
  18026. },
  18027. {
  18028. name: "Milky Wicker",
  18029. height: math.unit(1000000000000000000000, "meters")
  18030. },
  18031. {
  18032. name: "The observing Wicker",
  18033. height: math.unit(999999999999999999999999999, "meters")
  18034. },
  18035. ]
  18036. ))
  18037. characterMakers.push(() => makeCharacter(
  18038. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18039. {
  18040. front: {
  18041. height: math.unit(5 + 9 / 12, "feet"),
  18042. weight: math.unit(150, "lb"),
  18043. name: "Front",
  18044. image: {
  18045. source: "./media/characters/arokha-sieyes/front.svg",
  18046. extra: 1425 / 1284,
  18047. bottom: 0.05
  18048. }
  18049. },
  18050. },
  18051. [
  18052. {
  18053. name: "Normal",
  18054. height: math.unit(5 + 9 / 12, "feet")
  18055. },
  18056. {
  18057. name: "Macro",
  18058. height: math.unit(30, "meters"),
  18059. default: true
  18060. },
  18061. ]
  18062. ))
  18063. characterMakers.push(() => makeCharacter(
  18064. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18065. {
  18066. front: {
  18067. height: math.unit(6, "feet"),
  18068. weight: math.unit(180, "lb"),
  18069. name: "Front",
  18070. image: {
  18071. source: "./media/characters/arokh-sieyes/front.svg",
  18072. extra: 1830 / 1769,
  18073. bottom: 0.01
  18074. }
  18075. },
  18076. },
  18077. [
  18078. {
  18079. name: "Normal",
  18080. height: math.unit(6, "feet")
  18081. },
  18082. {
  18083. name: "Macro",
  18084. height: math.unit(30, "meters"),
  18085. default: true
  18086. },
  18087. ]
  18088. ))
  18089. characterMakers.push(() => makeCharacter(
  18090. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18091. {
  18092. side: {
  18093. height: math.unit(13 + 1 / 12, "feet"),
  18094. weight: math.unit(8.5, "tonnes"),
  18095. name: "Side",
  18096. image: {
  18097. source: "./media/characters/goldeneye/side.svg",
  18098. extra: 1182 / 778,
  18099. bottom: 0.067
  18100. }
  18101. },
  18102. paw: {
  18103. height: math.unit(3.4, "feet"),
  18104. name: "Paw",
  18105. image: {
  18106. source: "./media/characters/goldeneye/paw.svg"
  18107. }
  18108. },
  18109. },
  18110. [
  18111. {
  18112. name: "Normal",
  18113. height: math.unit(13 + 1 / 12, "feet"),
  18114. default: true
  18115. },
  18116. ]
  18117. ))
  18118. characterMakers.push(() => makeCharacter(
  18119. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18120. {
  18121. front: {
  18122. height: math.unit(6 + 1 / 12, "feet"),
  18123. weight: math.unit(210, "lb"),
  18124. name: "Front",
  18125. image: {
  18126. source: "./media/characters/leonardo-lycheborne/front.svg",
  18127. extra: 390 / 365,
  18128. bottom: 0.032
  18129. }
  18130. },
  18131. side: {
  18132. height: math.unit(6 + 1 / 12, "feet"),
  18133. weight: math.unit(210, "lb"),
  18134. name: "Side",
  18135. image: {
  18136. source: "./media/characters/leonardo-lycheborne/side.svg",
  18137. extra: 390 / 365,
  18138. bottom: 0.005
  18139. }
  18140. },
  18141. back: {
  18142. height: math.unit(6 + 1 / 12, "feet"),
  18143. weight: math.unit(210, "lb"),
  18144. name: "Back",
  18145. image: {
  18146. source: "./media/characters/leonardo-lycheborne/back.svg",
  18147. extra: 392 / 366,
  18148. bottom: 0.01
  18149. }
  18150. },
  18151. hand: {
  18152. height: math.unit(1.08, "feet"),
  18153. name: "Hand",
  18154. image: {
  18155. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18156. }
  18157. },
  18158. foot: {
  18159. height: math.unit(1.32, "feet"),
  18160. name: "Foot",
  18161. image: {
  18162. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18163. }
  18164. },
  18165. were: {
  18166. height: math.unit(20, "feet"),
  18167. weight: math.unit(7800, "lb"),
  18168. name: "Were",
  18169. image: {
  18170. source: "./media/characters/leonardo-lycheborne/were.svg",
  18171. extra: 308 / 294,
  18172. bottom: 0.048
  18173. }
  18174. },
  18175. feral: {
  18176. height: math.unit(7.5, "feet"),
  18177. weight: math.unit(600, "lb"),
  18178. name: "Feral",
  18179. image: {
  18180. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18181. extra: 210 / 186,
  18182. bottom: 0.108
  18183. }
  18184. },
  18185. taur: {
  18186. height: math.unit(11, "feet"),
  18187. weight: math.unit(3300, "lb"),
  18188. name: "Taur",
  18189. image: {
  18190. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18191. extra: 320 / 303,
  18192. bottom: 0.025
  18193. }
  18194. },
  18195. barghest: {
  18196. height: math.unit(11, "feet"),
  18197. weight: math.unit(1300, "lb"),
  18198. name: "Barghest",
  18199. image: {
  18200. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18201. extra: 323 / 302,
  18202. bottom: 0.027
  18203. }
  18204. },
  18205. dick: {
  18206. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18207. name: "Dick",
  18208. image: {
  18209. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18210. }
  18211. },
  18212. dickWere: {
  18213. height: math.unit((20) / 3.8, "feet"),
  18214. name: "Dick (Were)",
  18215. image: {
  18216. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18217. }
  18218. },
  18219. },
  18220. [
  18221. {
  18222. name: "Normal",
  18223. height: math.unit(6 + 1 / 12, "feet"),
  18224. default: true
  18225. },
  18226. ]
  18227. ))
  18228. characterMakers.push(() => makeCharacter(
  18229. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18230. {
  18231. front: {
  18232. height: math.unit(10, "feet"),
  18233. weight: math.unit(350, "lb"),
  18234. name: "Front",
  18235. image: {
  18236. source: "./media/characters/jet/front.svg",
  18237. extra: 2050 / 1980,
  18238. bottom: 0.013
  18239. }
  18240. },
  18241. back: {
  18242. height: math.unit(10, "feet"),
  18243. weight: math.unit(350, "lb"),
  18244. name: "Back",
  18245. image: {
  18246. source: "./media/characters/jet/back.svg",
  18247. extra: 2050 / 1980,
  18248. bottom: 0.013
  18249. }
  18250. },
  18251. },
  18252. [
  18253. {
  18254. name: "Micro",
  18255. height: math.unit(6, "inches")
  18256. },
  18257. {
  18258. name: "Normal",
  18259. height: math.unit(10, "feet"),
  18260. default: true
  18261. },
  18262. {
  18263. name: "Macro",
  18264. height: math.unit(100, "feet")
  18265. },
  18266. ]
  18267. ))
  18268. characterMakers.push(() => makeCharacter(
  18269. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18270. {
  18271. front: {
  18272. height: math.unit(15, "feet"),
  18273. weight: math.unit(2800, "lb"),
  18274. name: "Front",
  18275. image: {
  18276. source: "./media/characters/tanarath/front.svg",
  18277. extra: 2392 / 2220,
  18278. bottom: 0.03
  18279. }
  18280. },
  18281. back: {
  18282. height: math.unit(15, "feet"),
  18283. weight: math.unit(2800, "lb"),
  18284. name: "Back",
  18285. image: {
  18286. source: "./media/characters/tanarath/back.svg",
  18287. extra: 2392 / 2220,
  18288. bottom: 0.03
  18289. }
  18290. },
  18291. },
  18292. [
  18293. {
  18294. name: "Normal",
  18295. height: math.unit(15, "feet"),
  18296. default: true
  18297. },
  18298. ]
  18299. ))
  18300. characterMakers.push(() => makeCharacter(
  18301. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18302. {
  18303. front: {
  18304. height: math.unit(7 + 1 / 12, "feet"),
  18305. weight: math.unit(175, "lb"),
  18306. name: "Front",
  18307. image: {
  18308. source: "./media/characters/patty-cattybatty/front.svg",
  18309. extra: 908 / 874,
  18310. bottom: 0.025
  18311. }
  18312. },
  18313. },
  18314. [
  18315. {
  18316. name: "Micro",
  18317. height: math.unit(1, "inch")
  18318. },
  18319. {
  18320. name: "Normal",
  18321. height: math.unit(7 + 1 / 12, "feet")
  18322. },
  18323. {
  18324. name: "Mini Macro",
  18325. height: math.unit(155, "feet")
  18326. },
  18327. {
  18328. name: "Macro",
  18329. height: math.unit(1077, "feet")
  18330. },
  18331. {
  18332. name: "Mega Macro",
  18333. height: math.unit(47650, "feet"),
  18334. default: true
  18335. },
  18336. {
  18337. name: "Giga Macro",
  18338. height: math.unit(440, "miles")
  18339. },
  18340. {
  18341. name: "Tera Macro",
  18342. height: math.unit(8700, "miles")
  18343. },
  18344. {
  18345. name: "Planetary Macro",
  18346. height: math.unit(32700, "miles")
  18347. },
  18348. {
  18349. name: "Solar Macro",
  18350. height: math.unit(550000, "miles")
  18351. },
  18352. {
  18353. name: "Celestial Macro",
  18354. height: math.unit(2.5, "AU")
  18355. },
  18356. ]
  18357. ))
  18358. characterMakers.push(() => makeCharacter(
  18359. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18360. {
  18361. front: {
  18362. height: math.unit(4 + 5 / 12, "feet"),
  18363. weight: math.unit(90, "lb"),
  18364. name: "Front",
  18365. image: {
  18366. source: "./media/characters/cappu/front.svg",
  18367. extra: 1247 / 1152,
  18368. bottom: 0.012
  18369. }
  18370. },
  18371. },
  18372. [
  18373. {
  18374. name: "Normal",
  18375. height: math.unit(4 + 5 / 12, "feet"),
  18376. default: true
  18377. },
  18378. ]
  18379. ))
  18380. characterMakers.push(() => makeCharacter(
  18381. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18382. {
  18383. frontDressed: {
  18384. height: math.unit(70, "cm"),
  18385. weight: math.unit(6, "kg"),
  18386. name: "Front (Dressed)",
  18387. image: {
  18388. source: "./media/characters/sebi/front-dressed.svg",
  18389. extra: 713.5 / 686.5,
  18390. bottom: 0.003
  18391. }
  18392. },
  18393. front: {
  18394. height: math.unit(70, "cm"),
  18395. weight: math.unit(5, "kg"),
  18396. name: "Front",
  18397. image: {
  18398. source: "./media/characters/sebi/front.svg",
  18399. extra: 713.5 / 686.5,
  18400. bottom: 0.003
  18401. }
  18402. }
  18403. },
  18404. [
  18405. {
  18406. name: "Normal",
  18407. height: math.unit(70, "cm"),
  18408. default: true
  18409. },
  18410. {
  18411. name: "Macro",
  18412. height: math.unit(8, "meters")
  18413. },
  18414. ]
  18415. ))
  18416. characterMakers.push(() => makeCharacter(
  18417. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18418. {
  18419. front: {
  18420. height: math.unit(6, "feet"),
  18421. weight: math.unit(150, "lb"),
  18422. name: "Front",
  18423. image: {
  18424. source: "./media/characters/typhek/front.svg",
  18425. extra: 1948 / 1929,
  18426. bottom: 0.025
  18427. }
  18428. },
  18429. side: {
  18430. height: math.unit(6, "feet"),
  18431. weight: math.unit(150, "lb"),
  18432. name: "Side",
  18433. image: {
  18434. source: "./media/characters/typhek/side.svg",
  18435. extra: 2034 / 2010,
  18436. bottom: 0.003
  18437. }
  18438. },
  18439. back: {
  18440. height: math.unit(6, "feet"),
  18441. weight: math.unit(150, "lb"),
  18442. name: "Back",
  18443. image: {
  18444. source: "./media/characters/typhek/back.svg",
  18445. extra: 2005 / 1978,
  18446. bottom: 0.004
  18447. }
  18448. },
  18449. palm: {
  18450. height: math.unit(1.2, "feet"),
  18451. name: "Palm",
  18452. image: {
  18453. source: "./media/characters/typhek/palm.svg"
  18454. }
  18455. },
  18456. fist: {
  18457. height: math.unit(1.1, "feet"),
  18458. name: "Fist",
  18459. image: {
  18460. source: "./media/characters/typhek/fist.svg"
  18461. }
  18462. },
  18463. foot: {
  18464. height: math.unit(1.57, "feet"),
  18465. name: "Foot",
  18466. image: {
  18467. source: "./media/characters/typhek/foot.svg"
  18468. }
  18469. },
  18470. sole: {
  18471. height: math.unit(2.05, "feet"),
  18472. name: "Sole",
  18473. image: {
  18474. source: "./media/characters/typhek/sole.svg"
  18475. }
  18476. },
  18477. },
  18478. [
  18479. {
  18480. name: "Macro",
  18481. height: math.unit(40, "stories"),
  18482. default: true
  18483. },
  18484. {
  18485. name: "Megamacro",
  18486. height: math.unit(1, "mile")
  18487. },
  18488. {
  18489. name: "Gigamacro",
  18490. height: math.unit(4000, "solarradii")
  18491. },
  18492. {
  18493. name: "Universal",
  18494. height: math.unit(1.1, "universes")
  18495. }
  18496. ]
  18497. ))
  18498. characterMakers.push(() => makeCharacter(
  18499. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18500. {
  18501. side: {
  18502. height: math.unit(5 + 7 / 12, "feet"),
  18503. weight: math.unit(150, "lb"),
  18504. name: "Side",
  18505. image: {
  18506. source: "./media/characters/kassy/side.svg",
  18507. extra: 1280 / 1225,
  18508. bottom: 0.002
  18509. }
  18510. },
  18511. front: {
  18512. height: math.unit(5 + 7 / 12, "feet"),
  18513. weight: math.unit(150, "lb"),
  18514. name: "Front",
  18515. image: {
  18516. source: "./media/characters/kassy/front.svg",
  18517. extra: 1280 / 1225,
  18518. bottom: 0.025
  18519. }
  18520. },
  18521. back: {
  18522. height: math.unit(5 + 7 / 12, "feet"),
  18523. weight: math.unit(150, "lb"),
  18524. name: "Back",
  18525. image: {
  18526. source: "./media/characters/kassy/back.svg",
  18527. extra: 1280 / 1225,
  18528. bottom: 0.002
  18529. }
  18530. },
  18531. foot: {
  18532. height: math.unit(1.266, "feet"),
  18533. name: "Foot",
  18534. image: {
  18535. source: "./media/characters/kassy/foot.svg"
  18536. }
  18537. },
  18538. },
  18539. [
  18540. {
  18541. name: "Normal",
  18542. height: math.unit(5 + 7 / 12, "feet")
  18543. },
  18544. {
  18545. name: "Macro",
  18546. height: math.unit(137, "feet"),
  18547. default: true
  18548. },
  18549. {
  18550. name: "Megamacro",
  18551. height: math.unit(1, "mile")
  18552. },
  18553. ]
  18554. ))
  18555. characterMakers.push(() => makeCharacter(
  18556. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18557. {
  18558. front: {
  18559. height: math.unit(6 + 1 / 12, "feet"),
  18560. weight: math.unit(200, "lb"),
  18561. name: "Front",
  18562. image: {
  18563. source: "./media/characters/neil/front.svg",
  18564. extra: 1326 / 1250,
  18565. bottom: 0.023
  18566. }
  18567. },
  18568. },
  18569. [
  18570. {
  18571. name: "Normal",
  18572. height: math.unit(6 + 1 / 12, "feet"),
  18573. default: true
  18574. },
  18575. {
  18576. name: "Macro",
  18577. height: math.unit(200, "feet")
  18578. },
  18579. ]
  18580. ))
  18581. characterMakers.push(() => makeCharacter(
  18582. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18583. {
  18584. front: {
  18585. height: math.unit(5 + 9 / 12, "feet"),
  18586. weight: math.unit(190, "lb"),
  18587. name: "Front",
  18588. image: {
  18589. source: "./media/characters/atticus/front.svg",
  18590. extra: 2934 / 2785,
  18591. bottom: 0.025
  18592. }
  18593. },
  18594. },
  18595. [
  18596. {
  18597. name: "Normal",
  18598. height: math.unit(5 + 9 / 12, "feet"),
  18599. default: true
  18600. },
  18601. {
  18602. name: "Macro",
  18603. height: math.unit(180, "feet")
  18604. },
  18605. ]
  18606. ))
  18607. characterMakers.push(() => makeCharacter(
  18608. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18609. {
  18610. side: {
  18611. height: math.unit(9, "feet"),
  18612. weight: math.unit(650, "lb"),
  18613. name: "Side",
  18614. image: {
  18615. source: "./media/characters/milo/side.svg",
  18616. extra: 2644 / 2310,
  18617. bottom: 0.032
  18618. }
  18619. },
  18620. },
  18621. [
  18622. {
  18623. name: "Normal",
  18624. height: math.unit(9, "feet"),
  18625. default: true
  18626. },
  18627. {
  18628. name: "Macro",
  18629. height: math.unit(300, "feet")
  18630. },
  18631. ]
  18632. ))
  18633. characterMakers.push(() => makeCharacter(
  18634. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18635. {
  18636. side: {
  18637. height: math.unit(8, "meters"),
  18638. weight: math.unit(90000, "kg"),
  18639. name: "Side",
  18640. image: {
  18641. source: "./media/characters/ijzer/side.svg",
  18642. extra: 2756 / 1600,
  18643. bottom: 0.01
  18644. }
  18645. },
  18646. },
  18647. [
  18648. {
  18649. name: "Small",
  18650. height: math.unit(3, "meters")
  18651. },
  18652. {
  18653. name: "Normal",
  18654. height: math.unit(8, "meters"),
  18655. default: true
  18656. },
  18657. {
  18658. name: "Normal+",
  18659. height: math.unit(10, "meters")
  18660. },
  18661. {
  18662. name: "Bigger",
  18663. height: math.unit(24, "meters")
  18664. },
  18665. {
  18666. name: "Huge",
  18667. height: math.unit(80, "meters")
  18668. },
  18669. ]
  18670. ))
  18671. characterMakers.push(() => makeCharacter(
  18672. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18673. {
  18674. front: {
  18675. height: math.unit(6 + 2 / 12, "feet"),
  18676. weight: math.unit(153, "lb"),
  18677. name: "Front",
  18678. image: {
  18679. source: "./media/characters/luca-cervicum/front.svg",
  18680. extra: 370 / 327,
  18681. bottom: 0.015
  18682. }
  18683. },
  18684. back: {
  18685. height: math.unit(6 + 2 / 12, "feet"),
  18686. weight: math.unit(153, "lb"),
  18687. name: "Back",
  18688. image: {
  18689. source: "./media/characters/luca-cervicum/back.svg",
  18690. extra: 367 / 333,
  18691. bottom: 0.005
  18692. }
  18693. },
  18694. frontGear: {
  18695. height: math.unit(6 + 2 / 12, "feet"),
  18696. weight: math.unit(173, "lb"),
  18697. name: "Front (Gear)",
  18698. image: {
  18699. source: "./media/characters/luca-cervicum/front-gear.svg",
  18700. extra: 377 / 333,
  18701. bottom: 0.006
  18702. }
  18703. },
  18704. },
  18705. [
  18706. {
  18707. name: "Normal",
  18708. height: math.unit(6 + 2 / 12, "feet"),
  18709. default: true
  18710. },
  18711. ]
  18712. ))
  18713. characterMakers.push(() => makeCharacter(
  18714. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18715. {
  18716. front: {
  18717. height: math.unit(6 + 1 / 12, "feet"),
  18718. weight: math.unit(304, "lb"),
  18719. name: "Front",
  18720. image: {
  18721. source: "./media/characters/oliver/front.svg",
  18722. extra: 157 / 143,
  18723. bottom: 0.08
  18724. }
  18725. },
  18726. },
  18727. [
  18728. {
  18729. name: "Normal",
  18730. height: math.unit(6 + 1 / 12, "feet"),
  18731. default: true
  18732. },
  18733. ]
  18734. ))
  18735. characterMakers.push(() => makeCharacter(
  18736. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18737. {
  18738. front: {
  18739. height: math.unit(5 + 7 / 12, "feet"),
  18740. weight: math.unit(140, "lb"),
  18741. name: "Front",
  18742. image: {
  18743. source: "./media/characters/shane/front.svg",
  18744. extra: 304 / 289,
  18745. bottom: 0.005
  18746. }
  18747. },
  18748. },
  18749. [
  18750. {
  18751. name: "Normal",
  18752. height: math.unit(5 + 7 / 12, "feet"),
  18753. default: true
  18754. },
  18755. ]
  18756. ))
  18757. characterMakers.push(() => makeCharacter(
  18758. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18759. {
  18760. front: {
  18761. height: math.unit(5 + 9 / 12, "feet"),
  18762. weight: math.unit(178, "lb"),
  18763. name: "Front",
  18764. image: {
  18765. source: "./media/characters/shin/front.svg",
  18766. extra: 159 / 151,
  18767. bottom: 0.015
  18768. }
  18769. },
  18770. },
  18771. [
  18772. {
  18773. name: "Normal",
  18774. height: math.unit(5 + 9 / 12, "feet"),
  18775. default: true
  18776. },
  18777. ]
  18778. ))
  18779. characterMakers.push(() => makeCharacter(
  18780. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18781. {
  18782. front: {
  18783. height: math.unit(5 + 10 / 12, "feet"),
  18784. weight: math.unit(168, "lb"),
  18785. name: "Front",
  18786. image: {
  18787. source: "./media/characters/xerxes/front.svg",
  18788. extra: 282 / 260,
  18789. bottom: 0.045
  18790. }
  18791. },
  18792. },
  18793. [
  18794. {
  18795. name: "Normal",
  18796. height: math.unit(5 + 10 / 12, "feet"),
  18797. default: true
  18798. },
  18799. ]
  18800. ))
  18801. characterMakers.push(() => makeCharacter(
  18802. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18803. {
  18804. front: {
  18805. height: math.unit(6 + 7 / 12, "feet"),
  18806. weight: math.unit(208, "lb"),
  18807. name: "Front",
  18808. image: {
  18809. source: "./media/characters/chaska/front.svg",
  18810. extra: 332 / 319,
  18811. bottom: 0.015
  18812. }
  18813. },
  18814. },
  18815. [
  18816. {
  18817. name: "Normal",
  18818. height: math.unit(6 + 7 / 12, "feet"),
  18819. default: true
  18820. },
  18821. ]
  18822. ))
  18823. characterMakers.push(() => makeCharacter(
  18824. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18825. {
  18826. front: {
  18827. height: math.unit(5 + 8 / 12, "feet"),
  18828. weight: math.unit(208, "lb"),
  18829. name: "Front",
  18830. image: {
  18831. source: "./media/characters/enuk/front.svg",
  18832. extra: 437 / 406,
  18833. bottom: 0.02
  18834. }
  18835. },
  18836. },
  18837. [
  18838. {
  18839. name: "Normal",
  18840. height: math.unit(5 + 8 / 12, "feet"),
  18841. default: true
  18842. },
  18843. ]
  18844. ))
  18845. characterMakers.push(() => makeCharacter(
  18846. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18847. {
  18848. front: {
  18849. height: math.unit(5 + 10 / 12, "feet"),
  18850. weight: math.unit(252, "lb"),
  18851. name: "Front",
  18852. image: {
  18853. source: "./media/characters/bruun/front.svg",
  18854. extra: 197 / 187,
  18855. bottom: 0.012
  18856. }
  18857. },
  18858. },
  18859. [
  18860. {
  18861. name: "Normal",
  18862. height: math.unit(5 + 10 / 12, "feet"),
  18863. default: true
  18864. },
  18865. ]
  18866. ))
  18867. characterMakers.push(() => makeCharacter(
  18868. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18869. {
  18870. front: {
  18871. height: math.unit(6 + 10 / 12, "feet"),
  18872. weight: math.unit(255, "lb"),
  18873. name: "Front",
  18874. image: {
  18875. source: "./media/characters/alexeev/front.svg",
  18876. extra: 213 / 200,
  18877. bottom: 0.05
  18878. }
  18879. },
  18880. },
  18881. [
  18882. {
  18883. name: "Normal",
  18884. height: math.unit(6 + 10 / 12, "feet"),
  18885. default: true
  18886. },
  18887. ]
  18888. ))
  18889. characterMakers.push(() => makeCharacter(
  18890. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18891. {
  18892. front: {
  18893. height: math.unit(2 + 8 / 12, "feet"),
  18894. weight: math.unit(22, "lb"),
  18895. name: "Front",
  18896. image: {
  18897. source: "./media/characters/evelyn/front.svg",
  18898. extra: 208 / 180
  18899. }
  18900. },
  18901. },
  18902. [
  18903. {
  18904. name: "Normal",
  18905. height: math.unit(2 + 8 / 12, "feet"),
  18906. default: true
  18907. },
  18908. ]
  18909. ))
  18910. characterMakers.push(() => makeCharacter(
  18911. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18912. {
  18913. front: {
  18914. height: math.unit(5 + 9 / 12, "feet"),
  18915. weight: math.unit(139, "lb"),
  18916. name: "Front",
  18917. image: {
  18918. source: "./media/characters/inca/front.svg",
  18919. extra: 294 / 291,
  18920. bottom: 0.03
  18921. }
  18922. },
  18923. },
  18924. [
  18925. {
  18926. name: "Normal",
  18927. height: math.unit(5 + 9 / 12, "feet"),
  18928. default: true
  18929. },
  18930. ]
  18931. ))
  18932. characterMakers.push(() => makeCharacter(
  18933. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18934. {
  18935. front: {
  18936. height: math.unit(5 + 1 / 12, "feet"),
  18937. weight: math.unit(84, "lb"),
  18938. name: "Front",
  18939. image: {
  18940. source: "./media/characters/magdalene/front.svg",
  18941. extra: 293 / 273
  18942. }
  18943. },
  18944. },
  18945. [
  18946. {
  18947. name: "Normal",
  18948. height: math.unit(5 + 1 / 12, "feet"),
  18949. default: true
  18950. },
  18951. ]
  18952. ))
  18953. characterMakers.push(() => makeCharacter(
  18954. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18955. {
  18956. front: {
  18957. height: math.unit(6 + 3 / 12, "feet"),
  18958. weight: math.unit(185, "lb"),
  18959. name: "Front",
  18960. image: {
  18961. source: "./media/characters/mera/front.svg",
  18962. extra: 291 / 277,
  18963. bottom: 0.03
  18964. }
  18965. },
  18966. },
  18967. [
  18968. {
  18969. name: "Normal",
  18970. height: math.unit(6 + 3 / 12, "feet"),
  18971. default: true
  18972. },
  18973. ]
  18974. ))
  18975. characterMakers.push(() => makeCharacter(
  18976. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18977. {
  18978. front: {
  18979. height: math.unit(6 + 7 / 12, "feet"),
  18980. weight: math.unit(160, "lb"),
  18981. name: "Front",
  18982. image: {
  18983. source: "./media/characters/ceres/front.svg",
  18984. extra: 1023 / 950,
  18985. bottom: 0.027
  18986. }
  18987. },
  18988. back: {
  18989. height: math.unit(6 + 7 / 12, "feet"),
  18990. weight: math.unit(160, "lb"),
  18991. name: "Back",
  18992. image: {
  18993. source: "./media/characters/ceres/back.svg",
  18994. extra: 1023 / 950
  18995. }
  18996. },
  18997. },
  18998. [
  18999. {
  19000. name: "Normal",
  19001. height: math.unit(6 + 7 / 12, "feet"),
  19002. default: true
  19003. },
  19004. ]
  19005. ))
  19006. characterMakers.push(() => makeCharacter(
  19007. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19008. {
  19009. front: {
  19010. height: math.unit(5 + 10 / 12, "feet"),
  19011. weight: math.unit(150, "lb"),
  19012. name: "Front",
  19013. image: {
  19014. source: "./media/characters/kris/front.svg",
  19015. extra: 885 / 803,
  19016. bottom: 0.03
  19017. }
  19018. },
  19019. },
  19020. [
  19021. {
  19022. name: "Normal",
  19023. height: math.unit(5 + 10 / 12, "feet"),
  19024. default: true
  19025. },
  19026. ]
  19027. ))
  19028. characterMakers.push(() => makeCharacter(
  19029. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19030. {
  19031. front: {
  19032. height: math.unit(7, "feet"),
  19033. weight: math.unit(120, "kg"),
  19034. name: "Front",
  19035. image: {
  19036. source: "./media/characters/taluthus/front.svg",
  19037. extra: 903 / 833,
  19038. bottom: 0.015
  19039. }
  19040. },
  19041. },
  19042. [
  19043. {
  19044. name: "Normal",
  19045. height: math.unit(7, "feet"),
  19046. default: true
  19047. },
  19048. {
  19049. name: "Macro",
  19050. height: math.unit(300, "feet")
  19051. },
  19052. ]
  19053. ))
  19054. characterMakers.push(() => makeCharacter(
  19055. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19056. {
  19057. front: {
  19058. height: math.unit(5 + 9 / 12, "feet"),
  19059. weight: math.unit(145, "lb"),
  19060. name: "Front",
  19061. image: {
  19062. source: "./media/characters/dawn/front.svg",
  19063. extra: 2094 / 2016,
  19064. bottom: 0.025
  19065. }
  19066. },
  19067. back: {
  19068. height: math.unit(5 + 9 / 12, "feet"),
  19069. weight: math.unit(160, "lb"),
  19070. name: "Back",
  19071. image: {
  19072. source: "./media/characters/dawn/back.svg",
  19073. extra: 2112 / 2080,
  19074. bottom: 0.005
  19075. }
  19076. },
  19077. },
  19078. [
  19079. {
  19080. name: "Normal",
  19081. height: math.unit(6 + 7 / 12, "feet"),
  19082. default: true
  19083. },
  19084. ]
  19085. ))
  19086. characterMakers.push(() => makeCharacter(
  19087. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19088. {
  19089. anthro: {
  19090. height: math.unit(8 + 3 / 12, "feet"),
  19091. weight: math.unit(450, "lb"),
  19092. name: "Anthro",
  19093. image: {
  19094. source: "./media/characters/arador/anthro.svg",
  19095. extra: 1835 / 1718,
  19096. bottom: 0.025
  19097. }
  19098. },
  19099. feral: {
  19100. height: math.unit(4, "feet"),
  19101. weight: math.unit(200, "lb"),
  19102. name: "Feral",
  19103. image: {
  19104. source: "./media/characters/arador/feral.svg",
  19105. extra: 1683 / 1514,
  19106. bottom: 0.07
  19107. }
  19108. },
  19109. },
  19110. [
  19111. {
  19112. name: "Normal",
  19113. height: math.unit(8 + 3 / 12, "feet")
  19114. },
  19115. {
  19116. name: "Macro",
  19117. height: math.unit(82.5, "feet"),
  19118. default: true
  19119. },
  19120. ]
  19121. ))
  19122. characterMakers.push(() => makeCharacter(
  19123. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19124. {
  19125. front: {
  19126. height: math.unit(5 + 10 / 12, "feet"),
  19127. weight: math.unit(125, "lb"),
  19128. name: "Front",
  19129. image: {
  19130. source: "./media/characters/dharsi/front.svg",
  19131. extra: 716 / 630,
  19132. bottom: 0.035
  19133. }
  19134. },
  19135. },
  19136. [
  19137. {
  19138. name: "Nano",
  19139. height: math.unit(100, "nm")
  19140. },
  19141. {
  19142. name: "Micro",
  19143. height: math.unit(2, "inches")
  19144. },
  19145. {
  19146. name: "Normal",
  19147. height: math.unit(5 + 10 / 12, "feet"),
  19148. default: true
  19149. },
  19150. {
  19151. name: "Macro",
  19152. height: math.unit(1000, "feet")
  19153. },
  19154. {
  19155. name: "Megamacro",
  19156. height: math.unit(10, "miles")
  19157. },
  19158. {
  19159. name: "Gigamacro",
  19160. height: math.unit(3000, "miles")
  19161. },
  19162. {
  19163. name: "Teramacro",
  19164. height: math.unit(500000, "miles")
  19165. },
  19166. {
  19167. name: "Teramacro+",
  19168. height: math.unit(30, "galaxies")
  19169. },
  19170. ]
  19171. ))
  19172. characterMakers.push(() => makeCharacter(
  19173. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19174. {
  19175. front: {
  19176. height: math.unit(6, "feet"),
  19177. weight: math.unit(150, "lb"),
  19178. name: "Front",
  19179. image: {
  19180. source: "./media/characters/deathy/front.svg",
  19181. extra: 1552 / 1463,
  19182. bottom: 0.025
  19183. }
  19184. },
  19185. side: {
  19186. height: math.unit(6, "feet"),
  19187. weight: math.unit(150, "lb"),
  19188. name: "Side",
  19189. image: {
  19190. source: "./media/characters/deathy/side.svg",
  19191. extra: 1604 / 1455,
  19192. bottom: 0.025
  19193. }
  19194. },
  19195. back: {
  19196. height: math.unit(6, "feet"),
  19197. weight: math.unit(150, "lb"),
  19198. name: "Back",
  19199. image: {
  19200. source: "./media/characters/deathy/back.svg",
  19201. extra: 1580 / 1463,
  19202. bottom: 0.005
  19203. }
  19204. },
  19205. },
  19206. [
  19207. {
  19208. name: "Micro",
  19209. height: math.unit(5, "millimeters")
  19210. },
  19211. {
  19212. name: "Normal",
  19213. height: math.unit(6 + 5 / 12, "feet"),
  19214. default: true
  19215. },
  19216. ]
  19217. ))
  19218. characterMakers.push(() => makeCharacter(
  19219. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19220. {
  19221. front: {
  19222. height: math.unit(16, "feet"),
  19223. weight: math.unit(4000, "lb"),
  19224. name: "Front",
  19225. image: {
  19226. source: "./media/characters/juniper/front.svg",
  19227. bottom: 0.04
  19228. }
  19229. },
  19230. },
  19231. [
  19232. {
  19233. name: "Normal",
  19234. height: math.unit(16, "feet"),
  19235. default: true
  19236. },
  19237. ]
  19238. ))
  19239. characterMakers.push(() => makeCharacter(
  19240. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19241. {
  19242. front: {
  19243. height: math.unit(6, "feet"),
  19244. weight: math.unit(150, "lb"),
  19245. name: "Front",
  19246. image: {
  19247. source: "./media/characters/hipster/front.svg",
  19248. extra: 1312 / 1209,
  19249. bottom: 0.025
  19250. }
  19251. },
  19252. back: {
  19253. height: math.unit(6, "feet"),
  19254. weight: math.unit(150, "lb"),
  19255. name: "Back",
  19256. image: {
  19257. source: "./media/characters/hipster/back.svg",
  19258. extra: 1281 / 1196,
  19259. bottom: 0.01
  19260. }
  19261. },
  19262. },
  19263. [
  19264. {
  19265. name: "Micro",
  19266. height: math.unit(1, "mm")
  19267. },
  19268. {
  19269. name: "Normal",
  19270. height: math.unit(4, "inches"),
  19271. default: true
  19272. },
  19273. {
  19274. name: "Macro",
  19275. height: math.unit(500, "feet")
  19276. },
  19277. {
  19278. name: "Megamacro",
  19279. height: math.unit(1000, "miles")
  19280. },
  19281. ]
  19282. ))
  19283. characterMakers.push(() => makeCharacter(
  19284. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19285. {
  19286. front: {
  19287. height: math.unit(6, "feet"),
  19288. weight: math.unit(150, "lb"),
  19289. name: "Front",
  19290. image: {
  19291. source: "./media/characters/tendirmuldr/front.svg",
  19292. extra: 1878 / 1772,
  19293. bottom: 0.015
  19294. }
  19295. },
  19296. },
  19297. [
  19298. {
  19299. name: "Megamacro",
  19300. height: math.unit(1500, "miles"),
  19301. default: true
  19302. },
  19303. ]
  19304. ))
  19305. characterMakers.push(() => makeCharacter(
  19306. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19307. {
  19308. front: {
  19309. height: math.unit(14, "feet"),
  19310. weight: math.unit(12000, "lb"),
  19311. name: "Front",
  19312. image: {
  19313. source: "./media/characters/mort/front.svg",
  19314. extra: 365 / 318,
  19315. bottom: 0.01
  19316. }
  19317. },
  19318. side: {
  19319. height: math.unit(14, "feet"),
  19320. weight: math.unit(12000, "lb"),
  19321. name: "Side",
  19322. image: {
  19323. source: "./media/characters/mort/side.svg",
  19324. extra: 365 / 318,
  19325. bottom: 0.052
  19326. },
  19327. default: true
  19328. },
  19329. back: {
  19330. height: math.unit(14, "feet"),
  19331. weight: math.unit(12000, "lb"),
  19332. name: "Back",
  19333. image: {
  19334. source: "./media/characters/mort/back.svg",
  19335. extra: 371 / 332,
  19336. bottom: 0.18
  19337. }
  19338. },
  19339. },
  19340. [
  19341. {
  19342. name: "Normal",
  19343. height: math.unit(14, "feet"),
  19344. default: true
  19345. },
  19346. ]
  19347. ))
  19348. characterMakers.push(() => makeCharacter(
  19349. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19350. {
  19351. front: {
  19352. height: math.unit(8, "feet"),
  19353. weight: math.unit(1, "ton"),
  19354. name: "Front",
  19355. image: {
  19356. source: "./media/characters/lycoa/front.svg",
  19357. extra: 1875 / 1789,
  19358. bottom: 0.022
  19359. }
  19360. },
  19361. back: {
  19362. height: math.unit(8, "feet"),
  19363. weight: math.unit(1, "ton"),
  19364. name: "Back",
  19365. image: {
  19366. source: "./media/characters/lycoa/back.svg",
  19367. extra: 1835 / 1781,
  19368. bottom: 0.03
  19369. }
  19370. },
  19371. head: {
  19372. height: math.unit(2.1, "feet"),
  19373. name: "Head",
  19374. image: {
  19375. source: "./media/characters/lycoa/head.svg"
  19376. }
  19377. },
  19378. tailmaw: {
  19379. height: math.unit(1.9, "feet"),
  19380. name: "Tailmaw",
  19381. image: {
  19382. source: "./media/characters/lycoa/tailmaw.svg"
  19383. }
  19384. },
  19385. tentacles: {
  19386. height: math.unit(2.1, "feet"),
  19387. name: "Tentacles",
  19388. image: {
  19389. source: "./media/characters/lycoa/tentacles.svg"
  19390. }
  19391. },
  19392. dick: {
  19393. height: math.unit(1.73, "feet"),
  19394. name: "Dick",
  19395. image: {
  19396. source: "./media/characters/lycoa/dick.svg"
  19397. }
  19398. },
  19399. },
  19400. [
  19401. {
  19402. name: "Normal",
  19403. height: math.unit(8, "feet"),
  19404. default: true
  19405. },
  19406. {
  19407. name: "Macro",
  19408. height: math.unit(30, "feet")
  19409. },
  19410. ]
  19411. ))
  19412. characterMakers.push(() => makeCharacter(
  19413. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19414. {
  19415. front: {
  19416. height: math.unit(4 + 2 / 12, "feet"),
  19417. weight: math.unit(70, "lb"),
  19418. name: "Front",
  19419. image: {
  19420. source: "./media/characters/naldara/front.svg",
  19421. extra: 841 / 720,
  19422. bottom: 0.04
  19423. }
  19424. },
  19425. naga: {
  19426. height: math.unit(23, "feet"),
  19427. weight: math.unit(15000, "kg"),
  19428. name: "Naga",
  19429. image: {
  19430. source: "./media/characters/naldara/naga.svg",
  19431. extra: 3290/2959,
  19432. bottom: 124/3432
  19433. }
  19434. },
  19435. },
  19436. [
  19437. {
  19438. name: "Normal",
  19439. height: math.unit(4 + 2 / 12, "feet"),
  19440. default: true
  19441. },
  19442. ]
  19443. ))
  19444. characterMakers.push(() => makeCharacter(
  19445. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19446. {
  19447. front: {
  19448. height: math.unit(13 + 7 / 12, "feet"),
  19449. weight: math.unit(1500, "lb"),
  19450. name: "Front",
  19451. image: {
  19452. source: "./media/characters/briar/front.svg",
  19453. extra: 626 / 596,
  19454. bottom: 0.08
  19455. }
  19456. },
  19457. },
  19458. [
  19459. {
  19460. name: "Normal",
  19461. height: math.unit(13 + 7 / 12, "feet"),
  19462. default: true
  19463. },
  19464. ]
  19465. ))
  19466. characterMakers.push(() => makeCharacter(
  19467. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19468. {
  19469. side: {
  19470. height: math.unit(10, "feet"),
  19471. weight: math.unit(500, "lb"),
  19472. name: "Side",
  19473. image: {
  19474. source: "./media/characters/vanguard/side.svg",
  19475. extra: 502 / 425,
  19476. bottom: 0.087
  19477. }
  19478. },
  19479. },
  19480. [
  19481. {
  19482. name: "Normal",
  19483. height: math.unit(10, "feet"),
  19484. default: true
  19485. },
  19486. ]
  19487. ))
  19488. characterMakers.push(() => makeCharacter(
  19489. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19490. {
  19491. front: {
  19492. height: math.unit(7.5, "feet"),
  19493. weight: math.unit(2, "lb"),
  19494. name: "Front",
  19495. image: {
  19496. source: "./media/characters/artemis/front.svg",
  19497. extra: 1192 / 1075,
  19498. bottom: 0.07
  19499. }
  19500. },
  19501. frontNsfw: {
  19502. height: math.unit(7.5, "feet"),
  19503. weight: math.unit(2, "lb"),
  19504. name: "Front (NSFW)",
  19505. image: {
  19506. source: "./media/characters/artemis/front-nsfw.svg",
  19507. extra: 1192 / 1075,
  19508. bottom: 0.07
  19509. }
  19510. },
  19511. frontNsfwer: {
  19512. height: math.unit(7.5, "feet"),
  19513. weight: math.unit(2, "lb"),
  19514. name: "Front (NSFW-er)",
  19515. image: {
  19516. source: "./media/characters/artemis/front-nsfwer.svg",
  19517. extra: 1192 / 1075,
  19518. bottom: 0.07
  19519. }
  19520. },
  19521. side: {
  19522. height: math.unit(7.5, "feet"),
  19523. weight: math.unit(2, "lb"),
  19524. name: "Side",
  19525. image: {
  19526. source: "./media/characters/artemis/side.svg",
  19527. extra: 1192 / 1075,
  19528. bottom: 0.07
  19529. }
  19530. },
  19531. sideNsfw: {
  19532. height: math.unit(7.5, "feet"),
  19533. weight: math.unit(2, "lb"),
  19534. name: "Side (NSFW)",
  19535. image: {
  19536. source: "./media/characters/artemis/side-nsfw.svg",
  19537. extra: 1192 / 1075,
  19538. bottom: 0.07
  19539. }
  19540. },
  19541. sideNsfwer: {
  19542. height: math.unit(7.5, "feet"),
  19543. weight: math.unit(2, "lb"),
  19544. name: "Side (NSFW-er)",
  19545. image: {
  19546. source: "./media/characters/artemis/side-nsfwer.svg",
  19547. extra: 1192 / 1075,
  19548. bottom: 0.07
  19549. }
  19550. },
  19551. maw: {
  19552. height: math.unit(1.1, "feet"),
  19553. name: "Maw",
  19554. image: {
  19555. source: "./media/characters/artemis/maw.svg"
  19556. }
  19557. },
  19558. stomach: {
  19559. height: math.unit(0.95, "feet"),
  19560. name: "Stomach",
  19561. image: {
  19562. source: "./media/characters/artemis/stomach.svg"
  19563. }
  19564. },
  19565. dickCanine: {
  19566. height: math.unit(1, "feet"),
  19567. name: "Dick (Canine)",
  19568. image: {
  19569. source: "./media/characters/artemis/dick-canine.svg"
  19570. }
  19571. },
  19572. dickEquine: {
  19573. height: math.unit(0.85, "feet"),
  19574. name: "Dick (Equine)",
  19575. image: {
  19576. source: "./media/characters/artemis/dick-equine.svg"
  19577. }
  19578. },
  19579. dickExotic: {
  19580. height: math.unit(0.85, "feet"),
  19581. name: "Dick (Exotic)",
  19582. image: {
  19583. source: "./media/characters/artemis/dick-exotic.svg"
  19584. }
  19585. },
  19586. },
  19587. [
  19588. {
  19589. name: "Normal",
  19590. height: math.unit(7.5, "feet"),
  19591. default: true
  19592. },
  19593. {
  19594. name: "Enlarged",
  19595. height: math.unit(12, "feet")
  19596. },
  19597. ]
  19598. ))
  19599. characterMakers.push(() => makeCharacter(
  19600. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19601. {
  19602. front: {
  19603. height: math.unit(5 + 3 / 12, "feet"),
  19604. weight: math.unit(160, "lb"),
  19605. name: "Front",
  19606. image: {
  19607. source: "./media/characters/kira/front.svg",
  19608. extra: 906 / 786,
  19609. bottom: 0.01
  19610. }
  19611. },
  19612. back: {
  19613. height: math.unit(5 + 3 / 12, "feet"),
  19614. weight: math.unit(160, "lb"),
  19615. name: "Back",
  19616. image: {
  19617. source: "./media/characters/kira/back.svg",
  19618. extra: 882 / 757,
  19619. bottom: 0.005
  19620. }
  19621. },
  19622. frontDressed: {
  19623. height: math.unit(5 + 3 / 12, "feet"),
  19624. weight: math.unit(160, "lb"),
  19625. name: "Front (Dressed)",
  19626. image: {
  19627. source: "./media/characters/kira/front-dressed.svg",
  19628. extra: 906 / 786,
  19629. bottom: 0.01
  19630. }
  19631. },
  19632. beans: {
  19633. height: math.unit(0.92, "feet"),
  19634. name: "Beans",
  19635. image: {
  19636. source: "./media/characters/kira/beans.svg"
  19637. }
  19638. },
  19639. },
  19640. [
  19641. {
  19642. name: "Normal",
  19643. height: math.unit(5 + 3 / 12, "feet"),
  19644. default: true
  19645. },
  19646. ]
  19647. ))
  19648. characterMakers.push(() => makeCharacter(
  19649. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19650. {
  19651. front: {
  19652. height: math.unit(5 + 4 / 12, "feet"),
  19653. weight: math.unit(145, "lb"),
  19654. name: "Front",
  19655. image: {
  19656. source: "./media/characters/scramble/front.svg",
  19657. extra: 763 / 727,
  19658. bottom: 0.05
  19659. }
  19660. },
  19661. back: {
  19662. height: math.unit(5 + 4 / 12, "feet"),
  19663. weight: math.unit(145, "lb"),
  19664. name: "Back",
  19665. image: {
  19666. source: "./media/characters/scramble/back.svg",
  19667. extra: 826 / 737,
  19668. bottom: 0.002
  19669. }
  19670. },
  19671. },
  19672. [
  19673. {
  19674. name: "Normal",
  19675. height: math.unit(5 + 4 / 12, "feet"),
  19676. default: true
  19677. },
  19678. ]
  19679. ))
  19680. characterMakers.push(() => makeCharacter(
  19681. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19682. {
  19683. side: {
  19684. height: math.unit(6 + 2 / 12, "feet"),
  19685. weight: math.unit(190, "lb"),
  19686. name: "Side",
  19687. image: {
  19688. source: "./media/characters/biscuit/side.svg",
  19689. extra: 858 / 791,
  19690. bottom: 0.044
  19691. }
  19692. },
  19693. },
  19694. [
  19695. {
  19696. name: "Normal",
  19697. height: math.unit(6 + 2 / 12, "feet"),
  19698. default: true
  19699. },
  19700. ]
  19701. ))
  19702. characterMakers.push(() => makeCharacter(
  19703. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19704. {
  19705. front: {
  19706. height: math.unit(5 + 2 / 12, "feet"),
  19707. weight: math.unit(120, "lb"),
  19708. name: "Front",
  19709. image: {
  19710. source: "./media/characters/poffin/front.svg",
  19711. extra: 786 / 680,
  19712. bottom: 0.005
  19713. }
  19714. },
  19715. },
  19716. [
  19717. {
  19718. name: "Normal",
  19719. height: math.unit(5 + 2 / 12, "feet"),
  19720. default: true
  19721. },
  19722. ]
  19723. ))
  19724. characterMakers.push(() => makeCharacter(
  19725. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19726. {
  19727. front: {
  19728. height: math.unit(6 + 3 / 12, "feet"),
  19729. weight: math.unit(519, "lb"),
  19730. name: "Front",
  19731. image: {
  19732. source: "./media/characters/dhari/front.svg",
  19733. extra: 1048 / 946,
  19734. bottom: 0.015
  19735. }
  19736. },
  19737. back: {
  19738. height: math.unit(6 + 3 / 12, "feet"),
  19739. weight: math.unit(519, "lb"),
  19740. name: "Back",
  19741. image: {
  19742. source: "./media/characters/dhari/back.svg",
  19743. extra: 1048 / 931,
  19744. bottom: 0.005
  19745. }
  19746. },
  19747. frontDressed: {
  19748. height: math.unit(6 + 3 / 12, "feet"),
  19749. weight: math.unit(519, "lb"),
  19750. name: "Front (Dressed)",
  19751. image: {
  19752. source: "./media/characters/dhari/front-dressed.svg",
  19753. extra: 1713 / 1546,
  19754. bottom: 0.02
  19755. }
  19756. },
  19757. backDressed: {
  19758. height: math.unit(6 + 3 / 12, "feet"),
  19759. weight: math.unit(519, "lb"),
  19760. name: "Back (Dressed)",
  19761. image: {
  19762. source: "./media/characters/dhari/back-dressed.svg",
  19763. extra: 1699 / 1537,
  19764. bottom: 0.01
  19765. }
  19766. },
  19767. maw: {
  19768. height: math.unit(0.95, "feet"),
  19769. name: "Maw",
  19770. image: {
  19771. source: "./media/characters/dhari/maw.svg"
  19772. }
  19773. },
  19774. wereFront: {
  19775. height: math.unit(12 + 8 / 12, "feet"),
  19776. weight: math.unit(4000, "lb"),
  19777. name: "Front (Were)",
  19778. image: {
  19779. source: "./media/characters/dhari/were-front.svg",
  19780. extra: 1065 / 969,
  19781. bottom: 0.015
  19782. }
  19783. },
  19784. wereBack: {
  19785. height: math.unit(12 + 8 / 12, "feet"),
  19786. weight: math.unit(4000, "lb"),
  19787. name: "Back (Were)",
  19788. image: {
  19789. source: "./media/characters/dhari/were-back.svg",
  19790. extra: 1065 / 969,
  19791. bottom: 0.012
  19792. }
  19793. },
  19794. wereMaw: {
  19795. height: math.unit(0.625, "meters"),
  19796. name: "Maw (Were)",
  19797. image: {
  19798. source: "./media/characters/dhari/were-maw.svg"
  19799. }
  19800. },
  19801. },
  19802. [
  19803. {
  19804. name: "Normal",
  19805. height: math.unit(6 + 3 / 12, "feet"),
  19806. default: true
  19807. },
  19808. ]
  19809. ))
  19810. characterMakers.push(() => makeCharacter(
  19811. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19812. {
  19813. anthro: {
  19814. height: math.unit(5 + 7 / 12, "feet"),
  19815. weight: math.unit(175, "lb"),
  19816. name: "Anthro",
  19817. image: {
  19818. source: "./media/characters/rena-dyne/anthro.svg",
  19819. extra: 1849 / 1785,
  19820. bottom: 0.005
  19821. }
  19822. },
  19823. taur: {
  19824. height: math.unit(15 + 6 / 12, "feet"),
  19825. weight: math.unit(8000, "lb"),
  19826. name: "Taur",
  19827. image: {
  19828. source: "./media/characters/rena-dyne/taur.svg",
  19829. extra: 2315 / 2234,
  19830. bottom: 0.033
  19831. }
  19832. },
  19833. },
  19834. [
  19835. {
  19836. name: "Normal",
  19837. height: math.unit(5 + 7 / 12, "feet"),
  19838. default: true
  19839. },
  19840. ]
  19841. ))
  19842. characterMakers.push(() => makeCharacter(
  19843. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19844. {
  19845. front: {
  19846. height: math.unit(8, "feet"),
  19847. weight: math.unit(600, "lb"),
  19848. name: "Front",
  19849. image: {
  19850. source: "./media/characters/weremeep/front.svg",
  19851. extra: 967 / 862,
  19852. bottom: 0.01
  19853. }
  19854. },
  19855. },
  19856. [
  19857. {
  19858. name: "Normal",
  19859. height: math.unit(8, "feet"),
  19860. default: true
  19861. },
  19862. {
  19863. name: "Lorg",
  19864. height: math.unit(12, "feet")
  19865. },
  19866. {
  19867. name: "Oh Lawd She Comin'",
  19868. height: math.unit(20, "feet")
  19869. },
  19870. ]
  19871. ))
  19872. characterMakers.push(() => makeCharacter(
  19873. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19874. {
  19875. front: {
  19876. height: math.unit(4, "feet"),
  19877. weight: math.unit(90, "lb"),
  19878. name: "Front",
  19879. image: {
  19880. source: "./media/characters/reza/front.svg",
  19881. extra: 1183 / 1111,
  19882. bottom: 0.017
  19883. }
  19884. },
  19885. back: {
  19886. height: math.unit(4, "feet"),
  19887. weight: math.unit(90, "lb"),
  19888. name: "Back",
  19889. image: {
  19890. source: "./media/characters/reza/back.svg",
  19891. extra: 1183 / 1111,
  19892. bottom: 0.01
  19893. }
  19894. },
  19895. drake: {
  19896. height: math.unit(30, "feet"),
  19897. weight: math.unit(246960, "lb"),
  19898. name: "Drake",
  19899. image: {
  19900. source: "./media/characters/reza/drake.svg",
  19901. extra: 2350 / 2024,
  19902. bottom: 60.7 / 2403
  19903. }
  19904. },
  19905. },
  19906. [
  19907. {
  19908. name: "Normal",
  19909. height: math.unit(4, "feet"),
  19910. default: true
  19911. },
  19912. ]
  19913. ))
  19914. characterMakers.push(() => makeCharacter(
  19915. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19916. {
  19917. side: {
  19918. height: math.unit(15, "feet"),
  19919. weight: math.unit(14, "tons"),
  19920. name: "Side",
  19921. image: {
  19922. source: "./media/characters/athea/side.svg",
  19923. extra: 960 / 540,
  19924. bottom: 0.003
  19925. }
  19926. },
  19927. sitting: {
  19928. height: math.unit(6 * 2.85, "feet"),
  19929. weight: math.unit(14, "tons"),
  19930. name: "Sitting",
  19931. image: {
  19932. source: "./media/characters/athea/sitting.svg",
  19933. extra: 621 / 581,
  19934. bottom: 0.075
  19935. }
  19936. },
  19937. maw: {
  19938. height: math.unit(7.59498031496063, "feet"),
  19939. name: "Maw",
  19940. image: {
  19941. source: "./media/characters/athea/maw.svg"
  19942. }
  19943. },
  19944. },
  19945. [
  19946. {
  19947. name: "Lap Cat",
  19948. height: math.unit(2.5, "feet")
  19949. },
  19950. {
  19951. name: "Minimacro",
  19952. height: math.unit(15, "feet"),
  19953. default: true
  19954. },
  19955. {
  19956. name: "Macro",
  19957. height: math.unit(120, "feet")
  19958. },
  19959. {
  19960. name: "Macro+",
  19961. height: math.unit(640, "feet")
  19962. },
  19963. {
  19964. name: "Colossus",
  19965. height: math.unit(2.2, "miles")
  19966. },
  19967. ]
  19968. ))
  19969. characterMakers.push(() => makeCharacter(
  19970. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19971. {
  19972. front: {
  19973. height: math.unit(8 + 8 / 12, "feet"),
  19974. weight: math.unit(130, "kg"),
  19975. name: "Front",
  19976. image: {
  19977. source: "./media/characters/seroko/front.svg",
  19978. extra: 1385 / 1280,
  19979. bottom: 0.025
  19980. }
  19981. },
  19982. back: {
  19983. height: math.unit(8 + 8 / 12, "feet"),
  19984. weight: math.unit(130, "kg"),
  19985. name: "Back",
  19986. image: {
  19987. source: "./media/characters/seroko/back.svg",
  19988. extra: 1369 / 1238,
  19989. bottom: 0.018
  19990. }
  19991. },
  19992. frontDressed: {
  19993. height: math.unit(8 + 8 / 12, "feet"),
  19994. weight: math.unit(130, "kg"),
  19995. name: "Front (Dressed)",
  19996. image: {
  19997. source: "./media/characters/seroko/front-dressed.svg",
  19998. extra: 1366 / 1275,
  19999. bottom: 0.03
  20000. }
  20001. },
  20002. },
  20003. [
  20004. {
  20005. name: "Normal",
  20006. height: math.unit(8 + 8 / 12, "feet"),
  20007. default: true
  20008. },
  20009. ]
  20010. ))
  20011. characterMakers.push(() => makeCharacter(
  20012. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20013. {
  20014. front: {
  20015. height: math.unit(5.5, "feet"),
  20016. weight: math.unit(160, "lb"),
  20017. name: "Front",
  20018. image: {
  20019. source: "./media/characters/quatzi/front.svg",
  20020. extra: 2346 / 2242,
  20021. bottom: 0.015
  20022. }
  20023. },
  20024. },
  20025. [
  20026. {
  20027. name: "Normal",
  20028. height: math.unit(5.5, "feet"),
  20029. default: true
  20030. },
  20031. {
  20032. name: "Big",
  20033. height: math.unit(7.7, "feet")
  20034. },
  20035. ]
  20036. ))
  20037. characterMakers.push(() => makeCharacter(
  20038. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20039. {
  20040. front: {
  20041. height: math.unit(5 + 11 / 12, "feet"),
  20042. weight: math.unit(180, "lb"),
  20043. name: "Front",
  20044. image: {
  20045. source: "./media/characters/sen/front.svg",
  20046. extra: 1321 / 1254,
  20047. bottom: 0.015
  20048. }
  20049. },
  20050. side: {
  20051. height: math.unit(5 + 11 / 12, "feet"),
  20052. weight: math.unit(180, "lb"),
  20053. name: "Side",
  20054. image: {
  20055. source: "./media/characters/sen/side.svg",
  20056. extra: 1321 / 1254,
  20057. bottom: 0.007
  20058. }
  20059. },
  20060. back: {
  20061. height: math.unit(5 + 11 / 12, "feet"),
  20062. weight: math.unit(180, "lb"),
  20063. name: "Back",
  20064. image: {
  20065. source: "./media/characters/sen/back.svg",
  20066. extra: 1321 / 1254
  20067. }
  20068. },
  20069. },
  20070. [
  20071. {
  20072. name: "Normal",
  20073. height: math.unit(5 + 11 / 12, "feet"),
  20074. default: true
  20075. },
  20076. ]
  20077. ))
  20078. characterMakers.push(() => makeCharacter(
  20079. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20080. {
  20081. front: {
  20082. height: math.unit(166.6, "cm"),
  20083. weight: math.unit(66.6, "kg"),
  20084. name: "Front",
  20085. image: {
  20086. source: "./media/characters/fruity/front.svg",
  20087. extra: 1510 / 1386,
  20088. bottom: 0.04
  20089. }
  20090. },
  20091. back: {
  20092. height: math.unit(166.6, "cm"),
  20093. weight: math.unit(66.6, "lb"),
  20094. name: "Back",
  20095. image: {
  20096. source: "./media/characters/fruity/back.svg",
  20097. extra: 1563 / 1435,
  20098. bottom: 0.005
  20099. }
  20100. },
  20101. },
  20102. [
  20103. {
  20104. name: "Normal",
  20105. height: math.unit(166.6, "cm"),
  20106. default: true
  20107. },
  20108. {
  20109. name: "Demonic",
  20110. height: math.unit(166.6, "feet")
  20111. },
  20112. ]
  20113. ))
  20114. characterMakers.push(() => makeCharacter(
  20115. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20116. {
  20117. side: {
  20118. height: math.unit(10, "feet"),
  20119. weight: math.unit(500, "lb"),
  20120. name: "Side",
  20121. image: {
  20122. source: "./media/characters/zost/side.svg",
  20123. extra: 966 / 880,
  20124. bottom: 0.075
  20125. }
  20126. },
  20127. mawFront: {
  20128. height: math.unit(1.08, "meters"),
  20129. name: "Maw (Front)",
  20130. image: {
  20131. source: "./media/characters/zost/maw-front.svg"
  20132. }
  20133. },
  20134. mawSide: {
  20135. height: math.unit(2.66, "feet"),
  20136. name: "Maw (Side)",
  20137. image: {
  20138. source: "./media/characters/zost/maw-side.svg"
  20139. }
  20140. },
  20141. },
  20142. [
  20143. {
  20144. name: "Normal",
  20145. height: math.unit(10, "feet"),
  20146. default: true
  20147. },
  20148. ]
  20149. ))
  20150. characterMakers.push(() => makeCharacter(
  20151. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20152. {
  20153. front: {
  20154. height: math.unit(5 + 4 / 12, "feet"),
  20155. weight: math.unit(120, "lb"),
  20156. name: "Front",
  20157. image: {
  20158. source: "./media/characters/luci/front.svg",
  20159. extra: 1985 / 1884,
  20160. bottom: 0.04
  20161. }
  20162. },
  20163. back: {
  20164. height: math.unit(5 + 4 / 12, "feet"),
  20165. weight: math.unit(120, "lb"),
  20166. name: "Back",
  20167. image: {
  20168. source: "./media/characters/luci/back.svg",
  20169. extra: 1892 / 1791,
  20170. bottom: 0.002
  20171. }
  20172. },
  20173. },
  20174. [
  20175. {
  20176. name: "Normal",
  20177. height: math.unit(5 + 4 / 12, "feet"),
  20178. default: true
  20179. },
  20180. ]
  20181. ))
  20182. characterMakers.push(() => makeCharacter(
  20183. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20184. {
  20185. front: {
  20186. height: math.unit(1500, "feet"),
  20187. weight: math.unit(3.8e6, "tons"),
  20188. name: "Front",
  20189. image: {
  20190. source: "./media/characters/2th/front.svg",
  20191. extra: 3489 / 3350,
  20192. bottom: 0.1
  20193. }
  20194. },
  20195. foot: {
  20196. height: math.unit(461, "feet"),
  20197. name: "Foot",
  20198. image: {
  20199. source: "./media/characters/2th/foot.svg"
  20200. }
  20201. },
  20202. },
  20203. [
  20204. {
  20205. name: "\"Micro\"",
  20206. height: math.unit(15 + 7 / 12, "feet")
  20207. },
  20208. {
  20209. name: "Normal",
  20210. height: math.unit(1500, "feet"),
  20211. default: true
  20212. },
  20213. {
  20214. name: "Macro",
  20215. height: math.unit(5000, "feet")
  20216. },
  20217. {
  20218. name: "Megamacro",
  20219. height: math.unit(15, "miles")
  20220. },
  20221. {
  20222. name: "Gigamacro",
  20223. height: math.unit(4000, "miles")
  20224. },
  20225. {
  20226. name: "Galactic",
  20227. height: math.unit(50, "AU")
  20228. },
  20229. ]
  20230. ))
  20231. characterMakers.push(() => makeCharacter(
  20232. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20233. {
  20234. front: {
  20235. height: math.unit(5 + 6 / 12, "feet"),
  20236. weight: math.unit(220, "lb"),
  20237. name: "Front",
  20238. image: {
  20239. source: "./media/characters/amethyst/front.svg",
  20240. extra: 2078 / 2040,
  20241. bottom: 0.045
  20242. }
  20243. },
  20244. back: {
  20245. height: math.unit(5 + 6 / 12, "feet"),
  20246. weight: math.unit(220, "lb"),
  20247. name: "Back",
  20248. image: {
  20249. source: "./media/characters/amethyst/back.svg",
  20250. extra: 2021 / 1989,
  20251. bottom: 0.02
  20252. }
  20253. },
  20254. },
  20255. [
  20256. {
  20257. name: "Normal",
  20258. height: math.unit(5 + 6 / 12, "feet"),
  20259. default: true
  20260. },
  20261. ]
  20262. ))
  20263. characterMakers.push(() => makeCharacter(
  20264. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20265. {
  20266. front: {
  20267. height: math.unit(4 + 11 / 12, "feet"),
  20268. weight: math.unit(120, "lb"),
  20269. name: "Front",
  20270. image: {
  20271. source: "./media/characters/yumi-akiyama/front.svg",
  20272. extra: 1327 / 1235,
  20273. bottom: 0.02
  20274. }
  20275. },
  20276. back: {
  20277. height: math.unit(4 + 11 / 12, "feet"),
  20278. weight: math.unit(120, "lb"),
  20279. name: "Back",
  20280. image: {
  20281. source: "./media/characters/yumi-akiyama/back.svg",
  20282. extra: 1287 / 1245,
  20283. bottom: 0.002
  20284. }
  20285. },
  20286. },
  20287. [
  20288. {
  20289. name: "Galactic",
  20290. height: math.unit(50, "galaxies"),
  20291. default: true
  20292. },
  20293. {
  20294. name: "Universal",
  20295. height: math.unit(100, "universes")
  20296. },
  20297. ]
  20298. ))
  20299. characterMakers.push(() => makeCharacter(
  20300. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20301. {
  20302. front: {
  20303. height: math.unit(8, "feet"),
  20304. weight: math.unit(500, "lb"),
  20305. name: "Front",
  20306. image: {
  20307. source: "./media/characters/rifter-yrmori/front.svg",
  20308. extra: 1180 / 1125,
  20309. bottom: 0.02
  20310. }
  20311. },
  20312. back: {
  20313. height: math.unit(8, "feet"),
  20314. weight: math.unit(500, "lb"),
  20315. name: "Back",
  20316. image: {
  20317. source: "./media/characters/rifter-yrmori/back.svg",
  20318. extra: 1190 / 1145,
  20319. bottom: 0.001
  20320. }
  20321. },
  20322. wings: {
  20323. height: math.unit(7.75, "feet"),
  20324. weight: math.unit(500, "lb"),
  20325. name: "Wings",
  20326. image: {
  20327. source: "./media/characters/rifter-yrmori/wings.svg",
  20328. extra: 1357 / 1285
  20329. }
  20330. },
  20331. maw: {
  20332. height: math.unit(0.8, "feet"),
  20333. name: "Maw",
  20334. image: {
  20335. source: "./media/characters/rifter-yrmori/maw.svg"
  20336. }
  20337. },
  20338. mawfront: {
  20339. height: math.unit(1.45, "feet"),
  20340. name: "Maw (Front)",
  20341. image: {
  20342. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20343. }
  20344. },
  20345. },
  20346. [
  20347. {
  20348. name: "Normal",
  20349. height: math.unit(8, "feet"),
  20350. default: true
  20351. },
  20352. {
  20353. name: "Macro",
  20354. height: math.unit(42, "meters")
  20355. },
  20356. ]
  20357. ))
  20358. characterMakers.push(() => makeCharacter(
  20359. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20360. {
  20361. were: {
  20362. height: math.unit(25 + 6 / 12, "feet"),
  20363. weight: math.unit(10000, "lb"),
  20364. name: "Were",
  20365. image: {
  20366. source: "./media/characters/tahajin/were.svg",
  20367. extra: 801 / 770,
  20368. bottom: 0.042
  20369. }
  20370. },
  20371. aquatic: {
  20372. height: math.unit(6 + 4 / 12, "feet"),
  20373. weight: math.unit(160, "lb"),
  20374. name: "Aquatic",
  20375. image: {
  20376. source: "./media/characters/tahajin/aquatic.svg",
  20377. extra: 572 / 542,
  20378. bottom: 0.04
  20379. }
  20380. },
  20381. chow: {
  20382. height: math.unit(8 + 11 / 12, "feet"),
  20383. weight: math.unit(450, "lb"),
  20384. name: "Chow",
  20385. image: {
  20386. source: "./media/characters/tahajin/chow.svg",
  20387. extra: 660 / 640,
  20388. bottom: 0.015
  20389. }
  20390. },
  20391. demiNaga: {
  20392. height: math.unit(6 + 8 / 12, "feet"),
  20393. weight: math.unit(300, "lb"),
  20394. name: "Demi Naga",
  20395. image: {
  20396. source: "./media/characters/tahajin/demi-naga.svg",
  20397. extra: 643 / 615,
  20398. bottom: 0.1
  20399. }
  20400. },
  20401. data: {
  20402. height: math.unit(5, "inches"),
  20403. weight: math.unit(0.1, "lb"),
  20404. name: "Data",
  20405. image: {
  20406. source: "./media/characters/tahajin/data.svg"
  20407. }
  20408. },
  20409. fluu: {
  20410. height: math.unit(5 + 7 / 12, "feet"),
  20411. weight: math.unit(140, "lb"),
  20412. name: "Fluu",
  20413. image: {
  20414. source: "./media/characters/tahajin/fluu.svg",
  20415. extra: 628 / 592,
  20416. bottom: 0.02
  20417. }
  20418. },
  20419. starWarrior: {
  20420. height: math.unit(4 + 5 / 12, "feet"),
  20421. weight: math.unit(50, "lb"),
  20422. name: "Star Warrior",
  20423. image: {
  20424. source: "./media/characters/tahajin/star-warrior.svg"
  20425. }
  20426. },
  20427. },
  20428. [
  20429. {
  20430. name: "Normal",
  20431. height: math.unit(25 + 6 / 12, "feet"),
  20432. default: true
  20433. },
  20434. ]
  20435. ))
  20436. characterMakers.push(() => makeCharacter(
  20437. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20438. {
  20439. front: {
  20440. height: math.unit(8, "feet"),
  20441. weight: math.unit(350, "lb"),
  20442. name: "Front",
  20443. image: {
  20444. source: "./media/characters/gabira/front.svg",
  20445. extra: 608 / 580,
  20446. bottom: 0.03
  20447. }
  20448. },
  20449. back: {
  20450. height: math.unit(8, "feet"),
  20451. weight: math.unit(350, "lb"),
  20452. name: "Back",
  20453. image: {
  20454. source: "./media/characters/gabira/back.svg",
  20455. extra: 608 / 580,
  20456. bottom: 0.03
  20457. }
  20458. },
  20459. },
  20460. [
  20461. {
  20462. name: "Normal",
  20463. height: math.unit(8, "feet"),
  20464. default: true
  20465. },
  20466. ]
  20467. ))
  20468. characterMakers.push(() => makeCharacter(
  20469. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20470. {
  20471. front: {
  20472. height: math.unit(5 + 3 / 12, "feet"),
  20473. weight: math.unit(137, "lb"),
  20474. name: "Front",
  20475. image: {
  20476. source: "./media/characters/sasha-katraine/front.svg",
  20477. bottom: 0.045
  20478. }
  20479. },
  20480. },
  20481. [
  20482. {
  20483. name: "Micro",
  20484. height: math.unit(5, "inches")
  20485. },
  20486. {
  20487. name: "Normal",
  20488. height: math.unit(5 + 3 / 12, "feet"),
  20489. default: true
  20490. },
  20491. ]
  20492. ))
  20493. characterMakers.push(() => makeCharacter(
  20494. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20495. {
  20496. side: {
  20497. height: math.unit(4, "inches"),
  20498. weight: math.unit(200, "grams"),
  20499. name: "Side",
  20500. image: {
  20501. source: "./media/characters/der/side.svg",
  20502. extra: 719 / 400,
  20503. bottom: 30.6 / 749.9187
  20504. }
  20505. },
  20506. },
  20507. [
  20508. {
  20509. name: "Micro",
  20510. height: math.unit(4, "inches"),
  20511. default: true
  20512. },
  20513. ]
  20514. ))
  20515. characterMakers.push(() => makeCharacter(
  20516. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20517. {
  20518. side: {
  20519. height: math.unit(30, "meters"),
  20520. weight: math.unit(700, "tonnes"),
  20521. name: "Side",
  20522. image: {
  20523. source: "./media/characters/fixerdragon/side.svg",
  20524. extra: (1293.0514 - 116.03) / 1106.86,
  20525. bottom: 116.03 / 1293.0514
  20526. }
  20527. },
  20528. },
  20529. [
  20530. {
  20531. name: "Planck",
  20532. height: math.unit(1.6e-35, "meters")
  20533. },
  20534. {
  20535. name: "Micro",
  20536. height: math.unit(0.4, "meters")
  20537. },
  20538. {
  20539. name: "Normal",
  20540. height: math.unit(30, "meters"),
  20541. default: true
  20542. },
  20543. {
  20544. name: "Megamacro",
  20545. height: math.unit(1.2, "megameters")
  20546. },
  20547. {
  20548. name: "Teramacro",
  20549. height: math.unit(130, "terameters")
  20550. },
  20551. {
  20552. name: "Yottamacro",
  20553. height: math.unit(6200, "yottameters")
  20554. },
  20555. ]
  20556. ));
  20557. characterMakers.push(() => makeCharacter(
  20558. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20559. {
  20560. front: {
  20561. height: math.unit(8, "feet"),
  20562. weight: math.unit(250, "lb"),
  20563. name: "Front",
  20564. image: {
  20565. source: "./media/characters/kite/front.svg",
  20566. extra: 2796 / 2659,
  20567. bottom: 0.002
  20568. }
  20569. },
  20570. },
  20571. [
  20572. {
  20573. name: "Normal",
  20574. height: math.unit(8, "feet"),
  20575. default: true
  20576. },
  20577. {
  20578. name: "Macro",
  20579. height: math.unit(360, "feet")
  20580. },
  20581. {
  20582. name: "Megamacro",
  20583. height: math.unit(1500, "feet")
  20584. },
  20585. ]
  20586. ))
  20587. characterMakers.push(() => makeCharacter(
  20588. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20589. {
  20590. front: {
  20591. height: math.unit(5 + 10 / 12, "feet"),
  20592. weight: math.unit(150, "lb"),
  20593. name: "Front",
  20594. image: {
  20595. source: "./media/characters/poojawa-vynar/front.svg",
  20596. extra: (1506.1547 - 55) / 1356.6,
  20597. bottom: 55 / 1506.1547
  20598. }
  20599. },
  20600. frontTailless: {
  20601. height: math.unit(5 + 10 / 12, "feet"),
  20602. weight: math.unit(150, "lb"),
  20603. name: "Front (Tailless)",
  20604. image: {
  20605. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20606. extra: (1506.1547 - 55) / 1356.6,
  20607. bottom: 55 / 1506.1547
  20608. }
  20609. },
  20610. },
  20611. [
  20612. {
  20613. name: "Normal",
  20614. height: math.unit(5 + 10 / 12, "feet"),
  20615. default: true
  20616. },
  20617. ]
  20618. ))
  20619. characterMakers.push(() => makeCharacter(
  20620. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20621. {
  20622. front: {
  20623. height: math.unit(293, "meters"),
  20624. weight: math.unit(70400, "tons"),
  20625. name: "Front",
  20626. image: {
  20627. source: "./media/characters/violette/front.svg",
  20628. extra: 1227 / 1180,
  20629. bottom: 0.005
  20630. }
  20631. },
  20632. back: {
  20633. height: math.unit(293, "meters"),
  20634. weight: math.unit(70400, "tons"),
  20635. name: "Back",
  20636. image: {
  20637. source: "./media/characters/violette/back.svg",
  20638. extra: 1227 / 1180,
  20639. bottom: 0.005
  20640. }
  20641. },
  20642. },
  20643. [
  20644. {
  20645. name: "Macro",
  20646. height: math.unit(293, "meters"),
  20647. default: true
  20648. },
  20649. ]
  20650. ))
  20651. characterMakers.push(() => makeCharacter(
  20652. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20653. {
  20654. front: {
  20655. height: math.unit(1050, "feet"),
  20656. weight: math.unit(200000, "tons"),
  20657. name: "Front",
  20658. image: {
  20659. source: "./media/characters/alessandra/front.svg",
  20660. extra: 960 / 912,
  20661. bottom: 0.06
  20662. }
  20663. },
  20664. },
  20665. [
  20666. {
  20667. name: "Macro",
  20668. height: math.unit(1050, "feet")
  20669. },
  20670. {
  20671. name: "Macro+",
  20672. height: math.unit(900, "meters"),
  20673. default: true
  20674. },
  20675. ]
  20676. ))
  20677. characterMakers.push(() => makeCharacter(
  20678. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20679. {
  20680. front: {
  20681. height: math.unit(5, "feet"),
  20682. weight: math.unit(187, "lb"),
  20683. name: "Front",
  20684. image: {
  20685. source: "./media/characters/person/front.svg",
  20686. extra: 3087 / 2945,
  20687. bottom: 91 / 3181
  20688. }
  20689. },
  20690. },
  20691. [
  20692. {
  20693. name: "Micro",
  20694. height: math.unit(3, "inches")
  20695. },
  20696. {
  20697. name: "Normal",
  20698. height: math.unit(5, "feet"),
  20699. default: true
  20700. },
  20701. {
  20702. name: "Macro",
  20703. height: math.unit(90, "feet")
  20704. },
  20705. {
  20706. name: "Max Size",
  20707. height: math.unit(280, "feet")
  20708. },
  20709. ]
  20710. ))
  20711. characterMakers.push(() => makeCharacter(
  20712. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20713. {
  20714. front: {
  20715. height: math.unit(4.5, "meters"),
  20716. weight: math.unit(3200, "lb"),
  20717. name: "Front",
  20718. image: {
  20719. source: "./media/characters/ty/front.svg",
  20720. extra: 1038 / 960,
  20721. bottom: 31.156 / 1068
  20722. }
  20723. },
  20724. back: {
  20725. height: math.unit(4.5, "meters"),
  20726. weight: math.unit(3200, "lb"),
  20727. name: "Back",
  20728. image: {
  20729. source: "./media/characters/ty/back.svg",
  20730. extra: 1044 / 966,
  20731. bottom: 7.48 / 1049
  20732. }
  20733. },
  20734. },
  20735. [
  20736. {
  20737. name: "Normal",
  20738. height: math.unit(4.5, "meters"),
  20739. default: true
  20740. },
  20741. ]
  20742. ))
  20743. characterMakers.push(() => makeCharacter(
  20744. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20745. {
  20746. front: {
  20747. height: math.unit(5 + 4 / 12, "feet"),
  20748. weight: math.unit(115, "lb"),
  20749. name: "Front",
  20750. image: {
  20751. source: "./media/characters/rocky/front.svg",
  20752. extra: 1012 / 975,
  20753. bottom: 54 / 1066
  20754. }
  20755. },
  20756. },
  20757. [
  20758. {
  20759. name: "Normal",
  20760. height: math.unit(5 + 4 / 12, "feet"),
  20761. default: true
  20762. },
  20763. ]
  20764. ))
  20765. characterMakers.push(() => makeCharacter(
  20766. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20767. {
  20768. upright: {
  20769. height: math.unit(6, "meters"),
  20770. weight: math.unit(4000, "kg"),
  20771. name: "Upright",
  20772. image: {
  20773. source: "./media/characters/ruin/upright.svg",
  20774. extra: 668 / 661,
  20775. bottom: 42 / 799.8396
  20776. }
  20777. },
  20778. },
  20779. [
  20780. {
  20781. name: "Normal",
  20782. height: math.unit(6, "meters"),
  20783. default: true
  20784. },
  20785. ]
  20786. ))
  20787. characterMakers.push(() => makeCharacter(
  20788. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20789. {
  20790. front: {
  20791. height: math.unit(5, "feet"),
  20792. weight: math.unit(106, "lb"),
  20793. name: "Front",
  20794. image: {
  20795. source: "./media/characters/robin/front.svg",
  20796. extra: 862 / 799,
  20797. bottom: 42.4 / 914.8856
  20798. }
  20799. },
  20800. },
  20801. [
  20802. {
  20803. name: "Normal",
  20804. height: math.unit(5, "feet"),
  20805. default: true
  20806. },
  20807. ]
  20808. ))
  20809. characterMakers.push(() => makeCharacter(
  20810. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20811. {
  20812. side: {
  20813. height: math.unit(3, "feet"),
  20814. weight: math.unit(225, "lb"),
  20815. name: "Side",
  20816. image: {
  20817. source: "./media/characters/saian/side.svg",
  20818. extra: 566 / 356,
  20819. bottom: 79.7 / 643
  20820. }
  20821. },
  20822. maw: {
  20823. height: math.unit(2.85, "feet"),
  20824. name: "Maw",
  20825. image: {
  20826. source: "./media/characters/saian/maw.svg"
  20827. }
  20828. },
  20829. },
  20830. [
  20831. {
  20832. name: "Normal",
  20833. height: math.unit(3, "feet"),
  20834. default: true
  20835. },
  20836. ]
  20837. ))
  20838. characterMakers.push(() => makeCharacter(
  20839. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20840. {
  20841. side: {
  20842. height: math.unit(8, "feet"),
  20843. weight: math.unit(300, "lb"),
  20844. name: "Side",
  20845. image: {
  20846. source: "./media/characters/equus-silvermane/side.svg",
  20847. extra: 2176 / 2050,
  20848. bottom: 65.7 / 2245
  20849. }
  20850. },
  20851. front: {
  20852. height: math.unit(8, "feet"),
  20853. weight: math.unit(300, "lb"),
  20854. name: "Front",
  20855. image: {
  20856. source: "./media/characters/equus-silvermane/front.svg",
  20857. extra: 4633 / 4400,
  20858. bottom: 71.3 / 4706.915
  20859. }
  20860. },
  20861. sideStepping: {
  20862. height: math.unit(8, "feet"),
  20863. weight: math.unit(300, "lb"),
  20864. name: "Side (Stepping)",
  20865. image: {
  20866. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20867. extra: 1968 / 1860,
  20868. bottom: 16.4 / 1989
  20869. }
  20870. },
  20871. },
  20872. [
  20873. {
  20874. name: "Normal",
  20875. height: math.unit(8, "feet")
  20876. },
  20877. {
  20878. name: "Minimacro",
  20879. height: math.unit(75, "feet"),
  20880. default: true
  20881. },
  20882. {
  20883. name: "Macro",
  20884. height: math.unit(150, "feet")
  20885. },
  20886. {
  20887. name: "Macro+",
  20888. height: math.unit(1000, "feet")
  20889. },
  20890. {
  20891. name: "Megamacro",
  20892. height: math.unit(1, "mile")
  20893. },
  20894. ]
  20895. ))
  20896. characterMakers.push(() => makeCharacter(
  20897. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20898. {
  20899. side: {
  20900. height: math.unit(20, "feet"),
  20901. weight: math.unit(30000, "kg"),
  20902. name: "Side",
  20903. image: {
  20904. source: "./media/characters/windar/side.svg",
  20905. extra: 1491 / 1248,
  20906. bottom: 82.56 / 1568
  20907. }
  20908. },
  20909. },
  20910. [
  20911. {
  20912. name: "Normal",
  20913. height: math.unit(20, "feet"),
  20914. default: true
  20915. },
  20916. ]
  20917. ))
  20918. characterMakers.push(() => makeCharacter(
  20919. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20920. {
  20921. side: {
  20922. height: math.unit(15.66, "feet"),
  20923. weight: math.unit(150, "lb"),
  20924. name: "Side",
  20925. image: {
  20926. source: "./media/characters/melody/side.svg",
  20927. extra: 1097 / 944,
  20928. bottom: 11.8 / 1109
  20929. }
  20930. },
  20931. sideOutfit: {
  20932. height: math.unit(15.66, "feet"),
  20933. weight: math.unit(150, "lb"),
  20934. name: "Side (Outfit)",
  20935. image: {
  20936. source: "./media/characters/melody/side-outfit.svg",
  20937. extra: 1097 / 944,
  20938. bottom: 11.8 / 1109
  20939. }
  20940. },
  20941. },
  20942. [
  20943. {
  20944. name: "Normal",
  20945. height: math.unit(15.66, "feet"),
  20946. default: true
  20947. },
  20948. ]
  20949. ))
  20950. characterMakers.push(() => makeCharacter(
  20951. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20952. {
  20953. front: {
  20954. height: math.unit(8, "feet"),
  20955. weight: math.unit(325, "lb"),
  20956. name: "Front",
  20957. image: {
  20958. source: "./media/characters/windera/front.svg",
  20959. extra: 3180 / 2845,
  20960. bottom: 178 / 3365
  20961. }
  20962. },
  20963. },
  20964. [
  20965. {
  20966. name: "Normal",
  20967. height: math.unit(8, "feet"),
  20968. default: true
  20969. },
  20970. ]
  20971. ))
  20972. characterMakers.push(() => makeCharacter(
  20973. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20974. {
  20975. front: {
  20976. height: math.unit(28.75, "feet"),
  20977. weight: math.unit(2000, "kg"),
  20978. name: "Front",
  20979. image: {
  20980. source: "./media/characters/sonear/front.svg",
  20981. extra: 1041.1 / 964.9,
  20982. bottom: 53.7 / 1096.6
  20983. }
  20984. },
  20985. },
  20986. [
  20987. {
  20988. name: "Normal",
  20989. height: math.unit(28.75, "feet"),
  20990. default: true
  20991. },
  20992. ]
  20993. ))
  20994. characterMakers.push(() => makeCharacter(
  20995. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20996. {
  20997. side: {
  20998. height: math.unit(25.5, "feet"),
  20999. weight: math.unit(23000, "kg"),
  21000. name: "Side",
  21001. image: {
  21002. source: "./media/characters/kanara/side.svg"
  21003. }
  21004. },
  21005. },
  21006. [
  21007. {
  21008. name: "Normal",
  21009. height: math.unit(25.5, "feet"),
  21010. default: true
  21011. },
  21012. ]
  21013. ))
  21014. characterMakers.push(() => makeCharacter(
  21015. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21016. {
  21017. side: {
  21018. height: math.unit(10, "feet"),
  21019. weight: math.unit(1000, "kg"),
  21020. name: "Side",
  21021. image: {
  21022. source: "./media/characters/ereus/side.svg",
  21023. extra: 1157 / 959,
  21024. bottom: 153 / 1312.5
  21025. }
  21026. },
  21027. },
  21028. [
  21029. {
  21030. name: "Normal",
  21031. height: math.unit(10, "feet"),
  21032. default: true
  21033. },
  21034. ]
  21035. ))
  21036. characterMakers.push(() => makeCharacter(
  21037. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21038. {
  21039. side: {
  21040. height: math.unit(4.5, "feet"),
  21041. weight: math.unit(500, "lb"),
  21042. name: "Side",
  21043. image: {
  21044. source: "./media/characters/e-ter/side.svg",
  21045. extra: 1550 / 1248,
  21046. bottom: 146 / 1694
  21047. }
  21048. },
  21049. },
  21050. [
  21051. {
  21052. name: "Normal",
  21053. height: math.unit(4.5, "feet"),
  21054. default: true
  21055. },
  21056. ]
  21057. ))
  21058. characterMakers.push(() => makeCharacter(
  21059. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21060. {
  21061. side: {
  21062. height: math.unit(9.7, "feet"),
  21063. weight: math.unit(4000, "kg"),
  21064. name: "Side",
  21065. image: {
  21066. source: "./media/characters/yamie/side.svg"
  21067. }
  21068. },
  21069. },
  21070. [
  21071. {
  21072. name: "Normal",
  21073. height: math.unit(9.7, "feet"),
  21074. default: true
  21075. },
  21076. ]
  21077. ))
  21078. characterMakers.push(() => makeCharacter(
  21079. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21080. {
  21081. front: {
  21082. height: math.unit(50, "feet"),
  21083. weight: math.unit(50000, "kg"),
  21084. name: "Front",
  21085. image: {
  21086. source: "./media/characters/anders/front.svg",
  21087. extra: 570 / 539,
  21088. bottom: 14.7 / 586.7
  21089. }
  21090. },
  21091. },
  21092. [
  21093. {
  21094. name: "Large",
  21095. height: math.unit(50, "feet")
  21096. },
  21097. {
  21098. name: "Macro",
  21099. height: math.unit(2000, "feet"),
  21100. default: true
  21101. },
  21102. {
  21103. name: "Megamacro",
  21104. height: math.unit(12, "miles")
  21105. },
  21106. ]
  21107. ))
  21108. characterMakers.push(() => makeCharacter(
  21109. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21110. {
  21111. front: {
  21112. height: math.unit(7 + 2 / 12, "feet"),
  21113. weight: math.unit(300, "lb"),
  21114. name: "Front",
  21115. image: {
  21116. source: "./media/characters/reban/front.svg",
  21117. extra: 516 / 487,
  21118. bottom: 42.82 / 558.356
  21119. }
  21120. },
  21121. dick: {
  21122. height: math.unit(7 / 5, "feet"),
  21123. name: "Dick",
  21124. image: {
  21125. source: "./media/characters/reban/dick.svg"
  21126. }
  21127. },
  21128. },
  21129. [
  21130. {
  21131. name: "Natural Height",
  21132. height: math.unit(7 + 2 / 12, "feet")
  21133. },
  21134. {
  21135. name: "Macro",
  21136. height: math.unit(500, "feet"),
  21137. default: true
  21138. },
  21139. {
  21140. name: "Canon Height",
  21141. height: math.unit(50, "AU")
  21142. },
  21143. ]
  21144. ))
  21145. characterMakers.push(() => makeCharacter(
  21146. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21147. {
  21148. front: {
  21149. height: math.unit(6, "feet"),
  21150. weight: math.unit(150, "lb"),
  21151. name: "Front",
  21152. image: {
  21153. source: "./media/characters/terrance-keayes/front.svg",
  21154. extra: 1.005,
  21155. bottom: 151 / 1615
  21156. }
  21157. },
  21158. side: {
  21159. height: math.unit(6, "feet"),
  21160. weight: math.unit(150, "lb"),
  21161. name: "Side",
  21162. image: {
  21163. source: "./media/characters/terrance-keayes/side.svg",
  21164. extra: 1.005,
  21165. bottom: 129.4 / 1544
  21166. }
  21167. },
  21168. back: {
  21169. height: math.unit(6, "feet"),
  21170. weight: math.unit(150, "lb"),
  21171. name: "Back",
  21172. image: {
  21173. source: "./media/characters/terrance-keayes/back.svg",
  21174. extra: 1.005,
  21175. bottom: 58.4 / 1557.3
  21176. }
  21177. },
  21178. dick: {
  21179. height: math.unit(6 * 0.208, "feet"),
  21180. name: "Dick",
  21181. image: {
  21182. source: "./media/characters/terrance-keayes/dick.svg"
  21183. }
  21184. },
  21185. },
  21186. [
  21187. {
  21188. name: "Canon Height",
  21189. height: math.unit(35, "miles"),
  21190. default: true
  21191. },
  21192. ]
  21193. ))
  21194. characterMakers.push(() => makeCharacter(
  21195. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21196. {
  21197. front: {
  21198. height: math.unit(6, "feet"),
  21199. weight: math.unit(150, "lb"),
  21200. name: "Front",
  21201. image: {
  21202. source: "./media/characters/ofelia/front.svg",
  21203. extra: 546 / 541,
  21204. bottom: 39 / 583
  21205. }
  21206. },
  21207. back: {
  21208. height: math.unit(6, "feet"),
  21209. weight: math.unit(150, "lb"),
  21210. name: "Back",
  21211. image: {
  21212. source: "./media/characters/ofelia/back.svg",
  21213. extra: 564 / 559.5,
  21214. bottom: 8.69 / 573.02
  21215. }
  21216. },
  21217. maw: {
  21218. height: math.unit(1, "feet"),
  21219. name: "Maw",
  21220. image: {
  21221. source: "./media/characters/ofelia/maw.svg"
  21222. }
  21223. },
  21224. foot: {
  21225. height: math.unit(1.949, "feet"),
  21226. name: "Foot",
  21227. image: {
  21228. source: "./media/characters/ofelia/foot.svg"
  21229. }
  21230. },
  21231. },
  21232. [
  21233. {
  21234. name: "Canon Height",
  21235. height: math.unit(2000, "miles"),
  21236. default: true
  21237. },
  21238. ]
  21239. ))
  21240. characterMakers.push(() => makeCharacter(
  21241. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21242. {
  21243. front: {
  21244. height: math.unit(6, "feet"),
  21245. weight: math.unit(150, "lb"),
  21246. name: "Front",
  21247. image: {
  21248. source: "./media/characters/samuel/front.svg",
  21249. extra: 265 / 258,
  21250. bottom: 2 / 266.1566
  21251. }
  21252. },
  21253. },
  21254. [
  21255. {
  21256. name: "Macro",
  21257. height: math.unit(100, "feet"),
  21258. default: true
  21259. },
  21260. {
  21261. name: "Full Size",
  21262. height: math.unit(1000, "miles")
  21263. },
  21264. ]
  21265. ))
  21266. characterMakers.push(() => makeCharacter(
  21267. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21268. {
  21269. front: {
  21270. height: math.unit(6, "feet"),
  21271. weight: math.unit(300, "lb"),
  21272. name: "Front",
  21273. image: {
  21274. source: "./media/characters/beishir-kiel/front.svg",
  21275. extra: 569 / 547,
  21276. bottom: 41.9 / 609
  21277. }
  21278. },
  21279. maw: {
  21280. height: math.unit(6 * 0.202, "feet"),
  21281. name: "Maw",
  21282. image: {
  21283. source: "./media/characters/beishir-kiel/maw.svg"
  21284. }
  21285. },
  21286. },
  21287. [
  21288. {
  21289. name: "Macro",
  21290. height: math.unit(300, "feet"),
  21291. default: true
  21292. },
  21293. ]
  21294. ))
  21295. characterMakers.push(() => makeCharacter(
  21296. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21297. {
  21298. front: {
  21299. height: math.unit(5 + 8 / 12, "feet"),
  21300. weight: math.unit(120, "lb"),
  21301. name: "Front",
  21302. image: {
  21303. source: "./media/characters/logan-grey/front.svg",
  21304. extra: 2539 / 2393,
  21305. bottom: 97.6 / 2636.37
  21306. }
  21307. },
  21308. frontAlt: {
  21309. height: math.unit(5 + 8 / 12, "feet"),
  21310. weight: math.unit(120, "lb"),
  21311. name: "Front (Alt)",
  21312. image: {
  21313. source: "./media/characters/logan-grey/front-alt.svg",
  21314. extra: 958 / 893,
  21315. bottom: 15 / 970.768
  21316. }
  21317. },
  21318. back: {
  21319. height: math.unit(5 + 8 / 12, "feet"),
  21320. weight: math.unit(120, "lb"),
  21321. name: "Back",
  21322. image: {
  21323. source: "./media/characters/logan-grey/back.svg",
  21324. extra: 958 / 893,
  21325. bottom: 2.1881 / 970.9788
  21326. }
  21327. },
  21328. dick: {
  21329. height: math.unit(1.437, "feet"),
  21330. name: "Dick",
  21331. image: {
  21332. source: "./media/characters/logan-grey/dick.svg"
  21333. }
  21334. },
  21335. },
  21336. [
  21337. {
  21338. name: "Normal",
  21339. height: math.unit(5 + 8 / 12, "feet")
  21340. },
  21341. {
  21342. name: "The 500 Foot Femboy",
  21343. height: math.unit(500, "feet"),
  21344. default: true
  21345. },
  21346. {
  21347. name: "Megmacro",
  21348. height: math.unit(20, "miles")
  21349. },
  21350. ]
  21351. ))
  21352. characterMakers.push(() => makeCharacter(
  21353. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21354. {
  21355. front: {
  21356. height: math.unit(8 + 2 / 12, "feet"),
  21357. weight: math.unit(275, "lb"),
  21358. name: "Front",
  21359. image: {
  21360. source: "./media/characters/draganta/front.svg",
  21361. extra: 1177 / 1135,
  21362. bottom: 33.46 / 1212.1
  21363. }
  21364. },
  21365. },
  21366. [
  21367. {
  21368. name: "Normal",
  21369. height: math.unit(8 + 6 / 12, "feet"),
  21370. default: true
  21371. },
  21372. {
  21373. name: "Macro",
  21374. height: math.unit(150, "feet")
  21375. },
  21376. {
  21377. name: "Megamacro",
  21378. height: math.unit(1000, "miles")
  21379. },
  21380. ]
  21381. ))
  21382. characterMakers.push(() => makeCharacter(
  21383. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21384. {
  21385. front: {
  21386. height: math.unit(1.72, "m"),
  21387. weight: math.unit(80, "lb"),
  21388. name: "Front",
  21389. image: {
  21390. source: "./media/characters/voski/front.svg",
  21391. extra: 2076.22 / 2022.4,
  21392. bottom: 102.7 / 2177.3866
  21393. }
  21394. },
  21395. frontNsfw: {
  21396. height: math.unit(1.72, "m"),
  21397. weight: math.unit(80, "lb"),
  21398. name: "Front (NSFW)",
  21399. image: {
  21400. source: "./media/characters/voski/front-nsfw.svg",
  21401. extra: 2076.22 / 2022.4,
  21402. bottom: 102.7 / 2177.3866
  21403. }
  21404. },
  21405. back: {
  21406. height: math.unit(1.72, "m"),
  21407. weight: math.unit(80, "lb"),
  21408. name: "Back",
  21409. image: {
  21410. source: "./media/characters/voski/back.svg",
  21411. extra: 2104 / 2051,
  21412. bottom: 10.45 / 2113.63
  21413. }
  21414. },
  21415. },
  21416. [
  21417. {
  21418. name: "Normal",
  21419. height: math.unit(1.72, "m")
  21420. },
  21421. {
  21422. name: "Macro",
  21423. height: math.unit(55, "m"),
  21424. default: true
  21425. },
  21426. {
  21427. name: "Macro+",
  21428. height: math.unit(300, "m")
  21429. },
  21430. {
  21431. name: "Macro++",
  21432. height: math.unit(700, "m")
  21433. },
  21434. {
  21435. name: "Macro+++",
  21436. height: math.unit(4500, "m")
  21437. },
  21438. {
  21439. name: "Macro++++",
  21440. height: math.unit(45, "km")
  21441. },
  21442. {
  21443. name: "Macro+++++",
  21444. height: math.unit(1220, "km")
  21445. },
  21446. ]
  21447. ))
  21448. characterMakers.push(() => makeCharacter(
  21449. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21450. {
  21451. front: {
  21452. height: math.unit(2.3, "m"),
  21453. weight: math.unit(304, "kg"),
  21454. name: "Front",
  21455. image: {
  21456. source: "./media/characters/icowom-lee/front.svg",
  21457. extra: 985 / 955,
  21458. bottom: 25.4 / 1012
  21459. }
  21460. },
  21461. fronttentacles: {
  21462. height: math.unit(2.3, "m"),
  21463. weight: math.unit(304, "kg"),
  21464. name: "Front-tentacles",
  21465. image: {
  21466. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21467. extra: 985 / 955,
  21468. bottom: 25.4 / 1012
  21469. }
  21470. },
  21471. back: {
  21472. height: math.unit(2.3, "m"),
  21473. weight: math.unit(304, "kg"),
  21474. name: "Back",
  21475. image: {
  21476. source: "./media/characters/icowom-lee/back.svg",
  21477. extra: 975 / 954,
  21478. bottom: 9.5 / 985
  21479. }
  21480. },
  21481. backtentacles: {
  21482. height: math.unit(2.3, "m"),
  21483. weight: math.unit(304, "kg"),
  21484. name: "Back-tentacles",
  21485. image: {
  21486. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21487. extra: 975 / 954,
  21488. bottom: 9.5 / 985
  21489. }
  21490. },
  21491. frontDressed: {
  21492. height: math.unit(2.3, "m"),
  21493. weight: math.unit(304, "kg"),
  21494. name: "Front (Dressed)",
  21495. image: {
  21496. source: "./media/characters/icowom-lee/front-dressed.svg",
  21497. extra: 3076 / 2933,
  21498. bottom: 51.4 / 3125.1889
  21499. }
  21500. },
  21501. rump: {
  21502. height: math.unit(0.776, "meters"),
  21503. name: "Rump",
  21504. image: {
  21505. source: "./media/characters/icowom-lee/rump.svg"
  21506. }
  21507. },
  21508. genitals: {
  21509. height: math.unit(0.78, "meters"),
  21510. name: "Genitals",
  21511. image: {
  21512. source: "./media/characters/icowom-lee/genitals.svg"
  21513. }
  21514. },
  21515. },
  21516. [
  21517. {
  21518. name: "Normal",
  21519. height: math.unit(2.3, "meters"),
  21520. default: true
  21521. },
  21522. {
  21523. name: "Macro",
  21524. height: math.unit(94, "meters"),
  21525. default: true
  21526. },
  21527. ]
  21528. ))
  21529. characterMakers.push(() => makeCharacter(
  21530. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21531. {
  21532. front: {
  21533. height: math.unit(22, "meters"),
  21534. weight: math.unit(21000, "kg"),
  21535. name: "Front",
  21536. image: {
  21537. source: "./media/characters/shock-diamond/front.svg",
  21538. extra: 2204 / 2053,
  21539. bottom: 65 / 2239.47
  21540. }
  21541. },
  21542. frontNude: {
  21543. height: math.unit(22, "meters"),
  21544. weight: math.unit(21000, "kg"),
  21545. name: "Front (Nude)",
  21546. image: {
  21547. source: "./media/characters/shock-diamond/front-nude.svg",
  21548. extra: 2514 / 2285,
  21549. bottom: 13 / 2527.56
  21550. }
  21551. },
  21552. },
  21553. [
  21554. {
  21555. name: "Normal",
  21556. height: math.unit(3, "meters")
  21557. },
  21558. {
  21559. name: "Macro",
  21560. height: math.unit(22, "meters"),
  21561. default: true
  21562. },
  21563. ]
  21564. ))
  21565. characterMakers.push(() => makeCharacter(
  21566. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21567. {
  21568. front: {
  21569. height: math.unit(5 + 4 / 12, "feet"),
  21570. weight: math.unit(120, "lb"),
  21571. name: "Front",
  21572. image: {
  21573. source: "./media/characters/rory/front.svg",
  21574. extra: 589 / 556,
  21575. bottom: 45.7 / 635.76
  21576. }
  21577. },
  21578. frontNude: {
  21579. height: math.unit(5 + 4 / 12, "feet"),
  21580. weight: math.unit(120, "lb"),
  21581. name: "Front (Nude)",
  21582. image: {
  21583. source: "./media/characters/rory/front-nude.svg",
  21584. extra: 589 / 556,
  21585. bottom: 45.7 / 635.76
  21586. }
  21587. },
  21588. side: {
  21589. height: math.unit(5 + 4 / 12, "feet"),
  21590. weight: math.unit(120, "lb"),
  21591. name: "Side",
  21592. image: {
  21593. source: "./media/characters/rory/side.svg",
  21594. extra: 597 / 564,
  21595. bottom: 55 / 653
  21596. }
  21597. },
  21598. back: {
  21599. height: math.unit(5 + 4 / 12, "feet"),
  21600. weight: math.unit(120, "lb"),
  21601. name: "Back",
  21602. image: {
  21603. source: "./media/characters/rory/back.svg",
  21604. extra: 620 / 585,
  21605. bottom: 8.86 / 630.43
  21606. }
  21607. },
  21608. dick: {
  21609. height: math.unit(0.86, "feet"),
  21610. name: "Dick",
  21611. image: {
  21612. source: "./media/characters/rory/dick.svg"
  21613. }
  21614. },
  21615. },
  21616. [
  21617. {
  21618. name: "Normal",
  21619. height: math.unit(5 + 4 / 12, "feet"),
  21620. default: true
  21621. },
  21622. {
  21623. name: "Macro",
  21624. height: math.unit(100, "feet")
  21625. },
  21626. {
  21627. name: "Macro+",
  21628. height: math.unit(140, "feet")
  21629. },
  21630. {
  21631. name: "Macro++",
  21632. height: math.unit(300, "feet")
  21633. },
  21634. ]
  21635. ))
  21636. characterMakers.push(() => makeCharacter(
  21637. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21638. {
  21639. front: {
  21640. height: math.unit(5 + 9 / 12, "feet"),
  21641. weight: math.unit(190, "lb"),
  21642. name: "Front",
  21643. image: {
  21644. source: "./media/characters/sprisk/front.svg",
  21645. extra: 1225 / 1180,
  21646. bottom: 42.7 / 1266.4
  21647. }
  21648. },
  21649. frontNsfw: {
  21650. height: math.unit(5 + 9 / 12, "feet"),
  21651. weight: math.unit(190, "lb"),
  21652. name: "Front (NSFW)",
  21653. image: {
  21654. source: "./media/characters/sprisk/front-nsfw.svg",
  21655. extra: 1225 / 1180,
  21656. bottom: 42.7 / 1266.4
  21657. }
  21658. },
  21659. back: {
  21660. height: math.unit(5 + 9 / 12, "feet"),
  21661. weight: math.unit(190, "lb"),
  21662. name: "Back",
  21663. image: {
  21664. source: "./media/characters/sprisk/back.svg",
  21665. extra: 1247 / 1200,
  21666. bottom: 5.6 / 1253.04
  21667. }
  21668. },
  21669. },
  21670. [
  21671. {
  21672. name: "Tiny",
  21673. height: math.unit(2, "inches")
  21674. },
  21675. {
  21676. name: "Normal",
  21677. height: math.unit(5 + 9 / 12, "feet"),
  21678. default: true
  21679. },
  21680. {
  21681. name: "Mini Macro",
  21682. height: math.unit(18, "feet")
  21683. },
  21684. {
  21685. name: "Macro",
  21686. height: math.unit(100, "feet")
  21687. },
  21688. {
  21689. name: "MACRO",
  21690. height: math.unit(50, "miles")
  21691. },
  21692. {
  21693. name: "M A C R O",
  21694. height: math.unit(300, "miles")
  21695. },
  21696. ]
  21697. ))
  21698. characterMakers.push(() => makeCharacter(
  21699. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21700. {
  21701. side: {
  21702. height: math.unit(15.6, "meters"),
  21703. weight: math.unit(700000, "kg"),
  21704. name: "Side",
  21705. image: {
  21706. source: "./media/characters/bunsen/side.svg",
  21707. extra: 1644 / 358
  21708. }
  21709. },
  21710. foot: {
  21711. height: math.unit(1.611 * 1644 / 358, "meter"),
  21712. name: "Foot",
  21713. image: {
  21714. source: "./media/characters/bunsen/foot.svg"
  21715. }
  21716. },
  21717. },
  21718. [
  21719. {
  21720. name: "Small",
  21721. height: math.unit(10, "feet")
  21722. },
  21723. {
  21724. name: "Normal",
  21725. height: math.unit(15.6, "meters"),
  21726. default: true
  21727. },
  21728. ]
  21729. ))
  21730. characterMakers.push(() => makeCharacter(
  21731. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21732. {
  21733. front: {
  21734. height: math.unit(4 + 11 / 12, "feet"),
  21735. weight: math.unit(140, "lb"),
  21736. name: "Front",
  21737. image: {
  21738. source: "./media/characters/sesh/front.svg",
  21739. extra: 3420 / 3231,
  21740. bottom: 72 / 3949.5
  21741. }
  21742. },
  21743. },
  21744. [
  21745. {
  21746. name: "Normal",
  21747. height: math.unit(4 + 11 / 12, "feet")
  21748. },
  21749. {
  21750. name: "Grown",
  21751. height: math.unit(15, "feet"),
  21752. default: true
  21753. },
  21754. {
  21755. name: "Macro",
  21756. height: math.unit(1500, "feet")
  21757. },
  21758. {
  21759. name: "Megamacro",
  21760. height: math.unit(30, "miles")
  21761. },
  21762. {
  21763. name: "Continental",
  21764. height: math.unit(3000, "miles")
  21765. },
  21766. {
  21767. name: "Gravity Mass",
  21768. height: math.unit(300000, "miles")
  21769. },
  21770. {
  21771. name: "Planet Buster",
  21772. height: math.unit(30000000, "miles")
  21773. },
  21774. {
  21775. name: "Big",
  21776. height: math.unit(3000000000, "miles")
  21777. },
  21778. ]
  21779. ))
  21780. characterMakers.push(() => makeCharacter(
  21781. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21782. {
  21783. front: {
  21784. height: math.unit(9, "feet"),
  21785. weight: math.unit(350, "lb"),
  21786. name: "Front",
  21787. image: {
  21788. source: "./media/characters/pepper/front.svg",
  21789. extra: 1448 / 1312,
  21790. bottom: 9.4 / 1457.88
  21791. }
  21792. },
  21793. back: {
  21794. height: math.unit(9, "feet"),
  21795. weight: math.unit(350, "lb"),
  21796. name: "Back",
  21797. image: {
  21798. source: "./media/characters/pepper/back.svg",
  21799. extra: 1423 / 1300,
  21800. bottom: 4.6 / 1429
  21801. }
  21802. },
  21803. maw: {
  21804. height: math.unit(0.932, "feet"),
  21805. name: "Maw",
  21806. image: {
  21807. source: "./media/characters/pepper/maw.svg"
  21808. }
  21809. },
  21810. },
  21811. [
  21812. {
  21813. name: "Normal",
  21814. height: math.unit(9, "feet"),
  21815. default: true
  21816. },
  21817. ]
  21818. ))
  21819. characterMakers.push(() => makeCharacter(
  21820. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21821. {
  21822. front: {
  21823. height: math.unit(6, "feet"),
  21824. weight: math.unit(150, "lb"),
  21825. name: "Front",
  21826. image: {
  21827. source: "./media/characters/maelstrom/front.svg",
  21828. extra: 2100 / 1883,
  21829. bottom: 94 / 2196.7
  21830. }
  21831. },
  21832. },
  21833. [
  21834. {
  21835. name: "Less Kaiju",
  21836. height: math.unit(200, "feet")
  21837. },
  21838. {
  21839. name: "Kaiju",
  21840. height: math.unit(400, "feet"),
  21841. default: true
  21842. },
  21843. {
  21844. name: "Kaiju-er",
  21845. height: math.unit(600, "feet")
  21846. },
  21847. ]
  21848. ))
  21849. characterMakers.push(() => makeCharacter(
  21850. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21851. {
  21852. front: {
  21853. height: math.unit(6 + 5 / 12, "feet"),
  21854. weight: math.unit(180, "lb"),
  21855. name: "Front",
  21856. image: {
  21857. source: "./media/characters/lexir/front.svg",
  21858. extra: 180 / 172,
  21859. bottom: 12 / 192
  21860. }
  21861. },
  21862. back: {
  21863. height: math.unit(6 + 5 / 12, "feet"),
  21864. weight: math.unit(180, "lb"),
  21865. name: "Back",
  21866. image: {
  21867. source: "./media/characters/lexir/back.svg",
  21868. extra: 183.84 / 175.5,
  21869. bottom: 3.1 / 187
  21870. }
  21871. },
  21872. },
  21873. [
  21874. {
  21875. name: "Very Smal",
  21876. height: math.unit(1, "nm")
  21877. },
  21878. {
  21879. name: "Normal",
  21880. height: math.unit(6 + 5 / 12, "feet"),
  21881. default: true
  21882. },
  21883. {
  21884. name: "Macro",
  21885. height: math.unit(1, "mile")
  21886. },
  21887. {
  21888. name: "Megamacro",
  21889. height: math.unit(50, "miles")
  21890. },
  21891. ]
  21892. ))
  21893. characterMakers.push(() => makeCharacter(
  21894. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21895. {
  21896. front: {
  21897. height: math.unit(1.5, "meters"),
  21898. weight: math.unit(100, "lb"),
  21899. name: "Front",
  21900. image: {
  21901. source: "./media/characters/maksio/front.svg",
  21902. extra: 1549 / 1531,
  21903. bottom: 123.7 / 1674.5429
  21904. }
  21905. },
  21906. back: {
  21907. height: math.unit(1.5, "meters"),
  21908. weight: math.unit(100, "lb"),
  21909. name: "Back",
  21910. image: {
  21911. source: "./media/characters/maksio/back.svg",
  21912. extra: 1541 / 1509,
  21913. bottom: 97 / 1639
  21914. }
  21915. },
  21916. hand: {
  21917. height: math.unit(0.621, "feet"),
  21918. name: "Hand",
  21919. image: {
  21920. source: "./media/characters/maksio/hand.svg"
  21921. }
  21922. },
  21923. foot: {
  21924. height: math.unit(1.611, "feet"),
  21925. name: "Foot",
  21926. image: {
  21927. source: "./media/characters/maksio/foot.svg"
  21928. }
  21929. },
  21930. },
  21931. [
  21932. {
  21933. name: "Shrunken",
  21934. height: math.unit(10, "cm")
  21935. },
  21936. {
  21937. name: "Normal",
  21938. height: math.unit(150, "cm"),
  21939. default: true
  21940. },
  21941. ]
  21942. ))
  21943. characterMakers.push(() => makeCharacter(
  21944. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21945. {
  21946. front: {
  21947. height: math.unit(100, "feet"),
  21948. name: "Front",
  21949. image: {
  21950. source: "./media/characters/erza-bear/front.svg",
  21951. extra: 2449 / 2390,
  21952. bottom: 46 / 2494
  21953. }
  21954. },
  21955. back: {
  21956. height: math.unit(100, "feet"),
  21957. name: "Back",
  21958. image: {
  21959. source: "./media/characters/erza-bear/back.svg",
  21960. extra: 2489 / 2430,
  21961. bottom: 85.4 / 2480
  21962. }
  21963. },
  21964. tail: {
  21965. height: math.unit(42, "feet"),
  21966. name: "Tail",
  21967. image: {
  21968. source: "./media/characters/erza-bear/tail.svg"
  21969. }
  21970. },
  21971. tongue: {
  21972. height: math.unit(8, "feet"),
  21973. name: "Tongue",
  21974. image: {
  21975. source: "./media/characters/erza-bear/tongue.svg"
  21976. }
  21977. },
  21978. dick: {
  21979. height: math.unit(10.5, "feet"),
  21980. name: "Dick",
  21981. image: {
  21982. source: "./media/characters/erza-bear/dick.svg"
  21983. }
  21984. },
  21985. dickVertical: {
  21986. height: math.unit(16.9, "feet"),
  21987. name: "Dick (Vertical)",
  21988. image: {
  21989. source: "./media/characters/erza-bear/dick-vertical.svg"
  21990. }
  21991. },
  21992. },
  21993. [
  21994. {
  21995. name: "Macro",
  21996. height: math.unit(100, "feet"),
  21997. default: true
  21998. },
  21999. ]
  22000. ))
  22001. characterMakers.push(() => makeCharacter(
  22002. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22003. {
  22004. front: {
  22005. height: math.unit(172, "cm"),
  22006. weight: math.unit(73, "kg"),
  22007. name: "Front",
  22008. image: {
  22009. source: "./media/characters/violet-flor/front.svg",
  22010. extra: 1530 / 1442,
  22011. bottom: 61.9 / 1588.8
  22012. }
  22013. },
  22014. back: {
  22015. height: math.unit(180, "cm"),
  22016. weight: math.unit(73, "kg"),
  22017. name: "Back",
  22018. image: {
  22019. source: "./media/characters/violet-flor/back.svg",
  22020. extra: 1692 / 1630,
  22021. bottom: 20 / 1712
  22022. }
  22023. },
  22024. },
  22025. [
  22026. {
  22027. name: "Normal",
  22028. height: math.unit(172, "cm"),
  22029. default: true
  22030. },
  22031. ]
  22032. ))
  22033. characterMakers.push(() => makeCharacter(
  22034. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22035. {
  22036. front: {
  22037. height: math.unit(6, "feet"),
  22038. weight: math.unit(220, "lb"),
  22039. name: "Front",
  22040. image: {
  22041. source: "./media/characters/lynn-rhea/front.svg",
  22042. extra: 310 / 273
  22043. }
  22044. },
  22045. back: {
  22046. height: math.unit(6, "feet"),
  22047. weight: math.unit(220, "lb"),
  22048. name: "Back",
  22049. image: {
  22050. source: "./media/characters/lynn-rhea/back.svg",
  22051. extra: 310 / 273
  22052. }
  22053. },
  22054. dicks: {
  22055. height: math.unit(0.9, "feet"),
  22056. name: "Dicks",
  22057. image: {
  22058. source: "./media/characters/lynn-rhea/dicks.svg"
  22059. }
  22060. },
  22061. slit: {
  22062. height: math.unit(0.4, "feet"),
  22063. name: "Slit",
  22064. image: {
  22065. source: "./media/characters/lynn-rhea/slit.svg"
  22066. }
  22067. },
  22068. },
  22069. [
  22070. {
  22071. name: "Micro",
  22072. height: math.unit(1, "inch")
  22073. },
  22074. {
  22075. name: "Macro",
  22076. height: math.unit(60, "feet"),
  22077. default: true
  22078. },
  22079. {
  22080. name: "Megamacro",
  22081. height: math.unit(2, "miles")
  22082. },
  22083. {
  22084. name: "Gigamacro",
  22085. height: math.unit(3, "earths")
  22086. },
  22087. {
  22088. name: "Galactic",
  22089. height: math.unit(0.8, "galaxies")
  22090. },
  22091. ]
  22092. ))
  22093. characterMakers.push(() => makeCharacter(
  22094. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22095. {
  22096. front: {
  22097. height: math.unit(1600, "feet"),
  22098. weight: math.unit(85758785169, "kg"),
  22099. name: "Front",
  22100. image: {
  22101. source: "./media/characters/valathos/front.svg",
  22102. extra: 1451 / 1339
  22103. }
  22104. },
  22105. },
  22106. [
  22107. {
  22108. name: "Macro",
  22109. height: math.unit(1600, "feet"),
  22110. default: true
  22111. },
  22112. ]
  22113. ))
  22114. characterMakers.push(() => makeCharacter(
  22115. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22116. {
  22117. front: {
  22118. height: math.unit(7 + 5 / 12, "feet"),
  22119. weight: math.unit(300, "lb"),
  22120. name: "Front",
  22121. image: {
  22122. source: "./media/characters/azula/front.svg",
  22123. extra: 3208 / 2880,
  22124. bottom: 80.2 / 3277
  22125. }
  22126. },
  22127. back: {
  22128. height: math.unit(7 + 5 / 12, "feet"),
  22129. weight: math.unit(300, "lb"),
  22130. name: "Back",
  22131. image: {
  22132. source: "./media/characters/azula/back.svg",
  22133. extra: 3169 / 2822,
  22134. bottom: 150.6 / 3321
  22135. }
  22136. },
  22137. },
  22138. [
  22139. {
  22140. name: "Normal",
  22141. height: math.unit(7 + 5 / 12, "feet"),
  22142. default: true
  22143. },
  22144. {
  22145. name: "Big",
  22146. height: math.unit(20, "feet")
  22147. },
  22148. ]
  22149. ))
  22150. characterMakers.push(() => makeCharacter(
  22151. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22152. {
  22153. front: {
  22154. height: math.unit(5 + 1 / 12, "feet"),
  22155. weight: math.unit(110, "lb"),
  22156. name: "Front",
  22157. image: {
  22158. source: "./media/characters/rupert/front.svg",
  22159. extra: 1549 / 1495,
  22160. bottom: 54.2 / 1604.4
  22161. }
  22162. },
  22163. },
  22164. [
  22165. {
  22166. name: "Normal",
  22167. height: math.unit(5 + 1 / 12, "feet"),
  22168. default: true
  22169. },
  22170. ]
  22171. ))
  22172. characterMakers.push(() => makeCharacter(
  22173. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22174. {
  22175. front: {
  22176. height: math.unit(8 + 4 / 12, "feet"),
  22177. weight: math.unit(350, "lb"),
  22178. name: "Front",
  22179. image: {
  22180. source: "./media/characters/sheera-castellar/front.svg",
  22181. extra: 1957 / 1894,
  22182. bottom: 26.97 / 1975.017
  22183. }
  22184. },
  22185. side: {
  22186. height: math.unit(8 + 4 / 12, "feet"),
  22187. weight: math.unit(350, "lb"),
  22188. name: "Side",
  22189. image: {
  22190. source: "./media/characters/sheera-castellar/side.svg",
  22191. extra: 1957 / 1894
  22192. }
  22193. },
  22194. back: {
  22195. height: math.unit(8 + 4 / 12, "feet"),
  22196. weight: math.unit(350, "lb"),
  22197. name: "Back",
  22198. image: {
  22199. source: "./media/characters/sheera-castellar/back.svg",
  22200. extra: 1957 / 1894
  22201. }
  22202. },
  22203. angled: {
  22204. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22205. weight: math.unit(350, "lb"),
  22206. name: "Angled",
  22207. image: {
  22208. source: "./media/characters/sheera-castellar/angled.svg",
  22209. extra: 1807 / 1707,
  22210. bottom: 68 / 1875
  22211. }
  22212. },
  22213. genitals: {
  22214. height: math.unit(2.2, "feet"),
  22215. name: "Genitals",
  22216. image: {
  22217. source: "./media/characters/sheera-castellar/genitals.svg"
  22218. }
  22219. },
  22220. },
  22221. [
  22222. {
  22223. name: "Normal",
  22224. height: math.unit(8 + 4 / 12, "feet")
  22225. },
  22226. {
  22227. name: "Macro",
  22228. height: math.unit(150, "feet"),
  22229. default: true
  22230. },
  22231. {
  22232. name: "Macro+",
  22233. height: math.unit(800, "feet")
  22234. },
  22235. ]
  22236. ))
  22237. characterMakers.push(() => makeCharacter(
  22238. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22239. {
  22240. front: {
  22241. height: math.unit(6, "feet"),
  22242. weight: math.unit(150, "lb"),
  22243. name: "Front",
  22244. image: {
  22245. source: "./media/characters/jaipur/front.svg",
  22246. extra: 3860 / 3731,
  22247. bottom: 287 / 4140
  22248. }
  22249. },
  22250. back: {
  22251. height: math.unit(6, "feet"),
  22252. weight: math.unit(150, "lb"),
  22253. name: "Back",
  22254. image: {
  22255. source: "./media/characters/jaipur/back.svg",
  22256. extra: 4060 / 3930,
  22257. bottom: 151 / 4200
  22258. }
  22259. },
  22260. },
  22261. [
  22262. {
  22263. name: "Normal",
  22264. height: math.unit(1.85, "meters"),
  22265. default: true
  22266. },
  22267. {
  22268. name: "Macro",
  22269. height: math.unit(150, "meters")
  22270. },
  22271. {
  22272. name: "Macro+",
  22273. height: math.unit(0.5, "miles")
  22274. },
  22275. {
  22276. name: "Macro++",
  22277. height: math.unit(2.5, "miles")
  22278. },
  22279. {
  22280. name: "Macro+++",
  22281. height: math.unit(12, "miles")
  22282. },
  22283. {
  22284. name: "Macro++++",
  22285. height: math.unit(120, "miles")
  22286. },
  22287. {
  22288. name: "Macro+++++",
  22289. height: math.unit(1200, "miles")
  22290. },
  22291. ]
  22292. ))
  22293. characterMakers.push(() => makeCharacter(
  22294. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22295. {
  22296. front: {
  22297. height: math.unit(6, "feet"),
  22298. weight: math.unit(150, "lb"),
  22299. name: "Front",
  22300. image: {
  22301. source: "./media/characters/sheila-wolf/front.svg",
  22302. extra: 1931 / 1808,
  22303. bottom: 29.5 / 1960
  22304. }
  22305. },
  22306. dick: {
  22307. height: math.unit(1.464, "feet"),
  22308. name: "Dick",
  22309. image: {
  22310. source: "./media/characters/sheila-wolf/dick.svg"
  22311. }
  22312. },
  22313. muzzle: {
  22314. height: math.unit(0.513, "feet"),
  22315. name: "Muzzle",
  22316. image: {
  22317. source: "./media/characters/sheila-wolf/muzzle.svg"
  22318. }
  22319. },
  22320. },
  22321. [
  22322. {
  22323. name: "Macro",
  22324. height: math.unit(70, "feet"),
  22325. default: true
  22326. },
  22327. ]
  22328. ))
  22329. characterMakers.push(() => makeCharacter(
  22330. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22331. {
  22332. front: {
  22333. height: math.unit(32, "meters"),
  22334. weight: math.unit(300000, "kg"),
  22335. name: "Front",
  22336. image: {
  22337. source: "./media/characters/almor/front.svg",
  22338. extra: 1408 / 1322,
  22339. bottom: 94.6 / 1506.5
  22340. }
  22341. },
  22342. },
  22343. [
  22344. {
  22345. name: "Macro",
  22346. height: math.unit(32, "meters"),
  22347. default: true
  22348. },
  22349. ]
  22350. ))
  22351. characterMakers.push(() => makeCharacter(
  22352. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22353. {
  22354. front: {
  22355. height: math.unit(7, "feet"),
  22356. weight: math.unit(200, "lb"),
  22357. name: "Front",
  22358. image: {
  22359. source: "./media/characters/silver/front.svg",
  22360. extra: 472.1 / 450.5,
  22361. bottom: 26.5 / 499.424
  22362. }
  22363. },
  22364. },
  22365. [
  22366. {
  22367. name: "Normal",
  22368. height: math.unit(7, "feet"),
  22369. default: true
  22370. },
  22371. {
  22372. name: "Macro",
  22373. height: math.unit(800, "feet")
  22374. },
  22375. {
  22376. name: "Megamacro",
  22377. height: math.unit(250, "miles")
  22378. },
  22379. ]
  22380. ))
  22381. characterMakers.push(() => makeCharacter(
  22382. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22383. {
  22384. front: {
  22385. height: math.unit(6, "feet"),
  22386. weight: math.unit(150, "lb"),
  22387. name: "Front",
  22388. image: {
  22389. source: "./media/characters/pliskin/front.svg",
  22390. extra: 1469 / 1359,
  22391. bottom: 70 / 1540
  22392. }
  22393. },
  22394. },
  22395. [
  22396. {
  22397. name: "Micro",
  22398. height: math.unit(3, "inches")
  22399. },
  22400. {
  22401. name: "Normal",
  22402. height: math.unit(5 + 11 / 12, "feet"),
  22403. default: true
  22404. },
  22405. {
  22406. name: "Macro",
  22407. height: math.unit(120, "feet")
  22408. },
  22409. ]
  22410. ))
  22411. characterMakers.push(() => makeCharacter(
  22412. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22413. {
  22414. front: {
  22415. height: math.unit(6, "feet"),
  22416. weight: math.unit(150, "lb"),
  22417. name: "Front",
  22418. image: {
  22419. source: "./media/characters/sammy/front.svg",
  22420. extra: 1193 / 1089,
  22421. bottom: 30.5 / 1226
  22422. }
  22423. },
  22424. },
  22425. [
  22426. {
  22427. name: "Macro",
  22428. height: math.unit(1700, "feet"),
  22429. default: true
  22430. },
  22431. {
  22432. name: "Examacro",
  22433. height: math.unit(2.5e9, "lightyears")
  22434. },
  22435. ]
  22436. ))
  22437. characterMakers.push(() => makeCharacter(
  22438. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22439. {
  22440. front: {
  22441. height: math.unit(21, "meters"),
  22442. weight: math.unit(12, "tonnes"),
  22443. name: "Front",
  22444. image: {
  22445. source: "./media/characters/kuru/front.svg",
  22446. extra: 4301 / 3785,
  22447. bottom: 371.3 / 4691
  22448. }
  22449. },
  22450. },
  22451. [
  22452. {
  22453. name: "Macro",
  22454. height: math.unit(21, "meters"),
  22455. default: true
  22456. },
  22457. ]
  22458. ))
  22459. characterMakers.push(() => makeCharacter(
  22460. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22461. {
  22462. front: {
  22463. height: math.unit(23, "meters"),
  22464. weight: math.unit(12.2, "tonnes"),
  22465. name: "Front",
  22466. image: {
  22467. source: "./media/characters/rakka/front.svg",
  22468. extra: 4670 / 4169,
  22469. bottom: 301 / 4968.7
  22470. }
  22471. },
  22472. },
  22473. [
  22474. {
  22475. name: "Macro",
  22476. height: math.unit(23, "meters"),
  22477. default: true
  22478. },
  22479. ]
  22480. ))
  22481. characterMakers.push(() => makeCharacter(
  22482. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22483. {
  22484. front: {
  22485. height: math.unit(6, "feet"),
  22486. weight: math.unit(150, "lb"),
  22487. name: "Front",
  22488. image: {
  22489. source: "./media/characters/rhys-feline/front.svg",
  22490. extra: 2488 / 2308,
  22491. bottom: 35.67 / 2519.19
  22492. }
  22493. },
  22494. },
  22495. [
  22496. {
  22497. name: "Really Small",
  22498. height: math.unit(1, "nm")
  22499. },
  22500. {
  22501. name: "Micro",
  22502. height: math.unit(4, "inches")
  22503. },
  22504. {
  22505. name: "Normal",
  22506. height: math.unit(4 + 10 / 12, "feet"),
  22507. default: true
  22508. },
  22509. {
  22510. name: "Macro",
  22511. height: math.unit(100, "feet")
  22512. },
  22513. {
  22514. name: "Megamacto",
  22515. height: math.unit(50, "miles")
  22516. },
  22517. ]
  22518. ))
  22519. characterMakers.push(() => makeCharacter(
  22520. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22521. {
  22522. side: {
  22523. height: math.unit(30, "feet"),
  22524. weight: math.unit(35000, "kg"),
  22525. name: "Side",
  22526. image: {
  22527. source: "./media/characters/alydar/side.svg",
  22528. extra: 234 / 222,
  22529. bottom: 6.5 / 241
  22530. }
  22531. },
  22532. front: {
  22533. height: math.unit(30, "feet"),
  22534. weight: math.unit(35000, "kg"),
  22535. name: "Front",
  22536. image: {
  22537. source: "./media/characters/alydar/front.svg",
  22538. extra: 223.37 / 210.2,
  22539. bottom: 22.3 / 246.76
  22540. }
  22541. },
  22542. top: {
  22543. height: math.unit(64.54, "feet"),
  22544. weight: math.unit(35000, "kg"),
  22545. name: "Top",
  22546. image: {
  22547. source: "./media/characters/alydar/top.svg"
  22548. }
  22549. },
  22550. anthro: {
  22551. height: math.unit(30, "feet"),
  22552. weight: math.unit(9000, "kg"),
  22553. name: "Anthro",
  22554. image: {
  22555. source: "./media/characters/alydar/anthro.svg",
  22556. extra: 432 / 421,
  22557. bottom: 7.18 / 440
  22558. }
  22559. },
  22560. maw: {
  22561. height: math.unit(11.693, "feet"),
  22562. name: "Maw",
  22563. image: {
  22564. source: "./media/characters/alydar/maw.svg"
  22565. }
  22566. },
  22567. head: {
  22568. height: math.unit(11.693, "feet"),
  22569. name: "Head",
  22570. image: {
  22571. source: "./media/characters/alydar/head.svg"
  22572. }
  22573. },
  22574. headAlt: {
  22575. height: math.unit(12.861, "feet"),
  22576. name: "Head (Alt)",
  22577. image: {
  22578. source: "./media/characters/alydar/head-alt.svg"
  22579. }
  22580. },
  22581. wing: {
  22582. height: math.unit(20.712, "feet"),
  22583. name: "Wing",
  22584. image: {
  22585. source: "./media/characters/alydar/wing.svg"
  22586. }
  22587. },
  22588. wingFeather: {
  22589. height: math.unit(9.662, "feet"),
  22590. name: "Wing Feather",
  22591. image: {
  22592. source: "./media/characters/alydar/wing-feather.svg"
  22593. }
  22594. },
  22595. countourFeather: {
  22596. height: math.unit(4.154, "feet"),
  22597. name: "Contour Feather",
  22598. image: {
  22599. source: "./media/characters/alydar/contour-feather.svg"
  22600. }
  22601. },
  22602. },
  22603. [
  22604. {
  22605. name: "Diplomatic",
  22606. height: math.unit(13, "feet"),
  22607. default: true
  22608. },
  22609. {
  22610. name: "Small",
  22611. height: math.unit(30, "feet")
  22612. },
  22613. {
  22614. name: "Normal",
  22615. height: math.unit(95, "feet"),
  22616. default: true
  22617. },
  22618. {
  22619. name: "Large",
  22620. height: math.unit(285, "feet")
  22621. },
  22622. {
  22623. name: "Incomprehensible",
  22624. height: math.unit(450, "megameters")
  22625. },
  22626. ]
  22627. ))
  22628. characterMakers.push(() => makeCharacter(
  22629. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22630. {
  22631. side: {
  22632. height: math.unit(11, "feet"),
  22633. weight: math.unit(1750, "kg"),
  22634. name: "Side",
  22635. image: {
  22636. source: "./media/characters/selicia/side.svg",
  22637. extra: 440 / 396,
  22638. bottom: 24.8 / 465.979
  22639. }
  22640. },
  22641. maw: {
  22642. height: math.unit(4.665, "feet"),
  22643. name: "Maw",
  22644. image: {
  22645. source: "./media/characters/selicia/maw.svg"
  22646. }
  22647. },
  22648. },
  22649. [
  22650. {
  22651. name: "Normal",
  22652. height: math.unit(11, "feet"),
  22653. default: true
  22654. },
  22655. ]
  22656. ))
  22657. characterMakers.push(() => makeCharacter(
  22658. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22659. {
  22660. side: {
  22661. height: math.unit(2 + 6 / 12, "feet"),
  22662. weight: math.unit(30, "lb"),
  22663. name: "Side",
  22664. image: {
  22665. source: "./media/characters/layla/side.svg",
  22666. extra: 244 / 188,
  22667. bottom: 18.2 / 262.1
  22668. }
  22669. },
  22670. back: {
  22671. height: math.unit(2 + 6 / 12, "feet"),
  22672. weight: math.unit(30, "lb"),
  22673. name: "Back",
  22674. image: {
  22675. source: "./media/characters/layla/back.svg",
  22676. extra: 308 / 241.5,
  22677. bottom: 8.9 / 316.8
  22678. }
  22679. },
  22680. cumming: {
  22681. height: math.unit(2 + 6 / 12, "feet"),
  22682. weight: math.unit(30, "lb"),
  22683. name: "Cumming",
  22684. image: {
  22685. source: "./media/characters/layla/cumming.svg",
  22686. extra: 342 / 279,
  22687. bottom: 595 / 938
  22688. }
  22689. },
  22690. dickFlaccid: {
  22691. height: math.unit(2.595, "feet"),
  22692. name: "Flaccid Genitals",
  22693. image: {
  22694. source: "./media/characters/layla/dick-flaccid.svg"
  22695. }
  22696. },
  22697. dickErect: {
  22698. height: math.unit(2.359, "feet"),
  22699. name: "Erect Genitals",
  22700. image: {
  22701. source: "./media/characters/layla/dick-erect.svg"
  22702. }
  22703. },
  22704. },
  22705. [
  22706. {
  22707. name: "Micro",
  22708. height: math.unit(1, "inch")
  22709. },
  22710. {
  22711. name: "Small",
  22712. height: math.unit(1, "foot")
  22713. },
  22714. {
  22715. name: "Normal",
  22716. height: math.unit(2 + 6 / 12, "feet"),
  22717. default: true
  22718. },
  22719. {
  22720. name: "Macro",
  22721. height: math.unit(200, "feet")
  22722. },
  22723. {
  22724. name: "Megamacro",
  22725. height: math.unit(1000, "miles")
  22726. },
  22727. {
  22728. name: "Planetary",
  22729. height: math.unit(8000, "miles")
  22730. },
  22731. {
  22732. name: "True Layla",
  22733. height: math.unit(200000 * 7, "multiverses")
  22734. },
  22735. ]
  22736. ))
  22737. characterMakers.push(() => makeCharacter(
  22738. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22739. {
  22740. back: {
  22741. height: math.unit(10.5, "feet"),
  22742. weight: math.unit(800, "lb"),
  22743. name: "Back",
  22744. image: {
  22745. source: "./media/characters/knox/back.svg",
  22746. extra: 1486 / 1089,
  22747. bottom: 107 / 1601.4
  22748. }
  22749. },
  22750. side: {
  22751. height: math.unit(10.5, "feet"),
  22752. weight: math.unit(800, "lb"),
  22753. name: "Side",
  22754. image: {
  22755. source: "./media/characters/knox/side.svg",
  22756. extra: 244 / 218,
  22757. bottom: 14 / 260
  22758. }
  22759. },
  22760. },
  22761. [
  22762. {
  22763. name: "Compact",
  22764. height: math.unit(10.5, "feet"),
  22765. default: true
  22766. },
  22767. {
  22768. name: "Dynamax",
  22769. height: math.unit(210, "feet")
  22770. },
  22771. {
  22772. name: "Full Macro",
  22773. height: math.unit(850, "feet")
  22774. },
  22775. ]
  22776. ))
  22777. characterMakers.push(() => makeCharacter(
  22778. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22779. {
  22780. front: {
  22781. height: math.unit(6, "feet"),
  22782. weight: math.unit(152, "lb"),
  22783. name: "Front",
  22784. image: {
  22785. source: "./media/characters/shin-pikachu/front.svg",
  22786. extra: 1574 / 1480,
  22787. bottom: 53.3 / 1626
  22788. }
  22789. },
  22790. hand: {
  22791. height: math.unit(1.055, "feet"),
  22792. name: "Hand",
  22793. image: {
  22794. source: "./media/characters/shin-pikachu/hand.svg"
  22795. }
  22796. },
  22797. foot: {
  22798. height: math.unit(1.1, "feet"),
  22799. name: "Foot",
  22800. image: {
  22801. source: "./media/characters/shin-pikachu/foot.svg"
  22802. }
  22803. },
  22804. collar: {
  22805. height: math.unit(0.386, "feet"),
  22806. name: "Collar",
  22807. image: {
  22808. source: "./media/characters/shin-pikachu/collar.svg"
  22809. }
  22810. },
  22811. },
  22812. [
  22813. {
  22814. name: "Smallest",
  22815. height: math.unit(0.5, "inches")
  22816. },
  22817. {
  22818. name: "Micro",
  22819. height: math.unit(6, "inches")
  22820. },
  22821. {
  22822. name: "Normal",
  22823. height: math.unit(6, "feet"),
  22824. default: true
  22825. },
  22826. {
  22827. name: "Macro",
  22828. height: math.unit(150, "feet")
  22829. },
  22830. ]
  22831. ))
  22832. characterMakers.push(() => makeCharacter(
  22833. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22834. {
  22835. front: {
  22836. height: math.unit(28, "feet"),
  22837. weight: math.unit(10500, "lb"),
  22838. name: "Front",
  22839. image: {
  22840. source: "./media/characters/kayda/front.svg",
  22841. extra: 1536 / 1428,
  22842. bottom: 68.7 / 1603
  22843. }
  22844. },
  22845. back: {
  22846. height: math.unit(28, "feet"),
  22847. weight: math.unit(10500, "lb"),
  22848. name: "Back",
  22849. image: {
  22850. source: "./media/characters/kayda/back.svg",
  22851. extra: 1557 / 1464,
  22852. bottom: 39.5 / 1597.49
  22853. }
  22854. },
  22855. dick: {
  22856. height: math.unit(3.858, "feet"),
  22857. name: "Dick",
  22858. image: {
  22859. source: "./media/characters/kayda/dick.svg"
  22860. }
  22861. },
  22862. },
  22863. [
  22864. {
  22865. name: "Macro",
  22866. height: math.unit(28, "feet"),
  22867. default: true
  22868. },
  22869. ]
  22870. ))
  22871. characterMakers.push(() => makeCharacter(
  22872. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22873. {
  22874. front: {
  22875. height: math.unit(10 + 11 / 12, "feet"),
  22876. weight: math.unit(1400, "lb"),
  22877. name: "Front",
  22878. image: {
  22879. source: "./media/characters/brian/front.svg",
  22880. extra: 737 / 692,
  22881. bottom: 55.4 / 785
  22882. }
  22883. },
  22884. },
  22885. [
  22886. {
  22887. name: "Normal",
  22888. height: math.unit(10 + 11 / 12, "feet"),
  22889. default: true
  22890. },
  22891. ]
  22892. ))
  22893. characterMakers.push(() => makeCharacter(
  22894. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22895. {
  22896. front: {
  22897. height: math.unit(5 + 8 / 12, "feet"),
  22898. weight: math.unit(140, "lb"),
  22899. name: "Front",
  22900. image: {
  22901. source: "./media/characters/khemri/front.svg",
  22902. extra: 4780 / 4059,
  22903. bottom: 80.1 / 4859.25
  22904. }
  22905. },
  22906. },
  22907. [
  22908. {
  22909. name: "Micro",
  22910. height: math.unit(6, "inches")
  22911. },
  22912. {
  22913. name: "Normal",
  22914. height: math.unit(5 + 8 / 12, "feet"),
  22915. default: true
  22916. },
  22917. ]
  22918. ))
  22919. characterMakers.push(() => makeCharacter(
  22920. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22921. {
  22922. front: {
  22923. height: math.unit(13, "feet"),
  22924. weight: math.unit(1700, "lb"),
  22925. name: "Front",
  22926. image: {
  22927. source: "./media/characters/felix-braveheart/front.svg",
  22928. extra: 1222 / 1157,
  22929. bottom: 53.2 / 1280
  22930. }
  22931. },
  22932. back: {
  22933. height: math.unit(13, "feet"),
  22934. weight: math.unit(1700, "lb"),
  22935. name: "Back",
  22936. image: {
  22937. source: "./media/characters/felix-braveheart/back.svg",
  22938. extra: 1277 / 1203,
  22939. bottom: 50.2 / 1327
  22940. }
  22941. },
  22942. feral: {
  22943. height: math.unit(6, "feet"),
  22944. weight: math.unit(400, "lb"),
  22945. name: "Feral",
  22946. image: {
  22947. source: "./media/characters/felix-braveheart/feral.svg",
  22948. extra: 682 / 625,
  22949. bottom: 6.9 / 688
  22950. }
  22951. },
  22952. },
  22953. [
  22954. {
  22955. name: "Normal",
  22956. height: math.unit(13, "feet"),
  22957. default: true
  22958. },
  22959. ]
  22960. ))
  22961. characterMakers.push(() => makeCharacter(
  22962. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22963. {
  22964. side: {
  22965. height: math.unit(5 + 11 / 12, "feet"),
  22966. weight: math.unit(1400, "lb"),
  22967. name: "Side",
  22968. image: {
  22969. source: "./media/characters/shadow-blade/side.svg",
  22970. extra: 1726 / 1267,
  22971. bottom: 58.4 / 1785
  22972. }
  22973. },
  22974. },
  22975. [
  22976. {
  22977. name: "Normal",
  22978. height: math.unit(5 + 11 / 12, "feet"),
  22979. default: true
  22980. },
  22981. ]
  22982. ))
  22983. characterMakers.push(() => makeCharacter(
  22984. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22985. {
  22986. front: {
  22987. height: math.unit(1 + 6 / 12, "feet"),
  22988. weight: math.unit(25, "lb"),
  22989. name: "Front",
  22990. image: {
  22991. source: "./media/characters/karla-halldor/front.svg",
  22992. extra: 1459 / 1383,
  22993. bottom: 12 / 1472
  22994. }
  22995. },
  22996. },
  22997. [
  22998. {
  22999. name: "Normal",
  23000. height: math.unit(1 + 6 / 12, "feet"),
  23001. default: true
  23002. },
  23003. ]
  23004. ))
  23005. characterMakers.push(() => makeCharacter(
  23006. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23007. {
  23008. front: {
  23009. height: math.unit(6 + 2 / 12, "feet"),
  23010. weight: math.unit(160, "lb"),
  23011. name: "Front",
  23012. image: {
  23013. source: "./media/characters/ariam/front.svg",
  23014. extra: 714 / 617,
  23015. bottom: 23.4 / 737,
  23016. }
  23017. },
  23018. squatting: {
  23019. height: math.unit(4.1, "feet"),
  23020. weight: math.unit(160, "lb"),
  23021. name: "Squatting",
  23022. image: {
  23023. source: "./media/characters/ariam/squatting.svg",
  23024. extra: 2617 / 2112,
  23025. bottom: 61.2 / 2681,
  23026. }
  23027. },
  23028. },
  23029. [
  23030. {
  23031. name: "Normal",
  23032. height: math.unit(6 + 2 / 12, "feet"),
  23033. default: true
  23034. },
  23035. {
  23036. name: "Normal+",
  23037. height: math.unit(4, "meters")
  23038. },
  23039. {
  23040. name: "Macro",
  23041. height: math.unit(50, "meters")
  23042. },
  23043. {
  23044. name: "Macro+",
  23045. height: math.unit(100, "meters")
  23046. },
  23047. {
  23048. name: "Megamacro",
  23049. height: math.unit(20, "km")
  23050. },
  23051. ]
  23052. ))
  23053. characterMakers.push(() => makeCharacter(
  23054. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23055. {
  23056. front: {
  23057. height: math.unit(1.67, "meters"),
  23058. weight: math.unit(140, "lb"),
  23059. name: "Front",
  23060. image: {
  23061. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23062. extra: 438 / 410,
  23063. bottom: 0.75 / 439
  23064. }
  23065. },
  23066. },
  23067. [
  23068. {
  23069. name: "Shrunken",
  23070. height: math.unit(7.6, "cm")
  23071. },
  23072. {
  23073. name: "Human Scale",
  23074. height: math.unit(1.67, "meters")
  23075. },
  23076. {
  23077. name: "Wolxi Scale",
  23078. height: math.unit(36.7, "meters"),
  23079. default: true
  23080. },
  23081. ]
  23082. ))
  23083. characterMakers.push(() => makeCharacter(
  23084. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23085. {
  23086. front: {
  23087. height: math.unit(1.73, "meters"),
  23088. weight: math.unit(240, "lb"),
  23089. name: "Front",
  23090. image: {
  23091. source: "./media/characters/izue-two-mothers/front.svg",
  23092. extra: 469 / 437,
  23093. bottom: 1.24 / 470.6
  23094. }
  23095. },
  23096. },
  23097. [
  23098. {
  23099. name: "Shrunken",
  23100. height: math.unit(7.86, "cm")
  23101. },
  23102. {
  23103. name: "Human Scale",
  23104. height: math.unit(1.73, "meters")
  23105. },
  23106. {
  23107. name: "Wolxi Scale",
  23108. height: math.unit(38, "meters"),
  23109. default: true
  23110. },
  23111. ]
  23112. ))
  23113. characterMakers.push(() => makeCharacter(
  23114. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23115. {
  23116. front: {
  23117. height: math.unit(1.55, "meters"),
  23118. weight: math.unit(120, "lb"),
  23119. name: "Front",
  23120. image: {
  23121. source: "./media/characters/teeku-love-shack/front.svg",
  23122. extra: 387 / 362,
  23123. bottom: 1.51 / 388
  23124. }
  23125. },
  23126. },
  23127. [
  23128. {
  23129. name: "Shrunken",
  23130. height: math.unit(7, "cm")
  23131. },
  23132. {
  23133. name: "Human Scale",
  23134. height: math.unit(1.55, "meters")
  23135. },
  23136. {
  23137. name: "Wolxi Scale",
  23138. height: math.unit(34.1, "meters"),
  23139. default: true
  23140. },
  23141. ]
  23142. ))
  23143. characterMakers.push(() => makeCharacter(
  23144. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23145. {
  23146. front: {
  23147. height: math.unit(1.83, "meters"),
  23148. weight: math.unit(135, "lb"),
  23149. name: "Front",
  23150. image: {
  23151. source: "./media/characters/dejma-the-red/front.svg",
  23152. extra: 480 / 458,
  23153. bottom: 1.8 / 482
  23154. }
  23155. },
  23156. },
  23157. [
  23158. {
  23159. name: "Shrunken",
  23160. height: math.unit(8.3, "cm")
  23161. },
  23162. {
  23163. name: "Human Scale",
  23164. height: math.unit(1.83, "meters")
  23165. },
  23166. {
  23167. name: "Wolxi Scale",
  23168. height: math.unit(40, "meters"),
  23169. default: true
  23170. },
  23171. ]
  23172. ))
  23173. characterMakers.push(() => makeCharacter(
  23174. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23175. {
  23176. front: {
  23177. height: math.unit(1.78, "meters"),
  23178. weight: math.unit(65, "kg"),
  23179. name: "Front",
  23180. image: {
  23181. source: "./media/characters/aki/front.svg",
  23182. extra: 452 / 415
  23183. }
  23184. },
  23185. frontNsfw: {
  23186. height: math.unit(1.78, "meters"),
  23187. weight: math.unit(65, "kg"),
  23188. name: "Front (NSFW)",
  23189. image: {
  23190. source: "./media/characters/aki/front-nsfw.svg",
  23191. extra: 452 / 415
  23192. }
  23193. },
  23194. back: {
  23195. height: math.unit(1.78, "meters"),
  23196. weight: math.unit(65, "kg"),
  23197. name: "Back",
  23198. image: {
  23199. source: "./media/characters/aki/back.svg",
  23200. extra: 452 / 415
  23201. }
  23202. },
  23203. rump: {
  23204. height: math.unit(2.05, "feet"),
  23205. name: "Rump",
  23206. image: {
  23207. source: "./media/characters/aki/rump.svg"
  23208. }
  23209. },
  23210. dick: {
  23211. height: math.unit(0.95, "feet"),
  23212. name: "Dick",
  23213. image: {
  23214. source: "./media/characters/aki/dick.svg"
  23215. }
  23216. },
  23217. },
  23218. [
  23219. {
  23220. name: "Micro",
  23221. height: math.unit(15, "cm")
  23222. },
  23223. {
  23224. name: "Normal",
  23225. height: math.unit(178, "cm"),
  23226. default: true
  23227. },
  23228. {
  23229. name: "Macro",
  23230. height: math.unit(214, "m")
  23231. },
  23232. {
  23233. name: "Macro+",
  23234. height: math.unit(534, "m")
  23235. },
  23236. ]
  23237. ))
  23238. characterMakers.push(() => makeCharacter(
  23239. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23240. {
  23241. front: {
  23242. height: math.unit(5 + 5 / 12, "feet"),
  23243. weight: math.unit(120, "lb"),
  23244. name: "Front",
  23245. image: {
  23246. source: "./media/characters/ari/front.svg",
  23247. extra: 714.5 / 682,
  23248. bottom: 8 / 722.5
  23249. }
  23250. },
  23251. },
  23252. [
  23253. {
  23254. name: "Normal",
  23255. height: math.unit(5 + 5 / 12, "feet")
  23256. },
  23257. {
  23258. name: "Macro",
  23259. height: math.unit(100, "feet"),
  23260. default: true
  23261. },
  23262. {
  23263. name: "Megamacro",
  23264. height: math.unit(100, "miles")
  23265. },
  23266. {
  23267. name: "Gigamacro",
  23268. height: math.unit(80000, "miles")
  23269. },
  23270. ]
  23271. ))
  23272. characterMakers.push(() => makeCharacter(
  23273. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23274. {
  23275. side: {
  23276. height: math.unit(9, "feet"),
  23277. weight: math.unit(400, "kg"),
  23278. name: "Side",
  23279. image: {
  23280. source: "./media/characters/bolt/side.svg",
  23281. extra: 1126 / 896,
  23282. bottom: 60 / 1187.3,
  23283. }
  23284. },
  23285. },
  23286. [
  23287. {
  23288. name: "Micro",
  23289. height: math.unit(5, "inches")
  23290. },
  23291. {
  23292. name: "Normal",
  23293. height: math.unit(9, "feet"),
  23294. default: true
  23295. },
  23296. {
  23297. name: "Macro",
  23298. height: math.unit(700, "feet")
  23299. },
  23300. {
  23301. name: "Max Size",
  23302. height: math.unit(1.52e22, "yottameters")
  23303. },
  23304. ]
  23305. ))
  23306. characterMakers.push(() => makeCharacter(
  23307. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23308. {
  23309. front: {
  23310. height: math.unit(4.53, "meters"),
  23311. weight: math.unit(3, "tons"),
  23312. name: "Front",
  23313. image: {
  23314. source: "./media/characters/draekon-sylviar/front.svg",
  23315. extra: 1228 / 1068,
  23316. bottom: 41 / 1270
  23317. }
  23318. },
  23319. tail: {
  23320. height: math.unit(1.772, "meter"),
  23321. name: "Tail",
  23322. image: {
  23323. source: "./media/characters/draekon-sylviar/tail.svg"
  23324. }
  23325. },
  23326. head: {
  23327. height: math.unit(1.331, "meter"),
  23328. name: "Head",
  23329. image: {
  23330. source: "./media/characters/draekon-sylviar/head.svg"
  23331. }
  23332. },
  23333. hand: {
  23334. height: math.unit(0.564, "meter"),
  23335. name: "Hand",
  23336. image: {
  23337. source: "./media/characters/draekon-sylviar/hand.svg"
  23338. }
  23339. },
  23340. foot: {
  23341. height: math.unit(0.621, "meter"),
  23342. name: "Foot",
  23343. image: {
  23344. source: "./media/characters/draekon-sylviar/foot.svg",
  23345. bottom: 32 / 324
  23346. }
  23347. },
  23348. dick: {
  23349. height: math.unit(61, "cm"),
  23350. name: "Dick",
  23351. image: {
  23352. source: "./media/characters/draekon-sylviar/dick.svg"
  23353. }
  23354. },
  23355. dickseparated: {
  23356. height: math.unit(61, "cm"),
  23357. name: "Dick-separated",
  23358. image: {
  23359. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23360. }
  23361. },
  23362. },
  23363. [
  23364. {
  23365. name: "Small",
  23366. height: math.unit(4.53 / 2, "meters"),
  23367. default: true
  23368. },
  23369. {
  23370. name: "Normal",
  23371. height: math.unit(4.53, "meters"),
  23372. default: true
  23373. },
  23374. {
  23375. name: "Large",
  23376. height: math.unit(4.53 * 2, "meters"),
  23377. },
  23378. ]
  23379. ))
  23380. characterMakers.push(() => makeCharacter(
  23381. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23382. {
  23383. front: {
  23384. height: math.unit(6 + 2 / 12, "feet"),
  23385. weight: math.unit(180, "lb"),
  23386. name: "Front",
  23387. image: {
  23388. source: "./media/characters/brawler/front.svg",
  23389. extra: 3301 / 3027,
  23390. bottom: 138 / 3439
  23391. }
  23392. },
  23393. },
  23394. [
  23395. {
  23396. name: "Normal",
  23397. height: math.unit(6 + 2 / 12, "feet"),
  23398. default: true
  23399. },
  23400. ]
  23401. ))
  23402. characterMakers.push(() => makeCharacter(
  23403. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23404. {
  23405. front: {
  23406. height: math.unit(11, "feet"),
  23407. weight: math.unit(1000, "lb"),
  23408. name: "Front",
  23409. image: {
  23410. source: "./media/characters/alex/front.svg",
  23411. bottom: 44.5 / 620
  23412. }
  23413. },
  23414. },
  23415. [
  23416. {
  23417. name: "Micro",
  23418. height: math.unit(5, "inches")
  23419. },
  23420. {
  23421. name: "Normal",
  23422. height: math.unit(11, "feet"),
  23423. default: true
  23424. },
  23425. {
  23426. name: "Macro",
  23427. height: math.unit(9.5e9, "feet")
  23428. },
  23429. {
  23430. name: "Max Size",
  23431. height: math.unit(1.4e283, "yottameters")
  23432. },
  23433. ]
  23434. ))
  23435. characterMakers.push(() => makeCharacter(
  23436. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23437. {
  23438. female: {
  23439. height: math.unit(29.9, "m"),
  23440. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23441. name: "Female",
  23442. image: {
  23443. source: "./media/characters/zenari/female.svg",
  23444. extra: 3281.6 / 3217,
  23445. bottom: 72.2 / 3353
  23446. }
  23447. },
  23448. male: {
  23449. height: math.unit(27.7, "m"),
  23450. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23451. name: "Male",
  23452. image: {
  23453. source: "./media/characters/zenari/male.svg",
  23454. extra: 3008 / 2991,
  23455. bottom: 54.6 / 3069
  23456. }
  23457. },
  23458. },
  23459. [
  23460. {
  23461. name: "Macro",
  23462. height: math.unit(29.7, "meters"),
  23463. default: true
  23464. },
  23465. ]
  23466. ))
  23467. characterMakers.push(() => makeCharacter(
  23468. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23469. {
  23470. female: {
  23471. height: math.unit(23.8, "m"),
  23472. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23473. name: "Female",
  23474. image: {
  23475. source: "./media/characters/mactarian/female.svg",
  23476. extra: 2662 / 2569,
  23477. bottom: 73 / 2736
  23478. }
  23479. },
  23480. male: {
  23481. height: math.unit(23.8, "m"),
  23482. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23483. name: "Male",
  23484. image: {
  23485. source: "./media/characters/mactarian/male.svg",
  23486. extra: 2673 / 2600,
  23487. bottom: 76 / 2750
  23488. }
  23489. },
  23490. },
  23491. [
  23492. {
  23493. name: "Macro",
  23494. height: math.unit(23.8, "meters"),
  23495. default: true
  23496. },
  23497. ]
  23498. ))
  23499. characterMakers.push(() => makeCharacter(
  23500. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23501. {
  23502. female: {
  23503. height: math.unit(19.3, "m"),
  23504. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23505. name: "Female",
  23506. image: {
  23507. source: "./media/characters/umok/female.svg",
  23508. extra: 2186 / 2078,
  23509. bottom: 87 / 2277
  23510. }
  23511. },
  23512. male: {
  23513. height: math.unit(19.5, "m"),
  23514. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23515. name: "Male",
  23516. image: {
  23517. source: "./media/characters/umok/male.svg",
  23518. extra: 2233 / 2140,
  23519. bottom: 24.4 / 2258
  23520. }
  23521. },
  23522. },
  23523. [
  23524. {
  23525. name: "Macro",
  23526. height: math.unit(19.3, "meters"),
  23527. default: true
  23528. },
  23529. ]
  23530. ))
  23531. characterMakers.push(() => makeCharacter(
  23532. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23533. {
  23534. female: {
  23535. height: math.unit(26.15, "m"),
  23536. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23537. name: "Female",
  23538. image: {
  23539. source: "./media/characters/joraxian/female.svg",
  23540. extra: 2912 / 2824,
  23541. bottom: 36 / 2956
  23542. }
  23543. },
  23544. male: {
  23545. height: math.unit(25.4, "m"),
  23546. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23547. name: "Male",
  23548. image: {
  23549. source: "./media/characters/joraxian/male.svg",
  23550. extra: 2877 / 2721,
  23551. bottom: 82 / 2967
  23552. }
  23553. },
  23554. },
  23555. [
  23556. {
  23557. name: "Macro",
  23558. height: math.unit(26.15, "meters"),
  23559. default: true
  23560. },
  23561. ]
  23562. ))
  23563. characterMakers.push(() => makeCharacter(
  23564. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23565. {
  23566. female: {
  23567. height: math.unit(21.6, "m"),
  23568. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23569. name: "Female",
  23570. image: {
  23571. source: "./media/characters/sthara/female.svg",
  23572. extra: 2516 / 2347,
  23573. bottom: 21.5 / 2537
  23574. }
  23575. },
  23576. male: {
  23577. height: math.unit(24, "m"),
  23578. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23579. name: "Male",
  23580. image: {
  23581. source: "./media/characters/sthara/male.svg",
  23582. extra: 2732 / 2607,
  23583. bottom: 23 / 2732
  23584. }
  23585. },
  23586. },
  23587. [
  23588. {
  23589. name: "Macro",
  23590. height: math.unit(21.6, "meters"),
  23591. default: true
  23592. },
  23593. ]
  23594. ))
  23595. characterMakers.push(() => makeCharacter(
  23596. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23597. {
  23598. front: {
  23599. height: math.unit(6 + 4 / 12, "feet"),
  23600. weight: math.unit(175, "lb"),
  23601. name: "Front",
  23602. image: {
  23603. source: "./media/characters/luka-bryzant/front.svg",
  23604. extra: 311 / 289,
  23605. bottom: 4 / 315
  23606. }
  23607. },
  23608. back: {
  23609. height: math.unit(6 + 4 / 12, "feet"),
  23610. weight: math.unit(175, "lb"),
  23611. name: "Back",
  23612. image: {
  23613. source: "./media/characters/luka-bryzant/back.svg",
  23614. extra: 311 / 289,
  23615. bottom: 3.8 / 313.7
  23616. }
  23617. },
  23618. },
  23619. [
  23620. {
  23621. name: "Micro",
  23622. height: math.unit(10, "inches")
  23623. },
  23624. {
  23625. name: "Normal",
  23626. height: math.unit(6 + 4 / 12, "feet"),
  23627. default: true
  23628. },
  23629. {
  23630. name: "Large",
  23631. height: math.unit(12, "feet")
  23632. },
  23633. ]
  23634. ))
  23635. characterMakers.push(() => makeCharacter(
  23636. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23637. {
  23638. front: {
  23639. height: math.unit(5 + 7 / 12, "feet"),
  23640. weight: math.unit(185, "lb"),
  23641. name: "Front",
  23642. image: {
  23643. source: "./media/characters/aman-aquila/front.svg",
  23644. extra: 1013 / 976,
  23645. bottom: 45.6 / 1057
  23646. }
  23647. },
  23648. side: {
  23649. height: math.unit(5 + 7 / 12, "feet"),
  23650. weight: math.unit(185, "lb"),
  23651. name: "Side",
  23652. image: {
  23653. source: "./media/characters/aman-aquila/side.svg",
  23654. extra: 1054 / 1011,
  23655. bottom: 15 / 1070
  23656. }
  23657. },
  23658. back: {
  23659. height: math.unit(5 + 7 / 12, "feet"),
  23660. weight: math.unit(185, "lb"),
  23661. name: "Back",
  23662. image: {
  23663. source: "./media/characters/aman-aquila/back.svg",
  23664. extra: 1026 / 970,
  23665. bottom: 12 / 1039
  23666. }
  23667. },
  23668. head: {
  23669. height: math.unit(1.211, "feet"),
  23670. name: "Head",
  23671. image: {
  23672. source: "./media/characters/aman-aquila/head.svg",
  23673. }
  23674. },
  23675. },
  23676. [
  23677. {
  23678. name: "Minimicro",
  23679. height: math.unit(0.057, "inches")
  23680. },
  23681. {
  23682. name: "Micro",
  23683. height: math.unit(7, "inches")
  23684. },
  23685. {
  23686. name: "Mini",
  23687. height: math.unit(3 + 7 / 12, "feet")
  23688. },
  23689. {
  23690. name: "Normal",
  23691. height: math.unit(5 + 7 / 12, "feet"),
  23692. default: true
  23693. },
  23694. {
  23695. name: "Macro",
  23696. height: math.unit(157 + 7 / 12, "feet")
  23697. },
  23698. {
  23699. name: "Megamacro",
  23700. height: math.unit(1557 + 7 / 12, "feet")
  23701. },
  23702. {
  23703. name: "Gigamacro",
  23704. height: math.unit(15557 + 7 / 12, "feet")
  23705. },
  23706. ]
  23707. ))
  23708. characterMakers.push(() => makeCharacter(
  23709. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23710. {
  23711. front: {
  23712. height: math.unit(3 + 2 / 12, "inches"),
  23713. weight: math.unit(0.3, "ounces"),
  23714. name: "Front",
  23715. image: {
  23716. source: "./media/characters/hiphae/front.svg",
  23717. extra: 1931 / 1683,
  23718. bottom: 24 / 1955
  23719. }
  23720. },
  23721. },
  23722. [
  23723. {
  23724. name: "Normal",
  23725. height: math.unit(3 + 1 / 2, "inches"),
  23726. default: true
  23727. },
  23728. ]
  23729. ))
  23730. characterMakers.push(() => makeCharacter(
  23731. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23732. {
  23733. front: {
  23734. height: math.unit(5 + 10 / 12, "feet"),
  23735. weight: math.unit(165, "lb"),
  23736. name: "Front",
  23737. image: {
  23738. source: "./media/characters/nicky/front.svg",
  23739. extra: 3144 / 2886,
  23740. bottom: 45.6 / 3192
  23741. }
  23742. },
  23743. back: {
  23744. height: math.unit(5 + 10 / 12, "feet"),
  23745. weight: math.unit(165, "lb"),
  23746. name: "Back",
  23747. image: {
  23748. source: "./media/characters/nicky/back.svg",
  23749. extra: 3055 / 2804,
  23750. bottom: 28.4 / 3087
  23751. }
  23752. },
  23753. frontclothed: {
  23754. height: math.unit(5 + 10 / 12, "feet"),
  23755. weight: math.unit(165, "lb"),
  23756. name: "Front-clothed",
  23757. image: {
  23758. source: "./media/characters/nicky/front-clothed.svg",
  23759. extra: 3184.9 / 2926.9,
  23760. bottom: 86.5 / 3239.9
  23761. }
  23762. },
  23763. foot: {
  23764. height: math.unit(1.16, "feet"),
  23765. name: "Foot",
  23766. image: {
  23767. source: "./media/characters/nicky/foot.svg"
  23768. }
  23769. },
  23770. feet: {
  23771. height: math.unit(1.34, "feet"),
  23772. name: "Feet",
  23773. image: {
  23774. source: "./media/characters/nicky/feet.svg"
  23775. }
  23776. },
  23777. maw: {
  23778. height: math.unit(0.9, "feet"),
  23779. name: "Maw",
  23780. image: {
  23781. source: "./media/characters/nicky/maw.svg"
  23782. }
  23783. },
  23784. },
  23785. [
  23786. {
  23787. name: "Normal",
  23788. height: math.unit(5 + 10 / 12, "feet"),
  23789. default: true
  23790. },
  23791. {
  23792. name: "Macro",
  23793. height: math.unit(60, "feet")
  23794. },
  23795. {
  23796. name: "Megamacro",
  23797. height: math.unit(1, "mile")
  23798. },
  23799. ]
  23800. ))
  23801. characterMakers.push(() => makeCharacter(
  23802. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23803. {
  23804. side: {
  23805. height: math.unit(10, "feet"),
  23806. weight: math.unit(600, "lb"),
  23807. name: "Side",
  23808. image: {
  23809. source: "./media/characters/blair/side.svg",
  23810. bottom: 16.6 / 475,
  23811. extra: 458 / 431
  23812. }
  23813. },
  23814. },
  23815. [
  23816. {
  23817. name: "Micro",
  23818. height: math.unit(8, "inches")
  23819. },
  23820. {
  23821. name: "Normal",
  23822. height: math.unit(10, "feet"),
  23823. default: true
  23824. },
  23825. {
  23826. name: "Macro",
  23827. height: math.unit(180, "feet")
  23828. },
  23829. ]
  23830. ))
  23831. characterMakers.push(() => makeCharacter(
  23832. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23833. {
  23834. front: {
  23835. height: math.unit(5 + 4 / 12, "feet"),
  23836. weight: math.unit(125, "lb"),
  23837. name: "Front",
  23838. image: {
  23839. source: "./media/characters/fisher/front.svg",
  23840. extra: 444 / 390,
  23841. bottom: 2 / 444.8
  23842. }
  23843. },
  23844. },
  23845. [
  23846. {
  23847. name: "Micro",
  23848. height: math.unit(4, "inches")
  23849. },
  23850. {
  23851. name: "Normal",
  23852. height: math.unit(5 + 4 / 12, "feet"),
  23853. default: true
  23854. },
  23855. {
  23856. name: "Macro",
  23857. height: math.unit(100, "feet")
  23858. },
  23859. ]
  23860. ))
  23861. characterMakers.push(() => makeCharacter(
  23862. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23863. {
  23864. front: {
  23865. height: math.unit(6.71, "feet"),
  23866. weight: math.unit(200, "lb"),
  23867. capacity: math.unit(1000000, "people"),
  23868. name: "Front",
  23869. image: {
  23870. source: "./media/characters/gliss/front.svg",
  23871. extra: 2347 / 2231,
  23872. bottom: 113 / 2462
  23873. }
  23874. },
  23875. hammerspaceSize: {
  23876. height: math.unit(6.71 * 717, "feet"),
  23877. weight: math.unit(200, "lb"),
  23878. capacity: math.unit(1000000, "people"),
  23879. name: "Hammerspace Size",
  23880. image: {
  23881. source: "./media/characters/gliss/front.svg",
  23882. extra: 2347 / 2231,
  23883. bottom: 113 / 2462
  23884. }
  23885. },
  23886. },
  23887. [
  23888. {
  23889. name: "Normal",
  23890. height: math.unit(6.71, "feet"),
  23891. default: true
  23892. },
  23893. ]
  23894. ))
  23895. characterMakers.push(() => makeCharacter(
  23896. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23897. {
  23898. side: {
  23899. height: math.unit(1.44, "m"),
  23900. weight: math.unit(80, "kg"),
  23901. name: "Side",
  23902. image: {
  23903. source: "./media/characters/dune-anderson/side.svg",
  23904. bottom: 49 / 1426
  23905. }
  23906. },
  23907. },
  23908. [
  23909. {
  23910. name: "Wolf-sized",
  23911. height: math.unit(1.44, "meters")
  23912. },
  23913. {
  23914. name: "Normal",
  23915. height: math.unit(5.05, "meters"),
  23916. default: true
  23917. },
  23918. {
  23919. name: "Big",
  23920. height: math.unit(14.4, "meters")
  23921. },
  23922. {
  23923. name: "Huge",
  23924. height: math.unit(144, "meters")
  23925. },
  23926. ]
  23927. ))
  23928. characterMakers.push(() => makeCharacter(
  23929. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23930. {
  23931. front: {
  23932. height: math.unit(7, "feet"),
  23933. weight: math.unit(425, "lb"),
  23934. name: "Front",
  23935. image: {
  23936. source: "./media/characters/hind/front.svg",
  23937. extra: 2091 / 1860,
  23938. bottom: 129 / 2220
  23939. }
  23940. },
  23941. back: {
  23942. height: math.unit(7, "feet"),
  23943. weight: math.unit(425, "lb"),
  23944. name: "Back",
  23945. image: {
  23946. source: "./media/characters/hind/back.svg",
  23947. extra: 2091 / 1860,
  23948. bottom: 24.6 / 2309
  23949. }
  23950. },
  23951. tail: {
  23952. height: math.unit(2.8, "feet"),
  23953. name: "Tail",
  23954. image: {
  23955. source: "./media/characters/hind/tail.svg"
  23956. }
  23957. },
  23958. head: {
  23959. height: math.unit(2.55, "feet"),
  23960. name: "Head",
  23961. image: {
  23962. source: "./media/characters/hind/head.svg"
  23963. }
  23964. },
  23965. },
  23966. [
  23967. {
  23968. name: "XS",
  23969. height: math.unit(0.7, "feet")
  23970. },
  23971. {
  23972. name: "Normal",
  23973. height: math.unit(7, "feet"),
  23974. default: true
  23975. },
  23976. {
  23977. name: "XL",
  23978. height: math.unit(70, "feet")
  23979. },
  23980. ]
  23981. ))
  23982. characterMakers.push(() => makeCharacter(
  23983. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23984. {
  23985. front: {
  23986. height: math.unit(6, "feet"),
  23987. weight: math.unit(150, "lb"),
  23988. name: "Front",
  23989. image: {
  23990. source: "./media/characters/dylan-skaven/front.svg",
  23991. extra: 2318 / 2063,
  23992. bottom: 93.4 / 2410
  23993. }
  23994. },
  23995. },
  23996. [
  23997. {
  23998. name: "Nano",
  23999. height: math.unit(1, "mm")
  24000. },
  24001. {
  24002. name: "Micro",
  24003. height: math.unit(1, "cm")
  24004. },
  24005. {
  24006. name: "Normal",
  24007. height: math.unit(2.1, "meters"),
  24008. default: true
  24009. },
  24010. ]
  24011. ))
  24012. characterMakers.push(() => makeCharacter(
  24013. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24014. {
  24015. front: {
  24016. height: math.unit(7 + 5 / 12, "feet"),
  24017. weight: math.unit(357, "lb"),
  24018. name: "Front",
  24019. image: {
  24020. source: "./media/characters/solex-draconov/front.svg",
  24021. extra: 1993 / 1865,
  24022. bottom: 117 / 2111
  24023. }
  24024. },
  24025. },
  24026. [
  24027. {
  24028. name: "Natural Height",
  24029. height: math.unit(7 + 5 / 12, "feet"),
  24030. default: true
  24031. },
  24032. {
  24033. name: "Macro",
  24034. height: math.unit(350, "feet")
  24035. },
  24036. {
  24037. name: "Macro+",
  24038. height: math.unit(1000, "feet")
  24039. },
  24040. {
  24041. name: "Megamacro",
  24042. height: math.unit(20, "km")
  24043. },
  24044. {
  24045. name: "Megamacro+",
  24046. height: math.unit(1000, "km")
  24047. },
  24048. {
  24049. name: "Gigamacro",
  24050. height: math.unit(2.5, "Gm")
  24051. },
  24052. {
  24053. name: "Teramacro",
  24054. height: math.unit(15, "Tm")
  24055. },
  24056. {
  24057. name: "Galactic",
  24058. height: math.unit(30, "Zm")
  24059. },
  24060. {
  24061. name: "Universal",
  24062. height: math.unit(21000, "Ym")
  24063. },
  24064. {
  24065. name: "Omniversal",
  24066. height: math.unit(9.861e50, "Ym")
  24067. },
  24068. {
  24069. name: "Existential",
  24070. height: math.unit(1e300, "meters")
  24071. },
  24072. ]
  24073. ))
  24074. characterMakers.push(() => makeCharacter(
  24075. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24076. {
  24077. side: {
  24078. height: math.unit(25, "feet"),
  24079. weight: math.unit(90000, "lb"),
  24080. name: "Side",
  24081. image: {
  24082. source: "./media/characters/mandarax/side.svg",
  24083. extra: 614 / 332,
  24084. bottom: 55 / 630
  24085. }
  24086. },
  24087. head: {
  24088. height: math.unit(11.4, "feet"),
  24089. name: "Head",
  24090. image: {
  24091. source: "./media/characters/mandarax/head.svg"
  24092. }
  24093. },
  24094. belly: {
  24095. height: math.unit(33, "feet"),
  24096. name: "Belly",
  24097. capacity: math.unit(500, "people"),
  24098. image: {
  24099. source: "./media/characters/mandarax/belly.svg"
  24100. }
  24101. },
  24102. dick: {
  24103. height: math.unit(8.46, "feet"),
  24104. name: "Dick",
  24105. image: {
  24106. source: "./media/characters/mandarax/dick.svg"
  24107. }
  24108. },
  24109. top: {
  24110. height: math.unit(28, "meters"),
  24111. name: "Top",
  24112. image: {
  24113. source: "./media/characters/mandarax/top.svg"
  24114. }
  24115. },
  24116. },
  24117. [
  24118. {
  24119. name: "Normal",
  24120. height: math.unit(25, "feet"),
  24121. default: true
  24122. },
  24123. ]
  24124. ))
  24125. characterMakers.push(() => makeCharacter(
  24126. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24127. {
  24128. front: {
  24129. height: math.unit(5, "feet"),
  24130. weight: math.unit(90, "lb"),
  24131. name: "Front",
  24132. image: {
  24133. source: "./media/characters/pixil/front.svg",
  24134. extra: 2000 / 1618,
  24135. bottom: 12.3 / 2011
  24136. }
  24137. },
  24138. },
  24139. [
  24140. {
  24141. name: "Normal",
  24142. height: math.unit(5, "feet"),
  24143. default: true
  24144. },
  24145. {
  24146. name: "Megamacro",
  24147. height: math.unit(10, "miles"),
  24148. },
  24149. ]
  24150. ))
  24151. characterMakers.push(() => makeCharacter(
  24152. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24153. {
  24154. front: {
  24155. height: math.unit(7 + 2 / 12, "feet"),
  24156. weight: math.unit(200, "lb"),
  24157. name: "Front",
  24158. image: {
  24159. source: "./media/characters/angel/front.svg",
  24160. extra: 1830 / 1737,
  24161. bottom: 22.6 / 1854,
  24162. }
  24163. },
  24164. },
  24165. [
  24166. {
  24167. name: "Normal",
  24168. height: math.unit(7 + 2 / 12, "feet"),
  24169. default: true
  24170. },
  24171. {
  24172. name: "Macro",
  24173. height: math.unit(1000, "feet")
  24174. },
  24175. {
  24176. name: "Megamacro",
  24177. height: math.unit(2, "miles")
  24178. },
  24179. {
  24180. name: "Gigamacro",
  24181. height: math.unit(20, "earths")
  24182. },
  24183. ]
  24184. ))
  24185. characterMakers.push(() => makeCharacter(
  24186. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24187. {
  24188. front: {
  24189. height: math.unit(5, "feet"),
  24190. weight: math.unit(180, "lb"),
  24191. name: "Front",
  24192. image: {
  24193. source: "./media/characters/mekana/front.svg",
  24194. extra: 1671 / 1605,
  24195. bottom: 3.5 / 1691
  24196. }
  24197. },
  24198. side: {
  24199. height: math.unit(5, "feet"),
  24200. weight: math.unit(180, "lb"),
  24201. name: "Side",
  24202. image: {
  24203. source: "./media/characters/mekana/side.svg",
  24204. extra: 1671 / 1605,
  24205. bottom: 3.5 / 1691
  24206. }
  24207. },
  24208. back: {
  24209. height: math.unit(5, "feet"),
  24210. weight: math.unit(180, "lb"),
  24211. name: "Back",
  24212. image: {
  24213. source: "./media/characters/mekana/back.svg",
  24214. extra: 1671 / 1605,
  24215. bottom: 3.5 / 1691
  24216. }
  24217. },
  24218. },
  24219. [
  24220. {
  24221. name: "Normal",
  24222. height: math.unit(5, "feet"),
  24223. default: true
  24224. },
  24225. ]
  24226. ))
  24227. characterMakers.push(() => makeCharacter(
  24228. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24229. {
  24230. front: {
  24231. height: math.unit(4 + 6 / 12, "feet"),
  24232. weight: math.unit(80, "lb"),
  24233. name: "Front",
  24234. image: {
  24235. source: "./media/characters/pixie/front.svg",
  24236. extra: 1924 / 1825,
  24237. bottom: 22.4 / 1946
  24238. }
  24239. },
  24240. },
  24241. [
  24242. {
  24243. name: "Normal",
  24244. height: math.unit(4 + 6 / 12, "feet"),
  24245. default: true
  24246. },
  24247. {
  24248. name: "Macro",
  24249. height: math.unit(40, "feet")
  24250. },
  24251. ]
  24252. ))
  24253. characterMakers.push(() => makeCharacter(
  24254. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24255. {
  24256. front: {
  24257. height: math.unit(2.1, "meters"),
  24258. weight: math.unit(200, "lb"),
  24259. name: "Front",
  24260. image: {
  24261. source: "./media/characters/the-lascivious/front.svg",
  24262. extra: 1 / 0.893,
  24263. bottom: 3.5 / 573.7
  24264. }
  24265. },
  24266. },
  24267. [
  24268. {
  24269. name: "Human Scale",
  24270. height: math.unit(2.1, "meters")
  24271. },
  24272. {
  24273. name: "Wolxi Scale",
  24274. height: math.unit(46.2, "m"),
  24275. default: true
  24276. },
  24277. {
  24278. name: "Boinker of Buildings",
  24279. height: math.unit(10, "km")
  24280. },
  24281. {
  24282. name: "Shagger of Skyscrapers",
  24283. height: math.unit(40, "km")
  24284. },
  24285. {
  24286. name: "Banger of Boroughs",
  24287. height: math.unit(4000, "km")
  24288. },
  24289. {
  24290. name: "Screwer of States",
  24291. height: math.unit(100000, "km")
  24292. },
  24293. {
  24294. name: "Pounder of Planets",
  24295. height: math.unit(2000000, "km")
  24296. },
  24297. ]
  24298. ))
  24299. characterMakers.push(() => makeCharacter(
  24300. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24301. {
  24302. front: {
  24303. height: math.unit(6, "feet"),
  24304. weight: math.unit(150, "lb"),
  24305. name: "Front",
  24306. image: {
  24307. source: "./media/characters/aj/front.svg",
  24308. extra: 2039 / 1562,
  24309. bottom: 40 / 2079
  24310. }
  24311. },
  24312. },
  24313. [
  24314. {
  24315. name: "Normal",
  24316. height: math.unit(11 + 6 / 12, "feet"),
  24317. default: true
  24318. },
  24319. {
  24320. name: "Megamacro",
  24321. height: math.unit(60, "megameters")
  24322. },
  24323. ]
  24324. ))
  24325. characterMakers.push(() => makeCharacter(
  24326. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24327. {
  24328. side: {
  24329. height: math.unit(31 + 8/12, "feet"),
  24330. weight: math.unit(75000, "kg"),
  24331. name: "Side",
  24332. image: {
  24333. source: "./media/characters/koros/side.svg",
  24334. extra: 1442/1297,
  24335. bottom: 122.7/1562
  24336. }
  24337. },
  24338. dicksKingsCrown: {
  24339. height: math.unit(6, "feet"),
  24340. name: "Dicks (King's Crown)",
  24341. image: {
  24342. source: "./media/characters/koros/dicks-kings-crown.svg"
  24343. }
  24344. },
  24345. dicksTailSet: {
  24346. height: math.unit(3, "feet"),
  24347. name: "Dicks (Tail Set)",
  24348. image: {
  24349. source: "./media/characters/koros/dicks-tail-set.svg"
  24350. }
  24351. },
  24352. dickCumming: {
  24353. height: math.unit(7.98, "feet"),
  24354. name: "Dick (Cumming)",
  24355. image: {
  24356. source: "./media/characters/koros/dick-cumming.svg"
  24357. }
  24358. },
  24359. dicksBack: {
  24360. height: math.unit(5.9, "feet"),
  24361. name: "Dicks (Back)",
  24362. image: {
  24363. source: "./media/characters/koros/dicks-back.svg"
  24364. }
  24365. },
  24366. dicksFront: {
  24367. height: math.unit(3.72, "feet"),
  24368. name: "Dicks (Front)",
  24369. image: {
  24370. source: "./media/characters/koros/dicks-front.svg"
  24371. }
  24372. },
  24373. dicksPeeking: {
  24374. height: math.unit(3.0, "feet"),
  24375. name: "Dicks (Peeking)",
  24376. image: {
  24377. source: "./media/characters/koros/dicks-peeking.svg"
  24378. }
  24379. },
  24380. eye: {
  24381. height: math.unit(1.7, "feet"),
  24382. name: "Eye",
  24383. image: {
  24384. source: "./media/characters/koros/eye.svg"
  24385. }
  24386. },
  24387. headFront: {
  24388. height: math.unit(11.69, "feet"),
  24389. name: "Head (Front)",
  24390. image: {
  24391. source: "./media/characters/koros/head-front.svg"
  24392. }
  24393. },
  24394. headSide: {
  24395. height: math.unit(14, "feet"),
  24396. name: "Head (Side)",
  24397. image: {
  24398. source: "./media/characters/koros/head-side.svg"
  24399. }
  24400. },
  24401. leg: {
  24402. height: math.unit(17, "feet"),
  24403. name: "Leg",
  24404. image: {
  24405. source: "./media/characters/koros/leg.svg"
  24406. }
  24407. },
  24408. mawSide: {
  24409. height: math.unit(12.8, "feet"),
  24410. name: "Maw (Side)",
  24411. image: {
  24412. source: "./media/characters/koros/maw-side.svg"
  24413. }
  24414. },
  24415. mawSpitting: {
  24416. height: math.unit(17, "feet"),
  24417. name: "Maw (Spitting)",
  24418. image: {
  24419. source: "./media/characters/koros/maw-spitting.svg"
  24420. }
  24421. },
  24422. slit: {
  24423. height: math.unit(2.8, "feet"),
  24424. name: "Slit",
  24425. image: {
  24426. source: "./media/characters/koros/slit.svg"
  24427. }
  24428. },
  24429. stomach: {
  24430. height: math.unit(6.8, "feet"),
  24431. capacity: math.unit(20, "people"),
  24432. name: "Stomach",
  24433. image: {
  24434. source: "./media/characters/koros/stomach.svg"
  24435. }
  24436. },
  24437. wingspanBottom: {
  24438. height: math.unit(114, "feet"),
  24439. name: "Wingspan (Bottom)",
  24440. image: {
  24441. source: "./media/characters/koros/wingspan-bottom.svg"
  24442. }
  24443. },
  24444. wingspanTop: {
  24445. height: math.unit(104, "feet"),
  24446. name: "Wingspan (Top)",
  24447. image: {
  24448. source: "./media/characters/koros/wingspan-top.svg"
  24449. }
  24450. },
  24451. },
  24452. [
  24453. {
  24454. name: "Normal",
  24455. height: math.unit(31 + 8/12, "feet"),
  24456. default: true
  24457. },
  24458. ]
  24459. ))
  24460. characterMakers.push(() => makeCharacter(
  24461. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24462. {
  24463. front: {
  24464. height: math.unit(18 + 5/12, "feet"),
  24465. weight: math.unit(3750, "kg"),
  24466. name: "Front",
  24467. image: {
  24468. source: "./media/characters/vexx/front.svg",
  24469. extra: 426/396,
  24470. bottom: 31.5/458
  24471. }
  24472. },
  24473. maw: {
  24474. height: math.unit(6, "feet"),
  24475. name: "Maw",
  24476. image: {
  24477. source: "./media/characters/vexx/maw.svg"
  24478. }
  24479. },
  24480. },
  24481. [
  24482. {
  24483. name: "Normal",
  24484. height: math.unit(18 + 5/12, "feet"),
  24485. default: true
  24486. },
  24487. ]
  24488. ))
  24489. characterMakers.push(() => makeCharacter(
  24490. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24491. {
  24492. front: {
  24493. height: math.unit(17 + 6/12, "feet"),
  24494. weight: math.unit(150, "lb"),
  24495. name: "Front",
  24496. image: {
  24497. source: "./media/characters/baadra/front.svg",
  24498. extra: 3137/2890,
  24499. bottom: 168.4/3305
  24500. }
  24501. },
  24502. back: {
  24503. height: math.unit(17 + 6/12, "feet"),
  24504. weight: math.unit(150, "lb"),
  24505. name: "Back",
  24506. image: {
  24507. source: "./media/characters/baadra/back.svg",
  24508. extra: 3142/2890,
  24509. bottom: 220/3371
  24510. }
  24511. },
  24512. head: {
  24513. height: math.unit(5.45, "feet"),
  24514. name: "Head",
  24515. image: {
  24516. source: "./media/characters/baadra/head.svg"
  24517. }
  24518. },
  24519. headAngry: {
  24520. height: math.unit(4.95, "feet"),
  24521. name: "Head (Angry)",
  24522. image: {
  24523. source: "./media/characters/baadra/head-angry.svg"
  24524. }
  24525. },
  24526. headOpen: {
  24527. height: math.unit(6, "feet"),
  24528. name: "Head (Open)",
  24529. image: {
  24530. source: "./media/characters/baadra/head-open.svg"
  24531. }
  24532. },
  24533. },
  24534. [
  24535. {
  24536. name: "Normal",
  24537. height: math.unit(17 + 6/12, "feet"),
  24538. default: true
  24539. },
  24540. ]
  24541. ))
  24542. characterMakers.push(() => makeCharacter(
  24543. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24544. {
  24545. front: {
  24546. height: math.unit(7 + 3/12, "feet"),
  24547. weight: math.unit(180, "lb"),
  24548. name: "Front",
  24549. image: {
  24550. source: "./media/characters/juri/front.svg",
  24551. extra: 1401/1237,
  24552. bottom: 18.5/1418
  24553. }
  24554. },
  24555. side: {
  24556. height: math.unit(7 + 3/12, "feet"),
  24557. weight: math.unit(180, "lb"),
  24558. name: "Side",
  24559. image: {
  24560. source: "./media/characters/juri/side.svg",
  24561. extra: 1424/1242,
  24562. bottom: 18.5/1447
  24563. }
  24564. },
  24565. sitting: {
  24566. height: math.unit(6, "feet"),
  24567. weight: math.unit(180, "lb"),
  24568. name: "Sitting",
  24569. image: {
  24570. source: "./media/characters/juri/sitting.svg",
  24571. extra: 1270/1143,
  24572. bottom: 100/1343
  24573. }
  24574. },
  24575. back: {
  24576. height: math.unit(7 + 3/12, "feet"),
  24577. weight: math.unit(180, "lb"),
  24578. name: "Back",
  24579. image: {
  24580. source: "./media/characters/juri/back.svg",
  24581. extra: 1377/1240,
  24582. bottom: 23.7/1405
  24583. }
  24584. },
  24585. maw: {
  24586. height: math.unit(2.8, "feet"),
  24587. name: "Maw",
  24588. image: {
  24589. source: "./media/characters/juri/maw.svg"
  24590. }
  24591. },
  24592. stomach: {
  24593. height: math.unit(0.89, "feet"),
  24594. capacity: math.unit(4, "liters"),
  24595. name: "Stomach",
  24596. image: {
  24597. source: "./media/characters/juri/stomach.svg"
  24598. }
  24599. },
  24600. },
  24601. [
  24602. {
  24603. name: "Normal",
  24604. height: math.unit(7 + 3/12, "feet"),
  24605. default: true
  24606. },
  24607. ]
  24608. ))
  24609. characterMakers.push(() => makeCharacter(
  24610. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24611. {
  24612. fox: {
  24613. height: math.unit(5 + 6/12, "feet"),
  24614. weight: math.unit(140, "lb"),
  24615. name: "Fox",
  24616. image: {
  24617. source: "./media/characters/maxene-sita/fox.svg",
  24618. extra: 146/138,
  24619. bottom: 2.1/148.19
  24620. }
  24621. },
  24622. kitsune: {
  24623. height: math.unit(10, "feet"),
  24624. weight: math.unit(800, "lb"),
  24625. name: "Kitsune",
  24626. image: {
  24627. source: "./media/characters/maxene-sita/kitsune.svg",
  24628. extra: 185/176,
  24629. bottom: 4.7/189.9
  24630. }
  24631. },
  24632. },
  24633. [
  24634. {
  24635. name: "Normal",
  24636. height: math.unit(5 + 6/12, "feet"),
  24637. default: true
  24638. },
  24639. ]
  24640. ))
  24641. characterMakers.push(() => makeCharacter(
  24642. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24643. {
  24644. front: {
  24645. height: math.unit(3 + 4/12, "feet"),
  24646. weight: math.unit(70, "lb"),
  24647. name: "Front",
  24648. image: {
  24649. source: "./media/characters/maia/front.svg",
  24650. extra: 227/219.5,
  24651. bottom: 40 / 267
  24652. }
  24653. },
  24654. back: {
  24655. height: math.unit(3 + 4/12, "feet"),
  24656. weight: math.unit(70, "lb"),
  24657. name: "Back",
  24658. image: {
  24659. source: "./media/characters/maia/back.svg",
  24660. extra: 237/225
  24661. }
  24662. },
  24663. },
  24664. [
  24665. {
  24666. name: "Normal",
  24667. height: math.unit(3 + 4/12, "feet"),
  24668. default: true
  24669. },
  24670. ]
  24671. ))
  24672. characterMakers.push(() => makeCharacter(
  24673. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24674. {
  24675. front: {
  24676. height: math.unit(5 + 10/12, "feet"),
  24677. weight: math.unit(197, "lb"),
  24678. name: "Front",
  24679. image: {
  24680. source: "./media/characters/jabaro/front.svg",
  24681. extra: 225/216,
  24682. bottom: 5.06/230
  24683. }
  24684. },
  24685. back: {
  24686. height: math.unit(5 + 10/12, "feet"),
  24687. weight: math.unit(197, "lb"),
  24688. name: "Back",
  24689. image: {
  24690. source: "./media/characters/jabaro/back.svg",
  24691. extra: 225/219,
  24692. bottom: 1.9/227
  24693. }
  24694. },
  24695. },
  24696. [
  24697. {
  24698. name: "Normal",
  24699. height: math.unit(5 + 10/12, "feet"),
  24700. default: true
  24701. },
  24702. ]
  24703. ))
  24704. characterMakers.push(() => makeCharacter(
  24705. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24706. {
  24707. front: {
  24708. height: math.unit(5 + 8/12, "feet"),
  24709. weight: math.unit(139, "lb"),
  24710. name: "Front",
  24711. image: {
  24712. source: "./media/characters/risa/front.svg",
  24713. extra: 270/260,
  24714. bottom: 11.2/282
  24715. }
  24716. },
  24717. back: {
  24718. height: math.unit(5 + 8/12, "feet"),
  24719. weight: math.unit(139, "lb"),
  24720. name: "Back",
  24721. image: {
  24722. source: "./media/characters/risa/back.svg",
  24723. extra: 264/255,
  24724. bottom: 4/268
  24725. }
  24726. },
  24727. },
  24728. [
  24729. {
  24730. name: "Normal",
  24731. height: math.unit(5 + 8/12, "feet"),
  24732. default: true
  24733. },
  24734. ]
  24735. ))
  24736. characterMakers.push(() => makeCharacter(
  24737. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24738. {
  24739. front: {
  24740. height: math.unit(2 + 11/12, "feet"),
  24741. weight: math.unit(30, "lb"),
  24742. name: "Front",
  24743. image: {
  24744. source: "./media/characters/weatley/front.svg",
  24745. bottom: 10.7/414,
  24746. extra: 403.5/362
  24747. }
  24748. },
  24749. back: {
  24750. height: math.unit(2 + 11/12, "feet"),
  24751. weight: math.unit(30, "lb"),
  24752. name: "Back",
  24753. image: {
  24754. source: "./media/characters/weatley/back.svg",
  24755. bottom: 10.7/414,
  24756. extra: 403.5/362
  24757. }
  24758. },
  24759. },
  24760. [
  24761. {
  24762. name: "Normal",
  24763. height: math.unit(2 + 11/12, "feet"),
  24764. default: true
  24765. },
  24766. ]
  24767. ))
  24768. characterMakers.push(() => makeCharacter(
  24769. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24770. {
  24771. front: {
  24772. height: math.unit(5 + 2/12, "feet"),
  24773. weight: math.unit(50, "kg"),
  24774. name: "Front",
  24775. image: {
  24776. source: "./media/characters/mercury-crescent/front.svg",
  24777. extra: 1088/1033,
  24778. bottom: 18.9/1109
  24779. }
  24780. },
  24781. },
  24782. [
  24783. {
  24784. name: "Normal",
  24785. height: math.unit(5 + 2/12, "feet"),
  24786. default: true
  24787. },
  24788. ]
  24789. ))
  24790. characterMakers.push(() => makeCharacter(
  24791. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24792. {
  24793. front: {
  24794. height: math.unit(2, "feet"),
  24795. weight: math.unit(15, "kg"),
  24796. name: "Front",
  24797. image: {
  24798. source: "./media/characters/diamond-jones/front.svg",
  24799. bottom: 16/568
  24800. }
  24801. },
  24802. },
  24803. [
  24804. {
  24805. name: "Normal",
  24806. height: math.unit(2, "feet"),
  24807. default: true
  24808. },
  24809. ]
  24810. ))
  24811. characterMakers.push(() => makeCharacter(
  24812. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24813. {
  24814. front: {
  24815. height: math.unit(3, "feet"),
  24816. weight: math.unit(30, "kg"),
  24817. name: "Front",
  24818. image: {
  24819. source: "./media/characters/sweet-bit/front.svg",
  24820. extra: 675/567,
  24821. bottom: 27.7/703
  24822. }
  24823. },
  24824. },
  24825. [
  24826. {
  24827. name: "Normal",
  24828. height: math.unit(3, "feet"),
  24829. default: true
  24830. },
  24831. ]
  24832. ))
  24833. characterMakers.push(() => makeCharacter(
  24834. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24835. {
  24836. side: {
  24837. height: math.unit(9.178, "feet"),
  24838. weight: math.unit(500, "lb"),
  24839. name: "Side",
  24840. image: {
  24841. source: "./media/characters/umbrazen/side.svg",
  24842. extra: 1730/1473,
  24843. bottom: 34.6/1765
  24844. }
  24845. },
  24846. },
  24847. [
  24848. {
  24849. name: "Normal",
  24850. height: math.unit(9.178, "feet"),
  24851. default: true
  24852. },
  24853. ]
  24854. ))
  24855. characterMakers.push(() => makeCharacter(
  24856. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24857. {
  24858. front: {
  24859. height: math.unit(10, "feet"),
  24860. weight: math.unit(750, "lb"),
  24861. name: "Front",
  24862. image: {
  24863. source: "./media/characters/arlist/front.svg",
  24864. extra: 961/778,
  24865. bottom: 6.2/986
  24866. }
  24867. },
  24868. },
  24869. [
  24870. {
  24871. name: "Normal",
  24872. height: math.unit(10, "feet"),
  24873. default: true
  24874. },
  24875. ]
  24876. ))
  24877. characterMakers.push(() => makeCharacter(
  24878. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24879. {
  24880. front: {
  24881. height: math.unit(5 + 1/12, "feet"),
  24882. weight: math.unit(110, "lb"),
  24883. name: "Front",
  24884. image: {
  24885. source: "./media/characters/aradel/front.svg",
  24886. extra: 324/303,
  24887. bottom: 3.6/329.4
  24888. }
  24889. },
  24890. },
  24891. [
  24892. {
  24893. name: "Normal",
  24894. height: math.unit(5 + 1/12, "feet"),
  24895. default: true
  24896. },
  24897. ]
  24898. ))
  24899. characterMakers.push(() => makeCharacter(
  24900. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24901. {
  24902. front: {
  24903. height: math.unit(3 + 8/12, "feet"),
  24904. weight: math.unit(50, "lb"),
  24905. name: "Front",
  24906. image: {
  24907. source: "./media/characters/serryn/front.svg",
  24908. extra: 1792/1656,
  24909. bottom: 43.5/1840
  24910. }
  24911. },
  24912. },
  24913. [
  24914. {
  24915. name: "Normal",
  24916. height: math.unit(3 + 8/12, "feet"),
  24917. default: true
  24918. },
  24919. ]
  24920. ))
  24921. characterMakers.push(() => makeCharacter(
  24922. { name: "Xavier Thyme" },
  24923. {
  24924. front: {
  24925. height: math.unit(7 + 10/12, "feet"),
  24926. weight: math.unit(255, "lb"),
  24927. name: "Front",
  24928. image: {
  24929. source: "./media/characters/xavier-thyme/front.svg",
  24930. extra: 3733/3642,
  24931. bottom: 131/3869
  24932. }
  24933. },
  24934. frontRaven: {
  24935. height: math.unit(7 + 10/12, "feet"),
  24936. weight: math.unit(255, "lb"),
  24937. name: "Front (Raven)",
  24938. image: {
  24939. source: "./media/characters/xavier-thyme/front-raven.svg",
  24940. extra: 4385/3642,
  24941. bottom: 131/4517
  24942. }
  24943. },
  24944. },
  24945. [
  24946. {
  24947. name: "Normal",
  24948. height: math.unit(7 + 10/12, "feet"),
  24949. default: true
  24950. },
  24951. ]
  24952. ))
  24953. characterMakers.push(() => makeCharacter(
  24954. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24955. {
  24956. front: {
  24957. height: math.unit(1.6, "m"),
  24958. weight: math.unit(50, "kg"),
  24959. name: "Front",
  24960. image: {
  24961. source: "./media/characters/kiki/front.svg",
  24962. extra: 4682/3610,
  24963. bottom: 115/4777
  24964. }
  24965. },
  24966. },
  24967. [
  24968. {
  24969. name: "Normal",
  24970. height: math.unit(1.6, "meters"),
  24971. default: true
  24972. },
  24973. ]
  24974. ))
  24975. characterMakers.push(() => makeCharacter(
  24976. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24977. {
  24978. front: {
  24979. height: math.unit(50, "m"),
  24980. weight: math.unit(500, "tonnes"),
  24981. name: "Front",
  24982. image: {
  24983. source: "./media/characters/ryoko/front.svg",
  24984. extra: 4632/3926,
  24985. bottom: 193/4823
  24986. }
  24987. },
  24988. },
  24989. [
  24990. {
  24991. name: "Normal",
  24992. height: math.unit(50, "meters"),
  24993. default: true
  24994. },
  24995. ]
  24996. ))
  24997. characterMakers.push(() => makeCharacter(
  24998. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  24999. {
  25000. front: {
  25001. height: math.unit(30, "m"),
  25002. weight: math.unit(22, "tonnes"),
  25003. name: "Front",
  25004. image: {
  25005. source: "./media/characters/elio/front.svg",
  25006. extra: 4582/3720,
  25007. bottom: 236/4828
  25008. }
  25009. },
  25010. },
  25011. [
  25012. {
  25013. name: "Normal",
  25014. height: math.unit(30, "meters"),
  25015. default: true
  25016. },
  25017. ]
  25018. ))
  25019. characterMakers.push(() => makeCharacter(
  25020. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25021. {
  25022. front: {
  25023. height: math.unit(6 + 3/12, "feet"),
  25024. weight: math.unit(120, "lb"),
  25025. name: "Front",
  25026. image: {
  25027. source: "./media/characters/azura/front.svg",
  25028. extra: 1149/1135,
  25029. bottom: 45/1194
  25030. }
  25031. },
  25032. frontClothed: {
  25033. height: math.unit(6 + 3/12, "feet"),
  25034. weight: math.unit(120, "lb"),
  25035. name: "Front (Clothed)",
  25036. image: {
  25037. source: "./media/characters/azura/front-clothed.svg",
  25038. extra: 1149/1135,
  25039. bottom: 45/1194
  25040. }
  25041. },
  25042. },
  25043. [
  25044. {
  25045. name: "Normal",
  25046. height: math.unit(6 + 3/12, "feet"),
  25047. default: true
  25048. },
  25049. {
  25050. name: "Macro",
  25051. height: math.unit(20 + 6/12, "feet")
  25052. },
  25053. {
  25054. name: "Megamacro",
  25055. height: math.unit(12, "miles")
  25056. },
  25057. {
  25058. name: "Gigamacro",
  25059. height: math.unit(10000, "miles")
  25060. },
  25061. {
  25062. name: "Teramacro",
  25063. height: math.unit(900000, "miles")
  25064. },
  25065. ]
  25066. ))
  25067. characterMakers.push(() => makeCharacter(
  25068. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25069. {
  25070. front: {
  25071. height: math.unit(12, "feet"),
  25072. weight: math.unit(1, "ton"),
  25073. capacity: math.unit(660000, "gallons"),
  25074. name: "Front",
  25075. image: {
  25076. source: "./media/characters/zeus/front.svg",
  25077. extra: 5005/4717,
  25078. bottom: 363/5388
  25079. }
  25080. },
  25081. },
  25082. [
  25083. {
  25084. name: "Normal",
  25085. height: math.unit(12, "feet")
  25086. },
  25087. {
  25088. name: "Preferred Size",
  25089. height: math.unit(0.5, "miles"),
  25090. default: true
  25091. },
  25092. {
  25093. name: "Giga Horse",
  25094. height: math.unit(300, "miles")
  25095. },
  25096. {
  25097. name: "Riding Planets",
  25098. height: math.unit(30, "megameters")
  25099. },
  25100. {
  25101. name: "Cosmic Giant",
  25102. height: math.unit(3, "zettameters")
  25103. },
  25104. {
  25105. name: "Breeding God",
  25106. height: math.unit(9.92e22, "yottameters")
  25107. },
  25108. ]
  25109. ))
  25110. characterMakers.push(() => makeCharacter(
  25111. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25112. {
  25113. side: {
  25114. height: math.unit(9, "feet"),
  25115. weight: math.unit(1500, "kg"),
  25116. name: "Side",
  25117. image: {
  25118. source: "./media/characters/fang/side.svg",
  25119. extra: 924/866,
  25120. bottom: 47.5/972.3
  25121. }
  25122. },
  25123. },
  25124. [
  25125. {
  25126. name: "Normal",
  25127. height: math.unit(9, "feet"),
  25128. default: true
  25129. },
  25130. {
  25131. name: "Macro",
  25132. height: math.unit(75 + 6/12, "feet")
  25133. },
  25134. {
  25135. name: "Teramacro",
  25136. height: math.unit(50000, "miles")
  25137. },
  25138. ]
  25139. ))
  25140. characterMakers.push(() => makeCharacter(
  25141. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25142. {
  25143. front: {
  25144. height: math.unit(10, "feet"),
  25145. weight: math.unit(2, "tons"),
  25146. name: "Front",
  25147. image: {
  25148. source: "./media/characters/rekhit/front.svg",
  25149. extra: 2796/2590,
  25150. bottom: 225/3022
  25151. }
  25152. },
  25153. },
  25154. [
  25155. {
  25156. name: "Normal",
  25157. height: math.unit(10, "feet"),
  25158. default: true
  25159. },
  25160. {
  25161. name: "Macro",
  25162. height: math.unit(500, "feet")
  25163. },
  25164. ]
  25165. ))
  25166. characterMakers.push(() => makeCharacter(
  25167. { name: "Dahlia Verrick" },
  25168. {
  25169. front: {
  25170. height: math.unit(7 + 6.451/12, "feet"),
  25171. weight: math.unit(310, "lb"),
  25172. name: "Front",
  25173. image: {
  25174. source: "./media/characters/dahlia-verrick/front.svg",
  25175. extra: 1488/1365,
  25176. bottom: 6.2/1495
  25177. }
  25178. },
  25179. back: {
  25180. height: math.unit(7 + 6.451/12, "feet"),
  25181. weight: math.unit(310, "lb"),
  25182. name: "Back",
  25183. image: {
  25184. source: "./media/characters/dahlia-verrick/back.svg",
  25185. extra: 1472/1351,
  25186. bottom: 5.28/1477
  25187. }
  25188. },
  25189. frontBusiness: {
  25190. height: math.unit(7 + 6.451/12, "feet"),
  25191. weight: math.unit(200, "lb"),
  25192. name: "Front (Business)",
  25193. image: {
  25194. source: "./media/characters/dahlia-verrick/front-business.svg",
  25195. extra: 1478/1381,
  25196. bottom: 5.5/1484
  25197. }
  25198. },
  25199. frontCasual: {
  25200. height: math.unit(7 + 6.451/12, "feet"),
  25201. weight: math.unit(200, "lb"),
  25202. name: "Front (Casual)",
  25203. image: {
  25204. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25205. extra: 1478/1381,
  25206. bottom: 5.5/1484
  25207. }
  25208. },
  25209. },
  25210. [
  25211. {
  25212. name: "Travel-Sized",
  25213. height: math.unit(7.45, "inches")
  25214. },
  25215. {
  25216. name: "Normal",
  25217. height: math.unit(7 + 6.451/12, "feet"),
  25218. default: true
  25219. },
  25220. {
  25221. name: "Hitting the Town",
  25222. height: math.unit(37 + 8/12, "feet")
  25223. },
  25224. {
  25225. name: "Stomp in the Suburbs",
  25226. height: math.unit(964 + 9.728/12, "feet")
  25227. },
  25228. {
  25229. name: "Sit on the City",
  25230. height: math.unit(61747 + 10.592/12, "feet")
  25231. },
  25232. {
  25233. name: "Glomp the Globe",
  25234. height: math.unit(252919327 + 4.832/12, "feet")
  25235. },
  25236. ]
  25237. ))
  25238. characterMakers.push(() => makeCharacter(
  25239. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25240. {
  25241. front: {
  25242. height: math.unit(6 + 4/12, "feet"),
  25243. weight: math.unit(320, "lb"),
  25244. name: "Front",
  25245. image: {
  25246. source: "./media/characters/balina-mahigan/front.svg",
  25247. extra: 447/428,
  25248. bottom: 18/466
  25249. }
  25250. },
  25251. back: {
  25252. height: math.unit(6 + 4/12, "feet"),
  25253. weight: math.unit(320, "lb"),
  25254. name: "Back",
  25255. image: {
  25256. source: "./media/characters/balina-mahigan/back.svg",
  25257. extra: 445/428,
  25258. bottom: 4.07/448
  25259. }
  25260. },
  25261. arm: {
  25262. height: math.unit(1.88, "feet"),
  25263. name: "Arm",
  25264. image: {
  25265. source: "./media/characters/balina-mahigan/arm.svg"
  25266. }
  25267. },
  25268. backPort: {
  25269. height: math.unit(0.685, "feet"),
  25270. name: "Back Port",
  25271. image: {
  25272. source: "./media/characters/balina-mahigan/back-port.svg"
  25273. }
  25274. },
  25275. hoofpaw: {
  25276. height: math.unit(1.41, "feet"),
  25277. name: "Hoofpaw",
  25278. image: {
  25279. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25280. }
  25281. },
  25282. leftHandBack: {
  25283. height: math.unit(0.938, "feet"),
  25284. name: "Left Hand (Back)",
  25285. image: {
  25286. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25287. }
  25288. },
  25289. leftHandFront: {
  25290. height: math.unit(0.938, "feet"),
  25291. name: "Left Hand (Front)",
  25292. image: {
  25293. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25294. }
  25295. },
  25296. rightHandBack: {
  25297. height: math.unit(0.95, "feet"),
  25298. name: "Right Hand (Back)",
  25299. image: {
  25300. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25301. }
  25302. },
  25303. rightHandFront: {
  25304. height: math.unit(0.95, "feet"),
  25305. name: "Right Hand (Front)",
  25306. image: {
  25307. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25308. }
  25309. },
  25310. },
  25311. [
  25312. {
  25313. name: "Normal",
  25314. height: math.unit(6 + 4/12, "feet"),
  25315. default: true
  25316. },
  25317. ]
  25318. ))
  25319. characterMakers.push(() => makeCharacter(
  25320. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25321. {
  25322. front: {
  25323. height: math.unit(6, "feet"),
  25324. weight: math.unit(320, "lb"),
  25325. name: "Front",
  25326. image: {
  25327. source: "./media/characters/balina-mejeri/front.svg",
  25328. extra: 517/488,
  25329. bottom: 44.2/561
  25330. }
  25331. },
  25332. },
  25333. [
  25334. {
  25335. name: "Normal",
  25336. height: math.unit(6 + 4/12, "feet")
  25337. },
  25338. {
  25339. name: "Business",
  25340. height: math.unit(155, "feet"),
  25341. default: true
  25342. },
  25343. ]
  25344. ))
  25345. characterMakers.push(() => makeCharacter(
  25346. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25347. {
  25348. kneeling: {
  25349. height: math.unit(6 + 4/12, "feet"),
  25350. weight: math.unit(300*20, "lb"),
  25351. name: "Kneeling",
  25352. image: {
  25353. source: "./media/characters/balbarian/kneeling.svg",
  25354. extra: 922/862,
  25355. bottom: 42.4/965
  25356. }
  25357. },
  25358. },
  25359. [
  25360. {
  25361. name: "Normal",
  25362. height: math.unit(6 + 4/12, "feet")
  25363. },
  25364. {
  25365. name: "Treasured",
  25366. height: math.unit(18 + 9/12, "feet"),
  25367. default: true
  25368. },
  25369. {
  25370. name: "Macro",
  25371. height: math.unit(900, "feet")
  25372. },
  25373. ]
  25374. ))
  25375. characterMakers.push(() => makeCharacter(
  25376. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25377. {
  25378. front: {
  25379. height: math.unit(6 + 4/12, "feet"),
  25380. weight: math.unit(325, "lb"),
  25381. name: "Front",
  25382. image: {
  25383. source: "./media/characters/balina-amarini/front.svg",
  25384. extra: 415/403,
  25385. bottom: 19/433.4
  25386. }
  25387. },
  25388. back: {
  25389. height: math.unit(6 + 4/12, "feet"),
  25390. weight: math.unit(325, "lb"),
  25391. name: "Back",
  25392. image: {
  25393. source: "./media/characters/balina-amarini/back.svg",
  25394. extra: 415/403,
  25395. bottom: 13.5/432
  25396. }
  25397. },
  25398. overdrive: {
  25399. height: math.unit(6 + 4/12, "feet"),
  25400. weight: math.unit(400, "lb"),
  25401. name: "Overdrive",
  25402. image: {
  25403. source: "./media/characters/balina-amarini/overdrive.svg",
  25404. extra: 269/259,
  25405. bottom: 12/282
  25406. }
  25407. },
  25408. },
  25409. [
  25410. {
  25411. name: "Boom",
  25412. height: math.unit(9 + 10/12, "feet"),
  25413. default: true
  25414. },
  25415. {
  25416. name: "Macro",
  25417. height: math.unit(280, "feet")
  25418. },
  25419. ]
  25420. ))
  25421. characterMakers.push(() => makeCharacter(
  25422. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25423. {
  25424. goddess: {
  25425. height: math.unit(600, "feet"),
  25426. weight: math.unit(2000000, "tons"),
  25427. name: "Goddess",
  25428. image: {
  25429. source: "./media/characters/lady-kubwa/goddess.svg",
  25430. extra: 1240.5/1223,
  25431. bottom: 22/1263
  25432. }
  25433. },
  25434. goddesser: {
  25435. height: math.unit(900, "feet"),
  25436. weight: math.unit(20000000, "lb"),
  25437. name: "Goddess-er",
  25438. image: {
  25439. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25440. extra: 899/888,
  25441. bottom: 12.6/912
  25442. }
  25443. },
  25444. },
  25445. [
  25446. {
  25447. name: "Macro",
  25448. height: math.unit(600, "feet"),
  25449. default: true
  25450. },
  25451. {
  25452. name: "Megamacro",
  25453. height: math.unit(250, "miles")
  25454. },
  25455. ]
  25456. ))
  25457. characterMakers.push(() => makeCharacter(
  25458. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25459. {
  25460. front: {
  25461. height: math.unit(7 + 7/12, "feet"),
  25462. weight: math.unit(250, "lb"),
  25463. name: "Front",
  25464. image: {
  25465. source: "./media/characters/tala-grovehorn/front.svg",
  25466. extra: 2636/2525,
  25467. bottom: 147/2781
  25468. }
  25469. },
  25470. back: {
  25471. height: math.unit(7 + 7/12, "feet"),
  25472. weight: math.unit(250, "lb"),
  25473. name: "Back",
  25474. image: {
  25475. source: "./media/characters/tala-grovehorn/back.svg",
  25476. extra: 2635/2539,
  25477. bottom: 100/2732.8
  25478. }
  25479. },
  25480. mouth: {
  25481. height: math.unit(1.15, "feet"),
  25482. name: "Mouth",
  25483. image: {
  25484. source: "./media/characters/tala-grovehorn/mouth.svg"
  25485. }
  25486. },
  25487. dick: {
  25488. height: math.unit(2.36, "feet"),
  25489. name: "Dick",
  25490. image: {
  25491. source: "./media/characters/tala-grovehorn/dick.svg"
  25492. }
  25493. },
  25494. slit: {
  25495. height: math.unit(0.61, "feet"),
  25496. name: "Slit",
  25497. image: {
  25498. source: "./media/characters/tala-grovehorn/slit.svg"
  25499. }
  25500. },
  25501. },
  25502. [
  25503. ]
  25504. ))
  25505. characterMakers.push(() => makeCharacter(
  25506. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25507. {
  25508. front: {
  25509. height: math.unit(7 + 7/12, "feet"),
  25510. weight: math.unit(225, "lb"),
  25511. name: "Front",
  25512. image: {
  25513. source: "./media/characters/epona/front.svg",
  25514. extra: 2445/2290,
  25515. bottom: 251/2696
  25516. }
  25517. },
  25518. back: {
  25519. height: math.unit(7 + 7/12, "feet"),
  25520. weight: math.unit(225, "lb"),
  25521. name: "Back",
  25522. image: {
  25523. source: "./media/characters/epona/back.svg",
  25524. extra: 2546/2408,
  25525. bottom: 44/2589
  25526. }
  25527. },
  25528. genitals: {
  25529. height: math.unit(1.5, "feet"),
  25530. name: "Genitals",
  25531. image: {
  25532. source: "./media/characters/epona/genitals.svg"
  25533. }
  25534. },
  25535. },
  25536. [
  25537. {
  25538. name: "Normal",
  25539. height: math.unit(7 + 7/12, "feet")
  25540. },
  25541. ]
  25542. ))
  25543. characterMakers.push(() => makeCharacter(
  25544. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25545. {
  25546. front: {
  25547. height: math.unit(7, "feet"),
  25548. weight: math.unit(518, "lb"),
  25549. name: "Front",
  25550. image: {
  25551. source: "./media/characters/avia-bloodbourn/front.svg",
  25552. extra: 1466/1350,
  25553. bottom: 65/1527
  25554. }
  25555. },
  25556. },
  25557. [
  25558. ]
  25559. ))
  25560. characterMakers.push(() => makeCharacter(
  25561. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25562. {
  25563. front: {
  25564. height: math.unit(9.35, "feet"),
  25565. weight: math.unit(600, "lb"),
  25566. name: "Front",
  25567. image: {
  25568. source: "./media/characters/amera/front.svg",
  25569. extra: 891/818,
  25570. bottom: 30/922.7
  25571. }
  25572. },
  25573. back: {
  25574. height: math.unit(9.35, "feet"),
  25575. weight: math.unit(600, "lb"),
  25576. name: "Back",
  25577. image: {
  25578. source: "./media/characters/amera/back.svg",
  25579. extra: 876/824,
  25580. bottom: 6.8/884
  25581. }
  25582. },
  25583. dick: {
  25584. height: math.unit(2.14, "feet"),
  25585. name: "Dick",
  25586. image: {
  25587. source: "./media/characters/amera/dick.svg"
  25588. }
  25589. },
  25590. },
  25591. [
  25592. {
  25593. name: "Normal",
  25594. height: math.unit(9.35, "feet"),
  25595. default: true
  25596. },
  25597. ]
  25598. ))
  25599. characterMakers.push(() => makeCharacter(
  25600. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25601. {
  25602. kneeling: {
  25603. height: math.unit(3 + 4/12, "feet"),
  25604. weight: math.unit(90, "lb"),
  25605. name: "Kneeling",
  25606. image: {
  25607. source: "./media/characters/rosewen/kneeling.svg",
  25608. extra: 1835/1571,
  25609. bottom: 27.7/1862
  25610. }
  25611. },
  25612. },
  25613. [
  25614. {
  25615. name: "Normal",
  25616. height: math.unit(3 + 4/12, "feet"),
  25617. default: true
  25618. },
  25619. ]
  25620. ))
  25621. characterMakers.push(() => makeCharacter(
  25622. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25623. {
  25624. front: {
  25625. height: math.unit(5 + 10/12, "feet"),
  25626. weight: math.unit(200, "lb"),
  25627. name: "Front",
  25628. image: {
  25629. source: "./media/characters/sabah/front.svg",
  25630. extra: 849/763,
  25631. bottom: 33.9/881
  25632. }
  25633. },
  25634. },
  25635. [
  25636. {
  25637. name: "Normal",
  25638. height: math.unit(5 + 10/12, "feet"),
  25639. default: true
  25640. },
  25641. ]
  25642. ))
  25643. characterMakers.push(() => makeCharacter(
  25644. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25645. {
  25646. front: {
  25647. height: math.unit(3 + 5/12, "feet"),
  25648. weight: math.unit(40, "kg"),
  25649. name: "Front",
  25650. image: {
  25651. source: "./media/characters/purple-flame/front.svg",
  25652. extra: 1577/1412,
  25653. bottom: 97/1694
  25654. }
  25655. },
  25656. frontDressed: {
  25657. height: math.unit(3 + 5/12, "feet"),
  25658. weight: math.unit(40, "kg"),
  25659. name: "Front (Dressed)",
  25660. image: {
  25661. source: "./media/characters/purple-flame/front-dressed.svg",
  25662. extra: 1577/1412,
  25663. bottom: 97/1694
  25664. }
  25665. },
  25666. headphones: {
  25667. height: math.unit(0.85, "feet"),
  25668. name: "Headphones",
  25669. image: {
  25670. source: "./media/characters/purple-flame/headphones.svg"
  25671. }
  25672. },
  25673. },
  25674. [
  25675. {
  25676. name: "Really Small",
  25677. height: math.unit(5, "cm")
  25678. },
  25679. {
  25680. name: "Micro",
  25681. height: math.unit(1 + 5/12, "feet")
  25682. },
  25683. {
  25684. name: "Normal",
  25685. height: math.unit(3 + 5/12, "feet"),
  25686. default: true
  25687. },
  25688. {
  25689. name: "Minimacro",
  25690. height: math.unit(125, "feet")
  25691. },
  25692. {
  25693. name: "Macro",
  25694. height: math.unit(0.5, "miles")
  25695. },
  25696. {
  25697. name: "Megamacro",
  25698. height: math.unit(50, "miles")
  25699. },
  25700. {
  25701. name: "Gigantic",
  25702. height: math.unit(750, "miles")
  25703. },
  25704. {
  25705. name: "Planetary",
  25706. height: math.unit(15000, "miles")
  25707. },
  25708. ]
  25709. ))
  25710. characterMakers.push(() => makeCharacter(
  25711. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25712. {
  25713. front: {
  25714. height: math.unit(14, "feet"),
  25715. weight: math.unit(959, "lb"),
  25716. name: "Front",
  25717. image: {
  25718. source: "./media/characters/arsenal/front.svg",
  25719. extra: 2357/2157,
  25720. bottom: 93/2458
  25721. }
  25722. },
  25723. },
  25724. [
  25725. {
  25726. name: "Normal",
  25727. height: math.unit(14, "feet"),
  25728. default: true
  25729. },
  25730. ]
  25731. ))
  25732. characterMakers.push(() => makeCharacter(
  25733. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25734. {
  25735. front: {
  25736. height: math.unit(6, "feet"),
  25737. weight: math.unit(150, "lb"),
  25738. name: "Front",
  25739. image: {
  25740. source: "./media/characters/adira/front.svg",
  25741. extra: 1078/1029,
  25742. bottom: 87/1166
  25743. }
  25744. },
  25745. },
  25746. [
  25747. {
  25748. name: "Micro",
  25749. height: math.unit(4, "inches"),
  25750. default: true
  25751. },
  25752. {
  25753. name: "Macro",
  25754. height: math.unit(50, "feet")
  25755. },
  25756. ]
  25757. ))
  25758. characterMakers.push(() => makeCharacter(
  25759. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25760. {
  25761. front: {
  25762. height: math.unit(16, "feet"),
  25763. weight: math.unit(1000, "lb"),
  25764. name: "Front",
  25765. image: {
  25766. source: "./media/characters/grim/front.svg",
  25767. extra: 622/614,
  25768. bottom: 18.1/642
  25769. }
  25770. },
  25771. back: {
  25772. height: math.unit(16, "feet"),
  25773. weight: math.unit(1000, "lb"),
  25774. name: "Back",
  25775. image: {
  25776. source: "./media/characters/grim/back.svg",
  25777. extra: 610.6/602,
  25778. bottom: 40.8/652
  25779. }
  25780. },
  25781. hunched: {
  25782. height: math.unit(9.75, "feet"),
  25783. weight: math.unit(1000, "lb"),
  25784. name: "Hunched",
  25785. image: {
  25786. source: "./media/characters/grim/hunched.svg",
  25787. extra: 304/297,
  25788. bottom: 35.4/394
  25789. }
  25790. },
  25791. },
  25792. [
  25793. {
  25794. name: "Normal",
  25795. height: math.unit(16, "feet"),
  25796. default: true
  25797. },
  25798. ]
  25799. ))
  25800. characterMakers.push(() => makeCharacter(
  25801. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25802. {
  25803. front: {
  25804. height: math.unit(2.3, "meters"),
  25805. weight: math.unit(300, "lb"),
  25806. name: "Front",
  25807. image: {
  25808. source: "./media/characters/sinja/front-sfw.svg",
  25809. extra: 1393/1294,
  25810. bottom: 70/1463
  25811. }
  25812. },
  25813. frontNsfw: {
  25814. height: math.unit(2.3, "meters"),
  25815. weight: math.unit(300, "lb"),
  25816. name: "Front (NSFW)",
  25817. image: {
  25818. source: "./media/characters/sinja/front-nsfw.svg",
  25819. extra: 1393/1294,
  25820. bottom: 70/1463
  25821. }
  25822. },
  25823. back: {
  25824. height: math.unit(2.3, "meters"),
  25825. weight: math.unit(300, "lb"),
  25826. name: "Back",
  25827. image: {
  25828. source: "./media/characters/sinja/back.svg",
  25829. extra: 1393/1294,
  25830. bottom: 70/1463
  25831. }
  25832. },
  25833. head: {
  25834. height: math.unit(1.771, "feet"),
  25835. name: "Head",
  25836. image: {
  25837. source: "./media/characters/sinja/head.svg"
  25838. }
  25839. },
  25840. slit: {
  25841. height: math.unit(0.8, "feet"),
  25842. name: "Slit",
  25843. image: {
  25844. source: "./media/characters/sinja/slit.svg"
  25845. }
  25846. },
  25847. },
  25848. [
  25849. {
  25850. name: "Normal",
  25851. height: math.unit(2.3, "meters")
  25852. },
  25853. {
  25854. name: "Macro",
  25855. height: math.unit(91, "meters"),
  25856. default: true
  25857. },
  25858. {
  25859. name: "Megamacro",
  25860. height: math.unit(91440, "meters")
  25861. },
  25862. {
  25863. name: "Gigamacro",
  25864. height: math.unit(60960000, "meters")
  25865. },
  25866. {
  25867. name: "Teramacro",
  25868. height: math.unit(9144000000, "meters")
  25869. },
  25870. ]
  25871. ))
  25872. characterMakers.push(() => makeCharacter(
  25873. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25874. {
  25875. front: {
  25876. height: math.unit(1.7, "meters"),
  25877. weight: math.unit(130, "lb"),
  25878. name: "Front",
  25879. image: {
  25880. source: "./media/characters/kyu/front.svg",
  25881. extra: 415/395,
  25882. bottom: 5/420
  25883. }
  25884. },
  25885. head: {
  25886. height: math.unit(1.75, "feet"),
  25887. name: "Head",
  25888. image: {
  25889. source: "./media/characters/kyu/head.svg"
  25890. }
  25891. },
  25892. foot: {
  25893. height: math.unit(0.81, "feet"),
  25894. name: "Foot",
  25895. image: {
  25896. source: "./media/characters/kyu/foot.svg"
  25897. }
  25898. },
  25899. },
  25900. [
  25901. {
  25902. name: "Normal",
  25903. height: math.unit(1.7, "meters")
  25904. },
  25905. {
  25906. name: "Macro",
  25907. height: math.unit(131, "feet"),
  25908. default: true
  25909. },
  25910. {
  25911. name: "Megamacro",
  25912. height: math.unit(91440, "meters")
  25913. },
  25914. {
  25915. name: "Gigamacro",
  25916. height: math.unit(60960000, "meters")
  25917. },
  25918. {
  25919. name: "Teramacro",
  25920. height: math.unit(9144000000, "meters")
  25921. },
  25922. ]
  25923. ))
  25924. characterMakers.push(() => makeCharacter(
  25925. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  25926. {
  25927. front: {
  25928. height: math.unit(7 + 1/12, "feet"),
  25929. weight: math.unit(250, "lb"),
  25930. name: "Front",
  25931. image: {
  25932. source: "./media/characters/joey/front.svg",
  25933. extra: 1791/1537,
  25934. bottom: 28/1816
  25935. }
  25936. },
  25937. },
  25938. [
  25939. {
  25940. name: "Micro",
  25941. height: math.unit(3, "inches")
  25942. },
  25943. {
  25944. name: "Normal",
  25945. height: math.unit(7 + 1/12, "feet"),
  25946. default: true
  25947. },
  25948. ]
  25949. ))
  25950. characterMakers.push(() => makeCharacter(
  25951. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  25952. {
  25953. front: {
  25954. height: math.unit(165, "cm"),
  25955. weight: math.unit(140, "lb"),
  25956. name: "Front",
  25957. image: {
  25958. source: "./media/characters/sam-evans/front.svg",
  25959. extra: 3417/3230,
  25960. bottom: 41.3/3417
  25961. }
  25962. },
  25963. frontSixTails: {
  25964. height: math.unit(165, "cm"),
  25965. weight: math.unit(140, "lb"),
  25966. name: "Front-six-tails",
  25967. image: {
  25968. source: "./media/characters/sam-evans/front-six-tails.svg",
  25969. extra: 3417/3230,
  25970. bottom: 41.3/3417
  25971. }
  25972. },
  25973. back: {
  25974. height: math.unit(165, "cm"),
  25975. weight: math.unit(140, "lb"),
  25976. name: "Back",
  25977. image: {
  25978. source: "./media/characters/sam-evans/back.svg",
  25979. extra: 3227/3032,
  25980. bottom: 6.8/3234
  25981. }
  25982. },
  25983. face: {
  25984. height: math.unit(0.68, "feet"),
  25985. name: "Face",
  25986. image: {
  25987. source: "./media/characters/sam-evans/face.svg"
  25988. }
  25989. },
  25990. },
  25991. [
  25992. {
  25993. name: "Normal",
  25994. height: math.unit(165, "cm"),
  25995. default: true
  25996. },
  25997. {
  25998. name: "Macro",
  25999. height: math.unit(100, "meters")
  26000. },
  26001. {
  26002. name: "Macro+",
  26003. height: math.unit(800, "meters")
  26004. },
  26005. {
  26006. name: "Macro++",
  26007. height: math.unit(3, "km")
  26008. },
  26009. {
  26010. name: "Macro+++",
  26011. height: math.unit(30, "km")
  26012. },
  26013. ]
  26014. ))
  26015. characterMakers.push(() => makeCharacter(
  26016. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26017. {
  26018. front: {
  26019. height: math.unit(10, "feet"),
  26020. weight: math.unit(750, "lb"),
  26021. name: "Front",
  26022. image: {
  26023. source: "./media/characters/juliet-a/front.svg",
  26024. extra: 1766/1720,
  26025. bottom: 43/1809
  26026. }
  26027. },
  26028. back: {
  26029. height: math.unit(10, "feet"),
  26030. weight: math.unit(750, "lb"),
  26031. name: "Back",
  26032. image: {
  26033. source: "./media/characters/juliet-a/back.svg",
  26034. extra: 1781/1734,
  26035. bottom: 35/1810,
  26036. }
  26037. },
  26038. },
  26039. [
  26040. {
  26041. name: "Normal",
  26042. height: math.unit(10, "feet"),
  26043. default: true
  26044. },
  26045. {
  26046. name: "Dragon Form",
  26047. height: math.unit(250, "feet")
  26048. },
  26049. {
  26050. name: "Macro",
  26051. height: math.unit(1000, "feet")
  26052. },
  26053. {
  26054. name: "Megamacro",
  26055. height: math.unit(10000, "feet")
  26056. }
  26057. ]
  26058. ))
  26059. characterMakers.push(() => makeCharacter(
  26060. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26061. {
  26062. regular: {
  26063. height: math.unit(7 + 3/12, "feet"),
  26064. weight: math.unit(260, "lb"),
  26065. name: "Regular",
  26066. image: {
  26067. source: "./media/characters/wild/regular.svg",
  26068. extra: 97.45/92,
  26069. bottom: 6.8/104.3
  26070. }
  26071. },
  26072. biggums: {
  26073. height: math.unit(8 + 6 /12, "feet"),
  26074. weight: math.unit(425, "lb"),
  26075. name: "Biggums",
  26076. image: {
  26077. source: "./media/characters/wild/biggums.svg",
  26078. extra: 97.45/92,
  26079. bottom: 7.5/132.34
  26080. }
  26081. },
  26082. mawRegular: {
  26083. height: math.unit(1.24, "feet"),
  26084. name: "Maw (Regular)",
  26085. image: {
  26086. source: "./media/characters/wild/maw.svg"
  26087. }
  26088. },
  26089. mawBiggums: {
  26090. height: math.unit(1.47, "feet"),
  26091. name: "Maw (Biggums)",
  26092. image: {
  26093. source: "./media/characters/wild/maw.svg"
  26094. }
  26095. },
  26096. },
  26097. [
  26098. {
  26099. name: "Normal",
  26100. height: math.unit(7 + 3/12, "feet"),
  26101. default: true
  26102. },
  26103. ]
  26104. ))
  26105. characterMakers.push(() => makeCharacter(
  26106. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26107. {
  26108. front: {
  26109. height: math.unit(2.5, "meters"),
  26110. weight: math.unit(200, "kg"),
  26111. name: "Front",
  26112. image: {
  26113. source: "./media/characters/vidar/front.svg",
  26114. extra: 2994/2795,
  26115. bottom: 56/3061
  26116. }
  26117. },
  26118. back: {
  26119. height: math.unit(2.5, "meters"),
  26120. weight: math.unit(200, "kg"),
  26121. name: "Back",
  26122. image: {
  26123. source: "./media/characters/vidar/back.svg",
  26124. extra: 3131/2928,
  26125. bottom: 13.5/3141.5
  26126. }
  26127. },
  26128. feral: {
  26129. height: math.unit(2.5, "meters"),
  26130. weight: math.unit(2000, "kg"),
  26131. name: "Feral",
  26132. image: {
  26133. source: "./media/characters/vidar/feral.svg",
  26134. extra: 2790/1765,
  26135. bottom: 6/2796
  26136. }
  26137. },
  26138. },
  26139. [
  26140. {
  26141. name: "Normal",
  26142. height: math.unit(2.5, "meters"),
  26143. default: true
  26144. },
  26145. {
  26146. name: "Macro",
  26147. height: math.unit(100, "meters")
  26148. },
  26149. ]
  26150. ))
  26151. characterMakers.push(() => makeCharacter(
  26152. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26153. {
  26154. front: {
  26155. height: math.unit(5 + 9/12, "feet"),
  26156. weight: math.unit(120, "lb"),
  26157. name: "Front",
  26158. image: {
  26159. source: "./media/characters/ash/front.svg",
  26160. extra: 2189/1961,
  26161. bottom: 5.2/2194
  26162. }
  26163. },
  26164. },
  26165. [
  26166. {
  26167. name: "Normal",
  26168. height: math.unit(5 + 9/12, "feet"),
  26169. default: true
  26170. },
  26171. ]
  26172. ))
  26173. characterMakers.push(() => makeCharacter(
  26174. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26175. {
  26176. front: {
  26177. height: math.unit(9, "feet"),
  26178. weight: math.unit(10000, "lb"),
  26179. name: "Front",
  26180. image: {
  26181. source: "./media/characters/gygabite/front.svg",
  26182. bottom: 31.7/537.8,
  26183. extra: 505/370
  26184. }
  26185. },
  26186. },
  26187. [
  26188. {
  26189. name: "Normal",
  26190. height: math.unit(9, "feet"),
  26191. default: true
  26192. },
  26193. ]
  26194. ))
  26195. characterMakers.push(() => makeCharacter(
  26196. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26197. {
  26198. front: {
  26199. height: math.unit(12, "feet"),
  26200. weight: math.unit(35000, "lb"),
  26201. name: "Front",
  26202. image: {
  26203. source: "./media/characters/p0tat0/front.svg",
  26204. extra: 1065/921,
  26205. bottom: 55.7/1121.25
  26206. }
  26207. },
  26208. },
  26209. [
  26210. {
  26211. name: "Normal",
  26212. height: math.unit(12, "feet"),
  26213. default: true
  26214. },
  26215. ]
  26216. ))
  26217. characterMakers.push(() => makeCharacter(
  26218. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26219. {
  26220. side: {
  26221. height: math.unit(6.5, "feet"),
  26222. weight: math.unit(800, "lb"),
  26223. name: "Side",
  26224. image: {
  26225. source: "./media/characters/dusk/side.svg",
  26226. extra: 615/373,
  26227. bottom: 53/664
  26228. }
  26229. },
  26230. sitting: {
  26231. height: math.unit(7, "feet"),
  26232. weight: math.unit(800, "lb"),
  26233. name: "Sitting",
  26234. image: {
  26235. source: "./media/characters/dusk/sitting.svg",
  26236. extra: 753/425,
  26237. bottom: 33/774
  26238. }
  26239. },
  26240. head: {
  26241. height: math.unit(6.1, "feet"),
  26242. name: "Head",
  26243. image: {
  26244. source: "./media/characters/dusk/head.svg"
  26245. }
  26246. },
  26247. },
  26248. [
  26249. {
  26250. name: "Normal",
  26251. height: math.unit(7, "feet"),
  26252. default: true
  26253. },
  26254. ]
  26255. ))
  26256. characterMakers.push(() => makeCharacter(
  26257. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26258. {
  26259. front: {
  26260. height: math.unit(15, "feet"),
  26261. weight: math.unit(7000, "lb"),
  26262. name: "Front",
  26263. image: {
  26264. source: "./media/characters/jay-direwolf/front.svg",
  26265. extra: 1810/1732,
  26266. bottom: 66/1892
  26267. }
  26268. },
  26269. },
  26270. [
  26271. {
  26272. name: "Normal",
  26273. height: math.unit(15, "feet"),
  26274. default: true
  26275. },
  26276. ]
  26277. ))
  26278. characterMakers.push(() => makeCharacter(
  26279. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26280. {
  26281. front: {
  26282. height: math.unit(4 + 9/12, "feet"),
  26283. weight: math.unit(130, "lb"),
  26284. name: "Front",
  26285. image: {
  26286. source: "./media/characters/anchovie/front.svg",
  26287. extra: 382/350,
  26288. bottom: 25/409
  26289. }
  26290. },
  26291. back: {
  26292. height: math.unit(4 + 9/12, "feet"),
  26293. weight: math.unit(130, "lb"),
  26294. name: "Back",
  26295. image: {
  26296. source: "./media/characters/anchovie/back.svg",
  26297. extra: 385/352,
  26298. bottom: 16.6/402
  26299. }
  26300. },
  26301. frontDressed: {
  26302. height: math.unit(4 + 9/12, "feet"),
  26303. weight: math.unit(130, "lb"),
  26304. name: "Front (Dressed)",
  26305. image: {
  26306. source: "./media/characters/anchovie/front-dressed.svg",
  26307. extra: 382/350,
  26308. bottom: 25/409
  26309. }
  26310. },
  26311. backDressed: {
  26312. height: math.unit(4 + 9/12, "feet"),
  26313. weight: math.unit(130, "lb"),
  26314. name: "Back (Dressed)",
  26315. image: {
  26316. source: "./media/characters/anchovie/back-dressed.svg",
  26317. extra: 385/352,
  26318. bottom: 16.6/402
  26319. }
  26320. },
  26321. },
  26322. [
  26323. {
  26324. name: "Micro",
  26325. height: math.unit(6.4, "inches")
  26326. },
  26327. {
  26328. name: "Normal",
  26329. height: math.unit(4 + 9/12, "feet"),
  26330. default: true
  26331. },
  26332. ]
  26333. ))
  26334. characterMakers.push(() => makeCharacter(
  26335. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26336. {
  26337. front: {
  26338. height: math.unit(2, "meters"),
  26339. weight: math.unit(180, "lb"),
  26340. name: "Front",
  26341. image: {
  26342. source: "./media/characters/acidrenamon/front.svg",
  26343. extra: 987/890,
  26344. bottom: 22.8/1009
  26345. }
  26346. },
  26347. back: {
  26348. height: math.unit(2, "meters"),
  26349. weight: math.unit(180, "lb"),
  26350. name: "Back",
  26351. image: {
  26352. source: "./media/characters/acidrenamon/back.svg",
  26353. extra: 983/891,
  26354. bottom: 8.4/992
  26355. }
  26356. },
  26357. head: {
  26358. height: math.unit(1.92, "feet"),
  26359. name: "Head",
  26360. image: {
  26361. source: "./media/characters/acidrenamon/head.svg"
  26362. }
  26363. },
  26364. rump: {
  26365. height: math.unit(1.72, "feet"),
  26366. name: "Rump",
  26367. image: {
  26368. source: "./media/characters/acidrenamon/rump.svg"
  26369. }
  26370. },
  26371. tail: {
  26372. height: math.unit(4.2, "feet"),
  26373. name: "Tail",
  26374. image: {
  26375. source: "./media/characters/acidrenamon/tail.svg"
  26376. }
  26377. },
  26378. },
  26379. [
  26380. {
  26381. name: "Normal",
  26382. height: math.unit(2, "meters"),
  26383. default: true
  26384. },
  26385. {
  26386. name: "Minimacro",
  26387. height: math.unit(7, "meters")
  26388. },
  26389. {
  26390. name: "Macro",
  26391. height: math.unit(200, "meters")
  26392. },
  26393. {
  26394. name: "Gigamacro",
  26395. height: math.unit(0.2, "earths")
  26396. },
  26397. ]
  26398. ))
  26399. characterMakers.push(() => makeCharacter(
  26400. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26401. {
  26402. front: {
  26403. height: math.unit(6, "feet"),
  26404. weight: math.unit(150, "lb"),
  26405. name: "Front",
  26406. image: {
  26407. source: "./media/characters/kenzie-lee/front.svg",
  26408. extra: 1525/1465,
  26409. bottom: 45/1570
  26410. }
  26411. },
  26412. side: {
  26413. height: math.unit(6, "feet"),
  26414. weight: math.unit(150, "lb"),
  26415. name: "Side",
  26416. image: {
  26417. source: "./media/characters/kenzie-lee/side.svg",
  26418. extra: 5505/5383,
  26419. bottom: 60/5573
  26420. }
  26421. },
  26422. },
  26423. [
  26424. {
  26425. name: "Normal",
  26426. height: math.unit(152, "feet"),
  26427. default: true
  26428. },
  26429. {
  26430. name: "Megamacro",
  26431. height: math.unit(7, "miles")
  26432. },
  26433. {
  26434. name: "Gigamacro",
  26435. height: math.unit(8000, "miles")
  26436. },
  26437. ]
  26438. ))
  26439. characterMakers.push(() => makeCharacter(
  26440. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26441. {
  26442. side: {
  26443. height: math.unit(6, "feet"),
  26444. weight: math.unit(150, "lb"),
  26445. name: "Side",
  26446. image: {
  26447. source: "./media/characters/withers/side.svg",
  26448. extra: 1830/1728,
  26449. bottom: 96/1927
  26450. }
  26451. },
  26452. },
  26453. [
  26454. {
  26455. name: "Normal",
  26456. height: math.unit(6, "feet")
  26457. },
  26458. {
  26459. name: "Macro",
  26460. height: math.unit(50, "feet")
  26461. },
  26462. {
  26463. name: "Megamacro",
  26464. height: math.unit(15, "miles"),
  26465. default: true
  26466. },
  26467. {
  26468. name: "Megamacro+",
  26469. height: math.unit(100, "km")
  26470. },
  26471. {
  26472. name: "Gigamacro",
  26473. height: math.unit(4750, "miles")
  26474. },
  26475. {
  26476. name: "Gigamacro+",
  26477. height: math.unit(32000, "miles")
  26478. },
  26479. ]
  26480. ))
  26481. characterMakers.push(() => makeCharacter(
  26482. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26483. {
  26484. front: {
  26485. height: math.unit(6 + 7/12, "feet"),
  26486. weight: math.unit(250, "lb"),
  26487. name: "Front",
  26488. image: {
  26489. source: "./media/characters/nemoskii/front.svg",
  26490. extra: 2270/1734,
  26491. bottom: 86/2354
  26492. }
  26493. },
  26494. back: {
  26495. height: math.unit(6 + 7/12, "feet"),
  26496. weight: math.unit(250, "lb"),
  26497. name: "Back",
  26498. image: {
  26499. source: "./media/characters/nemoskii/back.svg",
  26500. extra: 1845/1788,
  26501. bottom: 10.5/1852
  26502. }
  26503. },
  26504. head: {
  26505. height: math.unit(1.31, "feet"),
  26506. name: "Head",
  26507. image: {
  26508. source: "./media/characters/nemoskii/head.svg"
  26509. }
  26510. },
  26511. },
  26512. [
  26513. {
  26514. name: "Normal",
  26515. height: math.unit(6 + 7/12, "feet"),
  26516. default: true
  26517. },
  26518. ]
  26519. ))
  26520. characterMakers.push(() => makeCharacter(
  26521. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26522. {
  26523. front: {
  26524. height: math.unit(1, "mile"),
  26525. weight: math.unit(265261.9, "lb"),
  26526. name: "Front",
  26527. image: {
  26528. source: "./media/characters/shui/front.svg",
  26529. extra: 1633/1564,
  26530. bottom: 91.5/1726
  26531. }
  26532. },
  26533. },
  26534. [
  26535. {
  26536. name: "Macro",
  26537. height: math.unit(1, "mile"),
  26538. default: true
  26539. },
  26540. ]
  26541. ))
  26542. characterMakers.push(() => makeCharacter(
  26543. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26544. {
  26545. front: {
  26546. height: math.unit(12 + 6/12, "feet"),
  26547. weight: math.unit(1342, "lb"),
  26548. name: "Front",
  26549. image: {
  26550. source: "./media/characters/arokh-takakura/front.svg",
  26551. extra: 1089/1043,
  26552. bottom: 77.4/1176.7
  26553. }
  26554. },
  26555. back: {
  26556. height: math.unit(12 + 6/12, "feet"),
  26557. weight: math.unit(1342, "lb"),
  26558. name: "Back",
  26559. image: {
  26560. source: "./media/characters/arokh-takakura/back.svg",
  26561. extra: 1046/1019,
  26562. bottom: 102/1150
  26563. }
  26564. },
  26565. },
  26566. [
  26567. {
  26568. name: "Big",
  26569. height: math.unit(12 + 6/12, "feet"),
  26570. default: true
  26571. },
  26572. ]
  26573. ))
  26574. characterMakers.push(() => makeCharacter(
  26575. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26576. {
  26577. front: {
  26578. height: math.unit(5 + 6/12, "feet"),
  26579. weight: math.unit(150, "lb"),
  26580. name: "Front",
  26581. image: {
  26582. source: "./media/characters/theo/front.svg",
  26583. extra: 1184/1131,
  26584. bottom: 7.4/1191
  26585. }
  26586. },
  26587. },
  26588. [
  26589. {
  26590. name: "Micro",
  26591. height: math.unit(5, "inches")
  26592. },
  26593. {
  26594. name: "Normal",
  26595. height: math.unit(5 + 6/12, "feet"),
  26596. default: true
  26597. },
  26598. ]
  26599. ))
  26600. characterMakers.push(() => makeCharacter(
  26601. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26602. {
  26603. front: {
  26604. height: math.unit(5 + 9/12, "feet"),
  26605. weight: math.unit(130, "lb"),
  26606. name: "Front",
  26607. image: {
  26608. source: "./media/characters/cecelia-swift/front.svg",
  26609. extra: 502/484,
  26610. bottom: 23/523
  26611. }
  26612. },
  26613. back: {
  26614. height: math.unit(5 + 9/12, "feet"),
  26615. weight: math.unit(130, "lb"),
  26616. name: "Back",
  26617. image: {
  26618. source: "./media/characters/cecelia-swift/back.svg",
  26619. extra: 499/485,
  26620. bottom: 12/511
  26621. }
  26622. },
  26623. head: {
  26624. height: math.unit(0.90, "feet"),
  26625. name: "Head",
  26626. image: {
  26627. source: "./media/characters/cecelia-swift/head.svg"
  26628. }
  26629. },
  26630. rump: {
  26631. height: math.unit(1.75, "feet"),
  26632. name: "Rump",
  26633. image: {
  26634. source: "./media/characters/cecelia-swift/rump.svg"
  26635. }
  26636. },
  26637. },
  26638. [
  26639. {
  26640. name: "Normal",
  26641. height: math.unit(5 + 9/12, "feet"),
  26642. default: true
  26643. },
  26644. {
  26645. name: "Big",
  26646. height: math.unit(50, "feet")
  26647. },
  26648. {
  26649. name: "Macro",
  26650. height: math.unit(100, "feet")
  26651. },
  26652. {
  26653. name: "Macro+",
  26654. height: math.unit(500, "feet")
  26655. },
  26656. {
  26657. name: "Macro++",
  26658. height: math.unit(1000, "feet")
  26659. },
  26660. ]
  26661. ))
  26662. characterMakers.push(() => makeCharacter(
  26663. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26664. {
  26665. front: {
  26666. height: math.unit(6, "feet"),
  26667. weight: math.unit(150, "lb"),
  26668. name: "Front",
  26669. image: {
  26670. source: "./media/characters/kaunan/front.svg",
  26671. extra: 2890/2523,
  26672. bottom: 49/2939
  26673. }
  26674. },
  26675. },
  26676. [
  26677. {
  26678. name: "Macro",
  26679. height: math.unit(150, "feet"),
  26680. default: true
  26681. },
  26682. ]
  26683. ))
  26684. characterMakers.push(() => makeCharacter(
  26685. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26686. {
  26687. front: {
  26688. height: math.unit(175, "cm"),
  26689. weight: math.unit(60, "kg"),
  26690. name: "Front",
  26691. image: {
  26692. source: "./media/characters/fei/front.svg",
  26693. extra: 2581/2400,
  26694. bottom: 82.2/2663
  26695. }
  26696. },
  26697. },
  26698. [
  26699. {
  26700. name: "Mortal",
  26701. height: math.unit(175, "cm")
  26702. },
  26703. {
  26704. name: "Normal",
  26705. height: math.unit(3500, "m"),
  26706. default: true
  26707. },
  26708. {
  26709. name: "Stroll",
  26710. height: math.unit(17.5, "km")
  26711. },
  26712. {
  26713. name: "Showoff",
  26714. height: math.unit(175, "km")
  26715. },
  26716. ]
  26717. ))
  26718. characterMakers.push(() => makeCharacter(
  26719. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26720. {
  26721. front: {
  26722. height: math.unit(7, "feet"),
  26723. weight: math.unit(1000, "kg"),
  26724. name: "Front",
  26725. image: {
  26726. source: "./media/characters/edrax/front.svg",
  26727. extra: 2838/2550,
  26728. bottom: 130/2968
  26729. }
  26730. },
  26731. },
  26732. [
  26733. {
  26734. name: "Small",
  26735. height: math.unit(7, "feet")
  26736. },
  26737. {
  26738. name: "Normal",
  26739. height: math.unit(1500, "meters")
  26740. },
  26741. {
  26742. name: "Mega",
  26743. height: math.unit(12000000, "km"),
  26744. default: true
  26745. },
  26746. {
  26747. name: "Megamacro",
  26748. height: math.unit(10600000, "lightyears")
  26749. },
  26750. {
  26751. name: "Hypermacro",
  26752. height: math.unit(256, "yottameters")
  26753. },
  26754. ]
  26755. ))
  26756. characterMakers.push(() => makeCharacter(
  26757. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  26758. {
  26759. front: {
  26760. height: math.unit(10, "feet"),
  26761. weight: math.unit(750, "lb"),
  26762. name: "Front",
  26763. image: {
  26764. source: "./media/characters/clove/front.svg",
  26765. extra: 2031/1860,
  26766. bottom: 47.8/2080
  26767. }
  26768. },
  26769. back: {
  26770. height: math.unit(10, "feet"),
  26771. weight: math.unit(750, "lb"),
  26772. name: "Back",
  26773. image: {
  26774. source: "./media/characters/clove/back.svg",
  26775. extra: 2025/1859,
  26776. bottom: 46/2071
  26777. }
  26778. },
  26779. },
  26780. [
  26781. {
  26782. name: "Normal",
  26783. height: math.unit(10, "feet")
  26784. },
  26785. ]
  26786. ))
  26787. characterMakers.push(() => makeCharacter(
  26788. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  26789. {
  26790. front: {
  26791. height: math.unit(4, "feet"),
  26792. weight: math.unit(50, "lb"),
  26793. name: "Front",
  26794. image: {
  26795. source: "./media/characters/alex-rabbit/front.svg",
  26796. extra: 507/458,
  26797. bottom: 18.5/527
  26798. }
  26799. },
  26800. back: {
  26801. height: math.unit(4, "feet"),
  26802. weight: math.unit(50, "lb"),
  26803. name: "Back",
  26804. image: {
  26805. source: "./media/characters/alex-rabbit/back.svg",
  26806. extra: 502/460,
  26807. bottom: 18.9/521
  26808. }
  26809. },
  26810. },
  26811. [
  26812. {
  26813. name: "Normal",
  26814. height: math.unit(4, "feet"),
  26815. default: true
  26816. },
  26817. ]
  26818. ))
  26819. characterMakers.push(() => makeCharacter(
  26820. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  26821. {
  26822. front: {
  26823. height: math.unit(1 + 3 / 12, "feet"),
  26824. weight: math.unit(80, "lb"),
  26825. name: "Front",
  26826. image: {
  26827. source: "./media/characters/zander-rose/front.svg",
  26828. extra: 916 / 797,
  26829. bottom: 17 / 933
  26830. }
  26831. },
  26832. back: {
  26833. height: math.unit(1 + 3 / 12, "feet"),
  26834. weight: math.unit(80, "lb"),
  26835. name: "Back",
  26836. image: {
  26837. source: "./media/characters/zander-rose/back.svg",
  26838. extra: 903/779,
  26839. bottom: 31/934
  26840. }
  26841. },
  26842. },
  26843. [
  26844. {
  26845. name: "Normal",
  26846. height: math.unit(1 + 3 / 12, "feet"),
  26847. default: true
  26848. },
  26849. ]
  26850. ))
  26851. characterMakers.push(() => makeCharacter(
  26852. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  26853. {
  26854. anthro: {
  26855. height: math.unit(6, "feet"),
  26856. weight: math.unit(150, "lb"),
  26857. name: "Anthro",
  26858. image: {
  26859. source: "./media/characters/razz/anthro.svg",
  26860. extra: 1437/1343,
  26861. bottom: 48/1485
  26862. }
  26863. },
  26864. feral: {
  26865. height: math.unit(6, "feet"),
  26866. weight: math.unit(150, "lb"),
  26867. name: "Feral",
  26868. image: {
  26869. source: "./media/characters/razz/feral.svg",
  26870. extra: 2569/1385,
  26871. bottom: 95/2664
  26872. }
  26873. },
  26874. },
  26875. [
  26876. {
  26877. name: "Normal",
  26878. height: math.unit(6, "feet"),
  26879. default: true
  26880. },
  26881. ]
  26882. ))
  26883. characterMakers.push(() => makeCharacter(
  26884. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  26885. {
  26886. front: {
  26887. height: math.unit(9 + 4/12, "feet"),
  26888. weight: math.unit(500, "lb"),
  26889. name: "Front",
  26890. image: {
  26891. source: "./media/characters/morrigan/front.svg",
  26892. extra: 2707/2579,
  26893. bottom: 156/2863
  26894. }
  26895. },
  26896. },
  26897. [
  26898. {
  26899. name: "Normal",
  26900. height: math.unit(9 + 4/12, "feet"),
  26901. default: true
  26902. },
  26903. ]
  26904. ))
  26905. characterMakers.push(() => makeCharacter(
  26906. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  26907. {
  26908. front: {
  26909. height: math.unit(5, "stories"),
  26910. weight: math.unit(4000, "lb"),
  26911. name: "Front",
  26912. image: {
  26913. source: "./media/characters/jenene/front.svg",
  26914. extra: 1780/1710,
  26915. bottom: 57/1837
  26916. }
  26917. },
  26918. },
  26919. [
  26920. {
  26921. name: "Normal",
  26922. height: math.unit(5, "stories"),
  26923. default: true
  26924. },
  26925. ]
  26926. ))
  26927. characterMakers.push(() => makeCharacter(
  26928. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  26929. {
  26930. front: {
  26931. height: math.unit(6, "feet"),
  26932. weight: math.unit(150, "lb"),
  26933. name: "Front",
  26934. image: {
  26935. source: "./media/characters/vix-archaser/front.svg",
  26936. extra: 2767/2562,
  26937. bottom: 36/2803
  26938. }
  26939. },
  26940. },
  26941. [
  26942. {
  26943. name: "Micro",
  26944. height: math.unit(1, "foot")
  26945. },
  26946. {
  26947. name: "Normal",
  26948. height: math.unit(6 + 5/12, "feet")
  26949. },
  26950. {
  26951. name: "Minimacro",
  26952. height: math.unit(500, "feet")
  26953. },
  26954. {
  26955. name: "Macro",
  26956. height: math.unit(4, "miles")
  26957. },
  26958. {
  26959. name: "Megamacro",
  26960. height: math.unit(250, "miles"),
  26961. default: true
  26962. },
  26963. {
  26964. name: "Gigamacro",
  26965. height: math.unit(1, "universe")
  26966. },
  26967. ]
  26968. ))
  26969. characterMakers.push(() => makeCharacter(
  26970. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  26971. {
  26972. taurSfw: {
  26973. height: math.unit(10, "meters"),
  26974. weight: math.unit(17500, "kg"),
  26975. name: "Taur",
  26976. image: {
  26977. source: "./media/characters/faey/taur-sfw.svg",
  26978. extra: 1200/968,
  26979. bottom: 41/1241
  26980. }
  26981. },
  26982. chestmaw: {
  26983. height: math.unit(2.01, "meters"),
  26984. name: "Chestmaw",
  26985. image: {
  26986. source: "./media/characters/faey/chestmaw.svg"
  26987. }
  26988. },
  26989. foot: {
  26990. height: math.unit(2.43, "meters"),
  26991. name: "Foot",
  26992. image: {
  26993. source: "./media/characters/faey/foot.svg"
  26994. }
  26995. },
  26996. jaws: {
  26997. height: math.unit(1.66, "meters"),
  26998. name: "Jaws",
  26999. image: {
  27000. source: "./media/characters/faey/jaws.svg"
  27001. }
  27002. },
  27003. tongues: {
  27004. height: math.unit(2.01, "meters"),
  27005. name: "Tongues",
  27006. image: {
  27007. source: "./media/characters/faey/tongues.svg"
  27008. }
  27009. },
  27010. },
  27011. [
  27012. {
  27013. name: "Small",
  27014. height: math.unit(10, "meters"),
  27015. default: true
  27016. },
  27017. {
  27018. name: "Big",
  27019. height: math.unit(500000, "km")
  27020. },
  27021. ]
  27022. ))
  27023. characterMakers.push(() => makeCharacter(
  27024. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27025. {
  27026. front: {
  27027. height: math.unit(7, "feet"),
  27028. weight: math.unit(275, "lb"),
  27029. name: "Front",
  27030. image: {
  27031. source: "./media/characters/roku/front.svg",
  27032. extra: 903/878,
  27033. bottom: 37/940
  27034. }
  27035. },
  27036. },
  27037. [
  27038. {
  27039. name: "Normal",
  27040. height: math.unit(7, "feet"),
  27041. default: true
  27042. },
  27043. {
  27044. name: "Macro",
  27045. height: math.unit(500, "feet")
  27046. },
  27047. {
  27048. name: "Megamacro",
  27049. height: math.unit(200, "miles")
  27050. },
  27051. ]
  27052. ))
  27053. characterMakers.push(() => makeCharacter(
  27054. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27055. {
  27056. front: {
  27057. height: math.unit(6 + 2/12, "feet"),
  27058. weight: math.unit(150, "lb"),
  27059. name: "Front",
  27060. image: {
  27061. source: "./media/characters/lira/front.svg",
  27062. extra: 1727/1605,
  27063. bottom: 26/1753
  27064. }
  27065. },
  27066. back: {
  27067. height: math.unit(6 + 2/12, "feet"),
  27068. weight: math.unit(150, "lb"),
  27069. name: "Back",
  27070. image: {
  27071. source: "./media/characters/lira/back.svg",
  27072. extra: 1713/1599,
  27073. bottom: 20/1733
  27074. }
  27075. },
  27076. hand: {
  27077. height: math.unit(0.75, "feet"),
  27078. name: "Hand",
  27079. image: {
  27080. source: "./media/characters/lira/hand.svg"
  27081. }
  27082. },
  27083. maw: {
  27084. height: math.unit(0.65, "feet"),
  27085. name: "Maw",
  27086. image: {
  27087. source: "./media/characters/lira/maw.svg"
  27088. }
  27089. },
  27090. pawDigi: {
  27091. height: math.unit(1.6, "feet"),
  27092. name: "Paw Digi",
  27093. image: {
  27094. source: "./media/characters/lira/paw-digi.svg"
  27095. }
  27096. },
  27097. pawPlanti: {
  27098. height: math.unit(1.4, "feet"),
  27099. name: "Paw Planti",
  27100. image: {
  27101. source: "./media/characters/lira/paw-planti.svg"
  27102. }
  27103. },
  27104. },
  27105. [
  27106. {
  27107. name: "Normal",
  27108. height: math.unit(6 + 2/12, "feet"),
  27109. default: true
  27110. },
  27111. {
  27112. name: "Macro",
  27113. height: math.unit(100, "feet")
  27114. },
  27115. ]
  27116. ))
  27117. //characters
  27118. function makeCharacters() {
  27119. const results = [];
  27120. characterMakers.forEach(character => {
  27121. results.push(character());
  27122. });
  27123. return results;
  27124. }