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

28431 строка
709 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", "candy"]
  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. "cyborg": {
  1320. name: "Cyborg",
  1321. parents: ["machine"]
  1322. },
  1323. "draptor": {
  1324. name: "Draptor",
  1325. parents: ["dragon"]
  1326. },
  1327. "candy": {
  1328. name: "Candy",
  1329. parents: []
  1330. },
  1331. "drenath": {
  1332. name: "Drenath",
  1333. parents: ["dragon", "snake", "rabbit"]
  1334. },
  1335. "coyju": {
  1336. name: "Coyju",
  1337. parents: ["coyote", "kaiju"]
  1338. },
  1339. "kaiju": {
  1340. name: "Kaiju",
  1341. parents: ["monster"]
  1342. },
  1343. }
  1344. //species
  1345. function getSpeciesInfo(speciesList) {
  1346. let result = new Set();
  1347. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1348. result.add(entry)
  1349. });
  1350. return Array.from(result);
  1351. };
  1352. function getSpeciesInfoHelper(species) {
  1353. if (!speciesData[species]) {
  1354. console.warn(species + " doesn't exist");
  1355. return [];
  1356. }
  1357. if (speciesData[species].parents) {
  1358. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1359. } else {
  1360. return [species];
  1361. }
  1362. }
  1363. characterMakers.push(() => makeCharacter(
  1364. {
  1365. name: "Fen",
  1366. species: ["crux"],
  1367. description: {
  1368. title: "Bio",
  1369. text: "Very furry. Sheds on everything."
  1370. },
  1371. tags: [
  1372. "anthro",
  1373. "goo"
  1374. ]
  1375. },
  1376. {
  1377. back: {
  1378. height: math.unit(2.2428, "meter"),
  1379. weight: math.unit(124.738, "kg"),
  1380. name: "Back",
  1381. image: {
  1382. source: "./media/characters/fen/back.svg",
  1383. extra: 2024 / 1867,
  1384. bottom: 13 / 2037
  1385. },
  1386. info: {
  1387. description: {
  1388. mode: "append",
  1389. text: "\n\nHe is not currently looking at you."
  1390. }
  1391. }
  1392. },
  1393. full: {
  1394. height: math.unit(1.34, "meter"),
  1395. weight: math.unit(225, "kg"),
  1396. name: "Full",
  1397. image: {
  1398. source: "./media/characters/fen/full.svg"
  1399. },
  1400. info: {
  1401. description: {
  1402. mode: "append",
  1403. text: "\n\nMunch."
  1404. }
  1405. }
  1406. },
  1407. kneeling: {
  1408. height: math.unit(5.4, "feet"),
  1409. weight: math.unit(124.738, "kg"),
  1410. name: "Kneeling",
  1411. image: {
  1412. source: "./media/characters/fen/kneeling.svg",
  1413. extra: 563 / 507
  1414. }
  1415. },
  1416. goo: {
  1417. height: math.unit(2.8, "feet"),
  1418. weight: math.unit(125, "kg"),
  1419. capacity: math.unit(1, "people"),
  1420. name: "Goo",
  1421. image: {
  1422. source: "./media/characters/fen/goo.svg",
  1423. bottom: 116 / 613
  1424. }
  1425. },
  1426. lounging: {
  1427. height: math.unit(6.5, "feet"),
  1428. weight: math.unit(125, "kg"),
  1429. name: "Lounging",
  1430. image: {
  1431. source: "./media/characters/fen/lounging.svg"
  1432. }
  1433. },
  1434. },
  1435. [
  1436. {
  1437. name: "Normal",
  1438. height: math.unit(2.2428, "meter")
  1439. },
  1440. {
  1441. name: "Big",
  1442. height: math.unit(12, "feet")
  1443. },
  1444. {
  1445. name: "Minimacro",
  1446. height: math.unit(40, "feet"),
  1447. default: true,
  1448. info: {
  1449. description: {
  1450. mode: "append",
  1451. text: "\n\nTOO DAMN BIG"
  1452. }
  1453. }
  1454. },
  1455. {
  1456. name: "Macro",
  1457. height: math.unit(100, "feet"),
  1458. info: {
  1459. description: {
  1460. mode: "append",
  1461. text: "\n\nTOO DAMN BIG"
  1462. }
  1463. }
  1464. },
  1465. {
  1466. name: "Macro+",
  1467. height: math.unit(300, "feet")
  1468. },
  1469. {
  1470. name: "Megamacro",
  1471. height: math.unit(2, "miles")
  1472. }
  1473. ]
  1474. ))
  1475. characterMakers.push(() => makeCharacter(
  1476. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1477. {
  1478. front: {
  1479. height: math.unit(183, "cm"),
  1480. weight: math.unit(80, "kg"),
  1481. name: "Front",
  1482. image: {
  1483. source: "./media/characters/sofia-fluttertail/front.svg",
  1484. bottom: 0.01,
  1485. extra: 2154 / 2081
  1486. }
  1487. },
  1488. frontAlt: {
  1489. height: math.unit(183, "cm"),
  1490. weight: math.unit(80, "kg"),
  1491. name: "Front (alt)",
  1492. image: {
  1493. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1494. }
  1495. },
  1496. back: {
  1497. height: math.unit(183, "cm"),
  1498. weight: math.unit(80, "kg"),
  1499. name: "Back",
  1500. image: {
  1501. source: "./media/characters/sofia-fluttertail/back.svg"
  1502. }
  1503. },
  1504. kneeling: {
  1505. height: math.unit(125, "cm"),
  1506. weight: math.unit(80, "kg"),
  1507. name: "Kneeling",
  1508. image: {
  1509. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1510. extra: 1033 / 977,
  1511. bottom: 23.7 / 1057
  1512. }
  1513. },
  1514. maw: {
  1515. height: math.unit(183 / 5, "cm"),
  1516. name: "Maw",
  1517. image: {
  1518. source: "./media/characters/sofia-fluttertail/maw.svg"
  1519. }
  1520. },
  1521. mawcloseup: {
  1522. height: math.unit(183 / 5 * 0.41, "cm"),
  1523. name: "Maw (Closeup)",
  1524. image: {
  1525. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1526. }
  1527. },
  1528. },
  1529. [
  1530. {
  1531. name: "Normal",
  1532. height: math.unit(1.83, "meter")
  1533. },
  1534. {
  1535. name: "Size Thief",
  1536. height: math.unit(18, "feet")
  1537. },
  1538. {
  1539. name: "50 Foot Collie",
  1540. height: math.unit(50, "feet")
  1541. },
  1542. {
  1543. name: "Macro",
  1544. height: math.unit(96, "feet"),
  1545. default: true
  1546. },
  1547. {
  1548. name: "Megamerger",
  1549. height: math.unit(650, "feet")
  1550. },
  1551. ]
  1552. ))
  1553. characterMakers.push(() => makeCharacter(
  1554. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1555. {
  1556. front: {
  1557. height: math.unit(7, "feet"),
  1558. weight: math.unit(100, "kg"),
  1559. name: "Front",
  1560. image: {
  1561. source: "./media/characters/march/front.svg",
  1562. extra: 1,
  1563. bottom: 0.015
  1564. }
  1565. },
  1566. foot: {
  1567. height: math.unit(0.9, "feet"),
  1568. name: "Foot",
  1569. image: {
  1570. source: "./media/characters/march/foot.svg"
  1571. }
  1572. },
  1573. },
  1574. [
  1575. {
  1576. name: "Normal",
  1577. height: math.unit(7.9, "feet")
  1578. },
  1579. {
  1580. name: "Macro",
  1581. height: math.unit(220, "meters")
  1582. },
  1583. {
  1584. name: "Megamacro",
  1585. height: math.unit(2.98, "km"),
  1586. default: true
  1587. },
  1588. {
  1589. name: "Gigamacro",
  1590. height: math.unit(15963, "km")
  1591. },
  1592. {
  1593. name: "Teramacro",
  1594. height: math.unit(2980000000, "km")
  1595. },
  1596. {
  1597. name: "Examacro",
  1598. height: math.unit(250, "parsecs")
  1599. },
  1600. ]
  1601. ))
  1602. characterMakers.push(() => makeCharacter(
  1603. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1604. {
  1605. front: {
  1606. height: math.unit(6, "feet"),
  1607. weight: math.unit(60, "kg"),
  1608. name: "Front",
  1609. image: {
  1610. source: "./media/characters/noir/front.svg",
  1611. extra: 1,
  1612. bottom: 0.032
  1613. }
  1614. },
  1615. },
  1616. [
  1617. {
  1618. name: "Normal",
  1619. height: math.unit(6.6, "feet")
  1620. },
  1621. {
  1622. name: "Macro",
  1623. height: math.unit(500, "feet")
  1624. },
  1625. {
  1626. name: "Megamacro",
  1627. height: math.unit(2.5, "km"),
  1628. default: true
  1629. },
  1630. {
  1631. name: "Gigamacro",
  1632. height: math.unit(22500, "km")
  1633. },
  1634. {
  1635. name: "Teramacro",
  1636. height: math.unit(2500000000, "km")
  1637. },
  1638. {
  1639. name: "Examacro",
  1640. height: math.unit(200, "parsecs")
  1641. },
  1642. ]
  1643. ))
  1644. characterMakers.push(() => makeCharacter(
  1645. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1646. {
  1647. front: {
  1648. height: math.unit(7, "feet"),
  1649. weight: math.unit(100, "kg"),
  1650. name: "Front",
  1651. image: {
  1652. source: "./media/characters/okuri/front.svg",
  1653. extra: 1,
  1654. bottom: 0.037
  1655. }
  1656. },
  1657. back: {
  1658. height: math.unit(7, "feet"),
  1659. weight: math.unit(100, "kg"),
  1660. name: "Back",
  1661. image: {
  1662. source: "./media/characters/okuri/back.svg",
  1663. extra: 1,
  1664. bottom: 0.007
  1665. }
  1666. },
  1667. },
  1668. [
  1669. {
  1670. name: "Megamacro",
  1671. height: math.unit(100, "miles"),
  1672. default: true
  1673. },
  1674. ]
  1675. ))
  1676. characterMakers.push(() => makeCharacter(
  1677. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1678. {
  1679. front: {
  1680. height: math.unit(7, "feet"),
  1681. weight: math.unit(100, "kg"),
  1682. name: "Front",
  1683. image: {
  1684. source: "./media/characters/manny/front.svg",
  1685. extra: 1,
  1686. bottom: 0.06
  1687. }
  1688. },
  1689. back: {
  1690. height: math.unit(7, "feet"),
  1691. weight: math.unit(100, "kg"),
  1692. name: "Back",
  1693. image: {
  1694. source: "./media/characters/manny/back.svg",
  1695. extra: 1,
  1696. bottom: 0.014
  1697. }
  1698. },
  1699. },
  1700. [
  1701. {
  1702. name: "Normal",
  1703. height: math.unit(7, "feet"),
  1704. },
  1705. {
  1706. name: "Macro",
  1707. height: math.unit(78, "feet"),
  1708. default: true
  1709. },
  1710. {
  1711. name: "Macro+",
  1712. height: math.unit(300, "meters")
  1713. },
  1714. {
  1715. name: "Macro++",
  1716. height: math.unit(2400, "meters")
  1717. },
  1718. {
  1719. name: "Megamacro",
  1720. height: math.unit(5167, "meters")
  1721. },
  1722. {
  1723. name: "Gigamacro",
  1724. height: math.unit(41769, "miles")
  1725. },
  1726. ]
  1727. ))
  1728. characterMakers.push(() => makeCharacter(
  1729. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1730. {
  1731. front: {
  1732. height: math.unit(7, "feet"),
  1733. weight: math.unit(100, "kg"),
  1734. name: "Front",
  1735. image: {
  1736. source: "./media/characters/adake/front-1.svg"
  1737. }
  1738. },
  1739. frontAlt: {
  1740. height: math.unit(7, "feet"),
  1741. weight: math.unit(100, "kg"),
  1742. name: "Front (Alt)",
  1743. image: {
  1744. source: "./media/characters/adake/front-2.svg",
  1745. extra: 1,
  1746. bottom: 0.01
  1747. }
  1748. },
  1749. back: {
  1750. height: math.unit(7, "feet"),
  1751. weight: math.unit(100, "kg"),
  1752. name: "Back",
  1753. image: {
  1754. source: "./media/characters/adake/back.svg",
  1755. }
  1756. },
  1757. kneel: {
  1758. height: math.unit(5.385, "feet"),
  1759. weight: math.unit(100, "kg"),
  1760. name: "Kneeling",
  1761. image: {
  1762. source: "./media/characters/adake/kneel.svg",
  1763. bottom: 0.052
  1764. }
  1765. },
  1766. },
  1767. [
  1768. {
  1769. name: "Normal",
  1770. height: math.unit(7, "feet"),
  1771. },
  1772. {
  1773. name: "Macro",
  1774. height: math.unit(78, "feet"),
  1775. default: true
  1776. },
  1777. {
  1778. name: "Macro+",
  1779. height: math.unit(300, "meters")
  1780. },
  1781. {
  1782. name: "Macro++",
  1783. height: math.unit(2400, "meters")
  1784. },
  1785. {
  1786. name: "Megamacro",
  1787. height: math.unit(5167, "meters")
  1788. },
  1789. {
  1790. name: "Gigamacro",
  1791. height: math.unit(41769, "miles")
  1792. },
  1793. ]
  1794. ))
  1795. characterMakers.push(() => makeCharacter(
  1796. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1797. {
  1798. front: {
  1799. height: math.unit(1.65, "meters"),
  1800. weight: math.unit(50, "kg"),
  1801. name: "Front",
  1802. image: {
  1803. source: "./media/characters/elijah/front.svg",
  1804. extra: 858 / 830,
  1805. bottom: 95.5 / 953.8559
  1806. }
  1807. },
  1808. back: {
  1809. height: math.unit(1.65, "meters"),
  1810. weight: math.unit(50, "kg"),
  1811. name: "Back",
  1812. image: {
  1813. source: "./media/characters/elijah/back.svg",
  1814. extra: 895 / 850,
  1815. bottom: 5.3 / 897.956
  1816. }
  1817. },
  1818. frontNsfw: {
  1819. height: math.unit(1.65, "meters"),
  1820. weight: math.unit(50, "kg"),
  1821. name: "Front (NSFW)",
  1822. image: {
  1823. source: "./media/characters/elijah/front-nsfw.svg",
  1824. extra: 858 / 830,
  1825. bottom: 95.5 / 953.8559
  1826. }
  1827. },
  1828. backNsfw: {
  1829. height: math.unit(1.65, "meters"),
  1830. weight: math.unit(50, "kg"),
  1831. name: "Back (NSFW)",
  1832. image: {
  1833. source: "./media/characters/elijah/back-nsfw.svg",
  1834. extra: 895 / 850,
  1835. bottom: 5.3 / 897.956
  1836. }
  1837. },
  1838. dick: {
  1839. height: math.unit(1, "feet"),
  1840. name: "Dick",
  1841. image: {
  1842. source: "./media/characters/elijah/dick.svg"
  1843. }
  1844. },
  1845. beakOpen: {
  1846. height: math.unit(1.25, "feet"),
  1847. name: "Beak (Open)",
  1848. image: {
  1849. source: "./media/characters/elijah/beak-open.svg"
  1850. }
  1851. },
  1852. beakShut: {
  1853. height: math.unit(1.25, "feet"),
  1854. name: "Beak (Shut)",
  1855. image: {
  1856. source: "./media/characters/elijah/beak-shut.svg"
  1857. }
  1858. },
  1859. footFlexing: {
  1860. height: math.unit(1.61, "feet"),
  1861. name: "Foot (Flexing)",
  1862. image: {
  1863. source: "./media/characters/elijah/foot-flexing.svg"
  1864. }
  1865. },
  1866. footStepping: {
  1867. height: math.unit(1.44, "feet"),
  1868. name: "Foot (Stepping)",
  1869. image: {
  1870. source: "./media/characters/elijah/foot-stepping.svg"
  1871. }
  1872. },
  1873. plantigradeLeg: {
  1874. height: math.unit(2.34, "feet"),
  1875. name: "Plantigrade Leg",
  1876. image: {
  1877. source: "./media/characters/elijah/plantigrade-leg.svg"
  1878. }
  1879. },
  1880. plantigradeFootLeft: {
  1881. height: math.unit(0.9, "feet"),
  1882. name: "Plantigrade Foot (Left)",
  1883. image: {
  1884. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1885. }
  1886. },
  1887. plantigradeFootRight: {
  1888. height: math.unit(0.9, "feet"),
  1889. name: "Plantigrade Foot (Right)",
  1890. image: {
  1891. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1892. }
  1893. },
  1894. },
  1895. [
  1896. {
  1897. name: "Normal",
  1898. height: math.unit(1.65, "meters")
  1899. },
  1900. {
  1901. name: "Macro",
  1902. height: math.unit(55, "meters"),
  1903. default: true
  1904. },
  1905. {
  1906. name: "Macro+",
  1907. height: math.unit(105, "meters")
  1908. },
  1909. ]
  1910. ))
  1911. characterMakers.push(() => makeCharacter(
  1912. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1913. {
  1914. front: {
  1915. height: math.unit(11, "feet"),
  1916. weight: math.unit(80, "kg"),
  1917. name: "Front",
  1918. image: {
  1919. source: "./media/characters/rai/front.svg",
  1920. extra: 1,
  1921. bottom: 0.03
  1922. }
  1923. },
  1924. side: {
  1925. height: math.unit(11, "feet"),
  1926. weight: math.unit(80, "kg"),
  1927. name: "Side",
  1928. image: {
  1929. source: "./media/characters/rai/side.svg"
  1930. }
  1931. },
  1932. back: {
  1933. height: math.unit(11, "feet"),
  1934. weight: math.unit(80, "lb"),
  1935. name: "Back",
  1936. image: {
  1937. source: "./media/characters/rai/back.svg",
  1938. extra: 1,
  1939. bottom: 0.01
  1940. }
  1941. },
  1942. feral: {
  1943. height: math.unit(11, "feet"),
  1944. weight: math.unit(800, "lb"),
  1945. name: "Feral",
  1946. image: {
  1947. source: "./media/characters/rai/feral.svg",
  1948. extra: 1050 / 659,
  1949. bottom: 0.07
  1950. }
  1951. },
  1952. dragon: {
  1953. height: math.unit(23, "feet"),
  1954. weight: math.unit(50000, "lb"),
  1955. name: "Dragon",
  1956. image: {
  1957. source: "./media/characters/rai/dragon.svg",
  1958. extra: 2498 / 2030,
  1959. bottom: 85.2 / 2584
  1960. }
  1961. },
  1962. maw: {
  1963. height: math.unit(6 / 3.81416, "feet"),
  1964. name: "Maw",
  1965. image: {
  1966. source: "./media/characters/rai/maw.svg"
  1967. }
  1968. },
  1969. },
  1970. [
  1971. {
  1972. name: "Normal",
  1973. height: math.unit(11, "feet")
  1974. },
  1975. {
  1976. name: "Macro",
  1977. height: math.unit(302, "feet"),
  1978. default: true
  1979. },
  1980. ]
  1981. ))
  1982. characterMakers.push(() => makeCharacter(
  1983. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1984. {
  1985. frontDressed: {
  1986. height: math.unit(216, "feet"),
  1987. weight: math.unit(7000000, "lb"),
  1988. name: "Front (Dressed)",
  1989. image: {
  1990. source: "./media/characters/jazzy/front-dressed.svg",
  1991. extra: 2738 / 2651,
  1992. bottom: 41.8 / 2786
  1993. }
  1994. },
  1995. backDressed: {
  1996. height: math.unit(216, "feet"),
  1997. weight: math.unit(7000000, "lb"),
  1998. name: "Back (Dressed)",
  1999. image: {
  2000. source: "./media/characters/jazzy/back-dressed.svg",
  2001. extra: 2775 / 2673,
  2002. bottom: 36.8 / 2817
  2003. }
  2004. },
  2005. front: {
  2006. height: math.unit(216, "feet"),
  2007. weight: math.unit(7000000, "lb"),
  2008. name: "Front",
  2009. image: {
  2010. source: "./media/characters/jazzy/front.svg",
  2011. extra: 2738 / 2651,
  2012. bottom: 41.8 / 2786
  2013. }
  2014. },
  2015. back: {
  2016. height: math.unit(216, "feet"),
  2017. weight: math.unit(7000000, "lb"),
  2018. name: "Back",
  2019. image: {
  2020. source: "./media/characters/jazzy/back.svg",
  2021. extra: 2775 / 2673,
  2022. bottom: 36.8 / 2817
  2023. }
  2024. },
  2025. maw: {
  2026. height: math.unit(20, "feet"),
  2027. name: "Maw",
  2028. image: {
  2029. source: "./media/characters/jazzy/maw.svg"
  2030. }
  2031. },
  2032. paws: {
  2033. height: math.unit(27.5, "feet"),
  2034. name: "Paws",
  2035. image: {
  2036. source: "./media/characters/jazzy/paws.svg"
  2037. }
  2038. },
  2039. eye: {
  2040. height: math.unit(4.4, "feet"),
  2041. name: "Eye",
  2042. image: {
  2043. source: "./media/characters/jazzy/eye.svg"
  2044. }
  2045. },
  2046. droneOffense: {
  2047. height: math.unit(9.5, "inches"),
  2048. name: "Drone (Offense)",
  2049. image: {
  2050. source: "./media/characters/jazzy/drone-offense.svg"
  2051. }
  2052. },
  2053. droneRecon: {
  2054. height: math.unit(9.5, "inches"),
  2055. name: "Drone (Recon)",
  2056. image: {
  2057. source: "./media/characters/jazzy/drone-recon.svg"
  2058. }
  2059. },
  2060. droneDefense: {
  2061. height: math.unit(9.5, "inches"),
  2062. name: "Drone (Defense)",
  2063. image: {
  2064. source: "./media/characters/jazzy/drone-defense.svg"
  2065. }
  2066. },
  2067. },
  2068. [
  2069. {
  2070. name: "Macro",
  2071. height: math.unit(216, "feet"),
  2072. default: true
  2073. },
  2074. ]
  2075. ))
  2076. characterMakers.push(() => makeCharacter(
  2077. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2078. {
  2079. front: {
  2080. height: math.unit(7, "feet"),
  2081. weight: math.unit(80, "kg"),
  2082. name: "Front",
  2083. image: {
  2084. source: "./media/characters/flamm/front.svg",
  2085. extra: 1794 / 1677,
  2086. bottom: 31.7 / 1828.5
  2087. }
  2088. },
  2089. },
  2090. [
  2091. {
  2092. name: "Normal",
  2093. height: math.unit(9.5, "feet")
  2094. },
  2095. {
  2096. name: "Macro",
  2097. height: math.unit(200, "feet"),
  2098. default: true
  2099. },
  2100. ]
  2101. ))
  2102. characterMakers.push(() => makeCharacter(
  2103. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2104. {
  2105. front: {
  2106. height: math.unit(7, "feet"),
  2107. weight: math.unit(80, "kg"),
  2108. name: "Front",
  2109. image: {
  2110. source: "./media/characters/zephiro/front.svg",
  2111. extra: 2309 / 2162,
  2112. bottom: 0.069
  2113. }
  2114. },
  2115. side: {
  2116. height: math.unit(7, "feet"),
  2117. weight: math.unit(80, "kg"),
  2118. name: "Side",
  2119. image: {
  2120. source: "./media/characters/zephiro/side.svg",
  2121. extra: 2403 / 2279,
  2122. bottom: 0.015
  2123. }
  2124. },
  2125. back: {
  2126. height: math.unit(7, "feet"),
  2127. weight: math.unit(80, "kg"),
  2128. name: "Back",
  2129. image: {
  2130. source: "./media/characters/zephiro/back.svg",
  2131. extra: 2373 / 2244,
  2132. bottom: 0.013
  2133. }
  2134. },
  2135. },
  2136. [
  2137. {
  2138. name: "Micro",
  2139. height: math.unit(3, "inches")
  2140. },
  2141. {
  2142. name: "Normal",
  2143. height: math.unit(5 + 3 / 12, "feet"),
  2144. default: true
  2145. },
  2146. {
  2147. name: "Macro",
  2148. height: math.unit(118, "feet")
  2149. },
  2150. ]
  2151. ))
  2152. characterMakers.push(() => makeCharacter(
  2153. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2154. {
  2155. front: {
  2156. height: math.unit(5, "feet"),
  2157. weight: math.unit(90, "kg"),
  2158. name: "Front",
  2159. image: {
  2160. source: "./media/characters/fory/front.svg",
  2161. extra: 2862 / 2674,
  2162. bottom: 180 / 3043.8
  2163. }
  2164. },
  2165. back: {
  2166. height: math.unit(5, "feet"),
  2167. weight: math.unit(90, "kg"),
  2168. name: "Back",
  2169. image: {
  2170. source: "./media/characters/fory/back.svg",
  2171. extra: 2962 / 2791,
  2172. bottom: 106 / 3071.8
  2173. }
  2174. },
  2175. foot: {
  2176. height: math.unit(2.14, "feet"),
  2177. name: "Foot",
  2178. image: {
  2179. source: "./media/characters/fory/foot.svg"
  2180. }
  2181. },
  2182. },
  2183. [
  2184. {
  2185. name: "Normal",
  2186. height: math.unit(5, "feet")
  2187. },
  2188. {
  2189. name: "Macro",
  2190. height: math.unit(50, "feet"),
  2191. default: true
  2192. },
  2193. {
  2194. name: "Megamacro",
  2195. height: math.unit(10, "miles")
  2196. },
  2197. {
  2198. name: "Gigamacro",
  2199. height: math.unit(5, "earths")
  2200. },
  2201. ]
  2202. ))
  2203. characterMakers.push(() => makeCharacter(
  2204. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2205. {
  2206. front: {
  2207. height: math.unit(7, "feet"),
  2208. weight: math.unit(90, "kg"),
  2209. name: "Front",
  2210. image: {
  2211. source: "./media/characters/kurrikage/front.svg",
  2212. extra: 1,
  2213. bottom: 0.035
  2214. }
  2215. },
  2216. back: {
  2217. height: math.unit(7, "feet"),
  2218. weight: math.unit(90, "lb"),
  2219. name: "Back",
  2220. image: {
  2221. source: "./media/characters/kurrikage/back.svg"
  2222. }
  2223. },
  2224. paw: {
  2225. height: math.unit(1.5, "feet"),
  2226. name: "Paw",
  2227. image: {
  2228. source: "./media/characters/kurrikage/paw.svg"
  2229. }
  2230. },
  2231. staff: {
  2232. height: math.unit(6.7, "feet"),
  2233. name: "Staff",
  2234. image: {
  2235. source: "./media/characters/kurrikage/staff.svg"
  2236. }
  2237. },
  2238. peek: {
  2239. height: math.unit(1.05, "feet"),
  2240. name: "Peeking",
  2241. image: {
  2242. source: "./media/characters/kurrikage/peek.svg",
  2243. bottom: 0.08
  2244. }
  2245. },
  2246. },
  2247. [
  2248. {
  2249. name: "Normal",
  2250. height: math.unit(12, "feet"),
  2251. default: true
  2252. },
  2253. {
  2254. name: "Big",
  2255. height: math.unit(20, "feet")
  2256. },
  2257. {
  2258. name: "Macro",
  2259. height: math.unit(500, "feet")
  2260. },
  2261. {
  2262. name: "Megamacro",
  2263. height: math.unit(20, "miles")
  2264. },
  2265. ]
  2266. ))
  2267. characterMakers.push(() => makeCharacter(
  2268. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2269. {
  2270. front: {
  2271. height: math.unit(6, "feet"),
  2272. weight: math.unit(75, "kg"),
  2273. name: "Front",
  2274. image: {
  2275. source: "./media/characters/shingo/front.svg",
  2276. extra: 3511 / 3338,
  2277. bottom: 0.005
  2278. }
  2279. },
  2280. paw: {
  2281. height: math.unit(1, "feet"),
  2282. name: "Paw",
  2283. image: {
  2284. source: "./media/characters/shingo/paw.svg"
  2285. }
  2286. },
  2287. },
  2288. [
  2289. {
  2290. name: "Micro",
  2291. height: math.unit(4, "inches")
  2292. },
  2293. {
  2294. name: "Normal",
  2295. height: math.unit(6, "feet"),
  2296. default: true
  2297. },
  2298. {
  2299. name: "Macro",
  2300. height: math.unit(108, "feet")
  2301. }
  2302. ]
  2303. ))
  2304. characterMakers.push(() => makeCharacter(
  2305. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2306. {
  2307. side: {
  2308. height: math.unit(6, "feet"),
  2309. weight: math.unit(75, "kg"),
  2310. name: "Side",
  2311. image: {
  2312. source: "./media/characters/aigey/side.svg"
  2313. }
  2314. },
  2315. },
  2316. [
  2317. {
  2318. name: "Macro",
  2319. height: math.unit(200, "feet"),
  2320. default: true
  2321. },
  2322. {
  2323. name: "Megamacro",
  2324. height: math.unit(100, "miles")
  2325. },
  2326. ]
  2327. )
  2328. )
  2329. characterMakers.push(() => makeCharacter(
  2330. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2331. {
  2332. front: {
  2333. height: math.unit(5 + 5 / 12, "feet"),
  2334. weight: math.unit(75, "kg"),
  2335. name: "Front",
  2336. image: {
  2337. source: "./media/characters/natasha/front.svg",
  2338. extra: 859 / 824,
  2339. bottom: 23 / 879.6
  2340. }
  2341. },
  2342. frontNsfw: {
  2343. height: math.unit(5 + 5 / 12, "feet"),
  2344. weight: math.unit(75, "kg"),
  2345. name: "Front (NSFW)",
  2346. image: {
  2347. source: "./media/characters/natasha/front-nsfw.svg",
  2348. extra: 859 / 824,
  2349. bottom: 23 / 879.6
  2350. }
  2351. },
  2352. frontErect: {
  2353. height: math.unit(5 + 5 / 12, "feet"),
  2354. weight: math.unit(75, "kg"),
  2355. name: "Front (Erect)",
  2356. image: {
  2357. source: "./media/characters/natasha/front-erect.svg",
  2358. extra: 859 / 824,
  2359. bottom: 23 / 879.6
  2360. }
  2361. },
  2362. back: {
  2363. height: math.unit(5 + 5 / 12, "feet"),
  2364. weight: math.unit(75, "kg"),
  2365. name: "Back",
  2366. image: {
  2367. source: "./media/characters/natasha/back.svg",
  2368. extra: 887.9 / 852.6,
  2369. bottom: 9.7 / 896.4
  2370. }
  2371. },
  2372. backAlt: {
  2373. height: math.unit(5 + 5 / 12, "feet"),
  2374. weight: math.unit(75, "kg"),
  2375. name: "Back (Alt)",
  2376. image: {
  2377. source: "./media/characters/natasha/back-alt.svg",
  2378. extra: 1236.7 / 1192,
  2379. bottom: 22.3 / 1258.2
  2380. }
  2381. },
  2382. dick: {
  2383. height: math.unit(1.772, "feet"),
  2384. name: "Dick",
  2385. image: {
  2386. source: "./media/characters/natasha/dick.svg"
  2387. }
  2388. },
  2389. },
  2390. [
  2391. {
  2392. name: "Normal",
  2393. height: math.unit(5 + 5 / 12, "feet")
  2394. },
  2395. {
  2396. name: "Large",
  2397. height: math.unit(12, "feet")
  2398. },
  2399. {
  2400. name: "Macro",
  2401. height: math.unit(100, "feet"),
  2402. default: true
  2403. },
  2404. {
  2405. name: "Macro+",
  2406. height: math.unit(260, "feet")
  2407. },
  2408. {
  2409. name: "Macro++",
  2410. height: math.unit(1, "mile")
  2411. },
  2412. ]
  2413. ))
  2414. characterMakers.push(() => makeCharacter(
  2415. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2416. {
  2417. front: {
  2418. height: math.unit(6, "feet"),
  2419. weight: math.unit(75, "kg"),
  2420. name: "Front",
  2421. image: {
  2422. source: "./media/characters/malik/front.svg"
  2423. }
  2424. },
  2425. side: {
  2426. height: math.unit(6, "feet"),
  2427. weight: math.unit(75, "kg"),
  2428. name: "Side",
  2429. image: {
  2430. source: "./media/characters/malik/side.svg",
  2431. extra: 1.1539
  2432. }
  2433. },
  2434. back: {
  2435. height: math.unit(6, "feet"),
  2436. weight: math.unit(75, "kg"),
  2437. name: "Back",
  2438. image: {
  2439. source: "./media/characters/malik/back.svg"
  2440. }
  2441. },
  2442. },
  2443. [
  2444. {
  2445. name: "Macro",
  2446. height: math.unit(156, "feet"),
  2447. default: true
  2448. },
  2449. {
  2450. name: "Macro+",
  2451. height: math.unit(1188, "feet")
  2452. },
  2453. ]
  2454. ))
  2455. characterMakers.push(() => makeCharacter(
  2456. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2457. {
  2458. front: {
  2459. height: math.unit(6, "feet"),
  2460. weight: math.unit(75, "kg"),
  2461. name: "Front",
  2462. image: {
  2463. source: "./media/characters/sefer/front.svg",
  2464. extra: 848 / 659,
  2465. bottom: 28.3 / 876.442
  2466. }
  2467. },
  2468. back: {
  2469. height: math.unit(6, "feet"),
  2470. weight: math.unit(75, "kg"),
  2471. name: "Back",
  2472. image: {
  2473. source: "./media/characters/sefer/back.svg",
  2474. extra: 864 / 695,
  2475. bottom: 10 / 871
  2476. }
  2477. },
  2478. frontDressed: {
  2479. height: math.unit(6, "feet"),
  2480. weight: math.unit(75, "kg"),
  2481. name: "Front (Dressed)",
  2482. image: {
  2483. source: "./media/characters/sefer/front-dressed.svg",
  2484. extra: 839 / 653,
  2485. bottom: 37.6 / 878
  2486. }
  2487. },
  2488. },
  2489. [
  2490. {
  2491. name: "Normal",
  2492. height: math.unit(6, "feet"),
  2493. default: true
  2494. },
  2495. ]
  2496. ))
  2497. characterMakers.push(() => makeCharacter(
  2498. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2499. {
  2500. body: {
  2501. height: math.unit(2.2428, "meter"),
  2502. weight: math.unit(124.738, "kg"),
  2503. name: "Body",
  2504. image: {
  2505. extra: 1225 / 1050,
  2506. source: "./media/characters/north/front.svg"
  2507. }
  2508. }
  2509. },
  2510. [
  2511. {
  2512. name: "Micro",
  2513. height: math.unit(4, "inches")
  2514. },
  2515. {
  2516. name: "Macro",
  2517. height: math.unit(63, "meters")
  2518. },
  2519. {
  2520. name: "Megamacro",
  2521. height: math.unit(101, "miles"),
  2522. default: true
  2523. }
  2524. ]
  2525. ))
  2526. characterMakers.push(() => makeCharacter(
  2527. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2528. {
  2529. angled: {
  2530. height: math.unit(4, "meter"),
  2531. weight: math.unit(150, "kg"),
  2532. name: "Angled",
  2533. image: {
  2534. source: "./media/characters/talan/angled-sfw.svg",
  2535. bottom: 29 / 3734
  2536. }
  2537. },
  2538. angledNsfw: {
  2539. height: math.unit(4, "meter"),
  2540. weight: math.unit(150, "kg"),
  2541. name: "Angled (NSFW)",
  2542. image: {
  2543. source: "./media/characters/talan/angled-nsfw.svg",
  2544. bottom: 29 / 3734
  2545. }
  2546. },
  2547. frontNsfw: {
  2548. height: math.unit(4, "meter"),
  2549. weight: math.unit(150, "kg"),
  2550. name: "Front (NSFW)",
  2551. image: {
  2552. source: "./media/characters/talan/front-nsfw.svg",
  2553. bottom: 29 / 3734
  2554. }
  2555. },
  2556. sideNsfw: {
  2557. height: math.unit(4, "meter"),
  2558. weight: math.unit(150, "kg"),
  2559. name: "Side (NSFW)",
  2560. image: {
  2561. source: "./media/characters/talan/side-nsfw.svg",
  2562. bottom: 29 / 3734
  2563. }
  2564. },
  2565. back: {
  2566. height: math.unit(4, "meter"),
  2567. weight: math.unit(150, "kg"),
  2568. name: "Back",
  2569. image: {
  2570. source: "./media/characters/talan/back.svg"
  2571. }
  2572. },
  2573. dickBottom: {
  2574. height: math.unit(0.621, "meter"),
  2575. name: "Dick (Bottom)",
  2576. image: {
  2577. source: "./media/characters/talan/dick-bottom.svg"
  2578. }
  2579. },
  2580. dickTop: {
  2581. height: math.unit(0.621, "meter"),
  2582. name: "Dick (Top)",
  2583. image: {
  2584. source: "./media/characters/talan/dick-top.svg"
  2585. }
  2586. },
  2587. dickSide: {
  2588. height: math.unit(0.305, "meter"),
  2589. name: "Dick (Side)",
  2590. image: {
  2591. source: "./media/characters/talan/dick-side.svg"
  2592. }
  2593. },
  2594. dickFront: {
  2595. height: math.unit(0.305, "meter"),
  2596. name: "Dick (Front)",
  2597. image: {
  2598. source: "./media/characters/talan/dick-front.svg"
  2599. }
  2600. },
  2601. },
  2602. [
  2603. {
  2604. name: "Normal",
  2605. height: math.unit(4, "meters")
  2606. },
  2607. {
  2608. name: "Macro",
  2609. height: math.unit(100, "meters")
  2610. },
  2611. {
  2612. name: "Megamacro",
  2613. height: math.unit(2, "miles"),
  2614. default: true
  2615. },
  2616. {
  2617. name: "Gigamacro",
  2618. height: math.unit(5000, "miles")
  2619. },
  2620. {
  2621. name: "Teramacro",
  2622. height: math.unit(100, "parsecs")
  2623. }
  2624. ]
  2625. ))
  2626. characterMakers.push(() => makeCharacter(
  2627. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2628. {
  2629. front: {
  2630. height: math.unit(2, "meter"),
  2631. weight: math.unit(90, "kg"),
  2632. name: "Front",
  2633. image: {
  2634. source: "./media/characters/gael'rathus/front.svg"
  2635. }
  2636. },
  2637. frontAlt: {
  2638. height: math.unit(2, "meter"),
  2639. weight: math.unit(90, "kg"),
  2640. name: "Front (alt)",
  2641. image: {
  2642. source: "./media/characters/gael'rathus/front-alt.svg"
  2643. }
  2644. },
  2645. frontAlt2: {
  2646. height: math.unit(2, "meter"),
  2647. weight: math.unit(90, "kg"),
  2648. name: "Front (alt 2)",
  2649. image: {
  2650. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2651. }
  2652. }
  2653. },
  2654. [
  2655. {
  2656. name: "Normal",
  2657. height: math.unit(9, "feet"),
  2658. default: true
  2659. },
  2660. {
  2661. name: "Large",
  2662. height: math.unit(25, "feet")
  2663. },
  2664. {
  2665. name: "Macro",
  2666. height: math.unit(0.25, "miles")
  2667. },
  2668. {
  2669. name: "Megamacro",
  2670. height: math.unit(10, "miles")
  2671. }
  2672. ]
  2673. ))
  2674. characterMakers.push(() => makeCharacter(
  2675. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2676. {
  2677. side: {
  2678. height: math.unit(2, "meter"),
  2679. weight: math.unit(140, "kg"),
  2680. name: "Side",
  2681. image: {
  2682. source: "./media/characters/sosha/side.svg",
  2683. bottom: 0.042
  2684. }
  2685. },
  2686. },
  2687. [
  2688. {
  2689. name: "Normal",
  2690. height: math.unit(12, "feet"),
  2691. default: true
  2692. }
  2693. ]
  2694. ))
  2695. characterMakers.push(() => makeCharacter(
  2696. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2697. {
  2698. side: {
  2699. height: math.unit(5 + 5 / 12, "feet"),
  2700. weight: math.unit(170, "kg"),
  2701. name: "Side",
  2702. image: {
  2703. source: "./media/characters/runnola/side.svg",
  2704. extra: 741 / 448,
  2705. bottom: 0.05
  2706. }
  2707. },
  2708. },
  2709. [
  2710. {
  2711. name: "Small",
  2712. height: math.unit(3, "feet")
  2713. },
  2714. {
  2715. name: "Normal",
  2716. height: math.unit(5 + 5 / 12, "feet"),
  2717. default: true
  2718. },
  2719. {
  2720. name: "Big",
  2721. height: math.unit(10, "feet")
  2722. },
  2723. ]
  2724. ))
  2725. characterMakers.push(() => makeCharacter(
  2726. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2727. {
  2728. front: {
  2729. height: math.unit(2, "meter"),
  2730. weight: math.unit(50, "kg"),
  2731. name: "Front",
  2732. image: {
  2733. source: "./media/characters/kurribird/front.svg",
  2734. bottom: 0.015
  2735. }
  2736. },
  2737. frontAlt: {
  2738. height: math.unit(1.5, "meter"),
  2739. weight: math.unit(50, "kg"),
  2740. name: "Front (Alt)",
  2741. image: {
  2742. source: "./media/characters/kurribird/front-alt.svg",
  2743. extra: 1.45
  2744. }
  2745. },
  2746. },
  2747. [
  2748. {
  2749. name: "Normal",
  2750. height: math.unit(7, "feet")
  2751. },
  2752. {
  2753. name: "Big",
  2754. height: math.unit(12, "feet"),
  2755. default: true
  2756. },
  2757. {
  2758. name: "Macro",
  2759. height: math.unit(1500, "feet")
  2760. },
  2761. {
  2762. name: "Megamacro",
  2763. height: math.unit(2, "miles")
  2764. }
  2765. ]
  2766. ))
  2767. characterMakers.push(() => makeCharacter(
  2768. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2769. {
  2770. front: {
  2771. height: math.unit(2, "meter"),
  2772. weight: math.unit(80, "kg"),
  2773. name: "Front",
  2774. image: {
  2775. source: "./media/characters/elbial/front.svg",
  2776. extra: 1643 / 1556,
  2777. bottom: 60.2 / 1696
  2778. }
  2779. },
  2780. side: {
  2781. height: math.unit(2, "meter"),
  2782. weight: math.unit(80, "kg"),
  2783. name: "Side",
  2784. image: {
  2785. source: "./media/characters/elbial/side.svg",
  2786. extra: 1630 / 1565,
  2787. bottom: 71.5 / 1697
  2788. }
  2789. },
  2790. back: {
  2791. height: math.unit(2, "meter"),
  2792. weight: math.unit(80, "kg"),
  2793. name: "Back",
  2794. image: {
  2795. source: "./media/characters/elbial/back.svg",
  2796. extra: 1668 / 1595,
  2797. bottom: 5.6 / 1672
  2798. }
  2799. },
  2800. frontDressed: {
  2801. height: math.unit(2, "meter"),
  2802. weight: math.unit(80, "kg"),
  2803. name: "Front (Dressed)",
  2804. image: {
  2805. source: "./media/characters/elbial/front-dressed.svg",
  2806. extra: 1653 / 1584,
  2807. bottom: 57 / 1708
  2808. }
  2809. },
  2810. genitals: {
  2811. height: math.unit(2 / 3.367, "meter"),
  2812. name: "Genitals",
  2813. image: {
  2814. source: "./media/characters/elbial/genitals.svg"
  2815. }
  2816. },
  2817. },
  2818. [
  2819. {
  2820. name: "Large",
  2821. height: math.unit(100, "feet")
  2822. },
  2823. {
  2824. name: "Macro",
  2825. height: math.unit(500, "feet"),
  2826. default: true
  2827. },
  2828. {
  2829. name: "Megamacro",
  2830. height: math.unit(10, "miles")
  2831. },
  2832. {
  2833. name: "Gigamacro",
  2834. height: math.unit(25000, "miles")
  2835. },
  2836. {
  2837. name: "Full-Size",
  2838. height: math.unit(8000000, "gigaparsecs")
  2839. }
  2840. ]
  2841. ))
  2842. characterMakers.push(() => makeCharacter(
  2843. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2844. {
  2845. front: {
  2846. height: math.unit(2, "meter"),
  2847. weight: math.unit(60, "kg"),
  2848. name: "Front",
  2849. image: {
  2850. source: "./media/characters/noah/front.svg"
  2851. }
  2852. },
  2853. talons: {
  2854. height: math.unit(0.315, "meter"),
  2855. name: "Talons",
  2856. image: {
  2857. source: "./media/characters/noah/talons.svg"
  2858. }
  2859. }
  2860. },
  2861. [
  2862. {
  2863. name: "Large",
  2864. height: math.unit(50, "feet")
  2865. },
  2866. {
  2867. name: "Macro",
  2868. height: math.unit(750, "feet"),
  2869. default: true
  2870. },
  2871. {
  2872. name: "Megamacro",
  2873. height: math.unit(50, "miles")
  2874. },
  2875. {
  2876. name: "Gigamacro",
  2877. height: math.unit(100000, "miles")
  2878. },
  2879. {
  2880. name: "Full-Size",
  2881. height: math.unit(3000000000, "miles")
  2882. }
  2883. ]
  2884. ))
  2885. characterMakers.push(() => makeCharacter(
  2886. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2887. {
  2888. front: {
  2889. height: math.unit(2, "meter"),
  2890. weight: math.unit(80, "kg"),
  2891. name: "Front",
  2892. image: {
  2893. source: "./media/characters/natalya/front.svg"
  2894. }
  2895. },
  2896. back: {
  2897. height: math.unit(2, "meter"),
  2898. weight: math.unit(80, "kg"),
  2899. name: "Back",
  2900. image: {
  2901. source: "./media/characters/natalya/back.svg"
  2902. }
  2903. }
  2904. },
  2905. [
  2906. {
  2907. name: "Normal",
  2908. height: math.unit(150, "feet"),
  2909. default: true
  2910. },
  2911. {
  2912. name: "Megamacro",
  2913. height: math.unit(5, "miles")
  2914. },
  2915. {
  2916. name: "Full-Size",
  2917. height: math.unit(600, "kiloparsecs")
  2918. }
  2919. ]
  2920. ))
  2921. characterMakers.push(() => makeCharacter(
  2922. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2923. {
  2924. front: {
  2925. height: math.unit(2, "meter"),
  2926. weight: math.unit(50, "kg"),
  2927. name: "Front",
  2928. image: {
  2929. source: "./media/characters/erestrebah/front.svg",
  2930. extra: 208 / 193,
  2931. bottom: 0.055
  2932. }
  2933. },
  2934. back: {
  2935. height: math.unit(2, "meter"),
  2936. weight: math.unit(50, "kg"),
  2937. name: "Back",
  2938. image: {
  2939. source: "./media/characters/erestrebah/back.svg",
  2940. extra: 1.3
  2941. }
  2942. }
  2943. },
  2944. [
  2945. {
  2946. name: "Normal",
  2947. height: math.unit(10, "feet")
  2948. },
  2949. {
  2950. name: "Large",
  2951. height: math.unit(50, "feet"),
  2952. default: true
  2953. },
  2954. {
  2955. name: "Macro",
  2956. height: math.unit(300, "feet")
  2957. },
  2958. {
  2959. name: "Macro+",
  2960. height: math.unit(750, "feet")
  2961. },
  2962. {
  2963. name: "Megamacro",
  2964. height: math.unit(3, "miles")
  2965. }
  2966. ]
  2967. ))
  2968. characterMakers.push(() => makeCharacter(
  2969. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2970. {
  2971. front: {
  2972. height: math.unit(2, "meter"),
  2973. weight: math.unit(80, "kg"),
  2974. name: "Front",
  2975. image: {
  2976. source: "./media/characters/jennifer/front.svg",
  2977. bottom: 0.11,
  2978. extra: 1.16
  2979. }
  2980. },
  2981. frontAlt: {
  2982. height: math.unit(2, "meter"),
  2983. weight: math.unit(80, "kg"),
  2984. name: "Front (Alt)",
  2985. image: {
  2986. source: "./media/characters/jennifer/front-alt.svg"
  2987. }
  2988. }
  2989. },
  2990. [
  2991. {
  2992. name: "Canon Height",
  2993. height: math.unit(120, "feet"),
  2994. default: true
  2995. },
  2996. {
  2997. name: "Macro+",
  2998. height: math.unit(300, "feet")
  2999. },
  3000. {
  3001. name: "Megamacro",
  3002. height: math.unit(20000, "feet")
  3003. }
  3004. ]
  3005. ))
  3006. characterMakers.push(() => makeCharacter(
  3007. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3008. {
  3009. front: {
  3010. height: math.unit(2, "meter"),
  3011. weight: math.unit(50, "kg"),
  3012. name: "Front",
  3013. image: {
  3014. source: "./media/characters/kalista/front.svg",
  3015. extra: 1947 / 1700,
  3016. bottom: 76.6 / 1412.98
  3017. }
  3018. },
  3019. back: {
  3020. height: math.unit(2, "meter"),
  3021. weight: math.unit(50, "kg"),
  3022. name: "Back",
  3023. image: {
  3024. source: "./media/characters/kalista/back.svg",
  3025. extra: 1366 / 1156,
  3026. bottom: 33.9 / 1362.78
  3027. }
  3028. }
  3029. },
  3030. [
  3031. {
  3032. name: "Uncomfortably Small",
  3033. height: math.unit(10, "feet")
  3034. },
  3035. {
  3036. name: "Small",
  3037. height: math.unit(30, "feet")
  3038. },
  3039. {
  3040. name: "Macro",
  3041. height: math.unit(100, "feet"),
  3042. default: true
  3043. },
  3044. {
  3045. name: "Macro+",
  3046. height: math.unit(2000, "feet")
  3047. },
  3048. {
  3049. name: "True Form",
  3050. height: math.unit(8924, "miles")
  3051. }
  3052. ]
  3053. ))
  3054. characterMakers.push(() => makeCharacter(
  3055. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3056. {
  3057. front: {
  3058. height: math.unit(2, "meter"),
  3059. weight: math.unit(120, "kg"),
  3060. name: "Front",
  3061. image: {
  3062. source: "./media/characters/ggv/front.svg"
  3063. }
  3064. },
  3065. side: {
  3066. height: math.unit(2, "meter"),
  3067. weight: math.unit(120, "kg"),
  3068. name: "Side",
  3069. image: {
  3070. source: "./media/characters/ggv/side.svg"
  3071. }
  3072. }
  3073. },
  3074. [
  3075. {
  3076. name: "Extremely Puny",
  3077. height: math.unit(9 + 5 / 12, "feet")
  3078. },
  3079. {
  3080. name: "Horribly Small",
  3081. height: math.unit(47.7, "miles"),
  3082. default: true
  3083. },
  3084. {
  3085. name: "Reasonably Sized",
  3086. height: math.unit(25000, "parsecs")
  3087. },
  3088. {
  3089. name: "Slightly Uncompressed",
  3090. height: math.unit(7.77e31, "parsecs")
  3091. },
  3092. {
  3093. name: "Omniversal",
  3094. height: math.unit(1e300, "meters")
  3095. },
  3096. ]
  3097. ))
  3098. characterMakers.push(() => makeCharacter(
  3099. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3100. {
  3101. front: {
  3102. height: math.unit(2, "meter"),
  3103. weight: math.unit(75, "lb"),
  3104. name: "Front",
  3105. image: {
  3106. source: "./media/characters/napalm/front.svg"
  3107. }
  3108. },
  3109. back: {
  3110. height: math.unit(2, "meter"),
  3111. weight: math.unit(75, "lb"),
  3112. name: "Back",
  3113. image: {
  3114. source: "./media/characters/napalm/back.svg"
  3115. }
  3116. }
  3117. },
  3118. [
  3119. {
  3120. name: "Standard",
  3121. height: math.unit(55, "feet"),
  3122. default: true
  3123. }
  3124. ]
  3125. ))
  3126. characterMakers.push(() => makeCharacter(
  3127. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3128. {
  3129. front: {
  3130. height: math.unit(7 + 5 / 6, "feet"),
  3131. weight: math.unit(325, "lb"),
  3132. name: "Front",
  3133. image: {
  3134. source: "./media/characters/asana/front.svg",
  3135. extra: 1133 / 1060,
  3136. bottom: 15.2 / 1148.6
  3137. }
  3138. },
  3139. back: {
  3140. height: math.unit(7 + 5 / 6, "feet"),
  3141. weight: math.unit(325, "lb"),
  3142. name: "Back",
  3143. image: {
  3144. source: "./media/characters/asana/back.svg",
  3145. extra: 1114 / 1043,
  3146. bottom: 5 / 1120
  3147. }
  3148. },
  3149. dressedDark: {
  3150. height: math.unit(7 + 5 / 6, "feet"),
  3151. weight: math.unit(325, "lb"),
  3152. name: "Dressed (Dark)",
  3153. image: {
  3154. source: "./media/characters/asana/dressed-dark.svg",
  3155. extra: 1133 / 1060,
  3156. bottom: 15.2 / 1148.6
  3157. }
  3158. },
  3159. dressedLight: {
  3160. height: math.unit(7 + 5 / 6, "feet"),
  3161. weight: math.unit(325, "lb"),
  3162. name: "Dressed (Light)",
  3163. image: {
  3164. source: "./media/characters/asana/dressed-light.svg",
  3165. extra: 1133 / 1060,
  3166. bottom: 15.2 / 1148.6
  3167. }
  3168. },
  3169. },
  3170. [
  3171. {
  3172. name: "Standard",
  3173. height: math.unit(7 + 5 / 6, "feet"),
  3174. default: true
  3175. },
  3176. {
  3177. name: "Large",
  3178. height: math.unit(10, "meters")
  3179. },
  3180. {
  3181. name: "Macro",
  3182. height: math.unit(2500, "meters")
  3183. },
  3184. {
  3185. name: "Megamacro",
  3186. height: math.unit(5e6, "meters")
  3187. },
  3188. {
  3189. name: "Examacro",
  3190. height: math.unit(5e12, "lightyears")
  3191. },
  3192. {
  3193. name: "Max Size",
  3194. height: math.unit(1e31, "lightyears")
  3195. }
  3196. ]
  3197. ))
  3198. characterMakers.push(() => makeCharacter(
  3199. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3200. {
  3201. front: {
  3202. height: math.unit(2, "meter"),
  3203. weight: math.unit(60, "kg"),
  3204. name: "Front",
  3205. image: {
  3206. source: "./media/characters/ebony/front.svg",
  3207. bottom: 0.03,
  3208. extra: 1045 / 810 + 0.03
  3209. }
  3210. },
  3211. side: {
  3212. height: math.unit(2, "meter"),
  3213. weight: math.unit(60, "kg"),
  3214. name: "Side",
  3215. image: {
  3216. source: "./media/characters/ebony/side.svg",
  3217. bottom: 0.03,
  3218. extra: 1045 / 810 + 0.03
  3219. }
  3220. },
  3221. back: {
  3222. height: math.unit(2, "meter"),
  3223. weight: math.unit(60, "kg"),
  3224. name: "Back",
  3225. image: {
  3226. source: "./media/characters/ebony/back.svg",
  3227. bottom: 0.01,
  3228. extra: 1045 / 810 + 0.01
  3229. }
  3230. },
  3231. },
  3232. [
  3233. // TODO check why I did this lol
  3234. {
  3235. name: "Standard",
  3236. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3237. default: true
  3238. },
  3239. {
  3240. name: "Macro",
  3241. height: math.unit(200, "feet")
  3242. },
  3243. {
  3244. name: "Gigamacro",
  3245. height: math.unit(13000, "km")
  3246. }
  3247. ]
  3248. ))
  3249. characterMakers.push(() => makeCharacter(
  3250. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3251. {
  3252. front: {
  3253. height: math.unit(6, "feet"),
  3254. weight: math.unit(175, "lb"),
  3255. name: "Front",
  3256. image: {
  3257. source: "./media/characters/mountain/front.svg",
  3258. extra: 972 / 955,
  3259. bottom: 64 / 1036.6
  3260. }
  3261. },
  3262. back: {
  3263. height: math.unit(6, "feet"),
  3264. weight: math.unit(175, "lb"),
  3265. name: "Back",
  3266. image: {
  3267. source: "./media/characters/mountain/back.svg",
  3268. extra: 970 / 950,
  3269. bottom: 28.25 / 999
  3270. }
  3271. },
  3272. },
  3273. [
  3274. {
  3275. name: "Large",
  3276. height: math.unit(20, "meters")
  3277. },
  3278. {
  3279. name: "Macro",
  3280. height: math.unit(300, "meters")
  3281. },
  3282. {
  3283. name: "Gigamacro",
  3284. height: math.unit(10000, "km"),
  3285. default: true
  3286. },
  3287. {
  3288. name: "Examacro",
  3289. height: math.unit(10e9, "lightyears")
  3290. }
  3291. ]
  3292. ))
  3293. characterMakers.push(() => makeCharacter(
  3294. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3295. {
  3296. front: {
  3297. height: math.unit(8, "feet"),
  3298. weight: math.unit(500, "lb"),
  3299. name: "Front",
  3300. image: {
  3301. source: "./media/characters/rick/front.svg"
  3302. }
  3303. }
  3304. },
  3305. [
  3306. {
  3307. name: "Normal",
  3308. height: math.unit(8, "feet"),
  3309. default: true
  3310. },
  3311. {
  3312. name: "Macro",
  3313. height: math.unit(5, "km")
  3314. }
  3315. ]
  3316. ))
  3317. characterMakers.push(() => makeCharacter(
  3318. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3319. {
  3320. front: {
  3321. height: math.unit(8, "feet"),
  3322. weight: math.unit(120, "lb"),
  3323. name: "Front",
  3324. image: {
  3325. source: "./media/characters/ona/front.svg"
  3326. }
  3327. },
  3328. frontAlt: {
  3329. height: math.unit(8, "feet"),
  3330. weight: math.unit(120, "lb"),
  3331. name: "Front (Alt)",
  3332. image: {
  3333. source: "./media/characters/ona/front-alt.svg"
  3334. }
  3335. },
  3336. back: {
  3337. height: math.unit(8, "feet"),
  3338. weight: math.unit(120, "lb"),
  3339. name: "Back",
  3340. image: {
  3341. source: "./media/characters/ona/back.svg"
  3342. }
  3343. },
  3344. foot: {
  3345. height: math.unit(1.1, "feet"),
  3346. name: "Foot",
  3347. image: {
  3348. source: "./media/characters/ona/foot.svg"
  3349. }
  3350. }
  3351. },
  3352. [
  3353. {
  3354. name: "Megamacro",
  3355. height: math.unit(70, "km"),
  3356. default: true
  3357. },
  3358. {
  3359. name: "Gigamacro",
  3360. height: math.unit(681818, "miles")
  3361. },
  3362. {
  3363. name: "Examacro",
  3364. height: math.unit(3800000, "lightyears")
  3365. },
  3366. ]
  3367. ))
  3368. characterMakers.push(() => makeCharacter(
  3369. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3370. {
  3371. front: {
  3372. height: math.unit(12, "feet"),
  3373. weight: math.unit(3000, "lb"),
  3374. name: "Front",
  3375. image: {
  3376. source: "./media/characters/mech/front.svg",
  3377. bottom: 0.025,
  3378. }
  3379. },
  3380. back: {
  3381. height: math.unit(12, "feet"),
  3382. weight: math.unit(3000, "lb"),
  3383. name: "Back",
  3384. image: {
  3385. source: "./media/characters/mech/back.svg",
  3386. bottom: 0.03,
  3387. }
  3388. }
  3389. },
  3390. [
  3391. {
  3392. name: "Normal",
  3393. height: math.unit(12, "feet")
  3394. },
  3395. {
  3396. name: "Macro",
  3397. height: math.unit(300, "feet"),
  3398. default: true
  3399. },
  3400. {
  3401. name: "Macro+",
  3402. height: math.unit(1500, "feet")
  3403. },
  3404. ]
  3405. ))
  3406. characterMakers.push(() => makeCharacter(
  3407. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3408. {
  3409. front: {
  3410. height: math.unit(1.3, "meter"),
  3411. weight: math.unit(30, "kg"),
  3412. name: "Front",
  3413. image: {
  3414. source: "./media/characters/gregory/front.svg",
  3415. }
  3416. }
  3417. },
  3418. [
  3419. {
  3420. name: "Normal",
  3421. height: math.unit(1.3, "meter"),
  3422. default: true
  3423. },
  3424. {
  3425. name: "Macro",
  3426. height: math.unit(20, "meter")
  3427. }
  3428. ]
  3429. ))
  3430. characterMakers.push(() => makeCharacter(
  3431. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3432. {
  3433. front: {
  3434. height: math.unit(2.8, "meter"),
  3435. weight: math.unit(200, "kg"),
  3436. name: "Front",
  3437. image: {
  3438. source: "./media/characters/elory/front.svg",
  3439. }
  3440. }
  3441. },
  3442. [
  3443. {
  3444. name: "Normal",
  3445. height: math.unit(2.8, "meter"),
  3446. default: true
  3447. },
  3448. {
  3449. name: "Macro",
  3450. height: math.unit(38, "meter")
  3451. }
  3452. ]
  3453. ))
  3454. characterMakers.push(() => makeCharacter(
  3455. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3456. {
  3457. front: {
  3458. height: math.unit(470, "feet"),
  3459. weight: math.unit(924, "tons"),
  3460. name: "Front",
  3461. image: {
  3462. source: "./media/characters/angelpatamon/front.svg",
  3463. }
  3464. }
  3465. },
  3466. [
  3467. {
  3468. name: "Normal",
  3469. height: math.unit(470, "feet"),
  3470. default: true
  3471. },
  3472. {
  3473. name: "Deity Size I",
  3474. height: math.unit(28651.2, "km")
  3475. },
  3476. {
  3477. name: "Deity Size II",
  3478. height: math.unit(171907.2, "km")
  3479. }
  3480. ]
  3481. ))
  3482. characterMakers.push(() => makeCharacter(
  3483. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3484. {
  3485. side: {
  3486. height: math.unit(7.2, "meter"),
  3487. weight: math.unit(8.2, "tons"),
  3488. name: "Side",
  3489. image: {
  3490. source: "./media/characters/cryae/side.svg",
  3491. extra: 3500 / 1500
  3492. }
  3493. }
  3494. },
  3495. [
  3496. {
  3497. name: "Normal",
  3498. height: math.unit(7.2, "meter"),
  3499. default: true
  3500. }
  3501. ]
  3502. ))
  3503. characterMakers.push(() => makeCharacter(
  3504. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3505. {
  3506. front: {
  3507. height: math.unit(6, "feet"),
  3508. weight: math.unit(175, "lb"),
  3509. name: "Front",
  3510. image: {
  3511. source: "./media/characters/xera/front.svg",
  3512. extra: 2377 / 1972,
  3513. bottom: 75.5 / 2452
  3514. }
  3515. },
  3516. side: {
  3517. height: math.unit(6, "feet"),
  3518. weight: math.unit(175, "lb"),
  3519. name: "Side",
  3520. image: {
  3521. source: "./media/characters/xera/side.svg",
  3522. extra: 2345 / 2019,
  3523. bottom: 39.7 / 2384
  3524. }
  3525. },
  3526. back: {
  3527. height: math.unit(6, "feet"),
  3528. weight: math.unit(175, "lb"),
  3529. name: "Back",
  3530. image: {
  3531. source: "./media/characters/xera/back.svg",
  3532. extra: 2095 / 1984,
  3533. bottom: 67 / 2166
  3534. }
  3535. },
  3536. },
  3537. [
  3538. {
  3539. name: "Small",
  3540. height: math.unit(10, "feet")
  3541. },
  3542. {
  3543. name: "Macro",
  3544. height: math.unit(500, "meters"),
  3545. default: true
  3546. },
  3547. {
  3548. name: "Macro+",
  3549. height: math.unit(10, "km")
  3550. },
  3551. {
  3552. name: "Gigamacro",
  3553. height: math.unit(25000, "km")
  3554. },
  3555. {
  3556. name: "Teramacro",
  3557. height: math.unit(3e6, "km")
  3558. }
  3559. ]
  3560. ))
  3561. characterMakers.push(() => makeCharacter(
  3562. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3563. {
  3564. front: {
  3565. height: math.unit(6, "feet"),
  3566. weight: math.unit(175, "lb"),
  3567. name: "Front",
  3568. image: {
  3569. source: "./media/characters/nebula/front.svg",
  3570. extra: 2566 / 2362,
  3571. bottom: 81 / 2644
  3572. }
  3573. }
  3574. },
  3575. [
  3576. {
  3577. name: "Small",
  3578. height: math.unit(4.5, "meters")
  3579. },
  3580. {
  3581. name: "Macro",
  3582. height: math.unit(1500, "meters"),
  3583. default: true
  3584. },
  3585. {
  3586. name: "Megamacro",
  3587. height: math.unit(150, "km")
  3588. },
  3589. {
  3590. name: "Gigamacro",
  3591. height: math.unit(27000, "km")
  3592. }
  3593. ]
  3594. ))
  3595. characterMakers.push(() => makeCharacter(
  3596. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3597. {
  3598. front: {
  3599. height: math.unit(6, "feet"),
  3600. weight: math.unit(225, "lb"),
  3601. name: "Front",
  3602. image: {
  3603. source: "./media/characters/abysgar/front.svg"
  3604. }
  3605. }
  3606. },
  3607. [
  3608. {
  3609. name: "Small",
  3610. height: math.unit(4.5, "meters")
  3611. },
  3612. {
  3613. name: "Macro",
  3614. height: math.unit(1250, "meters"),
  3615. default: true
  3616. },
  3617. {
  3618. name: "Megamacro",
  3619. height: math.unit(125, "km")
  3620. },
  3621. {
  3622. name: "Gigamacro",
  3623. height: math.unit(26000, "km")
  3624. }
  3625. ]
  3626. ))
  3627. characterMakers.push(() => makeCharacter(
  3628. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3629. {
  3630. front: {
  3631. height: math.unit(6, "feet"),
  3632. weight: math.unit(180, "lb"),
  3633. name: "Front",
  3634. image: {
  3635. source: "./media/characters/yakuz/front.svg"
  3636. }
  3637. }
  3638. },
  3639. [
  3640. {
  3641. name: "Small",
  3642. height: math.unit(5, "meters")
  3643. },
  3644. {
  3645. name: "Macro",
  3646. height: math.unit(1500, "meters"),
  3647. default: true
  3648. },
  3649. {
  3650. name: "Megamacro",
  3651. height: math.unit(200, "km")
  3652. },
  3653. {
  3654. name: "Gigamacro",
  3655. height: math.unit(100000, "km")
  3656. }
  3657. ]
  3658. ))
  3659. characterMakers.push(() => makeCharacter(
  3660. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3661. {
  3662. front: {
  3663. height: math.unit(6, "feet"),
  3664. weight: math.unit(175, "lb"),
  3665. name: "Front",
  3666. image: {
  3667. source: "./media/characters/mirova/front.svg",
  3668. extra: 3334 / 3071,
  3669. bottom: 42 / 3375.6
  3670. }
  3671. }
  3672. },
  3673. [
  3674. {
  3675. name: "Small",
  3676. height: math.unit(5, "meters")
  3677. },
  3678. {
  3679. name: "Macro",
  3680. height: math.unit(900, "meters"),
  3681. default: true
  3682. },
  3683. {
  3684. name: "Megamacro",
  3685. height: math.unit(135, "km")
  3686. },
  3687. {
  3688. name: "Gigamacro",
  3689. height: math.unit(20000, "km")
  3690. }
  3691. ]
  3692. ))
  3693. characterMakers.push(() => makeCharacter(
  3694. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3695. {
  3696. side: {
  3697. height: math.unit(28.35, "feet"),
  3698. weight: math.unit(99.75, "tons"),
  3699. name: "Side",
  3700. image: {
  3701. source: "./media/characters/asana-mech/side.svg",
  3702. extra: 923 / 699,
  3703. bottom: 50 / 975
  3704. }
  3705. },
  3706. chaingun: {
  3707. height: math.unit(7, "feet"),
  3708. weight: math.unit(2400, "lb"),
  3709. name: "Chaingun",
  3710. image: {
  3711. source: "./media/characters/asana-mech/chaingun.svg"
  3712. }
  3713. },
  3714. laser: {
  3715. height: math.unit(7.12, "feet"),
  3716. weight: math.unit(2000, "lb"),
  3717. name: "Laser",
  3718. image: {
  3719. source: "./media/characters/asana-mech/laser.svg"
  3720. }
  3721. },
  3722. },
  3723. [
  3724. {
  3725. name: "Normal",
  3726. height: math.unit(28.35, "feet"),
  3727. default: true
  3728. },
  3729. {
  3730. name: "Macro",
  3731. height: math.unit(2500, "feet")
  3732. },
  3733. {
  3734. name: "Megamacro",
  3735. height: math.unit(25, "miles")
  3736. },
  3737. {
  3738. name: "Examacro",
  3739. height: math.unit(6e8, "lightyears")
  3740. },
  3741. ]
  3742. ))
  3743. characterMakers.push(() => makeCharacter(
  3744. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3745. {
  3746. front: {
  3747. height: math.unit(5, "meters"),
  3748. weight: math.unit(1000, "kg"),
  3749. name: "Front",
  3750. image: {
  3751. source: "./media/characters/asche/front.svg",
  3752. extra: 1258 / 1190,
  3753. bottom: 47 / 1305
  3754. }
  3755. },
  3756. frontUnderwear: {
  3757. height: math.unit(5, "meters"),
  3758. weight: math.unit(1000, "kg"),
  3759. name: "Front (Underwear)",
  3760. image: {
  3761. source: "./media/characters/asche/front-underwear.svg",
  3762. extra: 1258 / 1190,
  3763. bottom: 47 / 1305
  3764. }
  3765. },
  3766. frontDressed: {
  3767. height: math.unit(5, "meters"),
  3768. weight: math.unit(1000, "kg"),
  3769. name: "Front (Dressed)",
  3770. image: {
  3771. source: "./media/characters/asche/front-dressed.svg",
  3772. extra: 1258 / 1190,
  3773. bottom: 47 / 1305
  3774. }
  3775. },
  3776. frontArmor: {
  3777. height: math.unit(5, "meters"),
  3778. weight: math.unit(1000, "kg"),
  3779. name: "Front (Armored)",
  3780. image: {
  3781. source: "./media/characters/asche/front-armored.svg",
  3782. extra: 1374 / 1308,
  3783. bottom: 23 / 1397
  3784. }
  3785. },
  3786. mp724: {
  3787. height: math.unit(0.96, "meters"),
  3788. weight: math.unit(38, "kg"),
  3789. name: "H&K MP724",
  3790. image: {
  3791. source: "./media/characters/asche/h&k-mp724.svg"
  3792. }
  3793. },
  3794. side: {
  3795. height: math.unit(5, "meters"),
  3796. weight: math.unit(1000, "kg"),
  3797. name: "Side",
  3798. image: {
  3799. source: "./media/characters/asche/side.svg",
  3800. extra: 1717 / 1609,
  3801. bottom: 0.005
  3802. }
  3803. },
  3804. back: {
  3805. height: math.unit(5, "meters"),
  3806. weight: math.unit(1000, "kg"),
  3807. name: "Back",
  3808. image: {
  3809. source: "./media/characters/asche/back.svg",
  3810. extra: 1570 / 1501
  3811. }
  3812. },
  3813. },
  3814. [
  3815. {
  3816. name: "DEFCON 5",
  3817. height: math.unit(5, "meters")
  3818. },
  3819. {
  3820. name: "DEFCON 4",
  3821. height: math.unit(500, "meters"),
  3822. default: true
  3823. },
  3824. {
  3825. name: "DEFCON 3",
  3826. height: math.unit(5, "km")
  3827. },
  3828. {
  3829. name: "DEFCON 2",
  3830. height: math.unit(500, "km")
  3831. },
  3832. {
  3833. name: "DEFCON 1",
  3834. height: math.unit(500000, "km")
  3835. },
  3836. {
  3837. name: "DEFCON 0",
  3838. height: math.unit(3, "gigaparsecs")
  3839. },
  3840. ]
  3841. ))
  3842. characterMakers.push(() => makeCharacter(
  3843. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3844. {
  3845. front: {
  3846. height: math.unit(2, "meters"),
  3847. weight: math.unit(76, "kg"),
  3848. name: "Front",
  3849. image: {
  3850. source: "./media/characters/gale/front.svg"
  3851. }
  3852. },
  3853. frontAlt1: {
  3854. height: math.unit(2, "meters"),
  3855. weight: math.unit(76, "kg"),
  3856. name: "Front (Alt 1)",
  3857. image: {
  3858. source: "./media/characters/gale/front-alt-1.svg"
  3859. }
  3860. },
  3861. frontAlt2: {
  3862. height: math.unit(2, "meters"),
  3863. weight: math.unit(76, "kg"),
  3864. name: "Front (Alt 2)",
  3865. image: {
  3866. source: "./media/characters/gale/front-alt-2.svg"
  3867. }
  3868. },
  3869. },
  3870. [
  3871. {
  3872. name: "Normal",
  3873. height: math.unit(7, "feet")
  3874. },
  3875. {
  3876. name: "Macro",
  3877. height: math.unit(150, "feet"),
  3878. default: true
  3879. },
  3880. {
  3881. name: "Macro+",
  3882. height: math.unit(300, "feet")
  3883. },
  3884. ]
  3885. ))
  3886. characterMakers.push(() => makeCharacter(
  3887. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3888. {
  3889. front: {
  3890. height: math.unit(2, "meters"),
  3891. weight: math.unit(76, "kg"),
  3892. name: "Front",
  3893. image: {
  3894. source: "./media/characters/draylen/front.svg"
  3895. }
  3896. }
  3897. },
  3898. [
  3899. {
  3900. name: "Macro",
  3901. height: math.unit(150, "feet"),
  3902. default: true
  3903. }
  3904. ]
  3905. ))
  3906. characterMakers.push(() => makeCharacter(
  3907. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3908. {
  3909. front: {
  3910. height: math.unit(7 + 9 / 12, "feet"),
  3911. weight: math.unit(379, "lbs"),
  3912. name: "Front",
  3913. image: {
  3914. source: "./media/characters/chez/front.svg"
  3915. }
  3916. },
  3917. side: {
  3918. height: math.unit(7 + 9 / 12, "feet"),
  3919. weight: math.unit(379, "lbs"),
  3920. name: "Side",
  3921. image: {
  3922. source: "./media/characters/chez/side.svg"
  3923. }
  3924. }
  3925. },
  3926. [
  3927. {
  3928. name: "Normal",
  3929. height: math.unit(7 + 9 / 12, "feet"),
  3930. default: true
  3931. },
  3932. {
  3933. name: "God King",
  3934. height: math.unit(9750000, "meters")
  3935. }
  3936. ]
  3937. ))
  3938. characterMakers.push(() => makeCharacter(
  3939. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3940. {
  3941. front: {
  3942. height: math.unit(6, "feet"),
  3943. weight: math.unit(275, "lbs"),
  3944. name: "Front",
  3945. image: {
  3946. source: "./media/characters/kaylum/front.svg",
  3947. bottom: 0.01,
  3948. extra: 1166 / 1031
  3949. }
  3950. },
  3951. frontWingless: {
  3952. height: math.unit(6, "feet"),
  3953. weight: math.unit(275, "lbs"),
  3954. name: "Front (Wingless)",
  3955. image: {
  3956. source: "./media/characters/kaylum/front-wingless.svg",
  3957. bottom: 0.01,
  3958. extra: 1117 / 1031
  3959. }
  3960. }
  3961. },
  3962. [
  3963. {
  3964. name: "Normal",
  3965. height: math.unit(3.05, "meters")
  3966. },
  3967. {
  3968. name: "Master",
  3969. height: math.unit(5.5, "meters")
  3970. },
  3971. {
  3972. name: "Rampage",
  3973. height: math.unit(19, "meters")
  3974. },
  3975. {
  3976. name: "Macro Lite",
  3977. height: math.unit(37, "meters")
  3978. },
  3979. {
  3980. name: "Hyper Predator",
  3981. height: math.unit(61, "meters")
  3982. },
  3983. {
  3984. name: "Macro",
  3985. height: math.unit(138, "meters"),
  3986. default: true
  3987. }
  3988. ]
  3989. ))
  3990. characterMakers.push(() => makeCharacter(
  3991. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3992. {
  3993. front: {
  3994. height: math.unit(6, "feet"),
  3995. weight: math.unit(150, "lbs"),
  3996. name: "Front",
  3997. image: {
  3998. source: "./media/characters/geta/front.svg"
  3999. }
  4000. }
  4001. },
  4002. [
  4003. {
  4004. name: "Micro",
  4005. height: math.unit(3, "inches"),
  4006. default: true
  4007. },
  4008. {
  4009. name: "Normal",
  4010. height: math.unit(5 + 5 / 12, "feet")
  4011. }
  4012. ]
  4013. ))
  4014. characterMakers.push(() => makeCharacter(
  4015. { name: "Tyrnn", species: ["dragon"], 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/tyrnn/front.svg"
  4023. }
  4024. }
  4025. },
  4026. [
  4027. {
  4028. name: "Main Height",
  4029. height: math.unit(355, "feet"),
  4030. default: true
  4031. },
  4032. {
  4033. name: "Fave. Height",
  4034. height: math.unit(2400, "feet")
  4035. }
  4036. ]
  4037. ))
  4038. characterMakers.push(() => makeCharacter(
  4039. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4040. {
  4041. front: {
  4042. height: math.unit(6, "feet"),
  4043. weight: math.unit(300, "lbs"),
  4044. name: "Front",
  4045. image: {
  4046. source: "./media/characters/appledectomy/front.svg"
  4047. }
  4048. }
  4049. },
  4050. [
  4051. {
  4052. name: "Macro",
  4053. height: math.unit(2500, "feet")
  4054. },
  4055. {
  4056. name: "Megamacro",
  4057. height: math.unit(50, "miles"),
  4058. default: true
  4059. },
  4060. {
  4061. name: "Gigamacro",
  4062. height: math.unit(5000, "miles")
  4063. },
  4064. {
  4065. name: "Teramacro",
  4066. height: math.unit(250000, "miles")
  4067. },
  4068. ]
  4069. ))
  4070. characterMakers.push(() => makeCharacter(
  4071. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4072. {
  4073. front: {
  4074. height: math.unit(6, "feet"),
  4075. weight: math.unit(200, "lbs"),
  4076. name: "Front",
  4077. image: {
  4078. source: "./media/characters/vulpes/front.svg",
  4079. extra: 573 / 543,
  4080. bottom: 0.033
  4081. }
  4082. },
  4083. side: {
  4084. height: math.unit(6, "feet"),
  4085. weight: math.unit(200, "lbs"),
  4086. name: "Side",
  4087. image: {
  4088. source: "./media/characters/vulpes/side.svg",
  4089. extra: 577 / 549,
  4090. bottom: 11 / 588
  4091. }
  4092. },
  4093. back: {
  4094. height: math.unit(6, "feet"),
  4095. weight: math.unit(200, "lbs"),
  4096. name: "Back",
  4097. image: {
  4098. source: "./media/characters/vulpes/back.svg",
  4099. extra: 573 / 549,
  4100. bottom: 20 / 593
  4101. }
  4102. },
  4103. feet: {
  4104. height: math.unit(1.276, "feet"),
  4105. name: "Feet",
  4106. image: {
  4107. source: "./media/characters/vulpes/feet.svg"
  4108. }
  4109. },
  4110. maw: {
  4111. height: math.unit(1.18, "feet"),
  4112. name: "Maw",
  4113. image: {
  4114. source: "./media/characters/vulpes/maw.svg"
  4115. }
  4116. },
  4117. },
  4118. [
  4119. {
  4120. name: "Micro",
  4121. height: math.unit(2, "inches")
  4122. },
  4123. {
  4124. name: "Normal",
  4125. height: math.unit(6.3, "feet")
  4126. },
  4127. {
  4128. name: "Macro",
  4129. height: math.unit(850, "feet")
  4130. },
  4131. {
  4132. name: "Megamacro",
  4133. height: math.unit(7500, "feet"),
  4134. default: true
  4135. },
  4136. {
  4137. name: "Gigamacro",
  4138. height: math.unit(570000, "miles")
  4139. }
  4140. ]
  4141. ))
  4142. characterMakers.push(() => makeCharacter(
  4143. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4144. {
  4145. front: {
  4146. height: math.unit(6, "feet"),
  4147. weight: math.unit(210, "lbs"),
  4148. name: "Front",
  4149. image: {
  4150. source: "./media/characters/rain-fallen/front.svg"
  4151. }
  4152. },
  4153. side: {
  4154. height: math.unit(6, "feet"),
  4155. weight: math.unit(210, "lbs"),
  4156. name: "Side",
  4157. image: {
  4158. source: "./media/characters/rain-fallen/side.svg"
  4159. }
  4160. },
  4161. back: {
  4162. height: math.unit(6, "feet"),
  4163. weight: math.unit(210, "lbs"),
  4164. name: "Back",
  4165. image: {
  4166. source: "./media/characters/rain-fallen/back.svg"
  4167. }
  4168. },
  4169. feral: {
  4170. height: math.unit(9, "feet"),
  4171. weight: math.unit(700, "lbs"),
  4172. name: "Feral",
  4173. image: {
  4174. source: "./media/characters/rain-fallen/feral.svg"
  4175. }
  4176. },
  4177. },
  4178. [
  4179. {
  4180. name: "Normal",
  4181. height: math.unit(5, "meter")
  4182. },
  4183. {
  4184. name: "Macro",
  4185. height: math.unit(150, "meter"),
  4186. default: true
  4187. },
  4188. {
  4189. name: "Megamacro",
  4190. height: math.unit(278e6, "meter")
  4191. },
  4192. {
  4193. name: "Gigamacro",
  4194. height: math.unit(2e9, "meter")
  4195. },
  4196. {
  4197. name: "Teramacro",
  4198. height: math.unit(8e12, "meter")
  4199. },
  4200. {
  4201. name: "Devourer",
  4202. height: math.unit(14, "zettameters")
  4203. },
  4204. {
  4205. name: "Scarlet King",
  4206. height: math.unit(18, "yottameters")
  4207. },
  4208. {
  4209. name: "Void",
  4210. height: math.unit(6.66e66, "yottameters")
  4211. }
  4212. ]
  4213. ))
  4214. characterMakers.push(() => makeCharacter(
  4215. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4216. {
  4217. standing: {
  4218. height: math.unit(6, "feet"),
  4219. weight: math.unit(180, "lbs"),
  4220. name: "Standing",
  4221. image: {
  4222. source: "./media/characters/zaakira/standing.svg"
  4223. }
  4224. },
  4225. laying: {
  4226. height: math.unit(3, "feet"),
  4227. weight: math.unit(180, "lbs"),
  4228. name: "Laying",
  4229. image: {
  4230. source: "./media/characters/zaakira/laying.svg"
  4231. }
  4232. },
  4233. },
  4234. [
  4235. {
  4236. name: "Normal",
  4237. height: math.unit(12, "feet")
  4238. },
  4239. {
  4240. name: "Macro",
  4241. height: math.unit(279, "feet"),
  4242. default: true
  4243. }
  4244. ]
  4245. ))
  4246. characterMakers.push(() => makeCharacter(
  4247. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4248. {
  4249. femSfw: {
  4250. height: math.unit(8, "feet"),
  4251. weight: math.unit(350, "lb"),
  4252. name: "Fem",
  4253. image: {
  4254. source: "./media/characters/sigvald/fem-sfw.svg",
  4255. extra: 182 / 164,
  4256. bottom: 8.7 / 190.5
  4257. }
  4258. },
  4259. femNsfw: {
  4260. height: math.unit(8, "feet"),
  4261. weight: math.unit(350, "lb"),
  4262. name: "Fem (NSFW)",
  4263. image: {
  4264. source: "./media/characters/sigvald/fem-nsfw.svg",
  4265. extra: 182 / 164,
  4266. bottom: 8.7 / 190.5
  4267. }
  4268. },
  4269. maleNsfw: {
  4270. height: math.unit(8, "feet"),
  4271. weight: math.unit(350, "lb"),
  4272. name: "Male (NSFW)",
  4273. image: {
  4274. source: "./media/characters/sigvald/male-nsfw.svg",
  4275. extra: 182 / 164,
  4276. bottom: 8.7 / 190.5
  4277. }
  4278. },
  4279. hermNsfw: {
  4280. height: math.unit(8, "feet"),
  4281. weight: math.unit(350, "lb"),
  4282. name: "Herm (NSFW)",
  4283. image: {
  4284. source: "./media/characters/sigvald/herm-nsfw.svg",
  4285. extra: 182 / 164,
  4286. bottom: 8.7 / 190.5
  4287. }
  4288. },
  4289. dick: {
  4290. height: math.unit(2.36, "feet"),
  4291. name: "Dick",
  4292. image: {
  4293. source: "./media/characters/sigvald/dick.svg"
  4294. }
  4295. },
  4296. eye: {
  4297. height: math.unit(0.31, "feet"),
  4298. name: "Eye",
  4299. image: {
  4300. source: "./media/characters/sigvald/eye.svg"
  4301. }
  4302. },
  4303. mouth: {
  4304. height: math.unit(0.92, "feet"),
  4305. name: "Mouth",
  4306. image: {
  4307. source: "./media/characters/sigvald/mouth.svg"
  4308. }
  4309. },
  4310. paws: {
  4311. height: math.unit(2.2, "feet"),
  4312. name: "Paws",
  4313. image: {
  4314. source: "./media/characters/sigvald/paws.svg"
  4315. }
  4316. }
  4317. },
  4318. [
  4319. {
  4320. name: "Normal",
  4321. height: math.unit(8, "feet")
  4322. },
  4323. {
  4324. name: "Large",
  4325. height: math.unit(12, "feet")
  4326. },
  4327. {
  4328. name: "Larger",
  4329. height: math.unit(20, "feet")
  4330. },
  4331. {
  4332. name: "Macro",
  4333. height: math.unit(150, "feet")
  4334. },
  4335. {
  4336. name: "Macro+",
  4337. height: math.unit(200, "feet"),
  4338. default: true
  4339. },
  4340. ]
  4341. ))
  4342. characterMakers.push(() => makeCharacter(
  4343. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4344. {
  4345. side: {
  4346. height: math.unit(12, "feet"),
  4347. weight: math.unit(2000, "kg"),
  4348. name: "Side",
  4349. image: {
  4350. source: "./media/characters/scott/side.svg",
  4351. extra: 754 / 724,
  4352. bottom: 0.069
  4353. }
  4354. },
  4355. upright: {
  4356. height: math.unit(12, "feet"),
  4357. weight: math.unit(2000, "kg"),
  4358. name: "Upright",
  4359. image: {
  4360. source: "./media/characters/scott/upright.svg",
  4361. extra: 3881 / 3722,
  4362. bottom: 0.05
  4363. }
  4364. },
  4365. },
  4366. [
  4367. {
  4368. name: "Normal",
  4369. height: math.unit(12, "feet"),
  4370. default: true
  4371. },
  4372. ]
  4373. ))
  4374. characterMakers.push(() => makeCharacter(
  4375. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4376. {
  4377. side: {
  4378. height: math.unit(8, "meters"),
  4379. weight: math.unit(84755, "lbs"),
  4380. name: "Side",
  4381. image: {
  4382. source: "./media/characters/tobias/side.svg",
  4383. extra: 1474 / 1096,
  4384. bottom: 38.9 / 1513.1235
  4385. }
  4386. },
  4387. },
  4388. [
  4389. {
  4390. name: "Normal",
  4391. height: math.unit(8, "meters"),
  4392. default: true
  4393. },
  4394. ]
  4395. ))
  4396. characterMakers.push(() => makeCharacter(
  4397. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4398. {
  4399. front: {
  4400. height: math.unit(5.5, "feet"),
  4401. weight: math.unit(400, "lbs"),
  4402. name: "Front",
  4403. image: {
  4404. source: "./media/characters/kieran/front.svg",
  4405. extra: 2694 / 2364,
  4406. bottom: 217 / 2908
  4407. }
  4408. },
  4409. side: {
  4410. height: math.unit(5.5, "feet"),
  4411. weight: math.unit(400, "lbs"),
  4412. name: "Side",
  4413. image: {
  4414. source: "./media/characters/kieran/side.svg",
  4415. extra: 875 / 777,
  4416. bottom: 84.6 / 959
  4417. }
  4418. },
  4419. },
  4420. [
  4421. {
  4422. name: "Normal",
  4423. height: math.unit(5.5, "feet"),
  4424. default: true
  4425. },
  4426. ]
  4427. ))
  4428. characterMakers.push(() => makeCharacter(
  4429. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4430. {
  4431. side: {
  4432. height: math.unit(2, "meters"),
  4433. weight: math.unit(70, "kg"),
  4434. name: "Side",
  4435. image: {
  4436. source: "./media/characters/sanya/side.svg",
  4437. bottom: 0.02,
  4438. extra: 1.02
  4439. }
  4440. },
  4441. },
  4442. [
  4443. {
  4444. name: "Small",
  4445. height: math.unit(2, "meters")
  4446. },
  4447. {
  4448. name: "Normal",
  4449. height: math.unit(3, "meters")
  4450. },
  4451. {
  4452. name: "Macro",
  4453. height: math.unit(16, "meters"),
  4454. default: true
  4455. },
  4456. ]
  4457. ))
  4458. characterMakers.push(() => makeCharacter(
  4459. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4460. {
  4461. front: {
  4462. height: math.unit(2, "meters"),
  4463. weight: math.unit(120, "kg"),
  4464. name: "Front",
  4465. image: {
  4466. source: "./media/characters/miranda/front.svg",
  4467. extra: 195 / 185,
  4468. bottom: 10.9 / 206.5
  4469. }
  4470. },
  4471. back: {
  4472. height: math.unit(2, "meters"),
  4473. weight: math.unit(120, "kg"),
  4474. name: "Back",
  4475. image: {
  4476. source: "./media/characters/miranda/back.svg",
  4477. extra: 201 / 193,
  4478. bottom: 2.3 / 203.7
  4479. }
  4480. },
  4481. },
  4482. [
  4483. {
  4484. name: "Normal",
  4485. height: math.unit(10, "feet"),
  4486. default: true
  4487. }
  4488. ]
  4489. ))
  4490. characterMakers.push(() => makeCharacter(
  4491. { name: "James", species: ["deer"], tags: ["anthro"] },
  4492. {
  4493. side: {
  4494. height: math.unit(2, "meters"),
  4495. weight: math.unit(100, "kg"),
  4496. name: "Front",
  4497. image: {
  4498. source: "./media/characters/james/front.svg",
  4499. extra: 10 / 8.5
  4500. }
  4501. },
  4502. },
  4503. [
  4504. {
  4505. name: "Normal",
  4506. height: math.unit(8.5, "feet"),
  4507. default: true
  4508. }
  4509. ]
  4510. ))
  4511. characterMakers.push(() => makeCharacter(
  4512. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4513. {
  4514. side: {
  4515. height: math.unit(9.5, "feet"),
  4516. weight: math.unit(2500, "lbs"),
  4517. name: "Side",
  4518. image: {
  4519. source: "./media/characters/heather/side.svg"
  4520. }
  4521. },
  4522. },
  4523. [
  4524. {
  4525. name: "Normal",
  4526. height: math.unit(9.5, "feet"),
  4527. default: true
  4528. }
  4529. ]
  4530. ))
  4531. characterMakers.push(() => makeCharacter(
  4532. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4533. {
  4534. side: {
  4535. height: math.unit(6.5, "feet"),
  4536. weight: math.unit(400, "lbs"),
  4537. name: "Side",
  4538. image: {
  4539. source: "./media/characters/lukas/side.svg",
  4540. extra: 7.25 / 6.5
  4541. }
  4542. },
  4543. },
  4544. [
  4545. {
  4546. name: "Normal",
  4547. height: math.unit(6.5, "feet"),
  4548. default: true
  4549. }
  4550. ]
  4551. ))
  4552. characterMakers.push(() => makeCharacter(
  4553. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4554. {
  4555. side: {
  4556. height: math.unit(5, "feet"),
  4557. weight: math.unit(3000, "lbs"),
  4558. name: "Side",
  4559. image: {
  4560. source: "./media/characters/louise/side.svg"
  4561. }
  4562. },
  4563. },
  4564. [
  4565. {
  4566. name: "Normal",
  4567. height: math.unit(5, "feet"),
  4568. default: true
  4569. }
  4570. ]
  4571. ))
  4572. characterMakers.push(() => makeCharacter(
  4573. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4574. {
  4575. side: {
  4576. height: math.unit(6, "feet"),
  4577. weight: math.unit(150, "lbs"),
  4578. name: "Side",
  4579. image: {
  4580. source: "./media/characters/ramona/side.svg"
  4581. }
  4582. },
  4583. },
  4584. [
  4585. {
  4586. name: "Normal",
  4587. height: math.unit(5.3, "meters"),
  4588. default: true
  4589. },
  4590. {
  4591. name: "Macro",
  4592. height: math.unit(20, "stories")
  4593. },
  4594. {
  4595. name: "Macro+",
  4596. height: math.unit(50, "stories")
  4597. },
  4598. ]
  4599. ))
  4600. characterMakers.push(() => makeCharacter(
  4601. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4602. {
  4603. standing: {
  4604. height: math.unit(5.75, "feet"),
  4605. weight: math.unit(160, "lbs"),
  4606. name: "Standing",
  4607. image: {
  4608. source: "./media/characters/deerpuff/standing.svg",
  4609. extra: 682 / 624
  4610. }
  4611. },
  4612. sitting: {
  4613. height: math.unit(5.75 / 1.79, "feet"),
  4614. weight: math.unit(160, "lbs"),
  4615. name: "Sitting",
  4616. image: {
  4617. source: "./media/characters/deerpuff/sitting.svg",
  4618. bottom: 44 / 400,
  4619. extra: 1
  4620. }
  4621. },
  4622. taurLaying: {
  4623. height: math.unit(6, "feet"),
  4624. weight: math.unit(400, "lbs"),
  4625. name: "Taur (Laying)",
  4626. image: {
  4627. source: "./media/characters/deerpuff/taur-laying.svg"
  4628. }
  4629. },
  4630. },
  4631. [
  4632. {
  4633. name: "Puffball",
  4634. height: math.unit(6, "inches")
  4635. },
  4636. {
  4637. name: "Normalpuff",
  4638. height: math.unit(5.75, "feet")
  4639. },
  4640. {
  4641. name: "Macropuff",
  4642. height: math.unit(1500, "feet"),
  4643. default: true
  4644. },
  4645. {
  4646. name: "Megapuff",
  4647. height: math.unit(500, "miles")
  4648. },
  4649. {
  4650. name: "Gigapuff",
  4651. height: math.unit(250000, "miles")
  4652. },
  4653. {
  4654. name: "Omegapuff",
  4655. height: math.unit(1000, "lightyears")
  4656. },
  4657. ]
  4658. ))
  4659. characterMakers.push(() => makeCharacter(
  4660. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4661. {
  4662. stomping: {
  4663. height: math.unit(6, "feet"),
  4664. weight: math.unit(170, "lbs"),
  4665. name: "Stomping",
  4666. image: {
  4667. source: "./media/characters/vivian/stomping.svg"
  4668. }
  4669. },
  4670. sitting: {
  4671. height: math.unit(6 / 1.75, "feet"),
  4672. weight: math.unit(170, "lbs"),
  4673. name: "Sitting",
  4674. image: {
  4675. source: "./media/characters/vivian/sitting.svg",
  4676. bottom: 1 / 6.4,
  4677. extra: 1,
  4678. }
  4679. },
  4680. },
  4681. [
  4682. {
  4683. name: "Normal",
  4684. height: math.unit(7, "feet"),
  4685. default: true
  4686. },
  4687. {
  4688. name: "Macro",
  4689. height: math.unit(10, "stories")
  4690. },
  4691. {
  4692. name: "Macro+",
  4693. height: math.unit(30, "stories")
  4694. },
  4695. {
  4696. name: "Megamacro",
  4697. height: math.unit(10, "miles")
  4698. },
  4699. {
  4700. name: "Megamacro+",
  4701. height: math.unit(2750000, "meters")
  4702. },
  4703. ]
  4704. ))
  4705. characterMakers.push(() => makeCharacter(
  4706. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4707. {
  4708. front: {
  4709. height: math.unit(6, "feet"),
  4710. weight: math.unit(160, "lbs"),
  4711. name: "Front",
  4712. image: {
  4713. source: "./media/characters/prince/front.svg",
  4714. extra: 3400 / 3000
  4715. }
  4716. },
  4717. jumping: {
  4718. height: math.unit(6, "feet"),
  4719. weight: math.unit(160, "lbs"),
  4720. name: "Jumping",
  4721. image: {
  4722. source: "./media/characters/prince/jump.svg",
  4723. extra: 2555 / 2134
  4724. }
  4725. },
  4726. },
  4727. [
  4728. {
  4729. name: "Normal",
  4730. height: math.unit(7.75, "feet"),
  4731. default: true
  4732. },
  4733. {
  4734. name: "Not cute",
  4735. height: math.unit(17, "feet")
  4736. },
  4737. {
  4738. name: "I said NOT",
  4739. height: math.unit(91, "feet")
  4740. },
  4741. {
  4742. name: "Please stop",
  4743. height: math.unit(560, "feet")
  4744. },
  4745. {
  4746. name: "What have you done",
  4747. height: math.unit(2200, "feet")
  4748. },
  4749. {
  4750. name: "Deer God",
  4751. height: math.unit(3.6, "miles")
  4752. },
  4753. ]
  4754. ))
  4755. characterMakers.push(() => makeCharacter(
  4756. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4757. {
  4758. standing: {
  4759. height: math.unit(6, "feet"),
  4760. weight: math.unit(300, "lbs"),
  4761. name: "Standing",
  4762. image: {
  4763. source: "./media/characters/psymon/standing.svg",
  4764. extra: 1888 / 1810,
  4765. bottom: 0.05
  4766. }
  4767. },
  4768. slithering: {
  4769. height: math.unit(6, "feet"),
  4770. weight: math.unit(300, "lbs"),
  4771. name: "Slithering",
  4772. image: {
  4773. source: "./media/characters/psymon/slithering.svg",
  4774. extra: 1330 / 1224
  4775. }
  4776. },
  4777. slitheringAlt: {
  4778. height: math.unit(6, "feet"),
  4779. weight: math.unit(300, "lbs"),
  4780. name: "Slithering (Alt)",
  4781. image: {
  4782. source: "./media/characters/psymon/slithering-alt.svg",
  4783. extra: 1330 / 1224
  4784. }
  4785. },
  4786. },
  4787. [
  4788. {
  4789. name: "Normal",
  4790. height: math.unit(11.25, "feet"),
  4791. default: true
  4792. },
  4793. {
  4794. name: "Large",
  4795. height: math.unit(27, "feet")
  4796. },
  4797. {
  4798. name: "Giant",
  4799. height: math.unit(87, "feet")
  4800. },
  4801. {
  4802. name: "Macro",
  4803. height: math.unit(365, "feet")
  4804. },
  4805. {
  4806. name: "Megamacro",
  4807. height: math.unit(3, "miles")
  4808. },
  4809. {
  4810. name: "World Serpent",
  4811. height: math.unit(8000, "miles")
  4812. },
  4813. ]
  4814. ))
  4815. characterMakers.push(() => makeCharacter(
  4816. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4817. {
  4818. front: {
  4819. height: math.unit(6, "feet"),
  4820. weight: math.unit(180, "lbs"),
  4821. name: "Front",
  4822. image: {
  4823. source: "./media/characters/daimos/front.svg",
  4824. extra: 4160 / 3897,
  4825. bottom: 0.021
  4826. }
  4827. }
  4828. },
  4829. [
  4830. {
  4831. name: "Normal",
  4832. height: math.unit(8, "feet"),
  4833. default: true
  4834. },
  4835. {
  4836. name: "Big Dog",
  4837. height: math.unit(22, "feet")
  4838. },
  4839. {
  4840. name: "Macro",
  4841. height: math.unit(127, "feet")
  4842. },
  4843. {
  4844. name: "Megamacro",
  4845. height: math.unit(3600, "feet")
  4846. },
  4847. ]
  4848. ))
  4849. characterMakers.push(() => makeCharacter(
  4850. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4851. {
  4852. side: {
  4853. height: math.unit(6, "feet"),
  4854. weight: math.unit(180, "lbs"),
  4855. name: "Side",
  4856. image: {
  4857. source: "./media/characters/blake/side.svg",
  4858. extra: 1212 / 1120,
  4859. bottom: 0.05
  4860. }
  4861. },
  4862. crouched: {
  4863. height: math.unit(6 * 0.57, "feet"),
  4864. weight: math.unit(180, "lbs"),
  4865. name: "Crouched",
  4866. image: {
  4867. source: "./media/characters/blake/crouched.svg",
  4868. extra: 840 / 587,
  4869. bottom: 0.04
  4870. }
  4871. },
  4872. bent: {
  4873. height: math.unit(6 * 0.75, "feet"),
  4874. weight: math.unit(180, "lbs"),
  4875. name: "Bent",
  4876. image: {
  4877. source: "./media/characters/blake/bent.svg",
  4878. extra: 592 / 544,
  4879. bottom: 0.035
  4880. }
  4881. },
  4882. },
  4883. [
  4884. {
  4885. name: "Normal",
  4886. height: math.unit(8 + 1 / 6, "feet"),
  4887. default: true
  4888. },
  4889. {
  4890. name: "Big Backside",
  4891. height: math.unit(37, "feet")
  4892. },
  4893. {
  4894. name: "Subway Shredder",
  4895. height: math.unit(72, "feet")
  4896. },
  4897. {
  4898. name: "City Carver",
  4899. height: math.unit(1675, "feet")
  4900. },
  4901. {
  4902. name: "Tectonic Tweaker",
  4903. height: math.unit(2300, "miles")
  4904. },
  4905. ]
  4906. ))
  4907. characterMakers.push(() => makeCharacter(
  4908. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4909. {
  4910. front: {
  4911. height: math.unit(6, "feet"),
  4912. weight: math.unit(180, "lbs"),
  4913. name: "Front",
  4914. image: {
  4915. source: "./media/characters/guisetto/front.svg",
  4916. extra: 856 / 817,
  4917. bottom: 0.06
  4918. }
  4919. },
  4920. airborne: {
  4921. height: math.unit(6, "feet"),
  4922. weight: math.unit(180, "lbs"),
  4923. name: "Airborne",
  4924. image: {
  4925. source: "./media/characters/guisetto/airborne.svg",
  4926. extra: 584 / 525
  4927. }
  4928. },
  4929. },
  4930. [
  4931. {
  4932. name: "Normal",
  4933. height: math.unit(10 + 11 / 12, "feet"),
  4934. default: true
  4935. },
  4936. {
  4937. name: "Large",
  4938. height: math.unit(35, "feet")
  4939. },
  4940. {
  4941. name: "Macro",
  4942. height: math.unit(475, "feet")
  4943. },
  4944. ]
  4945. ))
  4946. characterMakers.push(() => makeCharacter(
  4947. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4948. {
  4949. front: {
  4950. height: math.unit(6, "feet"),
  4951. weight: math.unit(180, "lbs"),
  4952. name: "Front",
  4953. image: {
  4954. source: "./media/characters/luxor/front.svg",
  4955. extra: 2940 / 2152
  4956. }
  4957. },
  4958. back: {
  4959. height: math.unit(6, "feet"),
  4960. weight: math.unit(180, "lbs"),
  4961. name: "Back",
  4962. image: {
  4963. source: "./media/characters/luxor/back.svg",
  4964. extra: 1083 / 960
  4965. }
  4966. },
  4967. },
  4968. [
  4969. {
  4970. name: "Normal",
  4971. height: math.unit(5 + 5 / 6, "feet"),
  4972. default: true
  4973. },
  4974. {
  4975. name: "Lamp",
  4976. height: math.unit(50, "feet")
  4977. },
  4978. {
  4979. name: "Lämp",
  4980. height: math.unit(300, "feet")
  4981. },
  4982. {
  4983. name: "The sun is a lamp",
  4984. height: math.unit(250000, "miles")
  4985. },
  4986. ]
  4987. ))
  4988. characterMakers.push(() => makeCharacter(
  4989. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4990. {
  4991. front: {
  4992. height: math.unit(6, "feet"),
  4993. weight: math.unit(50, "lbs"),
  4994. name: "Front",
  4995. image: {
  4996. source: "./media/characters/huoyan/front.svg"
  4997. }
  4998. },
  4999. side: {
  5000. height: math.unit(6, "feet"),
  5001. weight: math.unit(180, "lbs"),
  5002. name: "Side",
  5003. image: {
  5004. source: "./media/characters/huoyan/side.svg"
  5005. }
  5006. },
  5007. },
  5008. [
  5009. {
  5010. name: "Chef",
  5011. height: math.unit(9, "feet")
  5012. },
  5013. {
  5014. name: "Normal",
  5015. height: math.unit(65, "feet"),
  5016. default: true
  5017. },
  5018. {
  5019. name: "Macro",
  5020. height: math.unit(780, "feet")
  5021. },
  5022. {
  5023. name: "Flaming Mountain",
  5024. height: math.unit(4.8, "miles")
  5025. },
  5026. {
  5027. name: "Celestial",
  5028. height: math.unit(765000, "miles")
  5029. },
  5030. ]
  5031. ))
  5032. characterMakers.push(() => makeCharacter(
  5033. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5034. {
  5035. front: {
  5036. height: math.unit(5 + 3 / 4, "feet"),
  5037. weight: math.unit(120, "lbs"),
  5038. name: "Front",
  5039. image: {
  5040. source: "./media/characters/tails/front.svg"
  5041. }
  5042. }
  5043. },
  5044. [
  5045. {
  5046. name: "Normal",
  5047. height: math.unit(5 + 3 / 4, "feet"),
  5048. default: true
  5049. }
  5050. ]
  5051. ))
  5052. characterMakers.push(() => makeCharacter(
  5053. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5054. {
  5055. front: {
  5056. height: math.unit(4, "feet"),
  5057. weight: math.unit(50, "lbs"),
  5058. name: "Front",
  5059. image: {
  5060. source: "./media/characters/rainy/front.svg"
  5061. }
  5062. }
  5063. },
  5064. [
  5065. {
  5066. name: "Macro",
  5067. height: math.unit(800, "feet"),
  5068. default: true
  5069. }
  5070. ]
  5071. ))
  5072. characterMakers.push(() => makeCharacter(
  5073. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5074. {
  5075. front: {
  5076. height: math.unit(6, "feet"),
  5077. weight: math.unit(150, "lbs"),
  5078. name: "Front",
  5079. image: {
  5080. source: "./media/characters/rainier/front.svg"
  5081. }
  5082. }
  5083. },
  5084. [
  5085. {
  5086. name: "Micro",
  5087. height: math.unit(2, "mm"),
  5088. default: true
  5089. }
  5090. ]
  5091. ))
  5092. characterMakers.push(() => makeCharacter(
  5093. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5094. {
  5095. front: {
  5096. height: math.unit(6, "feet"),
  5097. weight: math.unit(180, "lbs"),
  5098. name: "Front",
  5099. image: {
  5100. source: "./media/characters/andy/front.svg"
  5101. }
  5102. }
  5103. },
  5104. [
  5105. {
  5106. name: "Normal",
  5107. height: math.unit(8, "feet"),
  5108. default: true
  5109. },
  5110. {
  5111. name: "Macro",
  5112. height: math.unit(1000, "feet")
  5113. },
  5114. {
  5115. name: "Megamacro",
  5116. height: math.unit(5, "miles")
  5117. },
  5118. {
  5119. name: "Gigamacro",
  5120. height: math.unit(5000, "miles")
  5121. },
  5122. ]
  5123. ))
  5124. characterMakers.push(() => makeCharacter(
  5125. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5126. {
  5127. front: {
  5128. height: math.unit(6, "feet"),
  5129. weight: math.unit(210, "lbs"),
  5130. name: "Front",
  5131. image: {
  5132. source: "./media/characters/cimmaron/front-sfw.svg",
  5133. extra: 701 / 676,
  5134. bottom: 0.046
  5135. }
  5136. },
  5137. back: {
  5138. height: math.unit(6, "feet"),
  5139. weight: math.unit(210, "lbs"),
  5140. name: "Back",
  5141. image: {
  5142. source: "./media/characters/cimmaron/back-sfw.svg",
  5143. extra: 701 / 676,
  5144. bottom: 0.046
  5145. }
  5146. },
  5147. frontNsfw: {
  5148. height: math.unit(6, "feet"),
  5149. weight: math.unit(210, "lbs"),
  5150. name: "Front (NSFW)",
  5151. image: {
  5152. source: "./media/characters/cimmaron/front-nsfw.svg",
  5153. extra: 701 / 676,
  5154. bottom: 0.046
  5155. }
  5156. },
  5157. backNsfw: {
  5158. height: math.unit(6, "feet"),
  5159. weight: math.unit(210, "lbs"),
  5160. name: "Back (NSFW)",
  5161. image: {
  5162. source: "./media/characters/cimmaron/back-nsfw.svg",
  5163. extra: 701 / 676,
  5164. bottom: 0.046
  5165. }
  5166. },
  5167. dick: {
  5168. height: math.unit(1.714, "feet"),
  5169. name: "Dick",
  5170. image: {
  5171. source: "./media/characters/cimmaron/dick.svg"
  5172. }
  5173. },
  5174. },
  5175. [
  5176. {
  5177. name: "Normal",
  5178. height: math.unit(6, "feet"),
  5179. default: true
  5180. },
  5181. {
  5182. name: "Macro Mayor",
  5183. height: math.unit(350, "meters")
  5184. },
  5185. ]
  5186. ))
  5187. characterMakers.push(() => makeCharacter(
  5188. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5189. {
  5190. front: {
  5191. height: math.unit(6, "feet"),
  5192. weight: math.unit(200, "lbs"),
  5193. name: "Front",
  5194. image: {
  5195. source: "./media/characters/akari/front.svg",
  5196. extra: 962 / 901,
  5197. bottom: 0.04
  5198. }
  5199. }
  5200. },
  5201. [
  5202. {
  5203. name: "Micro",
  5204. height: math.unit(5, "inches"),
  5205. default: true
  5206. },
  5207. {
  5208. name: "Normal",
  5209. height: math.unit(7, "feet")
  5210. },
  5211. ]
  5212. ))
  5213. characterMakers.push(() => makeCharacter(
  5214. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5215. {
  5216. front: {
  5217. height: math.unit(6, "feet"),
  5218. weight: math.unit(140, "lbs"),
  5219. name: "Front",
  5220. image: {
  5221. source: "./media/characters/cynosura/front.svg",
  5222. extra: 896 / 847
  5223. }
  5224. },
  5225. back: {
  5226. height: math.unit(6, "feet"),
  5227. weight: math.unit(140, "lbs"),
  5228. name: "Back",
  5229. image: {
  5230. source: "./media/characters/cynosura/back.svg",
  5231. extra: 1365 / 1250
  5232. }
  5233. },
  5234. },
  5235. [
  5236. {
  5237. name: "Micro",
  5238. height: math.unit(4, "inches")
  5239. },
  5240. {
  5241. name: "Normal",
  5242. height: math.unit(5.75, "feet"),
  5243. default: true
  5244. },
  5245. {
  5246. name: "Tall",
  5247. height: math.unit(10, "feet")
  5248. },
  5249. {
  5250. name: "Big",
  5251. height: math.unit(20, "feet")
  5252. },
  5253. {
  5254. name: "Macro",
  5255. height: math.unit(50, "feet")
  5256. },
  5257. ]
  5258. ))
  5259. characterMakers.push(() => makeCharacter(
  5260. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5261. {
  5262. front: {
  5263. height: math.unit(6, "feet"),
  5264. weight: math.unit(170, "lbs"),
  5265. name: "Front",
  5266. image: {
  5267. source: "./media/characters/gin/front.svg",
  5268. extra: 1.053,
  5269. bottom: 0.025
  5270. }
  5271. },
  5272. foot: {
  5273. height: math.unit(6 / 4.25, "feet"),
  5274. name: "Foot",
  5275. image: {
  5276. source: "./media/characters/gin/foot.svg"
  5277. }
  5278. },
  5279. sole: {
  5280. height: math.unit(6 / 4.40, "feet"),
  5281. name: "Sole",
  5282. image: {
  5283. source: "./media/characters/gin/sole.svg"
  5284. }
  5285. },
  5286. },
  5287. [
  5288. {
  5289. name: "Normal",
  5290. height: math.unit(13 + 2 / 12, "feet")
  5291. },
  5292. {
  5293. name: "Macro",
  5294. height: math.unit(1500, "feet")
  5295. },
  5296. {
  5297. name: "Megamacro",
  5298. height: math.unit(200, "miles"),
  5299. default: true
  5300. },
  5301. {
  5302. name: "Gigamacro",
  5303. height: math.unit(500, "megameters")
  5304. },
  5305. {
  5306. name: "Teramacro",
  5307. height: math.unit(15, "lightyears")
  5308. }
  5309. ]
  5310. ))
  5311. characterMakers.push(() => makeCharacter(
  5312. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5313. {
  5314. front: {
  5315. height: math.unit(6 + 1 / 6, "feet"),
  5316. weight: math.unit(178, "lbs"),
  5317. name: "Front",
  5318. image: {
  5319. source: "./media/characters/guy/front.svg"
  5320. }
  5321. }
  5322. },
  5323. [
  5324. {
  5325. name: "Normal",
  5326. height: math.unit(6 + 1 / 6, "feet"),
  5327. default: true
  5328. },
  5329. {
  5330. name: "Large",
  5331. height: math.unit(25 + 7 / 12, "feet")
  5332. },
  5333. {
  5334. name: "Macro",
  5335. height: math.unit(60 + 9 / 12, "feet")
  5336. },
  5337. {
  5338. name: "Macro+",
  5339. height: math.unit(246, "feet")
  5340. },
  5341. {
  5342. name: "Macro++",
  5343. height: math.unit(878, "feet")
  5344. }
  5345. ]
  5346. ))
  5347. characterMakers.push(() => makeCharacter(
  5348. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5349. {
  5350. front: {
  5351. height: math.unit(9, "feet"),
  5352. weight: math.unit(800, "lbs"),
  5353. name: "Front",
  5354. image: {
  5355. source: "./media/characters/tiberius/front.svg",
  5356. extra: 2295 / 2071
  5357. }
  5358. },
  5359. back: {
  5360. height: math.unit(9, "feet"),
  5361. weight: math.unit(800, "lbs"),
  5362. name: "Back",
  5363. image: {
  5364. source: "./media/characters/tiberius/back.svg",
  5365. extra: 2373 / 2160
  5366. }
  5367. },
  5368. },
  5369. [
  5370. {
  5371. name: "Normal",
  5372. height: math.unit(9, "feet"),
  5373. default: true
  5374. }
  5375. ]
  5376. ))
  5377. characterMakers.push(() => makeCharacter(
  5378. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5379. {
  5380. front: {
  5381. height: math.unit(6, "feet"),
  5382. weight: math.unit(600, "lbs"),
  5383. name: "Front",
  5384. image: {
  5385. source: "./media/characters/surgo/front.svg",
  5386. extra: 3591 / 2227
  5387. }
  5388. },
  5389. back: {
  5390. height: math.unit(6, "feet"),
  5391. weight: math.unit(600, "lbs"),
  5392. name: "Back",
  5393. image: {
  5394. source: "./media/characters/surgo/back.svg",
  5395. extra: 3557 / 2228
  5396. }
  5397. },
  5398. laying: {
  5399. height: math.unit(6 * 0.85, "feet"),
  5400. weight: math.unit(600, "lbs"),
  5401. name: "Laying",
  5402. image: {
  5403. source: "./media/characters/surgo/laying.svg"
  5404. }
  5405. },
  5406. },
  5407. [
  5408. {
  5409. name: "Normal",
  5410. height: math.unit(6, "feet"),
  5411. default: true
  5412. }
  5413. ]
  5414. ))
  5415. characterMakers.push(() => makeCharacter(
  5416. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5417. {
  5418. side: {
  5419. height: math.unit(6, "feet"),
  5420. weight: math.unit(150, "lbs"),
  5421. name: "Side",
  5422. image: {
  5423. source: "./media/characters/cibus/side.svg",
  5424. extra: 800 / 400
  5425. }
  5426. },
  5427. },
  5428. [
  5429. {
  5430. name: "Normal",
  5431. height: math.unit(6, "feet"),
  5432. default: true
  5433. }
  5434. ]
  5435. ))
  5436. characterMakers.push(() => makeCharacter(
  5437. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5438. {
  5439. front: {
  5440. height: math.unit(6, "feet"),
  5441. weight: math.unit(240, "lbs"),
  5442. name: "Front",
  5443. image: {
  5444. source: "./media/characters/nibbles/front.svg"
  5445. }
  5446. },
  5447. side: {
  5448. height: math.unit(6, "feet"),
  5449. weight: math.unit(240, "lbs"),
  5450. name: "Side",
  5451. image: {
  5452. source: "./media/characters/nibbles/side.svg"
  5453. }
  5454. },
  5455. },
  5456. [
  5457. {
  5458. name: "Normal",
  5459. height: math.unit(9, "feet"),
  5460. default: true
  5461. }
  5462. ]
  5463. ))
  5464. characterMakers.push(() => makeCharacter(
  5465. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5466. {
  5467. side: {
  5468. height: math.unit(5 + 1 / 6, "feet"),
  5469. weight: math.unit(130, "lbs"),
  5470. name: "Side",
  5471. image: {
  5472. source: "./media/characters/rikky/side.svg",
  5473. extra: 851 / 801
  5474. }
  5475. },
  5476. },
  5477. [
  5478. {
  5479. name: "Normal",
  5480. height: math.unit(5 + 1 / 6, "feet")
  5481. },
  5482. {
  5483. name: "Macro",
  5484. height: math.unit(152, "feet"),
  5485. default: true
  5486. },
  5487. {
  5488. name: "Megamacro",
  5489. height: math.unit(7, "miles")
  5490. }
  5491. ]
  5492. ))
  5493. characterMakers.push(() => makeCharacter(
  5494. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5495. {
  5496. side: {
  5497. height: math.unit(370, "cm"),
  5498. weight: math.unit(350, "lbs"),
  5499. name: "Side",
  5500. image: {
  5501. source: "./media/characters/malfressa/side.svg"
  5502. }
  5503. },
  5504. walking: {
  5505. height: math.unit(370, "cm"),
  5506. weight: math.unit(350, "lbs"),
  5507. name: "Walking",
  5508. image: {
  5509. source: "./media/characters/malfressa/walking.svg"
  5510. }
  5511. },
  5512. feral: {
  5513. height: math.unit(2500, "cm"),
  5514. weight: math.unit(100000, "lbs"),
  5515. name: "Feral",
  5516. image: {
  5517. source: "./media/characters/malfressa/feral.svg",
  5518. extra: 2108 / 837,
  5519. bottom: 0.02
  5520. }
  5521. },
  5522. },
  5523. [
  5524. {
  5525. name: "Normal",
  5526. height: math.unit(370, "cm")
  5527. },
  5528. {
  5529. name: "Macro",
  5530. height: math.unit(300, "meters"),
  5531. default: true
  5532. }
  5533. ]
  5534. ))
  5535. characterMakers.push(() => makeCharacter(
  5536. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5537. {
  5538. front: {
  5539. height: math.unit(6, "feet"),
  5540. weight: math.unit(60, "kg"),
  5541. name: "Front",
  5542. image: {
  5543. source: "./media/characters/jaro/front.svg"
  5544. }
  5545. },
  5546. back: {
  5547. height: math.unit(6, "feet"),
  5548. weight: math.unit(60, "kg"),
  5549. name: "Back",
  5550. image: {
  5551. source: "./media/characters/jaro/back.svg"
  5552. }
  5553. },
  5554. },
  5555. [
  5556. {
  5557. name: "Micro",
  5558. height: math.unit(7, "inches")
  5559. },
  5560. {
  5561. name: "Normal",
  5562. height: math.unit(5.5, "feet"),
  5563. default: true
  5564. },
  5565. {
  5566. name: "Minimacro",
  5567. height: math.unit(20, "feet")
  5568. },
  5569. {
  5570. name: "Macro",
  5571. height: math.unit(200, "meters")
  5572. }
  5573. ]
  5574. ))
  5575. characterMakers.push(() => makeCharacter(
  5576. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5577. {
  5578. front: {
  5579. height: math.unit(6, "feet"),
  5580. weight: math.unit(195, "lb"),
  5581. name: "Front",
  5582. image: {
  5583. source: "./media/characters/rogue/front.svg"
  5584. }
  5585. },
  5586. },
  5587. [
  5588. {
  5589. name: "Macro",
  5590. height: math.unit(90, "feet"),
  5591. default: true
  5592. },
  5593. ]
  5594. ))
  5595. characterMakers.push(() => makeCharacter(
  5596. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5597. {
  5598. front: {
  5599. height: math.unit(5 + 8 / 12, "feet"),
  5600. weight: math.unit(140, "lb"),
  5601. name: "Front",
  5602. image: {
  5603. source: "./media/characters/piper/front.svg",
  5604. extra: 3928 / 3681
  5605. }
  5606. },
  5607. },
  5608. [
  5609. {
  5610. name: "Micro",
  5611. height: math.unit(2, "inches")
  5612. },
  5613. {
  5614. name: "Normal",
  5615. height: math.unit(5 + 8 / 12, "feet")
  5616. },
  5617. {
  5618. name: "Macro",
  5619. height: math.unit(250, "feet"),
  5620. default: true
  5621. },
  5622. {
  5623. name: "Megamacro",
  5624. height: math.unit(7, "miles")
  5625. },
  5626. ]
  5627. ))
  5628. characterMakers.push(() => makeCharacter(
  5629. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5630. {
  5631. front: {
  5632. height: math.unit(6, "feet"),
  5633. weight: math.unit(220, "lb"),
  5634. name: "Front",
  5635. image: {
  5636. source: "./media/characters/gemini/front.svg"
  5637. }
  5638. },
  5639. back: {
  5640. height: math.unit(6, "feet"),
  5641. weight: math.unit(220, "lb"),
  5642. name: "Back",
  5643. image: {
  5644. source: "./media/characters/gemini/back.svg"
  5645. }
  5646. },
  5647. kneeling: {
  5648. height: math.unit(6 / 1.5, "feet"),
  5649. weight: math.unit(220, "lb"),
  5650. name: "Kneeling",
  5651. image: {
  5652. source: "./media/characters/gemini/kneeling.svg",
  5653. bottom: 0.02
  5654. }
  5655. },
  5656. },
  5657. [
  5658. {
  5659. name: "Macro",
  5660. height: math.unit(300, "meters"),
  5661. default: true
  5662. },
  5663. {
  5664. name: "Megamacro",
  5665. height: math.unit(6900, "meters")
  5666. },
  5667. ]
  5668. ))
  5669. characterMakers.push(() => makeCharacter(
  5670. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5671. {
  5672. anthro: {
  5673. height: math.unit(2.35, "meters"),
  5674. weight: math.unit(73, "kg"),
  5675. name: "Anthro",
  5676. image: {
  5677. source: "./media/characters/alicia/anthro.svg",
  5678. extra: 2571 / 2385,
  5679. bottom: 75 / 2648
  5680. }
  5681. },
  5682. paw: {
  5683. height: math.unit(1.32, "feet"),
  5684. name: "Paw",
  5685. image: {
  5686. source: "./media/characters/alicia/paw.svg"
  5687. }
  5688. },
  5689. feral: {
  5690. height: math.unit(1.69, "meters"),
  5691. weight: math.unit(73, "kg"),
  5692. name: "Feral",
  5693. image: {
  5694. source: "./media/characters/alicia/feral.svg",
  5695. extra: 2123 / 1715,
  5696. bottom: 222 / 2349
  5697. }
  5698. },
  5699. },
  5700. [
  5701. {
  5702. name: "Normal",
  5703. height: math.unit(2.35, "meters")
  5704. },
  5705. {
  5706. name: "Macro",
  5707. height: math.unit(60, "meters"),
  5708. default: true
  5709. },
  5710. {
  5711. name: "Megamacro",
  5712. height: math.unit(10000, "kilometers")
  5713. },
  5714. ]
  5715. ))
  5716. characterMakers.push(() => makeCharacter(
  5717. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5718. {
  5719. front: {
  5720. height: math.unit(7, "feet"),
  5721. weight: math.unit(250, "lbs"),
  5722. name: "Front",
  5723. image: {
  5724. source: "./media/characters/archy/front.svg"
  5725. }
  5726. }
  5727. },
  5728. [
  5729. {
  5730. name: "Micro",
  5731. height: math.unit(1, "inch")
  5732. },
  5733. {
  5734. name: "Shorty",
  5735. height: math.unit(5, "feet")
  5736. },
  5737. {
  5738. name: "Normal",
  5739. height: math.unit(7, "feet")
  5740. },
  5741. {
  5742. name: "Macro",
  5743. height: math.unit(600, "meters"),
  5744. default: true
  5745. },
  5746. {
  5747. name: "Megamacro",
  5748. height: math.unit(1, "mile")
  5749. },
  5750. ]
  5751. ))
  5752. characterMakers.push(() => makeCharacter(
  5753. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5754. {
  5755. front: {
  5756. height: math.unit(1.65, "meters"),
  5757. weight: math.unit(74, "kg"),
  5758. name: "Front",
  5759. image: {
  5760. source: "./media/characters/berri/front.svg",
  5761. extra: 857 / 837,
  5762. bottom: 18 / 877
  5763. }
  5764. },
  5765. bum: {
  5766. height: math.unit(1.46, "feet"),
  5767. name: "Bum",
  5768. image: {
  5769. source: "./media/characters/berri/bum.svg"
  5770. }
  5771. },
  5772. mouth: {
  5773. height: math.unit(0.44, "feet"),
  5774. name: "Mouth",
  5775. image: {
  5776. source: "./media/characters/berri/mouth.svg"
  5777. }
  5778. },
  5779. paw: {
  5780. height: math.unit(0.826, "feet"),
  5781. name: "Paw",
  5782. image: {
  5783. source: "./media/characters/berri/paw.svg"
  5784. }
  5785. },
  5786. },
  5787. [
  5788. {
  5789. name: "Normal",
  5790. height: math.unit(1.65, "meters")
  5791. },
  5792. {
  5793. name: "Macro",
  5794. height: math.unit(60, "m"),
  5795. default: true
  5796. },
  5797. {
  5798. name: "Megamacro",
  5799. height: math.unit(9.213, "km")
  5800. },
  5801. {
  5802. name: "Planet Eater",
  5803. height: math.unit(489, "megameters")
  5804. },
  5805. {
  5806. name: "Teramacro",
  5807. height: math.unit(2471635000000, "meters")
  5808. },
  5809. {
  5810. name: "Examacro",
  5811. height: math.unit(8.0624e+26, "meters")
  5812. }
  5813. ]
  5814. ))
  5815. characterMakers.push(() => makeCharacter(
  5816. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5817. {
  5818. front: {
  5819. height: math.unit(1.72, "meters"),
  5820. weight: math.unit(68, "kg"),
  5821. name: "Front",
  5822. image: {
  5823. source: "./media/characters/lexi/front.svg"
  5824. }
  5825. }
  5826. },
  5827. [
  5828. {
  5829. name: "Very Smol",
  5830. height: math.unit(10, "mm")
  5831. },
  5832. {
  5833. name: "Micro",
  5834. height: math.unit(6.8, "cm"),
  5835. default: true
  5836. },
  5837. {
  5838. name: "Normal",
  5839. height: math.unit(1.72, "m")
  5840. }
  5841. ]
  5842. ))
  5843. characterMakers.push(() => makeCharacter(
  5844. { name: "Martin", species: ["azodian"], 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/martin/front.svg",
  5852. extra: 596 / 581
  5853. }
  5854. }
  5855. },
  5856. [
  5857. {
  5858. name: "Micro",
  5859. height: math.unit(6.85, "cm"),
  5860. default: true
  5861. },
  5862. {
  5863. name: "Normal",
  5864. height: math.unit(1.69, "m")
  5865. }
  5866. ]
  5867. ))
  5868. characterMakers.push(() => makeCharacter(
  5869. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5870. {
  5871. front: {
  5872. height: math.unit(1.69, "meters"),
  5873. weight: math.unit(68, "kg"),
  5874. name: "Front",
  5875. image: {
  5876. source: "./media/characters/juno/front.svg"
  5877. }
  5878. }
  5879. },
  5880. [
  5881. {
  5882. name: "Micro",
  5883. height: math.unit(7, "cm")
  5884. },
  5885. {
  5886. name: "Normal",
  5887. height: math.unit(1.89, "m")
  5888. },
  5889. {
  5890. name: "Macro",
  5891. height: math.unit(353, "meters"),
  5892. default: true
  5893. }
  5894. ]
  5895. ))
  5896. characterMakers.push(() => makeCharacter(
  5897. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5898. {
  5899. front: {
  5900. height: math.unit(1.93, "meters"),
  5901. weight: math.unit(83, "kg"),
  5902. name: "Front",
  5903. image: {
  5904. source: "./media/characters/samantha/front.svg"
  5905. }
  5906. },
  5907. frontClothed: {
  5908. height: math.unit(1.93, "meters"),
  5909. weight: math.unit(83, "kg"),
  5910. name: "Front (Clothed)",
  5911. image: {
  5912. source: "./media/characters/samantha/front-clothed.svg"
  5913. }
  5914. },
  5915. back: {
  5916. height: math.unit(1.93, "meters"),
  5917. weight: math.unit(83, "kg"),
  5918. name: "Back",
  5919. image: {
  5920. source: "./media/characters/samantha/back.svg"
  5921. }
  5922. },
  5923. },
  5924. [
  5925. {
  5926. name: "Normal",
  5927. height: math.unit(1.93, "m")
  5928. },
  5929. {
  5930. name: "Macro",
  5931. height: math.unit(74, "meters"),
  5932. default: true
  5933. },
  5934. {
  5935. name: "Macro+",
  5936. height: math.unit(223, "meters"),
  5937. },
  5938. {
  5939. name: "Megamacro",
  5940. height: math.unit(8381, "meters"),
  5941. },
  5942. {
  5943. name: "Megamacro+",
  5944. height: math.unit(12000, "kilometers")
  5945. },
  5946. ]
  5947. ))
  5948. characterMakers.push(() => makeCharacter(
  5949. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5950. {
  5951. front: {
  5952. height: math.unit(1.92, "meters"),
  5953. weight: math.unit(80, "kg"),
  5954. name: "Front",
  5955. image: {
  5956. source: "./media/characters/dr-clay/front.svg"
  5957. }
  5958. },
  5959. frontClothed: {
  5960. height: math.unit(1.92, "meters"),
  5961. weight: math.unit(80, "kg"),
  5962. name: "Front (Clothed)",
  5963. image: {
  5964. source: "./media/characters/dr-clay/front-clothed.svg"
  5965. }
  5966. }
  5967. },
  5968. [
  5969. {
  5970. name: "Normal",
  5971. height: math.unit(1.92, "m")
  5972. },
  5973. {
  5974. name: "Macro",
  5975. height: math.unit(214, "meters"),
  5976. default: true
  5977. },
  5978. {
  5979. name: "Macro+",
  5980. height: math.unit(12.237, "meters"),
  5981. },
  5982. {
  5983. name: "Megamacro",
  5984. height: math.unit(557, "megameters"),
  5985. },
  5986. {
  5987. name: "Unimaginable",
  5988. height: math.unit(120e9, "lightyears")
  5989. },
  5990. ]
  5991. ))
  5992. characterMakers.push(() => makeCharacter(
  5993. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5994. {
  5995. front: {
  5996. height: math.unit(2, "meters"),
  5997. weight: math.unit(80, "kg"),
  5998. name: "Front",
  5999. image: {
  6000. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6001. }
  6002. }
  6003. },
  6004. [
  6005. {
  6006. name: "Teramacro",
  6007. height: math.unit(500000, "lightyears"),
  6008. default: true
  6009. },
  6010. ]
  6011. ))
  6012. characterMakers.push(() => makeCharacter(
  6013. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6014. {
  6015. front: {
  6016. height: math.unit(2, "meters"),
  6017. weight: math.unit(150, "kg"),
  6018. name: "Front",
  6019. image: {
  6020. source: "./media/characters/vemus/front.svg",
  6021. extra: 2384 / 2084,
  6022. bottom: 0.0123
  6023. }
  6024. }
  6025. },
  6026. [
  6027. {
  6028. name: "Normal",
  6029. height: math.unit(3.75, "meters"),
  6030. default: true
  6031. },
  6032. {
  6033. name: "Big",
  6034. height: math.unit(8, "meters")
  6035. },
  6036. {
  6037. name: "Macro",
  6038. height: math.unit(100, "meters")
  6039. },
  6040. {
  6041. name: "Macro+",
  6042. height: math.unit(1500, "meters")
  6043. },
  6044. {
  6045. name: "Stellar",
  6046. height: math.unit(14e8, "meters")
  6047. },
  6048. ]
  6049. ))
  6050. characterMakers.push(() => makeCharacter(
  6051. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6052. {
  6053. front: {
  6054. height: math.unit(2, "meters"),
  6055. weight: math.unit(70, "kg"),
  6056. name: "Front",
  6057. image: {
  6058. source: "./media/characters/beherit/front.svg",
  6059. extra: 1408 / 1242
  6060. }
  6061. }
  6062. },
  6063. [
  6064. {
  6065. name: "Normal",
  6066. height: math.unit(6, "feet")
  6067. },
  6068. {
  6069. name: "Lorg",
  6070. height: math.unit(25, "feet"),
  6071. default: true
  6072. },
  6073. {
  6074. name: "Lorger",
  6075. height: math.unit(75, "feet")
  6076. },
  6077. {
  6078. name: "Macro",
  6079. height: math.unit(200, "meters")
  6080. },
  6081. ]
  6082. ))
  6083. characterMakers.push(() => makeCharacter(
  6084. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6085. {
  6086. front: {
  6087. height: math.unit(2, "meters"),
  6088. weight: math.unit(150, "kg"),
  6089. name: "Front",
  6090. image: {
  6091. source: "./media/characters/everett/front.svg",
  6092. extra: 2038 / 1737,
  6093. bottom: 0.03
  6094. }
  6095. },
  6096. paw: {
  6097. height: math.unit(2 / 3.6, "meters"),
  6098. name: "Paw",
  6099. image: {
  6100. source: "./media/characters/everett/paw.svg"
  6101. }
  6102. },
  6103. },
  6104. [
  6105. {
  6106. name: "Normal",
  6107. height: math.unit(15, "feet"),
  6108. default: true
  6109. },
  6110. {
  6111. name: "Lorg",
  6112. height: math.unit(70, "feet"),
  6113. default: true
  6114. },
  6115. {
  6116. name: "Lorger",
  6117. height: math.unit(250, "feet")
  6118. },
  6119. {
  6120. name: "Macro",
  6121. height: math.unit(500, "meters")
  6122. },
  6123. ]
  6124. ))
  6125. characterMakers.push(() => makeCharacter(
  6126. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6127. {
  6128. front: {
  6129. height: math.unit(2, "meters"),
  6130. weight: math.unit(86, "kg"),
  6131. name: "Front",
  6132. image: {
  6133. source: "./media/characters/rose-lion/front.svg"
  6134. }
  6135. },
  6136. bent: {
  6137. height: math.unit(2 / 1.4288, "meters"),
  6138. weight: math.unit(86, "kg"),
  6139. name: "Bent",
  6140. image: {
  6141. source: "./media/characters/rose-lion/bent.svg"
  6142. }
  6143. }
  6144. },
  6145. [
  6146. {
  6147. name: "Mini-Micro",
  6148. height: math.unit(1, "cm")
  6149. },
  6150. {
  6151. name: "Micro",
  6152. height: math.unit(3.5, "inches"),
  6153. default: true
  6154. },
  6155. {
  6156. name: "Normal",
  6157. height: math.unit(6 + 1 / 6, "feet")
  6158. },
  6159. {
  6160. name: "Mini-Macro",
  6161. height: math.unit(9 + 10 / 12, "feet")
  6162. },
  6163. ]
  6164. ))
  6165. characterMakers.push(() => makeCharacter(
  6166. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6167. {
  6168. front: {
  6169. height: math.unit(2, "meters"),
  6170. weight: math.unit(350, "lbs"),
  6171. name: "Front",
  6172. image: {
  6173. source: "./media/characters/regal/front.svg"
  6174. }
  6175. },
  6176. back: {
  6177. height: math.unit(2, "meters"),
  6178. weight: math.unit(350, "lbs"),
  6179. name: "Back",
  6180. image: {
  6181. source: "./media/characters/regal/back.svg"
  6182. }
  6183. },
  6184. },
  6185. [
  6186. {
  6187. name: "Macro",
  6188. height: math.unit(350, "feet"),
  6189. default: true
  6190. }
  6191. ]
  6192. ))
  6193. characterMakers.push(() => makeCharacter(
  6194. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6195. {
  6196. front: {
  6197. height: math.unit(4 + 11 / 12, "feet"),
  6198. weight: math.unit(100, "lbs"),
  6199. name: "Front",
  6200. image: {
  6201. source: "./media/characters/opal/front.svg"
  6202. }
  6203. },
  6204. frontAlt: {
  6205. height: math.unit(4 + 11 / 12, "feet"),
  6206. weight: math.unit(100, "lbs"),
  6207. name: "Front (Alt)",
  6208. image: {
  6209. source: "./media/characters/opal/front-alt.svg"
  6210. }
  6211. },
  6212. },
  6213. [
  6214. {
  6215. name: "Small",
  6216. height: math.unit(4 + 11 / 12, "feet")
  6217. },
  6218. {
  6219. name: "Normal",
  6220. height: math.unit(20, "feet"),
  6221. default: true
  6222. },
  6223. {
  6224. name: "Macro",
  6225. height: math.unit(120, "feet")
  6226. },
  6227. {
  6228. name: "Megamacro",
  6229. height: math.unit(80, "miles")
  6230. },
  6231. {
  6232. name: "True Size",
  6233. height: math.unit(100000, "lightyears")
  6234. },
  6235. ]
  6236. ))
  6237. characterMakers.push(() => makeCharacter(
  6238. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6239. {
  6240. front: {
  6241. height: math.unit(6, "feet"),
  6242. weight: math.unit(200, "lbs"),
  6243. name: "Front",
  6244. image: {
  6245. source: "./media/characters/vector-wuff/front.svg"
  6246. }
  6247. }
  6248. },
  6249. [
  6250. {
  6251. name: "Normal",
  6252. height: math.unit(2.8, "meters")
  6253. },
  6254. {
  6255. name: "Macro",
  6256. height: math.unit(450, "meters"),
  6257. default: true
  6258. },
  6259. {
  6260. name: "Megamacro",
  6261. height: math.unit(15, "kilometers")
  6262. }
  6263. ]
  6264. ))
  6265. characterMakers.push(() => makeCharacter(
  6266. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6267. {
  6268. front: {
  6269. height: math.unit(6, "feet"),
  6270. weight: math.unit(256, "lbs"),
  6271. name: "Front",
  6272. image: {
  6273. source: "./media/characters/dannik/front.svg"
  6274. }
  6275. }
  6276. },
  6277. [
  6278. {
  6279. name: "Macro",
  6280. height: math.unit(69.57, "meters"),
  6281. default: true
  6282. },
  6283. ]
  6284. ))
  6285. characterMakers.push(() => makeCharacter(
  6286. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6287. {
  6288. front: {
  6289. height: math.unit(6, "feet"),
  6290. weight: math.unit(120, "lbs"),
  6291. name: "Front",
  6292. image: {
  6293. source: "./media/characters/azura-saharah/front.svg"
  6294. }
  6295. },
  6296. back: {
  6297. height: math.unit(6, "feet"),
  6298. weight: math.unit(120, "lbs"),
  6299. name: "Back",
  6300. image: {
  6301. source: "./media/characters/azura-saharah/back.svg"
  6302. }
  6303. },
  6304. },
  6305. [
  6306. {
  6307. name: "Macro",
  6308. height: math.unit(100, "feet"),
  6309. default: true
  6310. },
  6311. ]
  6312. ))
  6313. characterMakers.push(() => makeCharacter(
  6314. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6315. {
  6316. side: {
  6317. height: math.unit(5 + 4 / 12, "feet"),
  6318. weight: math.unit(163, "lbs"),
  6319. name: "Side",
  6320. image: {
  6321. source: "./media/characters/kennedy/side.svg"
  6322. }
  6323. }
  6324. },
  6325. [
  6326. {
  6327. name: "Standard Doggo",
  6328. height: math.unit(5 + 4 / 12, "feet")
  6329. },
  6330. {
  6331. name: "Big Doggo",
  6332. height: math.unit(25 + 3 / 12, "feet"),
  6333. default: true
  6334. },
  6335. ]
  6336. ))
  6337. characterMakers.push(() => makeCharacter(
  6338. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6339. {
  6340. front: {
  6341. height: math.unit(6, "feet"),
  6342. weight: math.unit(90, "lbs"),
  6343. name: "Front",
  6344. image: {
  6345. source: "./media/characters/odi-lunar/front.svg"
  6346. }
  6347. }
  6348. },
  6349. [
  6350. {
  6351. name: "Micro",
  6352. height: math.unit(3, "inches"),
  6353. default: true
  6354. },
  6355. {
  6356. name: "Normal",
  6357. height: math.unit(5.5, "feet")
  6358. }
  6359. ]
  6360. ))
  6361. characterMakers.push(() => makeCharacter(
  6362. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6363. {
  6364. back: {
  6365. height: math.unit(6, "feet"),
  6366. weight: math.unit(220, "lbs"),
  6367. name: "Back",
  6368. image: {
  6369. source: "./media/characters/mandake/back.svg"
  6370. }
  6371. }
  6372. },
  6373. [
  6374. {
  6375. name: "Normal",
  6376. height: math.unit(7, "feet"),
  6377. default: true
  6378. },
  6379. {
  6380. name: "Macro",
  6381. height: math.unit(78, "feet")
  6382. },
  6383. {
  6384. name: "Macro+",
  6385. height: math.unit(300, "meters")
  6386. },
  6387. {
  6388. name: "Macro++",
  6389. height: math.unit(2400, "feet")
  6390. },
  6391. {
  6392. name: "Megamacro",
  6393. height: math.unit(5167, "meters")
  6394. },
  6395. {
  6396. name: "Gigamacro",
  6397. height: math.unit(41769, "miles")
  6398. },
  6399. ]
  6400. ))
  6401. characterMakers.push(() => makeCharacter(
  6402. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6403. {
  6404. front: {
  6405. height: math.unit(6, "feet"),
  6406. weight: math.unit(120, "lbs"),
  6407. name: "Front",
  6408. image: {
  6409. source: "./media/characters/yozey/front.svg"
  6410. }
  6411. },
  6412. frontAlt: {
  6413. height: math.unit(6, "feet"),
  6414. weight: math.unit(120, "lbs"),
  6415. name: "Front (Alt)",
  6416. image: {
  6417. source: "./media/characters/yozey/front-alt.svg"
  6418. }
  6419. },
  6420. side: {
  6421. height: math.unit(6, "feet"),
  6422. weight: math.unit(120, "lbs"),
  6423. name: "Side",
  6424. image: {
  6425. source: "./media/characters/yozey/side.svg"
  6426. }
  6427. },
  6428. },
  6429. [
  6430. {
  6431. name: "Micro",
  6432. height: math.unit(3, "inches"),
  6433. default: true
  6434. },
  6435. {
  6436. name: "Normal",
  6437. height: math.unit(6, "feet")
  6438. }
  6439. ]
  6440. ))
  6441. characterMakers.push(() => makeCharacter(
  6442. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6443. {
  6444. front: {
  6445. height: math.unit(6, "feet"),
  6446. weight: math.unit(103, "lbs"),
  6447. name: "Front",
  6448. image: {
  6449. source: "./media/characters/valeska-voss/front.svg"
  6450. }
  6451. }
  6452. },
  6453. [
  6454. {
  6455. name: "Mini-Sized Sub",
  6456. height: math.unit(3.1, "inches")
  6457. },
  6458. {
  6459. name: "Mid-Sized Sub",
  6460. height: math.unit(6.2, "inches")
  6461. },
  6462. {
  6463. name: "Full-Sized Sub",
  6464. height: math.unit(9.3, "inches")
  6465. },
  6466. {
  6467. name: "Normal",
  6468. height: math.unit(5 + 2 / 12, "foot"),
  6469. default: true
  6470. },
  6471. ]
  6472. ))
  6473. characterMakers.push(() => makeCharacter(
  6474. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6475. {
  6476. front: {
  6477. height: math.unit(6, "feet"),
  6478. weight: math.unit(160, "lbs"),
  6479. name: "Front",
  6480. image: {
  6481. source: "./media/characters/gene-zeta/front.svg",
  6482. bottom: 0.03,
  6483. extra: 1
  6484. }
  6485. }
  6486. },
  6487. [
  6488. {
  6489. name: "Normal",
  6490. height: math.unit(6.25, "foot"),
  6491. default: true
  6492. },
  6493. ]
  6494. ))
  6495. characterMakers.push(() => makeCharacter(
  6496. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6497. {
  6498. front: {
  6499. height: math.unit(6, "feet"),
  6500. weight: math.unit(350, "lbs"),
  6501. name: "Front",
  6502. image: {
  6503. source: "./media/characters/razinox/front.svg",
  6504. extra: 1686 / 1548,
  6505. bottom: 28.2 / 1868
  6506. }
  6507. },
  6508. back: {
  6509. height: math.unit(6, "feet"),
  6510. weight: math.unit(350, "lbs"),
  6511. name: "Back",
  6512. image: {
  6513. source: "./media/characters/razinox/back.svg",
  6514. extra: 1660 / 1590,
  6515. bottom: 15 / 1665
  6516. }
  6517. },
  6518. },
  6519. [
  6520. {
  6521. name: "Normal",
  6522. height: math.unit(10 + 8 / 12, "foot")
  6523. },
  6524. {
  6525. name: "Minimacro",
  6526. height: math.unit(15, "foot")
  6527. },
  6528. {
  6529. name: "Macro",
  6530. height: math.unit(60, "foot"),
  6531. default: true
  6532. },
  6533. {
  6534. name: "Megamacro",
  6535. height: math.unit(5, "miles")
  6536. },
  6537. {
  6538. name: "Gigamacro",
  6539. height: math.unit(6000, "miles")
  6540. },
  6541. ]
  6542. ))
  6543. characterMakers.push(() => makeCharacter(
  6544. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6545. {
  6546. front: {
  6547. height: math.unit(6, "feet"),
  6548. weight: math.unit(150, "lbs"),
  6549. name: "Front",
  6550. image: {
  6551. source: "./media/characters/cobalt/front.svg"
  6552. }
  6553. }
  6554. },
  6555. [
  6556. {
  6557. name: "Normal",
  6558. height: math.unit(8 + 1 / 12, "foot")
  6559. },
  6560. {
  6561. name: "Macro",
  6562. height: math.unit(111, "foot"),
  6563. default: true
  6564. },
  6565. {
  6566. name: "Supracosmic",
  6567. height: math.unit(1e42, "feet")
  6568. },
  6569. ]
  6570. ))
  6571. characterMakers.push(() => makeCharacter(
  6572. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6573. {
  6574. front: {
  6575. height: math.unit(6, "feet"),
  6576. weight: math.unit(140, "lbs"),
  6577. name: "Front",
  6578. image: {
  6579. source: "./media/characters/amanda/front.svg"
  6580. }
  6581. }
  6582. },
  6583. [
  6584. {
  6585. name: "Micro",
  6586. height: math.unit(5, "inches"),
  6587. default: true
  6588. },
  6589. ]
  6590. ))
  6591. characterMakers.push(() => makeCharacter(
  6592. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6593. {
  6594. front: {
  6595. height: math.unit(5.59, "feet"),
  6596. weight: math.unit(250, "lbs"),
  6597. name: "Front",
  6598. image: {
  6599. source: "./media/characters/teal/front.svg"
  6600. }
  6601. },
  6602. frontAlt: {
  6603. height: math.unit(6, "feet"),
  6604. weight: math.unit(250, "lbs"),
  6605. name: "Front (Alt)",
  6606. image: {
  6607. source: "./media/characters/teal/front-alt.svg",
  6608. bottom: 0.04,
  6609. extra: 1
  6610. }
  6611. },
  6612. },
  6613. [
  6614. {
  6615. name: "Normal",
  6616. height: math.unit(12, "feet"),
  6617. default: true
  6618. },
  6619. {
  6620. name: "Macro",
  6621. height: math.unit(300, "feet")
  6622. },
  6623. ]
  6624. ))
  6625. characterMakers.push(() => makeCharacter(
  6626. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6627. {
  6628. frontCat: {
  6629. height: math.unit(6, "feet"),
  6630. weight: math.unit(180, "lbs"),
  6631. name: "Front (Cat)",
  6632. image: {
  6633. source: "./media/characters/ravin-amulet/front-cat.svg"
  6634. }
  6635. },
  6636. frontCatAlt: {
  6637. height: math.unit(6, "feet"),
  6638. weight: math.unit(180, "lbs"),
  6639. name: "Front (Alt, Cat)",
  6640. image: {
  6641. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6642. }
  6643. },
  6644. frontWerewolf: {
  6645. height: math.unit(6 * 1.2, "feet"),
  6646. weight: math.unit(225, "lbs"),
  6647. name: "Front (Werewolf)",
  6648. image: {
  6649. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6650. }
  6651. },
  6652. backWerewolf: {
  6653. height: math.unit(6 * 1.2, "feet"),
  6654. weight: math.unit(225, "lbs"),
  6655. name: "Back (Werewolf)",
  6656. image: {
  6657. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6658. }
  6659. },
  6660. },
  6661. [
  6662. {
  6663. name: "Nano",
  6664. height: math.unit(1, "micrometer")
  6665. },
  6666. {
  6667. name: "Micro",
  6668. height: math.unit(1, "inch")
  6669. },
  6670. {
  6671. name: "Normal",
  6672. height: math.unit(6, "feet"),
  6673. default: true
  6674. },
  6675. {
  6676. name: "Macro",
  6677. height: math.unit(60, "feet")
  6678. }
  6679. ]
  6680. ))
  6681. characterMakers.push(() => makeCharacter(
  6682. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6683. {
  6684. front: {
  6685. height: math.unit(6, "feet"),
  6686. weight: math.unit(165, "lbs"),
  6687. name: "Front",
  6688. image: {
  6689. source: "./media/characters/fluoresce/front.svg"
  6690. }
  6691. }
  6692. },
  6693. [
  6694. {
  6695. name: "Micro",
  6696. height: math.unit(6, "cm")
  6697. },
  6698. {
  6699. name: "Normal",
  6700. height: math.unit(5 + 7 / 12, "feet"),
  6701. default: true
  6702. },
  6703. {
  6704. name: "Macro",
  6705. height: math.unit(56, "feet")
  6706. },
  6707. {
  6708. name: "Megamacro",
  6709. height: math.unit(1.9, "miles")
  6710. },
  6711. ]
  6712. ))
  6713. characterMakers.push(() => makeCharacter(
  6714. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6715. {
  6716. front: {
  6717. height: math.unit(9 + 6 / 12, "feet"),
  6718. weight: math.unit(523, "lbs"),
  6719. name: "Side",
  6720. image: {
  6721. source: "./media/characters/aurora/side.svg"
  6722. }
  6723. }
  6724. },
  6725. [
  6726. {
  6727. name: "Normal",
  6728. height: math.unit(9 + 6 / 12, "feet")
  6729. },
  6730. {
  6731. name: "Macro",
  6732. height: math.unit(96, "feet"),
  6733. default: true
  6734. },
  6735. {
  6736. name: "Macro+",
  6737. height: math.unit(243, "feet")
  6738. },
  6739. ]
  6740. ))
  6741. characterMakers.push(() => makeCharacter(
  6742. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6743. {
  6744. front: {
  6745. height: math.unit(194, "cm"),
  6746. weight: math.unit(90, "kg"),
  6747. name: "Front",
  6748. image: {
  6749. source: "./media/characters/ranek/front.svg"
  6750. }
  6751. },
  6752. side: {
  6753. height: math.unit(194, "cm"),
  6754. weight: math.unit(90, "kg"),
  6755. name: "Side",
  6756. image: {
  6757. source: "./media/characters/ranek/side.svg"
  6758. }
  6759. },
  6760. back: {
  6761. height: math.unit(194, "cm"),
  6762. weight: math.unit(90, "kg"),
  6763. name: "Back",
  6764. image: {
  6765. source: "./media/characters/ranek/back.svg"
  6766. }
  6767. },
  6768. feral: {
  6769. height: math.unit(30, "cm"),
  6770. weight: math.unit(1.6, "lbs"),
  6771. name: "Feral",
  6772. image: {
  6773. source: "./media/characters/ranek/feral.svg"
  6774. }
  6775. },
  6776. },
  6777. [
  6778. {
  6779. name: "Normal",
  6780. height: math.unit(194, "cm"),
  6781. default: true
  6782. },
  6783. {
  6784. name: "Macro",
  6785. height: math.unit(100, "meters")
  6786. },
  6787. ]
  6788. ))
  6789. characterMakers.push(() => makeCharacter(
  6790. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6791. {
  6792. front: {
  6793. height: math.unit(5 + 6 / 12, "feet"),
  6794. weight: math.unit(153, "lbs"),
  6795. name: "Front",
  6796. image: {
  6797. source: "./media/characters/andrew-cooper/front.svg"
  6798. }
  6799. },
  6800. },
  6801. [
  6802. {
  6803. name: "Nano",
  6804. height: math.unit(1, "mm")
  6805. },
  6806. {
  6807. name: "Micro",
  6808. height: math.unit(2, "inches")
  6809. },
  6810. {
  6811. name: "Normal",
  6812. height: math.unit(5 + 6 / 12, "feet"),
  6813. default: true
  6814. }
  6815. ]
  6816. ))
  6817. characterMakers.push(() => makeCharacter(
  6818. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6819. {
  6820. front: {
  6821. height: math.unit(6, "feet"),
  6822. weight: math.unit(180, "lbs"),
  6823. name: "Front",
  6824. image: {
  6825. source: "./media/characters/akane-sato/front.svg",
  6826. extra: 1219 / 1140
  6827. }
  6828. },
  6829. back: {
  6830. height: math.unit(6, "feet"),
  6831. weight: math.unit(180, "lbs"),
  6832. name: "Back",
  6833. image: {
  6834. source: "./media/characters/akane-sato/back.svg",
  6835. extra: 1219 / 1170
  6836. }
  6837. },
  6838. },
  6839. [
  6840. {
  6841. name: "Normal",
  6842. height: math.unit(2.5, "meters")
  6843. },
  6844. {
  6845. name: "Macro",
  6846. height: math.unit(250, "meters"),
  6847. default: true
  6848. },
  6849. {
  6850. name: "Megamacro",
  6851. height: math.unit(25, "km")
  6852. },
  6853. ]
  6854. ))
  6855. characterMakers.push(() => makeCharacter(
  6856. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6857. {
  6858. front: {
  6859. height: math.unit(6, "feet"),
  6860. weight: math.unit(65, "kg"),
  6861. name: "Front",
  6862. image: {
  6863. source: "./media/characters/rook/front.svg",
  6864. extra: 960 / 950
  6865. }
  6866. }
  6867. },
  6868. [
  6869. {
  6870. name: "Normal",
  6871. height: math.unit(8.8, "feet")
  6872. },
  6873. {
  6874. name: "Macro",
  6875. height: math.unit(88, "feet"),
  6876. default: true
  6877. },
  6878. {
  6879. name: "Megamacro",
  6880. height: math.unit(8, "miles")
  6881. },
  6882. ]
  6883. ))
  6884. characterMakers.push(() => makeCharacter(
  6885. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6886. {
  6887. front: {
  6888. height: math.unit(12 + 2 / 12, "feet"),
  6889. weight: math.unit(808, "lbs"),
  6890. name: "Front",
  6891. image: {
  6892. source: "./media/characters/prodigy/front.svg"
  6893. }
  6894. }
  6895. },
  6896. [
  6897. {
  6898. name: "Normal",
  6899. height: math.unit(12 + 2 / 12, "feet"),
  6900. default: true
  6901. },
  6902. {
  6903. name: "Macro",
  6904. height: math.unit(143, "feet")
  6905. },
  6906. {
  6907. name: "Macro+",
  6908. height: math.unit(400, "feet")
  6909. },
  6910. ]
  6911. ))
  6912. characterMakers.push(() => makeCharacter(
  6913. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6914. {
  6915. front: {
  6916. height: math.unit(6, "feet"),
  6917. weight: math.unit(225, "lbs"),
  6918. name: "Front",
  6919. image: {
  6920. source: "./media/characters/daniel/front.svg"
  6921. }
  6922. },
  6923. leaning: {
  6924. height: math.unit(6, "feet"),
  6925. weight: math.unit(225, "lbs"),
  6926. name: "Leaning",
  6927. image: {
  6928. source: "./media/characters/daniel/leaning.svg"
  6929. }
  6930. },
  6931. },
  6932. [
  6933. {
  6934. name: "Macro",
  6935. height: math.unit(1000, "feet"),
  6936. default: true
  6937. },
  6938. ]
  6939. ))
  6940. characterMakers.push(() => makeCharacter(
  6941. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6942. {
  6943. front: {
  6944. height: math.unit(6, "feet"),
  6945. weight: math.unit(88, "lbs"),
  6946. name: "Front",
  6947. image: {
  6948. source: "./media/characters/chiros/front.svg",
  6949. extra: 306 / 226
  6950. }
  6951. },
  6952. side: {
  6953. height: math.unit(6, "feet"),
  6954. weight: math.unit(88, "lbs"),
  6955. name: "Side",
  6956. image: {
  6957. source: "./media/characters/chiros/side.svg",
  6958. extra: 306 / 226
  6959. }
  6960. },
  6961. },
  6962. [
  6963. {
  6964. name: "Normal",
  6965. height: math.unit(6, "cm"),
  6966. default: true
  6967. },
  6968. ]
  6969. ))
  6970. characterMakers.push(() => makeCharacter(
  6971. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6972. {
  6973. front: {
  6974. height: math.unit(6, "feet"),
  6975. weight: math.unit(100, "lbs"),
  6976. name: "Front",
  6977. image: {
  6978. source: "./media/characters/selka/front.svg",
  6979. extra: 947 / 887
  6980. }
  6981. }
  6982. },
  6983. [
  6984. {
  6985. name: "Normal",
  6986. height: math.unit(5, "cm"),
  6987. default: true
  6988. },
  6989. ]
  6990. ))
  6991. characterMakers.push(() => makeCharacter(
  6992. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6993. {
  6994. front: {
  6995. height: math.unit(8 + 3 / 12, "feet"),
  6996. weight: math.unit(424, "lbs"),
  6997. name: "Front",
  6998. image: {
  6999. source: "./media/characters/verin/front.svg",
  7000. extra: 1845 / 1550
  7001. }
  7002. },
  7003. frontArmored: {
  7004. height: math.unit(8 + 3 / 12, "feet"),
  7005. weight: math.unit(424, "lbs"),
  7006. name: "Front (Armored)",
  7007. image: {
  7008. source: "./media/characters/verin/front-armor.svg",
  7009. extra: 1845 / 1550,
  7010. bottom: 0.01
  7011. }
  7012. },
  7013. back: {
  7014. height: math.unit(8 + 3 / 12, "feet"),
  7015. weight: math.unit(424, "lbs"),
  7016. name: "Back",
  7017. image: {
  7018. source: "./media/characters/verin/back.svg",
  7019. bottom: 0.1,
  7020. extra: 1
  7021. }
  7022. },
  7023. foot: {
  7024. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7025. name: "Foot",
  7026. image: {
  7027. source: "./media/characters/verin/foot.svg"
  7028. }
  7029. },
  7030. },
  7031. [
  7032. {
  7033. name: "Normal",
  7034. height: math.unit(8 + 3 / 12, "feet")
  7035. },
  7036. {
  7037. name: "Minimacro",
  7038. height: math.unit(21, "feet"),
  7039. default: true
  7040. },
  7041. {
  7042. name: "Macro",
  7043. height: math.unit(626, "feet")
  7044. },
  7045. ]
  7046. ))
  7047. characterMakers.push(() => makeCharacter(
  7048. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7049. {
  7050. front: {
  7051. height: math.unit(2.718, "meters"),
  7052. weight: math.unit(150, "lbs"),
  7053. name: "Front",
  7054. image: {
  7055. source: "./media/characters/sovrim-terraquian/front.svg"
  7056. }
  7057. },
  7058. back: {
  7059. height: math.unit(2.718, "meters"),
  7060. weight: math.unit(150, "lbs"),
  7061. name: "Back",
  7062. image: {
  7063. source: "./media/characters/sovrim-terraquian/back.svg"
  7064. }
  7065. }
  7066. },
  7067. [
  7068. {
  7069. name: "Micro",
  7070. height: math.unit(2, "inches")
  7071. },
  7072. {
  7073. name: "Small",
  7074. height: math.unit(1, "meter")
  7075. },
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(Math.E, "meters"),
  7079. default: true
  7080. },
  7081. {
  7082. name: "Macro",
  7083. height: math.unit(20, "meters")
  7084. },
  7085. {
  7086. name: "Macro+",
  7087. height: math.unit(400, "meters")
  7088. },
  7089. ]
  7090. ))
  7091. characterMakers.push(() => makeCharacter(
  7092. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7093. {
  7094. front: {
  7095. height: math.unit(7, "feet"),
  7096. weight: math.unit(489, "lbs"),
  7097. name: "Front",
  7098. image: {
  7099. source: "./media/characters/reece-silvermane/front.svg",
  7100. bottom: 0.02,
  7101. extra: 1
  7102. }
  7103. },
  7104. },
  7105. [
  7106. {
  7107. name: "Macro",
  7108. height: math.unit(1.5, "miles"),
  7109. default: true
  7110. },
  7111. ]
  7112. ))
  7113. characterMakers.push(() => makeCharacter(
  7114. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7115. {
  7116. front: {
  7117. height: math.unit(6, "feet"),
  7118. weight: math.unit(78, "kg"),
  7119. name: "Front",
  7120. image: {
  7121. source: "./media/characters/kane/front.svg",
  7122. extra: 978 / 899
  7123. }
  7124. },
  7125. },
  7126. [
  7127. {
  7128. name: "Normal",
  7129. height: math.unit(2.1, "m"),
  7130. },
  7131. {
  7132. name: "Macro",
  7133. height: math.unit(1, "km"),
  7134. default: true
  7135. },
  7136. ]
  7137. ))
  7138. characterMakers.push(() => makeCharacter(
  7139. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7140. {
  7141. front: {
  7142. height: math.unit(6, "feet"),
  7143. weight: math.unit(200, "kg"),
  7144. name: "Front",
  7145. image: {
  7146. source: "./media/characters/tegon/front.svg",
  7147. bottom: 0.01,
  7148. extra: 1
  7149. }
  7150. },
  7151. },
  7152. [
  7153. {
  7154. name: "Micro",
  7155. height: math.unit(1, "inch")
  7156. },
  7157. {
  7158. name: "Normal",
  7159. height: math.unit(6 + 3 / 12, "feet"),
  7160. default: true
  7161. },
  7162. {
  7163. name: "Macro",
  7164. height: math.unit(300, "feet")
  7165. },
  7166. {
  7167. name: "Megamacro",
  7168. height: math.unit(69, "miles")
  7169. },
  7170. ]
  7171. ))
  7172. characterMakers.push(() => makeCharacter(
  7173. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7174. {
  7175. side: {
  7176. height: math.unit(6, "feet"),
  7177. weight: math.unit(2304, "lbs"),
  7178. name: "Side",
  7179. image: {
  7180. source: "./media/characters/arcturax/side.svg",
  7181. extra: 790 / 376,
  7182. bottom: 0.01
  7183. }
  7184. },
  7185. },
  7186. [
  7187. {
  7188. name: "Micro",
  7189. height: math.unit(2, "inch")
  7190. },
  7191. {
  7192. name: "Normal",
  7193. height: math.unit(6, "feet")
  7194. },
  7195. {
  7196. name: "Macro",
  7197. height: math.unit(39, "feet"),
  7198. default: true
  7199. },
  7200. {
  7201. name: "Megamacro",
  7202. height: math.unit(7, "miles")
  7203. },
  7204. ]
  7205. ))
  7206. characterMakers.push(() => makeCharacter(
  7207. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7208. {
  7209. front: {
  7210. height: math.unit(6, "feet"),
  7211. weight: math.unit(50, "lbs"),
  7212. name: "Front",
  7213. image: {
  7214. source: "./media/characters/sentri/front.svg",
  7215. extra: 1750 / 1570,
  7216. bottom: 0.025
  7217. }
  7218. },
  7219. frontAlt: {
  7220. height: math.unit(6, "feet"),
  7221. weight: math.unit(50, "lbs"),
  7222. name: "Front (Alt)",
  7223. image: {
  7224. source: "./media/characters/sentri/front-alt.svg",
  7225. extra: 1750 / 1570,
  7226. bottom: 0.025
  7227. }
  7228. },
  7229. },
  7230. [
  7231. {
  7232. name: "Normal",
  7233. height: math.unit(15, "feet"),
  7234. default: true
  7235. },
  7236. {
  7237. name: "Macro",
  7238. height: math.unit(2500, "feet")
  7239. }
  7240. ]
  7241. ))
  7242. characterMakers.push(() => makeCharacter(
  7243. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7244. {
  7245. front: {
  7246. height: math.unit(5 + 8 / 12, "feet"),
  7247. weight: math.unit(130, "lbs"),
  7248. name: "Front",
  7249. image: {
  7250. source: "./media/characters/corvin/front.svg",
  7251. extra: 1803 / 1629
  7252. }
  7253. },
  7254. frontShirt: {
  7255. height: math.unit(5 + 8 / 12, "feet"),
  7256. weight: math.unit(130, "lbs"),
  7257. name: "Front (Shirt)",
  7258. image: {
  7259. source: "./media/characters/corvin/front-shirt.svg",
  7260. extra: 1803 / 1629
  7261. }
  7262. },
  7263. frontPoncho: {
  7264. height: math.unit(5 + 8 / 12, "feet"),
  7265. weight: math.unit(130, "lbs"),
  7266. name: "Front (Poncho)",
  7267. image: {
  7268. source: "./media/characters/corvin/front-poncho.svg",
  7269. extra: 1803 / 1629
  7270. }
  7271. },
  7272. side: {
  7273. height: math.unit(5 + 8 / 12, "feet"),
  7274. weight: math.unit(130, "lbs"),
  7275. name: "Side",
  7276. image: {
  7277. source: "./media/characters/corvin/side.svg",
  7278. extra: 1012 / 945
  7279. }
  7280. },
  7281. back: {
  7282. height: math.unit(5 + 8 / 12, "feet"),
  7283. weight: math.unit(130, "lbs"),
  7284. name: "Back",
  7285. image: {
  7286. source: "./media/characters/corvin/back.svg",
  7287. extra: 1803 / 1629
  7288. }
  7289. },
  7290. },
  7291. [
  7292. {
  7293. name: "Micro",
  7294. height: math.unit(3, "inches")
  7295. },
  7296. {
  7297. name: "Normal",
  7298. height: math.unit(5 + 8 / 12, "feet")
  7299. },
  7300. {
  7301. name: "Macro",
  7302. height: math.unit(300, "feet"),
  7303. default: true
  7304. },
  7305. {
  7306. name: "Megamacro",
  7307. height: math.unit(500, "miles")
  7308. }
  7309. ]
  7310. ))
  7311. characterMakers.push(() => makeCharacter(
  7312. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7313. {
  7314. front: {
  7315. height: math.unit(6, "feet"),
  7316. weight: math.unit(135, "lbs"),
  7317. name: "Front",
  7318. image: {
  7319. source: "./media/characters/q/front.svg",
  7320. extra: 854 / 752,
  7321. bottom: 0.005
  7322. }
  7323. },
  7324. back: {
  7325. height: math.unit(6, "feet"),
  7326. weight: math.unit(130, "lbs"),
  7327. name: "Back",
  7328. image: {
  7329. source: "./media/characters/q/back.svg",
  7330. extra: 854 / 752
  7331. }
  7332. },
  7333. },
  7334. [
  7335. {
  7336. name: "Macro",
  7337. height: math.unit(90, "feet"),
  7338. default: true
  7339. },
  7340. {
  7341. name: "Extra Macro",
  7342. height: math.unit(300, "feet"),
  7343. },
  7344. {
  7345. name: "BIG WALF",
  7346. height: math.unit(750, "feet"),
  7347. },
  7348. ]
  7349. ))
  7350. characterMakers.push(() => makeCharacter(
  7351. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7352. {
  7353. front: {
  7354. height: math.unit(6, "feet"),
  7355. weight: math.unit(150, "lbs"),
  7356. name: "Front",
  7357. image: {
  7358. source: "./media/characters/carley/front.svg",
  7359. extra: 3927 / 3540,
  7360. bottom: 29.2 / 735
  7361. }
  7362. }
  7363. },
  7364. [
  7365. {
  7366. name: "Normal",
  7367. height: math.unit(6 + 3 / 12, "feet")
  7368. },
  7369. {
  7370. name: "Macro",
  7371. height: math.unit(185, "feet"),
  7372. default: true
  7373. },
  7374. {
  7375. name: "Megamacro",
  7376. height: math.unit(8, "miles"),
  7377. },
  7378. ]
  7379. ))
  7380. characterMakers.push(() => makeCharacter(
  7381. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7382. {
  7383. front: {
  7384. height: math.unit(3, "feet"),
  7385. weight: math.unit(28, "lbs"),
  7386. name: "Front",
  7387. image: {
  7388. source: "./media/characters/citrine/front.svg"
  7389. }
  7390. }
  7391. },
  7392. [
  7393. {
  7394. name: "Normal",
  7395. height: math.unit(3, "feet"),
  7396. default: true
  7397. }
  7398. ]
  7399. ))
  7400. characterMakers.push(() => makeCharacter(
  7401. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7402. {
  7403. front: {
  7404. height: math.unit(14, "feet"),
  7405. weight: math.unit(1450, "kg"),
  7406. capacity: math.unit(15, "people"),
  7407. name: "Front",
  7408. image: {
  7409. source: "./media/characters/aura-starwind/front.svg",
  7410. extra: 1455 / 1335
  7411. }
  7412. },
  7413. side: {
  7414. height: math.unit(14, "feet"),
  7415. weight: math.unit(1450, "kg"),
  7416. capacity: math.unit(15, "people"),
  7417. name: "Side",
  7418. image: {
  7419. source: "./media/characters/aura-starwind/side.svg",
  7420. extra: 1654 / 1497
  7421. }
  7422. },
  7423. taur: {
  7424. height: math.unit(18, "feet"),
  7425. weight: math.unit(5500, "kg"),
  7426. capacity: math.unit(50, "people"),
  7427. name: "Taur",
  7428. image: {
  7429. source: "./media/characters/aura-starwind/taur.svg",
  7430. extra: 1760 / 1650
  7431. }
  7432. },
  7433. feral: {
  7434. height: math.unit(46, "feet"),
  7435. weight: math.unit(25000, "kg"),
  7436. capacity: math.unit(120, "people"),
  7437. name: "Feral",
  7438. image: {
  7439. source: "./media/characters/aura-starwind/feral.svg"
  7440. }
  7441. },
  7442. },
  7443. [
  7444. {
  7445. name: "Normal",
  7446. height: math.unit(14, "feet"),
  7447. default: true
  7448. },
  7449. {
  7450. name: "Macro",
  7451. height: math.unit(50, "meters")
  7452. },
  7453. {
  7454. name: "Megamacro",
  7455. height: math.unit(5000, "meters")
  7456. },
  7457. {
  7458. name: "Gigamacro",
  7459. height: math.unit(100000, "kilometers")
  7460. },
  7461. ]
  7462. ))
  7463. characterMakers.push(() => makeCharacter(
  7464. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7465. {
  7466. front: {
  7467. height: math.unit(2 + 7 / 12, "feet"),
  7468. weight: math.unit(32, "lbs"),
  7469. name: "Front",
  7470. image: {
  7471. source: "./media/characters/rivet/front.svg",
  7472. extra: 1716 / 1658,
  7473. bottom: 0.03
  7474. }
  7475. },
  7476. foot: {
  7477. height: math.unit(0.551, "feet"),
  7478. name: "Rivet's Foot",
  7479. image: {
  7480. source: "./media/characters/rivet/foot.svg"
  7481. },
  7482. rename: true
  7483. }
  7484. },
  7485. [
  7486. {
  7487. name: "Micro",
  7488. height: math.unit(1.5, "inches"),
  7489. },
  7490. {
  7491. name: "Normal",
  7492. height: math.unit(2 + 7 / 12, "feet"),
  7493. default: true
  7494. },
  7495. {
  7496. name: "Macro",
  7497. height: math.unit(85, "feet")
  7498. },
  7499. {
  7500. name: "Megamacro",
  7501. height: math.unit(2.2, "km")
  7502. }
  7503. ]
  7504. ))
  7505. characterMakers.push(() => makeCharacter(
  7506. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7507. {
  7508. front: {
  7509. height: math.unit(5 + 9 / 12, "feet"),
  7510. weight: math.unit(150, "lbs"),
  7511. name: "Front",
  7512. image: {
  7513. source: "./media/characters/coffee/front.svg",
  7514. extra: 3666 / 3032,
  7515. bottom: 0.04
  7516. }
  7517. },
  7518. foot: {
  7519. height: math.unit(1.29, "feet"),
  7520. name: "Foot",
  7521. image: {
  7522. source: "./media/characters/coffee/foot.svg"
  7523. }
  7524. },
  7525. },
  7526. [
  7527. {
  7528. name: "Micro",
  7529. height: math.unit(2, "inches"),
  7530. },
  7531. {
  7532. name: "Normal",
  7533. height: math.unit(5 + 9 / 12, "feet"),
  7534. default: true
  7535. },
  7536. {
  7537. name: "Macro",
  7538. height: math.unit(800, "feet")
  7539. },
  7540. {
  7541. name: "Megamacro",
  7542. height: math.unit(25, "miles")
  7543. }
  7544. ]
  7545. ))
  7546. characterMakers.push(() => makeCharacter(
  7547. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7548. {
  7549. front: {
  7550. height: math.unit(6, "feet"),
  7551. weight: math.unit(200, "lbs"),
  7552. name: "Front",
  7553. image: {
  7554. source: "./media/characters/chari-gal/front.svg",
  7555. extra: 1568 / 1385,
  7556. bottom: 0.047
  7557. }
  7558. },
  7559. gigantamax: {
  7560. height: math.unit(6 * 16, "feet"),
  7561. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7562. name: "Gigantamax",
  7563. image: {
  7564. source: "./media/characters/chari-gal/gigantamax.svg",
  7565. extra: 1124 / 888,
  7566. bottom: 0.03
  7567. }
  7568. },
  7569. },
  7570. [
  7571. {
  7572. name: "Normal",
  7573. height: math.unit(5 + 7 / 12, "feet")
  7574. },
  7575. {
  7576. name: "Macro",
  7577. height: math.unit(200, "feet"),
  7578. default: true
  7579. }
  7580. ]
  7581. ))
  7582. characterMakers.push(() => makeCharacter(
  7583. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7584. {
  7585. front: {
  7586. height: math.unit(6, "feet"),
  7587. weight: math.unit(150, "lbs"),
  7588. name: "Front",
  7589. image: {
  7590. source: "./media/characters/nova/front.svg",
  7591. extra: 5000 / 4722,
  7592. bottom: 0.02
  7593. }
  7594. }
  7595. },
  7596. [
  7597. {
  7598. name: "Micro-",
  7599. height: math.unit(0.8, "inches")
  7600. },
  7601. {
  7602. name: "Micro",
  7603. height: math.unit(2, "inches"),
  7604. default: true
  7605. },
  7606. ]
  7607. ))
  7608. characterMakers.push(() => makeCharacter(
  7609. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7610. {
  7611. front: {
  7612. height: math.unit(3 + 1 / 12, "feet"),
  7613. weight: math.unit(21.7, "lbs"),
  7614. name: "Front",
  7615. image: {
  7616. source: "./media/characters/argent/front.svg",
  7617. extra: 1471 / 1331,
  7618. bottom: 100.8 / 1575.5
  7619. }
  7620. }
  7621. },
  7622. [
  7623. {
  7624. name: "Micro",
  7625. height: math.unit(2, "inches")
  7626. },
  7627. {
  7628. name: "Normal",
  7629. height: math.unit(3 + 1 / 12, "feet"),
  7630. default: true
  7631. },
  7632. {
  7633. name: "Macro",
  7634. height: math.unit(120, "feet")
  7635. },
  7636. ]
  7637. ))
  7638. characterMakers.push(() => makeCharacter(
  7639. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7640. {
  7641. lamp: {
  7642. height: math.unit(7 * 1559 / 989, "feet"),
  7643. name: "Magic Lamp",
  7644. image: {
  7645. source: "./media/characters/mira-al-cul/lamp.svg",
  7646. extra: 1617 / 1559
  7647. }
  7648. },
  7649. front: {
  7650. height: math.unit(7, "feet"),
  7651. name: "Front",
  7652. image: {
  7653. source: "./media/characters/mira-al-cul/front.svg",
  7654. extra: 1044 / 990
  7655. }
  7656. },
  7657. },
  7658. [
  7659. {
  7660. name: "Heavily Restricted",
  7661. height: math.unit(7 * 1559 / 989, "feet")
  7662. },
  7663. {
  7664. name: "Freshly Freed",
  7665. height: math.unit(50 * 1559 / 989, "feet")
  7666. },
  7667. {
  7668. name: "World Encompassing",
  7669. height: math.unit(10000 * 1559 / 989, "miles")
  7670. },
  7671. {
  7672. name: "Galactic",
  7673. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7674. },
  7675. {
  7676. name: "Palmed Universe",
  7677. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7678. default: true
  7679. },
  7680. {
  7681. name: "Multiversal Matriarch",
  7682. height: math.unit(8.87e10, "yottameters")
  7683. },
  7684. {
  7685. name: "Void Mother",
  7686. height: math.unit(3.14e110, "yottaparsecs")
  7687. },
  7688. {
  7689. name: "Toying with Transcendence",
  7690. height: math.unit(1e307, "meters")
  7691. },
  7692. ]
  7693. ))
  7694. characterMakers.push(() => makeCharacter(
  7695. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7696. {
  7697. front: {
  7698. height: math.unit(17 + 1 / 12, "feet"),
  7699. weight: math.unit(476.2 * 5, "lbs"),
  7700. name: "Front",
  7701. image: {
  7702. source: "./media/characters/kuro-shi-uchū/front.svg",
  7703. extra: 2329 / 1835,
  7704. bottom: 0.02
  7705. }
  7706. },
  7707. },
  7708. [
  7709. {
  7710. name: "Micro",
  7711. height: math.unit(2, "inches")
  7712. },
  7713. {
  7714. name: "Normal",
  7715. height: math.unit(12, "meters")
  7716. },
  7717. {
  7718. name: "Planetary",
  7719. height: math.unit(0.00929, "AU"),
  7720. default: true
  7721. },
  7722. {
  7723. name: "Universal",
  7724. height: math.unit(20, "gigaparsecs")
  7725. },
  7726. ]
  7727. ))
  7728. characterMakers.push(() => makeCharacter(
  7729. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7730. {
  7731. front: {
  7732. height: math.unit(5 + 2 / 12, "feet"),
  7733. weight: math.unit(120, "lbs"),
  7734. name: "Front",
  7735. image: {
  7736. source: "./media/characters/katherine/front.svg",
  7737. extra: 2075 / 1969
  7738. }
  7739. },
  7740. dress: {
  7741. height: math.unit(5 + 2 / 12, "feet"),
  7742. weight: math.unit(120, "lbs"),
  7743. name: "Dress",
  7744. image: {
  7745. source: "./media/characters/katherine/dress.svg",
  7746. extra: 2258 / 2064
  7747. }
  7748. },
  7749. },
  7750. [
  7751. {
  7752. name: "Micro",
  7753. height: math.unit(1, "inches"),
  7754. default: true
  7755. },
  7756. {
  7757. name: "Normal",
  7758. height: math.unit(5 + 2 / 12, "feet")
  7759. },
  7760. {
  7761. name: "Macro",
  7762. height: math.unit(100, "meters")
  7763. },
  7764. {
  7765. name: "Megamacro",
  7766. height: math.unit(80, "miles")
  7767. },
  7768. ]
  7769. ))
  7770. characterMakers.push(() => makeCharacter(
  7771. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7772. {
  7773. front: {
  7774. height: math.unit(7 + 8 / 12, "feet"),
  7775. weight: math.unit(250, "lbs"),
  7776. name: "Front",
  7777. image: {
  7778. source: "./media/characters/yevis/front.svg",
  7779. extra: 1938 / 1755
  7780. }
  7781. }
  7782. },
  7783. [
  7784. {
  7785. name: "Mortal",
  7786. height: math.unit(7 + 8 / 12, "feet")
  7787. },
  7788. {
  7789. name: "Battle",
  7790. height: math.unit(25 + 11 / 12, "feet")
  7791. },
  7792. {
  7793. name: "Wrath",
  7794. height: math.unit(1654 + 11 / 12, "feet")
  7795. },
  7796. {
  7797. name: "Planet Destroyer",
  7798. height: math.unit(12000, "miles")
  7799. },
  7800. {
  7801. name: "Galaxy Conqueror",
  7802. height: math.unit(1.45, "zettameters"),
  7803. default: true
  7804. },
  7805. {
  7806. name: "Universal War",
  7807. height: math.unit(184, "gigaparsecs")
  7808. },
  7809. {
  7810. name: "Eternity War",
  7811. height: math.unit(1.98e55, "yottaparsecs")
  7812. },
  7813. ]
  7814. ))
  7815. characterMakers.push(() => makeCharacter(
  7816. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7817. {
  7818. front: {
  7819. height: math.unit(5 + 8 / 12, "feet"),
  7820. weight: math.unit(63, "kg"),
  7821. name: "Front",
  7822. image: {
  7823. source: "./media/characters/xavier/front.svg",
  7824. extra: 944 / 883
  7825. }
  7826. },
  7827. frontStretch: {
  7828. height: math.unit(5 + 8 / 12, "feet"),
  7829. weight: math.unit(63, "kg"),
  7830. name: "Stretching",
  7831. image: {
  7832. source: "./media/characters/xavier/front-stretch.svg",
  7833. extra: 962 / 820
  7834. }
  7835. },
  7836. },
  7837. [
  7838. {
  7839. name: "Normal",
  7840. height: math.unit(5 + 8 / 12, "feet")
  7841. },
  7842. {
  7843. name: "Macro",
  7844. height: math.unit(100, "meters"),
  7845. default: true
  7846. },
  7847. {
  7848. name: "McLargeHuge",
  7849. height: math.unit(10, "miles")
  7850. },
  7851. ]
  7852. ))
  7853. characterMakers.push(() => makeCharacter(
  7854. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7855. {
  7856. front: {
  7857. height: math.unit(5 + 5 / 12, "feet"),
  7858. weight: math.unit(150, "lb"),
  7859. name: "Front",
  7860. image: {
  7861. source: "./media/characters/joshii/front.svg"
  7862. }
  7863. },
  7864. foot: {
  7865. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7866. name: "Foot",
  7867. image: {
  7868. source: "./media/characters/joshii/foot.svg"
  7869. }
  7870. },
  7871. },
  7872. [
  7873. {
  7874. name: "Micro",
  7875. height: math.unit(2, "inches")
  7876. },
  7877. {
  7878. name: "Normal",
  7879. height: math.unit(5 + 5 / 12, "feet"),
  7880. default: true
  7881. },
  7882. {
  7883. name: "Macro",
  7884. height: math.unit(785, "feet")
  7885. },
  7886. {
  7887. name: "Megamacro",
  7888. height: math.unit(24.5, "miles")
  7889. },
  7890. ]
  7891. ))
  7892. characterMakers.push(() => makeCharacter(
  7893. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7894. {
  7895. front: {
  7896. height: math.unit(6, "feet"),
  7897. weight: math.unit(150, "lb"),
  7898. name: "Front",
  7899. image: {
  7900. source: "./media/characters/goddess-elizabeth/front.svg",
  7901. extra: 1800 / 1525,
  7902. bottom: 0.005
  7903. }
  7904. },
  7905. foot: {
  7906. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7907. name: "Foot",
  7908. image: {
  7909. source: "./media/characters/goddess-elizabeth/foot.svg"
  7910. }
  7911. },
  7912. mouth: {
  7913. height: math.unit(6, "feet"),
  7914. name: "Mouth",
  7915. image: {
  7916. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7917. }
  7918. },
  7919. },
  7920. [
  7921. {
  7922. name: "Micro",
  7923. height: math.unit(12, "feet")
  7924. },
  7925. {
  7926. name: "Normal",
  7927. height: math.unit(80, "miles"),
  7928. default: true
  7929. },
  7930. {
  7931. name: "Macro",
  7932. height: math.unit(15000, "parsecs")
  7933. },
  7934. ]
  7935. ))
  7936. characterMakers.push(() => makeCharacter(
  7937. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7938. {
  7939. front: {
  7940. height: math.unit(5 + 9 / 12, "feet"),
  7941. weight: math.unit(144, "lb"),
  7942. name: "Front",
  7943. image: {
  7944. source: "./media/characters/kara/front.svg"
  7945. }
  7946. },
  7947. feet: {
  7948. height: math.unit(6 / 6.765, "feet"),
  7949. name: "Kara's Feet",
  7950. rename: true,
  7951. image: {
  7952. source: "./media/characters/kara/feet.svg"
  7953. }
  7954. },
  7955. },
  7956. [
  7957. {
  7958. name: "Normal",
  7959. height: math.unit(5 + 9 / 12, "feet")
  7960. },
  7961. {
  7962. name: "Macro",
  7963. height: math.unit(174, "feet"),
  7964. default: true
  7965. },
  7966. ]
  7967. ))
  7968. characterMakers.push(() => makeCharacter(
  7969. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7970. {
  7971. front: {
  7972. height: math.unit(18, "feet"),
  7973. weight: math.unit(4050, "lb"),
  7974. name: "Front",
  7975. image: {
  7976. source: "./media/characters/tyrone/front.svg",
  7977. extra: 2520 / 2402,
  7978. bottom: 0.025
  7979. }
  7980. },
  7981. },
  7982. [
  7983. {
  7984. name: "Normal",
  7985. height: math.unit(18, "feet"),
  7986. default: true
  7987. },
  7988. {
  7989. name: "Macro",
  7990. height: math.unit(300, "feet")
  7991. },
  7992. ]
  7993. ))
  7994. characterMakers.push(() => makeCharacter(
  7995. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7996. {
  7997. front: {
  7998. height: math.unit(7 + 8 / 12, "feet"),
  7999. weight: math.unit(120, "lb"),
  8000. name: "Front",
  8001. image: {
  8002. source: "./media/characters/danny/front.svg",
  8003. extra: 1490 / 1350
  8004. }
  8005. },
  8006. back: {
  8007. height: math.unit(7 + 8 / 12, "feet"),
  8008. weight: math.unit(120, "lb"),
  8009. name: "Back",
  8010. image: {
  8011. source: "./media/characters/danny/back.svg",
  8012. extra: 1490 / 1350
  8013. }
  8014. },
  8015. },
  8016. [
  8017. {
  8018. name: "Normal",
  8019. height: math.unit(7 + 8 / 12, "feet"),
  8020. default: true
  8021. },
  8022. ]
  8023. ))
  8024. characterMakers.push(() => makeCharacter(
  8025. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8026. {
  8027. front: {
  8028. height: math.unit(3.5, "inches"),
  8029. weight: math.unit(19, "grams"),
  8030. name: "Front",
  8031. image: {
  8032. source: "./media/characters/mallow/front.svg",
  8033. extra: 471 / 431
  8034. }
  8035. },
  8036. back: {
  8037. height: math.unit(3.5, "inches"),
  8038. weight: math.unit(19, "grams"),
  8039. name: "Back",
  8040. image: {
  8041. source: "./media/characters/mallow/back.svg",
  8042. extra: 471 / 431
  8043. }
  8044. },
  8045. },
  8046. [
  8047. {
  8048. name: "Normal",
  8049. height: math.unit(3.5, "inches"),
  8050. default: true
  8051. },
  8052. ]
  8053. ))
  8054. characterMakers.push(() => makeCharacter(
  8055. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8056. {
  8057. front: {
  8058. height: math.unit(9, "feet"),
  8059. weight: math.unit(230, "kg"),
  8060. name: "Front",
  8061. image: {
  8062. source: "./media/characters/starry-aqua/front.svg"
  8063. }
  8064. },
  8065. back: {
  8066. height: math.unit(9, "feet"),
  8067. weight: math.unit(230, "kg"),
  8068. name: "Back",
  8069. image: {
  8070. source: "./media/characters/starry-aqua/back.svg"
  8071. }
  8072. },
  8073. hand: {
  8074. height: math.unit(9 * 0.1168, "feet"),
  8075. name: "Hand",
  8076. image: {
  8077. source: "./media/characters/starry-aqua/hand.svg"
  8078. }
  8079. },
  8080. foot: {
  8081. height: math.unit(9 * 0.18, "feet"),
  8082. name: "Foot",
  8083. image: {
  8084. source: "./media/characters/starry-aqua/foot.svg"
  8085. }
  8086. }
  8087. },
  8088. [
  8089. {
  8090. name: "Micro",
  8091. height: math.unit(3, "inches")
  8092. },
  8093. {
  8094. name: "Normal",
  8095. height: math.unit(9, "feet")
  8096. },
  8097. {
  8098. name: "Macro",
  8099. height: math.unit(300, "feet"),
  8100. default: true
  8101. },
  8102. {
  8103. name: "Megamacro",
  8104. height: math.unit(3200, "feet")
  8105. }
  8106. ]
  8107. ))
  8108. characterMakers.push(() => makeCharacter(
  8109. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8110. {
  8111. front: {
  8112. height: math.unit(6, "feet"),
  8113. weight: math.unit(230, "lb"),
  8114. name: "Front",
  8115. image: {
  8116. source: "./media/characters/luka/front.svg",
  8117. extra: 1,
  8118. bottom: 0.025
  8119. }
  8120. },
  8121. },
  8122. [
  8123. {
  8124. name: "Normal",
  8125. height: math.unit(12 + 8 / 12, "feet"),
  8126. default: true
  8127. },
  8128. {
  8129. name: "Minimacro",
  8130. height: math.unit(20, "feet")
  8131. },
  8132. {
  8133. name: "Macro",
  8134. height: math.unit(250, "feet")
  8135. },
  8136. {
  8137. name: "Megamacro",
  8138. height: math.unit(5, "miles")
  8139. },
  8140. {
  8141. name: "Gigamacro",
  8142. height: math.unit(8000, "miles")
  8143. },
  8144. ]
  8145. ))
  8146. characterMakers.push(() => makeCharacter(
  8147. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8148. {
  8149. front: {
  8150. height: math.unit(6, "feet"),
  8151. weight: math.unit(150, "lb"),
  8152. name: "Front",
  8153. image: {
  8154. source: "./media/characters/natalie-nightring/front.svg",
  8155. extra: 1,
  8156. bottom: 0.06
  8157. }
  8158. },
  8159. },
  8160. [
  8161. {
  8162. name: "Uh Oh",
  8163. height: math.unit(0.1, "mm")
  8164. },
  8165. {
  8166. name: "Small",
  8167. height: math.unit(3, "inches")
  8168. },
  8169. {
  8170. name: "Human Scale",
  8171. height: math.unit(6, "feet")
  8172. },
  8173. {
  8174. name: "Librarian",
  8175. height: math.unit(50, "feet"),
  8176. default: true
  8177. },
  8178. {
  8179. name: "Immense",
  8180. height: math.unit(200, "miles")
  8181. },
  8182. ]
  8183. ))
  8184. characterMakers.push(() => makeCharacter(
  8185. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8186. {
  8187. front: {
  8188. height: math.unit(6, "feet"),
  8189. weight: math.unit(180, "lbs"),
  8190. name: "Front",
  8191. image: {
  8192. source: "./media/characters/danni-rosie/front.svg",
  8193. extra: 1260 / 1128,
  8194. bottom: 0.022
  8195. }
  8196. },
  8197. },
  8198. [
  8199. {
  8200. name: "Micro",
  8201. height: math.unit(2, "inches"),
  8202. default: true
  8203. },
  8204. ]
  8205. ))
  8206. characterMakers.push(() => makeCharacter(
  8207. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8208. {
  8209. front: {
  8210. height: math.unit(5 + 9 / 12, "feet"),
  8211. weight: math.unit(220, "lb"),
  8212. name: "Front",
  8213. image: {
  8214. source: "./media/characters/samantha-kruse/front.svg",
  8215. extra: (985 / 935),
  8216. bottom: 0.03
  8217. }
  8218. },
  8219. frontUndressed: {
  8220. height: math.unit(5 + 9 / 12, "feet"),
  8221. weight: math.unit(220, "lb"),
  8222. name: "Front (Undressed)",
  8223. image: {
  8224. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8225. extra: (973 / 923),
  8226. bottom: 0.025
  8227. }
  8228. },
  8229. fat: {
  8230. height: math.unit(5 + 9 / 12, "feet"),
  8231. weight: math.unit(900, "lb"),
  8232. name: "Front (Fat)",
  8233. image: {
  8234. source: "./media/characters/samantha-kruse/fat.svg",
  8235. extra: 2688 / 2561
  8236. }
  8237. },
  8238. },
  8239. [
  8240. {
  8241. name: "Normal",
  8242. height: math.unit(5 + 9 / 12, "feet"),
  8243. default: true
  8244. }
  8245. ]
  8246. ))
  8247. characterMakers.push(() => makeCharacter(
  8248. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8249. {
  8250. back: {
  8251. height: math.unit(5 + 4 / 12, "feet"),
  8252. weight: math.unit(4963, "lb"),
  8253. name: "Back",
  8254. image: {
  8255. source: "./media/characters/amelia-rosie/back.svg",
  8256. extra: 1113 / 963,
  8257. bottom: 0.01
  8258. }
  8259. },
  8260. },
  8261. [
  8262. {
  8263. name: "Level 0",
  8264. height: math.unit(5 + 4 / 12, "feet")
  8265. },
  8266. {
  8267. name: "Level 1",
  8268. height: math.unit(164597, "feet"),
  8269. default: true
  8270. },
  8271. {
  8272. name: "Level 2",
  8273. height: math.unit(956243, "miles")
  8274. },
  8275. {
  8276. name: "Level 3",
  8277. height: math.unit(29421709423, "miles")
  8278. },
  8279. {
  8280. name: "Level 4",
  8281. height: math.unit(154, "lightyears")
  8282. },
  8283. {
  8284. name: "Level 5",
  8285. height: math.unit(4738272, "lightyears")
  8286. },
  8287. {
  8288. name: "Level 6",
  8289. height: math.unit(145787152896, "lightyears")
  8290. },
  8291. ]
  8292. ))
  8293. characterMakers.push(() => makeCharacter(
  8294. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8295. {
  8296. front: {
  8297. height: math.unit(5 + 11 / 12, "feet"),
  8298. weight: math.unit(65, "kg"),
  8299. name: "Front",
  8300. image: {
  8301. source: "./media/characters/rook-kitara/front.svg",
  8302. extra: 1347 / 1274,
  8303. bottom: 0.005
  8304. }
  8305. },
  8306. },
  8307. [
  8308. {
  8309. name: "Totally Unfair",
  8310. height: math.unit(1.8, "mm")
  8311. },
  8312. {
  8313. name: "Lap Rookie",
  8314. height: math.unit(1.4, "feet")
  8315. },
  8316. {
  8317. name: "Normal",
  8318. height: math.unit(5 + 11 / 12, "feet"),
  8319. default: true
  8320. },
  8321. {
  8322. name: "How Did This Happen",
  8323. height: math.unit(80, "miles")
  8324. }
  8325. ]
  8326. ))
  8327. characterMakers.push(() => makeCharacter(
  8328. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8329. {
  8330. front: {
  8331. height: math.unit(7, "feet"),
  8332. weight: math.unit(300, "lb"),
  8333. name: "Front",
  8334. image: {
  8335. source: "./media/characters/pisces/front.svg",
  8336. extra: 2255 / 2115,
  8337. bottom: 0.03
  8338. }
  8339. },
  8340. back: {
  8341. height: math.unit(7, "feet"),
  8342. weight: math.unit(300, "lb"),
  8343. name: "Back",
  8344. image: {
  8345. source: "./media/characters/pisces/back.svg",
  8346. extra: 2146 / 2055,
  8347. bottom: 0.04
  8348. }
  8349. },
  8350. },
  8351. [
  8352. {
  8353. name: "Normal",
  8354. height: math.unit(7, "feet"),
  8355. default: true
  8356. },
  8357. {
  8358. name: "Swimming Pool",
  8359. height: math.unit(12.2, "meters")
  8360. },
  8361. {
  8362. name: "Olympic Swimming Pool",
  8363. height: math.unit(56.3, "meters")
  8364. },
  8365. {
  8366. name: "Lake Superior",
  8367. height: math.unit(93900, "meters")
  8368. },
  8369. {
  8370. name: "Mediterranean Sea",
  8371. height: math.unit(644457, "meters")
  8372. },
  8373. {
  8374. name: "World's Oceans",
  8375. height: math.unit(4567491, "meters")
  8376. },
  8377. ]
  8378. ))
  8379. characterMakers.push(() => makeCharacter(
  8380. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8381. {
  8382. front: {
  8383. height: math.unit(2.3, "meters"),
  8384. weight: math.unit(120, "kg"),
  8385. name: "Front",
  8386. image: {
  8387. source: "./media/characters/zelas/front.svg"
  8388. }
  8389. },
  8390. side: {
  8391. height: math.unit(2.3, "meters"),
  8392. weight: math.unit(120, "kg"),
  8393. name: "Side",
  8394. image: {
  8395. source: "./media/characters/zelas/side.svg"
  8396. }
  8397. },
  8398. back: {
  8399. height: math.unit(2.3, "meters"),
  8400. weight: math.unit(120, "kg"),
  8401. name: "Back",
  8402. image: {
  8403. source: "./media/characters/zelas/back.svg"
  8404. }
  8405. },
  8406. foot: {
  8407. height: math.unit(1.116, "feet"),
  8408. name: "Foot",
  8409. image: {
  8410. source: "./media/characters/zelas/foot.svg"
  8411. }
  8412. },
  8413. },
  8414. [
  8415. {
  8416. name: "Normal",
  8417. height: math.unit(2.3, "meters")
  8418. },
  8419. {
  8420. name: "Macro",
  8421. height: math.unit(30, "meters"),
  8422. default: true
  8423. },
  8424. ]
  8425. ))
  8426. characterMakers.push(() => makeCharacter(
  8427. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8428. {
  8429. front: {
  8430. height: math.unit(1, "inch"),
  8431. weight: math.unit(0.21, "grams"),
  8432. name: "Front",
  8433. image: {
  8434. source: "./media/characters/talbot/front.svg",
  8435. extra: 594 / 544
  8436. }
  8437. },
  8438. },
  8439. [
  8440. {
  8441. name: "Micro",
  8442. height: math.unit(1, "inch"),
  8443. default: true
  8444. },
  8445. ]
  8446. ))
  8447. characterMakers.push(() => makeCharacter(
  8448. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8449. {
  8450. front: {
  8451. height: math.unit(3 + 3 / 12, "feet"),
  8452. weight: math.unit(51.8, "lb"),
  8453. name: "Front",
  8454. image: {
  8455. source: "./media/characters/fliss/front.svg",
  8456. extra: 840 / 640
  8457. }
  8458. },
  8459. },
  8460. [
  8461. {
  8462. name: "Teeny Tiny",
  8463. height: math.unit(1, "mm")
  8464. },
  8465. {
  8466. name: "Small",
  8467. height: math.unit(1, "inch"),
  8468. default: true
  8469. },
  8470. {
  8471. name: "Standard Sylveon",
  8472. height: math.unit(3 + 3 / 12, "feet")
  8473. },
  8474. {
  8475. name: "Large Nuisance",
  8476. height: math.unit(33, "feet")
  8477. },
  8478. {
  8479. name: "City Filler",
  8480. height: math.unit(3000, "feet")
  8481. },
  8482. {
  8483. name: "New Horizon",
  8484. height: math.unit(6000, "miles")
  8485. },
  8486. ]
  8487. ))
  8488. characterMakers.push(() => makeCharacter(
  8489. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8490. {
  8491. front: {
  8492. height: math.unit(5, "cm"),
  8493. weight: math.unit(1.94, "g"),
  8494. name: "Front",
  8495. image: {
  8496. source: "./media/characters/fleta/front.svg",
  8497. extra: 835 / 803
  8498. }
  8499. },
  8500. back: {
  8501. height: math.unit(5, "cm"),
  8502. weight: math.unit(1.94, "g"),
  8503. name: "Back",
  8504. image: {
  8505. source: "./media/characters/fleta/back.svg",
  8506. extra: 835 / 803
  8507. }
  8508. },
  8509. },
  8510. [
  8511. {
  8512. name: "Micro",
  8513. height: math.unit(5, "cm"),
  8514. default: true
  8515. },
  8516. ]
  8517. ))
  8518. characterMakers.push(() => makeCharacter(
  8519. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8520. {
  8521. front: {
  8522. height: math.unit(6, "feet"),
  8523. weight: math.unit(225, "lb"),
  8524. name: "Front",
  8525. image: {
  8526. source: "./media/characters/dominic/front.svg",
  8527. extra: 1770 / 1620,
  8528. bottom: 0.025
  8529. }
  8530. },
  8531. back: {
  8532. height: math.unit(6, "feet"),
  8533. weight: math.unit(225, "lb"),
  8534. name: "Back",
  8535. image: {
  8536. source: "./media/characters/dominic/back.svg",
  8537. extra: 1745 / 1620,
  8538. bottom: 0.065
  8539. }
  8540. },
  8541. },
  8542. [
  8543. {
  8544. name: "Nano",
  8545. height: math.unit(0.1, "mm")
  8546. },
  8547. {
  8548. name: "Micro-",
  8549. height: math.unit(1, "mm")
  8550. },
  8551. {
  8552. name: "Micro",
  8553. height: math.unit(4, "inches")
  8554. },
  8555. {
  8556. name: "Normal",
  8557. height: math.unit(6 + 4 / 12, "feet"),
  8558. default: true
  8559. },
  8560. {
  8561. name: "Macro",
  8562. height: math.unit(115, "feet")
  8563. },
  8564. {
  8565. name: "Macro+",
  8566. height: math.unit(955, "feet")
  8567. },
  8568. {
  8569. name: "Megamacro",
  8570. height: math.unit(8990, "feet")
  8571. },
  8572. {
  8573. name: "Gigmacro",
  8574. height: math.unit(9310, "miles")
  8575. },
  8576. {
  8577. name: "Teramacro",
  8578. height: math.unit(1567005010, "miles")
  8579. },
  8580. {
  8581. name: "Examacro",
  8582. height: math.unit(1425, "parsecs")
  8583. },
  8584. ]
  8585. ))
  8586. characterMakers.push(() => makeCharacter(
  8587. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8588. {
  8589. front: {
  8590. height: math.unit(400, "feet"),
  8591. weight: math.unit(44444444, "lb"),
  8592. name: "Front",
  8593. image: {
  8594. source: "./media/characters/major-colonel/front.svg"
  8595. }
  8596. },
  8597. back: {
  8598. height: math.unit(400, "feet"),
  8599. weight: math.unit(44444444, "lb"),
  8600. name: "Back",
  8601. image: {
  8602. source: "./media/characters/major-colonel/back.svg"
  8603. }
  8604. },
  8605. },
  8606. [
  8607. {
  8608. name: "Macro",
  8609. height: math.unit(400, "feet"),
  8610. default: true
  8611. },
  8612. ]
  8613. ))
  8614. characterMakers.push(() => makeCharacter(
  8615. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8616. {
  8617. catFront: {
  8618. height: math.unit(6, "feet"),
  8619. weight: math.unit(120, "lb"),
  8620. name: "Front (Cat Side)",
  8621. image: {
  8622. source: "./media/characters/axel-lycan/cat-front.svg",
  8623. extra: 430 / 402,
  8624. bottom: 43 / 472.35
  8625. }
  8626. },
  8627. catBack: {
  8628. height: math.unit(6, "feet"),
  8629. weight: math.unit(120, "lb"),
  8630. name: "Back (Cat Side)",
  8631. image: {
  8632. source: "./media/characters/axel-lycan/cat-back.svg",
  8633. extra: 447 / 419,
  8634. bottom: 23.3 / 469
  8635. }
  8636. },
  8637. wolfFront: {
  8638. height: math.unit(6, "feet"),
  8639. weight: math.unit(120, "lb"),
  8640. name: "Front (Wolf Side)",
  8641. image: {
  8642. source: "./media/characters/axel-lycan/wolf-front.svg",
  8643. extra: 485 / 456,
  8644. bottom: 19 / 504
  8645. }
  8646. },
  8647. wolfBack: {
  8648. height: math.unit(6, "feet"),
  8649. weight: math.unit(120, "lb"),
  8650. name: "Back (Wolf Side)",
  8651. image: {
  8652. source: "./media/characters/axel-lycan/wolf-back.svg",
  8653. extra: 475 / 438,
  8654. bottom: 39.2 / 514
  8655. }
  8656. },
  8657. },
  8658. [
  8659. {
  8660. name: "Macro",
  8661. height: math.unit(1, "km"),
  8662. default: true
  8663. },
  8664. ]
  8665. ))
  8666. characterMakers.push(() => makeCharacter(
  8667. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8668. {
  8669. front: {
  8670. height: math.unit(5 + 9 / 12, "feet"),
  8671. weight: math.unit(175, "lb"),
  8672. name: "Front",
  8673. image: {
  8674. source: "./media/characters/vanrel-hyena/front.svg",
  8675. extra: 1086 / 1010,
  8676. bottom: 0.04
  8677. }
  8678. },
  8679. },
  8680. [
  8681. {
  8682. name: "Normal",
  8683. height: math.unit(5 + 9 / 12, "feet"),
  8684. default: true
  8685. },
  8686. ]
  8687. ))
  8688. characterMakers.push(() => makeCharacter(
  8689. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8690. {
  8691. front: {
  8692. height: math.unit(6, "feet"),
  8693. weight: math.unit(103, "lb"),
  8694. name: "Front",
  8695. image: {
  8696. source: "./media/characters/abbott-absol/front.svg",
  8697. extra: 2010 / 1842
  8698. }
  8699. },
  8700. },
  8701. [
  8702. {
  8703. name: "Megamicro",
  8704. height: math.unit(0.1, "mm")
  8705. },
  8706. {
  8707. name: "Micro",
  8708. height: math.unit(1, "inch")
  8709. },
  8710. {
  8711. name: "Normal",
  8712. height: math.unit(6, "feet"),
  8713. default: true
  8714. },
  8715. ]
  8716. ))
  8717. characterMakers.push(() => makeCharacter(
  8718. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8719. {
  8720. front: {
  8721. height: math.unit(6, "feet"),
  8722. weight: math.unit(264, "lb"),
  8723. name: "Front",
  8724. image: {
  8725. source: "./media/characters/hector/front.svg",
  8726. extra: 2280 / 2130,
  8727. bottom: 0.07
  8728. }
  8729. },
  8730. },
  8731. [
  8732. {
  8733. name: "Normal",
  8734. height: math.unit(12.25, "foot"),
  8735. default: true
  8736. },
  8737. {
  8738. name: "Macro",
  8739. height: math.unit(160, "feet")
  8740. },
  8741. ]
  8742. ))
  8743. characterMakers.push(() => makeCharacter(
  8744. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8745. {
  8746. front: {
  8747. height: math.unit(6, "feet"),
  8748. weight: math.unit(150, "lb"),
  8749. name: "Front",
  8750. image: {
  8751. source: "./media/characters/sal/front.svg",
  8752. extra: 1846 / 1699,
  8753. bottom: 0.04
  8754. }
  8755. },
  8756. },
  8757. [
  8758. {
  8759. name: "Megamacro",
  8760. height: math.unit(10, "miles"),
  8761. default: true
  8762. },
  8763. ]
  8764. ))
  8765. characterMakers.push(() => makeCharacter(
  8766. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8767. {
  8768. front: {
  8769. height: math.unit(3, "meters"),
  8770. weight: math.unit(450, "kg"),
  8771. name: "front",
  8772. image: {
  8773. source: "./media/characters/ranger/front.svg",
  8774. extra: 2401 / 2243,
  8775. bottom: 0.05
  8776. }
  8777. },
  8778. },
  8779. [
  8780. {
  8781. name: "Normal",
  8782. height: math.unit(3, "meters"),
  8783. default: true
  8784. },
  8785. ]
  8786. ))
  8787. characterMakers.push(() => makeCharacter(
  8788. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8789. {
  8790. front: {
  8791. height: math.unit(14, "feet"),
  8792. weight: math.unit(800, "kg"),
  8793. name: "Front",
  8794. image: {
  8795. source: "./media/characters/theresa/front.svg",
  8796. extra: 3575 / 3346,
  8797. bottom: 0.03
  8798. }
  8799. },
  8800. },
  8801. [
  8802. {
  8803. name: "Normal",
  8804. height: math.unit(14, "feet"),
  8805. default: true
  8806. },
  8807. ]
  8808. ))
  8809. characterMakers.push(() => makeCharacter(
  8810. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8811. {
  8812. front: {
  8813. height: math.unit(6, "feet"),
  8814. weight: math.unit(3, "kg"),
  8815. name: "Front",
  8816. image: {
  8817. source: "./media/characters/ine/front.svg",
  8818. extra: 678 / 539,
  8819. bottom: 0.023
  8820. }
  8821. },
  8822. },
  8823. [
  8824. {
  8825. name: "Normal",
  8826. height: math.unit(2.265, "feet"),
  8827. default: true
  8828. },
  8829. ]
  8830. ))
  8831. characterMakers.push(() => makeCharacter(
  8832. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8833. {
  8834. front: {
  8835. height: math.unit(5, "feet"),
  8836. weight: math.unit(30, "kg"),
  8837. name: "Front",
  8838. image: {
  8839. source: "./media/characters/vial/front.svg",
  8840. extra: 1365 / 1277,
  8841. bottom: 0.04
  8842. }
  8843. },
  8844. },
  8845. [
  8846. {
  8847. name: "Normal",
  8848. height: math.unit(5, "feet"),
  8849. default: true
  8850. },
  8851. ]
  8852. ))
  8853. characterMakers.push(() => makeCharacter(
  8854. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8855. {
  8856. side: {
  8857. height: math.unit(3.4, "meters"),
  8858. weight: math.unit(1000, "lb"),
  8859. name: "Side",
  8860. image: {
  8861. source: "./media/characters/rovoska/side.svg",
  8862. extra: 4403 / 1515
  8863. }
  8864. },
  8865. },
  8866. [
  8867. {
  8868. name: "Normal",
  8869. height: math.unit(3.4, "meters"),
  8870. default: true
  8871. },
  8872. ]
  8873. ))
  8874. characterMakers.push(() => makeCharacter(
  8875. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8876. {
  8877. front: {
  8878. height: math.unit(8, "feet"),
  8879. weight: math.unit(315, "lb"),
  8880. name: "Front",
  8881. image: {
  8882. source: "./media/characters/gunner-rotthbauer/front.svg"
  8883. }
  8884. },
  8885. back: {
  8886. height: math.unit(8, "feet"),
  8887. weight: math.unit(315, "lb"),
  8888. name: "Back",
  8889. image: {
  8890. source: "./media/characters/gunner-rotthbauer/back.svg"
  8891. }
  8892. },
  8893. },
  8894. [
  8895. {
  8896. name: "Micro",
  8897. height: math.unit(3.5, "inches")
  8898. },
  8899. {
  8900. name: "Normal",
  8901. height: math.unit(8, "feet"),
  8902. default: true
  8903. },
  8904. {
  8905. name: "Macro",
  8906. height: math.unit(250, "feet")
  8907. },
  8908. {
  8909. name: "Megamacro",
  8910. height: math.unit(1, "AU")
  8911. },
  8912. ]
  8913. ))
  8914. characterMakers.push(() => makeCharacter(
  8915. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8916. {
  8917. front: {
  8918. height: math.unit(5 + 5 / 12, "feet"),
  8919. weight: math.unit(140, "lb"),
  8920. name: "Front",
  8921. image: {
  8922. source: "./media/characters/allatia/front.svg",
  8923. extra: 1227 / 1180,
  8924. bottom: 0.027
  8925. }
  8926. },
  8927. },
  8928. [
  8929. {
  8930. name: "Normal",
  8931. height: math.unit(5 + 5 / 12, "feet")
  8932. },
  8933. {
  8934. name: "Macro",
  8935. height: math.unit(250, "feet"),
  8936. default: true
  8937. },
  8938. {
  8939. name: "Megamacro",
  8940. height: math.unit(8, "miles")
  8941. }
  8942. ]
  8943. ))
  8944. characterMakers.push(() => makeCharacter(
  8945. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8946. {
  8947. front: {
  8948. height: math.unit(6, "feet"),
  8949. weight: math.unit(120, "lb"),
  8950. name: "Front",
  8951. image: {
  8952. source: "./media/characters/tene/front.svg",
  8953. extra: 1728 / 1578,
  8954. bottom: 0.022
  8955. }
  8956. },
  8957. stomping: {
  8958. height: math.unit(2.025, "meters"),
  8959. weight: math.unit(120, "lb"),
  8960. name: "Stomping",
  8961. image: {
  8962. source: "./media/characters/tene/stomping.svg",
  8963. extra: 938 / 873,
  8964. bottom: 0.01
  8965. }
  8966. },
  8967. sitting: {
  8968. height: math.unit(1, "meter"),
  8969. weight: math.unit(120, "lb"),
  8970. name: "Sitting",
  8971. image: {
  8972. source: "./media/characters/tene/sitting.svg",
  8973. extra: 437 / 415,
  8974. bottom: 0.1
  8975. }
  8976. },
  8977. feral: {
  8978. height: math.unit(3.9, "feet"),
  8979. weight: math.unit(250, "lb"),
  8980. name: "Feral",
  8981. image: {
  8982. source: "./media/characters/tene/feral.svg",
  8983. extra: 717 / 458,
  8984. bottom: 0.179
  8985. }
  8986. },
  8987. },
  8988. [
  8989. {
  8990. name: "Normal",
  8991. height: math.unit(6, "feet")
  8992. },
  8993. {
  8994. name: "Macro",
  8995. height: math.unit(300, "feet"),
  8996. default: true
  8997. },
  8998. {
  8999. name: "Megamacro",
  9000. height: math.unit(5, "miles")
  9001. },
  9002. ]
  9003. ))
  9004. characterMakers.push(() => makeCharacter(
  9005. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9006. {
  9007. side: {
  9008. height: math.unit(6, "feet"),
  9009. name: "Side",
  9010. image: {
  9011. source: "./media/characters/evander/side.svg",
  9012. extra: 877 / 477
  9013. }
  9014. },
  9015. },
  9016. [
  9017. {
  9018. name: "Normal",
  9019. height: math.unit(0.83, "meters"),
  9020. default: true
  9021. },
  9022. ]
  9023. ))
  9024. characterMakers.push(() => makeCharacter(
  9025. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9026. {
  9027. front: {
  9028. height: math.unit(12, "feet"),
  9029. weight: math.unit(1000, "lb"),
  9030. name: "Front",
  9031. image: {
  9032. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9033. extra: 1762 / 1611
  9034. }
  9035. },
  9036. back: {
  9037. height: math.unit(12, "feet"),
  9038. weight: math.unit(1000, "lb"),
  9039. name: "Back",
  9040. image: {
  9041. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9042. extra: 1762 / 1611
  9043. }
  9044. },
  9045. },
  9046. [
  9047. {
  9048. name: "Normal",
  9049. height: math.unit(12, "feet"),
  9050. default: true
  9051. },
  9052. {
  9053. name: "Kaiju",
  9054. height: math.unit(150, "feet")
  9055. },
  9056. ]
  9057. ))
  9058. characterMakers.push(() => makeCharacter(
  9059. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9060. {
  9061. front: {
  9062. height: math.unit(6, "feet"),
  9063. weight: math.unit(150, "lb"),
  9064. name: "Front",
  9065. image: {
  9066. source: "./media/characters/zero-alurus/front.svg"
  9067. }
  9068. },
  9069. back: {
  9070. height: math.unit(6, "feet"),
  9071. weight: math.unit(150, "lb"),
  9072. name: "Back",
  9073. image: {
  9074. source: "./media/characters/zero-alurus/back.svg"
  9075. }
  9076. },
  9077. },
  9078. [
  9079. {
  9080. name: "Normal",
  9081. height: math.unit(5 + 10 / 12, "feet")
  9082. },
  9083. {
  9084. name: "Macro",
  9085. height: math.unit(60, "feet"),
  9086. default: true
  9087. },
  9088. {
  9089. name: "Macro+",
  9090. height: math.unit(450, "feet")
  9091. },
  9092. ]
  9093. ))
  9094. characterMakers.push(() => makeCharacter(
  9095. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9096. {
  9097. front: {
  9098. height: math.unit(6, "feet"),
  9099. weight: math.unit(200, "lb"),
  9100. name: "Front",
  9101. image: {
  9102. source: "./media/characters/mega-shi/front.svg",
  9103. extra: 1279 / 1250,
  9104. bottom: 0.02
  9105. }
  9106. },
  9107. back: {
  9108. height: math.unit(6, "feet"),
  9109. weight: math.unit(200, "lb"),
  9110. name: "Back",
  9111. image: {
  9112. source: "./media/characters/mega-shi/back.svg",
  9113. extra: 1279 / 1250,
  9114. bottom: 0.02
  9115. }
  9116. },
  9117. },
  9118. [
  9119. {
  9120. name: "Micro",
  9121. height: math.unit(16 + 6 / 12, "feet")
  9122. },
  9123. {
  9124. name: "Third Dimension",
  9125. height: math.unit(40, "meters")
  9126. },
  9127. {
  9128. name: "Normal",
  9129. height: math.unit(660, "feet"),
  9130. default: true
  9131. },
  9132. {
  9133. name: "Megamacro",
  9134. height: math.unit(10, "miles")
  9135. },
  9136. {
  9137. name: "Planetary Launch",
  9138. height: math.unit(500, "miles")
  9139. },
  9140. {
  9141. name: "Interstellar",
  9142. height: math.unit(1e9, "miles")
  9143. },
  9144. {
  9145. name: "Leaving the Universe",
  9146. height: math.unit(1, "gigaparsec")
  9147. },
  9148. {
  9149. name: "Travelling Universes",
  9150. height: math.unit(30e15, "parsecs")
  9151. },
  9152. ]
  9153. ))
  9154. characterMakers.push(() => makeCharacter(
  9155. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9156. {
  9157. front: {
  9158. height: math.unit(6, "feet"),
  9159. weight: math.unit(150, "lb"),
  9160. name: "Front",
  9161. image: {
  9162. source: "./media/characters/odyssey/front.svg",
  9163. extra: 1782 / 1582,
  9164. bottom: 0.01
  9165. }
  9166. },
  9167. side: {
  9168. height: math.unit(5.7, "feet"),
  9169. weight: math.unit(140, "lb"),
  9170. name: "Side",
  9171. image: {
  9172. source: "./media/characters/odyssey/side.svg",
  9173. extra: 6462 / 5700
  9174. }
  9175. },
  9176. },
  9177. [
  9178. {
  9179. name: "Normal",
  9180. height: math.unit(5 + 4 / 12, "feet")
  9181. },
  9182. {
  9183. name: "Macro",
  9184. height: math.unit(1, "km")
  9185. },
  9186. {
  9187. name: "Megamacro",
  9188. height: math.unit(3000, "km")
  9189. },
  9190. {
  9191. name: "Gigamacro",
  9192. height: math.unit(1, "AU"),
  9193. default: true
  9194. },
  9195. {
  9196. name: "Omniversal",
  9197. height: math.unit(100e14, "lightyears")
  9198. },
  9199. ]
  9200. ))
  9201. characterMakers.push(() => makeCharacter(
  9202. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9203. {
  9204. front: {
  9205. height: math.unit(6, "feet"),
  9206. weight: math.unit(300, "lb"),
  9207. name: "Front",
  9208. image: {
  9209. source: "./media/characters/mekuto/front.svg",
  9210. extra: 921 / 832,
  9211. bottom: 0.03
  9212. }
  9213. },
  9214. hand: {
  9215. height: math.unit(6 / 10.24, "feet"),
  9216. name: "Hand",
  9217. image: {
  9218. source: "./media/characters/mekuto/hand.svg"
  9219. }
  9220. },
  9221. foot: {
  9222. height: math.unit(6 / 5.05, "feet"),
  9223. name: "Foot",
  9224. image: {
  9225. source: "./media/characters/mekuto/foot.svg"
  9226. }
  9227. },
  9228. },
  9229. [
  9230. {
  9231. name: "Minimicro",
  9232. height: math.unit(0.2, "inches")
  9233. },
  9234. {
  9235. name: "Micro",
  9236. height: math.unit(1.5, "inches")
  9237. },
  9238. {
  9239. name: "Normal",
  9240. height: math.unit(5 + 11 / 12, "feet"),
  9241. default: true
  9242. },
  9243. {
  9244. name: "Minimacro",
  9245. height: math.unit(17 + 9 / 12, "feet")
  9246. },
  9247. {
  9248. name: "Macro",
  9249. height: math.unit(177.5, "feet")
  9250. },
  9251. {
  9252. name: "Megamacro",
  9253. height: math.unit(152, "miles")
  9254. },
  9255. ]
  9256. ))
  9257. characterMakers.push(() => makeCharacter(
  9258. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9259. {
  9260. front: {
  9261. height: math.unit(6.5, "inches"),
  9262. weight: math.unit(13, "oz"),
  9263. name: "Front",
  9264. image: {
  9265. source: "./media/characters/dafydd-tomos/front.svg",
  9266. extra: 2990 / 2603,
  9267. bottom: 0.03
  9268. }
  9269. },
  9270. },
  9271. [
  9272. {
  9273. name: "Micro",
  9274. height: math.unit(6.5, "inches"),
  9275. default: true
  9276. },
  9277. ]
  9278. ))
  9279. characterMakers.push(() => makeCharacter(
  9280. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9281. {
  9282. front: {
  9283. height: math.unit(6, "feet"),
  9284. weight: math.unit(150, "lb"),
  9285. name: "Front",
  9286. image: {
  9287. source: "./media/characters/splinter/front.svg",
  9288. extra: 2990 / 2882,
  9289. bottom: 0.04
  9290. }
  9291. },
  9292. back: {
  9293. height: math.unit(6, "feet"),
  9294. weight: math.unit(150, "lb"),
  9295. name: "Back",
  9296. image: {
  9297. source: "./media/characters/splinter/back.svg",
  9298. extra: 2990 / 2882,
  9299. bottom: 0.04
  9300. }
  9301. },
  9302. },
  9303. [
  9304. {
  9305. name: "Normal",
  9306. height: math.unit(6, "feet")
  9307. },
  9308. {
  9309. name: "Macro",
  9310. height: math.unit(230, "meters"),
  9311. default: true
  9312. },
  9313. ]
  9314. ))
  9315. characterMakers.push(() => makeCharacter(
  9316. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9317. {
  9318. front: {
  9319. height: math.unit(4 + 10 / 12, "feet"),
  9320. weight: math.unit(480, "lb"),
  9321. name: "Front",
  9322. image: {
  9323. source: "./media/characters/snow-gabumon/front.svg",
  9324. extra: 1140 / 963,
  9325. bottom: 0.058
  9326. }
  9327. },
  9328. back: {
  9329. height: math.unit(4 + 10 / 12, "feet"),
  9330. weight: math.unit(480, "lb"),
  9331. name: "Back",
  9332. image: {
  9333. source: "./media/characters/snow-gabumon/back.svg",
  9334. extra: 1115 / 962,
  9335. bottom: 0.041
  9336. }
  9337. },
  9338. frontUndresed: {
  9339. height: math.unit(4 + 10 / 12, "feet"),
  9340. weight: math.unit(480, "lb"),
  9341. name: "Front (Undressed)",
  9342. image: {
  9343. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9344. extra: 1061 / 960,
  9345. bottom: 0.045
  9346. }
  9347. },
  9348. },
  9349. [
  9350. {
  9351. name: "Micro",
  9352. height: math.unit(1, "inch")
  9353. },
  9354. {
  9355. name: "Normal",
  9356. height: math.unit(4 + 10 / 12, "feet"),
  9357. default: true
  9358. },
  9359. {
  9360. name: "Macro",
  9361. height: math.unit(200, "feet")
  9362. },
  9363. {
  9364. name: "Megamacro",
  9365. height: math.unit(120, "miles")
  9366. },
  9367. {
  9368. name: "Gigamacro",
  9369. height: math.unit(9800, "miles")
  9370. },
  9371. ]
  9372. ))
  9373. characterMakers.push(() => makeCharacter(
  9374. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9375. {
  9376. front: {
  9377. height: math.unit(1.7, "meters"),
  9378. weight: math.unit(140, "lb"),
  9379. name: "Front",
  9380. image: {
  9381. source: "./media/characters/moody/front.svg",
  9382. extra: 3226 / 3007,
  9383. bottom: 0.087
  9384. }
  9385. },
  9386. },
  9387. [
  9388. {
  9389. name: "Micro",
  9390. height: math.unit(1, "mm")
  9391. },
  9392. {
  9393. name: "Normal",
  9394. height: math.unit(1.7, "meters"),
  9395. default: true
  9396. },
  9397. {
  9398. name: "Macro",
  9399. height: math.unit(80, "meters")
  9400. },
  9401. {
  9402. name: "Macro+",
  9403. height: math.unit(500, "meters")
  9404. },
  9405. ]
  9406. ))
  9407. characterMakers.push(() => makeCharacter(
  9408. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9409. {
  9410. front: {
  9411. height: math.unit(6, "feet"),
  9412. weight: math.unit(150, "lb"),
  9413. name: "Front",
  9414. image: {
  9415. source: "./media/characters/zyas/front.svg",
  9416. extra: 1180 / 1120,
  9417. bottom: 0.045
  9418. }
  9419. },
  9420. },
  9421. [
  9422. {
  9423. name: "Normal",
  9424. height: math.unit(10, "feet"),
  9425. default: true
  9426. },
  9427. {
  9428. name: "Macro",
  9429. height: math.unit(500, "feet")
  9430. },
  9431. {
  9432. name: "Megamacro",
  9433. height: math.unit(5, "miles")
  9434. },
  9435. {
  9436. name: "Teramacro",
  9437. height: math.unit(150000, "miles")
  9438. },
  9439. ]
  9440. ))
  9441. characterMakers.push(() => makeCharacter(
  9442. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9443. {
  9444. front: {
  9445. height: math.unit(6, "feet"),
  9446. weight: math.unit(150, "lb"),
  9447. name: "Front",
  9448. image: {
  9449. source: "./media/characters/cuon/front.svg",
  9450. extra: 1390 / 1320,
  9451. bottom: 0.008
  9452. }
  9453. },
  9454. },
  9455. [
  9456. {
  9457. name: "Micro",
  9458. height: math.unit(3, "inches")
  9459. },
  9460. {
  9461. name: "Normal",
  9462. height: math.unit(18 + 9 / 12, "feet"),
  9463. default: true
  9464. },
  9465. {
  9466. name: "Macro",
  9467. height: math.unit(360, "feet")
  9468. },
  9469. {
  9470. name: "Megamacro",
  9471. height: math.unit(360, "miles")
  9472. },
  9473. ]
  9474. ))
  9475. characterMakers.push(() => makeCharacter(
  9476. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9477. {
  9478. front: {
  9479. height: math.unit(2.4, "meters"),
  9480. weight: math.unit(70, "kg"),
  9481. name: "Front",
  9482. image: {
  9483. source: "./media/characters/nyanuxk/front.svg",
  9484. extra: 1172 / 1084,
  9485. bottom: 0.065
  9486. }
  9487. },
  9488. side: {
  9489. height: math.unit(2.4, "meters"),
  9490. weight: math.unit(70, "kg"),
  9491. name: "Side",
  9492. image: {
  9493. source: "./media/characters/nyanuxk/side.svg",
  9494. extra: 1190 / 1132,
  9495. bottom: 0.007
  9496. }
  9497. },
  9498. back: {
  9499. height: math.unit(2.4, "meters"),
  9500. weight: math.unit(70, "kg"),
  9501. name: "Back",
  9502. image: {
  9503. source: "./media/characters/nyanuxk/back.svg",
  9504. extra: 1200 / 1141,
  9505. bottom: 0.015
  9506. }
  9507. },
  9508. foot: {
  9509. height: math.unit(0.52, "meters"),
  9510. name: "Foot",
  9511. image: {
  9512. source: "./media/characters/nyanuxk/foot.svg"
  9513. }
  9514. },
  9515. },
  9516. [
  9517. {
  9518. name: "Micro",
  9519. height: math.unit(2, "cm")
  9520. },
  9521. {
  9522. name: "Normal",
  9523. height: math.unit(2.4, "meters"),
  9524. default: true
  9525. },
  9526. {
  9527. name: "Smaller Macro",
  9528. height: math.unit(120, "meters")
  9529. },
  9530. {
  9531. name: "Bigger Macro",
  9532. height: math.unit(1.2, "km")
  9533. },
  9534. {
  9535. name: "Megamacro",
  9536. height: math.unit(15, "kilometers")
  9537. },
  9538. {
  9539. name: "Gigamacro",
  9540. height: math.unit(2000, "km")
  9541. },
  9542. {
  9543. name: "Teramacro",
  9544. height: math.unit(500000, "km")
  9545. },
  9546. ]
  9547. ))
  9548. characterMakers.push(() => makeCharacter(
  9549. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9550. {
  9551. side: {
  9552. height: math.unit(6, "feet"),
  9553. name: "Side",
  9554. image: {
  9555. source: "./media/characters/ailbhe/side.svg",
  9556. extra: 757 / 464,
  9557. bottom: 0.041
  9558. }
  9559. },
  9560. },
  9561. [
  9562. {
  9563. name: "Normal",
  9564. height: math.unit(1.07, "meters"),
  9565. default: true
  9566. },
  9567. ]
  9568. ))
  9569. characterMakers.push(() => makeCharacter(
  9570. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9571. {
  9572. front: {
  9573. height: math.unit(6, "feet"),
  9574. weight: math.unit(120, "kg"),
  9575. name: "Front",
  9576. image: {
  9577. source: "./media/characters/zevulfius/front.svg",
  9578. extra: 965 / 903
  9579. }
  9580. },
  9581. side: {
  9582. height: math.unit(6, "feet"),
  9583. weight: math.unit(120, "kg"),
  9584. name: "Side",
  9585. image: {
  9586. source: "./media/characters/zevulfius/side.svg",
  9587. extra: 939 / 900
  9588. }
  9589. },
  9590. back: {
  9591. height: math.unit(6, "feet"),
  9592. weight: math.unit(120, "kg"),
  9593. name: "Back",
  9594. image: {
  9595. source: "./media/characters/zevulfius/back.svg",
  9596. extra: 918 / 854,
  9597. bottom: 0.005
  9598. }
  9599. },
  9600. foot: {
  9601. height: math.unit(6 / 3.72, "feet"),
  9602. name: "Foot",
  9603. image: {
  9604. source: "./media/characters/zevulfius/foot.svg"
  9605. }
  9606. },
  9607. },
  9608. [
  9609. {
  9610. name: "Macro",
  9611. height: math.unit(750, "meters")
  9612. },
  9613. {
  9614. name: "Megamacro",
  9615. height: math.unit(20, "km"),
  9616. default: true
  9617. },
  9618. {
  9619. name: "Gigamacro",
  9620. height: math.unit(2000, "km")
  9621. },
  9622. {
  9623. name: "Teramacro",
  9624. height: math.unit(250000, "km")
  9625. },
  9626. ]
  9627. ))
  9628. characterMakers.push(() => makeCharacter(
  9629. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9630. {
  9631. front: {
  9632. height: math.unit(100, "feet"),
  9633. weight: math.unit(350, "kg"),
  9634. name: "Front",
  9635. image: {
  9636. source: "./media/characters/rikes/front.svg",
  9637. extra: 1565 / 1483,
  9638. bottom: 0.017
  9639. }
  9640. },
  9641. },
  9642. [
  9643. {
  9644. name: "Macro",
  9645. height: math.unit(100, "feet"),
  9646. default: true
  9647. },
  9648. ]
  9649. ))
  9650. characterMakers.push(() => makeCharacter(
  9651. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9652. {
  9653. anthro: {
  9654. height: math.unit(8, "feet"),
  9655. weight: math.unit(120, "kg"),
  9656. name: "Anthro",
  9657. image: {
  9658. source: "./media/characters/adam-silver-mane/anthro.svg",
  9659. extra: 5743 / 5339,
  9660. bottom: 0.07
  9661. }
  9662. },
  9663. taur: {
  9664. height: math.unit(16, "feet"),
  9665. weight: math.unit(1500, "kg"),
  9666. name: "Taur",
  9667. image: {
  9668. source: "./media/characters/adam-silver-mane/taur.svg",
  9669. extra: 1713 / 1571,
  9670. bottom: 0.01
  9671. }
  9672. },
  9673. },
  9674. [
  9675. {
  9676. name: "Normal",
  9677. height: math.unit(8, "feet")
  9678. },
  9679. {
  9680. name: "Minimacro",
  9681. height: math.unit(80, "feet")
  9682. },
  9683. {
  9684. name: "Macro",
  9685. height: math.unit(800, "feet"),
  9686. default: true
  9687. },
  9688. {
  9689. name: "Megamacro",
  9690. height: math.unit(8000, "feet")
  9691. },
  9692. {
  9693. name: "Gigamacro",
  9694. height: math.unit(800, "miles")
  9695. },
  9696. {
  9697. name: "Teramacro",
  9698. height: math.unit(80000, "miles")
  9699. },
  9700. {
  9701. name: "Celestial",
  9702. height: math.unit(8e6, "miles")
  9703. },
  9704. {
  9705. name: "Star Dragon",
  9706. height: math.unit(800000, "parsecs")
  9707. },
  9708. {
  9709. name: "Godly",
  9710. height: math.unit(800, "teraparsecs")
  9711. },
  9712. ]
  9713. ))
  9714. characterMakers.push(() => makeCharacter(
  9715. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9716. {
  9717. front: {
  9718. height: math.unit(6, "feet"),
  9719. weight: math.unit(150, "lb"),
  9720. name: "Front",
  9721. image: {
  9722. source: "./media/characters/ky'owin/front.svg",
  9723. extra: 3888 / 3068,
  9724. bottom: 0.015
  9725. }
  9726. },
  9727. },
  9728. [
  9729. {
  9730. name: "Normal",
  9731. height: math.unit(6 + 8 / 12, "feet")
  9732. },
  9733. {
  9734. name: "Large",
  9735. height: math.unit(68, "feet")
  9736. },
  9737. {
  9738. name: "Macro",
  9739. height: math.unit(132, "feet")
  9740. },
  9741. {
  9742. name: "Macro+",
  9743. height: math.unit(340, "feet")
  9744. },
  9745. {
  9746. name: "Macro++",
  9747. height: math.unit(680, "feet"),
  9748. default: true
  9749. },
  9750. {
  9751. name: "Megamacro",
  9752. height: math.unit(1, "mile")
  9753. },
  9754. {
  9755. name: "Megamacro+",
  9756. height: math.unit(10, "miles")
  9757. },
  9758. ]
  9759. ))
  9760. characterMakers.push(() => makeCharacter(
  9761. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9762. {
  9763. front: {
  9764. height: math.unit(4, "feet"),
  9765. weight: math.unit(50, "lb"),
  9766. name: "Front",
  9767. image: {
  9768. source: "./media/characters/mal/front.svg",
  9769. extra: 785 / 724,
  9770. bottom: 0.07
  9771. }
  9772. },
  9773. },
  9774. [
  9775. {
  9776. name: "Micro",
  9777. height: math.unit(4, "inches")
  9778. },
  9779. {
  9780. name: "Normal",
  9781. height: math.unit(4, "feet"),
  9782. default: true
  9783. },
  9784. {
  9785. name: "Macro",
  9786. height: math.unit(200, "feet")
  9787. },
  9788. ]
  9789. ))
  9790. characterMakers.push(() => makeCharacter(
  9791. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9792. {
  9793. front: {
  9794. height: math.unit(6, "feet"),
  9795. weight: math.unit(150, "lb"),
  9796. name: "Front",
  9797. image: {
  9798. source: "./media/characters/jordan-deware/front.svg",
  9799. extra: 1191 / 1012
  9800. }
  9801. },
  9802. },
  9803. [
  9804. {
  9805. name: "Nano",
  9806. height: math.unit(0.01, "mm")
  9807. },
  9808. {
  9809. name: "Minimicro",
  9810. height: math.unit(1, "mm")
  9811. },
  9812. {
  9813. name: "Micro",
  9814. height: math.unit(0.5, "inches")
  9815. },
  9816. {
  9817. name: "Normal",
  9818. height: math.unit(4, "feet"),
  9819. default: true
  9820. },
  9821. {
  9822. name: "Minimacro",
  9823. height: math.unit(40, "meters")
  9824. },
  9825. {
  9826. name: "Small Macro",
  9827. height: math.unit(400, "meters")
  9828. },
  9829. {
  9830. name: "Macro",
  9831. height: math.unit(4, "miles")
  9832. },
  9833. {
  9834. name: "Megamacro",
  9835. height: math.unit(40, "miles")
  9836. },
  9837. {
  9838. name: "Megamacro+",
  9839. height: math.unit(400, "miles")
  9840. },
  9841. {
  9842. name: "Gigamacro",
  9843. height: math.unit(400000, "miles")
  9844. },
  9845. ]
  9846. ))
  9847. characterMakers.push(() => makeCharacter(
  9848. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9849. {
  9850. side: {
  9851. height: math.unit(6, "feet"),
  9852. weight: math.unit(150, "lb"),
  9853. name: "Side",
  9854. image: {
  9855. source: "./media/characters/kimiko/side.svg",
  9856. extra: 600 / 358
  9857. }
  9858. },
  9859. },
  9860. [
  9861. {
  9862. name: "Normal",
  9863. height: math.unit(15, "feet"),
  9864. default: true
  9865. },
  9866. {
  9867. name: "Macro",
  9868. height: math.unit(220, "feet")
  9869. },
  9870. {
  9871. name: "Macro+",
  9872. height: math.unit(1450, "feet")
  9873. },
  9874. {
  9875. name: "Megamacro",
  9876. height: math.unit(11500, "feet")
  9877. },
  9878. {
  9879. name: "Gigamacro",
  9880. height: math.unit(9500, "miles")
  9881. },
  9882. {
  9883. name: "Teramacro",
  9884. height: math.unit(2208005005, "miles")
  9885. },
  9886. {
  9887. name: "Examacro",
  9888. height: math.unit(2750, "parsecs")
  9889. },
  9890. {
  9891. name: "Zettamacro",
  9892. height: math.unit(101500, "parsecs")
  9893. },
  9894. ]
  9895. ))
  9896. characterMakers.push(() => makeCharacter(
  9897. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9898. {
  9899. front: {
  9900. height: math.unit(6, "feet"),
  9901. weight: math.unit(70, "kg"),
  9902. name: "Front",
  9903. image: {
  9904. source: "./media/characters/andrew-sleepy/front.svg"
  9905. }
  9906. },
  9907. side: {
  9908. height: math.unit(6, "feet"),
  9909. weight: math.unit(70, "kg"),
  9910. name: "Side",
  9911. image: {
  9912. source: "./media/characters/andrew-sleepy/side.svg"
  9913. }
  9914. },
  9915. },
  9916. [
  9917. {
  9918. name: "Micro",
  9919. height: math.unit(1, "mm"),
  9920. default: true
  9921. },
  9922. ]
  9923. ))
  9924. characterMakers.push(() => makeCharacter(
  9925. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9926. {
  9927. front: {
  9928. height: math.unit(6, "feet"),
  9929. weight: math.unit(150, "lb"),
  9930. name: "Front",
  9931. image: {
  9932. source: "./media/characters/judio/front.svg",
  9933. extra: 1258 / 1110
  9934. }
  9935. },
  9936. },
  9937. [
  9938. {
  9939. name: "Normal",
  9940. height: math.unit(5 + 6 / 12, "feet")
  9941. },
  9942. {
  9943. name: "Macro",
  9944. height: math.unit(1000, "feet"),
  9945. default: true
  9946. },
  9947. {
  9948. name: "Megamacro",
  9949. height: math.unit(10, "miles")
  9950. },
  9951. ]
  9952. ))
  9953. characterMakers.push(() => makeCharacter(
  9954. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9955. {
  9956. front: {
  9957. height: math.unit(6, "feet"),
  9958. weight: math.unit(68, "kg"),
  9959. name: "Front",
  9960. image: {
  9961. source: "./media/characters/nomaxice/front.svg",
  9962. extra: 1498 / 1073,
  9963. bottom: 0.075
  9964. }
  9965. },
  9966. foot: {
  9967. height: math.unit(1.1, "feet"),
  9968. name: "Foot",
  9969. image: {
  9970. source: "./media/characters/nomaxice/foot.svg"
  9971. }
  9972. },
  9973. },
  9974. [
  9975. {
  9976. name: "Micro",
  9977. height: math.unit(8, "cm")
  9978. },
  9979. {
  9980. name: "Norm",
  9981. height: math.unit(1.82, "m")
  9982. },
  9983. {
  9984. name: "Norm+",
  9985. height: math.unit(8.8, "feet")
  9986. },
  9987. {
  9988. name: "Big",
  9989. height: math.unit(8, "meters"),
  9990. default: true
  9991. },
  9992. {
  9993. name: "Macro",
  9994. height: math.unit(18, "meters")
  9995. },
  9996. {
  9997. name: "Macro+",
  9998. height: math.unit(88, "meters")
  9999. },
  10000. ]
  10001. ))
  10002. characterMakers.push(() => makeCharacter(
  10003. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10004. {
  10005. front: {
  10006. height: math.unit(12, "feet"),
  10007. weight: math.unit(1.5, "tons"),
  10008. name: "Front",
  10009. image: {
  10010. source: "./media/characters/dydros/front.svg",
  10011. extra: 863 / 800,
  10012. bottom: 0.015
  10013. }
  10014. },
  10015. back: {
  10016. height: math.unit(12, "feet"),
  10017. weight: math.unit(1.5, "tons"),
  10018. name: "Back",
  10019. image: {
  10020. source: "./media/characters/dydros/back.svg",
  10021. extra: 900 / 843,
  10022. bottom: 0.005
  10023. }
  10024. },
  10025. },
  10026. [
  10027. {
  10028. name: "Normal",
  10029. height: math.unit(12, "feet"),
  10030. default: true
  10031. },
  10032. ]
  10033. ))
  10034. characterMakers.push(() => makeCharacter(
  10035. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10036. {
  10037. front: {
  10038. height: math.unit(6, "feet"),
  10039. weight: math.unit(100, "kg"),
  10040. name: "Front",
  10041. image: {
  10042. source: "./media/characters/riggi/front.svg",
  10043. extra: 5787 / 5303
  10044. }
  10045. },
  10046. hyper: {
  10047. height: math.unit(6 * 5 / 3, "feet"),
  10048. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10049. name: "Hyper",
  10050. image: {
  10051. source: "./media/characters/riggi/hyper.svg",
  10052. extra: 3595 / 3485
  10053. }
  10054. },
  10055. },
  10056. [
  10057. {
  10058. name: "Small Macro",
  10059. height: math.unit(50, "feet")
  10060. },
  10061. {
  10062. name: "Default",
  10063. height: math.unit(200, "feet"),
  10064. default: true
  10065. },
  10066. {
  10067. name: "Loom",
  10068. height: math.unit(10000, "feet")
  10069. },
  10070. {
  10071. name: "Cruising Altitude",
  10072. height: math.unit(30000, "feet")
  10073. },
  10074. {
  10075. name: "Megamacro",
  10076. height: math.unit(100, "miles")
  10077. },
  10078. {
  10079. name: "Continent Sized",
  10080. height: math.unit(2800, "miles")
  10081. },
  10082. {
  10083. name: "Earth Sized",
  10084. height: math.unit(8000, "miles")
  10085. },
  10086. ]
  10087. ))
  10088. characterMakers.push(() => makeCharacter(
  10089. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10090. {
  10091. front: {
  10092. height: math.unit(6, "feet"),
  10093. weight: math.unit(250, "lb"),
  10094. name: "Front",
  10095. image: {
  10096. source: "./media/characters/alexi/front.svg",
  10097. extra: 3483 / 3291,
  10098. bottom: 0.04
  10099. }
  10100. },
  10101. back: {
  10102. height: math.unit(6, "feet"),
  10103. weight: math.unit(250, "lb"),
  10104. name: "Back",
  10105. image: {
  10106. source: "./media/characters/alexi/back.svg",
  10107. extra: 3533 / 3356,
  10108. bottom: 0.021
  10109. }
  10110. },
  10111. frontTransforming: {
  10112. height: math.unit(8.58, "feet"),
  10113. weight: math.unit(1300, "lb"),
  10114. name: "Transforming",
  10115. image: {
  10116. source: "./media/characters/alexi/front-transforming.svg",
  10117. extra: 437 / 409,
  10118. bottom: 19 / 458.66
  10119. }
  10120. },
  10121. frontTransformed: {
  10122. height: math.unit(12.5, "feet"),
  10123. weight: math.unit(4000, "lb"),
  10124. name: "Transformed",
  10125. image: {
  10126. source: "./media/characters/alexi/front-transformed.svg",
  10127. extra: 639 / 614,
  10128. bottom: 30.55 / 671
  10129. }
  10130. },
  10131. },
  10132. [
  10133. {
  10134. name: "Normal",
  10135. height: math.unit(14, "feet"),
  10136. default: true
  10137. },
  10138. {
  10139. name: "Minimacro",
  10140. height: math.unit(30, "meters")
  10141. },
  10142. {
  10143. name: "Macro",
  10144. height: math.unit(500, "meters")
  10145. },
  10146. {
  10147. name: "Megamacro",
  10148. height: math.unit(9000, "km")
  10149. },
  10150. {
  10151. name: "Teramacro",
  10152. height: math.unit(384000, "km")
  10153. },
  10154. ]
  10155. ))
  10156. characterMakers.push(() => makeCharacter(
  10157. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10158. {
  10159. front: {
  10160. height: math.unit(6, "feet"),
  10161. weight: math.unit(150, "lb"),
  10162. name: "Front",
  10163. image: {
  10164. source: "./media/characters/kayroo/front.svg",
  10165. extra: 1153 / 1038,
  10166. bottom: 0.06
  10167. }
  10168. },
  10169. foot: {
  10170. height: math.unit(6, "feet"),
  10171. weight: math.unit(150, "lb"),
  10172. name: "Foot",
  10173. image: {
  10174. source: "./media/characters/kayroo/foot.svg"
  10175. }
  10176. },
  10177. },
  10178. [
  10179. {
  10180. name: "Normal",
  10181. height: math.unit(8, "feet"),
  10182. default: true
  10183. },
  10184. {
  10185. name: "Minimacro",
  10186. height: math.unit(250, "feet")
  10187. },
  10188. {
  10189. name: "Macro",
  10190. height: math.unit(2800, "feet")
  10191. },
  10192. {
  10193. name: "Megamacro",
  10194. height: math.unit(5200, "feet")
  10195. },
  10196. {
  10197. name: "Gigamacro",
  10198. height: math.unit(27000, "feet")
  10199. },
  10200. {
  10201. name: "Omega",
  10202. height: math.unit(45000, "feet")
  10203. },
  10204. ]
  10205. ))
  10206. characterMakers.push(() => makeCharacter(
  10207. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10208. {
  10209. front: {
  10210. height: math.unit(18, "feet"),
  10211. weight: math.unit(5800, "lb"),
  10212. name: "Front",
  10213. image: {
  10214. source: "./media/characters/rhys/front.svg",
  10215. extra: 3386 / 3090,
  10216. bottom: 0.07
  10217. }
  10218. },
  10219. },
  10220. [
  10221. {
  10222. name: "Normal",
  10223. height: math.unit(18, "feet"),
  10224. default: true
  10225. },
  10226. {
  10227. name: "Working Size",
  10228. height: math.unit(200, "feet")
  10229. },
  10230. {
  10231. name: "Demolition Size",
  10232. height: math.unit(2000, "feet")
  10233. },
  10234. {
  10235. name: "Maximum Licensed Size",
  10236. height: math.unit(5, "miles")
  10237. },
  10238. {
  10239. name: "Maximum Observed Size",
  10240. height: math.unit(10, "yottameters")
  10241. },
  10242. ]
  10243. ))
  10244. characterMakers.push(() => makeCharacter(
  10245. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10246. {
  10247. front: {
  10248. height: math.unit(6, "feet"),
  10249. weight: math.unit(250, "lb"),
  10250. name: "Front",
  10251. image: {
  10252. source: "./media/characters/toto/front.svg",
  10253. extra: 527 / 479,
  10254. bottom: 0.05
  10255. }
  10256. },
  10257. },
  10258. [
  10259. {
  10260. name: "Micro",
  10261. height: math.unit(3, "feet")
  10262. },
  10263. {
  10264. name: "Normal",
  10265. height: math.unit(10, "feet")
  10266. },
  10267. {
  10268. name: "Macro",
  10269. height: math.unit(150, "feet"),
  10270. default: true
  10271. },
  10272. {
  10273. name: "Megamacro",
  10274. height: math.unit(1200, "feet")
  10275. },
  10276. ]
  10277. ))
  10278. characterMakers.push(() => makeCharacter(
  10279. { name: "King", species: ["lion"], tags: ["anthro"] },
  10280. {
  10281. back: {
  10282. height: math.unit(6, "feet"),
  10283. weight: math.unit(150, "lb"),
  10284. name: "Back",
  10285. image: {
  10286. source: "./media/characters/king/back.svg"
  10287. }
  10288. },
  10289. },
  10290. [
  10291. {
  10292. name: "Micro",
  10293. height: math.unit(2, "inches")
  10294. },
  10295. {
  10296. name: "Normal",
  10297. height: math.unit(8, "feet")
  10298. },
  10299. {
  10300. name: "Macro",
  10301. height: math.unit(200, "feet"),
  10302. default: true
  10303. },
  10304. {
  10305. name: "Megamacro",
  10306. height: math.unit(50, "miles")
  10307. },
  10308. ]
  10309. ))
  10310. characterMakers.push(() => makeCharacter(
  10311. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10312. {
  10313. anthro: {
  10314. height: math.unit(6 + 5 / 12, "feet"),
  10315. weight: math.unit(280, "lb"),
  10316. name: "Anthro",
  10317. image: {
  10318. source: "./media/characters/cordite/anthro.svg",
  10319. extra: 1986 / 1905,
  10320. bottom: 0.025
  10321. }
  10322. },
  10323. feral: {
  10324. height: math.unit(2, "feet"),
  10325. weight: math.unit(90, "lb"),
  10326. name: "Feral",
  10327. image: {
  10328. source: "./media/characters/cordite/feral.svg",
  10329. extra: 1260 / 755,
  10330. bottom: 0.05
  10331. }
  10332. },
  10333. },
  10334. [
  10335. {
  10336. name: "Normal",
  10337. height: math.unit(6 + 5 / 12, "feet"),
  10338. default: true
  10339. },
  10340. ]
  10341. ))
  10342. characterMakers.push(() => makeCharacter(
  10343. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10344. {
  10345. front: {
  10346. height: math.unit(6, "feet"),
  10347. weight: math.unit(150, "lb"),
  10348. name: "Front",
  10349. image: {
  10350. source: "./media/characters/pianostrong/front.svg",
  10351. extra: 6577 / 6254,
  10352. bottom: 0.02
  10353. }
  10354. },
  10355. side: {
  10356. height: math.unit(6, "feet"),
  10357. weight: math.unit(150, "lb"),
  10358. name: "Side",
  10359. image: {
  10360. source: "./media/characters/pianostrong/side.svg",
  10361. extra: 6106 / 5730
  10362. }
  10363. },
  10364. back: {
  10365. height: math.unit(6, "feet"),
  10366. weight: math.unit(150, "lb"),
  10367. name: "Back",
  10368. image: {
  10369. source: "./media/characters/pianostrong/back.svg",
  10370. extra: 6085 / 5733,
  10371. bottom: 0.01
  10372. }
  10373. },
  10374. },
  10375. [
  10376. {
  10377. name: "Macro",
  10378. height: math.unit(100, "feet")
  10379. },
  10380. {
  10381. name: "Macro+",
  10382. height: math.unit(300, "feet"),
  10383. default: true
  10384. },
  10385. {
  10386. name: "Macro++",
  10387. height: math.unit(1000, "feet")
  10388. },
  10389. ]
  10390. ))
  10391. characterMakers.push(() => makeCharacter(
  10392. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10393. {
  10394. front: {
  10395. height: math.unit(6, "feet"),
  10396. weight: math.unit(150, "lb"),
  10397. name: "Front",
  10398. image: {
  10399. source: "./media/characters/kona/front.svg",
  10400. extra: 2960 / 2629,
  10401. bottom: 0.005
  10402. }
  10403. },
  10404. },
  10405. [
  10406. {
  10407. name: "Normal",
  10408. height: math.unit(11 + 8 / 12, "feet")
  10409. },
  10410. {
  10411. name: "Macro",
  10412. height: math.unit(850, "feet"),
  10413. default: true
  10414. },
  10415. {
  10416. name: "Macro+",
  10417. height: math.unit(1.5, "km"),
  10418. default: true
  10419. },
  10420. {
  10421. name: "Megamacro",
  10422. height: math.unit(80, "miles")
  10423. },
  10424. {
  10425. name: "Gigamacro",
  10426. height: math.unit(3500, "miles")
  10427. },
  10428. ]
  10429. ))
  10430. characterMakers.push(() => makeCharacter(
  10431. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10432. {
  10433. side: {
  10434. height: math.unit(1.9, "meters"),
  10435. weight: math.unit(326, "kg"),
  10436. name: "Side",
  10437. image: {
  10438. source: "./media/characters/levi/side.svg",
  10439. extra: 1704 / 1334,
  10440. bottom: 0.02
  10441. }
  10442. },
  10443. },
  10444. [
  10445. {
  10446. name: "Normal",
  10447. height: math.unit(1.9, "meters"),
  10448. default: true
  10449. },
  10450. {
  10451. name: "Macro",
  10452. height: math.unit(20, "meters")
  10453. },
  10454. {
  10455. name: "Macro+",
  10456. height: math.unit(200, "meters")
  10457. },
  10458. {
  10459. name: "Megamacro",
  10460. height: math.unit(2, "km")
  10461. },
  10462. {
  10463. name: "Megamacro+",
  10464. height: math.unit(20, "km")
  10465. },
  10466. {
  10467. name: "Gigamacro",
  10468. height: math.unit(2500, "km")
  10469. },
  10470. {
  10471. name: "Gigamacro+",
  10472. height: math.unit(120000, "km")
  10473. },
  10474. {
  10475. name: "Teramacro",
  10476. height: math.unit(7.77e6, "km")
  10477. },
  10478. ]
  10479. ))
  10480. characterMakers.push(() => makeCharacter(
  10481. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10482. {
  10483. front: {
  10484. height: math.unit(6 + 4 / 12, "feet"),
  10485. weight: math.unit(188, "lb"),
  10486. name: "Front",
  10487. image: {
  10488. source: "./media/characters/bmc/front.svg",
  10489. extra: 1067 / 1022,
  10490. bottom: 0.047
  10491. }
  10492. },
  10493. },
  10494. [
  10495. {
  10496. name: "Human-sized",
  10497. height: math.unit(6 + 4 / 12, "feet")
  10498. },
  10499. {
  10500. name: "Small",
  10501. height: math.unit(250, "feet")
  10502. },
  10503. {
  10504. name: "Normal",
  10505. height: math.unit(1250, "feet"),
  10506. default: true
  10507. },
  10508. {
  10509. name: "Good Day",
  10510. height: math.unit(88, "miles")
  10511. },
  10512. {
  10513. name: "Largest Measured Size",
  10514. height: math.unit(11.2e6, "lightyears")
  10515. },
  10516. ]
  10517. ))
  10518. characterMakers.push(() => makeCharacter(
  10519. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10520. {
  10521. front: {
  10522. height: math.unit(20, "feet"),
  10523. weight: math.unit(2016, "kg"),
  10524. name: "Front",
  10525. image: {
  10526. source: "./media/characters/sven-the-kaiju/front.svg",
  10527. extra: 1479 / 1449,
  10528. bottom: 0.05
  10529. }
  10530. },
  10531. },
  10532. [
  10533. {
  10534. name: "Fairy",
  10535. height: math.unit(6, "inches")
  10536. },
  10537. {
  10538. name: "Normal",
  10539. height: math.unit(20, "feet"),
  10540. default: true
  10541. },
  10542. {
  10543. name: "Rampage",
  10544. height: math.unit(200, "feet")
  10545. },
  10546. {
  10547. name: "Archfey Forest Guardian",
  10548. height: math.unit(1, "mile")
  10549. },
  10550. ]
  10551. ))
  10552. characterMakers.push(() => makeCharacter(
  10553. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10554. {
  10555. front: {
  10556. height: math.unit(4, "meters"),
  10557. weight: math.unit(2, "tons"),
  10558. name: "Front",
  10559. image: {
  10560. source: "./media/characters/marik/front.svg",
  10561. extra: 1057 / 1003,
  10562. bottom: 0.08
  10563. }
  10564. },
  10565. },
  10566. [
  10567. {
  10568. name: "Normal",
  10569. height: math.unit(4, "meters"),
  10570. default: true
  10571. },
  10572. {
  10573. name: "Macro",
  10574. height: math.unit(20, "meters")
  10575. },
  10576. {
  10577. name: "Megamacro",
  10578. height: math.unit(50, "km")
  10579. },
  10580. {
  10581. name: "Gigamacro",
  10582. height: math.unit(100, "km")
  10583. },
  10584. {
  10585. name: "Alpha Macro",
  10586. height: math.unit(7.88e7, "yottameters")
  10587. },
  10588. ]
  10589. ))
  10590. characterMakers.push(() => makeCharacter(
  10591. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10592. {
  10593. front: {
  10594. height: math.unit(6, "feet"),
  10595. weight: math.unit(110, "lb"),
  10596. name: "Front",
  10597. image: {
  10598. source: "./media/characters/mel/front.svg",
  10599. extra: 736 / 617,
  10600. bottom: 0.017
  10601. }
  10602. },
  10603. },
  10604. [
  10605. {
  10606. name: "Pico",
  10607. height: math.unit(3, "pm")
  10608. },
  10609. {
  10610. name: "Nano",
  10611. height: math.unit(3, "nm")
  10612. },
  10613. {
  10614. name: "Micro",
  10615. height: math.unit(0.3, "mm"),
  10616. default: true
  10617. },
  10618. {
  10619. name: "Micro+",
  10620. height: math.unit(3, "mm")
  10621. },
  10622. {
  10623. name: "Normal",
  10624. height: math.unit(5 + 10.5 / 12, "feet")
  10625. },
  10626. ]
  10627. ))
  10628. characterMakers.push(() => makeCharacter(
  10629. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10630. {
  10631. kaiju: {
  10632. height: math.unit(1.75, "meters"),
  10633. weight: math.unit(55, "kg"),
  10634. name: "Kaiju",
  10635. image: {
  10636. source: "./media/characters/lykonous/kaiju.svg",
  10637. extra: 1055 / 946,
  10638. bottom: 0.135
  10639. }
  10640. },
  10641. },
  10642. [
  10643. {
  10644. name: "Normal",
  10645. height: math.unit(2.5, "meters"),
  10646. default: true
  10647. },
  10648. {
  10649. name: "Kaiju Dragon",
  10650. height: math.unit(60, "meters")
  10651. },
  10652. {
  10653. name: "Mega Kaiju",
  10654. height: math.unit(120, "km")
  10655. },
  10656. {
  10657. name: "Giga Kaiju",
  10658. height: math.unit(200, "megameters")
  10659. },
  10660. {
  10661. name: "Terra Kaiju",
  10662. height: math.unit(400, "gigameters")
  10663. },
  10664. {
  10665. name: "Kaiju Dragon God",
  10666. height: math.unit(13000, "exaparsecs")
  10667. },
  10668. ]
  10669. ))
  10670. characterMakers.push(() => makeCharacter(
  10671. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10672. {
  10673. front: {
  10674. height: math.unit(6, "feet"),
  10675. weight: math.unit(150, "lb"),
  10676. name: "Front",
  10677. image: {
  10678. source: "./media/characters/blü/front.svg",
  10679. extra: 1883 / 1564,
  10680. bottom: 0.031
  10681. }
  10682. },
  10683. },
  10684. [
  10685. {
  10686. name: "Normal",
  10687. height: math.unit(13, "feet"),
  10688. default: true
  10689. },
  10690. {
  10691. name: "Big Boi",
  10692. height: math.unit(150, "meters")
  10693. },
  10694. {
  10695. name: "Mini Stomper",
  10696. height: math.unit(300, "meters")
  10697. },
  10698. {
  10699. name: "Macro",
  10700. height: math.unit(1000, "meters")
  10701. },
  10702. {
  10703. name: "Megamacro",
  10704. height: math.unit(11000, "meters")
  10705. },
  10706. {
  10707. name: "Gigamacro",
  10708. height: math.unit(11000, "km")
  10709. },
  10710. {
  10711. name: "Teramacro",
  10712. height: math.unit(420000, "km")
  10713. },
  10714. {
  10715. name: "Examacro",
  10716. height: math.unit(120, "parsecs")
  10717. },
  10718. {
  10719. name: "God Tho",
  10720. height: math.unit(98000000000, "parsecs")
  10721. },
  10722. ]
  10723. ))
  10724. characterMakers.push(() => makeCharacter(
  10725. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10726. {
  10727. taurFront: {
  10728. height: math.unit(6, "feet"),
  10729. weight: math.unit(200, "lb"),
  10730. name: "Taur (Front)",
  10731. image: {
  10732. source: "./media/characters/scales/taur-front.svg",
  10733. extra: 1,
  10734. bottom: 0.05
  10735. }
  10736. },
  10737. taurBack: {
  10738. height: math.unit(6, "feet"),
  10739. weight: math.unit(200, "lb"),
  10740. name: "Taur (Back)",
  10741. image: {
  10742. source: "./media/characters/scales/taur-back.svg",
  10743. extra: 1,
  10744. bottom: 0.08
  10745. }
  10746. },
  10747. anthro: {
  10748. height: math.unit(6 * 7 / 12, "feet"),
  10749. weight: math.unit(100, "lb"),
  10750. name: "Anthro",
  10751. image: {
  10752. source: "./media/characters/scales/anthro.svg",
  10753. extra: 1,
  10754. bottom: 0.06
  10755. }
  10756. },
  10757. },
  10758. [
  10759. {
  10760. name: "Normal",
  10761. height: math.unit(12, "feet"),
  10762. default: true
  10763. },
  10764. ]
  10765. ))
  10766. characterMakers.push(() => makeCharacter(
  10767. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10768. {
  10769. front: {
  10770. height: math.unit(6, "feet"),
  10771. weight: math.unit(150, "lb"),
  10772. name: "Front",
  10773. image: {
  10774. source: "./media/characters/koragos/front.svg",
  10775. extra: 841 / 794,
  10776. bottom: 0.035
  10777. }
  10778. },
  10779. back: {
  10780. height: math.unit(6, "feet"),
  10781. weight: math.unit(150, "lb"),
  10782. name: "Back",
  10783. image: {
  10784. source: "./media/characters/koragos/back.svg",
  10785. extra: 841 / 810,
  10786. bottom: 0.022
  10787. }
  10788. },
  10789. },
  10790. [
  10791. {
  10792. name: "Normal",
  10793. height: math.unit(6 + 11 / 12, "feet"),
  10794. default: true
  10795. },
  10796. {
  10797. name: "Macro",
  10798. height: math.unit(490, "feet")
  10799. },
  10800. {
  10801. name: "Megamacro",
  10802. height: math.unit(10, "miles")
  10803. },
  10804. {
  10805. name: "Gigamacro",
  10806. height: math.unit(50, "miles")
  10807. },
  10808. ]
  10809. ))
  10810. characterMakers.push(() => makeCharacter(
  10811. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10812. {
  10813. front: {
  10814. height: math.unit(6, "feet"),
  10815. weight: math.unit(250, "lb"),
  10816. name: "Front",
  10817. image: {
  10818. source: "./media/characters/xylrem/front.svg",
  10819. extra: 3323 / 3050,
  10820. bottom: 0.065
  10821. }
  10822. },
  10823. },
  10824. [
  10825. {
  10826. name: "Micro",
  10827. height: math.unit(4, "feet")
  10828. },
  10829. {
  10830. name: "Normal",
  10831. height: math.unit(16, "feet"),
  10832. default: true
  10833. },
  10834. {
  10835. name: "Macro",
  10836. height: math.unit(2720, "feet")
  10837. },
  10838. {
  10839. name: "Megamacro",
  10840. height: math.unit(25000, "miles")
  10841. },
  10842. ]
  10843. ))
  10844. characterMakers.push(() => makeCharacter(
  10845. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10846. {
  10847. front: {
  10848. height: math.unit(8, "feet"),
  10849. weight: math.unit(250, "kg"),
  10850. name: "Front",
  10851. image: {
  10852. source: "./media/characters/ikideru/front.svg",
  10853. extra: 930 / 870,
  10854. bottom: 0.087
  10855. }
  10856. },
  10857. back: {
  10858. height: math.unit(8, "feet"),
  10859. weight: math.unit(250, "kg"),
  10860. name: "Back",
  10861. image: {
  10862. source: "./media/characters/ikideru/back.svg",
  10863. extra: 919 / 852,
  10864. bottom: 0.055
  10865. }
  10866. },
  10867. },
  10868. [
  10869. {
  10870. name: "Rare",
  10871. height: math.unit(8, "feet"),
  10872. default: true
  10873. },
  10874. {
  10875. name: "Playful Loom",
  10876. height: math.unit(80, "feet")
  10877. },
  10878. {
  10879. name: "City Leaner",
  10880. height: math.unit(230, "feet")
  10881. },
  10882. {
  10883. name: "Megamacro",
  10884. height: math.unit(2500, "feet")
  10885. },
  10886. {
  10887. name: "Gigamacro",
  10888. height: math.unit(26400, "feet")
  10889. },
  10890. {
  10891. name: "Tectonic Shifter",
  10892. height: math.unit(1.7, "megameters")
  10893. },
  10894. {
  10895. name: "Planet Carer",
  10896. height: math.unit(21, "megameters")
  10897. },
  10898. {
  10899. name: "God",
  10900. height: math.unit(11157.22, "parsecs")
  10901. },
  10902. ]
  10903. ))
  10904. characterMakers.push(() => makeCharacter(
  10905. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10906. {
  10907. front: {
  10908. height: math.unit(6, "feet"),
  10909. weight: math.unit(120, "lb"),
  10910. name: "Front",
  10911. image: {
  10912. source: "./media/characters/neo/front.svg"
  10913. }
  10914. },
  10915. },
  10916. [
  10917. {
  10918. name: "Micro",
  10919. height: math.unit(2, "inches"),
  10920. default: true
  10921. },
  10922. {
  10923. name: "Human Size",
  10924. height: math.unit(5 + 8 / 12, "feet")
  10925. },
  10926. ]
  10927. ))
  10928. characterMakers.push(() => makeCharacter(
  10929. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10930. {
  10931. front: {
  10932. height: math.unit(13 + 10 / 12, "feet"),
  10933. weight: math.unit(5320, "lb"),
  10934. name: "Front",
  10935. image: {
  10936. source: "./media/characters/chauncey-chantz/front.svg",
  10937. extra: 1587 / 1435,
  10938. bottom: 0.02
  10939. }
  10940. },
  10941. },
  10942. [
  10943. {
  10944. name: "Normal",
  10945. height: math.unit(13 + 10 / 12, "feet"),
  10946. default: true
  10947. },
  10948. {
  10949. name: "Macro",
  10950. height: math.unit(45, "feet")
  10951. },
  10952. {
  10953. name: "Megamacro",
  10954. height: math.unit(250, "miles")
  10955. },
  10956. {
  10957. name: "Planetary",
  10958. height: math.unit(10000, "miles")
  10959. },
  10960. {
  10961. name: "Galactic",
  10962. height: math.unit(40000, "parsecs")
  10963. },
  10964. {
  10965. name: "Universal",
  10966. height: math.unit(1, "yottameter")
  10967. },
  10968. ]
  10969. ))
  10970. characterMakers.push(() => makeCharacter(
  10971. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10972. {
  10973. front: {
  10974. height: math.unit(6, "feet"),
  10975. weight: math.unit(150, "lb"),
  10976. name: "Front",
  10977. image: {
  10978. source: "./media/characters/epifox/front.svg",
  10979. extra: 1,
  10980. bottom: 0.075
  10981. }
  10982. },
  10983. },
  10984. [
  10985. {
  10986. name: "Micro",
  10987. height: math.unit(6, "inches")
  10988. },
  10989. {
  10990. name: "Normal",
  10991. height: math.unit(12, "feet"),
  10992. default: true
  10993. },
  10994. {
  10995. name: "Macro",
  10996. height: math.unit(3810, "feet")
  10997. },
  10998. {
  10999. name: "Megamacro",
  11000. height: math.unit(500, "miles")
  11001. },
  11002. ]
  11003. ))
  11004. characterMakers.push(() => makeCharacter(
  11005. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11006. {
  11007. front: {
  11008. height: math.unit(1.8796, "m"),
  11009. weight: math.unit(230, "lb"),
  11010. name: "Front",
  11011. image: {
  11012. source: "./media/characters/colin-t/front.svg",
  11013. extra: 1272 / 1193,
  11014. bottom: 0.07
  11015. }
  11016. },
  11017. },
  11018. [
  11019. {
  11020. name: "Micro",
  11021. height: math.unit(0.571, "meters")
  11022. },
  11023. {
  11024. name: "Normal",
  11025. height: math.unit(1.8796, "meters"),
  11026. default: true
  11027. },
  11028. {
  11029. name: "Tall",
  11030. height: math.unit(4, "meters")
  11031. },
  11032. {
  11033. name: "Macro",
  11034. height: math.unit(67.241, "meters")
  11035. },
  11036. {
  11037. name: "Megamacro",
  11038. height: math.unit(371.856, "meters")
  11039. },
  11040. {
  11041. name: "Planetary",
  11042. height: math.unit(12631.5689, "km")
  11043. },
  11044. ]
  11045. ))
  11046. characterMakers.push(() => makeCharacter(
  11047. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11048. {
  11049. front: {
  11050. height: math.unit(1.85, "meters"),
  11051. weight: math.unit(80, "kg"),
  11052. name: "Front",
  11053. image: {
  11054. source: "./media/characters/matvei/front.svg",
  11055. extra: 614 / 594,
  11056. bottom: 0.01
  11057. }
  11058. },
  11059. },
  11060. [
  11061. {
  11062. name: "Normal",
  11063. height: math.unit(1.85, "meters"),
  11064. default: true
  11065. },
  11066. ]
  11067. ))
  11068. characterMakers.push(() => makeCharacter(
  11069. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11070. {
  11071. front: {
  11072. height: math.unit(5 + 9 / 12, "feet"),
  11073. weight: math.unit(70, "lb"),
  11074. name: "Front",
  11075. image: {
  11076. source: "./media/characters/quincy/front.svg",
  11077. extra: 3041 / 2751
  11078. }
  11079. },
  11080. back: {
  11081. height: math.unit(5 + 9 / 12, "feet"),
  11082. weight: math.unit(70, "lb"),
  11083. name: "Back",
  11084. image: {
  11085. source: "./media/characters/quincy/back.svg",
  11086. extra: 3041 / 2751
  11087. }
  11088. },
  11089. flying: {
  11090. height: math.unit(5 + 4 / 12, "feet"),
  11091. weight: math.unit(70, "lb"),
  11092. name: "Flying",
  11093. image: {
  11094. source: "./media/characters/quincy/flying.svg",
  11095. extra: 1044 / 930
  11096. }
  11097. },
  11098. },
  11099. [
  11100. {
  11101. name: "Micro",
  11102. height: math.unit(3, "cm")
  11103. },
  11104. {
  11105. name: "Normal",
  11106. height: math.unit(5 + 9 / 12, "feet")
  11107. },
  11108. {
  11109. name: "Macro",
  11110. height: math.unit(200, "meters"),
  11111. default: true
  11112. },
  11113. {
  11114. name: "Megamacro",
  11115. height: math.unit(1000, "meters")
  11116. },
  11117. ]
  11118. ))
  11119. characterMakers.push(() => makeCharacter(
  11120. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11121. {
  11122. front: {
  11123. height: math.unit(4 + 7 / 12, "feet"),
  11124. weight: math.unit(150, "lb"),
  11125. name: "Front",
  11126. image: {
  11127. source: "./media/characters/vanrel/front.svg",
  11128. extra: 1,
  11129. bottom: 0.02
  11130. }
  11131. },
  11132. elemental: {
  11133. height: math.unit(3, "feet"),
  11134. weight: math.unit(150, "lb"),
  11135. name: "Elemental",
  11136. image: {
  11137. source: "./media/characters/vanrel/elemental.svg",
  11138. extra: 192.3 / 162.8,
  11139. bottom: 1.79 / 194.17
  11140. }
  11141. },
  11142. side: {
  11143. height: math.unit(4 + 7 / 12, "feet"),
  11144. weight: math.unit(150, "lb"),
  11145. name: "Side",
  11146. image: {
  11147. source: "./media/characters/vanrel/side.svg",
  11148. extra: 1,
  11149. bottom: 0.025
  11150. }
  11151. },
  11152. tome: {
  11153. height: math.unit(1.35, "feet"),
  11154. weight: math.unit(10, "lb"),
  11155. name: "Vanrel's Tome",
  11156. rename: true,
  11157. image: {
  11158. source: "./media/characters/vanrel/tome.svg"
  11159. }
  11160. },
  11161. beans: {
  11162. height: math.unit(0.89, "feet"),
  11163. name: "Beans",
  11164. image: {
  11165. source: "./media/characters/vanrel/beans.svg"
  11166. }
  11167. },
  11168. },
  11169. [
  11170. {
  11171. name: "Normal",
  11172. height: math.unit(4 + 7 / 12, "feet"),
  11173. default: true
  11174. },
  11175. ]
  11176. ))
  11177. characterMakers.push(() => makeCharacter(
  11178. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11179. {
  11180. front: {
  11181. height: math.unit(7 + 5 / 12, "feet"),
  11182. weight: math.unit(150, "lb"),
  11183. name: "Front",
  11184. image: {
  11185. source: "./media/characters/kuiper-vanrel/front.svg",
  11186. extra: 1118 / 1068,
  11187. bottom: 0.09
  11188. }
  11189. },
  11190. foot: {
  11191. height: math.unit(0.55, "meters"),
  11192. name: "Foot",
  11193. image: {
  11194. source: "./media/characters/kuiper-vanrel/foot.svg",
  11195. }
  11196. },
  11197. battle: {
  11198. height: math.unit(6.824, "feet"),
  11199. weight: math.unit(150, "lb"),
  11200. name: "Battle",
  11201. image: {
  11202. source: "./media/characters/kuiper-vanrel/battle.svg",
  11203. extra: 1466 / 1327,
  11204. bottom: 29 / 1492.5
  11205. }
  11206. },
  11207. battleAlt: {
  11208. height: math.unit(6.824, "feet"),
  11209. weight: math.unit(150, "lb"),
  11210. name: "Battle (Alt)",
  11211. image: {
  11212. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11213. extra: 2081 / 1965,
  11214. bottom: 40 / 2121
  11215. }
  11216. },
  11217. },
  11218. [
  11219. {
  11220. name: "Normal",
  11221. height: math.unit(7 + 5 / 12, "feet"),
  11222. default: true
  11223. },
  11224. ]
  11225. ))
  11226. characterMakers.push(() => makeCharacter(
  11227. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11228. {
  11229. front: {
  11230. height: math.unit(8 + 5 / 12, "feet"),
  11231. weight: math.unit(150, "lb"),
  11232. name: "Front",
  11233. image: {
  11234. source: "./media/characters/keset-vanrel/front.svg",
  11235. extra: 1150 / 1084,
  11236. bottom: 0.05
  11237. }
  11238. },
  11239. hand: {
  11240. height: math.unit(0.6, "meters"),
  11241. name: "Hand",
  11242. image: {
  11243. source: "./media/characters/keset-vanrel/hand.svg"
  11244. }
  11245. },
  11246. foot: {
  11247. height: math.unit(0.94978, "meters"),
  11248. name: "Foot",
  11249. image: {
  11250. source: "./media/characters/keset-vanrel/foot.svg"
  11251. }
  11252. },
  11253. battle: {
  11254. height: math.unit(7.408, "feet"),
  11255. weight: math.unit(150, "lb"),
  11256. name: "Battle",
  11257. image: {
  11258. source: "./media/characters/keset-vanrel/battle.svg",
  11259. extra: 1890 / 1386,
  11260. bottom: 73.28 / 1970
  11261. }
  11262. },
  11263. },
  11264. [
  11265. {
  11266. name: "Normal",
  11267. height: math.unit(8 + 5 / 12, "feet"),
  11268. default: true
  11269. },
  11270. ]
  11271. ))
  11272. characterMakers.push(() => makeCharacter(
  11273. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11274. {
  11275. front: {
  11276. height: math.unit(6, "feet"),
  11277. weight: math.unit(150, "lb"),
  11278. name: "Front",
  11279. image: {
  11280. source: "./media/characters/neos/front.svg",
  11281. extra: 1696 / 992,
  11282. bottom: 0.14
  11283. }
  11284. },
  11285. },
  11286. [
  11287. {
  11288. name: "Normal",
  11289. height: math.unit(54, "cm"),
  11290. default: true
  11291. },
  11292. {
  11293. name: "Macro",
  11294. height: math.unit(100, "m")
  11295. },
  11296. {
  11297. name: "Megamacro",
  11298. height: math.unit(10, "km")
  11299. },
  11300. {
  11301. name: "Megamacro+",
  11302. height: math.unit(100, "km")
  11303. },
  11304. {
  11305. name: "Gigamacro",
  11306. height: math.unit(100, "Mm")
  11307. },
  11308. {
  11309. name: "Teramacro",
  11310. height: math.unit(100, "Gm")
  11311. },
  11312. {
  11313. name: "Examacro",
  11314. height: math.unit(100, "Em")
  11315. },
  11316. {
  11317. name: "Godly",
  11318. height: math.unit(10000, "Ym")
  11319. },
  11320. {
  11321. name: "Beyond Godly",
  11322. height: math.unit(25, "multiverses")
  11323. },
  11324. ]
  11325. ))
  11326. characterMakers.push(() => makeCharacter(
  11327. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11328. {
  11329. feminine: {
  11330. height: math.unit(5, "feet"),
  11331. weight: math.unit(100, "lb"),
  11332. name: "Feminine",
  11333. image: {
  11334. source: "./media/characters/sammy-mouse/feminine.svg",
  11335. extra: 2526 / 2425,
  11336. bottom: 0.123
  11337. }
  11338. },
  11339. masculine: {
  11340. height: math.unit(5, "feet"),
  11341. weight: math.unit(100, "lb"),
  11342. name: "Masculine",
  11343. image: {
  11344. source: "./media/characters/sammy-mouse/masculine.svg",
  11345. extra: 2526 / 2425,
  11346. bottom: 0.123
  11347. }
  11348. },
  11349. },
  11350. [
  11351. {
  11352. name: "Micro",
  11353. height: math.unit(5, "inches")
  11354. },
  11355. {
  11356. name: "Normal",
  11357. height: math.unit(5, "feet"),
  11358. default: true
  11359. },
  11360. {
  11361. name: "Macro",
  11362. height: math.unit(60, "feet")
  11363. },
  11364. ]
  11365. ))
  11366. characterMakers.push(() => makeCharacter(
  11367. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11368. {
  11369. front: {
  11370. height: math.unit(4, "feet"),
  11371. weight: math.unit(50, "lb"),
  11372. name: "Front",
  11373. image: {
  11374. source: "./media/characters/kole/front.svg",
  11375. extra: 1423 / 1303,
  11376. bottom: 0.025
  11377. }
  11378. },
  11379. back: {
  11380. height: math.unit(4, "feet"),
  11381. weight: math.unit(50, "lb"),
  11382. name: "Back",
  11383. image: {
  11384. source: "./media/characters/kole/back.svg",
  11385. extra: 1426 / 1280,
  11386. bottom: 0.02
  11387. }
  11388. },
  11389. },
  11390. [
  11391. {
  11392. name: "Normal",
  11393. height: math.unit(4, "feet"),
  11394. default: true
  11395. },
  11396. ]
  11397. ))
  11398. characterMakers.push(() => makeCharacter(
  11399. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11400. {
  11401. front: {
  11402. height: math.unit(2 + 6 / 12, "feet"),
  11403. weight: math.unit(20, "lb"),
  11404. name: "Front",
  11405. image: {
  11406. source: "./media/characters/rufran/front.svg",
  11407. extra: 2041 / 1839,
  11408. bottom: 0.055
  11409. }
  11410. },
  11411. back: {
  11412. height: math.unit(2 + 6 / 12, "feet"),
  11413. weight: math.unit(20, "lb"),
  11414. name: "Back",
  11415. image: {
  11416. source: "./media/characters/rufran/back.svg",
  11417. extra: 2054 / 1839,
  11418. bottom: 0.01
  11419. }
  11420. },
  11421. hand: {
  11422. height: math.unit(0.2166, "meters"),
  11423. name: "Hand",
  11424. image: {
  11425. source: "./media/characters/rufran/hand.svg"
  11426. }
  11427. },
  11428. foot: {
  11429. height: math.unit(0.185, "meters"),
  11430. name: "Foot",
  11431. image: {
  11432. source: "./media/characters/rufran/foot.svg"
  11433. }
  11434. },
  11435. },
  11436. [
  11437. {
  11438. name: "Micro",
  11439. height: math.unit(1, "inch")
  11440. },
  11441. {
  11442. name: "Normal",
  11443. height: math.unit(2 + 6 / 12, "feet"),
  11444. default: true
  11445. },
  11446. {
  11447. name: "Big",
  11448. height: math.unit(60, "feet")
  11449. },
  11450. {
  11451. name: "Macro",
  11452. height: math.unit(325, "feet")
  11453. },
  11454. ]
  11455. ))
  11456. characterMakers.push(() => makeCharacter(
  11457. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11458. {
  11459. front: {
  11460. height: math.unit(0.3, "meters"),
  11461. weight: math.unit(3.5, "kg"),
  11462. name: "Front",
  11463. image: {
  11464. source: "./media/characters/chip/front.svg",
  11465. extra: 748 / 674
  11466. }
  11467. },
  11468. },
  11469. [
  11470. {
  11471. name: "Micro",
  11472. height: math.unit(1, "inch"),
  11473. default: true
  11474. },
  11475. ]
  11476. ))
  11477. characterMakers.push(() => makeCharacter(
  11478. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11479. {
  11480. side: {
  11481. height: math.unit(2.3, "meters"),
  11482. weight: math.unit(3500, "lb"),
  11483. name: "Side",
  11484. image: {
  11485. source: "./media/characters/torvid/side.svg",
  11486. extra: 1972 / 722,
  11487. bottom: 0.035
  11488. }
  11489. },
  11490. },
  11491. [
  11492. {
  11493. name: "Normal",
  11494. height: math.unit(2.3, "meters"),
  11495. default: true
  11496. },
  11497. ]
  11498. ))
  11499. characterMakers.push(() => makeCharacter(
  11500. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11501. {
  11502. front: {
  11503. height: math.unit(2, "meters"),
  11504. weight: math.unit(150.5, "kg"),
  11505. name: "Front",
  11506. image: {
  11507. source: "./media/characters/susan/front.svg",
  11508. extra: 693 / 635,
  11509. bottom: 0.05
  11510. }
  11511. },
  11512. },
  11513. [
  11514. {
  11515. name: "Megamacro",
  11516. height: math.unit(505, "miles"),
  11517. default: true
  11518. },
  11519. ]
  11520. ))
  11521. characterMakers.push(() => makeCharacter(
  11522. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11523. {
  11524. front: {
  11525. height: math.unit(6, "feet"),
  11526. weight: math.unit(150, "lb"),
  11527. name: "Front",
  11528. image: {
  11529. source: "./media/characters/raindrops/front.svg",
  11530. extra: 2655 / 2461,
  11531. bottom: 49 / 2705
  11532. }
  11533. },
  11534. back: {
  11535. height: math.unit(6, "feet"),
  11536. weight: math.unit(150, "lb"),
  11537. name: "Back",
  11538. image: {
  11539. source: "./media/characters/raindrops/back.svg",
  11540. extra: 2574 / 2400,
  11541. bottom: 65 / 2634
  11542. }
  11543. },
  11544. },
  11545. [
  11546. {
  11547. name: "Micro",
  11548. height: math.unit(6, "inches")
  11549. },
  11550. {
  11551. name: "Normal",
  11552. height: math.unit(6 + 2 / 12, "feet")
  11553. },
  11554. {
  11555. name: "Macro",
  11556. height: math.unit(131, "feet"),
  11557. default: true
  11558. },
  11559. {
  11560. name: "Megamacro",
  11561. height: math.unit(15, "miles")
  11562. },
  11563. {
  11564. name: "Gigamacro",
  11565. height: math.unit(4000, "miles")
  11566. },
  11567. {
  11568. name: "Teramacro",
  11569. height: math.unit(315000, "miles")
  11570. },
  11571. ]
  11572. ))
  11573. characterMakers.push(() => makeCharacter(
  11574. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11575. {
  11576. front: {
  11577. height: math.unit(2.794, "meters"),
  11578. weight: math.unit(325, "kg"),
  11579. name: "Front",
  11580. image: {
  11581. source: "./media/characters/tezwa/front.svg",
  11582. extra: 2083 / 1906,
  11583. bottom: 0.031
  11584. }
  11585. },
  11586. foot: {
  11587. height: math.unit(0.687, "meters"),
  11588. name: "Foot",
  11589. image: {
  11590. source: "./media/characters/tezwa/foot.svg"
  11591. }
  11592. },
  11593. },
  11594. [
  11595. {
  11596. name: "Normal",
  11597. height: math.unit(9 + 2 / 12, "feet"),
  11598. default: true
  11599. },
  11600. ]
  11601. ))
  11602. characterMakers.push(() => makeCharacter(
  11603. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11604. {
  11605. front: {
  11606. height: math.unit(58, "feet"),
  11607. weight: math.unit(89000, "lb"),
  11608. name: "Front",
  11609. image: {
  11610. source: "./media/characters/typhus/front.svg",
  11611. extra: 816 / 800,
  11612. bottom: 0.065
  11613. }
  11614. },
  11615. },
  11616. [
  11617. {
  11618. name: "Macro",
  11619. height: math.unit(58, "feet"),
  11620. default: true
  11621. },
  11622. ]
  11623. ))
  11624. characterMakers.push(() => makeCharacter(
  11625. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11626. {
  11627. front: {
  11628. height: math.unit(12, "feet"),
  11629. weight: math.unit(6, "tonnes"),
  11630. name: "Front",
  11631. image: {
  11632. source: "./media/characters/lyra-von-wulf/front.svg",
  11633. extra: 1,
  11634. bottom: 0.10
  11635. }
  11636. },
  11637. frontMecha: {
  11638. height: math.unit(12, "feet"),
  11639. weight: math.unit(12, "tonnes"),
  11640. name: "Front (Mecha)",
  11641. image: {
  11642. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11643. extra: 1,
  11644. bottom: 0.042
  11645. }
  11646. },
  11647. maw: {
  11648. height: math.unit(2.2, "feet"),
  11649. name: "Maw",
  11650. image: {
  11651. source: "./media/characters/lyra-von-wulf/maw.svg"
  11652. }
  11653. },
  11654. },
  11655. [
  11656. {
  11657. name: "Normal",
  11658. height: math.unit(12, "feet"),
  11659. default: true
  11660. },
  11661. {
  11662. name: "Classic",
  11663. height: math.unit(50, "feet")
  11664. },
  11665. {
  11666. name: "Macro",
  11667. height: math.unit(500, "feet")
  11668. },
  11669. {
  11670. name: "Megamacro",
  11671. height: math.unit(1, "mile")
  11672. },
  11673. {
  11674. name: "Gigamacro",
  11675. height: math.unit(400, "miles")
  11676. },
  11677. {
  11678. name: "Teramacro",
  11679. height: math.unit(22000, "miles")
  11680. },
  11681. {
  11682. name: "Solarmacro",
  11683. height: math.unit(8600000, "miles")
  11684. },
  11685. {
  11686. name: "Galactic",
  11687. height: math.unit(1057000, "lightyears")
  11688. },
  11689. ]
  11690. ))
  11691. characterMakers.push(() => makeCharacter(
  11692. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11693. {
  11694. front: {
  11695. height: math.unit(6 + 10 / 12, "feet"),
  11696. weight: math.unit(150, "lb"),
  11697. name: "Front",
  11698. image: {
  11699. source: "./media/characters/dixon/front.svg",
  11700. extra: 3361 / 3209,
  11701. bottom: 0.01
  11702. }
  11703. },
  11704. },
  11705. [
  11706. {
  11707. name: "Normal",
  11708. height: math.unit(6 + 10 / 12, "feet"),
  11709. default: true
  11710. },
  11711. {
  11712. name: "Big",
  11713. height: math.unit(12, "meters")
  11714. },
  11715. {
  11716. name: "Macro",
  11717. height: math.unit(500, "meters")
  11718. },
  11719. {
  11720. name: "Megamacro",
  11721. height: math.unit(2, "km")
  11722. },
  11723. ]
  11724. ))
  11725. characterMakers.push(() => makeCharacter(
  11726. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11727. {
  11728. front: {
  11729. height: math.unit(185, "cm"),
  11730. weight: math.unit(68, "kg"),
  11731. name: "Front",
  11732. image: {
  11733. source: "./media/characters/kauko/front.svg",
  11734. extra: 1455 / 1421,
  11735. bottom: 0.03
  11736. }
  11737. },
  11738. back: {
  11739. height: math.unit(185, "cm"),
  11740. weight: math.unit(68, "kg"),
  11741. name: "Back",
  11742. image: {
  11743. source: "./media/characters/kauko/back.svg",
  11744. extra: 1455 / 1421,
  11745. bottom: 0.004
  11746. }
  11747. },
  11748. },
  11749. [
  11750. {
  11751. name: "Normal",
  11752. height: math.unit(185, "cm"),
  11753. default: true
  11754. },
  11755. ]
  11756. ))
  11757. characterMakers.push(() => makeCharacter(
  11758. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11759. {
  11760. front: {
  11761. height: math.unit(6, "feet"),
  11762. weight: math.unit(150, "kg"),
  11763. name: "Front",
  11764. image: {
  11765. source: "./media/characters/varg/front.svg",
  11766. extra: 1108 / 1018,
  11767. bottom: 0.0375
  11768. }
  11769. },
  11770. },
  11771. [
  11772. {
  11773. name: "Normal",
  11774. height: math.unit(5, "meters")
  11775. },
  11776. {
  11777. name: "Macro",
  11778. height: math.unit(200, "meters")
  11779. },
  11780. {
  11781. name: "Megamacro",
  11782. height: math.unit(20, "kilometers")
  11783. },
  11784. {
  11785. name: "True Size",
  11786. height: math.unit(211, "km"),
  11787. default: true
  11788. },
  11789. {
  11790. name: "Gigamacro",
  11791. height: math.unit(1000, "km")
  11792. },
  11793. {
  11794. name: "Gigamacro+",
  11795. height: math.unit(8000, "km")
  11796. },
  11797. {
  11798. name: "Teramacro",
  11799. height: math.unit(1000000, "km")
  11800. },
  11801. ]
  11802. ))
  11803. characterMakers.push(() => makeCharacter(
  11804. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11805. {
  11806. front: {
  11807. height: math.unit(7 + 7 / 12, "feet"),
  11808. weight: math.unit(267, "lb"),
  11809. name: "Front",
  11810. image: {
  11811. source: "./media/characters/dayza/front.svg",
  11812. extra: 1262 / 1200,
  11813. bottom: 0.035
  11814. }
  11815. },
  11816. side: {
  11817. height: math.unit(7 + 7 / 12, "feet"),
  11818. weight: math.unit(267, "lb"),
  11819. name: "Side",
  11820. image: {
  11821. source: "./media/characters/dayza/side.svg",
  11822. extra: 1295 / 1245,
  11823. bottom: 0.05
  11824. }
  11825. },
  11826. back: {
  11827. height: math.unit(7 + 7 / 12, "feet"),
  11828. weight: math.unit(267, "lb"),
  11829. name: "Back",
  11830. image: {
  11831. source: "./media/characters/dayza/back.svg",
  11832. extra: 1241 / 1170
  11833. }
  11834. },
  11835. },
  11836. [
  11837. {
  11838. name: "Normal",
  11839. height: math.unit(7 + 7 / 12, "feet"),
  11840. default: true
  11841. },
  11842. {
  11843. name: "Macro",
  11844. height: math.unit(155, "feet")
  11845. },
  11846. ]
  11847. ))
  11848. characterMakers.push(() => makeCharacter(
  11849. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11850. {
  11851. front: {
  11852. height: math.unit(6 + 5 / 12, "feet"),
  11853. weight: math.unit(160, "lb"),
  11854. name: "Front",
  11855. image: {
  11856. source: "./media/characters/xanthos/front.svg",
  11857. extra: 1,
  11858. bottom: 0.04
  11859. }
  11860. },
  11861. back: {
  11862. height: math.unit(6 + 5 / 12, "feet"),
  11863. weight: math.unit(160, "lb"),
  11864. name: "Back",
  11865. image: {
  11866. source: "./media/characters/xanthos/back.svg",
  11867. extra: 1,
  11868. bottom: 0.03
  11869. }
  11870. },
  11871. hand: {
  11872. height: math.unit(0.928, "feet"),
  11873. name: "Hand",
  11874. image: {
  11875. source: "./media/characters/xanthos/hand.svg"
  11876. }
  11877. },
  11878. foot: {
  11879. height: math.unit(1.286, "feet"),
  11880. name: "Foot",
  11881. image: {
  11882. source: "./media/characters/xanthos/foot.svg"
  11883. }
  11884. },
  11885. },
  11886. [
  11887. {
  11888. name: "Normal",
  11889. height: math.unit(6 + 5 / 12, "feet"),
  11890. default: true
  11891. },
  11892. {
  11893. name: "Normal+",
  11894. height: math.unit(6, "meters")
  11895. },
  11896. {
  11897. name: "Macro",
  11898. height: math.unit(40, "feet")
  11899. },
  11900. {
  11901. name: "Macro+",
  11902. height: math.unit(200, "meters")
  11903. },
  11904. {
  11905. name: "Megamacro",
  11906. height: math.unit(20, "km")
  11907. },
  11908. {
  11909. name: "Megamacro+",
  11910. height: math.unit(100, "km")
  11911. },
  11912. ]
  11913. ))
  11914. characterMakers.push(() => makeCharacter(
  11915. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11916. {
  11917. front: {
  11918. height: math.unit(6 + 3 / 12, "feet"),
  11919. weight: math.unit(215, "lb"),
  11920. name: "Front",
  11921. image: {
  11922. source: "./media/characters/grynn/front.svg",
  11923. extra: 4627 / 4209,
  11924. bottom: 0.047
  11925. }
  11926. },
  11927. },
  11928. [
  11929. {
  11930. name: "Micro",
  11931. height: math.unit(6, "inches")
  11932. },
  11933. {
  11934. name: "Normal",
  11935. height: math.unit(6 + 3 / 12, "feet"),
  11936. default: true
  11937. },
  11938. {
  11939. name: "Big",
  11940. height: math.unit(104, "feet")
  11941. },
  11942. {
  11943. name: "Macro",
  11944. height: math.unit(944, "feet")
  11945. },
  11946. {
  11947. name: "Macro+",
  11948. height: math.unit(9480, "feet")
  11949. },
  11950. {
  11951. name: "Megamacro",
  11952. height: math.unit(78752, "feet")
  11953. },
  11954. {
  11955. name: "Megamacro+",
  11956. height: math.unit(630128, "feet")
  11957. },
  11958. {
  11959. name: "Megamacro++",
  11960. height: math.unit(3150695, "feet")
  11961. },
  11962. ]
  11963. ))
  11964. characterMakers.push(() => makeCharacter(
  11965. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11966. {
  11967. front: {
  11968. height: math.unit(7 + 5 / 12, "feet"),
  11969. weight: math.unit(450, "lb"),
  11970. name: "Front",
  11971. image: {
  11972. source: "./media/characters/mocha-aura/front.svg",
  11973. extra: 1907 / 1817,
  11974. bottom: 0.04
  11975. }
  11976. },
  11977. back: {
  11978. height: math.unit(7 + 5 / 12, "feet"),
  11979. weight: math.unit(450, "lb"),
  11980. name: "Back",
  11981. image: {
  11982. source: "./media/characters/mocha-aura/back.svg",
  11983. extra: 1900 / 1825,
  11984. bottom: 0.045
  11985. }
  11986. },
  11987. },
  11988. [
  11989. {
  11990. name: "Nano",
  11991. height: math.unit(1, "nm")
  11992. },
  11993. {
  11994. name: "Megamicro",
  11995. height: math.unit(1, "mm")
  11996. },
  11997. {
  11998. name: "Micro",
  11999. height: math.unit(3, "inches")
  12000. },
  12001. {
  12002. name: "Normal",
  12003. height: math.unit(7 + 5 / 12, "feet"),
  12004. default: true
  12005. },
  12006. {
  12007. name: "Macro",
  12008. height: math.unit(30, "feet")
  12009. },
  12010. {
  12011. name: "Megamacro",
  12012. height: math.unit(3500, "feet")
  12013. },
  12014. {
  12015. name: "Teramacro",
  12016. height: math.unit(500000, "miles")
  12017. },
  12018. {
  12019. name: "Petamacro",
  12020. height: math.unit(50000000000000000, "parsecs")
  12021. },
  12022. ]
  12023. ))
  12024. characterMakers.push(() => makeCharacter(
  12025. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12026. {
  12027. front: {
  12028. height: math.unit(6, "feet"),
  12029. weight: math.unit(150, "lb"),
  12030. name: "Front",
  12031. image: {
  12032. source: "./media/characters/ilisha-devya/front.svg",
  12033. extra: 1,
  12034. bottom: 0.175
  12035. }
  12036. },
  12037. back: {
  12038. height: math.unit(6, "feet"),
  12039. weight: math.unit(150, "lb"),
  12040. name: "Back",
  12041. image: {
  12042. source: "./media/characters/ilisha-devya/back.svg",
  12043. extra: 1,
  12044. bottom: 0.015
  12045. }
  12046. },
  12047. },
  12048. [
  12049. {
  12050. name: "Macro",
  12051. height: math.unit(500, "feet"),
  12052. default: true
  12053. },
  12054. {
  12055. name: "Megamacro",
  12056. height: math.unit(10, "miles")
  12057. },
  12058. {
  12059. name: "Gigamacro",
  12060. height: math.unit(100000, "miles")
  12061. },
  12062. {
  12063. name: "Examacro",
  12064. height: math.unit(1e9, "lightyears")
  12065. },
  12066. {
  12067. name: "Omniversal",
  12068. height: math.unit(1e33, "lightyears")
  12069. },
  12070. {
  12071. name: "Beyond Infinite",
  12072. height: math.unit(1e100, "lightyears")
  12073. },
  12074. ]
  12075. ))
  12076. characterMakers.push(() => makeCharacter(
  12077. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12078. {
  12079. Side: {
  12080. height: math.unit(6, "feet"),
  12081. weight: math.unit(150, "lb"),
  12082. name: "Side",
  12083. image: {
  12084. source: "./media/characters/mira/side.svg",
  12085. extra: 900 / 799,
  12086. bottom: 0.02
  12087. }
  12088. },
  12089. },
  12090. [
  12091. {
  12092. name: "Human Size",
  12093. height: math.unit(6, "feet")
  12094. },
  12095. {
  12096. name: "Macro",
  12097. height: math.unit(100, "feet"),
  12098. default: true
  12099. },
  12100. {
  12101. name: "Megamacro",
  12102. height: math.unit(10, "miles")
  12103. },
  12104. {
  12105. name: "Gigamacro",
  12106. height: math.unit(25000, "miles")
  12107. },
  12108. {
  12109. name: "Teramacro",
  12110. height: math.unit(300, "AU")
  12111. },
  12112. {
  12113. name: "Full Size",
  12114. height: math.unit(4.5e10, "lightyears")
  12115. },
  12116. ]
  12117. ))
  12118. characterMakers.push(() => makeCharacter(
  12119. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12120. {
  12121. front: {
  12122. height: math.unit(6, "feet"),
  12123. weight: math.unit(150, "lb"),
  12124. name: "Front",
  12125. image: {
  12126. source: "./media/characters/holly/front.svg",
  12127. extra: 639 / 606
  12128. }
  12129. },
  12130. back: {
  12131. height: math.unit(6, "feet"),
  12132. weight: math.unit(150, "lb"),
  12133. name: "Back",
  12134. image: {
  12135. source: "./media/characters/holly/back.svg",
  12136. extra: 623 / 598
  12137. }
  12138. },
  12139. frontWorking: {
  12140. height: math.unit(6, "feet"),
  12141. weight: math.unit(150, "lb"),
  12142. name: "Front (Working)",
  12143. image: {
  12144. source: "./media/characters/holly/front-working.svg",
  12145. extra: 607 / 577,
  12146. bottom: 0.048
  12147. }
  12148. },
  12149. },
  12150. [
  12151. {
  12152. name: "Normal",
  12153. height: math.unit(12 + 3 / 12, "feet"),
  12154. default: true
  12155. },
  12156. ]
  12157. ))
  12158. characterMakers.push(() => makeCharacter(
  12159. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12160. {
  12161. front: {
  12162. height: math.unit(6, "feet"),
  12163. weight: math.unit(150, "lb"),
  12164. name: "Front",
  12165. image: {
  12166. source: "./media/characters/porter/front.svg",
  12167. extra: 1,
  12168. bottom: 0.01
  12169. }
  12170. },
  12171. frontRobes: {
  12172. height: math.unit(6, "feet"),
  12173. weight: math.unit(150, "lb"),
  12174. name: "Front (Robes)",
  12175. image: {
  12176. source: "./media/characters/porter/front-robes.svg",
  12177. extra: 1.01,
  12178. bottom: 0.01
  12179. }
  12180. },
  12181. },
  12182. [
  12183. {
  12184. name: "Normal",
  12185. height: math.unit(11 + 9 / 12, "feet"),
  12186. default: true
  12187. },
  12188. ]
  12189. ))
  12190. characterMakers.push(() => makeCharacter(
  12191. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12192. {
  12193. legendary: {
  12194. height: math.unit(6, "feet"),
  12195. weight: math.unit(150, "lb"),
  12196. name: "Legendary",
  12197. image: {
  12198. source: "./media/characters/lucy/legendary.svg",
  12199. extra: 1355 / 1100,
  12200. bottom: 0.045
  12201. }
  12202. },
  12203. },
  12204. [
  12205. {
  12206. name: "Legendary",
  12207. height: math.unit(86882 * 2, "miles"),
  12208. default: true
  12209. },
  12210. ]
  12211. ))
  12212. characterMakers.push(() => makeCharacter(
  12213. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12214. {
  12215. front: {
  12216. height: math.unit(6, "feet"),
  12217. weight: math.unit(150, "lb"),
  12218. name: "Front",
  12219. image: {
  12220. source: "./media/characters/drusilla/front.svg",
  12221. extra: 678 / 635,
  12222. bottom: 0.03
  12223. }
  12224. },
  12225. back: {
  12226. height: math.unit(6, "feet"),
  12227. weight: math.unit(150, "lb"),
  12228. name: "Back",
  12229. image: {
  12230. source: "./media/characters/drusilla/back.svg",
  12231. extra: 678 / 635,
  12232. bottom: 0.005
  12233. }
  12234. },
  12235. },
  12236. [
  12237. {
  12238. name: "Macro",
  12239. height: math.unit(100, "feet")
  12240. },
  12241. {
  12242. name: "Canon Height",
  12243. height: math.unit(2000, "feet"),
  12244. default: true
  12245. },
  12246. ]
  12247. ))
  12248. characterMakers.push(() => makeCharacter(
  12249. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12250. {
  12251. front: {
  12252. height: math.unit(6, "feet"),
  12253. weight: math.unit(180, "lb"),
  12254. name: "Front",
  12255. image: {
  12256. source: "./media/characters/renard-thatch/front.svg",
  12257. extra: 2411 / 2275,
  12258. bottom: 0.01
  12259. }
  12260. },
  12261. frontPosing: {
  12262. height: math.unit(6, "feet"),
  12263. weight: math.unit(180, "lb"),
  12264. name: "Front (Posing)",
  12265. image: {
  12266. source: "./media/characters/renard-thatch/front-posing.svg",
  12267. extra: 2381 / 2261,
  12268. bottom: 0.01
  12269. }
  12270. },
  12271. back: {
  12272. height: math.unit(6, "feet"),
  12273. weight: math.unit(180, "lb"),
  12274. name: "Back",
  12275. image: {
  12276. source: "./media/characters/renard-thatch/back.svg",
  12277. extra: 2428 / 2288
  12278. }
  12279. },
  12280. },
  12281. [
  12282. {
  12283. name: "Micro",
  12284. height: math.unit(3, "inches")
  12285. },
  12286. {
  12287. name: "Default",
  12288. height: math.unit(6, "feet"),
  12289. default: true
  12290. },
  12291. {
  12292. name: "Macro",
  12293. height: math.unit(75, "feet")
  12294. },
  12295. ]
  12296. ))
  12297. characterMakers.push(() => makeCharacter(
  12298. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12299. {
  12300. front: {
  12301. height: math.unit(1450, "feet"),
  12302. weight: math.unit(1.21e6, "tons"),
  12303. name: "Front",
  12304. image: {
  12305. source: "./media/characters/sekvra/front.svg",
  12306. extra: 1,
  12307. bottom: 0.03
  12308. }
  12309. },
  12310. frontClothed: {
  12311. height: math.unit(1450, "feet"),
  12312. weight: math.unit(1.21e6, "tons"),
  12313. name: "Front (Clothed)",
  12314. image: {
  12315. source: "./media/characters/sekvra/front-clothed.svg",
  12316. extra: 1,
  12317. bottom: 0.03
  12318. }
  12319. },
  12320. side: {
  12321. height: math.unit(1450, "feet"),
  12322. weight: math.unit(1.21e6, "tons"),
  12323. name: "Side",
  12324. image: {
  12325. source: "./media/characters/sekvra/side.svg",
  12326. extra: 1,
  12327. bottom: 0.025
  12328. }
  12329. },
  12330. back: {
  12331. height: math.unit(1450, "feet"),
  12332. weight: math.unit(1.21e6, "tons"),
  12333. name: "Back",
  12334. image: {
  12335. source: "./media/characters/sekvra/back.svg",
  12336. extra: 1,
  12337. bottom: 0.005
  12338. }
  12339. },
  12340. },
  12341. [
  12342. {
  12343. name: "Macro",
  12344. height: math.unit(1450, "feet"),
  12345. default: true
  12346. },
  12347. {
  12348. name: "Megamacro",
  12349. height: math.unit(15000, "feet")
  12350. },
  12351. ]
  12352. ))
  12353. characterMakers.push(() => makeCharacter(
  12354. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12355. {
  12356. front: {
  12357. height: math.unit(6, "feet"),
  12358. weight: math.unit(150, "lb"),
  12359. name: "Front",
  12360. image: {
  12361. source: "./media/characters/carmine/front.svg",
  12362. extra: 1,
  12363. bottom: 0.035
  12364. }
  12365. },
  12366. frontArmor: {
  12367. height: math.unit(6, "feet"),
  12368. weight: math.unit(150, "lb"),
  12369. name: "Front (Armor)",
  12370. image: {
  12371. source: "./media/characters/carmine/front-armor.svg",
  12372. extra: 1,
  12373. bottom: 0.035
  12374. }
  12375. },
  12376. },
  12377. [
  12378. {
  12379. name: "Large",
  12380. height: math.unit(1, "mile")
  12381. },
  12382. {
  12383. name: "Huge",
  12384. height: math.unit(40, "miles"),
  12385. default: true
  12386. },
  12387. {
  12388. name: "Colossal",
  12389. height: math.unit(2500, "miles")
  12390. },
  12391. ]
  12392. ))
  12393. characterMakers.push(() => makeCharacter(
  12394. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12395. {
  12396. front: {
  12397. height: math.unit(6, "feet"),
  12398. weight: math.unit(150, "lb"),
  12399. name: "Front",
  12400. image: {
  12401. source: "./media/characters/elyssia/front.svg",
  12402. extra: 2201 / 2035,
  12403. bottom: 0.05
  12404. }
  12405. },
  12406. frontClothed: {
  12407. height: math.unit(6, "feet"),
  12408. weight: math.unit(150, "lb"),
  12409. name: "Front (Clothed)",
  12410. image: {
  12411. source: "./media/characters/elyssia/front-clothed.svg",
  12412. extra: 2201 / 2035,
  12413. bottom: 0.05
  12414. }
  12415. },
  12416. back: {
  12417. height: math.unit(6, "feet"),
  12418. weight: math.unit(150, "lb"),
  12419. name: "Back",
  12420. image: {
  12421. source: "./media/characters/elyssia/back.svg",
  12422. extra: 2201 / 2035,
  12423. bottom: 0.013
  12424. }
  12425. },
  12426. },
  12427. [
  12428. {
  12429. name: "Smaller",
  12430. height: math.unit(150, "feet")
  12431. },
  12432. {
  12433. name: "Standard",
  12434. height: math.unit(1400, "feet"),
  12435. default: true
  12436. },
  12437. {
  12438. name: "Distracted",
  12439. height: math.unit(15000, "feet")
  12440. },
  12441. ]
  12442. ))
  12443. characterMakers.push(() => makeCharacter(
  12444. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12445. {
  12446. front: {
  12447. height: math.unit(7 + 4 / 12, "feet"),
  12448. weight: math.unit(500, "lb"),
  12449. name: "Front",
  12450. image: {
  12451. source: "./media/characters/geno-maxwell/front.svg",
  12452. extra: 2207 / 2040,
  12453. bottom: 0.015
  12454. }
  12455. },
  12456. },
  12457. [
  12458. {
  12459. name: "Micro",
  12460. height: math.unit(3, "inches")
  12461. },
  12462. {
  12463. name: "Normal",
  12464. height: math.unit(7 + 4 / 12, "feet"),
  12465. default: true
  12466. },
  12467. {
  12468. name: "Macro",
  12469. height: math.unit(220, "feet")
  12470. },
  12471. {
  12472. name: "Megamacro",
  12473. height: math.unit(11, "miles")
  12474. },
  12475. ]
  12476. ))
  12477. characterMakers.push(() => makeCharacter(
  12478. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12479. {
  12480. front: {
  12481. height: math.unit(7 + 4 / 12, "feet"),
  12482. weight: math.unit(500, "lb"),
  12483. name: "Front",
  12484. image: {
  12485. source: "./media/characters/regena-maxwell/front.svg",
  12486. extra: 3115 / 2770,
  12487. bottom: 0.02
  12488. }
  12489. },
  12490. },
  12491. [
  12492. {
  12493. name: "Normal",
  12494. height: math.unit(7 + 4 / 12, "feet"),
  12495. default: true
  12496. },
  12497. {
  12498. name: "Macro",
  12499. height: math.unit(220, "feet")
  12500. },
  12501. {
  12502. name: "Megamacro",
  12503. height: math.unit(11, "miles")
  12504. },
  12505. ]
  12506. ))
  12507. characterMakers.push(() => makeCharacter(
  12508. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12509. {
  12510. front: {
  12511. height: math.unit(6, "feet"),
  12512. weight: math.unit(150, "lb"),
  12513. name: "Front",
  12514. image: {
  12515. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12516. extra: 860 / 690,
  12517. bottom: 0.03
  12518. }
  12519. },
  12520. },
  12521. [
  12522. {
  12523. name: "Normal",
  12524. height: math.unit(1.7, "meters"),
  12525. default: true
  12526. },
  12527. ]
  12528. ))
  12529. characterMakers.push(() => makeCharacter(
  12530. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12531. {
  12532. front: {
  12533. height: math.unit(6, "feet"),
  12534. weight: math.unit(150, "lb"),
  12535. name: "Front",
  12536. image: {
  12537. source: "./media/characters/quilly/front.svg",
  12538. extra: 890 / 776
  12539. }
  12540. },
  12541. },
  12542. [
  12543. {
  12544. name: "Gigamacro",
  12545. height: math.unit(404090, "miles"),
  12546. default: true
  12547. },
  12548. ]
  12549. ))
  12550. characterMakers.push(() => makeCharacter(
  12551. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12552. {
  12553. front: {
  12554. height: math.unit(7 + 8 / 12, "feet"),
  12555. weight: math.unit(350, "lb"),
  12556. name: "Front",
  12557. image: {
  12558. source: "./media/characters/tempest/front.svg",
  12559. extra: 1175 / 1086,
  12560. bottom: 0.02
  12561. }
  12562. },
  12563. },
  12564. [
  12565. {
  12566. name: "Normal",
  12567. height: math.unit(7 + 8 / 12, "feet"),
  12568. default: true
  12569. },
  12570. ]
  12571. ))
  12572. characterMakers.push(() => makeCharacter(
  12573. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12574. {
  12575. side: {
  12576. height: math.unit(4 + 5 / 12, "feet"),
  12577. weight: math.unit(80, "lb"),
  12578. name: "Side",
  12579. image: {
  12580. source: "./media/characters/rodger/side.svg",
  12581. extra: 1235 / 1118
  12582. }
  12583. },
  12584. },
  12585. [
  12586. {
  12587. name: "Micro",
  12588. height: math.unit(1, "inch")
  12589. },
  12590. {
  12591. name: "Normal",
  12592. height: math.unit(4 + 5 / 12, "feet"),
  12593. default: true
  12594. },
  12595. {
  12596. name: "Macro",
  12597. height: math.unit(120, "feet")
  12598. },
  12599. ]
  12600. ))
  12601. characterMakers.push(() => makeCharacter(
  12602. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12603. {
  12604. front: {
  12605. height: math.unit(6, "feet"),
  12606. weight: math.unit(150, "lb"),
  12607. name: "Front",
  12608. image: {
  12609. source: "./media/characters/danyel/front.svg",
  12610. extra: 1185 / 1123,
  12611. bottom: 0.05
  12612. }
  12613. },
  12614. },
  12615. [
  12616. {
  12617. name: "Shrunken",
  12618. height: math.unit(0.5, "mm")
  12619. },
  12620. {
  12621. name: "Micro",
  12622. height: math.unit(1, "mm"),
  12623. default: true
  12624. },
  12625. {
  12626. name: "Upsized",
  12627. height: math.unit(5 + 5 / 12, "feet")
  12628. },
  12629. ]
  12630. ))
  12631. characterMakers.push(() => makeCharacter(
  12632. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12633. {
  12634. front: {
  12635. height: math.unit(5 + 6 / 12, "feet"),
  12636. weight: math.unit(200, "lb"),
  12637. name: "Front",
  12638. image: {
  12639. source: "./media/characters/vivian-bijoux/front.svg",
  12640. extra: 1,
  12641. bottom: 0.072
  12642. }
  12643. },
  12644. },
  12645. [
  12646. {
  12647. name: "Normal",
  12648. height: math.unit(5 + 6 / 12, "feet"),
  12649. default: true
  12650. },
  12651. {
  12652. name: "Bad Dream",
  12653. height: math.unit(500, "feet")
  12654. },
  12655. {
  12656. name: "Nightmare",
  12657. height: math.unit(500, "miles")
  12658. },
  12659. ]
  12660. ))
  12661. characterMakers.push(() => makeCharacter(
  12662. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12663. {
  12664. front: {
  12665. height: math.unit(6 + 1 / 12, "feet"),
  12666. weight: math.unit(260, "lb"),
  12667. name: "Front",
  12668. image: {
  12669. source: "./media/characters/zeta/front.svg",
  12670. extra: 1968 / 1889,
  12671. bottom: 0.06
  12672. }
  12673. },
  12674. back: {
  12675. height: math.unit(6 + 1 / 12, "feet"),
  12676. weight: math.unit(260, "lb"),
  12677. name: "Back",
  12678. image: {
  12679. source: "./media/characters/zeta/back.svg",
  12680. extra: 1944 / 1858,
  12681. bottom: 0.03
  12682. }
  12683. },
  12684. hand: {
  12685. height: math.unit(1.112, "feet"),
  12686. name: "Hand",
  12687. image: {
  12688. source: "./media/characters/zeta/hand.svg"
  12689. }
  12690. },
  12691. foot: {
  12692. height: math.unit(1.48, "feet"),
  12693. name: "Foot",
  12694. image: {
  12695. source: "./media/characters/zeta/foot.svg"
  12696. }
  12697. },
  12698. },
  12699. [
  12700. {
  12701. name: "Micro",
  12702. height: math.unit(6, "inches")
  12703. },
  12704. {
  12705. name: "Normal",
  12706. height: math.unit(6 + 1 / 12, "feet"),
  12707. default: true
  12708. },
  12709. {
  12710. name: "Macro",
  12711. height: math.unit(20, "feet")
  12712. },
  12713. ]
  12714. ))
  12715. characterMakers.push(() => makeCharacter(
  12716. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12717. {
  12718. front: {
  12719. height: math.unit(6, "feet"),
  12720. weight: math.unit(150, "lb"),
  12721. name: "Front",
  12722. image: {
  12723. source: "./media/characters/jamie-larsen/front.svg",
  12724. extra: 962 / 933,
  12725. bottom: 0.02
  12726. }
  12727. },
  12728. back: {
  12729. height: math.unit(6, "feet"),
  12730. weight: math.unit(150, "lb"),
  12731. name: "Back",
  12732. image: {
  12733. source: "./media/characters/jamie-larsen/back.svg",
  12734. extra: 997 / 946
  12735. }
  12736. },
  12737. },
  12738. [
  12739. {
  12740. name: "Macro",
  12741. height: math.unit(28 + 7 / 12, "feet"),
  12742. default: true
  12743. },
  12744. {
  12745. name: "Macro+",
  12746. height: math.unit(180, "feet")
  12747. },
  12748. {
  12749. name: "Megamacro",
  12750. height: math.unit(10, "miles")
  12751. },
  12752. {
  12753. name: "Gigamacro",
  12754. height: math.unit(200000, "miles")
  12755. },
  12756. ]
  12757. ))
  12758. characterMakers.push(() => makeCharacter(
  12759. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12760. {
  12761. front: {
  12762. height: math.unit(6, "feet"),
  12763. weight: math.unit(120, "lb"),
  12764. name: "Front",
  12765. image: {
  12766. source: "./media/characters/vance/front.svg",
  12767. extra: 1980 / 1890,
  12768. bottom: 0.09
  12769. }
  12770. },
  12771. back: {
  12772. height: math.unit(6, "feet"),
  12773. weight: math.unit(120, "lb"),
  12774. name: "Back",
  12775. image: {
  12776. source: "./media/characters/vance/back.svg",
  12777. extra: 2081 / 1994,
  12778. bottom: 0.014
  12779. }
  12780. },
  12781. hand: {
  12782. height: math.unit(0.88, "feet"),
  12783. name: "Hand",
  12784. image: {
  12785. source: "./media/characters/vance/hand.svg"
  12786. }
  12787. },
  12788. foot: {
  12789. height: math.unit(0.64, "feet"),
  12790. name: "Foot",
  12791. image: {
  12792. source: "./media/characters/vance/foot.svg"
  12793. }
  12794. },
  12795. },
  12796. [
  12797. {
  12798. name: "Small",
  12799. height: math.unit(90, "feet"),
  12800. default: true
  12801. },
  12802. {
  12803. name: "Macro",
  12804. height: math.unit(100, "meters")
  12805. },
  12806. {
  12807. name: "Megamacro",
  12808. height: math.unit(15, "miles")
  12809. },
  12810. ]
  12811. ))
  12812. characterMakers.push(() => makeCharacter(
  12813. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12814. {
  12815. front: {
  12816. height: math.unit(6, "feet"),
  12817. weight: math.unit(180, "lb"),
  12818. name: "Front",
  12819. image: {
  12820. source: "./media/characters/xochitl/front.svg",
  12821. extra: 2297 / 2261,
  12822. bottom: 0.065
  12823. }
  12824. },
  12825. back: {
  12826. height: math.unit(6, "feet"),
  12827. weight: math.unit(180, "lb"),
  12828. name: "Back",
  12829. image: {
  12830. source: "./media/characters/xochitl/back.svg",
  12831. extra: 2386 / 2354,
  12832. bottom: 0.01
  12833. }
  12834. },
  12835. foot: {
  12836. height: math.unit(6 / 5 * 1.15, "feet"),
  12837. weight: math.unit(150, "lb"),
  12838. name: "Foot",
  12839. image: {
  12840. source: "./media/characters/xochitl/foot.svg"
  12841. }
  12842. },
  12843. },
  12844. [
  12845. {
  12846. name: "Macro",
  12847. height: math.unit(80, "feet")
  12848. },
  12849. {
  12850. name: "Macro+",
  12851. height: math.unit(400, "feet"),
  12852. default: true
  12853. },
  12854. {
  12855. name: "Gigamacro",
  12856. height: math.unit(80000, "miles")
  12857. },
  12858. {
  12859. name: "Gigamacro+",
  12860. height: math.unit(400000, "miles")
  12861. },
  12862. {
  12863. name: "Teramacro",
  12864. height: math.unit(300, "AU")
  12865. },
  12866. ]
  12867. ))
  12868. characterMakers.push(() => makeCharacter(
  12869. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12870. {
  12871. front: {
  12872. height: math.unit(6, "feet"),
  12873. weight: math.unit(150, "lb"),
  12874. name: "Front",
  12875. image: {
  12876. source: "./media/characters/vincent/front.svg",
  12877. extra: 1130 / 1080,
  12878. bottom: 0.055
  12879. }
  12880. },
  12881. beak: {
  12882. height: math.unit(6 * 0.1, "feet"),
  12883. name: "Beak",
  12884. image: {
  12885. source: "./media/characters/vincent/beak.svg"
  12886. }
  12887. },
  12888. hand: {
  12889. height: math.unit(6 * 0.85, "feet"),
  12890. weight: math.unit(150, "lb"),
  12891. name: "Hand",
  12892. image: {
  12893. source: "./media/characters/vincent/hand.svg"
  12894. }
  12895. },
  12896. foot: {
  12897. height: math.unit(6 * 0.19, "feet"),
  12898. weight: math.unit(150, "lb"),
  12899. name: "Foot",
  12900. image: {
  12901. source: "./media/characters/vincent/foot.svg"
  12902. }
  12903. },
  12904. },
  12905. [
  12906. {
  12907. name: "Base",
  12908. height: math.unit(6 + 5 / 12, "feet"),
  12909. default: true
  12910. },
  12911. {
  12912. name: "Macro",
  12913. height: math.unit(300, "feet")
  12914. },
  12915. {
  12916. name: "Megamacro",
  12917. height: math.unit(2, "miles")
  12918. },
  12919. {
  12920. name: "Gigamacro",
  12921. height: math.unit(1000, "miles")
  12922. },
  12923. ]
  12924. ))
  12925. characterMakers.push(() => makeCharacter(
  12926. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12927. {
  12928. front: {
  12929. height: math.unit(6 + 2 / 12, "feet"),
  12930. weight: math.unit(265, "lb"),
  12931. name: "Front",
  12932. image: {
  12933. source: "./media/characters/jay/front.svg",
  12934. extra: 1510 / 1430,
  12935. bottom: 0.042
  12936. }
  12937. },
  12938. back: {
  12939. height: math.unit(6 + 2 / 12, "feet"),
  12940. weight: math.unit(265, "lb"),
  12941. name: "Back",
  12942. image: {
  12943. source: "./media/characters/jay/back.svg",
  12944. extra: 1510 / 1430,
  12945. bottom: 0.025
  12946. }
  12947. },
  12948. clothed: {
  12949. height: math.unit(6 + 2 / 12, "feet"),
  12950. weight: math.unit(265, "lb"),
  12951. name: "Front (Clothed)",
  12952. image: {
  12953. source: "./media/characters/jay/clothed.svg",
  12954. extra: 744 / 699,
  12955. bottom: 0.043
  12956. }
  12957. },
  12958. head: {
  12959. height: math.unit(1.772, "feet"),
  12960. name: "Head",
  12961. image: {
  12962. source: "./media/characters/jay/head.svg"
  12963. }
  12964. },
  12965. sizeRay: {
  12966. height: math.unit(1.331, "feet"),
  12967. name: "Size Ray",
  12968. image: {
  12969. source: "./media/characters/jay/size-ray.svg"
  12970. }
  12971. },
  12972. },
  12973. [
  12974. {
  12975. name: "Micro",
  12976. height: math.unit(1, "inch")
  12977. },
  12978. {
  12979. name: "Normal",
  12980. height: math.unit(6 + 2 / 12, "feet"),
  12981. default: true
  12982. },
  12983. {
  12984. name: "Macro",
  12985. height: math.unit(1, "mile")
  12986. },
  12987. {
  12988. name: "Megamacro",
  12989. height: math.unit(100, "miles")
  12990. },
  12991. ]
  12992. ))
  12993. characterMakers.push(() => makeCharacter(
  12994. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12995. {
  12996. front: {
  12997. height: math.unit(2, "meters"),
  12998. weight: math.unit(500, "kg"),
  12999. name: "Front",
  13000. image: {
  13001. source: "./media/characters/coatl/front.svg",
  13002. extra: 3948 / 3500,
  13003. bottom: 0.082
  13004. }
  13005. },
  13006. },
  13007. [
  13008. {
  13009. name: "Normal",
  13010. height: math.unit(4, "meters")
  13011. },
  13012. {
  13013. name: "Macro",
  13014. height: math.unit(100, "meters"),
  13015. default: true
  13016. },
  13017. {
  13018. name: "Macro+",
  13019. height: math.unit(300, "meters")
  13020. },
  13021. {
  13022. name: "Megamacro",
  13023. height: math.unit(3, "gigameters")
  13024. },
  13025. {
  13026. name: "Megamacro+",
  13027. height: math.unit(300, "terameters")
  13028. },
  13029. {
  13030. name: "Megamacro++",
  13031. height: math.unit(3, "lightyears")
  13032. },
  13033. ]
  13034. ))
  13035. characterMakers.push(() => makeCharacter(
  13036. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13037. {
  13038. front: {
  13039. height: math.unit(6, "feet"),
  13040. weight: math.unit(50, "kg"),
  13041. name: "front",
  13042. image: {
  13043. source: "./media/characters/shiroryu/front.svg",
  13044. extra: 1990 / 1935
  13045. }
  13046. },
  13047. },
  13048. [
  13049. {
  13050. name: "Mortal Mingling",
  13051. height: math.unit(3, "meters")
  13052. },
  13053. {
  13054. name: "Kaiju-ish",
  13055. height: math.unit(250, "meters")
  13056. },
  13057. {
  13058. name: "Somewhat Godly",
  13059. height: math.unit(400, "km"),
  13060. default: true
  13061. },
  13062. {
  13063. name: "Planetary",
  13064. height: math.unit(300, "megameters")
  13065. },
  13066. {
  13067. name: "Galaxy-dwarfing",
  13068. height: math.unit(450, "kiloparsecs")
  13069. },
  13070. {
  13071. name: "Universe Eater",
  13072. height: math.unit(150, "gigaparsecs")
  13073. },
  13074. {
  13075. name: "Almost Immeasurable",
  13076. height: math.unit(1.3e266, "yottaparsecs")
  13077. },
  13078. ]
  13079. ))
  13080. characterMakers.push(() => makeCharacter(
  13081. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13082. {
  13083. front: {
  13084. height: math.unit(6, "feet"),
  13085. weight: math.unit(150, "lb"),
  13086. name: "Front",
  13087. image: {
  13088. source: "./media/characters/umeko/front.svg",
  13089. extra: 1,
  13090. bottom: 0.019
  13091. }
  13092. },
  13093. frontArmored: {
  13094. height: math.unit(6, "feet"),
  13095. weight: math.unit(150, "lb"),
  13096. name: "Front (Armored)",
  13097. image: {
  13098. source: "./media/characters/umeko/front-armored.svg",
  13099. extra: 1,
  13100. bottom: 0.021
  13101. }
  13102. },
  13103. },
  13104. [
  13105. {
  13106. name: "Macro",
  13107. height: math.unit(220, "feet"),
  13108. default: true
  13109. },
  13110. {
  13111. name: "Guardian Dragon",
  13112. height: math.unit(50, "miles")
  13113. },
  13114. {
  13115. name: "Cosmic",
  13116. height: math.unit(800000, "miles")
  13117. },
  13118. ]
  13119. ))
  13120. characterMakers.push(() => makeCharacter(
  13121. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13122. {
  13123. front: {
  13124. height: math.unit(6, "feet"),
  13125. weight: math.unit(150, "lb"),
  13126. name: "Front",
  13127. image: {
  13128. source: "./media/characters/cassidy/front.svg",
  13129. extra: 1,
  13130. bottom: 0.043
  13131. }
  13132. },
  13133. },
  13134. [
  13135. {
  13136. name: "Canon Height",
  13137. height: math.unit(120, "feet"),
  13138. default: true
  13139. },
  13140. {
  13141. name: "Macro+",
  13142. height: math.unit(400, "feet")
  13143. },
  13144. {
  13145. name: "Macro++",
  13146. height: math.unit(4000, "feet")
  13147. },
  13148. {
  13149. name: "Megamacro",
  13150. height: math.unit(3, "miles")
  13151. },
  13152. ]
  13153. ))
  13154. characterMakers.push(() => makeCharacter(
  13155. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13156. {
  13157. front: {
  13158. height: math.unit(6, "feet"),
  13159. weight: math.unit(150, "lb"),
  13160. name: "Front",
  13161. image: {
  13162. source: "./media/characters/isaac/front.svg",
  13163. extra: 896 / 815,
  13164. bottom: 0.11
  13165. }
  13166. },
  13167. },
  13168. [
  13169. {
  13170. name: "Human Size",
  13171. height: math.unit(8, "feet"),
  13172. default: true
  13173. },
  13174. {
  13175. name: "Macro",
  13176. height: math.unit(400, "feet")
  13177. },
  13178. {
  13179. name: "Megamacro",
  13180. height: math.unit(50, "miles")
  13181. },
  13182. {
  13183. name: "Canon Height",
  13184. height: math.unit(200, "AU")
  13185. },
  13186. ]
  13187. ))
  13188. characterMakers.push(() => makeCharacter(
  13189. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13190. {
  13191. front: {
  13192. height: math.unit(6, "feet"),
  13193. weight: math.unit(72, "kg"),
  13194. name: "Front",
  13195. image: {
  13196. source: "./media/characters/sleekit/front.svg",
  13197. extra: 4693 / 4487,
  13198. bottom: 0.012
  13199. }
  13200. },
  13201. },
  13202. [
  13203. {
  13204. name: "Minimum Height",
  13205. height: math.unit(10, "meters")
  13206. },
  13207. {
  13208. name: "Smaller",
  13209. height: math.unit(25, "meters")
  13210. },
  13211. {
  13212. name: "Larger",
  13213. height: math.unit(38, "meters"),
  13214. default: true
  13215. },
  13216. {
  13217. name: "Maximum height",
  13218. height: math.unit(100, "meters")
  13219. },
  13220. ]
  13221. ))
  13222. characterMakers.push(() => makeCharacter(
  13223. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13224. {
  13225. front: {
  13226. height: math.unit(6, "feet"),
  13227. weight: math.unit(150, "lb"),
  13228. name: "Front",
  13229. image: {
  13230. source: "./media/characters/nillia/front.svg",
  13231. extra: 2195 / 2037,
  13232. bottom: 0.005
  13233. }
  13234. },
  13235. back: {
  13236. height: math.unit(6, "feet"),
  13237. weight: math.unit(150, "lb"),
  13238. name: "Back",
  13239. image: {
  13240. source: "./media/characters/nillia/back.svg",
  13241. extra: 2195 / 2037,
  13242. bottom: 0.005
  13243. }
  13244. },
  13245. },
  13246. [
  13247. {
  13248. name: "Canon Height",
  13249. height: math.unit(489, "feet"),
  13250. default: true
  13251. }
  13252. ]
  13253. ))
  13254. characterMakers.push(() => makeCharacter(
  13255. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13256. {
  13257. front: {
  13258. height: math.unit(6, "feet"),
  13259. weight: math.unit(150, "lb"),
  13260. name: "Front",
  13261. image: {
  13262. source: "./media/characters/mesmyriza/front.svg",
  13263. extra: 2067 / 1784,
  13264. bottom: 0.035
  13265. }
  13266. },
  13267. foot: {
  13268. height: math.unit(6 / (250 / 35), "feet"),
  13269. name: "Foot",
  13270. image: {
  13271. source: "./media/characters/mesmyriza/foot.svg"
  13272. }
  13273. },
  13274. },
  13275. [
  13276. {
  13277. name: "Macro",
  13278. height: math.unit(457, "meters"),
  13279. default: true
  13280. },
  13281. {
  13282. name: "Megamacro",
  13283. height: math.unit(8, "megameters")
  13284. },
  13285. ]
  13286. ))
  13287. characterMakers.push(() => makeCharacter(
  13288. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13289. {
  13290. front: {
  13291. height: math.unit(6, "feet"),
  13292. weight: math.unit(250, "lb"),
  13293. name: "Front",
  13294. image: {
  13295. source: "./media/characters/saudade/front.svg",
  13296. extra: 1172 / 1139,
  13297. bottom: 0.035
  13298. }
  13299. },
  13300. },
  13301. [
  13302. {
  13303. name: "Micro",
  13304. height: math.unit(3, "inches")
  13305. },
  13306. {
  13307. name: "Normal",
  13308. height: math.unit(6, "feet"),
  13309. default: true
  13310. },
  13311. {
  13312. name: "Macro",
  13313. height: math.unit(50, "feet")
  13314. },
  13315. {
  13316. name: "Megamacro",
  13317. height: math.unit(2800, "feet")
  13318. },
  13319. ]
  13320. ))
  13321. characterMakers.push(() => makeCharacter(
  13322. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13323. {
  13324. front: {
  13325. height: math.unit(5 + 4 / 12, "feet"),
  13326. weight: math.unit(100, "lb"),
  13327. name: "Front",
  13328. image: {
  13329. source: "./media/characters/keireer/front.svg",
  13330. extra: 716 / 666,
  13331. bottom: 0.05
  13332. }
  13333. },
  13334. },
  13335. [
  13336. {
  13337. name: "Normal",
  13338. height: math.unit(5 + 4 / 12, "feet"),
  13339. default: true
  13340. },
  13341. ]
  13342. ))
  13343. characterMakers.push(() => makeCharacter(
  13344. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13345. {
  13346. front: {
  13347. height: math.unit(6, "feet"),
  13348. weight: math.unit(90, "kg"),
  13349. name: "Front",
  13350. image: {
  13351. source: "./media/characters/mirja/front.svg",
  13352. extra: 1789 / 1683,
  13353. bottom: 0.05
  13354. }
  13355. },
  13356. frontDressed: {
  13357. height: math.unit(6, "feet"),
  13358. weight: math.unit(90, "lb"),
  13359. name: "Front (Dressed)",
  13360. image: {
  13361. source: "./media/characters/mirja/front-dressed.svg",
  13362. extra: 1789 / 1683,
  13363. bottom: 0.05
  13364. }
  13365. },
  13366. back: {
  13367. height: math.unit(6, "feet"),
  13368. weight: math.unit(90, "lb"),
  13369. name: "Back",
  13370. image: {
  13371. source: "./media/characters/mirja/back.svg",
  13372. extra: 953 / 917,
  13373. bottom: 0.017
  13374. }
  13375. },
  13376. },
  13377. [
  13378. {
  13379. name: "\"Incognito\"",
  13380. height: math.unit(3, "meters")
  13381. },
  13382. {
  13383. name: "Strolling Size",
  13384. height: math.unit(15, "km")
  13385. },
  13386. {
  13387. name: "Larger Strolling Size",
  13388. height: math.unit(400, "km")
  13389. },
  13390. {
  13391. name: "Preferred Size",
  13392. height: math.unit(5000, "km")
  13393. },
  13394. {
  13395. name: "True Size",
  13396. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13397. default: true
  13398. },
  13399. ]
  13400. ))
  13401. characterMakers.push(() => makeCharacter(
  13402. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13403. {
  13404. front: {
  13405. height: math.unit(15, "feet"),
  13406. weight: math.unit(880, "kg"),
  13407. name: "Front",
  13408. image: {
  13409. source: "./media/characters/nightraver/front.svg",
  13410. extra: 2444 / 2160,
  13411. bottom: 0.027
  13412. }
  13413. },
  13414. back: {
  13415. height: math.unit(15, "feet"),
  13416. weight: math.unit(880, "kg"),
  13417. name: "Back",
  13418. image: {
  13419. source: "./media/characters/nightraver/back.svg",
  13420. extra: 2309 / 2180,
  13421. bottom: 0.005
  13422. }
  13423. },
  13424. sole: {
  13425. height: math.unit(2.878, "feet"),
  13426. name: "Sole",
  13427. image: {
  13428. source: "./media/characters/nightraver/sole.svg"
  13429. }
  13430. },
  13431. foot: {
  13432. height: math.unit(2.285, "feet"),
  13433. name: "Foot",
  13434. image: {
  13435. source: "./media/characters/nightraver/foot.svg"
  13436. }
  13437. },
  13438. maw: {
  13439. height: math.unit(2.67, "feet"),
  13440. name: "Maw",
  13441. image: {
  13442. source: "./media/characters/nightraver/maw.svg"
  13443. }
  13444. },
  13445. },
  13446. [
  13447. {
  13448. name: "Micro",
  13449. height: math.unit(1, "cm")
  13450. },
  13451. {
  13452. name: "Normal",
  13453. height: math.unit(15, "feet"),
  13454. default: true
  13455. },
  13456. {
  13457. name: "Macro",
  13458. height: math.unit(300, "feet")
  13459. },
  13460. {
  13461. name: "Megamacro",
  13462. height: math.unit(300, "miles")
  13463. },
  13464. {
  13465. name: "Gigamacro",
  13466. height: math.unit(10000, "miles")
  13467. },
  13468. ]
  13469. ))
  13470. characterMakers.push(() => makeCharacter(
  13471. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13472. {
  13473. side: {
  13474. height: math.unit(2, "inches"),
  13475. weight: math.unit(5, "grams"),
  13476. name: "Side",
  13477. image: {
  13478. source: "./media/characters/arc/side.svg"
  13479. }
  13480. },
  13481. },
  13482. [
  13483. {
  13484. name: "Micro",
  13485. height: math.unit(2, "inches"),
  13486. default: true
  13487. },
  13488. ]
  13489. ))
  13490. characterMakers.push(() => makeCharacter(
  13491. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13492. {
  13493. front: {
  13494. height: math.unit(1.1938, "meters"),
  13495. weight: math.unit(54, "kg"),
  13496. name: "Front",
  13497. image: {
  13498. source: "./media/characters/nebula-shahar/front.svg",
  13499. extra: 1642 / 1436,
  13500. bottom: 0.06
  13501. }
  13502. },
  13503. },
  13504. [
  13505. {
  13506. name: "Megamicro",
  13507. height: math.unit(0.3, "mm")
  13508. },
  13509. {
  13510. name: "Micro",
  13511. height: math.unit(3, "cm")
  13512. },
  13513. {
  13514. name: "Normal",
  13515. height: math.unit(138, "cm"),
  13516. default: true
  13517. },
  13518. {
  13519. name: "Macro",
  13520. height: math.unit(30, "m")
  13521. },
  13522. ]
  13523. ))
  13524. characterMakers.push(() => makeCharacter(
  13525. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13526. {
  13527. front: {
  13528. height: math.unit(5.24, "feet"),
  13529. weight: math.unit(150, "lb"),
  13530. name: "Front",
  13531. image: {
  13532. source: "./media/characters/shayla/front.svg",
  13533. extra: 1512 / 1414,
  13534. bottom: 0.01
  13535. }
  13536. },
  13537. back: {
  13538. height: math.unit(5.24, "feet"),
  13539. weight: math.unit(150, "lb"),
  13540. name: "Back",
  13541. image: {
  13542. source: "./media/characters/shayla/back.svg",
  13543. extra: 1512 / 1414
  13544. }
  13545. },
  13546. hand: {
  13547. height: math.unit(0.7781496062992126, "feet"),
  13548. name: "Hand",
  13549. image: {
  13550. source: "./media/characters/shayla/hand.svg"
  13551. }
  13552. },
  13553. foot: {
  13554. height: math.unit(1.4206036745406823, "feet"),
  13555. name: "Foot",
  13556. image: {
  13557. source: "./media/characters/shayla/foot.svg"
  13558. }
  13559. },
  13560. },
  13561. [
  13562. {
  13563. name: "Micro",
  13564. height: math.unit(0.32, "feet")
  13565. },
  13566. {
  13567. name: "Normal",
  13568. height: math.unit(5.24, "feet"),
  13569. default: true
  13570. },
  13571. {
  13572. name: "Macro",
  13573. height: math.unit(492.12, "feet")
  13574. },
  13575. {
  13576. name: "Megamacro",
  13577. height: math.unit(186.41, "miles")
  13578. },
  13579. ]
  13580. ))
  13581. characterMakers.push(() => makeCharacter(
  13582. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13583. {
  13584. front: {
  13585. height: math.unit(2.2, "m"),
  13586. weight: math.unit(120, "kg"),
  13587. name: "Front",
  13588. image: {
  13589. source: "./media/characters/pia-jr/front.svg",
  13590. extra: 1000 / 970,
  13591. bottom: 0.035
  13592. }
  13593. },
  13594. hand: {
  13595. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13596. name: "Hand",
  13597. image: {
  13598. source: "./media/characters/pia-jr/hand.svg"
  13599. }
  13600. },
  13601. paw: {
  13602. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13603. name: "Paw",
  13604. image: {
  13605. source: "./media/characters/pia-jr/paw.svg"
  13606. }
  13607. },
  13608. },
  13609. [
  13610. {
  13611. name: "Micro",
  13612. height: math.unit(1.2, "cm")
  13613. },
  13614. {
  13615. name: "Normal",
  13616. height: math.unit(2.2, "m"),
  13617. default: true
  13618. },
  13619. {
  13620. name: "Macro",
  13621. height: math.unit(180, "m")
  13622. },
  13623. {
  13624. name: "Megamacro",
  13625. height: math.unit(420, "km")
  13626. },
  13627. ]
  13628. ))
  13629. characterMakers.push(() => makeCharacter(
  13630. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13631. {
  13632. front: {
  13633. height: math.unit(2, "m"),
  13634. weight: math.unit(115, "kg"),
  13635. name: "Front",
  13636. image: {
  13637. source: "./media/characters/pia-sr/front.svg",
  13638. extra: 760 / 730,
  13639. bottom: 0.015
  13640. }
  13641. },
  13642. back: {
  13643. height: math.unit(2, "m"),
  13644. weight: math.unit(115, "kg"),
  13645. name: "Back",
  13646. image: {
  13647. source: "./media/characters/pia-sr/back.svg",
  13648. extra: 760 / 730,
  13649. bottom: 0.01
  13650. }
  13651. },
  13652. hand: {
  13653. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13654. name: "Hand",
  13655. image: {
  13656. source: "./media/characters/pia-sr/hand.svg"
  13657. }
  13658. },
  13659. foot: {
  13660. height: math.unit(1.83, "feet"),
  13661. name: "Foot",
  13662. image: {
  13663. source: "./media/characters/pia-sr/foot.svg"
  13664. }
  13665. },
  13666. },
  13667. [
  13668. {
  13669. name: "Micro",
  13670. height: math.unit(88, "mm")
  13671. },
  13672. {
  13673. name: "Normal",
  13674. height: math.unit(2, "m"),
  13675. default: true
  13676. },
  13677. {
  13678. name: "Macro",
  13679. height: math.unit(200, "m")
  13680. },
  13681. {
  13682. name: "Megamacro",
  13683. height: math.unit(420, "km")
  13684. },
  13685. ]
  13686. ))
  13687. characterMakers.push(() => makeCharacter(
  13688. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13689. {
  13690. front: {
  13691. height: math.unit(8 + 2 / 12, "feet"),
  13692. weight: math.unit(300, "lb"),
  13693. name: "Front",
  13694. image: {
  13695. source: "./media/characters/kibibyte/front.svg",
  13696. extra: 2221 / 2098,
  13697. bottom: 0.04
  13698. }
  13699. },
  13700. },
  13701. [
  13702. {
  13703. name: "Normal",
  13704. height: math.unit(8 + 2 / 12, "feet"),
  13705. default: true
  13706. },
  13707. {
  13708. name: "Socialable Macro",
  13709. height: math.unit(50, "feet")
  13710. },
  13711. {
  13712. name: "Macro",
  13713. height: math.unit(300, "feet")
  13714. },
  13715. {
  13716. name: "Megamacro",
  13717. height: math.unit(500, "miles")
  13718. },
  13719. ]
  13720. ))
  13721. characterMakers.push(() => makeCharacter(
  13722. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13723. {
  13724. front: {
  13725. height: math.unit(6, "feet"),
  13726. weight: math.unit(150, "lb"),
  13727. name: "Front",
  13728. image: {
  13729. source: "./media/characters/felix/front.svg",
  13730. extra: 762 / 722,
  13731. bottom: 0.02
  13732. }
  13733. },
  13734. frontClothed: {
  13735. height: math.unit(6, "feet"),
  13736. weight: math.unit(150, "lb"),
  13737. name: "Front (Clothed)",
  13738. image: {
  13739. source: "./media/characters/felix/front-clothed.svg",
  13740. extra: 762 / 722,
  13741. bottom: 0.02
  13742. }
  13743. },
  13744. },
  13745. [
  13746. {
  13747. name: "Normal",
  13748. height: math.unit(6 + 8 / 12, "feet"),
  13749. default: true
  13750. },
  13751. {
  13752. name: "Macro",
  13753. height: math.unit(2600, "feet")
  13754. },
  13755. {
  13756. name: "Megamacro",
  13757. height: math.unit(450, "miles")
  13758. },
  13759. ]
  13760. ))
  13761. characterMakers.push(() => makeCharacter(
  13762. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13763. {
  13764. front: {
  13765. height: math.unit(6 + 1 / 12, "feet"),
  13766. weight: math.unit(250, "lb"),
  13767. name: "Front",
  13768. image: {
  13769. source: "./media/characters/tobo/front.svg",
  13770. extra: 608 / 586,
  13771. bottom: 0.023
  13772. }
  13773. },
  13774. back: {
  13775. height: math.unit(6 + 1 / 12, "feet"),
  13776. weight: math.unit(250, "lb"),
  13777. name: "Back",
  13778. image: {
  13779. source: "./media/characters/tobo/back.svg",
  13780. extra: 608 / 586
  13781. }
  13782. },
  13783. },
  13784. [
  13785. {
  13786. name: "Nano",
  13787. height: math.unit(2, "nm")
  13788. },
  13789. {
  13790. name: "Megamicro",
  13791. height: math.unit(0.1, "mm")
  13792. },
  13793. {
  13794. name: "Micro",
  13795. height: math.unit(1, "inch"),
  13796. default: true
  13797. },
  13798. {
  13799. name: "Human-sized",
  13800. height: math.unit(6 + 1 / 12, "feet")
  13801. },
  13802. {
  13803. name: "Macro",
  13804. height: math.unit(250, "feet")
  13805. },
  13806. {
  13807. name: "Megamacro",
  13808. height: math.unit(75, "miles")
  13809. },
  13810. {
  13811. name: "Texas-sized",
  13812. height: math.unit(750, "miles")
  13813. },
  13814. {
  13815. name: "Teramacro",
  13816. height: math.unit(50000, "miles")
  13817. },
  13818. ]
  13819. ))
  13820. characterMakers.push(() => makeCharacter(
  13821. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13822. {
  13823. front: {
  13824. height: math.unit(6, "feet"),
  13825. weight: math.unit(269, "lb"),
  13826. name: "Front",
  13827. image: {
  13828. source: "./media/characters/danny-kapowsky/front.svg",
  13829. extra: 766 / 736,
  13830. bottom: 0.044
  13831. }
  13832. },
  13833. back: {
  13834. height: math.unit(6, "feet"),
  13835. weight: math.unit(269, "lb"),
  13836. name: "Back",
  13837. image: {
  13838. source: "./media/characters/danny-kapowsky/back.svg",
  13839. extra: 797 / 760,
  13840. bottom: 0.025
  13841. }
  13842. },
  13843. },
  13844. [
  13845. {
  13846. name: "Macro",
  13847. height: math.unit(150, "feet"),
  13848. default: true
  13849. },
  13850. {
  13851. name: "Macro+",
  13852. height: math.unit(200, "feet")
  13853. },
  13854. {
  13855. name: "Macro++",
  13856. height: math.unit(300, "feet")
  13857. },
  13858. {
  13859. name: "Macro+++",
  13860. height: math.unit(400, "feet")
  13861. },
  13862. ]
  13863. ))
  13864. characterMakers.push(() => makeCharacter(
  13865. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13866. {
  13867. side: {
  13868. height: math.unit(6, "feet"),
  13869. weight: math.unit(170, "lb"),
  13870. name: "Side",
  13871. image: {
  13872. source: "./media/characters/finn/side.svg",
  13873. extra: 1953 / 1807,
  13874. bottom: 0.057
  13875. }
  13876. },
  13877. },
  13878. [
  13879. {
  13880. name: "Megamacro",
  13881. height: math.unit(14445, "feet"),
  13882. default: true
  13883. },
  13884. ]
  13885. ))
  13886. characterMakers.push(() => makeCharacter(
  13887. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13888. {
  13889. front: {
  13890. height: math.unit(5 + 6 / 12, "feet"),
  13891. weight: math.unit(125, "lb"),
  13892. name: "Front",
  13893. image: {
  13894. source: "./media/characters/roy/front.svg",
  13895. extra: 1,
  13896. bottom: 0.11
  13897. }
  13898. },
  13899. },
  13900. [
  13901. {
  13902. name: "Micro",
  13903. height: math.unit(3, "inches"),
  13904. default: true
  13905. },
  13906. {
  13907. name: "Normal",
  13908. height: math.unit(5 + 6 / 12, "feet")
  13909. },
  13910. {
  13911. name: "Lesser Macro",
  13912. height: math.unit(60, "feet")
  13913. },
  13914. {
  13915. name: "Greater Macro",
  13916. height: math.unit(120, "feet")
  13917. },
  13918. ]
  13919. ))
  13920. characterMakers.push(() => makeCharacter(
  13921. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13922. {
  13923. front: {
  13924. height: math.unit(6, "feet"),
  13925. weight: math.unit(100, "lb"),
  13926. name: "Front",
  13927. image: {
  13928. source: "./media/characters/aevsivs/front.svg",
  13929. extra: 1,
  13930. bottom: 0.03
  13931. }
  13932. },
  13933. back: {
  13934. height: math.unit(6, "feet"),
  13935. weight: math.unit(100, "lb"),
  13936. name: "Back",
  13937. image: {
  13938. source: "./media/characters/aevsivs/back.svg"
  13939. }
  13940. },
  13941. },
  13942. [
  13943. {
  13944. name: "Micro",
  13945. height: math.unit(2, "inches"),
  13946. default: true
  13947. },
  13948. {
  13949. name: "Normal",
  13950. height: math.unit(5, "feet")
  13951. },
  13952. ]
  13953. ))
  13954. characterMakers.push(() => makeCharacter(
  13955. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13956. {
  13957. front: {
  13958. height: math.unit(5 + 7 / 12, "feet"),
  13959. weight: math.unit(159, "lb"),
  13960. name: "Front",
  13961. image: {
  13962. source: "./media/characters/hildegard/front.svg",
  13963. extra: 289 / 269,
  13964. bottom: 7.63 / 297.8
  13965. }
  13966. },
  13967. back: {
  13968. height: math.unit(5 + 7 / 12, "feet"),
  13969. weight: math.unit(159, "lb"),
  13970. name: "Back",
  13971. image: {
  13972. source: "./media/characters/hildegard/back.svg",
  13973. extra: 280 / 260,
  13974. bottom: 2.3 / 282
  13975. }
  13976. },
  13977. },
  13978. [
  13979. {
  13980. name: "Normal",
  13981. height: math.unit(5 + 7 / 12, "feet"),
  13982. default: true
  13983. },
  13984. ]
  13985. ))
  13986. characterMakers.push(() => makeCharacter(
  13987. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13988. {
  13989. bernard: {
  13990. height: math.unit(2 + 7 / 12, "feet"),
  13991. weight: math.unit(66, "lb"),
  13992. name: "Bernard",
  13993. rename: true,
  13994. image: {
  13995. source: "./media/characters/bernard-wilder/bernard.svg",
  13996. extra: 192 / 128,
  13997. bottom: 0.05
  13998. }
  13999. },
  14000. wilder: {
  14001. height: math.unit(5 + 8 / 12, "feet"),
  14002. weight: math.unit(143, "lb"),
  14003. name: "Wilder",
  14004. rename: true,
  14005. image: {
  14006. source: "./media/characters/bernard-wilder/wilder.svg",
  14007. extra: 361 / 312,
  14008. bottom: 0.02
  14009. }
  14010. },
  14011. },
  14012. [
  14013. {
  14014. name: "Normal",
  14015. height: math.unit(2 + 7 / 12, "feet"),
  14016. default: true
  14017. },
  14018. ]
  14019. ))
  14020. characterMakers.push(() => makeCharacter(
  14021. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14022. {
  14023. anthro: {
  14024. height: math.unit(6 + 1 / 12, "feet"),
  14025. weight: math.unit(155, "lb"),
  14026. name: "Anthro",
  14027. image: {
  14028. source: "./media/characters/hearth/anthro.svg",
  14029. extra: 260 / 250,
  14030. bottom: 0.02
  14031. }
  14032. },
  14033. feral: {
  14034. height: math.unit(3.78, "feet"),
  14035. weight: math.unit(35, "kg"),
  14036. name: "Feral",
  14037. image: {
  14038. source: "./media/characters/hearth/feral.svg",
  14039. extra: 153 / 135,
  14040. bottom: 0.03
  14041. }
  14042. },
  14043. },
  14044. [
  14045. {
  14046. name: "Normal",
  14047. height: math.unit(6 + 1 / 12, "feet"),
  14048. default: true
  14049. },
  14050. ]
  14051. ))
  14052. characterMakers.push(() => makeCharacter(
  14053. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14054. {
  14055. front: {
  14056. height: math.unit(6, "feet"),
  14057. weight: math.unit(182, "lb"),
  14058. name: "Front",
  14059. image: {
  14060. source: "./media/characters/ingrid/front.svg",
  14061. extra: 294 / 268,
  14062. bottom: 0.027
  14063. }
  14064. },
  14065. },
  14066. [
  14067. {
  14068. name: "Normal",
  14069. height: math.unit(6, "feet"),
  14070. default: true
  14071. },
  14072. ]
  14073. ))
  14074. characterMakers.push(() => makeCharacter(
  14075. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14076. {
  14077. eevee: {
  14078. height: math.unit(2 + 10 / 12, "feet"),
  14079. weight: math.unit(86, "lb"),
  14080. name: "Malgam",
  14081. image: {
  14082. source: "./media/characters/malgam/eevee.svg",
  14083. extra: 218 / 180,
  14084. bottom: 0.2
  14085. }
  14086. },
  14087. sylveon: {
  14088. height: math.unit(4, "feet"),
  14089. weight: math.unit(101, "lb"),
  14090. name: "Future Malgam",
  14091. rename: true,
  14092. image: {
  14093. source: "./media/characters/malgam/sylveon.svg",
  14094. extra: 371 / 325,
  14095. bottom: 0.015
  14096. }
  14097. },
  14098. gigantamax: {
  14099. height: math.unit(50, "feet"),
  14100. name: "Gigantamax Malgam",
  14101. rename: true,
  14102. image: {
  14103. source: "./media/characters/malgam/gigantamax.svg"
  14104. }
  14105. },
  14106. },
  14107. [
  14108. {
  14109. name: "Normal",
  14110. height: math.unit(2 + 10 / 12, "feet"),
  14111. default: true
  14112. },
  14113. ]
  14114. ))
  14115. characterMakers.push(() => makeCharacter(
  14116. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14117. {
  14118. front: {
  14119. height: math.unit(5 + 11 / 12, "feet"),
  14120. weight: math.unit(188, "lb"),
  14121. name: "Front",
  14122. image: {
  14123. source: "./media/characters/fleur/front.svg",
  14124. extra: 309 / 283,
  14125. bottom: 0.007
  14126. }
  14127. },
  14128. },
  14129. [
  14130. {
  14131. name: "Normal",
  14132. height: math.unit(5 + 11 / 12, "feet"),
  14133. default: true
  14134. },
  14135. ]
  14136. ))
  14137. characterMakers.push(() => makeCharacter(
  14138. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14139. {
  14140. front: {
  14141. height: math.unit(5 + 4 / 12, "feet"),
  14142. weight: math.unit(122, "lb"),
  14143. name: "Front",
  14144. image: {
  14145. source: "./media/characters/jude/front.svg",
  14146. extra: 288 / 273,
  14147. bottom: 0.03
  14148. }
  14149. },
  14150. },
  14151. [
  14152. {
  14153. name: "Normal",
  14154. height: math.unit(5 + 4 / 12, "feet"),
  14155. default: true
  14156. },
  14157. ]
  14158. ))
  14159. characterMakers.push(() => makeCharacter(
  14160. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14161. {
  14162. front: {
  14163. height: math.unit(5 + 11 / 12, "feet"),
  14164. weight: math.unit(190, "lb"),
  14165. name: "Front",
  14166. image: {
  14167. source: "./media/characters/seara/front.svg",
  14168. extra: 1,
  14169. bottom: 0.05
  14170. }
  14171. },
  14172. },
  14173. [
  14174. {
  14175. name: "Normal",
  14176. height: math.unit(5 + 11 / 12, "feet"),
  14177. default: true
  14178. },
  14179. ]
  14180. ))
  14181. characterMakers.push(() => makeCharacter(
  14182. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14183. {
  14184. front: {
  14185. height: math.unit(16 + 5 / 12, "feet"),
  14186. weight: math.unit(524, "lb"),
  14187. name: "Front",
  14188. image: {
  14189. source: "./media/characters/caspian/front.svg",
  14190. extra: 1,
  14191. bottom: 0.04
  14192. }
  14193. },
  14194. },
  14195. [
  14196. {
  14197. name: "Normal",
  14198. height: math.unit(16 + 5 / 12, "feet"),
  14199. default: true
  14200. },
  14201. ]
  14202. ))
  14203. characterMakers.push(() => makeCharacter(
  14204. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14205. {
  14206. front: {
  14207. height: math.unit(5 + 7 / 12, "feet"),
  14208. weight: math.unit(170, "lb"),
  14209. name: "Front",
  14210. image: {
  14211. source: "./media/characters/mika/front.svg",
  14212. extra: 1,
  14213. bottom: 0.016
  14214. }
  14215. },
  14216. },
  14217. [
  14218. {
  14219. name: "Normal",
  14220. height: math.unit(5 + 7 / 12, "feet"),
  14221. default: true
  14222. },
  14223. ]
  14224. ))
  14225. characterMakers.push(() => makeCharacter(
  14226. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14227. {
  14228. front: {
  14229. height: math.unit(6 + 2 / 12, "feet"),
  14230. weight: math.unit(268, "lb"),
  14231. name: "Front",
  14232. image: {
  14233. source: "./media/characters/sol/front.svg",
  14234. extra: 247 / 231,
  14235. bottom: 0.05
  14236. }
  14237. },
  14238. },
  14239. [
  14240. {
  14241. name: "Normal",
  14242. height: math.unit(6 + 2 / 12, "feet"),
  14243. default: true
  14244. },
  14245. ]
  14246. ))
  14247. characterMakers.push(() => makeCharacter(
  14248. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14249. {
  14250. buizel: {
  14251. height: math.unit(2 + 5 / 12, "feet"),
  14252. weight: math.unit(87, "lb"),
  14253. name: "Buizel",
  14254. image: {
  14255. source: "./media/characters/umiko/buizel.svg",
  14256. extra: 172 / 157,
  14257. bottom: 0.01
  14258. }
  14259. },
  14260. floatzel: {
  14261. height: math.unit(5 + 9 / 12, "feet"),
  14262. weight: math.unit(250, "lb"),
  14263. name: "Floatzel",
  14264. image: {
  14265. source: "./media/characters/umiko/floatzel.svg",
  14266. extra: 262 / 248
  14267. }
  14268. },
  14269. },
  14270. [
  14271. {
  14272. name: "Normal",
  14273. height: math.unit(2 + 5 / 12, "feet"),
  14274. default: true
  14275. },
  14276. ]
  14277. ))
  14278. characterMakers.push(() => makeCharacter(
  14279. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14280. {
  14281. front: {
  14282. height: math.unit(6 + 2 / 12, "feet"),
  14283. weight: math.unit(146, "lb"),
  14284. name: "Front",
  14285. image: {
  14286. source: "./media/characters/iliac/front.svg",
  14287. extra: 389 / 365,
  14288. bottom: 0.035
  14289. }
  14290. },
  14291. },
  14292. [
  14293. {
  14294. name: "Normal",
  14295. height: math.unit(6 + 2 / 12, "feet"),
  14296. default: true
  14297. },
  14298. ]
  14299. ))
  14300. characterMakers.push(() => makeCharacter(
  14301. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14302. {
  14303. front: {
  14304. height: math.unit(6, "feet"),
  14305. weight: math.unit(170, "lb"),
  14306. name: "Front",
  14307. image: {
  14308. source: "./media/characters/topaz/front.svg",
  14309. extra: 317 / 303,
  14310. bottom: 0.055
  14311. }
  14312. },
  14313. },
  14314. [
  14315. {
  14316. name: "Normal",
  14317. height: math.unit(6, "feet"),
  14318. default: true
  14319. },
  14320. ]
  14321. ))
  14322. characterMakers.push(() => makeCharacter(
  14323. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14324. {
  14325. front: {
  14326. height: math.unit(5 + 11 / 12, "feet"),
  14327. weight: math.unit(144, "lb"),
  14328. name: "Front",
  14329. image: {
  14330. source: "./media/characters/gabriel/front.svg",
  14331. extra: 285 / 262,
  14332. bottom: 0.004
  14333. }
  14334. },
  14335. },
  14336. [
  14337. {
  14338. name: "Normal",
  14339. height: math.unit(5 + 11 / 12, "feet"),
  14340. default: true
  14341. },
  14342. ]
  14343. ))
  14344. characterMakers.push(() => makeCharacter(
  14345. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14346. {
  14347. side: {
  14348. height: math.unit(6 + 5 / 12, "feet"),
  14349. weight: math.unit(300, "lb"),
  14350. name: "Side",
  14351. image: {
  14352. source: "./media/characters/tempest-suicune/side.svg",
  14353. extra: 195 / 154,
  14354. bottom: 0.04
  14355. }
  14356. },
  14357. },
  14358. [
  14359. {
  14360. name: "Normal",
  14361. height: math.unit(6 + 5 / 12, "feet"),
  14362. default: true
  14363. },
  14364. ]
  14365. ))
  14366. characterMakers.push(() => makeCharacter(
  14367. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14368. {
  14369. front: {
  14370. height: math.unit(7 + 2 / 12, "feet"),
  14371. weight: math.unit(322, "lb"),
  14372. name: "Front",
  14373. image: {
  14374. source: "./media/characters/vulcan/front.svg",
  14375. extra: 154 / 147,
  14376. bottom: 0.04
  14377. }
  14378. },
  14379. },
  14380. [
  14381. {
  14382. name: "Normal",
  14383. height: math.unit(7 + 2 / 12, "feet"),
  14384. default: true
  14385. },
  14386. ]
  14387. ))
  14388. characterMakers.push(() => makeCharacter(
  14389. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14390. {
  14391. front: {
  14392. height: math.unit(5 + 10 / 12, "feet"),
  14393. weight: math.unit(264, "lb"),
  14394. name: "Front",
  14395. image: {
  14396. source: "./media/characters/gault/front.svg",
  14397. extra: 161 / 140,
  14398. bottom: 0.028
  14399. }
  14400. },
  14401. },
  14402. [
  14403. {
  14404. name: "Normal",
  14405. height: math.unit(5 + 10 / 12, "feet"),
  14406. default: true
  14407. },
  14408. ]
  14409. ))
  14410. characterMakers.push(() => makeCharacter(
  14411. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14412. {
  14413. front: {
  14414. height: math.unit(6, "feet"),
  14415. weight: math.unit(150, "lb"),
  14416. name: "Front",
  14417. image: {
  14418. source: "./media/characters/shard/front.svg",
  14419. extra: 273 / 238,
  14420. bottom: 0.02
  14421. }
  14422. },
  14423. },
  14424. [
  14425. {
  14426. name: "Normal",
  14427. height: math.unit(3 + 6 / 12, "feet"),
  14428. default: true
  14429. },
  14430. ]
  14431. ))
  14432. characterMakers.push(() => makeCharacter(
  14433. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14434. {
  14435. front: {
  14436. height: math.unit(5 + 11 / 12, "feet"),
  14437. weight: math.unit(146, "lb"),
  14438. name: "Front",
  14439. image: {
  14440. source: "./media/characters/ashe/front.svg",
  14441. extra: 400 / 373,
  14442. bottom: 0.01
  14443. }
  14444. },
  14445. },
  14446. [
  14447. {
  14448. name: "Normal",
  14449. height: math.unit(5 + 11 / 12, "feet"),
  14450. default: true
  14451. },
  14452. ]
  14453. ))
  14454. characterMakers.push(() => makeCharacter(
  14455. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14456. {
  14457. front: {
  14458. height: math.unit(5 + 5 / 12, "feet"),
  14459. weight: math.unit(135, "lb"),
  14460. name: "Front",
  14461. image: {
  14462. source: "./media/characters/beatrix/front.svg",
  14463. extra: 392 / 379,
  14464. bottom: 0.01
  14465. }
  14466. },
  14467. },
  14468. [
  14469. {
  14470. name: "Normal",
  14471. height: math.unit(6, "feet"),
  14472. default: true
  14473. },
  14474. ]
  14475. ))
  14476. characterMakers.push(() => makeCharacter(
  14477. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14478. {
  14479. front: {
  14480. height: math.unit(6, "feet"),
  14481. weight: math.unit(150, "lb"),
  14482. name: "Front",
  14483. image: {
  14484. source: "./media/characters/ignatius/front.svg",
  14485. extra: 245 / 222,
  14486. bottom: 0.01
  14487. }
  14488. },
  14489. },
  14490. [
  14491. {
  14492. name: "Normal",
  14493. height: math.unit(5 + 5 / 12, "feet"),
  14494. default: true
  14495. },
  14496. ]
  14497. ))
  14498. characterMakers.push(() => makeCharacter(
  14499. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14500. {
  14501. front: {
  14502. height: math.unit(6 + 2 / 12, "feet"),
  14503. weight: math.unit(138, "lb"),
  14504. name: "Front",
  14505. image: {
  14506. source: "./media/characters/mei-li/front.svg",
  14507. extra: 237 / 229,
  14508. bottom: 0.03
  14509. }
  14510. },
  14511. },
  14512. [
  14513. {
  14514. name: "Normal",
  14515. height: math.unit(6 + 2 / 12, "feet"),
  14516. default: true
  14517. },
  14518. ]
  14519. ))
  14520. characterMakers.push(() => makeCharacter(
  14521. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14522. {
  14523. front: {
  14524. height: math.unit(2 + 4 / 12, "feet"),
  14525. weight: math.unit(62, "lb"),
  14526. name: "Front",
  14527. image: {
  14528. source: "./media/characters/puru/front.svg",
  14529. extra: 206 / 149,
  14530. bottom: 0.06
  14531. }
  14532. },
  14533. },
  14534. [
  14535. {
  14536. name: "Normal",
  14537. height: math.unit(2 + 4 / 12, "feet"),
  14538. default: true
  14539. },
  14540. ]
  14541. ))
  14542. characterMakers.push(() => makeCharacter(
  14543. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14544. {
  14545. taur: {
  14546. height: math.unit(11, "feet"),
  14547. weight: math.unit(500, "lb"),
  14548. name: "Taur",
  14549. image: {
  14550. source: "./media/characters/kee/taur.svg",
  14551. extra: 1,
  14552. bottom: 0.04
  14553. }
  14554. },
  14555. },
  14556. [
  14557. {
  14558. name: "Normal",
  14559. height: math.unit(11, "feet"),
  14560. default: true
  14561. },
  14562. ]
  14563. ))
  14564. characterMakers.push(() => makeCharacter(
  14565. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14566. {
  14567. anthro: {
  14568. height: math.unit(7, "feet"),
  14569. weight: math.unit(190, "lb"),
  14570. name: "Anthro",
  14571. image: {
  14572. source: "./media/characters/cobalt-dracha/anthro.svg",
  14573. extra: 231 / 225,
  14574. bottom: 0.04
  14575. }
  14576. },
  14577. feral: {
  14578. height: math.unit(9 + 7 / 12, "feet"),
  14579. weight: math.unit(294, "lb"),
  14580. name: "Feral",
  14581. image: {
  14582. source: "./media/characters/cobalt-dracha/feral.svg",
  14583. extra: 692 / 633,
  14584. bottom: 0.05
  14585. }
  14586. },
  14587. },
  14588. [
  14589. {
  14590. name: "Normal",
  14591. height: math.unit(7, "feet"),
  14592. default: true
  14593. },
  14594. ]
  14595. ))
  14596. characterMakers.push(() => makeCharacter(
  14597. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14598. {
  14599. fallen: {
  14600. height: math.unit(11 + 8 / 12, "feet"),
  14601. weight: math.unit(485, "lb"),
  14602. name: "Java (Fallen)",
  14603. rename: true,
  14604. image: {
  14605. source: "./media/characters/java/fallen.svg",
  14606. extra: 226 / 208,
  14607. bottom: 0.005
  14608. }
  14609. },
  14610. godkin: {
  14611. height: math.unit(10 + 6 / 12, "feet"),
  14612. weight: math.unit(328, "lb"),
  14613. name: "Java (Godkin)",
  14614. rename: true,
  14615. image: {
  14616. source: "./media/characters/java/godkin.svg",
  14617. extra: 270 / 262,
  14618. bottom: 0.02
  14619. }
  14620. },
  14621. },
  14622. [
  14623. {
  14624. name: "Normal",
  14625. height: math.unit(11 + 8 / 12, "feet"),
  14626. default: true
  14627. },
  14628. ]
  14629. ))
  14630. characterMakers.push(() => makeCharacter(
  14631. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14632. {
  14633. front: {
  14634. height: math.unit(7 + 8 / 12, "feet"),
  14635. weight: math.unit(320, "lb"),
  14636. name: "Front",
  14637. image: {
  14638. source: "./media/characters/skoll/front.svg",
  14639. extra: 232 / 220,
  14640. bottom: 0.02
  14641. }
  14642. },
  14643. },
  14644. [
  14645. {
  14646. name: "Normal",
  14647. height: math.unit(7 + 8 / 12, "feet"),
  14648. default: true
  14649. },
  14650. ]
  14651. ))
  14652. characterMakers.push(() => makeCharacter(
  14653. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14654. {
  14655. front: {
  14656. height: math.unit(5 + 9 / 12, "feet"),
  14657. weight: math.unit(170, "lb"),
  14658. name: "Front",
  14659. image: {
  14660. source: "./media/characters/purna/front.svg",
  14661. extra: 239 / 229,
  14662. bottom: 0.01
  14663. }
  14664. },
  14665. },
  14666. [
  14667. {
  14668. name: "Normal",
  14669. height: math.unit(5 + 9 / 12, "feet"),
  14670. default: true
  14671. },
  14672. ]
  14673. ))
  14674. characterMakers.push(() => makeCharacter(
  14675. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14676. {
  14677. front: {
  14678. height: math.unit(5 + 9 / 12, "feet"),
  14679. weight: math.unit(142, "lb"),
  14680. name: "Front",
  14681. image: {
  14682. source: "./media/characters/kuva/front.svg",
  14683. extra: 281 / 271,
  14684. bottom: 0.006
  14685. }
  14686. },
  14687. },
  14688. [
  14689. {
  14690. name: "Normal",
  14691. height: math.unit(5 + 9 / 12, "feet"),
  14692. default: true
  14693. },
  14694. ]
  14695. ))
  14696. characterMakers.push(() => makeCharacter(
  14697. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14698. {
  14699. anthro: {
  14700. height: math.unit(9 + 2 / 12, "feet"),
  14701. weight: math.unit(270, "lb"),
  14702. name: "Anthro",
  14703. image: {
  14704. source: "./media/characters/embra/anthro.svg",
  14705. extra: 200 / 187,
  14706. bottom: 0.02
  14707. }
  14708. },
  14709. feral: {
  14710. height: math.unit(18 + 8 / 12, "feet"),
  14711. weight: math.unit(576, "lb"),
  14712. name: "Feral",
  14713. image: {
  14714. source: "./media/characters/embra/feral.svg",
  14715. extra: 152 / 137,
  14716. bottom: 0.037
  14717. }
  14718. },
  14719. },
  14720. [
  14721. {
  14722. name: "Normal",
  14723. height: math.unit(9 + 2 / 12, "feet"),
  14724. default: true
  14725. },
  14726. ]
  14727. ))
  14728. characterMakers.push(() => makeCharacter(
  14729. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14730. {
  14731. anthro: {
  14732. height: math.unit(10 + 9 / 12, "feet"),
  14733. weight: math.unit(224, "lb"),
  14734. name: "Anthro",
  14735. image: {
  14736. source: "./media/characters/grottos/anthro.svg",
  14737. extra: 350 / 332,
  14738. bottom: 0.045
  14739. }
  14740. },
  14741. feral: {
  14742. height: math.unit(20 + 7 / 12, "feet"),
  14743. weight: math.unit(629, "lb"),
  14744. name: "Feral",
  14745. image: {
  14746. source: "./media/characters/grottos/feral.svg",
  14747. extra: 207 / 190,
  14748. bottom: 0.05
  14749. }
  14750. },
  14751. },
  14752. [
  14753. {
  14754. name: "Normal",
  14755. height: math.unit(10 + 9 / 12, "feet"),
  14756. default: true
  14757. },
  14758. ]
  14759. ))
  14760. characterMakers.push(() => makeCharacter(
  14761. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14762. {
  14763. anthro: {
  14764. height: math.unit(9 + 6 / 12, "feet"),
  14765. weight: math.unit(298, "lb"),
  14766. name: "Anthro",
  14767. image: {
  14768. source: "./media/characters/frifna/anthro.svg",
  14769. extra: 282 / 269,
  14770. bottom: 0.015
  14771. }
  14772. },
  14773. feral: {
  14774. height: math.unit(16 + 2 / 12, "feet"),
  14775. weight: math.unit(624, "lb"),
  14776. name: "Feral",
  14777. image: {
  14778. source: "./media/characters/frifna/feral.svg"
  14779. }
  14780. },
  14781. },
  14782. [
  14783. {
  14784. name: "Normal",
  14785. height: math.unit(9 + 6 / 12, "feet"),
  14786. default: true
  14787. },
  14788. ]
  14789. ))
  14790. characterMakers.push(() => makeCharacter(
  14791. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14792. {
  14793. front: {
  14794. height: math.unit(6 + 2 / 12, "feet"),
  14795. weight: math.unit(168, "lb"),
  14796. name: "Front",
  14797. image: {
  14798. source: "./media/characters/elise/front.svg",
  14799. extra: 276 / 271
  14800. }
  14801. },
  14802. },
  14803. [
  14804. {
  14805. name: "Normal",
  14806. height: math.unit(6 + 2 / 12, "feet"),
  14807. default: true
  14808. },
  14809. ]
  14810. ))
  14811. characterMakers.push(() => makeCharacter(
  14812. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14813. {
  14814. front: {
  14815. height: math.unit(5 + 10 / 12, "feet"),
  14816. weight: math.unit(210, "lb"),
  14817. name: "Front",
  14818. image: {
  14819. source: "./media/characters/glade/front.svg",
  14820. extra: 258 / 247,
  14821. bottom: 0.008
  14822. }
  14823. },
  14824. },
  14825. [
  14826. {
  14827. name: "Normal",
  14828. height: math.unit(5 + 10 / 12, "feet"),
  14829. default: true
  14830. },
  14831. ]
  14832. ))
  14833. characterMakers.push(() => makeCharacter(
  14834. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14835. {
  14836. front: {
  14837. height: math.unit(5 + 10 / 12, "feet"),
  14838. weight: math.unit(129, "lb"),
  14839. name: "Front",
  14840. image: {
  14841. source: "./media/characters/rina/front.svg",
  14842. extra: 266 / 255,
  14843. bottom: 0.005
  14844. }
  14845. },
  14846. },
  14847. [
  14848. {
  14849. name: "Normal",
  14850. height: math.unit(5 + 10 / 12, "feet"),
  14851. default: true
  14852. },
  14853. ]
  14854. ))
  14855. characterMakers.push(() => makeCharacter(
  14856. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14857. {
  14858. front: {
  14859. height: math.unit(6 + 1 / 12, "feet"),
  14860. weight: math.unit(192, "lb"),
  14861. name: "Front",
  14862. image: {
  14863. source: "./media/characters/veronica/front.svg",
  14864. extra: 319 / 309,
  14865. bottom: 0.005
  14866. }
  14867. },
  14868. },
  14869. [
  14870. {
  14871. name: "Normal",
  14872. height: math.unit(6 + 1 / 12, "feet"),
  14873. default: true
  14874. },
  14875. ]
  14876. ))
  14877. characterMakers.push(() => makeCharacter(
  14878. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14879. {
  14880. front: {
  14881. height: math.unit(9 + 3 / 12, "feet"),
  14882. weight: math.unit(1100, "lb"),
  14883. name: "Front",
  14884. image: {
  14885. source: "./media/characters/braxton/front.svg",
  14886. extra: 1057 / 984,
  14887. bottom: 0.05
  14888. }
  14889. },
  14890. },
  14891. [
  14892. {
  14893. name: "Normal",
  14894. height: math.unit(9 + 3 / 12, "feet")
  14895. },
  14896. {
  14897. name: "Giant",
  14898. height: math.unit(300, "feet"),
  14899. default: true
  14900. },
  14901. {
  14902. name: "Macro",
  14903. height: math.unit(700, "feet")
  14904. },
  14905. {
  14906. name: "Megamacro",
  14907. height: math.unit(6000, "feet")
  14908. },
  14909. ]
  14910. ))
  14911. characterMakers.push(() => makeCharacter(
  14912. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14913. {
  14914. front: {
  14915. height: math.unit(6 + 7 / 12, "feet"),
  14916. weight: math.unit(150, "lb"),
  14917. name: "Front",
  14918. image: {
  14919. source: "./media/characters/blue-feyonics/front.svg",
  14920. extra: 1403 / 1306,
  14921. bottom: 0.047
  14922. }
  14923. },
  14924. },
  14925. [
  14926. {
  14927. name: "Normal",
  14928. height: math.unit(6 + 7 / 12, "feet"),
  14929. default: true
  14930. },
  14931. ]
  14932. ))
  14933. characterMakers.push(() => makeCharacter(
  14934. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14935. {
  14936. front: {
  14937. height: math.unit(1.8, "meters"),
  14938. weight: math.unit(60, "kg"),
  14939. name: "Front",
  14940. image: {
  14941. source: "./media/characters/maxwell/front.svg",
  14942. extra: 2060 / 1873
  14943. }
  14944. },
  14945. },
  14946. [
  14947. {
  14948. name: "Micro",
  14949. height: math.unit(1, "mm")
  14950. },
  14951. {
  14952. name: "Normal",
  14953. height: math.unit(1.8, "meter"),
  14954. default: true
  14955. },
  14956. {
  14957. name: "Macro",
  14958. height: math.unit(30, "meters")
  14959. },
  14960. {
  14961. name: "Megamacro",
  14962. height: math.unit(10, "km")
  14963. },
  14964. ]
  14965. ))
  14966. characterMakers.push(() => makeCharacter(
  14967. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14968. {
  14969. front: {
  14970. height: math.unit(6, "feet"),
  14971. weight: math.unit(150, "lb"),
  14972. name: "Front",
  14973. image: {
  14974. source: "./media/characters/jack/front.svg",
  14975. extra: 1754 / 1640,
  14976. bottom: 0.01
  14977. }
  14978. },
  14979. },
  14980. [
  14981. {
  14982. name: "Normal",
  14983. height: math.unit(80000, "feet"),
  14984. default: true
  14985. },
  14986. {
  14987. name: "Max size",
  14988. height: math.unit(10, "lightyears")
  14989. },
  14990. ]
  14991. ))
  14992. characterMakers.push(() => makeCharacter(
  14993. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14994. {
  14995. upright: {
  14996. height: math.unit(7, "feet"),
  14997. weight: math.unit(170, "lb"),
  14998. name: "Upright",
  14999. image: {
  15000. source: "./media/characters/cafat/upright.svg",
  15001. bottom: 0.01
  15002. }
  15003. },
  15004. uprightFull: {
  15005. height: math.unit(7, "feet"),
  15006. weight: math.unit(170, "lb"),
  15007. name: "Upright (Full)",
  15008. image: {
  15009. source: "./media/characters/cafat/upright-full.svg",
  15010. bottom: 0.01
  15011. }
  15012. },
  15013. side: {
  15014. height: math.unit(5, "feet"),
  15015. weight: math.unit(150, "lb"),
  15016. name: "Side",
  15017. image: {
  15018. source: "./media/characters/cafat/side.svg"
  15019. }
  15020. },
  15021. },
  15022. [
  15023. {
  15024. name: "Small",
  15025. height: math.unit(7, "feet"),
  15026. default: true
  15027. },
  15028. {
  15029. name: "Large",
  15030. height: math.unit(15.5, "feet")
  15031. },
  15032. ]
  15033. ))
  15034. characterMakers.push(() => makeCharacter(
  15035. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15036. {
  15037. front: {
  15038. height: math.unit(6, "feet"),
  15039. weight: math.unit(150, "lb"),
  15040. name: "Front",
  15041. image: {
  15042. source: "./media/characters/verin-raharra/front.svg",
  15043. extra: 5019 / 4835,
  15044. bottom: 0.023
  15045. }
  15046. },
  15047. },
  15048. [
  15049. {
  15050. name: "Normal",
  15051. height: math.unit(7 + 5 / 12, "feet"),
  15052. default: true
  15053. },
  15054. {
  15055. name: "Upsized",
  15056. height: math.unit(20, "feet")
  15057. },
  15058. ]
  15059. ))
  15060. characterMakers.push(() => makeCharacter(
  15061. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15062. {
  15063. front: {
  15064. height: math.unit(7, "feet"),
  15065. weight: math.unit(230, "lb"),
  15066. name: "Front",
  15067. image: {
  15068. source: "./media/characters/nakata/front.svg",
  15069. extra: 1.005,
  15070. bottom: 0.01
  15071. }
  15072. },
  15073. },
  15074. [
  15075. {
  15076. name: "Normal",
  15077. height: math.unit(7, "feet"),
  15078. default: true
  15079. },
  15080. {
  15081. name: "Big",
  15082. height: math.unit(14, "feet")
  15083. },
  15084. {
  15085. name: "Macro",
  15086. height: math.unit(400, "feet")
  15087. },
  15088. ]
  15089. ))
  15090. characterMakers.push(() => makeCharacter(
  15091. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15092. {
  15093. front: {
  15094. height: math.unit(4.91, "feet"),
  15095. weight: math.unit(100, "lb"),
  15096. name: "Front",
  15097. image: {
  15098. source: "./media/characters/lily/front.svg",
  15099. extra: 1585 / 1415,
  15100. bottom: 0.02
  15101. }
  15102. },
  15103. },
  15104. [
  15105. {
  15106. name: "Normal",
  15107. height: math.unit(4.91, "feet"),
  15108. default: true
  15109. },
  15110. ]
  15111. ))
  15112. characterMakers.push(() => makeCharacter(
  15113. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15114. {
  15115. laying: {
  15116. height: math.unit(4 + 4 / 12, "feet"),
  15117. weight: math.unit(600, "lb"),
  15118. name: "Laying",
  15119. image: {
  15120. source: "./media/characters/sheila/laying.svg",
  15121. extra: 1333 / 1265,
  15122. bottom: 0.16
  15123. }
  15124. },
  15125. },
  15126. [
  15127. {
  15128. name: "Normal",
  15129. height: math.unit(4 + 4 / 12, "feet"),
  15130. default: true
  15131. },
  15132. ]
  15133. ))
  15134. characterMakers.push(() => makeCharacter(
  15135. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15136. {
  15137. front: {
  15138. height: math.unit(6, "feet"),
  15139. weight: math.unit(190, "lb"),
  15140. name: "Front",
  15141. image: {
  15142. source: "./media/characters/sax/front.svg",
  15143. extra: 1187 / 973,
  15144. bottom: 0.042
  15145. }
  15146. },
  15147. },
  15148. [
  15149. {
  15150. name: "Micro",
  15151. height: math.unit(4, "inches"),
  15152. default: true
  15153. },
  15154. ]
  15155. ))
  15156. characterMakers.push(() => makeCharacter(
  15157. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15158. {
  15159. front: {
  15160. height: math.unit(6, "feet"),
  15161. weight: math.unit(150, "lb"),
  15162. name: "Front",
  15163. image: {
  15164. source: "./media/characters/pandora/front.svg",
  15165. extra: 2720 / 2556,
  15166. bottom: 0.015
  15167. }
  15168. },
  15169. back: {
  15170. height: math.unit(6, "feet"),
  15171. weight: math.unit(150, "lb"),
  15172. name: "Back",
  15173. image: {
  15174. source: "./media/characters/pandora/back.svg",
  15175. extra: 2720 / 2556,
  15176. bottom: 0.01
  15177. }
  15178. },
  15179. beans: {
  15180. height: math.unit(6 / 8, "feet"),
  15181. name: "Beans",
  15182. image: {
  15183. source: "./media/characters/pandora/beans.svg"
  15184. }
  15185. },
  15186. skirt: {
  15187. height: math.unit(6, "feet"),
  15188. weight: math.unit(150, "lb"),
  15189. name: "Skirt",
  15190. image: {
  15191. source: "./media/characters/pandora/skirt.svg",
  15192. extra: 1622 / 1525,
  15193. bottom: 0.015
  15194. }
  15195. },
  15196. hoodie: {
  15197. height: math.unit(6, "feet"),
  15198. weight: math.unit(150, "lb"),
  15199. name: "Hoodie",
  15200. image: {
  15201. source: "./media/characters/pandora/hoodie.svg",
  15202. extra: 1622 / 1525,
  15203. bottom: 0.015
  15204. }
  15205. },
  15206. casual: {
  15207. height: math.unit(6, "feet"),
  15208. weight: math.unit(150, "lb"),
  15209. name: "Casual",
  15210. image: {
  15211. source: "./media/characters/pandora/casual.svg",
  15212. extra: 1622 / 1525,
  15213. bottom: 0.015
  15214. }
  15215. },
  15216. },
  15217. [
  15218. {
  15219. name: "Normal",
  15220. height: math.unit(6, "feet")
  15221. },
  15222. {
  15223. name: "Big Steppy",
  15224. height: math.unit(1, "km"),
  15225. default: true
  15226. },
  15227. ]
  15228. ))
  15229. characterMakers.push(() => makeCharacter(
  15230. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15231. {
  15232. side: {
  15233. height: math.unit(10, "feet"),
  15234. weight: math.unit(800, "kg"),
  15235. name: "Side",
  15236. image: {
  15237. source: "./media/characters/venio-darcony/side.svg",
  15238. extra: 1373 / 1003,
  15239. bottom: 0.037
  15240. }
  15241. },
  15242. front: {
  15243. height: math.unit(19, "feet"),
  15244. weight: math.unit(800, "kg"),
  15245. name: "Front",
  15246. image: {
  15247. source: "./media/characters/venio-darcony/front.svg"
  15248. }
  15249. },
  15250. back: {
  15251. height: math.unit(19, "feet"),
  15252. weight: math.unit(800, "kg"),
  15253. name: "Back",
  15254. image: {
  15255. source: "./media/characters/venio-darcony/back.svg"
  15256. }
  15257. },
  15258. sideNsfw: {
  15259. height: math.unit(10, "feet"),
  15260. weight: math.unit(800, "kg"),
  15261. name: "Side (NSFW)",
  15262. image: {
  15263. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15264. extra: 1373 / 1003,
  15265. bottom: 0.037
  15266. }
  15267. },
  15268. frontNsfw: {
  15269. height: math.unit(19, "feet"),
  15270. weight: math.unit(800, "kg"),
  15271. name: "Front (NSFW)",
  15272. image: {
  15273. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15274. }
  15275. },
  15276. backNsfw: {
  15277. height: math.unit(19, "feet"),
  15278. weight: math.unit(800, "kg"),
  15279. name: "Back (NSFW)",
  15280. image: {
  15281. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15282. }
  15283. },
  15284. sideArmored: {
  15285. height: math.unit(10, "feet"),
  15286. weight: math.unit(800, "kg"),
  15287. name: "Side (Armored)",
  15288. image: {
  15289. source: "./media/characters/venio-darcony/side-armored.svg",
  15290. extra: 1373 / 1003,
  15291. bottom: 0.037
  15292. }
  15293. },
  15294. frontArmored: {
  15295. height: math.unit(19, "feet"),
  15296. weight: math.unit(900, "kg"),
  15297. name: "Front (Armored)",
  15298. image: {
  15299. source: "./media/characters/venio-darcony/front-armored.svg"
  15300. }
  15301. },
  15302. backArmored: {
  15303. height: math.unit(19, "feet"),
  15304. weight: math.unit(900, "kg"),
  15305. name: "Back (Armored)",
  15306. image: {
  15307. source: "./media/characters/venio-darcony/back-armored.svg"
  15308. }
  15309. },
  15310. sword: {
  15311. height: math.unit(10, "feet"),
  15312. weight: math.unit(50, "lb"),
  15313. name: "Sword",
  15314. image: {
  15315. source: "./media/characters/venio-darcony/sword.svg"
  15316. }
  15317. },
  15318. },
  15319. [
  15320. {
  15321. name: "Normal",
  15322. height: math.unit(10, "feet")
  15323. },
  15324. {
  15325. name: "Macro",
  15326. height: math.unit(130, "feet"),
  15327. default: true
  15328. },
  15329. {
  15330. name: "Macro+",
  15331. height: math.unit(240, "feet")
  15332. },
  15333. ]
  15334. ))
  15335. characterMakers.push(() => makeCharacter(
  15336. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15337. {
  15338. front: {
  15339. height: math.unit(6, "feet"),
  15340. weight: math.unit(150, "lb"),
  15341. name: "Front",
  15342. image: {
  15343. source: "./media/characters/veski/front.svg",
  15344. extra: 1299 / 1225,
  15345. bottom: 0.04
  15346. }
  15347. },
  15348. back: {
  15349. height: math.unit(6, "feet"),
  15350. weight: math.unit(150, "lb"),
  15351. name: "Back",
  15352. image: {
  15353. source: "./media/characters/veski/back.svg",
  15354. extra: 1299 / 1225,
  15355. bottom: 0.008
  15356. }
  15357. },
  15358. maw: {
  15359. height: math.unit(1.5 * 1.21, "feet"),
  15360. name: "Maw",
  15361. image: {
  15362. source: "./media/characters/veski/maw.svg"
  15363. }
  15364. },
  15365. },
  15366. [
  15367. {
  15368. name: "Macro",
  15369. height: math.unit(2, "km"),
  15370. default: true
  15371. },
  15372. ]
  15373. ))
  15374. characterMakers.push(() => makeCharacter(
  15375. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15376. {
  15377. front: {
  15378. height: math.unit(5 + 7 / 12, "feet"),
  15379. name: "Front",
  15380. image: {
  15381. source: "./media/characters/isabelle/front.svg",
  15382. extra: 2130 / 1976,
  15383. bottom: 0.05
  15384. }
  15385. },
  15386. },
  15387. [
  15388. {
  15389. name: "Supermicro",
  15390. height: math.unit(10, "micrometers")
  15391. },
  15392. {
  15393. name: "Micro",
  15394. height: math.unit(1, "inch")
  15395. },
  15396. {
  15397. name: "Tiny",
  15398. height: math.unit(5, "inches")
  15399. },
  15400. {
  15401. name: "Standard",
  15402. height: math.unit(5 + 7 / 12, "inches")
  15403. },
  15404. {
  15405. name: "Macro",
  15406. height: math.unit(80, "meters"),
  15407. default: true
  15408. },
  15409. {
  15410. name: "Megamacro",
  15411. height: math.unit(250, "meters")
  15412. },
  15413. {
  15414. name: "Gigamacro",
  15415. height: math.unit(5, "km")
  15416. },
  15417. {
  15418. name: "Cosmic",
  15419. height: math.unit(2.5e6, "miles")
  15420. },
  15421. ]
  15422. ))
  15423. characterMakers.push(() => makeCharacter(
  15424. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15425. {
  15426. front: {
  15427. height: math.unit(6, "feet"),
  15428. weight: math.unit(150, "lb"),
  15429. name: "Front",
  15430. image: {
  15431. source: "./media/characters/hanzo/front.svg",
  15432. extra: 374 / 344,
  15433. bottom: 0.02
  15434. }
  15435. },
  15436. },
  15437. [
  15438. {
  15439. name: "Normal",
  15440. height: math.unit(8, "feet"),
  15441. default: true
  15442. },
  15443. ]
  15444. ))
  15445. characterMakers.push(() => makeCharacter(
  15446. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15447. {
  15448. front: {
  15449. height: math.unit(7, "feet"),
  15450. weight: math.unit(130, "lb"),
  15451. name: "Front",
  15452. image: {
  15453. source: "./media/characters/anna/front.svg",
  15454. extra: 169 / 145,
  15455. bottom: 0.06
  15456. }
  15457. },
  15458. full: {
  15459. height: math.unit(4.96, "feet"),
  15460. weight: math.unit(220, "lb"),
  15461. name: "Full",
  15462. image: {
  15463. source: "./media/characters/anna/full.svg",
  15464. extra: 138 / 114,
  15465. bottom: 0.15
  15466. }
  15467. },
  15468. tongue: {
  15469. height: math.unit(2.53, "feet"),
  15470. name: "Tongue",
  15471. image: {
  15472. source: "./media/characters/anna/tongue.svg"
  15473. }
  15474. },
  15475. },
  15476. [
  15477. {
  15478. name: "Normal",
  15479. height: math.unit(7, "feet"),
  15480. default: true
  15481. },
  15482. ]
  15483. ))
  15484. characterMakers.push(() => makeCharacter(
  15485. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15486. {
  15487. front: {
  15488. height: math.unit(7, "feet"),
  15489. weight: math.unit(150, "lb"),
  15490. name: "Front",
  15491. image: {
  15492. source: "./media/characters/ian-corvid/front.svg",
  15493. extra: 150 / 142,
  15494. bottom: 0.02
  15495. }
  15496. },
  15497. back: {
  15498. height: math.unit(7, "feet"),
  15499. weight: math.unit(150, "lb"),
  15500. name: "Back",
  15501. image: {
  15502. source: "./media/characters/ian-corvid/back.svg",
  15503. extra: 150 / 143,
  15504. bottom: 0.01
  15505. }
  15506. },
  15507. stomping: {
  15508. height: math.unit(7, "feet"),
  15509. weight: math.unit(150, "lb"),
  15510. name: "Stomping",
  15511. image: {
  15512. source: "./media/characters/ian-corvid/stomping.svg",
  15513. extra: 76 / 72
  15514. }
  15515. },
  15516. sitting: {
  15517. height: math.unit(7 / 1.8, "feet"),
  15518. weight: math.unit(150, "lb"),
  15519. name: "Sitting",
  15520. image: {
  15521. source: "./media/characters/ian-corvid/sitting.svg",
  15522. extra: 1400 / 1269,
  15523. bottom: 0.15
  15524. }
  15525. },
  15526. },
  15527. [
  15528. {
  15529. name: "Tiny Microw",
  15530. height: math.unit(1, "inch")
  15531. },
  15532. {
  15533. name: "Microw",
  15534. height: math.unit(6, "inches")
  15535. },
  15536. {
  15537. name: "Crow",
  15538. height: math.unit(7 + 1 / 12, "feet"),
  15539. default: true
  15540. },
  15541. {
  15542. name: "Macrow",
  15543. height: math.unit(176, "feet")
  15544. },
  15545. ]
  15546. ))
  15547. characterMakers.push(() => makeCharacter(
  15548. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15549. {
  15550. front: {
  15551. height: math.unit(5 + 7 / 12, "feet"),
  15552. weight: math.unit(147, "lb"),
  15553. name: "Front",
  15554. image: {
  15555. source: "./media/characters/natalie-kellon/front.svg",
  15556. extra: 1214 / 1141,
  15557. bottom: 0.02
  15558. }
  15559. },
  15560. },
  15561. [
  15562. {
  15563. name: "Micro",
  15564. height: math.unit(1 / 16, "inch")
  15565. },
  15566. {
  15567. name: "Tiny",
  15568. height: math.unit(4, "inches")
  15569. },
  15570. {
  15571. name: "Normal",
  15572. height: math.unit(5 + 7 / 12, "feet"),
  15573. default: true
  15574. },
  15575. {
  15576. name: "Amazon",
  15577. height: math.unit(12, "feet")
  15578. },
  15579. {
  15580. name: "Giantess",
  15581. height: math.unit(160, "meters")
  15582. },
  15583. {
  15584. name: "Titaness",
  15585. height: math.unit(800, "meters")
  15586. },
  15587. ]
  15588. ))
  15589. characterMakers.push(() => makeCharacter(
  15590. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15591. {
  15592. front: {
  15593. height: math.unit(6, "feet"),
  15594. weight: math.unit(150, "lb"),
  15595. name: "Front",
  15596. image: {
  15597. source: "./media/characters/alluria/front.svg",
  15598. extra: 806 / 738,
  15599. bottom: 0.01
  15600. }
  15601. },
  15602. side: {
  15603. height: math.unit(6, "feet"),
  15604. weight: math.unit(150, "lb"),
  15605. name: "Side",
  15606. image: {
  15607. source: "./media/characters/alluria/side.svg",
  15608. extra: 800 / 750,
  15609. }
  15610. },
  15611. back: {
  15612. height: math.unit(6, "feet"),
  15613. weight: math.unit(150, "lb"),
  15614. name: "Back",
  15615. image: {
  15616. source: "./media/characters/alluria/back.svg",
  15617. extra: 806 / 738,
  15618. }
  15619. },
  15620. frontMaid: {
  15621. height: math.unit(6, "feet"),
  15622. weight: math.unit(150, "lb"),
  15623. name: "Front (Maid)",
  15624. image: {
  15625. source: "./media/characters/alluria/front-maid.svg",
  15626. extra: 806 / 738,
  15627. bottom: 0.01
  15628. }
  15629. },
  15630. sideMaid: {
  15631. height: math.unit(6, "feet"),
  15632. weight: math.unit(150, "lb"),
  15633. name: "Side (Maid)",
  15634. image: {
  15635. source: "./media/characters/alluria/side-maid.svg",
  15636. extra: 800 / 750,
  15637. bottom: 0.005
  15638. }
  15639. },
  15640. backMaid: {
  15641. height: math.unit(6, "feet"),
  15642. weight: math.unit(150, "lb"),
  15643. name: "Back (Maid)",
  15644. image: {
  15645. source: "./media/characters/alluria/back-maid.svg",
  15646. extra: 806 / 738,
  15647. }
  15648. },
  15649. },
  15650. [
  15651. {
  15652. name: "Micro",
  15653. height: math.unit(6, "inches"),
  15654. default: true
  15655. },
  15656. ]
  15657. ))
  15658. characterMakers.push(() => makeCharacter(
  15659. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15660. {
  15661. front: {
  15662. height: math.unit(6, "feet"),
  15663. weight: math.unit(150, "lb"),
  15664. name: "Front",
  15665. image: {
  15666. source: "./media/characters/kyle/front.svg",
  15667. extra: 1069 / 962,
  15668. bottom: 77.228 / 1727.45
  15669. }
  15670. },
  15671. },
  15672. [
  15673. {
  15674. name: "Macro",
  15675. height: math.unit(150, "feet"),
  15676. default: true
  15677. },
  15678. ]
  15679. ))
  15680. characterMakers.push(() => makeCharacter(
  15681. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15682. {
  15683. front: {
  15684. height: math.unit(6, "feet"),
  15685. weight: math.unit(300, "lb"),
  15686. name: "Front",
  15687. image: {
  15688. source: "./media/characters/duncan/front.svg",
  15689. extra: 1650 / 1482,
  15690. bottom: 0.05
  15691. }
  15692. },
  15693. },
  15694. [
  15695. {
  15696. name: "Macro",
  15697. height: math.unit(100, "feet"),
  15698. default: true
  15699. },
  15700. ]
  15701. ))
  15702. characterMakers.push(() => makeCharacter(
  15703. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15704. {
  15705. front: {
  15706. height: math.unit(5 + 4 / 12, "feet"),
  15707. weight: math.unit(220, "lb"),
  15708. name: "Front",
  15709. image: {
  15710. source: "./media/characters/memory/front.svg",
  15711. extra: 3641 / 3545,
  15712. bottom: 0.03
  15713. }
  15714. },
  15715. back: {
  15716. height: math.unit(5 + 4 / 12, "feet"),
  15717. weight: math.unit(220, "lb"),
  15718. name: "Back",
  15719. image: {
  15720. source: "./media/characters/memory/back.svg",
  15721. extra: 3641 / 3545,
  15722. bottom: 0.025
  15723. }
  15724. },
  15725. frontSkirt: {
  15726. height: math.unit(5 + 4 / 12, "feet"),
  15727. weight: math.unit(220, "lb"),
  15728. name: "Front (Skirt)",
  15729. image: {
  15730. source: "./media/characters/memory/front-skirt.svg",
  15731. extra: 3641 / 3545,
  15732. bottom: 0.03
  15733. }
  15734. },
  15735. frontDress: {
  15736. height: math.unit(5 + 4 / 12, "feet"),
  15737. weight: math.unit(220, "lb"),
  15738. name: "Front (Dress)",
  15739. image: {
  15740. source: "./media/characters/memory/front-dress.svg",
  15741. extra: 3641 / 3545,
  15742. bottom: 0.03
  15743. }
  15744. },
  15745. },
  15746. [
  15747. {
  15748. name: "Micro",
  15749. height: math.unit(6, "inches"),
  15750. default: true
  15751. },
  15752. {
  15753. name: "Normal",
  15754. height: math.unit(5 + 4 / 12, "feet")
  15755. },
  15756. ]
  15757. ))
  15758. characterMakers.push(() => makeCharacter(
  15759. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15760. {
  15761. front: {
  15762. height: math.unit(4 + 11 / 12, "feet"),
  15763. weight: math.unit(100, "lb"),
  15764. name: "Front",
  15765. image: {
  15766. source: "./media/characters/luno/front.svg",
  15767. extra: 1535 / 1487,
  15768. bottom: 0.03
  15769. }
  15770. },
  15771. },
  15772. [
  15773. {
  15774. name: "Micro",
  15775. height: math.unit(3, "inches")
  15776. },
  15777. {
  15778. name: "Normal",
  15779. height: math.unit(4 + 11 / 12, "feet"),
  15780. default: true
  15781. },
  15782. {
  15783. name: "Macro",
  15784. height: math.unit(300, "feet")
  15785. },
  15786. {
  15787. name: "Megamacro",
  15788. height: math.unit(700, "miles")
  15789. },
  15790. ]
  15791. ))
  15792. characterMakers.push(() => makeCharacter(
  15793. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15794. {
  15795. front: {
  15796. height: math.unit(6 + 2 / 12, "feet"),
  15797. weight: math.unit(170, "lb"),
  15798. name: "Front",
  15799. image: {
  15800. source: "./media/characters/jamesy/front.svg",
  15801. extra: 440 / 382,
  15802. bottom: 0.005
  15803. }
  15804. },
  15805. },
  15806. [
  15807. {
  15808. name: "Micro",
  15809. height: math.unit(3, "inches")
  15810. },
  15811. {
  15812. name: "Normal",
  15813. height: math.unit(6 + 2 / 12, "feet"),
  15814. default: true
  15815. },
  15816. {
  15817. name: "Macro",
  15818. height: math.unit(300, "feet")
  15819. },
  15820. {
  15821. name: "Megamacro",
  15822. height: math.unit(700, "miles")
  15823. },
  15824. ]
  15825. ))
  15826. characterMakers.push(() => makeCharacter(
  15827. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15828. {
  15829. front: {
  15830. height: math.unit(6, "feet"),
  15831. weight: math.unit(160, "lb"),
  15832. name: "Front",
  15833. image: {
  15834. source: "./media/characters/mark/front.svg",
  15835. extra: 3300 / 3100,
  15836. bottom: 136.42 / 3440.47
  15837. }
  15838. },
  15839. },
  15840. [
  15841. {
  15842. name: "Macro",
  15843. height: math.unit(120, "meters")
  15844. },
  15845. {
  15846. name: "Bigger Macro",
  15847. height: math.unit(350, "meters")
  15848. },
  15849. {
  15850. name: "Megamacro",
  15851. height: math.unit(8, "km"),
  15852. default: true
  15853. },
  15854. {
  15855. name: "Continental",
  15856. height: math.unit(4550, "km")
  15857. },
  15858. {
  15859. name: "Planetary",
  15860. height: math.unit(65000, "km")
  15861. },
  15862. ]
  15863. ))
  15864. characterMakers.push(() => makeCharacter(
  15865. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15866. {
  15867. front: {
  15868. height: math.unit(6, "feet"),
  15869. weight: math.unit(400, "lb"),
  15870. name: "Front",
  15871. image: {
  15872. source: "./media/characters/mac/front.svg",
  15873. extra: 1048 / 987.7,
  15874. bottom: 60 / 1107.6,
  15875. }
  15876. },
  15877. },
  15878. [
  15879. {
  15880. name: "Macro",
  15881. height: math.unit(500, "feet"),
  15882. default: true
  15883. },
  15884. ]
  15885. ))
  15886. characterMakers.push(() => makeCharacter(
  15887. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15888. {
  15889. front: {
  15890. height: math.unit(5 + 2 / 12, "feet"),
  15891. weight: math.unit(190, "lb"),
  15892. name: "Front",
  15893. image: {
  15894. source: "./media/characters/bari/front.svg",
  15895. extra: 3156 / 2880,
  15896. bottom: 0.03
  15897. }
  15898. },
  15899. back: {
  15900. height: math.unit(5 + 2 / 12, "feet"),
  15901. weight: math.unit(190, "lb"),
  15902. name: "Back",
  15903. image: {
  15904. source: "./media/characters/bari/back.svg",
  15905. extra: 3260 / 2834,
  15906. bottom: 0.025
  15907. }
  15908. },
  15909. frontPlush: {
  15910. height: math.unit(5 + 2 / 12, "feet"),
  15911. weight: math.unit(190, "lb"),
  15912. name: "Front (Plush)",
  15913. image: {
  15914. source: "./media/characters/bari/front-plush.svg",
  15915. extra: 1112 / 1061,
  15916. bottom: 0.002
  15917. }
  15918. },
  15919. },
  15920. [
  15921. {
  15922. name: "Micro",
  15923. height: math.unit(3, "inches")
  15924. },
  15925. {
  15926. name: "Normal",
  15927. height: math.unit(5 + 2 / 12, "feet"),
  15928. default: true
  15929. },
  15930. {
  15931. name: "Macro",
  15932. height: math.unit(20, "feet")
  15933. },
  15934. ]
  15935. ))
  15936. characterMakers.push(() => makeCharacter(
  15937. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15938. {
  15939. front: {
  15940. height: math.unit(6 + 1 / 12, "feet"),
  15941. weight: math.unit(275, "lb"),
  15942. name: "Front",
  15943. image: {
  15944. source: "./media/characters/hunter-misha-raven/front.svg"
  15945. }
  15946. },
  15947. },
  15948. [
  15949. {
  15950. name: "Mortal",
  15951. height: math.unit(6 + 1 / 12, "feet")
  15952. },
  15953. {
  15954. name: "Divine",
  15955. height: math.unit(1.12134e34, "parsecs"),
  15956. default: true
  15957. },
  15958. ]
  15959. ))
  15960. characterMakers.push(() => makeCharacter(
  15961. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15962. {
  15963. front: {
  15964. height: math.unit(6 + 3 / 12, "feet"),
  15965. weight: math.unit(220, "lb"),
  15966. name: "Front",
  15967. image: {
  15968. source: "./media/characters/max-calore/front.svg",
  15969. extra: 1700 / 1648,
  15970. bottom: 0.01
  15971. }
  15972. },
  15973. back: {
  15974. height: math.unit(6 + 3 / 12, "feet"),
  15975. weight: math.unit(220, "lb"),
  15976. name: "Back",
  15977. image: {
  15978. source: "./media/characters/max-calore/back.svg",
  15979. extra: 1700 / 1648,
  15980. bottom: 0.01
  15981. }
  15982. },
  15983. },
  15984. [
  15985. {
  15986. name: "Normal",
  15987. height: math.unit(6 + 3 / 12, "feet"),
  15988. default: true
  15989. },
  15990. ]
  15991. ))
  15992. characterMakers.push(() => makeCharacter(
  15993. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15994. {
  15995. side: {
  15996. height: math.unit(2 + 8 / 12, "feet"),
  15997. weight: math.unit(99, "lb"),
  15998. name: "Side",
  15999. image: {
  16000. source: "./media/characters/aspen/side.svg",
  16001. extra: 152 / 138,
  16002. bottom: 0.032
  16003. }
  16004. },
  16005. },
  16006. [
  16007. {
  16008. name: "Normal",
  16009. height: math.unit(2 + 8 / 12, "feet"),
  16010. default: true
  16011. },
  16012. ]
  16013. ))
  16014. characterMakers.push(() => makeCharacter(
  16015. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16016. {
  16017. side: {
  16018. height: math.unit(3 + 2 / 12, "feet"),
  16019. weight: math.unit(224, "lb"),
  16020. name: "Side",
  16021. image: {
  16022. source: "./media/characters/sheila-feral-wolf/side.svg",
  16023. extra: 179 / 166,
  16024. bottom: 0.03
  16025. }
  16026. },
  16027. },
  16028. [
  16029. {
  16030. name: "Normal",
  16031. height: math.unit(3 + 2 / 12, "feet"),
  16032. default: true
  16033. },
  16034. ]
  16035. ))
  16036. characterMakers.push(() => makeCharacter(
  16037. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16038. {
  16039. side: {
  16040. height: math.unit(1 + 9 / 12, "feet"),
  16041. weight: math.unit(38, "lb"),
  16042. name: "Side",
  16043. image: {
  16044. source: "./media/characters/michelle/side.svg",
  16045. extra: 147 / 136.7,
  16046. bottom: 0.03
  16047. }
  16048. },
  16049. },
  16050. [
  16051. {
  16052. name: "Normal",
  16053. height: math.unit(1 + 9 / 12, "feet"),
  16054. default: true
  16055. },
  16056. ]
  16057. ))
  16058. characterMakers.push(() => makeCharacter(
  16059. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16060. {
  16061. front: {
  16062. height: math.unit(1 + 1 / 12, "feet"),
  16063. weight: math.unit(18, "lb"),
  16064. name: "Front",
  16065. image: {
  16066. source: "./media/characters/nino/front.svg"
  16067. }
  16068. },
  16069. },
  16070. [
  16071. {
  16072. name: "Normal",
  16073. height: math.unit(1 + 1 / 12, "feet"),
  16074. default: true
  16075. },
  16076. ]
  16077. ))
  16078. characterMakers.push(() => makeCharacter(
  16079. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16080. {
  16081. front: {
  16082. height: math.unit(1, "feet"),
  16083. weight: math.unit(16, "lb"),
  16084. name: "Front",
  16085. image: {
  16086. source: "./media/characters/viola/front.svg"
  16087. }
  16088. },
  16089. },
  16090. [
  16091. {
  16092. name: "Normal",
  16093. height: math.unit(1, "feet"),
  16094. default: true
  16095. },
  16096. ]
  16097. ))
  16098. characterMakers.push(() => makeCharacter(
  16099. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16100. {
  16101. front: {
  16102. height: math.unit(6 + 5 / 12, "feet"),
  16103. weight: math.unit(580, "lb"),
  16104. name: "Front",
  16105. image: {
  16106. source: "./media/characters/atlas/front.svg",
  16107. extra: 298.5 / 290,
  16108. bottom: 0.015
  16109. }
  16110. },
  16111. },
  16112. [
  16113. {
  16114. name: "Normal",
  16115. height: math.unit(6 + 5 / 12, "feet"),
  16116. default: true
  16117. },
  16118. ]
  16119. ))
  16120. characterMakers.push(() => makeCharacter(
  16121. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16122. {
  16123. side: {
  16124. height: math.unit(1 + 10 / 12, "feet"),
  16125. weight: math.unit(25, "lb"),
  16126. name: "Side",
  16127. image: {
  16128. source: "./media/characters/davy/side.svg",
  16129. extra: 200 / 170,
  16130. bottom: 0.01
  16131. }
  16132. },
  16133. },
  16134. [
  16135. {
  16136. name: "Normal",
  16137. height: math.unit(1 + 10 / 12, "feet"),
  16138. default: true
  16139. },
  16140. ]
  16141. ))
  16142. characterMakers.push(() => makeCharacter(
  16143. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16144. {
  16145. side: {
  16146. height: math.unit(4 + 8 / 12, "feet"),
  16147. weight: math.unit(166, "lb"),
  16148. name: "Side",
  16149. image: {
  16150. source: "./media/characters/fiona/side.svg",
  16151. extra: 232 / 220,
  16152. bottom: 0.03
  16153. }
  16154. },
  16155. },
  16156. [
  16157. {
  16158. name: "Normal",
  16159. height: math.unit(4 + 8 / 12, "feet"),
  16160. default: true
  16161. },
  16162. ]
  16163. ))
  16164. characterMakers.push(() => makeCharacter(
  16165. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16166. {
  16167. front: {
  16168. height: math.unit(2, "feet"),
  16169. weight: math.unit(62, "lb"),
  16170. name: "Front",
  16171. image: {
  16172. source: "./media/characters/lyla/front.svg",
  16173. bottom: 0.1
  16174. }
  16175. },
  16176. },
  16177. [
  16178. {
  16179. name: "Normal",
  16180. height: math.unit(2, "feet"),
  16181. default: true
  16182. },
  16183. ]
  16184. ))
  16185. characterMakers.push(() => makeCharacter(
  16186. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16187. {
  16188. side: {
  16189. height: math.unit(1.8, "feet"),
  16190. weight: math.unit(44, "lb"),
  16191. name: "Side",
  16192. image: {
  16193. source: "./media/characters/perseus/side.svg",
  16194. bottom: 0.21
  16195. }
  16196. },
  16197. },
  16198. [
  16199. {
  16200. name: "Normal",
  16201. height: math.unit(1.8, "feet"),
  16202. default: true
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16208. {
  16209. side: {
  16210. height: math.unit(4 + 2 / 12, "feet"),
  16211. weight: math.unit(20, "lb"),
  16212. name: "Side",
  16213. image: {
  16214. source: "./media/characters/remus/side.svg"
  16215. }
  16216. },
  16217. },
  16218. [
  16219. {
  16220. name: "Normal",
  16221. height: math.unit(4 + 2 / 12, "feet"),
  16222. default: true
  16223. },
  16224. ]
  16225. ))
  16226. characterMakers.push(() => makeCharacter(
  16227. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16228. {
  16229. front: {
  16230. height: math.unit(4 + 11 / 12, "feet"),
  16231. weight: math.unit(114, "lb"),
  16232. name: "Front",
  16233. image: {
  16234. source: "./media/characters/raf/front.svg",
  16235. bottom: 20.5 / 1863
  16236. }
  16237. },
  16238. side: {
  16239. height: math.unit(4 + 11 / 12, "feet"),
  16240. weight: math.unit(114, "lb"),
  16241. name: "Side",
  16242. image: {
  16243. source: "./media/characters/raf/side.svg",
  16244. bottom: 22 / 1822
  16245. }
  16246. },
  16247. },
  16248. [
  16249. {
  16250. name: "Micro",
  16251. height: math.unit(2, "inches")
  16252. },
  16253. {
  16254. name: "Normal",
  16255. height: math.unit(4 + 11 / 12, "feet"),
  16256. default: true
  16257. },
  16258. {
  16259. name: "Macro",
  16260. height: math.unit(70, "feet")
  16261. },
  16262. ]
  16263. ))
  16264. characterMakers.push(() => makeCharacter(
  16265. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16266. {
  16267. front: {
  16268. height: math.unit(1.5, "meters"),
  16269. weight: math.unit(68, "kg"),
  16270. name: "Front",
  16271. image: {
  16272. source: "./media/characters/liam-einarr/front.svg",
  16273. extra: 2822 / 2666
  16274. }
  16275. },
  16276. back: {
  16277. height: math.unit(1.5, "meters"),
  16278. weight: math.unit(68, "kg"),
  16279. name: "Back",
  16280. image: {
  16281. source: "./media/characters/liam-einarr/back.svg",
  16282. extra: 2822 / 2666,
  16283. bottom: 0.015
  16284. }
  16285. },
  16286. },
  16287. [
  16288. {
  16289. name: "Normal",
  16290. height: math.unit(1.5, "meters"),
  16291. default: true
  16292. },
  16293. {
  16294. name: "Macro",
  16295. height: math.unit(150, "meters")
  16296. },
  16297. {
  16298. name: "Megamacro",
  16299. height: math.unit(35, "km")
  16300. },
  16301. ]
  16302. ))
  16303. characterMakers.push(() => makeCharacter(
  16304. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16305. {
  16306. front: {
  16307. height: math.unit(6, "feet"),
  16308. weight: math.unit(75, "kg"),
  16309. name: "Front",
  16310. image: {
  16311. source: "./media/characters/linda/front.svg",
  16312. extra: 930 / 874,
  16313. bottom: 0.004
  16314. }
  16315. },
  16316. },
  16317. [
  16318. {
  16319. name: "Normal",
  16320. height: math.unit(6, "feet"),
  16321. default: true
  16322. },
  16323. ]
  16324. ))
  16325. characterMakers.push(() => makeCharacter(
  16326. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16327. {
  16328. front: {
  16329. height: math.unit(6 + 8 / 12, "feet"),
  16330. weight: math.unit(220, "lb"),
  16331. name: "Front",
  16332. image: {
  16333. source: "./media/characters/caylex/front.svg",
  16334. extra: 821 / 772,
  16335. bottom: 0.07
  16336. }
  16337. },
  16338. back: {
  16339. height: math.unit(6 + 8 / 12, "feet"),
  16340. weight: math.unit(220, "lb"),
  16341. name: "Back",
  16342. image: {
  16343. source: "./media/characters/caylex/back.svg",
  16344. extra: 821 / 772,
  16345. bottom: 0.022
  16346. }
  16347. },
  16348. hand: {
  16349. height: math.unit(1.25, "feet"),
  16350. name: "Hand",
  16351. image: {
  16352. source: "./media/characters/caylex/hand.svg"
  16353. }
  16354. },
  16355. foot: {
  16356. height: math.unit(1.6, "feet"),
  16357. name: "Foot",
  16358. image: {
  16359. source: "./media/characters/caylex/foot.svg"
  16360. }
  16361. },
  16362. armored: {
  16363. height: math.unit(6 + 8 / 12, "feet"),
  16364. weight: math.unit(250, "lb"),
  16365. name: "Armored",
  16366. image: {
  16367. source: "./media/characters/caylex/armored.svg",
  16368. extra: 1420 / 1310,
  16369. bottom: 0.045
  16370. }
  16371. },
  16372. },
  16373. [
  16374. {
  16375. name: "Normal",
  16376. height: math.unit(6 + 8 / 12, "feet"),
  16377. default: true
  16378. },
  16379. {
  16380. name: "Normal+",
  16381. height: math.unit(12, "feet")
  16382. },
  16383. ]
  16384. ))
  16385. characterMakers.push(() => makeCharacter(
  16386. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16387. {
  16388. front: {
  16389. height: math.unit(7 + 6 / 12, "feet"),
  16390. weight: math.unit(288, "lb"),
  16391. name: "Front",
  16392. image: {
  16393. source: "./media/characters/alana/front.svg",
  16394. extra: 679 / 653,
  16395. bottom: 22.5 / 701
  16396. }
  16397. },
  16398. },
  16399. [
  16400. {
  16401. name: "Normal",
  16402. height: math.unit(7 + 6 / 12, "feet")
  16403. },
  16404. {
  16405. name: "Large",
  16406. height: math.unit(50, "feet")
  16407. },
  16408. {
  16409. name: "Macro",
  16410. height: math.unit(100, "feet"),
  16411. default: true
  16412. },
  16413. {
  16414. name: "Macro+",
  16415. height: math.unit(200, "feet")
  16416. },
  16417. ]
  16418. ))
  16419. characterMakers.push(() => makeCharacter(
  16420. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16421. {
  16422. front: {
  16423. height: math.unit(6 + 1 / 12, "feet"),
  16424. weight: math.unit(210, "lb"),
  16425. name: "Front",
  16426. image: {
  16427. source: "./media/characters/hasani/front.svg",
  16428. extra: 244 / 232,
  16429. bottom: 0.01
  16430. }
  16431. },
  16432. back: {
  16433. height: math.unit(6 + 1 / 12, "feet"),
  16434. weight: math.unit(210, "lb"),
  16435. name: "Back",
  16436. image: {
  16437. source: "./media/characters/hasani/back.svg",
  16438. extra: 244 / 232,
  16439. bottom: 0.01
  16440. }
  16441. },
  16442. },
  16443. [
  16444. {
  16445. name: "Normal",
  16446. height: math.unit(6 + 1 / 12, "feet")
  16447. },
  16448. {
  16449. name: "Macro",
  16450. height: math.unit(175, "feet"),
  16451. default: true
  16452. },
  16453. ]
  16454. ))
  16455. characterMakers.push(() => makeCharacter(
  16456. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16457. {
  16458. front: {
  16459. height: math.unit(1.82, "meters"),
  16460. weight: math.unit(140, "lb"),
  16461. name: "Front",
  16462. image: {
  16463. source: "./media/characters/nita/front.svg",
  16464. extra: 2473 / 2363,
  16465. bottom: 0.01
  16466. }
  16467. },
  16468. },
  16469. [
  16470. {
  16471. name: "Normal",
  16472. height: math.unit(1.82, "m")
  16473. },
  16474. {
  16475. name: "Macro",
  16476. height: math.unit(300, "m")
  16477. },
  16478. {
  16479. name: "Mistake Canon",
  16480. height: math.unit(0.5, "miles"),
  16481. default: true
  16482. },
  16483. {
  16484. name: "Big Mistake",
  16485. height: math.unit(13, "miles")
  16486. },
  16487. {
  16488. name: "Playing God",
  16489. height: math.unit(2450, "miles")
  16490. },
  16491. ]
  16492. ))
  16493. characterMakers.push(() => makeCharacter(
  16494. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16495. {
  16496. front: {
  16497. height: math.unit(4, "feet"),
  16498. weight: math.unit(120, "lb"),
  16499. name: "Front",
  16500. image: {
  16501. source: "./media/characters/shiriko/front.svg",
  16502. extra: 195 / 188
  16503. }
  16504. },
  16505. },
  16506. [
  16507. {
  16508. name: "Normal",
  16509. height: math.unit(4, "feet"),
  16510. default: true
  16511. },
  16512. ]
  16513. ))
  16514. characterMakers.push(() => makeCharacter(
  16515. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16516. {
  16517. front: {
  16518. height: math.unit(6, "feet"),
  16519. name: "front",
  16520. image: {
  16521. source: "./media/characters/deja/front.svg",
  16522. extra: 926 / 840,
  16523. bottom: 0.07
  16524. }
  16525. },
  16526. },
  16527. [
  16528. {
  16529. name: "Planck Length",
  16530. height: math.unit(1.6e-35, "meters")
  16531. },
  16532. {
  16533. name: "Normal",
  16534. height: math.unit(30.48, "meters"),
  16535. default: true
  16536. },
  16537. {
  16538. name: "Universal",
  16539. height: math.unit(8.8e26, "meters")
  16540. },
  16541. ]
  16542. ))
  16543. characterMakers.push(() => makeCharacter(
  16544. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16545. {
  16546. side: {
  16547. height: math.unit(8, "feet"),
  16548. weight: math.unit(6300, "lb"),
  16549. name: "Side",
  16550. image: {
  16551. source: "./media/characters/anima/side.svg",
  16552. bottom: 0.035
  16553. }
  16554. },
  16555. },
  16556. [
  16557. {
  16558. name: "Normal",
  16559. height: math.unit(8, "feet"),
  16560. default: true
  16561. },
  16562. ]
  16563. ))
  16564. characterMakers.push(() => makeCharacter(
  16565. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16566. {
  16567. front: {
  16568. height: math.unit(8, "feet"),
  16569. weight: math.unit(350, "lb"),
  16570. name: "Front",
  16571. image: {
  16572. source: "./media/characters/bianca/front.svg",
  16573. extra: 234 / 225,
  16574. bottom: 0.03
  16575. }
  16576. },
  16577. },
  16578. [
  16579. {
  16580. name: "Normal",
  16581. height: math.unit(8, "feet"),
  16582. default: true
  16583. },
  16584. ]
  16585. ))
  16586. characterMakers.push(() => makeCharacter(
  16587. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16588. {
  16589. front: {
  16590. height: math.unit(6, "feet"),
  16591. weight: math.unit(150, "lb"),
  16592. name: "Front",
  16593. image: {
  16594. source: "./media/characters/adinia/front.svg",
  16595. extra: 1845 / 1672,
  16596. bottom: 0.02
  16597. }
  16598. },
  16599. back: {
  16600. height: math.unit(6, "feet"),
  16601. weight: math.unit(150, "lb"),
  16602. name: "Back",
  16603. image: {
  16604. source: "./media/characters/adinia/back.svg",
  16605. extra: 1845 / 1672,
  16606. bottom: 0.002
  16607. }
  16608. },
  16609. },
  16610. [
  16611. {
  16612. name: "Normal",
  16613. height: math.unit(11 + 5 / 12, "feet"),
  16614. default: true
  16615. },
  16616. ]
  16617. ))
  16618. characterMakers.push(() => makeCharacter(
  16619. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16620. {
  16621. front: {
  16622. height: math.unit(3, "meters"),
  16623. weight: math.unit(200, "kg"),
  16624. name: "Front",
  16625. image: {
  16626. source: "./media/characters/lykasa/front.svg",
  16627. extra: 1076 / 976,
  16628. bottom: 0.06
  16629. }
  16630. },
  16631. },
  16632. [
  16633. {
  16634. name: "Normal",
  16635. height: math.unit(3, "meters")
  16636. },
  16637. {
  16638. name: "Kaiju",
  16639. height: math.unit(120, "meters"),
  16640. default: true
  16641. },
  16642. {
  16643. name: "Mega Kaiju",
  16644. height: math.unit(240, "km")
  16645. },
  16646. {
  16647. name: "Giga Kaiju",
  16648. height: math.unit(400, "megameters")
  16649. },
  16650. {
  16651. name: "Tera Kaiju",
  16652. height: math.unit(800, "gigameters")
  16653. },
  16654. {
  16655. name: "Kaiju Dragon Goddess",
  16656. height: math.unit(26, "zettaparsecs")
  16657. },
  16658. ]
  16659. ))
  16660. characterMakers.push(() => makeCharacter(
  16661. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16662. {
  16663. side: {
  16664. height: math.unit(283 / 124 * 6, "feet"),
  16665. weight: math.unit(35000, "lb"),
  16666. name: "Side",
  16667. image: {
  16668. source: "./media/characters/malfaren/side.svg",
  16669. extra: 2500 / 1010,
  16670. bottom: 0.01
  16671. }
  16672. },
  16673. front: {
  16674. height: math.unit(22.36, "feet"),
  16675. weight: math.unit(35000, "lb"),
  16676. name: "Front",
  16677. image: {
  16678. source: "./media/characters/malfaren/front.svg",
  16679. extra: 1631 / 1476,
  16680. bottom: 0.01
  16681. }
  16682. },
  16683. maw: {
  16684. height: math.unit(6.9, "feet"),
  16685. name: "Maw",
  16686. image: {
  16687. source: "./media/characters/malfaren/maw.svg"
  16688. }
  16689. },
  16690. },
  16691. [
  16692. {
  16693. name: "Big",
  16694. height: math.unit(283 / 162 * 6, "feet"),
  16695. },
  16696. {
  16697. name: "Bigger",
  16698. height: math.unit(283 / 124 * 6, "feet")
  16699. },
  16700. {
  16701. name: "Massive",
  16702. height: math.unit(283 / 92 * 6, "feet"),
  16703. default: true
  16704. },
  16705. {
  16706. name: "👀💦",
  16707. height: math.unit(283 / 73 * 6, "feet"),
  16708. },
  16709. ]
  16710. ))
  16711. characterMakers.push(() => makeCharacter(
  16712. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16713. {
  16714. front: {
  16715. height: math.unit(1.7, "m"),
  16716. weight: math.unit(70, "kg"),
  16717. name: "Front",
  16718. image: {
  16719. source: "./media/characters/kernel/front.svg",
  16720. extra: 222 / 210,
  16721. bottom: 0.007
  16722. }
  16723. },
  16724. },
  16725. [
  16726. {
  16727. name: "Nano",
  16728. height: math.unit(17, "micrometers")
  16729. },
  16730. {
  16731. name: "Micro",
  16732. height: math.unit(1.7, "mm")
  16733. },
  16734. {
  16735. name: "Small",
  16736. height: math.unit(1.7, "cm")
  16737. },
  16738. {
  16739. name: "Normal",
  16740. height: math.unit(1.7, "m"),
  16741. default: true
  16742. },
  16743. ]
  16744. ))
  16745. characterMakers.push(() => makeCharacter(
  16746. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16747. {
  16748. front: {
  16749. height: math.unit(1.75, "meters"),
  16750. weight: math.unit(65, "kg"),
  16751. name: "Front",
  16752. image: {
  16753. source: "./media/characters/jayne-folest/front.svg",
  16754. extra: 2115 / 2007,
  16755. bottom: 0.02
  16756. }
  16757. },
  16758. back: {
  16759. height: math.unit(1.75, "meters"),
  16760. weight: math.unit(65, "kg"),
  16761. name: "Back",
  16762. image: {
  16763. source: "./media/characters/jayne-folest/back.svg",
  16764. extra: 2115 / 2007,
  16765. bottom: 0.005
  16766. }
  16767. },
  16768. frontClothed: {
  16769. height: math.unit(1.75, "meters"),
  16770. weight: math.unit(65, "kg"),
  16771. name: "Front (Clothed)",
  16772. image: {
  16773. source: "./media/characters/jayne-folest/front-clothed.svg",
  16774. extra: 2115 / 2007,
  16775. bottom: 0.035
  16776. }
  16777. },
  16778. hand: {
  16779. height: math.unit(1 / 1.260, "feet"),
  16780. name: "Hand",
  16781. image: {
  16782. source: "./media/characters/jayne-folest/hand.svg"
  16783. }
  16784. },
  16785. foot: {
  16786. height: math.unit(1 / 0.918, "feet"),
  16787. name: "Foot",
  16788. image: {
  16789. source: "./media/characters/jayne-folest/foot.svg"
  16790. }
  16791. },
  16792. },
  16793. [
  16794. {
  16795. name: "Micro",
  16796. height: math.unit(4, "cm")
  16797. },
  16798. {
  16799. name: "Normal",
  16800. height: math.unit(1.75, "meters")
  16801. },
  16802. {
  16803. name: "Macro",
  16804. height: math.unit(47.5, "meters"),
  16805. default: true
  16806. },
  16807. ]
  16808. ))
  16809. characterMakers.push(() => makeCharacter(
  16810. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16811. {
  16812. front: {
  16813. height: math.unit(180, "cm"),
  16814. weight: math.unit(70, "kg"),
  16815. name: "Front",
  16816. image: {
  16817. source: "./media/characters/algier/front.svg",
  16818. extra: 596 / 572,
  16819. bottom: 0.04
  16820. }
  16821. },
  16822. back: {
  16823. height: math.unit(180, "cm"),
  16824. weight: math.unit(70, "kg"),
  16825. name: "Back",
  16826. image: {
  16827. source: "./media/characters/algier/back.svg",
  16828. extra: 596 / 572,
  16829. bottom: 0.025
  16830. }
  16831. },
  16832. frontdressed: {
  16833. height: math.unit(180, "cm"),
  16834. weight: math.unit(150, "kg"),
  16835. name: "Front-dressed",
  16836. image: {
  16837. source: "./media/characters/algier/front-dressed.svg",
  16838. extra: 596 / 572,
  16839. bottom: 0.038
  16840. }
  16841. },
  16842. },
  16843. [
  16844. {
  16845. name: "Micro",
  16846. height: math.unit(5, "cm")
  16847. },
  16848. {
  16849. name: "Normal",
  16850. height: math.unit(180, "cm"),
  16851. default: true
  16852. },
  16853. {
  16854. name: "Macro",
  16855. height: math.unit(64, "m")
  16856. },
  16857. ]
  16858. ))
  16859. characterMakers.push(() => makeCharacter(
  16860. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16861. {
  16862. upright: {
  16863. height: math.unit(7, "feet"),
  16864. weight: math.unit(300, "lb"),
  16865. name: "Upright",
  16866. image: {
  16867. source: "./media/characters/pretzel/upright.svg",
  16868. extra: 534 / 522,
  16869. bottom: 0.065
  16870. }
  16871. },
  16872. sprawling: {
  16873. height: math.unit(3.75, "feet"),
  16874. weight: math.unit(300, "lb"),
  16875. name: "Sprawling",
  16876. image: {
  16877. source: "./media/characters/pretzel/sprawling.svg",
  16878. extra: 314 / 281,
  16879. bottom: 0.1
  16880. }
  16881. },
  16882. tongue: {
  16883. height: math.unit(2, "feet"),
  16884. name: "Tongue",
  16885. image: {
  16886. source: "./media/characters/pretzel/tongue.svg"
  16887. }
  16888. },
  16889. },
  16890. [
  16891. {
  16892. name: "Normal",
  16893. height: math.unit(7, "feet"),
  16894. default: true
  16895. },
  16896. {
  16897. name: "Oversized",
  16898. height: math.unit(15, "feet")
  16899. },
  16900. {
  16901. name: "Huge",
  16902. height: math.unit(30, "feet")
  16903. },
  16904. {
  16905. name: "Macro",
  16906. height: math.unit(250, "feet")
  16907. },
  16908. ]
  16909. ))
  16910. characterMakers.push(() => makeCharacter(
  16911. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16912. {
  16913. sideFront: {
  16914. height: math.unit(5 + 2 / 12, "feet"),
  16915. weight: math.unit(120, "lb"),
  16916. name: "Front Side",
  16917. image: {
  16918. source: "./media/characters/roxi/side-front.svg",
  16919. extra: 2924 / 2717,
  16920. bottom: 0.08
  16921. }
  16922. },
  16923. sideBack: {
  16924. height: math.unit(5 + 2 / 12, "feet"),
  16925. weight: math.unit(120, "lb"),
  16926. name: "Back Side",
  16927. image: {
  16928. source: "./media/characters/roxi/side-back.svg",
  16929. extra: 2904 / 2693,
  16930. bottom: 0.06
  16931. }
  16932. },
  16933. front: {
  16934. height: math.unit(5 + 2 / 12, "feet"),
  16935. weight: math.unit(120, "lb"),
  16936. name: "Front",
  16937. image: {
  16938. source: "./media/characters/roxi/front.svg",
  16939. extra: 2028 / 1907,
  16940. bottom: 0.01
  16941. }
  16942. },
  16943. frontAlt: {
  16944. height: math.unit(5 + 2 / 12, "feet"),
  16945. weight: math.unit(120, "lb"),
  16946. name: "Front (Alt)",
  16947. image: {
  16948. source: "./media/characters/roxi/front-alt.svg",
  16949. extra: 1828 / 1798,
  16950. bottom: 0.01
  16951. }
  16952. },
  16953. sitting: {
  16954. height: math.unit(2.8, "feet"),
  16955. weight: math.unit(120, "lb"),
  16956. name: "Sitting",
  16957. image: {
  16958. source: "./media/characters/roxi/sitting.svg",
  16959. extra: 2660 / 2462,
  16960. bottom: 0.1
  16961. }
  16962. },
  16963. },
  16964. [
  16965. {
  16966. name: "Normal",
  16967. height: math.unit(5 + 2 / 12, "feet"),
  16968. default: true
  16969. },
  16970. ]
  16971. ))
  16972. characterMakers.push(() => makeCharacter(
  16973. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16974. {
  16975. side: {
  16976. height: math.unit(55, "feet"),
  16977. weight: math.unit(153, "tons"),
  16978. name: "Side",
  16979. image: {
  16980. source: "./media/characters/shadow/side.svg",
  16981. extra: 701 / 628,
  16982. bottom: 0.02
  16983. }
  16984. },
  16985. flying: {
  16986. height: math.unit(145, "feet"),
  16987. weight: math.unit(153, "tons"),
  16988. name: "Flying",
  16989. image: {
  16990. source: "./media/characters/shadow/flying.svg"
  16991. }
  16992. },
  16993. },
  16994. [
  16995. {
  16996. name: "Normal",
  16997. height: math.unit(55, "feet"),
  16998. default: true
  16999. },
  17000. ]
  17001. ))
  17002. characterMakers.push(() => makeCharacter(
  17003. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17004. {
  17005. front: {
  17006. height: math.unit(6, "feet"),
  17007. weight: math.unit(200, "lb"),
  17008. name: "Front",
  17009. image: {
  17010. source: "./media/characters/marcie/front.svg",
  17011. extra: 960 / 876,
  17012. bottom: 58 / 1017.87
  17013. }
  17014. },
  17015. },
  17016. [
  17017. {
  17018. name: "Macro",
  17019. height: math.unit(1, "mile"),
  17020. default: true
  17021. },
  17022. ]
  17023. ))
  17024. characterMakers.push(() => makeCharacter(
  17025. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17026. {
  17027. front: {
  17028. height: math.unit(7, "feet"),
  17029. weight: math.unit(200, "lb"),
  17030. name: "Front",
  17031. image: {
  17032. source: "./media/characters/kachina/front.svg",
  17033. extra: 1290.68 / 1119,
  17034. bottom: 36.5 / 1327.18
  17035. }
  17036. },
  17037. },
  17038. [
  17039. {
  17040. name: "Normal",
  17041. height: math.unit(7, "feet"),
  17042. default: true
  17043. },
  17044. ]
  17045. ))
  17046. characterMakers.push(() => makeCharacter(
  17047. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17048. {
  17049. looking: {
  17050. height: math.unit(2, "meters"),
  17051. weight: math.unit(300, "kg"),
  17052. name: "Looking",
  17053. image: {
  17054. source: "./media/characters/kash/looking.svg",
  17055. extra: 474 / 344,
  17056. bottom: 0.03
  17057. }
  17058. },
  17059. side: {
  17060. height: math.unit(2, "meters"),
  17061. weight: math.unit(300, "kg"),
  17062. name: "Side",
  17063. image: {
  17064. source: "./media/characters/kash/side.svg",
  17065. extra: 302 / 251,
  17066. bottom: 0.03
  17067. }
  17068. },
  17069. front: {
  17070. height: math.unit(2, "meters"),
  17071. weight: math.unit(300, "kg"),
  17072. name: "Front",
  17073. image: {
  17074. source: "./media/characters/kash/front.svg",
  17075. extra: 495 / 360,
  17076. bottom: 0.015
  17077. }
  17078. },
  17079. },
  17080. [
  17081. {
  17082. name: "Normal",
  17083. height: math.unit(2, "meters"),
  17084. default: true
  17085. },
  17086. {
  17087. name: "Big",
  17088. height: math.unit(3, "meters")
  17089. },
  17090. {
  17091. name: "Large",
  17092. height: math.unit(5, "meters")
  17093. },
  17094. ]
  17095. ))
  17096. characterMakers.push(() => makeCharacter(
  17097. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17098. {
  17099. feeding: {
  17100. height: math.unit(6.7, "feet"),
  17101. weight: math.unit(350, "lb"),
  17102. name: "Feeding",
  17103. image: {
  17104. source: "./media/characters/lalim/feeding.svg",
  17105. }
  17106. },
  17107. },
  17108. [
  17109. {
  17110. name: "Normal",
  17111. height: math.unit(6.7, "feet"),
  17112. default: true
  17113. },
  17114. ]
  17115. ))
  17116. characterMakers.push(() => makeCharacter(
  17117. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17118. {
  17119. front: {
  17120. height: math.unit(9.5, "feet"),
  17121. weight: math.unit(600, "lb"),
  17122. name: "Front",
  17123. image: {
  17124. source: "./media/characters/de'vout/front.svg",
  17125. extra: 1443 / 1328,
  17126. bottom: 0.025
  17127. }
  17128. },
  17129. back: {
  17130. height: math.unit(9.5, "feet"),
  17131. weight: math.unit(600, "lb"),
  17132. name: "Back",
  17133. image: {
  17134. source: "./media/characters/de'vout/back.svg",
  17135. extra: 1443 / 1328
  17136. }
  17137. },
  17138. frontDressed: {
  17139. height: math.unit(9.5, "feet"),
  17140. weight: math.unit(600, "lb"),
  17141. name: "Front (Dressed",
  17142. image: {
  17143. source: "./media/characters/de'vout/front-dressed.svg",
  17144. extra: 1443 / 1328,
  17145. bottom: 0.025
  17146. }
  17147. },
  17148. backDressed: {
  17149. height: math.unit(9.5, "feet"),
  17150. weight: math.unit(600, "lb"),
  17151. name: "Back (Dressed",
  17152. image: {
  17153. source: "./media/characters/de'vout/back-dressed.svg",
  17154. extra: 1443 / 1328
  17155. }
  17156. },
  17157. },
  17158. [
  17159. {
  17160. name: "Normal",
  17161. height: math.unit(9.5, "feet"),
  17162. default: true
  17163. },
  17164. ]
  17165. ))
  17166. characterMakers.push(() => makeCharacter(
  17167. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17168. {
  17169. front: {
  17170. height: math.unit(8, "feet"),
  17171. weight: math.unit(225, "lb"),
  17172. name: "Front",
  17173. image: {
  17174. source: "./media/characters/talana/front.svg",
  17175. extra: 1410 / 1300,
  17176. bottom: 0.015
  17177. }
  17178. },
  17179. frontDressed: {
  17180. height: math.unit(8, "feet"),
  17181. weight: math.unit(225, "lb"),
  17182. name: "Front (Dressed",
  17183. image: {
  17184. source: "./media/characters/talana/front-dressed.svg",
  17185. extra: 1410 / 1300,
  17186. bottom: 0.015
  17187. }
  17188. },
  17189. },
  17190. [
  17191. {
  17192. name: "Normal",
  17193. height: math.unit(8, "feet"),
  17194. default: true
  17195. },
  17196. ]
  17197. ))
  17198. characterMakers.push(() => makeCharacter(
  17199. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17200. {
  17201. side: {
  17202. height: math.unit(7.2, "feet"),
  17203. weight: math.unit(150, "lb"),
  17204. name: "Side",
  17205. image: {
  17206. source: "./media/characters/xeauvok/side.svg",
  17207. extra: 1975 / 1523,
  17208. bottom: 0.07
  17209. }
  17210. },
  17211. },
  17212. [
  17213. {
  17214. name: "Normal",
  17215. height: math.unit(7.2, "feet"),
  17216. default: true
  17217. },
  17218. ]
  17219. ))
  17220. characterMakers.push(() => makeCharacter(
  17221. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17222. {
  17223. side: {
  17224. height: math.unit(10, "feet"),
  17225. weight: math.unit(900, "kg"),
  17226. name: "Side",
  17227. image: {
  17228. source: "./media/characters/zara/side.svg",
  17229. extra: 504 / 498
  17230. }
  17231. },
  17232. },
  17233. [
  17234. {
  17235. name: "Normal",
  17236. height: math.unit(10, "feet"),
  17237. default: true
  17238. },
  17239. ]
  17240. ))
  17241. characterMakers.push(() => makeCharacter(
  17242. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17243. {
  17244. side: {
  17245. height: math.unit(6, "feet"),
  17246. weight: math.unit(150, "lb"),
  17247. name: "Side",
  17248. image: {
  17249. source: "./media/characters/richard-dragon/side.svg",
  17250. extra: 845 / 340,
  17251. bottom: 0.017
  17252. }
  17253. },
  17254. maw: {
  17255. height: math.unit(2.97, "feet"),
  17256. name: "Maw",
  17257. image: {
  17258. source: "./media/characters/richard-dragon/maw.svg"
  17259. }
  17260. },
  17261. },
  17262. [
  17263. ]
  17264. ))
  17265. characterMakers.push(() => makeCharacter(
  17266. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17267. {
  17268. front: {
  17269. height: math.unit(4, "feet"),
  17270. weight: math.unit(100, "lb"),
  17271. name: "Front",
  17272. image: {
  17273. source: "./media/characters/richard-smeargle/front.svg",
  17274. extra: 2952 / 2820,
  17275. bottom: 0.028
  17276. }
  17277. },
  17278. },
  17279. [
  17280. {
  17281. name: "Normal",
  17282. height: math.unit(4, "feet"),
  17283. default: true
  17284. },
  17285. {
  17286. name: "Dynamax",
  17287. height: math.unit(20, "meters")
  17288. },
  17289. ]
  17290. ))
  17291. characterMakers.push(() => makeCharacter(
  17292. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17293. {
  17294. front: {
  17295. height: math.unit(6, "feet"),
  17296. weight: math.unit(110, "lb"),
  17297. name: "Front",
  17298. image: {
  17299. source: "./media/characters/klay/front.svg",
  17300. extra: 962 / 883,
  17301. bottom: 0.04
  17302. }
  17303. },
  17304. back: {
  17305. height: math.unit(6, "feet"),
  17306. weight: math.unit(110, "lb"),
  17307. name: "Back",
  17308. image: {
  17309. source: "./media/characters/klay/back.svg",
  17310. extra: 962 / 883
  17311. }
  17312. },
  17313. beans: {
  17314. height: math.unit(1.15, "feet"),
  17315. name: "Beans",
  17316. image: {
  17317. source: "./media/characters/klay/beans.svg"
  17318. }
  17319. },
  17320. },
  17321. [
  17322. {
  17323. name: "Micro",
  17324. height: math.unit(6, "inches")
  17325. },
  17326. {
  17327. name: "Mini",
  17328. height: math.unit(3, "feet")
  17329. },
  17330. {
  17331. name: "Normal",
  17332. height: math.unit(6, "feet"),
  17333. default: true
  17334. },
  17335. {
  17336. name: "Big",
  17337. height: math.unit(25, "feet")
  17338. },
  17339. {
  17340. name: "Macro",
  17341. height: math.unit(100, "feet")
  17342. },
  17343. {
  17344. name: "Megamacro",
  17345. height: math.unit(400, "feet")
  17346. },
  17347. ]
  17348. ))
  17349. characterMakers.push(() => makeCharacter(
  17350. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17351. {
  17352. front: {
  17353. height: math.unit(6, "feet"),
  17354. weight: math.unit(160, "lb"),
  17355. name: "Front",
  17356. image: {
  17357. source: "./media/characters/marcus/front.svg",
  17358. extra: 734 / 676,
  17359. bottom: 0.03
  17360. }
  17361. },
  17362. },
  17363. [
  17364. {
  17365. name: "Little",
  17366. height: math.unit(6, "feet")
  17367. },
  17368. {
  17369. name: "Normal",
  17370. height: math.unit(110, "feet"),
  17371. default: true
  17372. },
  17373. {
  17374. name: "Macro",
  17375. height: math.unit(250, "feet")
  17376. },
  17377. {
  17378. name: "Megamacro",
  17379. height: math.unit(1000, "feet")
  17380. },
  17381. ]
  17382. ))
  17383. characterMakers.push(() => makeCharacter(
  17384. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17385. {
  17386. front: {
  17387. height: math.unit(7, "feet"),
  17388. weight: math.unit(275, "lb"),
  17389. name: "Front",
  17390. image: {
  17391. source: "./media/characters/claude-delroute/front.svg",
  17392. extra: 230 / 214,
  17393. bottom: 0.007
  17394. }
  17395. },
  17396. side: {
  17397. height: math.unit(7, "feet"),
  17398. weight: math.unit(275, "lb"),
  17399. name: "Side",
  17400. image: {
  17401. source: "./media/characters/claude-delroute/side.svg",
  17402. extra: 222 / 214,
  17403. bottom: 0.01
  17404. }
  17405. },
  17406. back: {
  17407. height: math.unit(7, "feet"),
  17408. weight: math.unit(275, "lb"),
  17409. name: "Back",
  17410. image: {
  17411. source: "./media/characters/claude-delroute/back.svg",
  17412. extra: 230 / 214,
  17413. bottom: 0.015
  17414. }
  17415. },
  17416. maw: {
  17417. height: math.unit(0.6407, "meters"),
  17418. name: "Maw",
  17419. image: {
  17420. source: "./media/characters/claude-delroute/maw.svg"
  17421. }
  17422. },
  17423. },
  17424. [
  17425. {
  17426. name: "Normal",
  17427. height: math.unit(7, "feet"),
  17428. default: true
  17429. },
  17430. {
  17431. name: "Lorge",
  17432. height: math.unit(20, "feet")
  17433. },
  17434. ]
  17435. ))
  17436. characterMakers.push(() => makeCharacter(
  17437. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17438. {
  17439. front: {
  17440. height: math.unit(8 + 4 / 12, "feet"),
  17441. weight: math.unit(600, "lb"),
  17442. name: "Front",
  17443. image: {
  17444. source: "./media/characters/dragonien/front.svg",
  17445. extra: 100 / 94,
  17446. bottom: 3.3 / 103.3445
  17447. }
  17448. },
  17449. back: {
  17450. height: math.unit(8 + 4 / 12, "feet"),
  17451. weight: math.unit(600, "lb"),
  17452. name: "Back",
  17453. image: {
  17454. source: "./media/characters/dragonien/back.svg",
  17455. extra: 776 / 746,
  17456. bottom: 6.4 / 782.0616
  17457. }
  17458. },
  17459. foot: {
  17460. height: math.unit(1.54, "feet"),
  17461. name: "Foot",
  17462. image: {
  17463. source: "./media/characters/dragonien/foot.svg",
  17464. }
  17465. },
  17466. },
  17467. [
  17468. {
  17469. name: "Normal",
  17470. height: math.unit(8 + 4 / 12, "feet"),
  17471. default: true
  17472. },
  17473. {
  17474. name: "Macro",
  17475. height: math.unit(200, "feet")
  17476. },
  17477. {
  17478. name: "Megamacro",
  17479. height: math.unit(1, "mile")
  17480. },
  17481. {
  17482. name: "Gigamacro",
  17483. height: math.unit(1000, "miles")
  17484. },
  17485. ]
  17486. ))
  17487. characterMakers.push(() => makeCharacter(
  17488. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17489. {
  17490. front: {
  17491. height: math.unit(5 + 2 / 12, "feet"),
  17492. weight: math.unit(110, "lb"),
  17493. name: "Front",
  17494. image: {
  17495. source: "./media/characters/desta/front.svg",
  17496. extra: 767 / 726,
  17497. bottom: 11.7 / 779
  17498. }
  17499. },
  17500. back: {
  17501. height: math.unit(5 + 2 / 12, "feet"),
  17502. weight: math.unit(110, "lb"),
  17503. name: "Back",
  17504. image: {
  17505. source: "./media/characters/desta/back.svg",
  17506. extra: 777 / 728,
  17507. bottom: 6 / 784
  17508. }
  17509. },
  17510. frontAlt: {
  17511. height: math.unit(5 + 2 / 12, "feet"),
  17512. weight: math.unit(110, "lb"),
  17513. name: "Front",
  17514. image: {
  17515. source: "./media/characters/desta/front-alt.svg",
  17516. extra: 1482 / 1417
  17517. }
  17518. },
  17519. side: {
  17520. height: math.unit(5 + 2 / 12, "feet"),
  17521. weight: math.unit(110, "lb"),
  17522. name: "Side",
  17523. image: {
  17524. source: "./media/characters/desta/side.svg",
  17525. extra: 2579 / 2491,
  17526. bottom: 0.053
  17527. }
  17528. },
  17529. },
  17530. [
  17531. {
  17532. name: "Micro",
  17533. height: math.unit(6, "inches")
  17534. },
  17535. {
  17536. name: "Normal",
  17537. height: math.unit(5 + 2 / 12, "feet"),
  17538. default: true
  17539. },
  17540. {
  17541. name: "Macro",
  17542. height: math.unit(62, "feet")
  17543. },
  17544. {
  17545. name: "Megamacro",
  17546. height: math.unit(1800, "feet")
  17547. },
  17548. ]
  17549. ))
  17550. characterMakers.push(() => makeCharacter(
  17551. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17552. {
  17553. front: {
  17554. height: math.unit(10, "feet"),
  17555. weight: math.unit(700, "lb"),
  17556. name: "Front",
  17557. image: {
  17558. source: "./media/characters/storm-alystar/front.svg",
  17559. extra: 2112 / 1898,
  17560. bottom: 0.034
  17561. }
  17562. },
  17563. },
  17564. [
  17565. {
  17566. name: "Micro",
  17567. height: math.unit(3.5, "inches")
  17568. },
  17569. {
  17570. name: "Normal",
  17571. height: math.unit(10, "feet"),
  17572. default: true
  17573. },
  17574. {
  17575. name: "Macro",
  17576. height: math.unit(400, "feet")
  17577. },
  17578. {
  17579. name: "Deific",
  17580. height: math.unit(60, "miles")
  17581. },
  17582. ]
  17583. ))
  17584. characterMakers.push(() => makeCharacter(
  17585. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17586. {
  17587. front: {
  17588. height: math.unit(2.35, "meters"),
  17589. weight: math.unit(119, "kg"),
  17590. name: "Front",
  17591. image: {
  17592. source: "./media/characters/ilia/front.svg",
  17593. extra: 1285 / 1255,
  17594. bottom: 0.06
  17595. }
  17596. },
  17597. },
  17598. [
  17599. {
  17600. name: "Normal",
  17601. height: math.unit(2.35, "meters")
  17602. },
  17603. {
  17604. name: "Macro",
  17605. height: math.unit(140, "meters"),
  17606. default: true
  17607. },
  17608. {
  17609. name: "Megamacro",
  17610. height: math.unit(100, "miles")
  17611. },
  17612. ]
  17613. ))
  17614. characterMakers.push(() => makeCharacter(
  17615. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17616. {
  17617. front: {
  17618. height: math.unit(6 + 5 / 12, "feet"),
  17619. weight: math.unit(190, "lb"),
  17620. name: "Front",
  17621. image: {
  17622. source: "./media/characters/kingdead/front.svg",
  17623. extra: 1228 / 1177
  17624. }
  17625. },
  17626. },
  17627. [
  17628. {
  17629. name: "Micro",
  17630. height: math.unit(7, "inches")
  17631. },
  17632. {
  17633. name: "Normal",
  17634. height: math.unit(6 + 5 / 12, "feet")
  17635. },
  17636. {
  17637. name: "Macro",
  17638. height: math.unit(150, "feet"),
  17639. default: true
  17640. },
  17641. {
  17642. name: "Megamacro",
  17643. height: math.unit(200, "miles")
  17644. },
  17645. ]
  17646. ))
  17647. characterMakers.push(() => makeCharacter(
  17648. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17649. {
  17650. front: {
  17651. height: math.unit(8, "feet"),
  17652. weight: math.unit(600, "lb"),
  17653. name: "Front",
  17654. image: {
  17655. source: "./media/characters/kyrehx/front.svg",
  17656. extra: 1195 / 1095,
  17657. bottom: 0.034
  17658. }
  17659. },
  17660. },
  17661. [
  17662. {
  17663. name: "Micro",
  17664. height: math.unit(2, "inches")
  17665. },
  17666. {
  17667. name: "Normal",
  17668. height: math.unit(8, "feet"),
  17669. default: true
  17670. },
  17671. {
  17672. name: "Macro",
  17673. height: math.unit(255, "feet")
  17674. },
  17675. ]
  17676. ))
  17677. characterMakers.push(() => makeCharacter(
  17678. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17679. {
  17680. front: {
  17681. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17682. weight: math.unit(184, "lb"),
  17683. name: "Front",
  17684. image: {
  17685. source: "./media/characters/xang/front.svg",
  17686. extra: 845 / 755
  17687. }
  17688. },
  17689. },
  17690. [
  17691. {
  17692. name: "Normal",
  17693. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17694. default: true
  17695. },
  17696. {
  17697. name: "Macro",
  17698. height: math.unit(0.935 * 146, "feet")
  17699. },
  17700. {
  17701. name: "Megamacro",
  17702. height: math.unit(0.935 * 3, "miles")
  17703. },
  17704. ]
  17705. ))
  17706. characterMakers.push(() => makeCharacter(
  17707. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17708. {
  17709. frontDressed: {
  17710. height: math.unit(5 + 7 / 12, "feet"),
  17711. weight: math.unit(140, "lb"),
  17712. name: "Front (Dressed)",
  17713. image: {
  17714. source: "./media/characters/doc-weardno/front-dressed.svg",
  17715. extra: 263 / 234
  17716. }
  17717. },
  17718. backDressed: {
  17719. height: math.unit(5 + 7 / 12, "feet"),
  17720. weight: math.unit(140, "lb"),
  17721. name: "Back (Dressed)",
  17722. image: {
  17723. source: "./media/characters/doc-weardno/back-dressed.svg",
  17724. extra: 266 / 238
  17725. }
  17726. },
  17727. front: {
  17728. height: math.unit(5 + 7 / 12, "feet"),
  17729. weight: math.unit(140, "lb"),
  17730. name: "Front",
  17731. image: {
  17732. source: "./media/characters/doc-weardno/front.svg",
  17733. extra: 254 / 233
  17734. }
  17735. },
  17736. },
  17737. [
  17738. {
  17739. name: "Micro",
  17740. height: math.unit(3, "inches")
  17741. },
  17742. {
  17743. name: "Normal",
  17744. height: math.unit(5 + 7 / 12, "feet"),
  17745. default: true
  17746. },
  17747. {
  17748. name: "Macro",
  17749. height: math.unit(25, "feet")
  17750. },
  17751. {
  17752. name: "Megamacro",
  17753. height: math.unit(2, "miles")
  17754. },
  17755. ]
  17756. ))
  17757. characterMakers.push(() => makeCharacter(
  17758. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17759. {
  17760. front: {
  17761. height: math.unit(6 + 2 / 12, "feet"),
  17762. weight: math.unit(153, "lb"),
  17763. name: "Front",
  17764. image: {
  17765. source: "./media/characters/seth-whilst/front.svg",
  17766. bottom: 0.07
  17767. }
  17768. },
  17769. },
  17770. [
  17771. {
  17772. name: "Micro",
  17773. height: math.unit(5, "inches")
  17774. },
  17775. {
  17776. name: "Normal",
  17777. height: math.unit(6 + 2 / 12, "feet"),
  17778. default: true
  17779. },
  17780. ]
  17781. ))
  17782. characterMakers.push(() => makeCharacter(
  17783. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17784. {
  17785. front: {
  17786. height: math.unit(3, "inches"),
  17787. weight: math.unit(8, "grams"),
  17788. name: "Front",
  17789. image: {
  17790. source: "./media/characters/pocket-jabari/front.svg",
  17791. extra: 1024 / 974,
  17792. bottom: 0.039
  17793. }
  17794. },
  17795. },
  17796. [
  17797. {
  17798. name: "Minimicro",
  17799. height: math.unit(8, "mm")
  17800. },
  17801. {
  17802. name: "Micro",
  17803. height: math.unit(3, "inches"),
  17804. default: true
  17805. },
  17806. {
  17807. name: "Normal",
  17808. height: math.unit(3, "feet")
  17809. },
  17810. ]
  17811. ))
  17812. characterMakers.push(() => makeCharacter(
  17813. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17814. {
  17815. front: {
  17816. height: math.unit(15, "feet"),
  17817. weight: math.unit(3280, "lb"),
  17818. name: "Front",
  17819. image: {
  17820. source: "./media/characters/sapphy/front.svg",
  17821. extra: 671 / 577,
  17822. bottom: 0.085
  17823. }
  17824. },
  17825. back: {
  17826. height: math.unit(15, "feet"),
  17827. weight: math.unit(3280, "lb"),
  17828. name: "Back",
  17829. image: {
  17830. source: "./media/characters/sapphy/back.svg",
  17831. extra: 631 / 607,
  17832. bottom: 0.045
  17833. }
  17834. },
  17835. },
  17836. [
  17837. {
  17838. name: "Normal",
  17839. height: math.unit(15, "feet")
  17840. },
  17841. {
  17842. name: "Casual Macro",
  17843. height: math.unit(120, "feet")
  17844. },
  17845. {
  17846. name: "Macro",
  17847. height: math.unit(2150, "feet"),
  17848. default: true
  17849. },
  17850. {
  17851. name: "Megamacro",
  17852. height: math.unit(8, "miles")
  17853. },
  17854. {
  17855. name: "Galaxy Mom",
  17856. height: math.unit(6, "megalightyears")
  17857. },
  17858. ]
  17859. ))
  17860. characterMakers.push(() => makeCharacter(
  17861. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17862. {
  17863. front: {
  17864. height: math.unit(6, "feet"),
  17865. weight: math.unit(170, "lb"),
  17866. name: "Front",
  17867. image: {
  17868. source: "./media/characters/kiro/front.svg",
  17869. extra: 1064 / 1012,
  17870. bottom: 0.052
  17871. }
  17872. },
  17873. },
  17874. [
  17875. {
  17876. name: "Micro",
  17877. height: math.unit(6, "inches")
  17878. },
  17879. {
  17880. name: "Normal",
  17881. height: math.unit(6, "feet"),
  17882. default: true
  17883. },
  17884. {
  17885. name: "Macro",
  17886. height: math.unit(72, "feet")
  17887. },
  17888. ]
  17889. ))
  17890. characterMakers.push(() => makeCharacter(
  17891. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17892. {
  17893. front: {
  17894. height: math.unit(5 + 9 / 12, "feet"),
  17895. weight: math.unit(175, "lb"),
  17896. name: "Front",
  17897. image: {
  17898. source: "./media/characters/irishfox/front.svg",
  17899. extra: 1912 / 1680,
  17900. bottom: 0.02
  17901. }
  17902. },
  17903. },
  17904. [
  17905. {
  17906. name: "Nano",
  17907. height: math.unit(1, "mm")
  17908. },
  17909. {
  17910. name: "Micro",
  17911. height: math.unit(2, "inches")
  17912. },
  17913. {
  17914. name: "Normal",
  17915. height: math.unit(5 + 9 / 12, "feet"),
  17916. default: true
  17917. },
  17918. {
  17919. name: "Macro",
  17920. height: math.unit(45, "feet")
  17921. },
  17922. ]
  17923. ))
  17924. characterMakers.push(() => makeCharacter(
  17925. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17926. {
  17927. front: {
  17928. height: math.unit(6 + 1 / 12, "feet"),
  17929. weight: math.unit(150, "lb"),
  17930. name: "Front",
  17931. image: {
  17932. source: "./media/characters/aronai-sieyes/front.svg",
  17933. extra: 1556 / 1480,
  17934. bottom: 0.015
  17935. }
  17936. },
  17937. side: {
  17938. height: math.unit(6 + 1 / 12, "feet"),
  17939. weight: math.unit(150, "lb"),
  17940. name: "Side",
  17941. image: {
  17942. source: "./media/characters/aronai-sieyes/side.svg",
  17943. extra: 1433 / 1390,
  17944. bottom: 0.0393
  17945. }
  17946. },
  17947. back: {
  17948. height: math.unit(6 + 1 / 12, "feet"),
  17949. weight: math.unit(150, "lb"),
  17950. name: "Back",
  17951. image: {
  17952. source: "./media/characters/aronai-sieyes/back.svg",
  17953. extra: 1544 / 1494,
  17954. bottom: 0.02
  17955. }
  17956. },
  17957. frontClothed: {
  17958. height: math.unit(6 + 1 / 12, "feet"),
  17959. weight: math.unit(150, "lb"),
  17960. name: "Front (Clothed)",
  17961. image: {
  17962. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17963. extra: 1582 / 1527
  17964. }
  17965. },
  17966. feral: {
  17967. height: math.unit(18, "feet"),
  17968. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17969. name: "Feral",
  17970. image: {
  17971. source: "./media/characters/aronai-sieyes/feral.svg",
  17972. extra: 1530 / 1240,
  17973. bottom: 0.035
  17974. }
  17975. },
  17976. },
  17977. [
  17978. {
  17979. name: "Micro",
  17980. height: math.unit(2, "inches")
  17981. },
  17982. {
  17983. name: "Normal",
  17984. height: math.unit(6 + 1 / 12, "feet"),
  17985. default: true
  17986. }
  17987. ]
  17988. ))
  17989. characterMakers.push(() => makeCharacter(
  17990. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17991. {
  17992. front: {
  17993. height: math.unit(12, "feet"),
  17994. weight: math.unit(410, "kg"),
  17995. name: "Front",
  17996. image: {
  17997. source: "./media/characters/xuna/front.svg",
  17998. extra: 2184 / 1980
  17999. }
  18000. },
  18001. side: {
  18002. height: math.unit(12, "feet"),
  18003. weight: math.unit(410, "kg"),
  18004. name: "Side",
  18005. image: {
  18006. source: "./media/characters/xuna/side.svg",
  18007. extra: 2184 / 1980
  18008. }
  18009. },
  18010. back: {
  18011. height: math.unit(12, "feet"),
  18012. weight: math.unit(410, "kg"),
  18013. name: "Back",
  18014. image: {
  18015. source: "./media/characters/xuna/back.svg",
  18016. extra: 2184 / 1980
  18017. }
  18018. },
  18019. },
  18020. [
  18021. {
  18022. name: "Nano glow",
  18023. height: math.unit(10, "nm")
  18024. },
  18025. {
  18026. name: "Micro floof",
  18027. height: math.unit(0.3, "m")
  18028. },
  18029. {
  18030. name: "Huggable softy boi",
  18031. height: math.unit(3.6576, "m"),
  18032. default: true
  18033. },
  18034. {
  18035. name: "Admirable floof",
  18036. height: math.unit(80, "meters")
  18037. },
  18038. {
  18039. name: "Gentle macro",
  18040. height: math.unit(300, "meters")
  18041. },
  18042. {
  18043. name: "Very careful floof",
  18044. height: math.unit(3200, "meters")
  18045. },
  18046. {
  18047. name: "The mega floof",
  18048. height: math.unit(36000, "meters")
  18049. },
  18050. {
  18051. name: "Giga-fur-Wicker",
  18052. height: math.unit(4800000, "meters")
  18053. },
  18054. {
  18055. name: "Licky world",
  18056. height: math.unit(20000000, "meters")
  18057. },
  18058. {
  18059. name: "Floofy cyan sun",
  18060. height: math.unit(1500000000, "meters")
  18061. },
  18062. {
  18063. name: "Milky Wicker",
  18064. height: math.unit(1000000000000000000000, "meters")
  18065. },
  18066. {
  18067. name: "The observing Wicker",
  18068. height: math.unit(999999999999999999999999999, "meters")
  18069. },
  18070. ]
  18071. ))
  18072. characterMakers.push(() => makeCharacter(
  18073. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18074. {
  18075. front: {
  18076. height: math.unit(5 + 9 / 12, "feet"),
  18077. weight: math.unit(150, "lb"),
  18078. name: "Front",
  18079. image: {
  18080. source: "./media/characters/arokha-sieyes/front.svg",
  18081. extra: 1425 / 1284,
  18082. bottom: 0.05
  18083. }
  18084. },
  18085. },
  18086. [
  18087. {
  18088. name: "Normal",
  18089. height: math.unit(5 + 9 / 12, "feet")
  18090. },
  18091. {
  18092. name: "Macro",
  18093. height: math.unit(30, "meters"),
  18094. default: true
  18095. },
  18096. ]
  18097. ))
  18098. characterMakers.push(() => makeCharacter(
  18099. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18100. {
  18101. front: {
  18102. height: math.unit(6, "feet"),
  18103. weight: math.unit(180, "lb"),
  18104. name: "Front",
  18105. image: {
  18106. source: "./media/characters/arokh-sieyes/front.svg",
  18107. extra: 1830 / 1769,
  18108. bottom: 0.01
  18109. }
  18110. },
  18111. },
  18112. [
  18113. {
  18114. name: "Normal",
  18115. height: math.unit(6, "feet")
  18116. },
  18117. {
  18118. name: "Macro",
  18119. height: math.unit(30, "meters"),
  18120. default: true
  18121. },
  18122. ]
  18123. ))
  18124. characterMakers.push(() => makeCharacter(
  18125. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18126. {
  18127. side: {
  18128. height: math.unit(13 + 1 / 12, "feet"),
  18129. weight: math.unit(8.5, "tonnes"),
  18130. name: "Side",
  18131. image: {
  18132. source: "./media/characters/goldeneye/side.svg",
  18133. extra: 1182 / 778,
  18134. bottom: 0.067
  18135. }
  18136. },
  18137. paw: {
  18138. height: math.unit(3.4, "feet"),
  18139. name: "Paw",
  18140. image: {
  18141. source: "./media/characters/goldeneye/paw.svg"
  18142. }
  18143. },
  18144. },
  18145. [
  18146. {
  18147. name: "Normal",
  18148. height: math.unit(13 + 1 / 12, "feet"),
  18149. default: true
  18150. },
  18151. ]
  18152. ))
  18153. characterMakers.push(() => makeCharacter(
  18154. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18155. {
  18156. front: {
  18157. height: math.unit(6 + 1 / 12, "feet"),
  18158. weight: math.unit(210, "lb"),
  18159. name: "Front",
  18160. image: {
  18161. source: "./media/characters/leonardo-lycheborne/front.svg",
  18162. extra: 390 / 365,
  18163. bottom: 0.032
  18164. }
  18165. },
  18166. side: {
  18167. height: math.unit(6 + 1 / 12, "feet"),
  18168. weight: math.unit(210, "lb"),
  18169. name: "Side",
  18170. image: {
  18171. source: "./media/characters/leonardo-lycheborne/side.svg",
  18172. extra: 390 / 365,
  18173. bottom: 0.005
  18174. }
  18175. },
  18176. back: {
  18177. height: math.unit(6 + 1 / 12, "feet"),
  18178. weight: math.unit(210, "lb"),
  18179. name: "Back",
  18180. image: {
  18181. source: "./media/characters/leonardo-lycheborne/back.svg",
  18182. extra: 392 / 366,
  18183. bottom: 0.01
  18184. }
  18185. },
  18186. hand: {
  18187. height: math.unit(1.08, "feet"),
  18188. name: "Hand",
  18189. image: {
  18190. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18191. }
  18192. },
  18193. foot: {
  18194. height: math.unit(1.32, "feet"),
  18195. name: "Foot",
  18196. image: {
  18197. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18198. }
  18199. },
  18200. were: {
  18201. height: math.unit(20, "feet"),
  18202. weight: math.unit(7800, "lb"),
  18203. name: "Were",
  18204. image: {
  18205. source: "./media/characters/leonardo-lycheborne/were.svg",
  18206. extra: 308 / 294,
  18207. bottom: 0.048
  18208. }
  18209. },
  18210. feral: {
  18211. height: math.unit(7.5, "feet"),
  18212. weight: math.unit(600, "lb"),
  18213. name: "Feral",
  18214. image: {
  18215. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18216. extra: 210 / 186,
  18217. bottom: 0.108
  18218. }
  18219. },
  18220. taur: {
  18221. height: math.unit(11, "feet"),
  18222. weight: math.unit(3300, "lb"),
  18223. name: "Taur",
  18224. image: {
  18225. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18226. extra: 320 / 303,
  18227. bottom: 0.025
  18228. }
  18229. },
  18230. barghest: {
  18231. height: math.unit(11, "feet"),
  18232. weight: math.unit(1300, "lb"),
  18233. name: "Barghest",
  18234. image: {
  18235. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18236. extra: 323 / 302,
  18237. bottom: 0.027
  18238. }
  18239. },
  18240. dick: {
  18241. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18242. name: "Dick",
  18243. image: {
  18244. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18245. }
  18246. },
  18247. dickWere: {
  18248. height: math.unit((20) / 3.8, "feet"),
  18249. name: "Dick (Were)",
  18250. image: {
  18251. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18252. }
  18253. },
  18254. },
  18255. [
  18256. {
  18257. name: "Normal",
  18258. height: math.unit(6 + 1 / 12, "feet"),
  18259. default: true
  18260. },
  18261. ]
  18262. ))
  18263. characterMakers.push(() => makeCharacter(
  18264. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18265. {
  18266. front: {
  18267. height: math.unit(10, "feet"),
  18268. weight: math.unit(350, "lb"),
  18269. name: "Front",
  18270. image: {
  18271. source: "./media/characters/jet/front.svg",
  18272. extra: 2050 / 1980,
  18273. bottom: 0.013
  18274. }
  18275. },
  18276. back: {
  18277. height: math.unit(10, "feet"),
  18278. weight: math.unit(350, "lb"),
  18279. name: "Back",
  18280. image: {
  18281. source: "./media/characters/jet/back.svg",
  18282. extra: 2050 / 1980,
  18283. bottom: 0.013
  18284. }
  18285. },
  18286. },
  18287. [
  18288. {
  18289. name: "Micro",
  18290. height: math.unit(6, "inches")
  18291. },
  18292. {
  18293. name: "Normal",
  18294. height: math.unit(10, "feet"),
  18295. default: true
  18296. },
  18297. {
  18298. name: "Macro",
  18299. height: math.unit(100, "feet")
  18300. },
  18301. ]
  18302. ))
  18303. characterMakers.push(() => makeCharacter(
  18304. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18305. {
  18306. front: {
  18307. height: math.unit(15, "feet"),
  18308. weight: math.unit(2800, "lb"),
  18309. name: "Front",
  18310. image: {
  18311. source: "./media/characters/tanarath/front.svg",
  18312. extra: 2392 / 2220,
  18313. bottom: 0.03
  18314. }
  18315. },
  18316. back: {
  18317. height: math.unit(15, "feet"),
  18318. weight: math.unit(2800, "lb"),
  18319. name: "Back",
  18320. image: {
  18321. source: "./media/characters/tanarath/back.svg",
  18322. extra: 2392 / 2220,
  18323. bottom: 0.03
  18324. }
  18325. },
  18326. },
  18327. [
  18328. {
  18329. name: "Normal",
  18330. height: math.unit(15, "feet"),
  18331. default: true
  18332. },
  18333. ]
  18334. ))
  18335. characterMakers.push(() => makeCharacter(
  18336. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18337. {
  18338. front: {
  18339. height: math.unit(7 + 1 / 12, "feet"),
  18340. weight: math.unit(175, "lb"),
  18341. name: "Front",
  18342. image: {
  18343. source: "./media/characters/patty-cattybatty/front.svg",
  18344. extra: 908 / 874,
  18345. bottom: 0.025
  18346. }
  18347. },
  18348. },
  18349. [
  18350. {
  18351. name: "Micro",
  18352. height: math.unit(1, "inch")
  18353. },
  18354. {
  18355. name: "Normal",
  18356. height: math.unit(7 + 1 / 12, "feet")
  18357. },
  18358. {
  18359. name: "Mini Macro",
  18360. height: math.unit(155, "feet")
  18361. },
  18362. {
  18363. name: "Macro",
  18364. height: math.unit(1077, "feet")
  18365. },
  18366. {
  18367. name: "Mega Macro",
  18368. height: math.unit(47650, "feet"),
  18369. default: true
  18370. },
  18371. {
  18372. name: "Giga Macro",
  18373. height: math.unit(440, "miles")
  18374. },
  18375. {
  18376. name: "Tera Macro",
  18377. height: math.unit(8700, "miles")
  18378. },
  18379. {
  18380. name: "Planetary Macro",
  18381. height: math.unit(32700, "miles")
  18382. },
  18383. {
  18384. name: "Solar Macro",
  18385. height: math.unit(550000, "miles")
  18386. },
  18387. {
  18388. name: "Celestial Macro",
  18389. height: math.unit(2.5, "AU")
  18390. },
  18391. ]
  18392. ))
  18393. characterMakers.push(() => makeCharacter(
  18394. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18395. {
  18396. front: {
  18397. height: math.unit(4 + 5 / 12, "feet"),
  18398. weight: math.unit(90, "lb"),
  18399. name: "Front",
  18400. image: {
  18401. source: "./media/characters/cappu/front.svg",
  18402. extra: 1247 / 1152,
  18403. bottom: 0.012
  18404. }
  18405. },
  18406. },
  18407. [
  18408. {
  18409. name: "Normal",
  18410. height: math.unit(4 + 5 / 12, "feet"),
  18411. default: true
  18412. },
  18413. ]
  18414. ))
  18415. characterMakers.push(() => makeCharacter(
  18416. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18417. {
  18418. frontDressed: {
  18419. height: math.unit(70, "cm"),
  18420. weight: math.unit(6, "kg"),
  18421. name: "Front (Dressed)",
  18422. image: {
  18423. source: "./media/characters/sebi/front-dressed.svg",
  18424. extra: 713.5 / 686.5,
  18425. bottom: 0.003
  18426. }
  18427. },
  18428. front: {
  18429. height: math.unit(70, "cm"),
  18430. weight: math.unit(5, "kg"),
  18431. name: "Front",
  18432. image: {
  18433. source: "./media/characters/sebi/front.svg",
  18434. extra: 713.5 / 686.5,
  18435. bottom: 0.003
  18436. }
  18437. }
  18438. },
  18439. [
  18440. {
  18441. name: "Normal",
  18442. height: math.unit(70, "cm"),
  18443. default: true
  18444. },
  18445. {
  18446. name: "Macro",
  18447. height: math.unit(8, "meters")
  18448. },
  18449. ]
  18450. ))
  18451. characterMakers.push(() => makeCharacter(
  18452. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18453. {
  18454. front: {
  18455. height: math.unit(6, "feet"),
  18456. weight: math.unit(150, "lb"),
  18457. name: "Front",
  18458. image: {
  18459. source: "./media/characters/typhek/front.svg",
  18460. extra: 1948 / 1929,
  18461. bottom: 0.025
  18462. }
  18463. },
  18464. side: {
  18465. height: math.unit(6, "feet"),
  18466. weight: math.unit(150, "lb"),
  18467. name: "Side",
  18468. image: {
  18469. source: "./media/characters/typhek/side.svg",
  18470. extra: 2034 / 2010,
  18471. bottom: 0.003
  18472. }
  18473. },
  18474. back: {
  18475. height: math.unit(6, "feet"),
  18476. weight: math.unit(150, "lb"),
  18477. name: "Back",
  18478. image: {
  18479. source: "./media/characters/typhek/back.svg",
  18480. extra: 2005 / 1978,
  18481. bottom: 0.004
  18482. }
  18483. },
  18484. palm: {
  18485. height: math.unit(1.2, "feet"),
  18486. name: "Palm",
  18487. image: {
  18488. source: "./media/characters/typhek/palm.svg"
  18489. }
  18490. },
  18491. fist: {
  18492. height: math.unit(1.1, "feet"),
  18493. name: "Fist",
  18494. image: {
  18495. source: "./media/characters/typhek/fist.svg"
  18496. }
  18497. },
  18498. foot: {
  18499. height: math.unit(1.57, "feet"),
  18500. name: "Foot",
  18501. image: {
  18502. source: "./media/characters/typhek/foot.svg"
  18503. }
  18504. },
  18505. sole: {
  18506. height: math.unit(2.05, "feet"),
  18507. name: "Sole",
  18508. image: {
  18509. source: "./media/characters/typhek/sole.svg"
  18510. }
  18511. },
  18512. },
  18513. [
  18514. {
  18515. name: "Macro",
  18516. height: math.unit(40, "stories"),
  18517. default: true
  18518. },
  18519. {
  18520. name: "Megamacro",
  18521. height: math.unit(1, "mile")
  18522. },
  18523. {
  18524. name: "Gigamacro",
  18525. height: math.unit(4000, "solarradii")
  18526. },
  18527. {
  18528. name: "Universal",
  18529. height: math.unit(1.1, "universes")
  18530. }
  18531. ]
  18532. ))
  18533. characterMakers.push(() => makeCharacter(
  18534. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18535. {
  18536. side: {
  18537. height: math.unit(5 + 7 / 12, "feet"),
  18538. weight: math.unit(150, "lb"),
  18539. name: "Side",
  18540. image: {
  18541. source: "./media/characters/kassy/side.svg",
  18542. extra: 1280 / 1225,
  18543. bottom: 0.002
  18544. }
  18545. },
  18546. front: {
  18547. height: math.unit(5 + 7 / 12, "feet"),
  18548. weight: math.unit(150, "lb"),
  18549. name: "Front",
  18550. image: {
  18551. source: "./media/characters/kassy/front.svg",
  18552. extra: 1280 / 1225,
  18553. bottom: 0.025
  18554. }
  18555. },
  18556. back: {
  18557. height: math.unit(5 + 7 / 12, "feet"),
  18558. weight: math.unit(150, "lb"),
  18559. name: "Back",
  18560. image: {
  18561. source: "./media/characters/kassy/back.svg",
  18562. extra: 1280 / 1225,
  18563. bottom: 0.002
  18564. }
  18565. },
  18566. foot: {
  18567. height: math.unit(1.266, "feet"),
  18568. name: "Foot",
  18569. image: {
  18570. source: "./media/characters/kassy/foot.svg"
  18571. }
  18572. },
  18573. },
  18574. [
  18575. {
  18576. name: "Normal",
  18577. height: math.unit(5 + 7 / 12, "feet")
  18578. },
  18579. {
  18580. name: "Macro",
  18581. height: math.unit(137, "feet"),
  18582. default: true
  18583. },
  18584. {
  18585. name: "Megamacro",
  18586. height: math.unit(1, "mile")
  18587. },
  18588. ]
  18589. ))
  18590. characterMakers.push(() => makeCharacter(
  18591. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18592. {
  18593. front: {
  18594. height: math.unit(6 + 1 / 12, "feet"),
  18595. weight: math.unit(200, "lb"),
  18596. name: "Front",
  18597. image: {
  18598. source: "./media/characters/neil/front.svg",
  18599. extra: 1326 / 1250,
  18600. bottom: 0.023
  18601. }
  18602. },
  18603. },
  18604. [
  18605. {
  18606. name: "Normal",
  18607. height: math.unit(6 + 1 / 12, "feet"),
  18608. default: true
  18609. },
  18610. {
  18611. name: "Macro",
  18612. height: math.unit(200, "feet")
  18613. },
  18614. ]
  18615. ))
  18616. characterMakers.push(() => makeCharacter(
  18617. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18618. {
  18619. front: {
  18620. height: math.unit(5 + 9 / 12, "feet"),
  18621. weight: math.unit(190, "lb"),
  18622. name: "Front",
  18623. image: {
  18624. source: "./media/characters/atticus/front.svg",
  18625. extra: 2934 / 2785,
  18626. bottom: 0.025
  18627. }
  18628. },
  18629. },
  18630. [
  18631. {
  18632. name: "Normal",
  18633. height: math.unit(5 + 9 / 12, "feet"),
  18634. default: true
  18635. },
  18636. {
  18637. name: "Macro",
  18638. height: math.unit(180, "feet")
  18639. },
  18640. ]
  18641. ))
  18642. characterMakers.push(() => makeCharacter(
  18643. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18644. {
  18645. side: {
  18646. height: math.unit(9, "feet"),
  18647. weight: math.unit(650, "lb"),
  18648. name: "Side",
  18649. image: {
  18650. source: "./media/characters/milo/side.svg",
  18651. extra: 2644 / 2310,
  18652. bottom: 0.032
  18653. }
  18654. },
  18655. },
  18656. [
  18657. {
  18658. name: "Normal",
  18659. height: math.unit(9, "feet"),
  18660. default: true
  18661. },
  18662. {
  18663. name: "Macro",
  18664. height: math.unit(300, "feet")
  18665. },
  18666. ]
  18667. ))
  18668. characterMakers.push(() => makeCharacter(
  18669. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18670. {
  18671. side: {
  18672. height: math.unit(8, "meters"),
  18673. weight: math.unit(90000, "kg"),
  18674. name: "Side",
  18675. image: {
  18676. source: "./media/characters/ijzer/side.svg",
  18677. extra: 2756 / 1600,
  18678. bottom: 0.01
  18679. }
  18680. },
  18681. },
  18682. [
  18683. {
  18684. name: "Small",
  18685. height: math.unit(3, "meters")
  18686. },
  18687. {
  18688. name: "Normal",
  18689. height: math.unit(8, "meters"),
  18690. default: true
  18691. },
  18692. {
  18693. name: "Normal+",
  18694. height: math.unit(10, "meters")
  18695. },
  18696. {
  18697. name: "Bigger",
  18698. height: math.unit(24, "meters")
  18699. },
  18700. {
  18701. name: "Huge",
  18702. height: math.unit(80, "meters")
  18703. },
  18704. ]
  18705. ))
  18706. characterMakers.push(() => makeCharacter(
  18707. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18708. {
  18709. front: {
  18710. height: math.unit(6 + 2 / 12, "feet"),
  18711. weight: math.unit(153, "lb"),
  18712. name: "Front",
  18713. image: {
  18714. source: "./media/characters/luca-cervicum/front.svg",
  18715. extra: 370 / 327,
  18716. bottom: 0.015
  18717. }
  18718. },
  18719. back: {
  18720. height: math.unit(6 + 2 / 12, "feet"),
  18721. weight: math.unit(153, "lb"),
  18722. name: "Back",
  18723. image: {
  18724. source: "./media/characters/luca-cervicum/back.svg",
  18725. extra: 367 / 333,
  18726. bottom: 0.005
  18727. }
  18728. },
  18729. frontGear: {
  18730. height: math.unit(6 + 2 / 12, "feet"),
  18731. weight: math.unit(173, "lb"),
  18732. name: "Front (Gear)",
  18733. image: {
  18734. source: "./media/characters/luca-cervicum/front-gear.svg",
  18735. extra: 377 / 333,
  18736. bottom: 0.006
  18737. }
  18738. },
  18739. },
  18740. [
  18741. {
  18742. name: "Normal",
  18743. height: math.unit(6 + 2 / 12, "feet"),
  18744. default: true
  18745. },
  18746. ]
  18747. ))
  18748. characterMakers.push(() => makeCharacter(
  18749. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18750. {
  18751. front: {
  18752. height: math.unit(6 + 1 / 12, "feet"),
  18753. weight: math.unit(304, "lb"),
  18754. name: "Front",
  18755. image: {
  18756. source: "./media/characters/oliver/front.svg",
  18757. extra: 157 / 143,
  18758. bottom: 0.08
  18759. }
  18760. },
  18761. },
  18762. [
  18763. {
  18764. name: "Normal",
  18765. height: math.unit(6 + 1 / 12, "feet"),
  18766. default: true
  18767. },
  18768. ]
  18769. ))
  18770. characterMakers.push(() => makeCharacter(
  18771. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18772. {
  18773. front: {
  18774. height: math.unit(5 + 7 / 12, "feet"),
  18775. weight: math.unit(140, "lb"),
  18776. name: "Front",
  18777. image: {
  18778. source: "./media/characters/shane/front.svg",
  18779. extra: 304 / 289,
  18780. bottom: 0.005
  18781. }
  18782. },
  18783. },
  18784. [
  18785. {
  18786. name: "Normal",
  18787. height: math.unit(5 + 7 / 12, "feet"),
  18788. default: true
  18789. },
  18790. ]
  18791. ))
  18792. characterMakers.push(() => makeCharacter(
  18793. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18794. {
  18795. front: {
  18796. height: math.unit(5 + 9 / 12, "feet"),
  18797. weight: math.unit(178, "lb"),
  18798. name: "Front",
  18799. image: {
  18800. source: "./media/characters/shin/front.svg",
  18801. extra: 159 / 151,
  18802. bottom: 0.015
  18803. }
  18804. },
  18805. },
  18806. [
  18807. {
  18808. name: "Normal",
  18809. height: math.unit(5 + 9 / 12, "feet"),
  18810. default: true
  18811. },
  18812. ]
  18813. ))
  18814. characterMakers.push(() => makeCharacter(
  18815. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18816. {
  18817. front: {
  18818. height: math.unit(5 + 10 / 12, "feet"),
  18819. weight: math.unit(168, "lb"),
  18820. name: "Front",
  18821. image: {
  18822. source: "./media/characters/xerxes/front.svg",
  18823. extra: 282 / 260,
  18824. bottom: 0.045
  18825. }
  18826. },
  18827. },
  18828. [
  18829. {
  18830. name: "Normal",
  18831. height: math.unit(5 + 10 / 12, "feet"),
  18832. default: true
  18833. },
  18834. ]
  18835. ))
  18836. characterMakers.push(() => makeCharacter(
  18837. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18838. {
  18839. front: {
  18840. height: math.unit(6 + 7 / 12, "feet"),
  18841. weight: math.unit(208, "lb"),
  18842. name: "Front",
  18843. image: {
  18844. source: "./media/characters/chaska/front.svg",
  18845. extra: 332 / 319,
  18846. bottom: 0.015
  18847. }
  18848. },
  18849. },
  18850. [
  18851. {
  18852. name: "Normal",
  18853. height: math.unit(6 + 7 / 12, "feet"),
  18854. default: true
  18855. },
  18856. ]
  18857. ))
  18858. characterMakers.push(() => makeCharacter(
  18859. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18860. {
  18861. front: {
  18862. height: math.unit(5 + 8 / 12, "feet"),
  18863. weight: math.unit(208, "lb"),
  18864. name: "Front",
  18865. image: {
  18866. source: "./media/characters/enuk/front.svg",
  18867. extra: 437 / 406,
  18868. bottom: 0.02
  18869. }
  18870. },
  18871. },
  18872. [
  18873. {
  18874. name: "Normal",
  18875. height: math.unit(5 + 8 / 12, "feet"),
  18876. default: true
  18877. },
  18878. ]
  18879. ))
  18880. characterMakers.push(() => makeCharacter(
  18881. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18882. {
  18883. front: {
  18884. height: math.unit(5 + 10 / 12, "feet"),
  18885. weight: math.unit(252, "lb"),
  18886. name: "Front",
  18887. image: {
  18888. source: "./media/characters/bruun/front.svg",
  18889. extra: 197 / 187,
  18890. bottom: 0.012
  18891. }
  18892. },
  18893. },
  18894. [
  18895. {
  18896. name: "Normal",
  18897. height: math.unit(5 + 10 / 12, "feet"),
  18898. default: true
  18899. },
  18900. ]
  18901. ))
  18902. characterMakers.push(() => makeCharacter(
  18903. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18904. {
  18905. front: {
  18906. height: math.unit(6 + 10 / 12, "feet"),
  18907. weight: math.unit(255, "lb"),
  18908. name: "Front",
  18909. image: {
  18910. source: "./media/characters/alexeev/front.svg",
  18911. extra: 213 / 200,
  18912. bottom: 0.05
  18913. }
  18914. },
  18915. },
  18916. [
  18917. {
  18918. name: "Normal",
  18919. height: math.unit(6 + 10 / 12, "feet"),
  18920. default: true
  18921. },
  18922. ]
  18923. ))
  18924. characterMakers.push(() => makeCharacter(
  18925. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18926. {
  18927. front: {
  18928. height: math.unit(2 + 8 / 12, "feet"),
  18929. weight: math.unit(22, "lb"),
  18930. name: "Front",
  18931. image: {
  18932. source: "./media/characters/evelyn/front.svg",
  18933. extra: 208 / 180
  18934. }
  18935. },
  18936. },
  18937. [
  18938. {
  18939. name: "Normal",
  18940. height: math.unit(2 + 8 / 12, "feet"),
  18941. default: true
  18942. },
  18943. ]
  18944. ))
  18945. characterMakers.push(() => makeCharacter(
  18946. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18947. {
  18948. front: {
  18949. height: math.unit(5 + 9 / 12, "feet"),
  18950. weight: math.unit(139, "lb"),
  18951. name: "Front",
  18952. image: {
  18953. source: "./media/characters/inca/front.svg",
  18954. extra: 294 / 291,
  18955. bottom: 0.03
  18956. }
  18957. },
  18958. },
  18959. [
  18960. {
  18961. name: "Normal",
  18962. height: math.unit(5 + 9 / 12, "feet"),
  18963. default: true
  18964. },
  18965. ]
  18966. ))
  18967. characterMakers.push(() => makeCharacter(
  18968. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18969. {
  18970. front: {
  18971. height: math.unit(5 + 1 / 12, "feet"),
  18972. weight: math.unit(84, "lb"),
  18973. name: "Front",
  18974. image: {
  18975. source: "./media/characters/magdalene/front.svg",
  18976. extra: 293 / 273
  18977. }
  18978. },
  18979. },
  18980. [
  18981. {
  18982. name: "Normal",
  18983. height: math.unit(5 + 1 / 12, "feet"),
  18984. default: true
  18985. },
  18986. ]
  18987. ))
  18988. characterMakers.push(() => makeCharacter(
  18989. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18990. {
  18991. front: {
  18992. height: math.unit(6 + 3 / 12, "feet"),
  18993. weight: math.unit(185, "lb"),
  18994. name: "Front",
  18995. image: {
  18996. source: "./media/characters/mera/front.svg",
  18997. extra: 291 / 277,
  18998. bottom: 0.03
  18999. }
  19000. },
  19001. },
  19002. [
  19003. {
  19004. name: "Normal",
  19005. height: math.unit(6 + 3 / 12, "feet"),
  19006. default: true
  19007. },
  19008. ]
  19009. ))
  19010. characterMakers.push(() => makeCharacter(
  19011. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19012. {
  19013. front: {
  19014. height: math.unit(6 + 7 / 12, "feet"),
  19015. weight: math.unit(160, "lb"),
  19016. name: "Front",
  19017. image: {
  19018. source: "./media/characters/ceres/front.svg",
  19019. extra: 1023 / 950,
  19020. bottom: 0.027
  19021. }
  19022. },
  19023. back: {
  19024. height: math.unit(6 + 7 / 12, "feet"),
  19025. weight: math.unit(160, "lb"),
  19026. name: "Back",
  19027. image: {
  19028. source: "./media/characters/ceres/back.svg",
  19029. extra: 1023 / 950
  19030. }
  19031. },
  19032. },
  19033. [
  19034. {
  19035. name: "Normal",
  19036. height: math.unit(6 + 7 / 12, "feet"),
  19037. default: true
  19038. },
  19039. ]
  19040. ))
  19041. characterMakers.push(() => makeCharacter(
  19042. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19043. {
  19044. front: {
  19045. height: math.unit(5 + 10 / 12, "feet"),
  19046. weight: math.unit(150, "lb"),
  19047. name: "Front",
  19048. image: {
  19049. source: "./media/characters/kris/front.svg",
  19050. extra: 885 / 803,
  19051. bottom: 0.03
  19052. }
  19053. },
  19054. },
  19055. [
  19056. {
  19057. name: "Normal",
  19058. height: math.unit(5 + 10 / 12, "feet"),
  19059. default: true
  19060. },
  19061. ]
  19062. ))
  19063. characterMakers.push(() => makeCharacter(
  19064. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19065. {
  19066. front: {
  19067. height: math.unit(7, "feet"),
  19068. weight: math.unit(120, "kg"),
  19069. name: "Front",
  19070. image: {
  19071. source: "./media/characters/taluthus/front.svg",
  19072. extra: 903 / 833,
  19073. bottom: 0.015
  19074. }
  19075. },
  19076. },
  19077. [
  19078. {
  19079. name: "Normal",
  19080. height: math.unit(7, "feet"),
  19081. default: true
  19082. },
  19083. {
  19084. name: "Macro",
  19085. height: math.unit(300, "feet")
  19086. },
  19087. ]
  19088. ))
  19089. characterMakers.push(() => makeCharacter(
  19090. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19091. {
  19092. front: {
  19093. height: math.unit(5 + 9 / 12, "feet"),
  19094. weight: math.unit(145, "lb"),
  19095. name: "Front",
  19096. image: {
  19097. source: "./media/characters/dawn/front.svg",
  19098. extra: 2094 / 2016,
  19099. bottom: 0.025
  19100. }
  19101. },
  19102. back: {
  19103. height: math.unit(5 + 9 / 12, "feet"),
  19104. weight: math.unit(160, "lb"),
  19105. name: "Back",
  19106. image: {
  19107. source: "./media/characters/dawn/back.svg",
  19108. extra: 2112 / 2080,
  19109. bottom: 0.005
  19110. }
  19111. },
  19112. },
  19113. [
  19114. {
  19115. name: "Normal",
  19116. height: math.unit(6 + 7 / 12, "feet"),
  19117. default: true
  19118. },
  19119. ]
  19120. ))
  19121. characterMakers.push(() => makeCharacter(
  19122. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19123. {
  19124. anthro: {
  19125. height: math.unit(8 + 3 / 12, "feet"),
  19126. weight: math.unit(450, "lb"),
  19127. name: "Anthro",
  19128. image: {
  19129. source: "./media/characters/arador/anthro.svg",
  19130. extra: 1835 / 1718,
  19131. bottom: 0.025
  19132. }
  19133. },
  19134. feral: {
  19135. height: math.unit(4, "feet"),
  19136. weight: math.unit(200, "lb"),
  19137. name: "Feral",
  19138. image: {
  19139. source: "./media/characters/arador/feral.svg",
  19140. extra: 1683 / 1514,
  19141. bottom: 0.07
  19142. }
  19143. },
  19144. },
  19145. [
  19146. {
  19147. name: "Normal",
  19148. height: math.unit(8 + 3 / 12, "feet")
  19149. },
  19150. {
  19151. name: "Macro",
  19152. height: math.unit(82.5, "feet"),
  19153. default: true
  19154. },
  19155. ]
  19156. ))
  19157. characterMakers.push(() => makeCharacter(
  19158. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19159. {
  19160. front: {
  19161. height: math.unit(5 + 10 / 12, "feet"),
  19162. weight: math.unit(125, "lb"),
  19163. name: "Front",
  19164. image: {
  19165. source: "./media/characters/dharsi/front.svg",
  19166. extra: 716 / 630,
  19167. bottom: 0.035
  19168. }
  19169. },
  19170. },
  19171. [
  19172. {
  19173. name: "Nano",
  19174. height: math.unit(100, "nm")
  19175. },
  19176. {
  19177. name: "Micro",
  19178. height: math.unit(2, "inches")
  19179. },
  19180. {
  19181. name: "Normal",
  19182. height: math.unit(5 + 10 / 12, "feet"),
  19183. default: true
  19184. },
  19185. {
  19186. name: "Macro",
  19187. height: math.unit(1000, "feet")
  19188. },
  19189. {
  19190. name: "Megamacro",
  19191. height: math.unit(10, "miles")
  19192. },
  19193. {
  19194. name: "Gigamacro",
  19195. height: math.unit(3000, "miles")
  19196. },
  19197. {
  19198. name: "Teramacro",
  19199. height: math.unit(500000, "miles")
  19200. },
  19201. {
  19202. name: "Teramacro+",
  19203. height: math.unit(30, "galaxies")
  19204. },
  19205. ]
  19206. ))
  19207. characterMakers.push(() => makeCharacter(
  19208. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19209. {
  19210. front: {
  19211. height: math.unit(6, "feet"),
  19212. weight: math.unit(150, "lb"),
  19213. name: "Front",
  19214. image: {
  19215. source: "./media/characters/deathy/front.svg",
  19216. extra: 1552 / 1463,
  19217. bottom: 0.025
  19218. }
  19219. },
  19220. side: {
  19221. height: math.unit(6, "feet"),
  19222. weight: math.unit(150, "lb"),
  19223. name: "Side",
  19224. image: {
  19225. source: "./media/characters/deathy/side.svg",
  19226. extra: 1604 / 1455,
  19227. bottom: 0.025
  19228. }
  19229. },
  19230. back: {
  19231. height: math.unit(6, "feet"),
  19232. weight: math.unit(150, "lb"),
  19233. name: "Back",
  19234. image: {
  19235. source: "./media/characters/deathy/back.svg",
  19236. extra: 1580 / 1463,
  19237. bottom: 0.005
  19238. }
  19239. },
  19240. },
  19241. [
  19242. {
  19243. name: "Micro",
  19244. height: math.unit(5, "millimeters")
  19245. },
  19246. {
  19247. name: "Normal",
  19248. height: math.unit(6 + 5 / 12, "feet"),
  19249. default: true
  19250. },
  19251. ]
  19252. ))
  19253. characterMakers.push(() => makeCharacter(
  19254. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19255. {
  19256. front: {
  19257. height: math.unit(16, "feet"),
  19258. weight: math.unit(4000, "lb"),
  19259. name: "Front",
  19260. image: {
  19261. source: "./media/characters/juniper/front.svg",
  19262. bottom: 0.04
  19263. }
  19264. },
  19265. },
  19266. [
  19267. {
  19268. name: "Normal",
  19269. height: math.unit(16, "feet"),
  19270. default: true
  19271. },
  19272. ]
  19273. ))
  19274. characterMakers.push(() => makeCharacter(
  19275. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19276. {
  19277. front: {
  19278. height: math.unit(6, "feet"),
  19279. weight: math.unit(150, "lb"),
  19280. name: "Front",
  19281. image: {
  19282. source: "./media/characters/hipster/front.svg",
  19283. extra: 1312 / 1209,
  19284. bottom: 0.025
  19285. }
  19286. },
  19287. back: {
  19288. height: math.unit(6, "feet"),
  19289. weight: math.unit(150, "lb"),
  19290. name: "Back",
  19291. image: {
  19292. source: "./media/characters/hipster/back.svg",
  19293. extra: 1281 / 1196,
  19294. bottom: 0.01
  19295. }
  19296. },
  19297. },
  19298. [
  19299. {
  19300. name: "Micro",
  19301. height: math.unit(1, "mm")
  19302. },
  19303. {
  19304. name: "Normal",
  19305. height: math.unit(4, "inches"),
  19306. default: true
  19307. },
  19308. {
  19309. name: "Macro",
  19310. height: math.unit(500, "feet")
  19311. },
  19312. {
  19313. name: "Megamacro",
  19314. height: math.unit(1000, "miles")
  19315. },
  19316. ]
  19317. ))
  19318. characterMakers.push(() => makeCharacter(
  19319. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19320. {
  19321. front: {
  19322. height: math.unit(6, "feet"),
  19323. weight: math.unit(150, "lb"),
  19324. name: "Front",
  19325. image: {
  19326. source: "./media/characters/tendirmuldr/front.svg",
  19327. extra: 1878 / 1772,
  19328. bottom: 0.015
  19329. }
  19330. },
  19331. },
  19332. [
  19333. {
  19334. name: "Megamacro",
  19335. height: math.unit(1500, "miles"),
  19336. default: true
  19337. },
  19338. ]
  19339. ))
  19340. characterMakers.push(() => makeCharacter(
  19341. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19342. {
  19343. front: {
  19344. height: math.unit(14, "feet"),
  19345. weight: math.unit(12000, "lb"),
  19346. name: "Front",
  19347. image: {
  19348. source: "./media/characters/mort/front.svg",
  19349. extra: 365 / 318,
  19350. bottom: 0.01
  19351. }
  19352. },
  19353. side: {
  19354. height: math.unit(14, "feet"),
  19355. weight: math.unit(12000, "lb"),
  19356. name: "Side",
  19357. image: {
  19358. source: "./media/characters/mort/side.svg",
  19359. extra: 365 / 318,
  19360. bottom: 0.052
  19361. },
  19362. default: true
  19363. },
  19364. back: {
  19365. height: math.unit(14, "feet"),
  19366. weight: math.unit(12000, "lb"),
  19367. name: "Back",
  19368. image: {
  19369. source: "./media/characters/mort/back.svg",
  19370. extra: 371 / 332,
  19371. bottom: 0.18
  19372. }
  19373. },
  19374. },
  19375. [
  19376. {
  19377. name: "Normal",
  19378. height: math.unit(14, "feet"),
  19379. default: true
  19380. },
  19381. ]
  19382. ))
  19383. characterMakers.push(() => makeCharacter(
  19384. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19385. {
  19386. front: {
  19387. height: math.unit(8, "feet"),
  19388. weight: math.unit(1, "ton"),
  19389. name: "Front",
  19390. image: {
  19391. source: "./media/characters/lycoa/front.svg",
  19392. extra: 1875 / 1789,
  19393. bottom: 0.022
  19394. }
  19395. },
  19396. back: {
  19397. height: math.unit(8, "feet"),
  19398. weight: math.unit(1, "ton"),
  19399. name: "Back",
  19400. image: {
  19401. source: "./media/characters/lycoa/back.svg",
  19402. extra: 1835 / 1781,
  19403. bottom: 0.03
  19404. }
  19405. },
  19406. head: {
  19407. height: math.unit(2.1, "feet"),
  19408. name: "Head",
  19409. image: {
  19410. source: "./media/characters/lycoa/head.svg"
  19411. }
  19412. },
  19413. tailmaw: {
  19414. height: math.unit(1.9, "feet"),
  19415. name: "Tailmaw",
  19416. image: {
  19417. source: "./media/characters/lycoa/tailmaw.svg"
  19418. }
  19419. },
  19420. tentacles: {
  19421. height: math.unit(2.1, "feet"),
  19422. name: "Tentacles",
  19423. image: {
  19424. source: "./media/characters/lycoa/tentacles.svg"
  19425. }
  19426. },
  19427. dick: {
  19428. height: math.unit(1.73, "feet"),
  19429. name: "Dick",
  19430. image: {
  19431. source: "./media/characters/lycoa/dick.svg"
  19432. }
  19433. },
  19434. },
  19435. [
  19436. {
  19437. name: "Normal",
  19438. height: math.unit(8, "feet"),
  19439. default: true
  19440. },
  19441. {
  19442. name: "Macro",
  19443. height: math.unit(30, "feet")
  19444. },
  19445. ]
  19446. ))
  19447. characterMakers.push(() => makeCharacter(
  19448. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19449. {
  19450. front: {
  19451. height: math.unit(4 + 2 / 12, "feet"),
  19452. weight: math.unit(70, "lb"),
  19453. name: "Front",
  19454. image: {
  19455. source: "./media/characters/naldara/front.svg",
  19456. extra: 841 / 720,
  19457. bottom: 0.04
  19458. }
  19459. },
  19460. naga: {
  19461. height: math.unit(23, "feet"),
  19462. weight: math.unit(15000, "kg"),
  19463. name: "Naga",
  19464. image: {
  19465. source: "./media/characters/naldara/naga.svg",
  19466. extra: 3290 / 2959,
  19467. bottom: 124 / 3432
  19468. }
  19469. },
  19470. },
  19471. [
  19472. {
  19473. name: "Normal",
  19474. height: math.unit(4 + 2 / 12, "feet"),
  19475. default: true
  19476. },
  19477. ]
  19478. ))
  19479. characterMakers.push(() => makeCharacter(
  19480. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19481. {
  19482. front: {
  19483. height: math.unit(13 + 7 / 12, "feet"),
  19484. weight: math.unit(1500, "lb"),
  19485. name: "Front",
  19486. image: {
  19487. source: "./media/characters/briar/front.svg",
  19488. extra: 626 / 596,
  19489. bottom: 0.08
  19490. }
  19491. },
  19492. },
  19493. [
  19494. {
  19495. name: "Normal",
  19496. height: math.unit(13 + 7 / 12, "feet"),
  19497. default: true
  19498. },
  19499. ]
  19500. ))
  19501. characterMakers.push(() => makeCharacter(
  19502. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19503. {
  19504. side: {
  19505. height: math.unit(10, "feet"),
  19506. weight: math.unit(500, "lb"),
  19507. name: "Side",
  19508. image: {
  19509. source: "./media/characters/vanguard/side.svg",
  19510. extra: 502 / 425,
  19511. bottom: 0.087
  19512. }
  19513. },
  19514. },
  19515. [
  19516. {
  19517. name: "Normal",
  19518. height: math.unit(10, "feet"),
  19519. default: true
  19520. },
  19521. ]
  19522. ))
  19523. characterMakers.push(() => makeCharacter(
  19524. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19525. {
  19526. front: {
  19527. height: math.unit(7.5, "feet"),
  19528. weight: math.unit(2, "lb"),
  19529. name: "Front",
  19530. image: {
  19531. source: "./media/characters/artemis/front.svg",
  19532. extra: 1192 / 1075,
  19533. bottom: 0.07
  19534. }
  19535. },
  19536. frontNsfw: {
  19537. height: math.unit(7.5, "feet"),
  19538. weight: math.unit(2, "lb"),
  19539. name: "Front (NSFW)",
  19540. image: {
  19541. source: "./media/characters/artemis/front-nsfw.svg",
  19542. extra: 1192 / 1075,
  19543. bottom: 0.07
  19544. }
  19545. },
  19546. frontNsfwer: {
  19547. height: math.unit(7.5, "feet"),
  19548. weight: math.unit(2, "lb"),
  19549. name: "Front (NSFW-er)",
  19550. image: {
  19551. source: "./media/characters/artemis/front-nsfwer.svg",
  19552. extra: 1192 / 1075,
  19553. bottom: 0.07
  19554. }
  19555. },
  19556. side: {
  19557. height: math.unit(7.5, "feet"),
  19558. weight: math.unit(2, "lb"),
  19559. name: "Side",
  19560. image: {
  19561. source: "./media/characters/artemis/side.svg",
  19562. extra: 1192 / 1075,
  19563. bottom: 0.07
  19564. }
  19565. },
  19566. sideNsfw: {
  19567. height: math.unit(7.5, "feet"),
  19568. weight: math.unit(2, "lb"),
  19569. name: "Side (NSFW)",
  19570. image: {
  19571. source: "./media/characters/artemis/side-nsfw.svg",
  19572. extra: 1192 / 1075,
  19573. bottom: 0.07
  19574. }
  19575. },
  19576. sideNsfwer: {
  19577. height: math.unit(7.5, "feet"),
  19578. weight: math.unit(2, "lb"),
  19579. name: "Side (NSFW-er)",
  19580. image: {
  19581. source: "./media/characters/artemis/side-nsfwer.svg",
  19582. extra: 1192 / 1075,
  19583. bottom: 0.07
  19584. }
  19585. },
  19586. maw: {
  19587. height: math.unit(1.1, "feet"),
  19588. name: "Maw",
  19589. image: {
  19590. source: "./media/characters/artemis/maw.svg"
  19591. }
  19592. },
  19593. stomach: {
  19594. height: math.unit(0.95, "feet"),
  19595. name: "Stomach",
  19596. image: {
  19597. source: "./media/characters/artemis/stomach.svg"
  19598. }
  19599. },
  19600. dickCanine: {
  19601. height: math.unit(1, "feet"),
  19602. name: "Dick (Canine)",
  19603. image: {
  19604. source: "./media/characters/artemis/dick-canine.svg"
  19605. }
  19606. },
  19607. dickEquine: {
  19608. height: math.unit(0.85, "feet"),
  19609. name: "Dick (Equine)",
  19610. image: {
  19611. source: "./media/characters/artemis/dick-equine.svg"
  19612. }
  19613. },
  19614. dickExotic: {
  19615. height: math.unit(0.85, "feet"),
  19616. name: "Dick (Exotic)",
  19617. image: {
  19618. source: "./media/characters/artemis/dick-exotic.svg"
  19619. }
  19620. },
  19621. },
  19622. [
  19623. {
  19624. name: "Normal",
  19625. height: math.unit(7.5, "feet"),
  19626. default: true
  19627. },
  19628. {
  19629. name: "Enlarged",
  19630. height: math.unit(12, "feet")
  19631. },
  19632. ]
  19633. ))
  19634. characterMakers.push(() => makeCharacter(
  19635. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19636. {
  19637. front: {
  19638. height: math.unit(5 + 3 / 12, "feet"),
  19639. weight: math.unit(160, "lb"),
  19640. name: "Front",
  19641. image: {
  19642. source: "./media/characters/kira/front.svg",
  19643. extra: 906 / 786,
  19644. bottom: 0.01
  19645. }
  19646. },
  19647. back: {
  19648. height: math.unit(5 + 3 / 12, "feet"),
  19649. weight: math.unit(160, "lb"),
  19650. name: "Back",
  19651. image: {
  19652. source: "./media/characters/kira/back.svg",
  19653. extra: 882 / 757,
  19654. bottom: 0.005
  19655. }
  19656. },
  19657. frontDressed: {
  19658. height: math.unit(5 + 3 / 12, "feet"),
  19659. weight: math.unit(160, "lb"),
  19660. name: "Front (Dressed)",
  19661. image: {
  19662. source: "./media/characters/kira/front-dressed.svg",
  19663. extra: 906 / 786,
  19664. bottom: 0.01
  19665. }
  19666. },
  19667. beans: {
  19668. height: math.unit(0.92, "feet"),
  19669. name: "Beans",
  19670. image: {
  19671. source: "./media/characters/kira/beans.svg"
  19672. }
  19673. },
  19674. },
  19675. [
  19676. {
  19677. name: "Normal",
  19678. height: math.unit(5 + 3 / 12, "feet"),
  19679. default: true
  19680. },
  19681. ]
  19682. ))
  19683. characterMakers.push(() => makeCharacter(
  19684. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19685. {
  19686. front: {
  19687. height: math.unit(5 + 4 / 12, "feet"),
  19688. weight: math.unit(145, "lb"),
  19689. name: "Front",
  19690. image: {
  19691. source: "./media/characters/scramble/front.svg",
  19692. extra: 763 / 727,
  19693. bottom: 0.05
  19694. }
  19695. },
  19696. back: {
  19697. height: math.unit(5 + 4 / 12, "feet"),
  19698. weight: math.unit(145, "lb"),
  19699. name: "Back",
  19700. image: {
  19701. source: "./media/characters/scramble/back.svg",
  19702. extra: 826 / 737,
  19703. bottom: 0.002
  19704. }
  19705. },
  19706. },
  19707. [
  19708. {
  19709. name: "Normal",
  19710. height: math.unit(5 + 4 / 12, "feet"),
  19711. default: true
  19712. },
  19713. ]
  19714. ))
  19715. characterMakers.push(() => makeCharacter(
  19716. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19717. {
  19718. side: {
  19719. height: math.unit(6 + 2 / 12, "feet"),
  19720. weight: math.unit(190, "lb"),
  19721. name: "Side",
  19722. image: {
  19723. source: "./media/characters/biscuit/side.svg",
  19724. extra: 858 / 791,
  19725. bottom: 0.044
  19726. }
  19727. },
  19728. },
  19729. [
  19730. {
  19731. name: "Normal",
  19732. height: math.unit(6 + 2 / 12, "feet"),
  19733. default: true
  19734. },
  19735. ]
  19736. ))
  19737. characterMakers.push(() => makeCharacter(
  19738. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19739. {
  19740. front: {
  19741. height: math.unit(5 + 2 / 12, "feet"),
  19742. weight: math.unit(120, "lb"),
  19743. name: "Front",
  19744. image: {
  19745. source: "./media/characters/poffin/front.svg",
  19746. extra: 786 / 680,
  19747. bottom: 0.005
  19748. }
  19749. },
  19750. },
  19751. [
  19752. {
  19753. name: "Normal",
  19754. height: math.unit(5 + 2 / 12, "feet"),
  19755. default: true
  19756. },
  19757. ]
  19758. ))
  19759. characterMakers.push(() => makeCharacter(
  19760. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19761. {
  19762. front: {
  19763. height: math.unit(6 + 3 / 12, "feet"),
  19764. weight: math.unit(519, "lb"),
  19765. name: "Front",
  19766. image: {
  19767. source: "./media/characters/dhari/front.svg",
  19768. extra: 1048 / 946,
  19769. bottom: 0.015
  19770. }
  19771. },
  19772. back: {
  19773. height: math.unit(6 + 3 / 12, "feet"),
  19774. weight: math.unit(519, "lb"),
  19775. name: "Back",
  19776. image: {
  19777. source: "./media/characters/dhari/back.svg",
  19778. extra: 1048 / 931,
  19779. bottom: 0.005
  19780. }
  19781. },
  19782. frontDressed: {
  19783. height: math.unit(6 + 3 / 12, "feet"),
  19784. weight: math.unit(519, "lb"),
  19785. name: "Front (Dressed)",
  19786. image: {
  19787. source: "./media/characters/dhari/front-dressed.svg",
  19788. extra: 1713 / 1546,
  19789. bottom: 0.02
  19790. }
  19791. },
  19792. backDressed: {
  19793. height: math.unit(6 + 3 / 12, "feet"),
  19794. weight: math.unit(519, "lb"),
  19795. name: "Back (Dressed)",
  19796. image: {
  19797. source: "./media/characters/dhari/back-dressed.svg",
  19798. extra: 1699 / 1537,
  19799. bottom: 0.01
  19800. }
  19801. },
  19802. maw: {
  19803. height: math.unit(0.95, "feet"),
  19804. name: "Maw",
  19805. image: {
  19806. source: "./media/characters/dhari/maw.svg"
  19807. }
  19808. },
  19809. wereFront: {
  19810. height: math.unit(12 + 8 / 12, "feet"),
  19811. weight: math.unit(4000, "lb"),
  19812. name: "Front (Were)",
  19813. image: {
  19814. source: "./media/characters/dhari/were-front.svg",
  19815. extra: 1065 / 969,
  19816. bottom: 0.015
  19817. }
  19818. },
  19819. wereBack: {
  19820. height: math.unit(12 + 8 / 12, "feet"),
  19821. weight: math.unit(4000, "lb"),
  19822. name: "Back (Were)",
  19823. image: {
  19824. source: "./media/characters/dhari/were-back.svg",
  19825. extra: 1065 / 969,
  19826. bottom: 0.012
  19827. }
  19828. },
  19829. wereMaw: {
  19830. height: math.unit(0.625, "meters"),
  19831. name: "Maw (Were)",
  19832. image: {
  19833. source: "./media/characters/dhari/were-maw.svg"
  19834. }
  19835. },
  19836. },
  19837. [
  19838. {
  19839. name: "Normal",
  19840. height: math.unit(6 + 3 / 12, "feet"),
  19841. default: true
  19842. },
  19843. ]
  19844. ))
  19845. characterMakers.push(() => makeCharacter(
  19846. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19847. {
  19848. anthro: {
  19849. height: math.unit(5 + 7 / 12, "feet"),
  19850. weight: math.unit(175, "lb"),
  19851. name: "Anthro",
  19852. image: {
  19853. source: "./media/characters/rena-dyne/anthro.svg",
  19854. extra: 1849 / 1785,
  19855. bottom: 0.005
  19856. }
  19857. },
  19858. taur: {
  19859. height: math.unit(15 + 6 / 12, "feet"),
  19860. weight: math.unit(8000, "lb"),
  19861. name: "Taur",
  19862. image: {
  19863. source: "./media/characters/rena-dyne/taur.svg",
  19864. extra: 2315 / 2234,
  19865. bottom: 0.033
  19866. }
  19867. },
  19868. },
  19869. [
  19870. {
  19871. name: "Normal",
  19872. height: math.unit(5 + 7 / 12, "feet"),
  19873. default: true
  19874. },
  19875. ]
  19876. ))
  19877. characterMakers.push(() => makeCharacter(
  19878. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19879. {
  19880. front: {
  19881. height: math.unit(8, "feet"),
  19882. weight: math.unit(600, "lb"),
  19883. name: "Front",
  19884. image: {
  19885. source: "./media/characters/weremeep/front.svg",
  19886. extra: 967 / 862,
  19887. bottom: 0.01
  19888. }
  19889. },
  19890. },
  19891. [
  19892. {
  19893. name: "Normal",
  19894. height: math.unit(8, "feet"),
  19895. default: true
  19896. },
  19897. {
  19898. name: "Lorg",
  19899. height: math.unit(12, "feet")
  19900. },
  19901. {
  19902. name: "Oh Lawd She Comin'",
  19903. height: math.unit(20, "feet")
  19904. },
  19905. ]
  19906. ))
  19907. characterMakers.push(() => makeCharacter(
  19908. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19909. {
  19910. front: {
  19911. height: math.unit(4, "feet"),
  19912. weight: math.unit(90, "lb"),
  19913. name: "Front",
  19914. image: {
  19915. source: "./media/characters/reza/front.svg",
  19916. extra: 1183 / 1111,
  19917. bottom: 0.017
  19918. }
  19919. },
  19920. back: {
  19921. height: math.unit(4, "feet"),
  19922. weight: math.unit(90, "lb"),
  19923. name: "Back",
  19924. image: {
  19925. source: "./media/characters/reza/back.svg",
  19926. extra: 1183 / 1111,
  19927. bottom: 0.01
  19928. }
  19929. },
  19930. drake: {
  19931. height: math.unit(30, "feet"),
  19932. weight: math.unit(246960, "lb"),
  19933. name: "Drake",
  19934. image: {
  19935. source: "./media/characters/reza/drake.svg",
  19936. extra: 2350 / 2024,
  19937. bottom: 60.7 / 2403
  19938. }
  19939. },
  19940. },
  19941. [
  19942. {
  19943. name: "Normal",
  19944. height: math.unit(4, "feet"),
  19945. default: true
  19946. },
  19947. ]
  19948. ))
  19949. characterMakers.push(() => makeCharacter(
  19950. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19951. {
  19952. side: {
  19953. height: math.unit(15, "feet"),
  19954. weight: math.unit(14, "tons"),
  19955. name: "Side",
  19956. image: {
  19957. source: "./media/characters/athea/side.svg",
  19958. extra: 960 / 540,
  19959. bottom: 0.003
  19960. }
  19961. },
  19962. sitting: {
  19963. height: math.unit(6 * 2.85, "feet"),
  19964. weight: math.unit(14, "tons"),
  19965. name: "Sitting",
  19966. image: {
  19967. source: "./media/characters/athea/sitting.svg",
  19968. extra: 621 / 581,
  19969. bottom: 0.075
  19970. }
  19971. },
  19972. maw: {
  19973. height: math.unit(7.59498031496063, "feet"),
  19974. name: "Maw",
  19975. image: {
  19976. source: "./media/characters/athea/maw.svg"
  19977. }
  19978. },
  19979. },
  19980. [
  19981. {
  19982. name: "Lap Cat",
  19983. height: math.unit(2.5, "feet")
  19984. },
  19985. {
  19986. name: "Minimacro",
  19987. height: math.unit(15, "feet"),
  19988. default: true
  19989. },
  19990. {
  19991. name: "Macro",
  19992. height: math.unit(120, "feet")
  19993. },
  19994. {
  19995. name: "Macro+",
  19996. height: math.unit(640, "feet")
  19997. },
  19998. {
  19999. name: "Colossus",
  20000. height: math.unit(2.2, "miles")
  20001. },
  20002. ]
  20003. ))
  20004. characterMakers.push(() => makeCharacter(
  20005. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20006. {
  20007. front: {
  20008. height: math.unit(8 + 8 / 12, "feet"),
  20009. weight: math.unit(130, "kg"),
  20010. name: "Front",
  20011. image: {
  20012. source: "./media/characters/seroko/front.svg",
  20013. extra: 1385 / 1280,
  20014. bottom: 0.025
  20015. }
  20016. },
  20017. back: {
  20018. height: math.unit(8 + 8 / 12, "feet"),
  20019. weight: math.unit(130, "kg"),
  20020. name: "Back",
  20021. image: {
  20022. source: "./media/characters/seroko/back.svg",
  20023. extra: 1369 / 1238,
  20024. bottom: 0.018
  20025. }
  20026. },
  20027. frontDressed: {
  20028. height: math.unit(8 + 8 / 12, "feet"),
  20029. weight: math.unit(130, "kg"),
  20030. name: "Front (Dressed)",
  20031. image: {
  20032. source: "./media/characters/seroko/front-dressed.svg",
  20033. extra: 1366 / 1275,
  20034. bottom: 0.03
  20035. }
  20036. },
  20037. },
  20038. [
  20039. {
  20040. name: "Normal",
  20041. height: math.unit(8 + 8 / 12, "feet"),
  20042. default: true
  20043. },
  20044. ]
  20045. ))
  20046. characterMakers.push(() => makeCharacter(
  20047. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20048. {
  20049. front: {
  20050. height: math.unit(5.5, "feet"),
  20051. weight: math.unit(160, "lb"),
  20052. name: "Front",
  20053. image: {
  20054. source: "./media/characters/quatzi/front.svg",
  20055. extra: 2346 / 2242,
  20056. bottom: 0.015
  20057. }
  20058. },
  20059. },
  20060. [
  20061. {
  20062. name: "Normal",
  20063. height: math.unit(5.5, "feet"),
  20064. default: true
  20065. },
  20066. {
  20067. name: "Big",
  20068. height: math.unit(7.7, "feet")
  20069. },
  20070. ]
  20071. ))
  20072. characterMakers.push(() => makeCharacter(
  20073. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20074. {
  20075. front: {
  20076. height: math.unit(5 + 11 / 12, "feet"),
  20077. weight: math.unit(180, "lb"),
  20078. name: "Front",
  20079. image: {
  20080. source: "./media/characters/sen/front.svg",
  20081. extra: 1321 / 1254,
  20082. bottom: 0.015
  20083. }
  20084. },
  20085. side: {
  20086. height: math.unit(5 + 11 / 12, "feet"),
  20087. weight: math.unit(180, "lb"),
  20088. name: "Side",
  20089. image: {
  20090. source: "./media/characters/sen/side.svg",
  20091. extra: 1321 / 1254,
  20092. bottom: 0.007
  20093. }
  20094. },
  20095. back: {
  20096. height: math.unit(5 + 11 / 12, "feet"),
  20097. weight: math.unit(180, "lb"),
  20098. name: "Back",
  20099. image: {
  20100. source: "./media/characters/sen/back.svg",
  20101. extra: 1321 / 1254
  20102. }
  20103. },
  20104. },
  20105. [
  20106. {
  20107. name: "Normal",
  20108. height: math.unit(5 + 11 / 12, "feet"),
  20109. default: true
  20110. },
  20111. ]
  20112. ))
  20113. characterMakers.push(() => makeCharacter(
  20114. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20115. {
  20116. front: {
  20117. height: math.unit(166.6, "cm"),
  20118. weight: math.unit(66.6, "kg"),
  20119. name: "Front",
  20120. image: {
  20121. source: "./media/characters/fruity/front.svg",
  20122. extra: 1510 / 1386,
  20123. bottom: 0.04
  20124. }
  20125. },
  20126. back: {
  20127. height: math.unit(166.6, "cm"),
  20128. weight: math.unit(66.6, "lb"),
  20129. name: "Back",
  20130. image: {
  20131. source: "./media/characters/fruity/back.svg",
  20132. extra: 1563 / 1435,
  20133. bottom: 0.005
  20134. }
  20135. },
  20136. },
  20137. [
  20138. {
  20139. name: "Normal",
  20140. height: math.unit(166.6, "cm"),
  20141. default: true
  20142. },
  20143. {
  20144. name: "Demonic",
  20145. height: math.unit(166.6, "feet")
  20146. },
  20147. ]
  20148. ))
  20149. characterMakers.push(() => makeCharacter(
  20150. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20151. {
  20152. side: {
  20153. height: math.unit(10, "feet"),
  20154. weight: math.unit(500, "lb"),
  20155. name: "Side",
  20156. image: {
  20157. source: "./media/characters/zost/side.svg",
  20158. extra: 966 / 880,
  20159. bottom: 0.075
  20160. }
  20161. },
  20162. mawFront: {
  20163. height: math.unit(1.08, "meters"),
  20164. name: "Maw (Front)",
  20165. image: {
  20166. source: "./media/characters/zost/maw-front.svg"
  20167. }
  20168. },
  20169. mawSide: {
  20170. height: math.unit(2.66, "feet"),
  20171. name: "Maw (Side)",
  20172. image: {
  20173. source: "./media/characters/zost/maw-side.svg"
  20174. }
  20175. },
  20176. },
  20177. [
  20178. {
  20179. name: "Normal",
  20180. height: math.unit(10, "feet"),
  20181. default: true
  20182. },
  20183. ]
  20184. ))
  20185. characterMakers.push(() => makeCharacter(
  20186. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20187. {
  20188. front: {
  20189. height: math.unit(5 + 4 / 12, "feet"),
  20190. weight: math.unit(120, "lb"),
  20191. name: "Front",
  20192. image: {
  20193. source: "./media/characters/luci/front.svg",
  20194. extra: 1985 / 1884,
  20195. bottom: 0.04
  20196. }
  20197. },
  20198. back: {
  20199. height: math.unit(5 + 4 / 12, "feet"),
  20200. weight: math.unit(120, "lb"),
  20201. name: "Back",
  20202. image: {
  20203. source: "./media/characters/luci/back.svg",
  20204. extra: 1892 / 1791,
  20205. bottom: 0.002
  20206. }
  20207. },
  20208. },
  20209. [
  20210. {
  20211. name: "Normal",
  20212. height: math.unit(5 + 4 / 12, "feet"),
  20213. default: true
  20214. },
  20215. ]
  20216. ))
  20217. characterMakers.push(() => makeCharacter(
  20218. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20219. {
  20220. front: {
  20221. height: math.unit(1500, "feet"),
  20222. weight: math.unit(3.8e6, "tons"),
  20223. name: "Front",
  20224. image: {
  20225. source: "./media/characters/2th/front.svg",
  20226. extra: 3489 / 3350,
  20227. bottom: 0.1
  20228. }
  20229. },
  20230. foot: {
  20231. height: math.unit(461, "feet"),
  20232. name: "Foot",
  20233. image: {
  20234. source: "./media/characters/2th/foot.svg"
  20235. }
  20236. },
  20237. },
  20238. [
  20239. {
  20240. name: "\"Micro\"",
  20241. height: math.unit(15 + 7 / 12, "feet")
  20242. },
  20243. {
  20244. name: "Normal",
  20245. height: math.unit(1500, "feet"),
  20246. default: true
  20247. },
  20248. {
  20249. name: "Macro",
  20250. height: math.unit(5000, "feet")
  20251. },
  20252. {
  20253. name: "Megamacro",
  20254. height: math.unit(15, "miles")
  20255. },
  20256. {
  20257. name: "Gigamacro",
  20258. height: math.unit(4000, "miles")
  20259. },
  20260. {
  20261. name: "Galactic",
  20262. height: math.unit(50, "AU")
  20263. },
  20264. ]
  20265. ))
  20266. characterMakers.push(() => makeCharacter(
  20267. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20268. {
  20269. front: {
  20270. height: math.unit(5 + 6 / 12, "feet"),
  20271. weight: math.unit(220, "lb"),
  20272. name: "Front",
  20273. image: {
  20274. source: "./media/characters/amethyst/front.svg",
  20275. extra: 2078 / 2040,
  20276. bottom: 0.045
  20277. }
  20278. },
  20279. back: {
  20280. height: math.unit(5 + 6 / 12, "feet"),
  20281. weight: math.unit(220, "lb"),
  20282. name: "Back",
  20283. image: {
  20284. source: "./media/characters/amethyst/back.svg",
  20285. extra: 2021 / 1989,
  20286. bottom: 0.02
  20287. }
  20288. },
  20289. },
  20290. [
  20291. {
  20292. name: "Normal",
  20293. height: math.unit(5 + 6 / 12, "feet"),
  20294. default: true
  20295. },
  20296. ]
  20297. ))
  20298. characterMakers.push(() => makeCharacter(
  20299. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20300. {
  20301. front: {
  20302. height: math.unit(4 + 11 / 12, "feet"),
  20303. weight: math.unit(120, "lb"),
  20304. name: "Front",
  20305. image: {
  20306. source: "./media/characters/yumi-akiyama/front.svg",
  20307. extra: 1327 / 1235,
  20308. bottom: 0.02
  20309. }
  20310. },
  20311. back: {
  20312. height: math.unit(4 + 11 / 12, "feet"),
  20313. weight: math.unit(120, "lb"),
  20314. name: "Back",
  20315. image: {
  20316. source: "./media/characters/yumi-akiyama/back.svg",
  20317. extra: 1287 / 1245,
  20318. bottom: 0.002
  20319. }
  20320. },
  20321. },
  20322. [
  20323. {
  20324. name: "Galactic",
  20325. height: math.unit(50, "galaxies"),
  20326. default: true
  20327. },
  20328. {
  20329. name: "Universal",
  20330. height: math.unit(100, "universes")
  20331. },
  20332. ]
  20333. ))
  20334. characterMakers.push(() => makeCharacter(
  20335. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20336. {
  20337. front: {
  20338. height: math.unit(8, "feet"),
  20339. weight: math.unit(500, "lb"),
  20340. name: "Front",
  20341. image: {
  20342. source: "./media/characters/rifter-yrmori/front.svg",
  20343. extra: 1180 / 1125,
  20344. bottom: 0.02
  20345. }
  20346. },
  20347. back: {
  20348. height: math.unit(8, "feet"),
  20349. weight: math.unit(500, "lb"),
  20350. name: "Back",
  20351. image: {
  20352. source: "./media/characters/rifter-yrmori/back.svg",
  20353. extra: 1190 / 1145,
  20354. bottom: 0.001
  20355. }
  20356. },
  20357. wings: {
  20358. height: math.unit(7.75, "feet"),
  20359. weight: math.unit(500, "lb"),
  20360. name: "Wings",
  20361. image: {
  20362. source: "./media/characters/rifter-yrmori/wings.svg",
  20363. extra: 1357 / 1285
  20364. }
  20365. },
  20366. maw: {
  20367. height: math.unit(0.8, "feet"),
  20368. name: "Maw",
  20369. image: {
  20370. source: "./media/characters/rifter-yrmori/maw.svg"
  20371. }
  20372. },
  20373. mawfront: {
  20374. height: math.unit(1.45, "feet"),
  20375. name: "Maw (Front)",
  20376. image: {
  20377. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20378. }
  20379. },
  20380. },
  20381. [
  20382. {
  20383. name: "Normal",
  20384. height: math.unit(8, "feet"),
  20385. default: true
  20386. },
  20387. {
  20388. name: "Macro",
  20389. height: math.unit(42, "meters")
  20390. },
  20391. ]
  20392. ))
  20393. characterMakers.push(() => makeCharacter(
  20394. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20395. {
  20396. were: {
  20397. height: math.unit(25 + 6 / 12, "feet"),
  20398. weight: math.unit(10000, "lb"),
  20399. name: "Were",
  20400. image: {
  20401. source: "./media/characters/tahajin/were.svg",
  20402. extra: 801 / 770,
  20403. bottom: 0.042
  20404. }
  20405. },
  20406. aquatic: {
  20407. height: math.unit(6 + 4 / 12, "feet"),
  20408. weight: math.unit(160, "lb"),
  20409. name: "Aquatic",
  20410. image: {
  20411. source: "./media/characters/tahajin/aquatic.svg",
  20412. extra: 572 / 542,
  20413. bottom: 0.04
  20414. }
  20415. },
  20416. chow: {
  20417. height: math.unit(8 + 11 / 12, "feet"),
  20418. weight: math.unit(450, "lb"),
  20419. name: "Chow",
  20420. image: {
  20421. source: "./media/characters/tahajin/chow.svg",
  20422. extra: 660 / 640,
  20423. bottom: 0.015
  20424. }
  20425. },
  20426. demiNaga: {
  20427. height: math.unit(6 + 8 / 12, "feet"),
  20428. weight: math.unit(300, "lb"),
  20429. name: "Demi Naga",
  20430. image: {
  20431. source: "./media/characters/tahajin/demi-naga.svg",
  20432. extra: 643 / 615,
  20433. bottom: 0.1
  20434. }
  20435. },
  20436. data: {
  20437. height: math.unit(5, "inches"),
  20438. weight: math.unit(0.1, "lb"),
  20439. name: "Data",
  20440. image: {
  20441. source: "./media/characters/tahajin/data.svg"
  20442. }
  20443. },
  20444. fluu: {
  20445. height: math.unit(5 + 7 / 12, "feet"),
  20446. weight: math.unit(140, "lb"),
  20447. name: "Fluu",
  20448. image: {
  20449. source: "./media/characters/tahajin/fluu.svg",
  20450. extra: 628 / 592,
  20451. bottom: 0.02
  20452. }
  20453. },
  20454. starWarrior: {
  20455. height: math.unit(4 + 5 / 12, "feet"),
  20456. weight: math.unit(50, "lb"),
  20457. name: "Star Warrior",
  20458. image: {
  20459. source: "./media/characters/tahajin/star-warrior.svg"
  20460. }
  20461. },
  20462. },
  20463. [
  20464. {
  20465. name: "Normal",
  20466. height: math.unit(25 + 6 / 12, "feet"),
  20467. default: true
  20468. },
  20469. ]
  20470. ))
  20471. characterMakers.push(() => makeCharacter(
  20472. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20473. {
  20474. front: {
  20475. height: math.unit(8, "feet"),
  20476. weight: math.unit(350, "lb"),
  20477. name: "Front",
  20478. image: {
  20479. source: "./media/characters/gabira/front.svg",
  20480. extra: 608 / 580,
  20481. bottom: 0.03
  20482. }
  20483. },
  20484. back: {
  20485. height: math.unit(8, "feet"),
  20486. weight: math.unit(350, "lb"),
  20487. name: "Back",
  20488. image: {
  20489. source: "./media/characters/gabira/back.svg",
  20490. extra: 608 / 580,
  20491. bottom: 0.03
  20492. }
  20493. },
  20494. },
  20495. [
  20496. {
  20497. name: "Normal",
  20498. height: math.unit(8, "feet"),
  20499. default: true
  20500. },
  20501. ]
  20502. ))
  20503. characterMakers.push(() => makeCharacter(
  20504. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20505. {
  20506. front: {
  20507. height: math.unit(5 + 3 / 12, "feet"),
  20508. weight: math.unit(137, "lb"),
  20509. name: "Front",
  20510. image: {
  20511. source: "./media/characters/sasha-katraine/front.svg",
  20512. bottom: 0.045
  20513. }
  20514. },
  20515. },
  20516. [
  20517. {
  20518. name: "Micro",
  20519. height: math.unit(5, "inches")
  20520. },
  20521. {
  20522. name: "Normal",
  20523. height: math.unit(5 + 3 / 12, "feet"),
  20524. default: true
  20525. },
  20526. ]
  20527. ))
  20528. characterMakers.push(() => makeCharacter(
  20529. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20530. {
  20531. side: {
  20532. height: math.unit(4, "inches"),
  20533. weight: math.unit(200, "grams"),
  20534. name: "Side",
  20535. image: {
  20536. source: "./media/characters/der/side.svg",
  20537. extra: 719 / 400,
  20538. bottom: 30.6 / 749.9187
  20539. }
  20540. },
  20541. },
  20542. [
  20543. {
  20544. name: "Micro",
  20545. height: math.unit(4, "inches"),
  20546. default: true
  20547. },
  20548. ]
  20549. ))
  20550. characterMakers.push(() => makeCharacter(
  20551. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20552. {
  20553. side: {
  20554. height: math.unit(30, "meters"),
  20555. weight: math.unit(700, "tonnes"),
  20556. name: "Side",
  20557. image: {
  20558. source: "./media/characters/fixerdragon/side.svg",
  20559. extra: (1293.0514 - 116.03) / 1106.86,
  20560. bottom: 116.03 / 1293.0514
  20561. }
  20562. },
  20563. },
  20564. [
  20565. {
  20566. name: "Planck",
  20567. height: math.unit(1.6e-35, "meters")
  20568. },
  20569. {
  20570. name: "Micro",
  20571. height: math.unit(0.4, "meters")
  20572. },
  20573. {
  20574. name: "Normal",
  20575. height: math.unit(30, "meters"),
  20576. default: true
  20577. },
  20578. {
  20579. name: "Megamacro",
  20580. height: math.unit(1.2, "megameters")
  20581. },
  20582. {
  20583. name: "Teramacro",
  20584. height: math.unit(130, "terameters")
  20585. },
  20586. {
  20587. name: "Yottamacro",
  20588. height: math.unit(6200, "yottameters")
  20589. },
  20590. ]
  20591. ));
  20592. characterMakers.push(() => makeCharacter(
  20593. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20594. {
  20595. front: {
  20596. height: math.unit(8, "feet"),
  20597. weight: math.unit(250, "lb"),
  20598. name: "Front",
  20599. image: {
  20600. source: "./media/characters/kite/front.svg",
  20601. extra: 2796 / 2659,
  20602. bottom: 0.002
  20603. }
  20604. },
  20605. },
  20606. [
  20607. {
  20608. name: "Normal",
  20609. height: math.unit(8, "feet"),
  20610. default: true
  20611. },
  20612. {
  20613. name: "Macro",
  20614. height: math.unit(360, "feet")
  20615. },
  20616. {
  20617. name: "Megamacro",
  20618. height: math.unit(1500, "feet")
  20619. },
  20620. ]
  20621. ))
  20622. characterMakers.push(() => makeCharacter(
  20623. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20624. {
  20625. front: {
  20626. height: math.unit(5 + 10 / 12, "feet"),
  20627. weight: math.unit(150, "lb"),
  20628. name: "Front",
  20629. image: {
  20630. source: "./media/characters/poojawa-vynar/front.svg",
  20631. extra: (1506.1547 - 55) / 1356.6,
  20632. bottom: 55 / 1506.1547
  20633. }
  20634. },
  20635. frontTailless: {
  20636. height: math.unit(5 + 10 / 12, "feet"),
  20637. weight: math.unit(150, "lb"),
  20638. name: "Front (Tailless)",
  20639. image: {
  20640. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20641. extra: (1506.1547 - 55) / 1356.6,
  20642. bottom: 55 / 1506.1547
  20643. }
  20644. },
  20645. },
  20646. [
  20647. {
  20648. name: "Normal",
  20649. height: math.unit(5 + 10 / 12, "feet"),
  20650. default: true
  20651. },
  20652. ]
  20653. ))
  20654. characterMakers.push(() => makeCharacter(
  20655. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20656. {
  20657. front: {
  20658. height: math.unit(293, "meters"),
  20659. weight: math.unit(70400, "tons"),
  20660. name: "Front",
  20661. image: {
  20662. source: "./media/characters/violette/front.svg",
  20663. extra: 1227 / 1180,
  20664. bottom: 0.005
  20665. }
  20666. },
  20667. back: {
  20668. height: math.unit(293, "meters"),
  20669. weight: math.unit(70400, "tons"),
  20670. name: "Back",
  20671. image: {
  20672. source: "./media/characters/violette/back.svg",
  20673. extra: 1227 / 1180,
  20674. bottom: 0.005
  20675. }
  20676. },
  20677. },
  20678. [
  20679. {
  20680. name: "Macro",
  20681. height: math.unit(293, "meters"),
  20682. default: true
  20683. },
  20684. ]
  20685. ))
  20686. characterMakers.push(() => makeCharacter(
  20687. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20688. {
  20689. front: {
  20690. height: math.unit(1050, "feet"),
  20691. weight: math.unit(200000, "tons"),
  20692. name: "Front",
  20693. image: {
  20694. source: "./media/characters/alessandra/front.svg",
  20695. extra: 960 / 912,
  20696. bottom: 0.06
  20697. }
  20698. },
  20699. },
  20700. [
  20701. {
  20702. name: "Macro",
  20703. height: math.unit(1050, "feet")
  20704. },
  20705. {
  20706. name: "Macro+",
  20707. height: math.unit(900, "meters"),
  20708. default: true
  20709. },
  20710. ]
  20711. ))
  20712. characterMakers.push(() => makeCharacter(
  20713. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20714. {
  20715. front: {
  20716. height: math.unit(5, "feet"),
  20717. weight: math.unit(187, "lb"),
  20718. name: "Front",
  20719. image: {
  20720. source: "./media/characters/person/front.svg",
  20721. extra: 3087 / 2945,
  20722. bottom: 91 / 3181
  20723. }
  20724. },
  20725. },
  20726. [
  20727. {
  20728. name: "Micro",
  20729. height: math.unit(3, "inches")
  20730. },
  20731. {
  20732. name: "Normal",
  20733. height: math.unit(5, "feet"),
  20734. default: true
  20735. },
  20736. {
  20737. name: "Macro",
  20738. height: math.unit(90, "feet")
  20739. },
  20740. {
  20741. name: "Max Size",
  20742. height: math.unit(280, "feet")
  20743. },
  20744. ]
  20745. ))
  20746. characterMakers.push(() => makeCharacter(
  20747. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20748. {
  20749. front: {
  20750. height: math.unit(4.5, "meters"),
  20751. weight: math.unit(3200, "lb"),
  20752. name: "Front",
  20753. image: {
  20754. source: "./media/characters/ty/front.svg",
  20755. extra: 1038 / 960,
  20756. bottom: 31.156 / 1068
  20757. }
  20758. },
  20759. back: {
  20760. height: math.unit(4.5, "meters"),
  20761. weight: math.unit(3200, "lb"),
  20762. name: "Back",
  20763. image: {
  20764. source: "./media/characters/ty/back.svg",
  20765. extra: 1044 / 966,
  20766. bottom: 7.48 / 1049
  20767. }
  20768. },
  20769. },
  20770. [
  20771. {
  20772. name: "Normal",
  20773. height: math.unit(4.5, "meters"),
  20774. default: true
  20775. },
  20776. ]
  20777. ))
  20778. characterMakers.push(() => makeCharacter(
  20779. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20780. {
  20781. front: {
  20782. height: math.unit(5 + 4 / 12, "feet"),
  20783. weight: math.unit(115, "lb"),
  20784. name: "Front",
  20785. image: {
  20786. source: "./media/characters/rocky/front.svg",
  20787. extra: 1012 / 975,
  20788. bottom: 54 / 1066
  20789. }
  20790. },
  20791. },
  20792. [
  20793. {
  20794. name: "Normal",
  20795. height: math.unit(5 + 4 / 12, "feet"),
  20796. default: true
  20797. },
  20798. ]
  20799. ))
  20800. characterMakers.push(() => makeCharacter(
  20801. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20802. {
  20803. upright: {
  20804. height: math.unit(6, "meters"),
  20805. weight: math.unit(4000, "kg"),
  20806. name: "Upright",
  20807. image: {
  20808. source: "./media/characters/ruin/upright.svg",
  20809. extra: 668 / 661,
  20810. bottom: 42 / 799.8396
  20811. }
  20812. },
  20813. },
  20814. [
  20815. {
  20816. name: "Normal",
  20817. height: math.unit(6, "meters"),
  20818. default: true
  20819. },
  20820. ]
  20821. ))
  20822. characterMakers.push(() => makeCharacter(
  20823. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20824. {
  20825. front: {
  20826. height: math.unit(5, "feet"),
  20827. weight: math.unit(106, "lb"),
  20828. name: "Front",
  20829. image: {
  20830. source: "./media/characters/robin/front.svg",
  20831. extra: 862 / 799,
  20832. bottom: 42.4 / 914.8856
  20833. }
  20834. },
  20835. },
  20836. [
  20837. {
  20838. name: "Normal",
  20839. height: math.unit(5, "feet"),
  20840. default: true
  20841. },
  20842. ]
  20843. ))
  20844. characterMakers.push(() => makeCharacter(
  20845. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20846. {
  20847. side: {
  20848. height: math.unit(3, "feet"),
  20849. weight: math.unit(225, "lb"),
  20850. name: "Side",
  20851. image: {
  20852. source: "./media/characters/saian/side.svg",
  20853. extra: 566 / 356,
  20854. bottom: 79.7 / 643
  20855. }
  20856. },
  20857. maw: {
  20858. height: math.unit(2.85, "feet"),
  20859. name: "Maw",
  20860. image: {
  20861. source: "./media/characters/saian/maw.svg"
  20862. }
  20863. },
  20864. },
  20865. [
  20866. {
  20867. name: "Normal",
  20868. height: math.unit(3, "feet"),
  20869. default: true
  20870. },
  20871. ]
  20872. ))
  20873. characterMakers.push(() => makeCharacter(
  20874. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20875. {
  20876. side: {
  20877. height: math.unit(8, "feet"),
  20878. weight: math.unit(300, "lb"),
  20879. name: "Side",
  20880. image: {
  20881. source: "./media/characters/equus-silvermane/side.svg",
  20882. extra: 2176 / 2050,
  20883. bottom: 65.7 / 2245
  20884. }
  20885. },
  20886. front: {
  20887. height: math.unit(8, "feet"),
  20888. weight: math.unit(300, "lb"),
  20889. name: "Front",
  20890. image: {
  20891. source: "./media/characters/equus-silvermane/front.svg",
  20892. extra: 4633 / 4400,
  20893. bottom: 71.3 / 4706.915
  20894. }
  20895. },
  20896. sideStepping: {
  20897. height: math.unit(8, "feet"),
  20898. weight: math.unit(300, "lb"),
  20899. name: "Side (Stepping)",
  20900. image: {
  20901. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20902. extra: 1968 / 1860,
  20903. bottom: 16.4 / 1989
  20904. }
  20905. },
  20906. },
  20907. [
  20908. {
  20909. name: "Normal",
  20910. height: math.unit(8, "feet")
  20911. },
  20912. {
  20913. name: "Minimacro",
  20914. height: math.unit(75, "feet"),
  20915. default: true
  20916. },
  20917. {
  20918. name: "Macro",
  20919. height: math.unit(150, "feet")
  20920. },
  20921. {
  20922. name: "Macro+",
  20923. height: math.unit(1000, "feet")
  20924. },
  20925. {
  20926. name: "Megamacro",
  20927. height: math.unit(1, "mile")
  20928. },
  20929. ]
  20930. ))
  20931. characterMakers.push(() => makeCharacter(
  20932. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20933. {
  20934. side: {
  20935. height: math.unit(20, "feet"),
  20936. weight: math.unit(30000, "kg"),
  20937. name: "Side",
  20938. image: {
  20939. source: "./media/characters/windar/side.svg",
  20940. extra: 1491 / 1248,
  20941. bottom: 82.56 / 1568
  20942. }
  20943. },
  20944. },
  20945. [
  20946. {
  20947. name: "Normal",
  20948. height: math.unit(20, "feet"),
  20949. default: true
  20950. },
  20951. ]
  20952. ))
  20953. characterMakers.push(() => makeCharacter(
  20954. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20955. {
  20956. side: {
  20957. height: math.unit(15.66, "feet"),
  20958. weight: math.unit(150, "lb"),
  20959. name: "Side",
  20960. image: {
  20961. source: "./media/characters/melody/side.svg",
  20962. extra: 1097 / 944,
  20963. bottom: 11.8 / 1109
  20964. }
  20965. },
  20966. sideOutfit: {
  20967. height: math.unit(15.66, "feet"),
  20968. weight: math.unit(150, "lb"),
  20969. name: "Side (Outfit)",
  20970. image: {
  20971. source: "./media/characters/melody/side-outfit.svg",
  20972. extra: 1097 / 944,
  20973. bottom: 11.8 / 1109
  20974. }
  20975. },
  20976. },
  20977. [
  20978. {
  20979. name: "Normal",
  20980. height: math.unit(15.66, "feet"),
  20981. default: true
  20982. },
  20983. ]
  20984. ))
  20985. characterMakers.push(() => makeCharacter(
  20986. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20987. {
  20988. front: {
  20989. height: math.unit(8, "feet"),
  20990. weight: math.unit(325, "lb"),
  20991. name: "Front",
  20992. image: {
  20993. source: "./media/characters/windera/front.svg",
  20994. extra: 3180 / 2845,
  20995. bottom: 178 / 3365
  20996. }
  20997. },
  20998. },
  20999. [
  21000. {
  21001. name: "Normal",
  21002. height: math.unit(8, "feet"),
  21003. default: true
  21004. },
  21005. ]
  21006. ))
  21007. characterMakers.push(() => makeCharacter(
  21008. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21009. {
  21010. front: {
  21011. height: math.unit(28.75, "feet"),
  21012. weight: math.unit(2000, "kg"),
  21013. name: "Front",
  21014. image: {
  21015. source: "./media/characters/sonear/front.svg",
  21016. extra: 1041.1 / 964.9,
  21017. bottom: 53.7 / 1096.6
  21018. }
  21019. },
  21020. },
  21021. [
  21022. {
  21023. name: "Normal",
  21024. height: math.unit(28.75, "feet"),
  21025. default: true
  21026. },
  21027. ]
  21028. ))
  21029. characterMakers.push(() => makeCharacter(
  21030. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21031. {
  21032. side: {
  21033. height: math.unit(25.5, "feet"),
  21034. weight: math.unit(23000, "kg"),
  21035. name: "Side",
  21036. image: {
  21037. source: "./media/characters/kanara/side.svg"
  21038. }
  21039. },
  21040. },
  21041. [
  21042. {
  21043. name: "Normal",
  21044. height: math.unit(25.5, "feet"),
  21045. default: true
  21046. },
  21047. ]
  21048. ))
  21049. characterMakers.push(() => makeCharacter(
  21050. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21051. {
  21052. side: {
  21053. height: math.unit(10, "feet"),
  21054. weight: math.unit(1000, "kg"),
  21055. name: "Side",
  21056. image: {
  21057. source: "./media/characters/ereus/side.svg",
  21058. extra: 1157 / 959,
  21059. bottom: 153 / 1312.5
  21060. }
  21061. },
  21062. },
  21063. [
  21064. {
  21065. name: "Normal",
  21066. height: math.unit(10, "feet"),
  21067. default: true
  21068. },
  21069. ]
  21070. ))
  21071. characterMakers.push(() => makeCharacter(
  21072. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21073. {
  21074. side: {
  21075. height: math.unit(4.5, "feet"),
  21076. weight: math.unit(500, "lb"),
  21077. name: "Side",
  21078. image: {
  21079. source: "./media/characters/e-ter/side.svg",
  21080. extra: 1550 / 1248,
  21081. bottom: 146 / 1694
  21082. }
  21083. },
  21084. },
  21085. [
  21086. {
  21087. name: "Normal",
  21088. height: math.unit(4.5, "feet"),
  21089. default: true
  21090. },
  21091. ]
  21092. ))
  21093. characterMakers.push(() => makeCharacter(
  21094. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21095. {
  21096. side: {
  21097. height: math.unit(9.7, "feet"),
  21098. weight: math.unit(4000, "kg"),
  21099. name: "Side",
  21100. image: {
  21101. source: "./media/characters/yamie/side.svg"
  21102. }
  21103. },
  21104. },
  21105. [
  21106. {
  21107. name: "Normal",
  21108. height: math.unit(9.7, "feet"),
  21109. default: true
  21110. },
  21111. ]
  21112. ))
  21113. characterMakers.push(() => makeCharacter(
  21114. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21115. {
  21116. front: {
  21117. height: math.unit(50, "feet"),
  21118. weight: math.unit(50000, "kg"),
  21119. name: "Front",
  21120. image: {
  21121. source: "./media/characters/anders/front.svg",
  21122. extra: 570 / 539,
  21123. bottom: 14.7 / 586.7
  21124. }
  21125. },
  21126. },
  21127. [
  21128. {
  21129. name: "Large",
  21130. height: math.unit(50, "feet")
  21131. },
  21132. {
  21133. name: "Macro",
  21134. height: math.unit(2000, "feet"),
  21135. default: true
  21136. },
  21137. {
  21138. name: "Megamacro",
  21139. height: math.unit(12, "miles")
  21140. },
  21141. ]
  21142. ))
  21143. characterMakers.push(() => makeCharacter(
  21144. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21145. {
  21146. front: {
  21147. height: math.unit(7 + 2 / 12, "feet"),
  21148. weight: math.unit(300, "lb"),
  21149. name: "Front",
  21150. image: {
  21151. source: "./media/characters/reban/front.svg",
  21152. extra: 516 / 487,
  21153. bottom: 42.82 / 558.356
  21154. }
  21155. },
  21156. dick: {
  21157. height: math.unit(7 / 5, "feet"),
  21158. name: "Dick",
  21159. image: {
  21160. source: "./media/characters/reban/dick.svg"
  21161. }
  21162. },
  21163. },
  21164. [
  21165. {
  21166. name: "Natural Height",
  21167. height: math.unit(7 + 2 / 12, "feet")
  21168. },
  21169. {
  21170. name: "Macro",
  21171. height: math.unit(500, "feet"),
  21172. default: true
  21173. },
  21174. {
  21175. name: "Canon Height",
  21176. height: math.unit(50, "AU")
  21177. },
  21178. ]
  21179. ))
  21180. characterMakers.push(() => makeCharacter(
  21181. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21182. {
  21183. front: {
  21184. height: math.unit(6, "feet"),
  21185. weight: math.unit(150, "lb"),
  21186. name: "Front",
  21187. image: {
  21188. source: "./media/characters/terrance-keayes/front.svg",
  21189. extra: 1.005,
  21190. bottom: 151 / 1615
  21191. }
  21192. },
  21193. side: {
  21194. height: math.unit(6, "feet"),
  21195. weight: math.unit(150, "lb"),
  21196. name: "Side",
  21197. image: {
  21198. source: "./media/characters/terrance-keayes/side.svg",
  21199. extra: 1.005,
  21200. bottom: 129.4 / 1544
  21201. }
  21202. },
  21203. back: {
  21204. height: math.unit(6, "feet"),
  21205. weight: math.unit(150, "lb"),
  21206. name: "Back",
  21207. image: {
  21208. source: "./media/characters/terrance-keayes/back.svg",
  21209. extra: 1.005,
  21210. bottom: 58.4 / 1557.3
  21211. }
  21212. },
  21213. dick: {
  21214. height: math.unit(6 * 0.208, "feet"),
  21215. name: "Dick",
  21216. image: {
  21217. source: "./media/characters/terrance-keayes/dick.svg"
  21218. }
  21219. },
  21220. },
  21221. [
  21222. {
  21223. name: "Canon Height",
  21224. height: math.unit(35, "miles"),
  21225. default: true
  21226. },
  21227. ]
  21228. ))
  21229. characterMakers.push(() => makeCharacter(
  21230. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21231. {
  21232. front: {
  21233. height: math.unit(6, "feet"),
  21234. weight: math.unit(150, "lb"),
  21235. name: "Front",
  21236. image: {
  21237. source: "./media/characters/ofelia/front.svg",
  21238. extra: 546 / 541,
  21239. bottom: 39 / 583
  21240. }
  21241. },
  21242. back: {
  21243. height: math.unit(6, "feet"),
  21244. weight: math.unit(150, "lb"),
  21245. name: "Back",
  21246. image: {
  21247. source: "./media/characters/ofelia/back.svg",
  21248. extra: 564 / 559.5,
  21249. bottom: 8.69 / 573.02
  21250. }
  21251. },
  21252. maw: {
  21253. height: math.unit(1, "feet"),
  21254. name: "Maw",
  21255. image: {
  21256. source: "./media/characters/ofelia/maw.svg"
  21257. }
  21258. },
  21259. foot: {
  21260. height: math.unit(1.949, "feet"),
  21261. name: "Foot",
  21262. image: {
  21263. source: "./media/characters/ofelia/foot.svg"
  21264. }
  21265. },
  21266. },
  21267. [
  21268. {
  21269. name: "Canon Height",
  21270. height: math.unit(2000, "miles"),
  21271. default: true
  21272. },
  21273. ]
  21274. ))
  21275. characterMakers.push(() => makeCharacter(
  21276. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21277. {
  21278. front: {
  21279. height: math.unit(6, "feet"),
  21280. weight: math.unit(150, "lb"),
  21281. name: "Front",
  21282. image: {
  21283. source: "./media/characters/samuel/front.svg",
  21284. extra: 265 / 258,
  21285. bottom: 2 / 266.1566
  21286. }
  21287. },
  21288. },
  21289. [
  21290. {
  21291. name: "Macro",
  21292. height: math.unit(100, "feet"),
  21293. default: true
  21294. },
  21295. {
  21296. name: "Full Size",
  21297. height: math.unit(1000, "miles")
  21298. },
  21299. ]
  21300. ))
  21301. characterMakers.push(() => makeCharacter(
  21302. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21303. {
  21304. front: {
  21305. height: math.unit(6, "feet"),
  21306. weight: math.unit(300, "lb"),
  21307. name: "Front",
  21308. image: {
  21309. source: "./media/characters/beishir-kiel/front.svg",
  21310. extra: 569 / 547,
  21311. bottom: 41.9 / 609
  21312. }
  21313. },
  21314. maw: {
  21315. height: math.unit(6 * 0.202, "feet"),
  21316. name: "Maw",
  21317. image: {
  21318. source: "./media/characters/beishir-kiel/maw.svg"
  21319. }
  21320. },
  21321. },
  21322. [
  21323. {
  21324. name: "Macro",
  21325. height: math.unit(300, "feet"),
  21326. default: true
  21327. },
  21328. ]
  21329. ))
  21330. characterMakers.push(() => makeCharacter(
  21331. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21332. {
  21333. front: {
  21334. height: math.unit(5 + 8 / 12, "feet"),
  21335. weight: math.unit(120, "lb"),
  21336. name: "Front",
  21337. image: {
  21338. source: "./media/characters/logan-grey/front.svg",
  21339. extra: 2539 / 2393,
  21340. bottom: 97.6 / 2636.37
  21341. }
  21342. },
  21343. frontAlt: {
  21344. height: math.unit(5 + 8 / 12, "feet"),
  21345. weight: math.unit(120, "lb"),
  21346. name: "Front (Alt)",
  21347. image: {
  21348. source: "./media/characters/logan-grey/front-alt.svg",
  21349. extra: 958 / 893,
  21350. bottom: 15 / 970.768
  21351. }
  21352. },
  21353. back: {
  21354. height: math.unit(5 + 8 / 12, "feet"),
  21355. weight: math.unit(120, "lb"),
  21356. name: "Back",
  21357. image: {
  21358. source: "./media/characters/logan-grey/back.svg",
  21359. extra: 958 / 893,
  21360. bottom: 2.1881 / 970.9788
  21361. }
  21362. },
  21363. dick: {
  21364. height: math.unit(1.437, "feet"),
  21365. name: "Dick",
  21366. image: {
  21367. source: "./media/characters/logan-grey/dick.svg"
  21368. }
  21369. },
  21370. },
  21371. [
  21372. {
  21373. name: "Normal",
  21374. height: math.unit(5 + 8 / 12, "feet")
  21375. },
  21376. {
  21377. name: "The 500 Foot Femboy",
  21378. height: math.unit(500, "feet"),
  21379. default: true
  21380. },
  21381. {
  21382. name: "Megmacro",
  21383. height: math.unit(20, "miles")
  21384. },
  21385. ]
  21386. ))
  21387. characterMakers.push(() => makeCharacter(
  21388. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21389. {
  21390. front: {
  21391. height: math.unit(8 + 2 / 12, "feet"),
  21392. weight: math.unit(275, "lb"),
  21393. name: "Front",
  21394. image: {
  21395. source: "./media/characters/draganta/front.svg",
  21396. extra: 1177 / 1135,
  21397. bottom: 33.46 / 1212.1
  21398. }
  21399. },
  21400. },
  21401. [
  21402. {
  21403. name: "Normal",
  21404. height: math.unit(8 + 6 / 12, "feet"),
  21405. default: true
  21406. },
  21407. {
  21408. name: "Macro",
  21409. height: math.unit(150, "feet")
  21410. },
  21411. {
  21412. name: "Megamacro",
  21413. height: math.unit(1000, "miles")
  21414. },
  21415. ]
  21416. ))
  21417. characterMakers.push(() => makeCharacter(
  21418. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21419. {
  21420. front: {
  21421. height: math.unit(1.72, "m"),
  21422. weight: math.unit(80, "lb"),
  21423. name: "Front",
  21424. image: {
  21425. source: "./media/characters/voski/front.svg",
  21426. extra: 2076.22 / 2022.4,
  21427. bottom: 102.7 / 2177.3866
  21428. }
  21429. },
  21430. frontNsfw: {
  21431. height: math.unit(1.72, "m"),
  21432. weight: math.unit(80, "lb"),
  21433. name: "Front (NSFW)",
  21434. image: {
  21435. source: "./media/characters/voski/front-nsfw.svg",
  21436. extra: 2076.22 / 2022.4,
  21437. bottom: 102.7 / 2177.3866
  21438. }
  21439. },
  21440. back: {
  21441. height: math.unit(1.72, "m"),
  21442. weight: math.unit(80, "lb"),
  21443. name: "Back",
  21444. image: {
  21445. source: "./media/characters/voski/back.svg",
  21446. extra: 2104 / 2051,
  21447. bottom: 10.45 / 2113.63
  21448. }
  21449. },
  21450. },
  21451. [
  21452. {
  21453. name: "Normal",
  21454. height: math.unit(1.72, "m")
  21455. },
  21456. {
  21457. name: "Macro",
  21458. height: math.unit(55, "m"),
  21459. default: true
  21460. },
  21461. {
  21462. name: "Macro+",
  21463. height: math.unit(300, "m")
  21464. },
  21465. {
  21466. name: "Macro++",
  21467. height: math.unit(700, "m")
  21468. },
  21469. {
  21470. name: "Macro+++",
  21471. height: math.unit(4500, "m")
  21472. },
  21473. {
  21474. name: "Macro++++",
  21475. height: math.unit(45, "km")
  21476. },
  21477. {
  21478. name: "Macro+++++",
  21479. height: math.unit(1220, "km")
  21480. },
  21481. ]
  21482. ))
  21483. characterMakers.push(() => makeCharacter(
  21484. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21485. {
  21486. front: {
  21487. height: math.unit(2.3, "m"),
  21488. weight: math.unit(304, "kg"),
  21489. name: "Front",
  21490. image: {
  21491. source: "./media/characters/icowom-lee/front.svg",
  21492. extra: 985 / 955,
  21493. bottom: 25.4 / 1012
  21494. }
  21495. },
  21496. fronttentacles: {
  21497. height: math.unit(2.3, "m"),
  21498. weight: math.unit(304, "kg"),
  21499. name: "Front-tentacles",
  21500. image: {
  21501. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21502. extra: 985 / 955,
  21503. bottom: 25.4 / 1012
  21504. }
  21505. },
  21506. back: {
  21507. height: math.unit(2.3, "m"),
  21508. weight: math.unit(304, "kg"),
  21509. name: "Back",
  21510. image: {
  21511. source: "./media/characters/icowom-lee/back.svg",
  21512. extra: 975 / 954,
  21513. bottom: 9.5 / 985
  21514. }
  21515. },
  21516. backtentacles: {
  21517. height: math.unit(2.3, "m"),
  21518. weight: math.unit(304, "kg"),
  21519. name: "Back-tentacles",
  21520. image: {
  21521. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21522. extra: 975 / 954,
  21523. bottom: 9.5 / 985
  21524. }
  21525. },
  21526. frontDressed: {
  21527. height: math.unit(2.3, "m"),
  21528. weight: math.unit(304, "kg"),
  21529. name: "Front (Dressed)",
  21530. image: {
  21531. source: "./media/characters/icowom-lee/front-dressed.svg",
  21532. extra: 3076 / 2933,
  21533. bottom: 51.4 / 3125.1889
  21534. }
  21535. },
  21536. rump: {
  21537. height: math.unit(0.776, "meters"),
  21538. name: "Rump",
  21539. image: {
  21540. source: "./media/characters/icowom-lee/rump.svg"
  21541. }
  21542. },
  21543. genitals: {
  21544. height: math.unit(0.78, "meters"),
  21545. name: "Genitals",
  21546. image: {
  21547. source: "./media/characters/icowom-lee/genitals.svg"
  21548. }
  21549. },
  21550. },
  21551. [
  21552. {
  21553. name: "Normal",
  21554. height: math.unit(2.3, "meters"),
  21555. default: true
  21556. },
  21557. {
  21558. name: "Macro",
  21559. height: math.unit(94, "meters"),
  21560. default: true
  21561. },
  21562. ]
  21563. ))
  21564. characterMakers.push(() => makeCharacter(
  21565. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21566. {
  21567. front: {
  21568. height: math.unit(22, "meters"),
  21569. weight: math.unit(21000, "kg"),
  21570. name: "Front",
  21571. image: {
  21572. source: "./media/characters/shock-diamond/front.svg",
  21573. extra: 2204 / 2053,
  21574. bottom: 65 / 2239.47
  21575. }
  21576. },
  21577. frontNude: {
  21578. height: math.unit(22, "meters"),
  21579. weight: math.unit(21000, "kg"),
  21580. name: "Front (Nude)",
  21581. image: {
  21582. source: "./media/characters/shock-diamond/front-nude.svg",
  21583. extra: 2514 / 2285,
  21584. bottom: 13 / 2527.56
  21585. }
  21586. },
  21587. },
  21588. [
  21589. {
  21590. name: "Normal",
  21591. height: math.unit(3, "meters")
  21592. },
  21593. {
  21594. name: "Macro",
  21595. height: math.unit(22, "meters"),
  21596. default: true
  21597. },
  21598. ]
  21599. ))
  21600. characterMakers.push(() => makeCharacter(
  21601. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21602. {
  21603. front: {
  21604. height: math.unit(5 + 4 / 12, "feet"),
  21605. weight: math.unit(120, "lb"),
  21606. name: "Front",
  21607. image: {
  21608. source: "./media/characters/rory/front.svg",
  21609. extra: 589 / 556,
  21610. bottom: 45.7 / 635.76
  21611. }
  21612. },
  21613. frontNude: {
  21614. height: math.unit(5 + 4 / 12, "feet"),
  21615. weight: math.unit(120, "lb"),
  21616. name: "Front (Nude)",
  21617. image: {
  21618. source: "./media/characters/rory/front-nude.svg",
  21619. extra: 589 / 556,
  21620. bottom: 45.7 / 635.76
  21621. }
  21622. },
  21623. side: {
  21624. height: math.unit(5 + 4 / 12, "feet"),
  21625. weight: math.unit(120, "lb"),
  21626. name: "Side",
  21627. image: {
  21628. source: "./media/characters/rory/side.svg",
  21629. extra: 597 / 564,
  21630. bottom: 55 / 653
  21631. }
  21632. },
  21633. back: {
  21634. height: math.unit(5 + 4 / 12, "feet"),
  21635. weight: math.unit(120, "lb"),
  21636. name: "Back",
  21637. image: {
  21638. source: "./media/characters/rory/back.svg",
  21639. extra: 620 / 585,
  21640. bottom: 8.86 / 630.43
  21641. }
  21642. },
  21643. dick: {
  21644. height: math.unit(0.86, "feet"),
  21645. name: "Dick",
  21646. image: {
  21647. source: "./media/characters/rory/dick.svg"
  21648. }
  21649. },
  21650. },
  21651. [
  21652. {
  21653. name: "Normal",
  21654. height: math.unit(5 + 4 / 12, "feet"),
  21655. default: true
  21656. },
  21657. {
  21658. name: "Macro",
  21659. height: math.unit(100, "feet")
  21660. },
  21661. {
  21662. name: "Macro+",
  21663. height: math.unit(140, "feet")
  21664. },
  21665. {
  21666. name: "Macro++",
  21667. height: math.unit(300, "feet")
  21668. },
  21669. ]
  21670. ))
  21671. characterMakers.push(() => makeCharacter(
  21672. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21673. {
  21674. front: {
  21675. height: math.unit(5 + 9 / 12, "feet"),
  21676. weight: math.unit(190, "lb"),
  21677. name: "Front",
  21678. image: {
  21679. source: "./media/characters/sprisk/front.svg",
  21680. extra: 1225 / 1180,
  21681. bottom: 42.7 / 1266.4
  21682. }
  21683. },
  21684. frontNsfw: {
  21685. height: math.unit(5 + 9 / 12, "feet"),
  21686. weight: math.unit(190, "lb"),
  21687. name: "Front (NSFW)",
  21688. image: {
  21689. source: "./media/characters/sprisk/front-nsfw.svg",
  21690. extra: 1225 / 1180,
  21691. bottom: 42.7 / 1266.4
  21692. }
  21693. },
  21694. back: {
  21695. height: math.unit(5 + 9 / 12, "feet"),
  21696. weight: math.unit(190, "lb"),
  21697. name: "Back",
  21698. image: {
  21699. source: "./media/characters/sprisk/back.svg",
  21700. extra: 1247 / 1200,
  21701. bottom: 5.6 / 1253.04
  21702. }
  21703. },
  21704. },
  21705. [
  21706. {
  21707. name: "Tiny",
  21708. height: math.unit(2, "inches")
  21709. },
  21710. {
  21711. name: "Normal",
  21712. height: math.unit(5 + 9 / 12, "feet"),
  21713. default: true
  21714. },
  21715. {
  21716. name: "Mini Macro",
  21717. height: math.unit(18, "feet")
  21718. },
  21719. {
  21720. name: "Macro",
  21721. height: math.unit(100, "feet")
  21722. },
  21723. {
  21724. name: "MACRO",
  21725. height: math.unit(50, "miles")
  21726. },
  21727. {
  21728. name: "M A C R O",
  21729. height: math.unit(300, "miles")
  21730. },
  21731. ]
  21732. ))
  21733. characterMakers.push(() => makeCharacter(
  21734. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21735. {
  21736. side: {
  21737. height: math.unit(15.6, "meters"),
  21738. weight: math.unit(700000, "kg"),
  21739. name: "Side",
  21740. image: {
  21741. source: "./media/characters/bunsen/side.svg",
  21742. extra: 1644 / 358
  21743. }
  21744. },
  21745. foot: {
  21746. height: math.unit(1.611 * 1644 / 358, "meter"),
  21747. name: "Foot",
  21748. image: {
  21749. source: "./media/characters/bunsen/foot.svg"
  21750. }
  21751. },
  21752. },
  21753. [
  21754. {
  21755. name: "Small",
  21756. height: math.unit(10, "feet")
  21757. },
  21758. {
  21759. name: "Normal",
  21760. height: math.unit(15.6, "meters"),
  21761. default: true
  21762. },
  21763. ]
  21764. ))
  21765. characterMakers.push(() => makeCharacter(
  21766. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21767. {
  21768. front: {
  21769. height: math.unit(4 + 11 / 12, "feet"),
  21770. weight: math.unit(140, "lb"),
  21771. name: "Front",
  21772. image: {
  21773. source: "./media/characters/sesh/front.svg",
  21774. extra: 3420 / 3231,
  21775. bottom: 72 / 3949.5
  21776. }
  21777. },
  21778. },
  21779. [
  21780. {
  21781. name: "Normal",
  21782. height: math.unit(4 + 11 / 12, "feet")
  21783. },
  21784. {
  21785. name: "Grown",
  21786. height: math.unit(15, "feet"),
  21787. default: true
  21788. },
  21789. {
  21790. name: "Macro",
  21791. height: math.unit(1500, "feet")
  21792. },
  21793. {
  21794. name: "Megamacro",
  21795. height: math.unit(30, "miles")
  21796. },
  21797. {
  21798. name: "Continental",
  21799. height: math.unit(3000, "miles")
  21800. },
  21801. {
  21802. name: "Gravity Mass",
  21803. height: math.unit(300000, "miles")
  21804. },
  21805. {
  21806. name: "Planet Buster",
  21807. height: math.unit(30000000, "miles")
  21808. },
  21809. {
  21810. name: "Big",
  21811. height: math.unit(3000000000, "miles")
  21812. },
  21813. ]
  21814. ))
  21815. characterMakers.push(() => makeCharacter(
  21816. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21817. {
  21818. front: {
  21819. height: math.unit(9, "feet"),
  21820. weight: math.unit(350, "lb"),
  21821. name: "Front",
  21822. image: {
  21823. source: "./media/characters/pepper/front.svg",
  21824. extra: 1448 / 1312,
  21825. bottom: 9.4 / 1457.88
  21826. }
  21827. },
  21828. back: {
  21829. height: math.unit(9, "feet"),
  21830. weight: math.unit(350, "lb"),
  21831. name: "Back",
  21832. image: {
  21833. source: "./media/characters/pepper/back.svg",
  21834. extra: 1423 / 1300,
  21835. bottom: 4.6 / 1429
  21836. }
  21837. },
  21838. maw: {
  21839. height: math.unit(0.932, "feet"),
  21840. name: "Maw",
  21841. image: {
  21842. source: "./media/characters/pepper/maw.svg"
  21843. }
  21844. },
  21845. },
  21846. [
  21847. {
  21848. name: "Normal",
  21849. height: math.unit(9, "feet"),
  21850. default: true
  21851. },
  21852. ]
  21853. ))
  21854. characterMakers.push(() => makeCharacter(
  21855. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21856. {
  21857. front: {
  21858. height: math.unit(6, "feet"),
  21859. weight: math.unit(150, "lb"),
  21860. name: "Front",
  21861. image: {
  21862. source: "./media/characters/maelstrom/front.svg",
  21863. extra: 2100 / 1883,
  21864. bottom: 94 / 2196.7
  21865. }
  21866. },
  21867. },
  21868. [
  21869. {
  21870. name: "Less Kaiju",
  21871. height: math.unit(200, "feet")
  21872. },
  21873. {
  21874. name: "Kaiju",
  21875. height: math.unit(400, "feet"),
  21876. default: true
  21877. },
  21878. {
  21879. name: "Kaiju-er",
  21880. height: math.unit(600, "feet")
  21881. },
  21882. ]
  21883. ))
  21884. characterMakers.push(() => makeCharacter(
  21885. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21886. {
  21887. front: {
  21888. height: math.unit(6 + 5 / 12, "feet"),
  21889. weight: math.unit(180, "lb"),
  21890. name: "Front",
  21891. image: {
  21892. source: "./media/characters/lexir/front.svg",
  21893. extra: 180 / 172,
  21894. bottom: 12 / 192
  21895. }
  21896. },
  21897. back: {
  21898. height: math.unit(6 + 5 / 12, "feet"),
  21899. weight: math.unit(180, "lb"),
  21900. name: "Back",
  21901. image: {
  21902. source: "./media/characters/lexir/back.svg",
  21903. extra: 183.84 / 175.5,
  21904. bottom: 3.1 / 187
  21905. }
  21906. },
  21907. },
  21908. [
  21909. {
  21910. name: "Very Smal",
  21911. height: math.unit(1, "nm")
  21912. },
  21913. {
  21914. name: "Normal",
  21915. height: math.unit(6 + 5 / 12, "feet"),
  21916. default: true
  21917. },
  21918. {
  21919. name: "Macro",
  21920. height: math.unit(1, "mile")
  21921. },
  21922. {
  21923. name: "Megamacro",
  21924. height: math.unit(50, "miles")
  21925. },
  21926. ]
  21927. ))
  21928. characterMakers.push(() => makeCharacter(
  21929. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21930. {
  21931. front: {
  21932. height: math.unit(1.5, "meters"),
  21933. weight: math.unit(100, "lb"),
  21934. name: "Front",
  21935. image: {
  21936. source: "./media/characters/maksio/front.svg",
  21937. extra: 1549 / 1531,
  21938. bottom: 123.7 / 1674.5429
  21939. }
  21940. },
  21941. back: {
  21942. height: math.unit(1.5, "meters"),
  21943. weight: math.unit(100, "lb"),
  21944. name: "Back",
  21945. image: {
  21946. source: "./media/characters/maksio/back.svg",
  21947. extra: 1541 / 1509,
  21948. bottom: 97 / 1639
  21949. }
  21950. },
  21951. hand: {
  21952. height: math.unit(0.621, "feet"),
  21953. name: "Hand",
  21954. image: {
  21955. source: "./media/characters/maksio/hand.svg"
  21956. }
  21957. },
  21958. foot: {
  21959. height: math.unit(1.611, "feet"),
  21960. name: "Foot",
  21961. image: {
  21962. source: "./media/characters/maksio/foot.svg"
  21963. }
  21964. },
  21965. },
  21966. [
  21967. {
  21968. name: "Shrunken",
  21969. height: math.unit(10, "cm")
  21970. },
  21971. {
  21972. name: "Normal",
  21973. height: math.unit(150, "cm"),
  21974. default: true
  21975. },
  21976. ]
  21977. ))
  21978. characterMakers.push(() => makeCharacter(
  21979. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21980. {
  21981. front: {
  21982. height: math.unit(100, "feet"),
  21983. name: "Front",
  21984. image: {
  21985. source: "./media/characters/erza-bear/front.svg",
  21986. extra: 2449 / 2390,
  21987. bottom: 46 / 2494
  21988. }
  21989. },
  21990. back: {
  21991. height: math.unit(100, "feet"),
  21992. name: "Back",
  21993. image: {
  21994. source: "./media/characters/erza-bear/back.svg",
  21995. extra: 2489 / 2430,
  21996. bottom: 85.4 / 2480
  21997. }
  21998. },
  21999. tail: {
  22000. height: math.unit(42, "feet"),
  22001. name: "Tail",
  22002. image: {
  22003. source: "./media/characters/erza-bear/tail.svg"
  22004. }
  22005. },
  22006. tongue: {
  22007. height: math.unit(8, "feet"),
  22008. name: "Tongue",
  22009. image: {
  22010. source: "./media/characters/erza-bear/tongue.svg"
  22011. }
  22012. },
  22013. dick: {
  22014. height: math.unit(10.5, "feet"),
  22015. name: "Dick",
  22016. image: {
  22017. source: "./media/characters/erza-bear/dick.svg"
  22018. }
  22019. },
  22020. dickVertical: {
  22021. height: math.unit(16.9, "feet"),
  22022. name: "Dick (Vertical)",
  22023. image: {
  22024. source: "./media/characters/erza-bear/dick-vertical.svg"
  22025. }
  22026. },
  22027. },
  22028. [
  22029. {
  22030. name: "Macro",
  22031. height: math.unit(100, "feet"),
  22032. default: true
  22033. },
  22034. ]
  22035. ))
  22036. characterMakers.push(() => makeCharacter(
  22037. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22038. {
  22039. front: {
  22040. height: math.unit(172, "cm"),
  22041. weight: math.unit(73, "kg"),
  22042. name: "Front",
  22043. image: {
  22044. source: "./media/characters/violet-flor/front.svg",
  22045. extra: 1530 / 1442,
  22046. bottom: 61.9 / 1588.8
  22047. }
  22048. },
  22049. back: {
  22050. height: math.unit(180, "cm"),
  22051. weight: math.unit(73, "kg"),
  22052. name: "Back",
  22053. image: {
  22054. source: "./media/characters/violet-flor/back.svg",
  22055. extra: 1692 / 1630,
  22056. bottom: 20 / 1712
  22057. }
  22058. },
  22059. },
  22060. [
  22061. {
  22062. name: "Normal",
  22063. height: math.unit(172, "cm"),
  22064. default: true
  22065. },
  22066. ]
  22067. ))
  22068. characterMakers.push(() => makeCharacter(
  22069. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22070. {
  22071. front: {
  22072. height: math.unit(6, "feet"),
  22073. weight: math.unit(220, "lb"),
  22074. name: "Front",
  22075. image: {
  22076. source: "./media/characters/lynn-rhea/front.svg",
  22077. extra: 310 / 273
  22078. }
  22079. },
  22080. back: {
  22081. height: math.unit(6, "feet"),
  22082. weight: math.unit(220, "lb"),
  22083. name: "Back",
  22084. image: {
  22085. source: "./media/characters/lynn-rhea/back.svg",
  22086. extra: 310 / 273
  22087. }
  22088. },
  22089. dicks: {
  22090. height: math.unit(0.9, "feet"),
  22091. name: "Dicks",
  22092. image: {
  22093. source: "./media/characters/lynn-rhea/dicks.svg"
  22094. }
  22095. },
  22096. slit: {
  22097. height: math.unit(0.4, "feet"),
  22098. name: "Slit",
  22099. image: {
  22100. source: "./media/characters/lynn-rhea/slit.svg"
  22101. }
  22102. },
  22103. },
  22104. [
  22105. {
  22106. name: "Micro",
  22107. height: math.unit(1, "inch")
  22108. },
  22109. {
  22110. name: "Macro",
  22111. height: math.unit(60, "feet"),
  22112. default: true
  22113. },
  22114. {
  22115. name: "Megamacro",
  22116. height: math.unit(2, "miles")
  22117. },
  22118. {
  22119. name: "Gigamacro",
  22120. height: math.unit(3, "earths")
  22121. },
  22122. {
  22123. name: "Galactic",
  22124. height: math.unit(0.8, "galaxies")
  22125. },
  22126. ]
  22127. ))
  22128. characterMakers.push(() => makeCharacter(
  22129. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22130. {
  22131. front: {
  22132. height: math.unit(1600, "feet"),
  22133. weight: math.unit(85758785169, "kg"),
  22134. name: "Front",
  22135. image: {
  22136. source: "./media/characters/valathos/front.svg",
  22137. extra: 1451 / 1339
  22138. }
  22139. },
  22140. },
  22141. [
  22142. {
  22143. name: "Macro",
  22144. height: math.unit(1600, "feet"),
  22145. default: true
  22146. },
  22147. ]
  22148. ))
  22149. characterMakers.push(() => makeCharacter(
  22150. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22151. {
  22152. front: {
  22153. height: math.unit(7 + 5 / 12, "feet"),
  22154. weight: math.unit(300, "lb"),
  22155. name: "Front",
  22156. image: {
  22157. source: "./media/characters/azula/front.svg",
  22158. extra: 3208 / 2880,
  22159. bottom: 80.2 / 3277
  22160. }
  22161. },
  22162. back: {
  22163. height: math.unit(7 + 5 / 12, "feet"),
  22164. weight: math.unit(300, "lb"),
  22165. name: "Back",
  22166. image: {
  22167. source: "./media/characters/azula/back.svg",
  22168. extra: 3169 / 2822,
  22169. bottom: 150.6 / 3321
  22170. }
  22171. },
  22172. },
  22173. [
  22174. {
  22175. name: "Normal",
  22176. height: math.unit(7 + 5 / 12, "feet"),
  22177. default: true
  22178. },
  22179. {
  22180. name: "Big",
  22181. height: math.unit(20, "feet")
  22182. },
  22183. ]
  22184. ))
  22185. characterMakers.push(() => makeCharacter(
  22186. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22187. {
  22188. front: {
  22189. height: math.unit(5 + 1 / 12, "feet"),
  22190. weight: math.unit(110, "lb"),
  22191. name: "Front",
  22192. image: {
  22193. source: "./media/characters/rupert/front.svg",
  22194. extra: 1549 / 1495,
  22195. bottom: 54.2 / 1604.4
  22196. }
  22197. },
  22198. },
  22199. [
  22200. {
  22201. name: "Normal",
  22202. height: math.unit(5 + 1 / 12, "feet"),
  22203. default: true
  22204. },
  22205. ]
  22206. ))
  22207. characterMakers.push(() => makeCharacter(
  22208. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22209. {
  22210. front: {
  22211. height: math.unit(8 + 4 / 12, "feet"),
  22212. weight: math.unit(350, "lb"),
  22213. name: "Front",
  22214. image: {
  22215. source: "./media/characters/sheera-castellar/front.svg",
  22216. extra: 1957 / 1894,
  22217. bottom: 26.97 / 1975.017
  22218. }
  22219. },
  22220. side: {
  22221. height: math.unit(8 + 4 / 12, "feet"),
  22222. weight: math.unit(350, "lb"),
  22223. name: "Side",
  22224. image: {
  22225. source: "./media/characters/sheera-castellar/side.svg",
  22226. extra: 1957 / 1894
  22227. }
  22228. },
  22229. back: {
  22230. height: math.unit(8 + 4 / 12, "feet"),
  22231. weight: math.unit(350, "lb"),
  22232. name: "Back",
  22233. image: {
  22234. source: "./media/characters/sheera-castellar/back.svg",
  22235. extra: 1957 / 1894
  22236. }
  22237. },
  22238. angled: {
  22239. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22240. weight: math.unit(350, "lb"),
  22241. name: "Angled",
  22242. image: {
  22243. source: "./media/characters/sheera-castellar/angled.svg",
  22244. extra: 1807 / 1707,
  22245. bottom: 68 / 1875
  22246. }
  22247. },
  22248. genitals: {
  22249. height: math.unit(2.2, "feet"),
  22250. name: "Genitals",
  22251. image: {
  22252. source: "./media/characters/sheera-castellar/genitals.svg"
  22253. }
  22254. },
  22255. },
  22256. [
  22257. {
  22258. name: "Normal",
  22259. height: math.unit(8 + 4 / 12, "feet")
  22260. },
  22261. {
  22262. name: "Macro",
  22263. height: math.unit(150, "feet"),
  22264. default: true
  22265. },
  22266. {
  22267. name: "Macro+",
  22268. height: math.unit(800, "feet")
  22269. },
  22270. ]
  22271. ))
  22272. characterMakers.push(() => makeCharacter(
  22273. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22274. {
  22275. front: {
  22276. height: math.unit(6, "feet"),
  22277. weight: math.unit(150, "lb"),
  22278. name: "Front",
  22279. image: {
  22280. source: "./media/characters/jaipur/front.svg",
  22281. extra: 3860 / 3731,
  22282. bottom: 287 / 4140
  22283. }
  22284. },
  22285. back: {
  22286. height: math.unit(6, "feet"),
  22287. weight: math.unit(150, "lb"),
  22288. name: "Back",
  22289. image: {
  22290. source: "./media/characters/jaipur/back.svg",
  22291. extra: 4060 / 3930,
  22292. bottom: 151 / 4200
  22293. }
  22294. },
  22295. },
  22296. [
  22297. {
  22298. name: "Normal",
  22299. height: math.unit(1.85, "meters"),
  22300. default: true
  22301. },
  22302. {
  22303. name: "Macro",
  22304. height: math.unit(150, "meters")
  22305. },
  22306. {
  22307. name: "Macro+",
  22308. height: math.unit(0.5, "miles")
  22309. },
  22310. {
  22311. name: "Macro++",
  22312. height: math.unit(2.5, "miles")
  22313. },
  22314. {
  22315. name: "Macro+++",
  22316. height: math.unit(12, "miles")
  22317. },
  22318. {
  22319. name: "Macro++++",
  22320. height: math.unit(120, "miles")
  22321. },
  22322. {
  22323. name: "Macro+++++",
  22324. height: math.unit(1200, "miles")
  22325. },
  22326. ]
  22327. ))
  22328. characterMakers.push(() => makeCharacter(
  22329. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22330. {
  22331. front: {
  22332. height: math.unit(6, "feet"),
  22333. weight: math.unit(150, "lb"),
  22334. name: "Front",
  22335. image: {
  22336. source: "./media/characters/sheila-wolf/front.svg",
  22337. extra: 1931 / 1808,
  22338. bottom: 29.5 / 1960
  22339. }
  22340. },
  22341. dick: {
  22342. height: math.unit(1.464, "feet"),
  22343. name: "Dick",
  22344. image: {
  22345. source: "./media/characters/sheila-wolf/dick.svg"
  22346. }
  22347. },
  22348. muzzle: {
  22349. height: math.unit(0.513, "feet"),
  22350. name: "Muzzle",
  22351. image: {
  22352. source: "./media/characters/sheila-wolf/muzzle.svg"
  22353. }
  22354. },
  22355. },
  22356. [
  22357. {
  22358. name: "Macro",
  22359. height: math.unit(70, "feet"),
  22360. default: true
  22361. },
  22362. ]
  22363. ))
  22364. characterMakers.push(() => makeCharacter(
  22365. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22366. {
  22367. front: {
  22368. height: math.unit(32, "meters"),
  22369. weight: math.unit(300000, "kg"),
  22370. name: "Front",
  22371. image: {
  22372. source: "./media/characters/almor/front.svg",
  22373. extra: 1408 / 1322,
  22374. bottom: 94.6 / 1506.5
  22375. }
  22376. },
  22377. },
  22378. [
  22379. {
  22380. name: "Macro",
  22381. height: math.unit(32, "meters"),
  22382. default: true
  22383. },
  22384. ]
  22385. ))
  22386. characterMakers.push(() => makeCharacter(
  22387. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22388. {
  22389. front: {
  22390. height: math.unit(7, "feet"),
  22391. weight: math.unit(200, "lb"),
  22392. name: "Front",
  22393. image: {
  22394. source: "./media/characters/silver/front.svg",
  22395. extra: 472.1 / 450.5,
  22396. bottom: 26.5 / 499.424
  22397. }
  22398. },
  22399. },
  22400. [
  22401. {
  22402. name: "Normal",
  22403. height: math.unit(7, "feet"),
  22404. default: true
  22405. },
  22406. {
  22407. name: "Macro",
  22408. height: math.unit(800, "feet")
  22409. },
  22410. {
  22411. name: "Megamacro",
  22412. height: math.unit(250, "miles")
  22413. },
  22414. ]
  22415. ))
  22416. characterMakers.push(() => makeCharacter(
  22417. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22418. {
  22419. front: {
  22420. height: math.unit(6, "feet"),
  22421. weight: math.unit(150, "lb"),
  22422. name: "Front",
  22423. image: {
  22424. source: "./media/characters/pliskin/front.svg",
  22425. extra: 1469 / 1359,
  22426. bottom: 70 / 1540
  22427. }
  22428. },
  22429. },
  22430. [
  22431. {
  22432. name: "Micro",
  22433. height: math.unit(3, "inches")
  22434. },
  22435. {
  22436. name: "Normal",
  22437. height: math.unit(5 + 11 / 12, "feet"),
  22438. default: true
  22439. },
  22440. {
  22441. name: "Macro",
  22442. height: math.unit(120, "feet")
  22443. },
  22444. ]
  22445. ))
  22446. characterMakers.push(() => makeCharacter(
  22447. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22448. {
  22449. front: {
  22450. height: math.unit(6, "feet"),
  22451. weight: math.unit(150, "lb"),
  22452. name: "Front",
  22453. image: {
  22454. source: "./media/characters/sammy/front.svg",
  22455. extra: 1193 / 1089,
  22456. bottom: 30.5 / 1226
  22457. }
  22458. },
  22459. },
  22460. [
  22461. {
  22462. name: "Macro",
  22463. height: math.unit(1700, "feet"),
  22464. default: true
  22465. },
  22466. {
  22467. name: "Examacro",
  22468. height: math.unit(2.5e9, "lightyears")
  22469. },
  22470. ]
  22471. ))
  22472. characterMakers.push(() => makeCharacter(
  22473. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22474. {
  22475. front: {
  22476. height: math.unit(21, "meters"),
  22477. weight: math.unit(12, "tonnes"),
  22478. name: "Front",
  22479. image: {
  22480. source: "./media/characters/kuru/front.svg",
  22481. extra: 4301 / 3785,
  22482. bottom: 371.3 / 4691
  22483. }
  22484. },
  22485. },
  22486. [
  22487. {
  22488. name: "Macro",
  22489. height: math.unit(21, "meters"),
  22490. default: true
  22491. },
  22492. ]
  22493. ))
  22494. characterMakers.push(() => makeCharacter(
  22495. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22496. {
  22497. front: {
  22498. height: math.unit(23, "meters"),
  22499. weight: math.unit(12.2, "tonnes"),
  22500. name: "Front",
  22501. image: {
  22502. source: "./media/characters/rakka/front.svg",
  22503. extra: 4670 / 4169,
  22504. bottom: 301 / 4968.7
  22505. }
  22506. },
  22507. },
  22508. [
  22509. {
  22510. name: "Macro",
  22511. height: math.unit(23, "meters"),
  22512. default: true
  22513. },
  22514. ]
  22515. ))
  22516. characterMakers.push(() => makeCharacter(
  22517. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22518. {
  22519. front: {
  22520. height: math.unit(6, "feet"),
  22521. weight: math.unit(150, "lb"),
  22522. name: "Front",
  22523. image: {
  22524. source: "./media/characters/rhys-feline/front.svg",
  22525. extra: 2488 / 2308,
  22526. bottom: 35.67 / 2519.19
  22527. }
  22528. },
  22529. },
  22530. [
  22531. {
  22532. name: "Really Small",
  22533. height: math.unit(1, "nm")
  22534. },
  22535. {
  22536. name: "Micro",
  22537. height: math.unit(4, "inches")
  22538. },
  22539. {
  22540. name: "Normal",
  22541. height: math.unit(4 + 10 / 12, "feet"),
  22542. default: true
  22543. },
  22544. {
  22545. name: "Macro",
  22546. height: math.unit(100, "feet")
  22547. },
  22548. {
  22549. name: "Megamacto",
  22550. height: math.unit(50, "miles")
  22551. },
  22552. ]
  22553. ))
  22554. characterMakers.push(() => makeCharacter(
  22555. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22556. {
  22557. side: {
  22558. height: math.unit(30, "feet"),
  22559. weight: math.unit(35000, "kg"),
  22560. name: "Side",
  22561. image: {
  22562. source: "./media/characters/alydar/side.svg",
  22563. extra: 234 / 222,
  22564. bottom: 6.5 / 241
  22565. }
  22566. },
  22567. front: {
  22568. height: math.unit(30, "feet"),
  22569. weight: math.unit(35000, "kg"),
  22570. name: "Front",
  22571. image: {
  22572. source: "./media/characters/alydar/front.svg",
  22573. extra: 223.37 / 210.2,
  22574. bottom: 22.3 / 246.76
  22575. }
  22576. },
  22577. top: {
  22578. height: math.unit(64.54, "feet"),
  22579. weight: math.unit(35000, "kg"),
  22580. name: "Top",
  22581. image: {
  22582. source: "./media/characters/alydar/top.svg"
  22583. }
  22584. },
  22585. anthro: {
  22586. height: math.unit(30, "feet"),
  22587. weight: math.unit(9000, "kg"),
  22588. name: "Anthro",
  22589. image: {
  22590. source: "./media/characters/alydar/anthro.svg",
  22591. extra: 432 / 421,
  22592. bottom: 7.18 / 440
  22593. }
  22594. },
  22595. maw: {
  22596. height: math.unit(11.693, "feet"),
  22597. name: "Maw",
  22598. image: {
  22599. source: "./media/characters/alydar/maw.svg"
  22600. }
  22601. },
  22602. head: {
  22603. height: math.unit(11.693, "feet"),
  22604. name: "Head",
  22605. image: {
  22606. source: "./media/characters/alydar/head.svg"
  22607. }
  22608. },
  22609. headAlt: {
  22610. height: math.unit(12.861, "feet"),
  22611. name: "Head (Alt)",
  22612. image: {
  22613. source: "./media/characters/alydar/head-alt.svg"
  22614. }
  22615. },
  22616. wing: {
  22617. height: math.unit(20.712, "feet"),
  22618. name: "Wing",
  22619. image: {
  22620. source: "./media/characters/alydar/wing.svg"
  22621. }
  22622. },
  22623. wingFeather: {
  22624. height: math.unit(9.662, "feet"),
  22625. name: "Wing Feather",
  22626. image: {
  22627. source: "./media/characters/alydar/wing-feather.svg"
  22628. }
  22629. },
  22630. countourFeather: {
  22631. height: math.unit(4.154, "feet"),
  22632. name: "Contour Feather",
  22633. image: {
  22634. source: "./media/characters/alydar/contour-feather.svg"
  22635. }
  22636. },
  22637. },
  22638. [
  22639. {
  22640. name: "Diplomatic",
  22641. height: math.unit(13, "feet"),
  22642. default: true
  22643. },
  22644. {
  22645. name: "Small",
  22646. height: math.unit(30, "feet")
  22647. },
  22648. {
  22649. name: "Normal",
  22650. height: math.unit(95, "feet"),
  22651. default: true
  22652. },
  22653. {
  22654. name: "Large",
  22655. height: math.unit(285, "feet")
  22656. },
  22657. {
  22658. name: "Incomprehensible",
  22659. height: math.unit(450, "megameters")
  22660. },
  22661. ]
  22662. ))
  22663. characterMakers.push(() => makeCharacter(
  22664. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22665. {
  22666. side: {
  22667. height: math.unit(11, "feet"),
  22668. weight: math.unit(1750, "kg"),
  22669. name: "Side",
  22670. image: {
  22671. source: "./media/characters/selicia/side.svg",
  22672. extra: 440 / 396,
  22673. bottom: 24.8 / 465.979
  22674. }
  22675. },
  22676. maw: {
  22677. height: math.unit(4.665, "feet"),
  22678. name: "Maw",
  22679. image: {
  22680. source: "./media/characters/selicia/maw.svg"
  22681. }
  22682. },
  22683. },
  22684. [
  22685. {
  22686. name: "Normal",
  22687. height: math.unit(11, "feet"),
  22688. default: true
  22689. },
  22690. ]
  22691. ))
  22692. characterMakers.push(() => makeCharacter(
  22693. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22694. {
  22695. side: {
  22696. height: math.unit(2 + 6 / 12, "feet"),
  22697. weight: math.unit(30, "lb"),
  22698. name: "Side",
  22699. image: {
  22700. source: "./media/characters/layla/side.svg",
  22701. extra: 244 / 188,
  22702. bottom: 18.2 / 262.1
  22703. }
  22704. },
  22705. back: {
  22706. height: math.unit(2 + 6 / 12, "feet"),
  22707. weight: math.unit(30, "lb"),
  22708. name: "Back",
  22709. image: {
  22710. source: "./media/characters/layla/back.svg",
  22711. extra: 308 / 241.5,
  22712. bottom: 8.9 / 316.8
  22713. }
  22714. },
  22715. cumming: {
  22716. height: math.unit(2 + 6 / 12, "feet"),
  22717. weight: math.unit(30, "lb"),
  22718. name: "Cumming",
  22719. image: {
  22720. source: "./media/characters/layla/cumming.svg",
  22721. extra: 342 / 279,
  22722. bottom: 595 / 938
  22723. }
  22724. },
  22725. dickFlaccid: {
  22726. height: math.unit(2.595, "feet"),
  22727. name: "Flaccid Genitals",
  22728. image: {
  22729. source: "./media/characters/layla/dick-flaccid.svg"
  22730. }
  22731. },
  22732. dickErect: {
  22733. height: math.unit(2.359, "feet"),
  22734. name: "Erect Genitals",
  22735. image: {
  22736. source: "./media/characters/layla/dick-erect.svg"
  22737. }
  22738. },
  22739. },
  22740. [
  22741. {
  22742. name: "Micro",
  22743. height: math.unit(1, "inch")
  22744. },
  22745. {
  22746. name: "Small",
  22747. height: math.unit(1, "foot")
  22748. },
  22749. {
  22750. name: "Normal",
  22751. height: math.unit(2 + 6 / 12, "feet"),
  22752. default: true
  22753. },
  22754. {
  22755. name: "Macro",
  22756. height: math.unit(200, "feet")
  22757. },
  22758. {
  22759. name: "Megamacro",
  22760. height: math.unit(1000, "miles")
  22761. },
  22762. {
  22763. name: "Planetary",
  22764. height: math.unit(8000, "miles")
  22765. },
  22766. {
  22767. name: "True Layla",
  22768. height: math.unit(200000 * 7, "multiverses")
  22769. },
  22770. ]
  22771. ))
  22772. characterMakers.push(() => makeCharacter(
  22773. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22774. {
  22775. back: {
  22776. height: math.unit(10.5, "feet"),
  22777. weight: math.unit(800, "lb"),
  22778. name: "Back",
  22779. image: {
  22780. source: "./media/characters/knox/back.svg",
  22781. extra: 1486 / 1089,
  22782. bottom: 107 / 1601.4
  22783. }
  22784. },
  22785. side: {
  22786. height: math.unit(10.5, "feet"),
  22787. weight: math.unit(800, "lb"),
  22788. name: "Side",
  22789. image: {
  22790. source: "./media/characters/knox/side.svg",
  22791. extra: 244 / 218,
  22792. bottom: 14 / 260
  22793. }
  22794. },
  22795. },
  22796. [
  22797. {
  22798. name: "Compact",
  22799. height: math.unit(10.5, "feet"),
  22800. default: true
  22801. },
  22802. {
  22803. name: "Dynamax",
  22804. height: math.unit(210, "feet")
  22805. },
  22806. {
  22807. name: "Full Macro",
  22808. height: math.unit(850, "feet")
  22809. },
  22810. ]
  22811. ))
  22812. characterMakers.push(() => makeCharacter(
  22813. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22814. {
  22815. front: {
  22816. height: math.unit(6, "feet"),
  22817. weight: math.unit(152, "lb"),
  22818. name: "Front",
  22819. image: {
  22820. source: "./media/characters/shin-pikachu/front.svg",
  22821. extra: 1574 / 1480,
  22822. bottom: 53.3 / 1626
  22823. }
  22824. },
  22825. hand: {
  22826. height: math.unit(1.055, "feet"),
  22827. name: "Hand",
  22828. image: {
  22829. source: "./media/characters/shin-pikachu/hand.svg"
  22830. }
  22831. },
  22832. foot: {
  22833. height: math.unit(1.1, "feet"),
  22834. name: "Foot",
  22835. image: {
  22836. source: "./media/characters/shin-pikachu/foot.svg"
  22837. }
  22838. },
  22839. collar: {
  22840. height: math.unit(0.386, "feet"),
  22841. name: "Collar",
  22842. image: {
  22843. source: "./media/characters/shin-pikachu/collar.svg"
  22844. }
  22845. },
  22846. },
  22847. [
  22848. {
  22849. name: "Smallest",
  22850. height: math.unit(0.5, "inches")
  22851. },
  22852. {
  22853. name: "Micro",
  22854. height: math.unit(6, "inches")
  22855. },
  22856. {
  22857. name: "Normal",
  22858. height: math.unit(6, "feet"),
  22859. default: true
  22860. },
  22861. {
  22862. name: "Macro",
  22863. height: math.unit(150, "feet")
  22864. },
  22865. ]
  22866. ))
  22867. characterMakers.push(() => makeCharacter(
  22868. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22869. {
  22870. front: {
  22871. height: math.unit(28, "feet"),
  22872. weight: math.unit(10500, "lb"),
  22873. name: "Front",
  22874. image: {
  22875. source: "./media/characters/kayda/front.svg",
  22876. extra: 1536 / 1428,
  22877. bottom: 68.7 / 1603
  22878. }
  22879. },
  22880. back: {
  22881. height: math.unit(28, "feet"),
  22882. weight: math.unit(10500, "lb"),
  22883. name: "Back",
  22884. image: {
  22885. source: "./media/characters/kayda/back.svg",
  22886. extra: 1557 / 1464,
  22887. bottom: 39.5 / 1597.49
  22888. }
  22889. },
  22890. dick: {
  22891. height: math.unit(3.858, "feet"),
  22892. name: "Dick",
  22893. image: {
  22894. source: "./media/characters/kayda/dick.svg"
  22895. }
  22896. },
  22897. },
  22898. [
  22899. {
  22900. name: "Macro",
  22901. height: math.unit(28, "feet"),
  22902. default: true
  22903. },
  22904. ]
  22905. ))
  22906. characterMakers.push(() => makeCharacter(
  22907. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22908. {
  22909. front: {
  22910. height: math.unit(10 + 11 / 12, "feet"),
  22911. weight: math.unit(1400, "lb"),
  22912. name: "Front",
  22913. image: {
  22914. source: "./media/characters/brian/front.svg",
  22915. extra: 737 / 692,
  22916. bottom: 55.4 / 785
  22917. }
  22918. },
  22919. },
  22920. [
  22921. {
  22922. name: "Normal",
  22923. height: math.unit(10 + 11 / 12, "feet"),
  22924. default: true
  22925. },
  22926. ]
  22927. ))
  22928. characterMakers.push(() => makeCharacter(
  22929. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22930. {
  22931. front: {
  22932. height: math.unit(5 + 8 / 12, "feet"),
  22933. weight: math.unit(140, "lb"),
  22934. name: "Front",
  22935. image: {
  22936. source: "./media/characters/khemri/front.svg",
  22937. extra: 4780 / 4059,
  22938. bottom: 80.1 / 4859.25
  22939. }
  22940. },
  22941. },
  22942. [
  22943. {
  22944. name: "Micro",
  22945. height: math.unit(6, "inches")
  22946. },
  22947. {
  22948. name: "Normal",
  22949. height: math.unit(5 + 8 / 12, "feet"),
  22950. default: true
  22951. },
  22952. ]
  22953. ))
  22954. characterMakers.push(() => makeCharacter(
  22955. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22956. {
  22957. front: {
  22958. height: math.unit(13, "feet"),
  22959. weight: math.unit(1700, "lb"),
  22960. name: "Front",
  22961. image: {
  22962. source: "./media/characters/felix-braveheart/front.svg",
  22963. extra: 1222 / 1157,
  22964. bottom: 53.2 / 1280
  22965. }
  22966. },
  22967. back: {
  22968. height: math.unit(13, "feet"),
  22969. weight: math.unit(1700, "lb"),
  22970. name: "Back",
  22971. image: {
  22972. source: "./media/characters/felix-braveheart/back.svg",
  22973. extra: 1277 / 1203,
  22974. bottom: 50.2 / 1327
  22975. }
  22976. },
  22977. feral: {
  22978. height: math.unit(6, "feet"),
  22979. weight: math.unit(400, "lb"),
  22980. name: "Feral",
  22981. image: {
  22982. source: "./media/characters/felix-braveheart/feral.svg",
  22983. extra: 682 / 625,
  22984. bottom: 6.9 / 688
  22985. }
  22986. },
  22987. },
  22988. [
  22989. {
  22990. name: "Normal",
  22991. height: math.unit(13, "feet"),
  22992. default: true
  22993. },
  22994. ]
  22995. ))
  22996. characterMakers.push(() => makeCharacter(
  22997. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22998. {
  22999. side: {
  23000. height: math.unit(5 + 11 / 12, "feet"),
  23001. weight: math.unit(1400, "lb"),
  23002. name: "Side",
  23003. image: {
  23004. source: "./media/characters/shadow-blade/side.svg",
  23005. extra: 1726 / 1267,
  23006. bottom: 58.4 / 1785
  23007. }
  23008. },
  23009. },
  23010. [
  23011. {
  23012. name: "Normal",
  23013. height: math.unit(5 + 11 / 12, "feet"),
  23014. default: true
  23015. },
  23016. ]
  23017. ))
  23018. characterMakers.push(() => makeCharacter(
  23019. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23020. {
  23021. front: {
  23022. height: math.unit(1 + 6 / 12, "feet"),
  23023. weight: math.unit(25, "lb"),
  23024. name: "Front",
  23025. image: {
  23026. source: "./media/characters/karla-halldor/front.svg",
  23027. extra: 1459 / 1383,
  23028. bottom: 12 / 1472
  23029. }
  23030. },
  23031. },
  23032. [
  23033. {
  23034. name: "Normal",
  23035. height: math.unit(1 + 6 / 12, "feet"),
  23036. default: true
  23037. },
  23038. ]
  23039. ))
  23040. characterMakers.push(() => makeCharacter(
  23041. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23042. {
  23043. front: {
  23044. height: math.unit(6 + 2 / 12, "feet"),
  23045. weight: math.unit(160, "lb"),
  23046. name: "Front",
  23047. image: {
  23048. source: "./media/characters/ariam/front.svg",
  23049. extra: 714 / 617,
  23050. bottom: 23.4 / 737,
  23051. }
  23052. },
  23053. squatting: {
  23054. height: math.unit(4.1, "feet"),
  23055. weight: math.unit(160, "lb"),
  23056. name: "Squatting",
  23057. image: {
  23058. source: "./media/characters/ariam/squatting.svg",
  23059. extra: 2617 / 2112,
  23060. bottom: 61.2 / 2681,
  23061. }
  23062. },
  23063. },
  23064. [
  23065. {
  23066. name: "Normal",
  23067. height: math.unit(6 + 2 / 12, "feet"),
  23068. default: true
  23069. },
  23070. {
  23071. name: "Normal+",
  23072. height: math.unit(4, "meters")
  23073. },
  23074. {
  23075. name: "Macro",
  23076. height: math.unit(50, "meters")
  23077. },
  23078. {
  23079. name: "Macro+",
  23080. height: math.unit(100, "meters")
  23081. },
  23082. {
  23083. name: "Megamacro",
  23084. height: math.unit(20, "km")
  23085. },
  23086. ]
  23087. ))
  23088. characterMakers.push(() => makeCharacter(
  23089. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23090. {
  23091. front: {
  23092. height: math.unit(1.67, "meters"),
  23093. weight: math.unit(140, "lb"),
  23094. name: "Front",
  23095. image: {
  23096. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23097. extra: 438 / 410,
  23098. bottom: 0.75 / 439
  23099. }
  23100. },
  23101. },
  23102. [
  23103. {
  23104. name: "Shrunken",
  23105. height: math.unit(7.6, "cm")
  23106. },
  23107. {
  23108. name: "Human Scale",
  23109. height: math.unit(1.67, "meters")
  23110. },
  23111. {
  23112. name: "Wolxi Scale",
  23113. height: math.unit(36.7, "meters"),
  23114. default: true
  23115. },
  23116. ]
  23117. ))
  23118. characterMakers.push(() => makeCharacter(
  23119. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23120. {
  23121. front: {
  23122. height: math.unit(1.73, "meters"),
  23123. weight: math.unit(240, "lb"),
  23124. name: "Front",
  23125. image: {
  23126. source: "./media/characters/izue-two-mothers/front.svg",
  23127. extra: 469 / 437,
  23128. bottom: 1.24 / 470.6
  23129. }
  23130. },
  23131. },
  23132. [
  23133. {
  23134. name: "Shrunken",
  23135. height: math.unit(7.86, "cm")
  23136. },
  23137. {
  23138. name: "Human Scale",
  23139. height: math.unit(1.73, "meters")
  23140. },
  23141. {
  23142. name: "Wolxi Scale",
  23143. height: math.unit(38, "meters"),
  23144. default: true
  23145. },
  23146. ]
  23147. ))
  23148. characterMakers.push(() => makeCharacter(
  23149. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23150. {
  23151. front: {
  23152. height: math.unit(1.55, "meters"),
  23153. weight: math.unit(120, "lb"),
  23154. name: "Front",
  23155. image: {
  23156. source: "./media/characters/teeku-love-shack/front.svg",
  23157. extra: 387 / 362,
  23158. bottom: 1.51 / 388
  23159. }
  23160. },
  23161. },
  23162. [
  23163. {
  23164. name: "Shrunken",
  23165. height: math.unit(7, "cm")
  23166. },
  23167. {
  23168. name: "Human Scale",
  23169. height: math.unit(1.55, "meters")
  23170. },
  23171. {
  23172. name: "Wolxi Scale",
  23173. height: math.unit(34.1, "meters"),
  23174. default: true
  23175. },
  23176. ]
  23177. ))
  23178. characterMakers.push(() => makeCharacter(
  23179. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23180. {
  23181. front: {
  23182. height: math.unit(1.83, "meters"),
  23183. weight: math.unit(135, "lb"),
  23184. name: "Front",
  23185. image: {
  23186. source: "./media/characters/dejma-the-red/front.svg",
  23187. extra: 480 / 458,
  23188. bottom: 1.8 / 482
  23189. }
  23190. },
  23191. },
  23192. [
  23193. {
  23194. name: "Shrunken",
  23195. height: math.unit(8.3, "cm")
  23196. },
  23197. {
  23198. name: "Human Scale",
  23199. height: math.unit(1.83, "meters")
  23200. },
  23201. {
  23202. name: "Wolxi Scale",
  23203. height: math.unit(40, "meters"),
  23204. default: true
  23205. },
  23206. ]
  23207. ))
  23208. characterMakers.push(() => makeCharacter(
  23209. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23210. {
  23211. front: {
  23212. height: math.unit(1.78, "meters"),
  23213. weight: math.unit(65, "kg"),
  23214. name: "Front",
  23215. image: {
  23216. source: "./media/characters/aki/front.svg",
  23217. extra: 452 / 415
  23218. }
  23219. },
  23220. frontNsfw: {
  23221. height: math.unit(1.78, "meters"),
  23222. weight: math.unit(65, "kg"),
  23223. name: "Front (NSFW)",
  23224. image: {
  23225. source: "./media/characters/aki/front-nsfw.svg",
  23226. extra: 452 / 415
  23227. }
  23228. },
  23229. back: {
  23230. height: math.unit(1.78, "meters"),
  23231. weight: math.unit(65, "kg"),
  23232. name: "Back",
  23233. image: {
  23234. source: "./media/characters/aki/back.svg",
  23235. extra: 452 / 415
  23236. }
  23237. },
  23238. rump: {
  23239. height: math.unit(2.05, "feet"),
  23240. name: "Rump",
  23241. image: {
  23242. source: "./media/characters/aki/rump.svg"
  23243. }
  23244. },
  23245. dick: {
  23246. height: math.unit(0.95, "feet"),
  23247. name: "Dick",
  23248. image: {
  23249. source: "./media/characters/aki/dick.svg"
  23250. }
  23251. },
  23252. },
  23253. [
  23254. {
  23255. name: "Micro",
  23256. height: math.unit(15, "cm")
  23257. },
  23258. {
  23259. name: "Normal",
  23260. height: math.unit(178, "cm"),
  23261. default: true
  23262. },
  23263. {
  23264. name: "Macro",
  23265. height: math.unit(214, "m")
  23266. },
  23267. {
  23268. name: "Macro+",
  23269. height: math.unit(534, "m")
  23270. },
  23271. ]
  23272. ))
  23273. characterMakers.push(() => makeCharacter(
  23274. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23275. {
  23276. front: {
  23277. height: math.unit(5 + 5 / 12, "feet"),
  23278. weight: math.unit(120, "lb"),
  23279. name: "Front",
  23280. image: {
  23281. source: "./media/characters/ari/front.svg",
  23282. extra: 714.5 / 682,
  23283. bottom: 8 / 722.5
  23284. }
  23285. },
  23286. },
  23287. [
  23288. {
  23289. name: "Normal",
  23290. height: math.unit(5 + 5 / 12, "feet")
  23291. },
  23292. {
  23293. name: "Macro",
  23294. height: math.unit(100, "feet"),
  23295. default: true
  23296. },
  23297. {
  23298. name: "Megamacro",
  23299. height: math.unit(100, "miles")
  23300. },
  23301. {
  23302. name: "Gigamacro",
  23303. height: math.unit(80000, "miles")
  23304. },
  23305. ]
  23306. ))
  23307. characterMakers.push(() => makeCharacter(
  23308. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23309. {
  23310. side: {
  23311. height: math.unit(9, "feet"),
  23312. weight: math.unit(400, "kg"),
  23313. name: "Side",
  23314. image: {
  23315. source: "./media/characters/bolt/side.svg",
  23316. extra: 1126 / 896,
  23317. bottom: 60 / 1187.3,
  23318. }
  23319. },
  23320. },
  23321. [
  23322. {
  23323. name: "Micro",
  23324. height: math.unit(5, "inches")
  23325. },
  23326. {
  23327. name: "Normal",
  23328. height: math.unit(9, "feet"),
  23329. default: true
  23330. },
  23331. {
  23332. name: "Macro",
  23333. height: math.unit(700, "feet")
  23334. },
  23335. {
  23336. name: "Max Size",
  23337. height: math.unit(1.52e22, "yottameters")
  23338. },
  23339. ]
  23340. ))
  23341. characterMakers.push(() => makeCharacter(
  23342. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23343. {
  23344. front: {
  23345. height: math.unit(4.53, "meters"),
  23346. weight: math.unit(3, "tons"),
  23347. name: "Front",
  23348. image: {
  23349. source: "./media/characters/draekon-sylviar/front.svg",
  23350. extra: 1228 / 1068,
  23351. bottom: 41 / 1270
  23352. }
  23353. },
  23354. tail: {
  23355. height: math.unit(1.772, "meter"),
  23356. name: "Tail",
  23357. image: {
  23358. source: "./media/characters/draekon-sylviar/tail.svg"
  23359. }
  23360. },
  23361. head: {
  23362. height: math.unit(1.331, "meter"),
  23363. name: "Head",
  23364. image: {
  23365. source: "./media/characters/draekon-sylviar/head.svg"
  23366. }
  23367. },
  23368. hand: {
  23369. height: math.unit(0.564, "meter"),
  23370. name: "Hand",
  23371. image: {
  23372. source: "./media/characters/draekon-sylviar/hand.svg"
  23373. }
  23374. },
  23375. foot: {
  23376. height: math.unit(0.621, "meter"),
  23377. name: "Foot",
  23378. image: {
  23379. source: "./media/characters/draekon-sylviar/foot.svg",
  23380. bottom: 32 / 324
  23381. }
  23382. },
  23383. dick: {
  23384. height: math.unit(61, "cm"),
  23385. name: "Dick",
  23386. image: {
  23387. source: "./media/characters/draekon-sylviar/dick.svg"
  23388. }
  23389. },
  23390. dickseparated: {
  23391. height: math.unit(61, "cm"),
  23392. name: "Dick-separated",
  23393. image: {
  23394. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23395. }
  23396. },
  23397. },
  23398. [
  23399. {
  23400. name: "Small",
  23401. height: math.unit(4.53 / 2, "meters"),
  23402. default: true
  23403. },
  23404. {
  23405. name: "Normal",
  23406. height: math.unit(4.53, "meters"),
  23407. default: true
  23408. },
  23409. {
  23410. name: "Large",
  23411. height: math.unit(4.53 * 2, "meters"),
  23412. },
  23413. ]
  23414. ))
  23415. characterMakers.push(() => makeCharacter(
  23416. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23417. {
  23418. front: {
  23419. height: math.unit(6 + 2 / 12, "feet"),
  23420. weight: math.unit(180, "lb"),
  23421. name: "Front",
  23422. image: {
  23423. source: "./media/characters/brawler/front.svg",
  23424. extra: 3301 / 3027,
  23425. bottom: 138 / 3439
  23426. }
  23427. },
  23428. },
  23429. [
  23430. {
  23431. name: "Normal",
  23432. height: math.unit(6 + 2 / 12, "feet"),
  23433. default: true
  23434. },
  23435. ]
  23436. ))
  23437. characterMakers.push(() => makeCharacter(
  23438. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23439. {
  23440. front: {
  23441. height: math.unit(11, "feet"),
  23442. weight: math.unit(1000, "lb"),
  23443. name: "Front",
  23444. image: {
  23445. source: "./media/characters/alex/front.svg",
  23446. bottom: 44.5 / 620
  23447. }
  23448. },
  23449. },
  23450. [
  23451. {
  23452. name: "Micro",
  23453. height: math.unit(5, "inches")
  23454. },
  23455. {
  23456. name: "Normal",
  23457. height: math.unit(11, "feet"),
  23458. default: true
  23459. },
  23460. {
  23461. name: "Macro",
  23462. height: math.unit(9.5e9, "feet")
  23463. },
  23464. {
  23465. name: "Max Size",
  23466. height: math.unit(1.4e283, "yottameters")
  23467. },
  23468. ]
  23469. ))
  23470. characterMakers.push(() => makeCharacter(
  23471. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23472. {
  23473. female: {
  23474. height: math.unit(29.9, "m"),
  23475. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23476. name: "Female",
  23477. image: {
  23478. source: "./media/characters/zenari/female.svg",
  23479. extra: 3281.6 / 3217,
  23480. bottom: 72.2 / 3353
  23481. }
  23482. },
  23483. male: {
  23484. height: math.unit(27.7, "m"),
  23485. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23486. name: "Male",
  23487. image: {
  23488. source: "./media/characters/zenari/male.svg",
  23489. extra: 3008 / 2991,
  23490. bottom: 54.6 / 3069
  23491. }
  23492. },
  23493. },
  23494. [
  23495. {
  23496. name: "Macro",
  23497. height: math.unit(29.7, "meters"),
  23498. default: true
  23499. },
  23500. ]
  23501. ))
  23502. characterMakers.push(() => makeCharacter(
  23503. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23504. {
  23505. female: {
  23506. height: math.unit(23.8, "m"),
  23507. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23508. name: "Female",
  23509. image: {
  23510. source: "./media/characters/mactarian/female.svg",
  23511. extra: 2662 / 2569,
  23512. bottom: 73 / 2736
  23513. }
  23514. },
  23515. male: {
  23516. height: math.unit(23.8, "m"),
  23517. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23518. name: "Male",
  23519. image: {
  23520. source: "./media/characters/mactarian/male.svg",
  23521. extra: 2673 / 2600,
  23522. bottom: 76 / 2750
  23523. }
  23524. },
  23525. },
  23526. [
  23527. {
  23528. name: "Macro",
  23529. height: math.unit(23.8, "meters"),
  23530. default: true
  23531. },
  23532. ]
  23533. ))
  23534. characterMakers.push(() => makeCharacter(
  23535. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23536. {
  23537. female: {
  23538. height: math.unit(19.3, "m"),
  23539. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23540. name: "Female",
  23541. image: {
  23542. source: "./media/characters/umok/female.svg",
  23543. extra: 2186 / 2078,
  23544. bottom: 87 / 2277
  23545. }
  23546. },
  23547. male: {
  23548. height: math.unit(19.5, "m"),
  23549. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23550. name: "Male",
  23551. image: {
  23552. source: "./media/characters/umok/male.svg",
  23553. extra: 2233 / 2140,
  23554. bottom: 24.4 / 2258
  23555. }
  23556. },
  23557. },
  23558. [
  23559. {
  23560. name: "Macro",
  23561. height: math.unit(19.3, "meters"),
  23562. default: true
  23563. },
  23564. ]
  23565. ))
  23566. characterMakers.push(() => makeCharacter(
  23567. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23568. {
  23569. female: {
  23570. height: math.unit(26.15, "m"),
  23571. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23572. name: "Female",
  23573. image: {
  23574. source: "./media/characters/joraxian/female.svg",
  23575. extra: 2912 / 2824,
  23576. bottom: 36 / 2956
  23577. }
  23578. },
  23579. male: {
  23580. height: math.unit(25.4, "m"),
  23581. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23582. name: "Male",
  23583. image: {
  23584. source: "./media/characters/joraxian/male.svg",
  23585. extra: 2877 / 2721,
  23586. bottom: 82 / 2967
  23587. }
  23588. },
  23589. },
  23590. [
  23591. {
  23592. name: "Macro",
  23593. height: math.unit(26.15, "meters"),
  23594. default: true
  23595. },
  23596. ]
  23597. ))
  23598. characterMakers.push(() => makeCharacter(
  23599. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23600. {
  23601. female: {
  23602. height: math.unit(21.6, "m"),
  23603. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23604. name: "Female",
  23605. image: {
  23606. source: "./media/characters/sthara/female.svg",
  23607. extra: 2516 / 2347,
  23608. bottom: 21.5 / 2537
  23609. }
  23610. },
  23611. male: {
  23612. height: math.unit(24, "m"),
  23613. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23614. name: "Male",
  23615. image: {
  23616. source: "./media/characters/sthara/male.svg",
  23617. extra: 2732 / 2607,
  23618. bottom: 23 / 2732
  23619. }
  23620. },
  23621. },
  23622. [
  23623. {
  23624. name: "Macro",
  23625. height: math.unit(21.6, "meters"),
  23626. default: true
  23627. },
  23628. ]
  23629. ))
  23630. characterMakers.push(() => makeCharacter(
  23631. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23632. {
  23633. front: {
  23634. height: math.unit(6 + 4 / 12, "feet"),
  23635. weight: math.unit(175, "lb"),
  23636. name: "Front",
  23637. image: {
  23638. source: "./media/characters/luka-bryzant/front.svg",
  23639. extra: 311 / 289,
  23640. bottom: 4 / 315
  23641. }
  23642. },
  23643. back: {
  23644. height: math.unit(6 + 4 / 12, "feet"),
  23645. weight: math.unit(175, "lb"),
  23646. name: "Back",
  23647. image: {
  23648. source: "./media/characters/luka-bryzant/back.svg",
  23649. extra: 311 / 289,
  23650. bottom: 3.8 / 313.7
  23651. }
  23652. },
  23653. },
  23654. [
  23655. {
  23656. name: "Micro",
  23657. height: math.unit(10, "inches")
  23658. },
  23659. {
  23660. name: "Normal",
  23661. height: math.unit(6 + 4 / 12, "feet"),
  23662. default: true
  23663. },
  23664. {
  23665. name: "Large",
  23666. height: math.unit(12, "feet")
  23667. },
  23668. ]
  23669. ))
  23670. characterMakers.push(() => makeCharacter(
  23671. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23672. {
  23673. front: {
  23674. height: math.unit(5 + 7 / 12, "feet"),
  23675. weight: math.unit(185, "lb"),
  23676. name: "Front",
  23677. image: {
  23678. source: "./media/characters/aman-aquila/front.svg",
  23679. extra: 1013 / 976,
  23680. bottom: 45.6 / 1057
  23681. }
  23682. },
  23683. side: {
  23684. height: math.unit(5 + 7 / 12, "feet"),
  23685. weight: math.unit(185, "lb"),
  23686. name: "Side",
  23687. image: {
  23688. source: "./media/characters/aman-aquila/side.svg",
  23689. extra: 1054 / 1011,
  23690. bottom: 15 / 1070
  23691. }
  23692. },
  23693. back: {
  23694. height: math.unit(5 + 7 / 12, "feet"),
  23695. weight: math.unit(185, "lb"),
  23696. name: "Back",
  23697. image: {
  23698. source: "./media/characters/aman-aquila/back.svg",
  23699. extra: 1026 / 970,
  23700. bottom: 12 / 1039
  23701. }
  23702. },
  23703. head: {
  23704. height: math.unit(1.211, "feet"),
  23705. name: "Head",
  23706. image: {
  23707. source: "./media/characters/aman-aquila/head.svg",
  23708. }
  23709. },
  23710. },
  23711. [
  23712. {
  23713. name: "Minimicro",
  23714. height: math.unit(0.057, "inches")
  23715. },
  23716. {
  23717. name: "Micro",
  23718. height: math.unit(7, "inches")
  23719. },
  23720. {
  23721. name: "Mini",
  23722. height: math.unit(3 + 7 / 12, "feet")
  23723. },
  23724. {
  23725. name: "Normal",
  23726. height: math.unit(5 + 7 / 12, "feet"),
  23727. default: true
  23728. },
  23729. {
  23730. name: "Macro",
  23731. height: math.unit(157 + 7 / 12, "feet")
  23732. },
  23733. {
  23734. name: "Megamacro",
  23735. height: math.unit(1557 + 7 / 12, "feet")
  23736. },
  23737. {
  23738. name: "Gigamacro",
  23739. height: math.unit(15557 + 7 / 12, "feet")
  23740. },
  23741. ]
  23742. ))
  23743. characterMakers.push(() => makeCharacter(
  23744. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23745. {
  23746. front: {
  23747. height: math.unit(3 + 2 / 12, "inches"),
  23748. weight: math.unit(0.3, "ounces"),
  23749. name: "Front",
  23750. image: {
  23751. source: "./media/characters/hiphae/front.svg",
  23752. extra: 1931 / 1683,
  23753. bottom: 24 / 1955
  23754. }
  23755. },
  23756. },
  23757. [
  23758. {
  23759. name: "Normal",
  23760. height: math.unit(3 + 1 / 2, "inches"),
  23761. default: true
  23762. },
  23763. ]
  23764. ))
  23765. characterMakers.push(() => makeCharacter(
  23766. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23767. {
  23768. front: {
  23769. height: math.unit(5 + 10 / 12, "feet"),
  23770. weight: math.unit(165, "lb"),
  23771. name: "Front",
  23772. image: {
  23773. source: "./media/characters/nicky/front.svg",
  23774. extra: 3144 / 2886,
  23775. bottom: 45.6 / 3192
  23776. }
  23777. },
  23778. back: {
  23779. height: math.unit(5 + 10 / 12, "feet"),
  23780. weight: math.unit(165, "lb"),
  23781. name: "Back",
  23782. image: {
  23783. source: "./media/characters/nicky/back.svg",
  23784. extra: 3055 / 2804,
  23785. bottom: 28.4 / 3087
  23786. }
  23787. },
  23788. frontclothed: {
  23789. height: math.unit(5 + 10 / 12, "feet"),
  23790. weight: math.unit(165, "lb"),
  23791. name: "Front-clothed",
  23792. image: {
  23793. source: "./media/characters/nicky/front-clothed.svg",
  23794. extra: 3184.9 / 2926.9,
  23795. bottom: 86.5 / 3239.9
  23796. }
  23797. },
  23798. foot: {
  23799. height: math.unit(1.16, "feet"),
  23800. name: "Foot",
  23801. image: {
  23802. source: "./media/characters/nicky/foot.svg"
  23803. }
  23804. },
  23805. feet: {
  23806. height: math.unit(1.34, "feet"),
  23807. name: "Feet",
  23808. image: {
  23809. source: "./media/characters/nicky/feet.svg"
  23810. }
  23811. },
  23812. maw: {
  23813. height: math.unit(0.9, "feet"),
  23814. name: "Maw",
  23815. image: {
  23816. source: "./media/characters/nicky/maw.svg"
  23817. }
  23818. },
  23819. },
  23820. [
  23821. {
  23822. name: "Normal",
  23823. height: math.unit(5 + 10 / 12, "feet"),
  23824. default: true
  23825. },
  23826. {
  23827. name: "Macro",
  23828. height: math.unit(60, "feet")
  23829. },
  23830. {
  23831. name: "Megamacro",
  23832. height: math.unit(1, "mile")
  23833. },
  23834. ]
  23835. ))
  23836. characterMakers.push(() => makeCharacter(
  23837. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23838. {
  23839. side: {
  23840. height: math.unit(10, "feet"),
  23841. weight: math.unit(600, "lb"),
  23842. name: "Side",
  23843. image: {
  23844. source: "./media/characters/blair/side.svg",
  23845. bottom: 16.6 / 475,
  23846. extra: 458 / 431
  23847. }
  23848. },
  23849. },
  23850. [
  23851. {
  23852. name: "Micro",
  23853. height: math.unit(8, "inches")
  23854. },
  23855. {
  23856. name: "Normal",
  23857. height: math.unit(10, "feet"),
  23858. default: true
  23859. },
  23860. {
  23861. name: "Macro",
  23862. height: math.unit(180, "feet")
  23863. },
  23864. ]
  23865. ))
  23866. characterMakers.push(() => makeCharacter(
  23867. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23868. {
  23869. front: {
  23870. height: math.unit(5 + 4 / 12, "feet"),
  23871. weight: math.unit(125, "lb"),
  23872. name: "Front",
  23873. image: {
  23874. source: "./media/characters/fisher/front.svg",
  23875. extra: 444 / 390,
  23876. bottom: 2 / 444.8
  23877. }
  23878. },
  23879. },
  23880. [
  23881. {
  23882. name: "Micro",
  23883. height: math.unit(4, "inches")
  23884. },
  23885. {
  23886. name: "Normal",
  23887. height: math.unit(5 + 4 / 12, "feet"),
  23888. default: true
  23889. },
  23890. {
  23891. name: "Macro",
  23892. height: math.unit(100, "feet")
  23893. },
  23894. ]
  23895. ))
  23896. characterMakers.push(() => makeCharacter(
  23897. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23898. {
  23899. front: {
  23900. height: math.unit(6.71, "feet"),
  23901. weight: math.unit(200, "lb"),
  23902. capacity: math.unit(1000000, "people"),
  23903. name: "Front",
  23904. image: {
  23905. source: "./media/characters/gliss/front.svg",
  23906. extra: 2347 / 2231,
  23907. bottom: 113 / 2462
  23908. }
  23909. },
  23910. hammerspaceSize: {
  23911. height: math.unit(6.71 * 717, "feet"),
  23912. weight: math.unit(200, "lb"),
  23913. capacity: math.unit(1000000, "people"),
  23914. name: "Hammerspace Size",
  23915. image: {
  23916. source: "./media/characters/gliss/front.svg",
  23917. extra: 2347 / 2231,
  23918. bottom: 113 / 2462
  23919. }
  23920. },
  23921. },
  23922. [
  23923. {
  23924. name: "Normal",
  23925. height: math.unit(6.71, "feet"),
  23926. default: true
  23927. },
  23928. ]
  23929. ))
  23930. characterMakers.push(() => makeCharacter(
  23931. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23932. {
  23933. side: {
  23934. height: math.unit(1.44, "m"),
  23935. weight: math.unit(80, "kg"),
  23936. name: "Side",
  23937. image: {
  23938. source: "./media/characters/dune-anderson/side.svg",
  23939. bottom: 49 / 1426
  23940. }
  23941. },
  23942. },
  23943. [
  23944. {
  23945. name: "Wolf-sized",
  23946. height: math.unit(1.44, "meters")
  23947. },
  23948. {
  23949. name: "Normal",
  23950. height: math.unit(5.05, "meters"),
  23951. default: true
  23952. },
  23953. {
  23954. name: "Big",
  23955. height: math.unit(14.4, "meters")
  23956. },
  23957. {
  23958. name: "Huge",
  23959. height: math.unit(144, "meters")
  23960. },
  23961. ]
  23962. ))
  23963. characterMakers.push(() => makeCharacter(
  23964. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23965. {
  23966. front: {
  23967. height: math.unit(7, "feet"),
  23968. weight: math.unit(425, "lb"),
  23969. name: "Front",
  23970. image: {
  23971. source: "./media/characters/hind/front.svg",
  23972. extra: 2091 / 1860,
  23973. bottom: 129 / 2220
  23974. }
  23975. },
  23976. back: {
  23977. height: math.unit(7, "feet"),
  23978. weight: math.unit(425, "lb"),
  23979. name: "Back",
  23980. image: {
  23981. source: "./media/characters/hind/back.svg",
  23982. extra: 2091 / 1860,
  23983. bottom: 24.6 / 2309
  23984. }
  23985. },
  23986. tail: {
  23987. height: math.unit(2.8, "feet"),
  23988. name: "Tail",
  23989. image: {
  23990. source: "./media/characters/hind/tail.svg"
  23991. }
  23992. },
  23993. head: {
  23994. height: math.unit(2.55, "feet"),
  23995. name: "Head",
  23996. image: {
  23997. source: "./media/characters/hind/head.svg"
  23998. }
  23999. },
  24000. },
  24001. [
  24002. {
  24003. name: "XS",
  24004. height: math.unit(0.7, "feet")
  24005. },
  24006. {
  24007. name: "Normal",
  24008. height: math.unit(7, "feet"),
  24009. default: true
  24010. },
  24011. {
  24012. name: "XL",
  24013. height: math.unit(70, "feet")
  24014. },
  24015. ]
  24016. ))
  24017. characterMakers.push(() => makeCharacter(
  24018. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24019. {
  24020. front: {
  24021. height: math.unit(6, "feet"),
  24022. weight: math.unit(150, "lb"),
  24023. name: "Front",
  24024. image: {
  24025. source: "./media/characters/dylan-skaven/front.svg",
  24026. extra: 2318 / 2063,
  24027. bottom: 93.4 / 2410
  24028. }
  24029. },
  24030. },
  24031. [
  24032. {
  24033. name: "Nano",
  24034. height: math.unit(1, "mm")
  24035. },
  24036. {
  24037. name: "Micro",
  24038. height: math.unit(1, "cm")
  24039. },
  24040. {
  24041. name: "Normal",
  24042. height: math.unit(2.1, "meters"),
  24043. default: true
  24044. },
  24045. ]
  24046. ))
  24047. characterMakers.push(() => makeCharacter(
  24048. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24049. {
  24050. front: {
  24051. height: math.unit(7 + 5 / 12, "feet"),
  24052. weight: math.unit(357, "lb"),
  24053. name: "Front",
  24054. image: {
  24055. source: "./media/characters/solex-draconov/front.svg",
  24056. extra: 1993 / 1865,
  24057. bottom: 117 / 2111
  24058. }
  24059. },
  24060. },
  24061. [
  24062. {
  24063. name: "Natural Height",
  24064. height: math.unit(7 + 5 / 12, "feet"),
  24065. default: true
  24066. },
  24067. {
  24068. name: "Macro",
  24069. height: math.unit(350, "feet")
  24070. },
  24071. {
  24072. name: "Macro+",
  24073. height: math.unit(1000, "feet")
  24074. },
  24075. {
  24076. name: "Megamacro",
  24077. height: math.unit(20, "km")
  24078. },
  24079. {
  24080. name: "Megamacro+",
  24081. height: math.unit(1000, "km")
  24082. },
  24083. {
  24084. name: "Gigamacro",
  24085. height: math.unit(2.5, "Gm")
  24086. },
  24087. {
  24088. name: "Teramacro",
  24089. height: math.unit(15, "Tm")
  24090. },
  24091. {
  24092. name: "Galactic",
  24093. height: math.unit(30, "Zm")
  24094. },
  24095. {
  24096. name: "Universal",
  24097. height: math.unit(21000, "Ym")
  24098. },
  24099. {
  24100. name: "Omniversal",
  24101. height: math.unit(9.861e50, "Ym")
  24102. },
  24103. {
  24104. name: "Existential",
  24105. height: math.unit(1e300, "meters")
  24106. },
  24107. ]
  24108. ))
  24109. characterMakers.push(() => makeCharacter(
  24110. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24111. {
  24112. side: {
  24113. height: math.unit(25, "feet"),
  24114. weight: math.unit(90000, "lb"),
  24115. name: "Side",
  24116. image: {
  24117. source: "./media/characters/mandarax/side.svg",
  24118. extra: 614 / 332,
  24119. bottom: 55 / 630
  24120. }
  24121. },
  24122. head: {
  24123. height: math.unit(11.4, "feet"),
  24124. name: "Head",
  24125. image: {
  24126. source: "./media/characters/mandarax/head.svg"
  24127. }
  24128. },
  24129. belly: {
  24130. height: math.unit(33, "feet"),
  24131. name: "Belly",
  24132. capacity: math.unit(500, "people"),
  24133. image: {
  24134. source: "./media/characters/mandarax/belly.svg"
  24135. }
  24136. },
  24137. dick: {
  24138. height: math.unit(8.46, "feet"),
  24139. name: "Dick",
  24140. image: {
  24141. source: "./media/characters/mandarax/dick.svg"
  24142. }
  24143. },
  24144. top: {
  24145. height: math.unit(28, "meters"),
  24146. name: "Top",
  24147. image: {
  24148. source: "./media/characters/mandarax/top.svg"
  24149. }
  24150. },
  24151. },
  24152. [
  24153. {
  24154. name: "Normal",
  24155. height: math.unit(25, "feet"),
  24156. default: true
  24157. },
  24158. ]
  24159. ))
  24160. characterMakers.push(() => makeCharacter(
  24161. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24162. {
  24163. front: {
  24164. height: math.unit(5, "feet"),
  24165. weight: math.unit(90, "lb"),
  24166. name: "Front",
  24167. image: {
  24168. source: "./media/characters/pixil/front.svg",
  24169. extra: 2000 / 1618,
  24170. bottom: 12.3 / 2011
  24171. }
  24172. },
  24173. },
  24174. [
  24175. {
  24176. name: "Normal",
  24177. height: math.unit(5, "feet"),
  24178. default: true
  24179. },
  24180. {
  24181. name: "Megamacro",
  24182. height: math.unit(10, "miles"),
  24183. },
  24184. ]
  24185. ))
  24186. characterMakers.push(() => makeCharacter(
  24187. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24188. {
  24189. front: {
  24190. height: math.unit(7 + 2 / 12, "feet"),
  24191. weight: math.unit(200, "lb"),
  24192. name: "Front",
  24193. image: {
  24194. source: "./media/characters/angel/front.svg",
  24195. extra: 1830 / 1737,
  24196. bottom: 22.6 / 1854,
  24197. }
  24198. },
  24199. },
  24200. [
  24201. {
  24202. name: "Normal",
  24203. height: math.unit(7 + 2 / 12, "feet"),
  24204. default: true
  24205. },
  24206. {
  24207. name: "Macro",
  24208. height: math.unit(1000, "feet")
  24209. },
  24210. {
  24211. name: "Megamacro",
  24212. height: math.unit(2, "miles")
  24213. },
  24214. {
  24215. name: "Gigamacro",
  24216. height: math.unit(20, "earths")
  24217. },
  24218. ]
  24219. ))
  24220. characterMakers.push(() => makeCharacter(
  24221. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24222. {
  24223. front: {
  24224. height: math.unit(5, "feet"),
  24225. weight: math.unit(180, "lb"),
  24226. name: "Front",
  24227. image: {
  24228. source: "./media/characters/mekana/front.svg",
  24229. extra: 1671 / 1605,
  24230. bottom: 3.5 / 1691
  24231. }
  24232. },
  24233. side: {
  24234. height: math.unit(5, "feet"),
  24235. weight: math.unit(180, "lb"),
  24236. name: "Side",
  24237. image: {
  24238. source: "./media/characters/mekana/side.svg",
  24239. extra: 1671 / 1605,
  24240. bottom: 3.5 / 1691
  24241. }
  24242. },
  24243. back: {
  24244. height: math.unit(5, "feet"),
  24245. weight: math.unit(180, "lb"),
  24246. name: "Back",
  24247. image: {
  24248. source: "./media/characters/mekana/back.svg",
  24249. extra: 1671 / 1605,
  24250. bottom: 3.5 / 1691
  24251. }
  24252. },
  24253. },
  24254. [
  24255. {
  24256. name: "Normal",
  24257. height: math.unit(5, "feet"),
  24258. default: true
  24259. },
  24260. ]
  24261. ))
  24262. characterMakers.push(() => makeCharacter(
  24263. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24264. {
  24265. front: {
  24266. height: math.unit(4 + 6 / 12, "feet"),
  24267. weight: math.unit(80, "lb"),
  24268. name: "Front",
  24269. image: {
  24270. source: "./media/characters/pixie/front.svg",
  24271. extra: 1924 / 1825,
  24272. bottom: 22.4 / 1946
  24273. }
  24274. },
  24275. },
  24276. [
  24277. {
  24278. name: "Normal",
  24279. height: math.unit(4 + 6 / 12, "feet"),
  24280. default: true
  24281. },
  24282. {
  24283. name: "Macro",
  24284. height: math.unit(40, "feet")
  24285. },
  24286. ]
  24287. ))
  24288. characterMakers.push(() => makeCharacter(
  24289. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24290. {
  24291. front: {
  24292. height: math.unit(2.1, "meters"),
  24293. weight: math.unit(200, "lb"),
  24294. name: "Front",
  24295. image: {
  24296. source: "./media/characters/the-lascivious/front.svg",
  24297. extra: 1 / 0.893,
  24298. bottom: 3.5 / 573.7
  24299. }
  24300. },
  24301. },
  24302. [
  24303. {
  24304. name: "Human Scale",
  24305. height: math.unit(2.1, "meters")
  24306. },
  24307. {
  24308. name: "Wolxi Scale",
  24309. height: math.unit(46.2, "m"),
  24310. default: true
  24311. },
  24312. {
  24313. name: "Boinker of Buildings",
  24314. height: math.unit(10, "km")
  24315. },
  24316. {
  24317. name: "Shagger of Skyscrapers",
  24318. height: math.unit(40, "km")
  24319. },
  24320. {
  24321. name: "Banger of Boroughs",
  24322. height: math.unit(4000, "km")
  24323. },
  24324. {
  24325. name: "Screwer of States",
  24326. height: math.unit(100000, "km")
  24327. },
  24328. {
  24329. name: "Pounder of Planets",
  24330. height: math.unit(2000000, "km")
  24331. },
  24332. ]
  24333. ))
  24334. characterMakers.push(() => makeCharacter(
  24335. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24336. {
  24337. front: {
  24338. height: math.unit(6, "feet"),
  24339. weight: math.unit(150, "lb"),
  24340. name: "Front",
  24341. image: {
  24342. source: "./media/characters/aj/front.svg",
  24343. extra: 2039 / 1562,
  24344. bottom: 40 / 2079
  24345. }
  24346. },
  24347. },
  24348. [
  24349. {
  24350. name: "Normal",
  24351. height: math.unit(11 + 6 / 12, "feet"),
  24352. default: true
  24353. },
  24354. {
  24355. name: "Megamacro",
  24356. height: math.unit(60, "megameters")
  24357. },
  24358. ]
  24359. ))
  24360. characterMakers.push(() => makeCharacter(
  24361. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24362. {
  24363. side: {
  24364. height: math.unit(31 + 8 / 12, "feet"),
  24365. weight: math.unit(75000, "kg"),
  24366. name: "Side",
  24367. image: {
  24368. source: "./media/characters/koros/side.svg",
  24369. extra: 1442 / 1297,
  24370. bottom: 122.7 / 1562
  24371. }
  24372. },
  24373. dicksKingsCrown: {
  24374. height: math.unit(6, "feet"),
  24375. name: "Dicks (King's Crown)",
  24376. image: {
  24377. source: "./media/characters/koros/dicks-kings-crown.svg"
  24378. }
  24379. },
  24380. dicksTailSet: {
  24381. height: math.unit(3, "feet"),
  24382. name: "Dicks (Tail Set)",
  24383. image: {
  24384. source: "./media/characters/koros/dicks-tail-set.svg"
  24385. }
  24386. },
  24387. dickCumming: {
  24388. height: math.unit(7.98, "feet"),
  24389. name: "Dick (Cumming)",
  24390. image: {
  24391. source: "./media/characters/koros/dick-cumming.svg"
  24392. }
  24393. },
  24394. dicksBack: {
  24395. height: math.unit(5.9, "feet"),
  24396. name: "Dicks (Back)",
  24397. image: {
  24398. source: "./media/characters/koros/dicks-back.svg"
  24399. }
  24400. },
  24401. dicksFront: {
  24402. height: math.unit(3.72, "feet"),
  24403. name: "Dicks (Front)",
  24404. image: {
  24405. source: "./media/characters/koros/dicks-front.svg"
  24406. }
  24407. },
  24408. dicksPeeking: {
  24409. height: math.unit(3.0, "feet"),
  24410. name: "Dicks (Peeking)",
  24411. image: {
  24412. source: "./media/characters/koros/dicks-peeking.svg"
  24413. }
  24414. },
  24415. eye: {
  24416. height: math.unit(1.7, "feet"),
  24417. name: "Eye",
  24418. image: {
  24419. source: "./media/characters/koros/eye.svg"
  24420. }
  24421. },
  24422. headFront: {
  24423. height: math.unit(11.69, "feet"),
  24424. name: "Head (Front)",
  24425. image: {
  24426. source: "./media/characters/koros/head-front.svg"
  24427. }
  24428. },
  24429. headSide: {
  24430. height: math.unit(14, "feet"),
  24431. name: "Head (Side)",
  24432. image: {
  24433. source: "./media/characters/koros/head-side.svg"
  24434. }
  24435. },
  24436. leg: {
  24437. height: math.unit(17, "feet"),
  24438. name: "Leg",
  24439. image: {
  24440. source: "./media/characters/koros/leg.svg"
  24441. }
  24442. },
  24443. mawSide: {
  24444. height: math.unit(12.8, "feet"),
  24445. name: "Maw (Side)",
  24446. image: {
  24447. source: "./media/characters/koros/maw-side.svg"
  24448. }
  24449. },
  24450. mawSpitting: {
  24451. height: math.unit(17, "feet"),
  24452. name: "Maw (Spitting)",
  24453. image: {
  24454. source: "./media/characters/koros/maw-spitting.svg"
  24455. }
  24456. },
  24457. slit: {
  24458. height: math.unit(2.8, "feet"),
  24459. name: "Slit",
  24460. image: {
  24461. source: "./media/characters/koros/slit.svg"
  24462. }
  24463. },
  24464. stomach: {
  24465. height: math.unit(6.8, "feet"),
  24466. capacity: math.unit(20, "people"),
  24467. name: "Stomach",
  24468. image: {
  24469. source: "./media/characters/koros/stomach.svg"
  24470. }
  24471. },
  24472. wingspanBottom: {
  24473. height: math.unit(114, "feet"),
  24474. name: "Wingspan (Bottom)",
  24475. image: {
  24476. source: "./media/characters/koros/wingspan-bottom.svg"
  24477. }
  24478. },
  24479. wingspanTop: {
  24480. height: math.unit(104, "feet"),
  24481. name: "Wingspan (Top)",
  24482. image: {
  24483. source: "./media/characters/koros/wingspan-top.svg"
  24484. }
  24485. },
  24486. },
  24487. [
  24488. {
  24489. name: "Normal",
  24490. height: math.unit(31 + 8 / 12, "feet"),
  24491. default: true
  24492. },
  24493. ]
  24494. ))
  24495. characterMakers.push(() => makeCharacter(
  24496. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24497. {
  24498. front: {
  24499. height: math.unit(18 + 5 / 12, "feet"),
  24500. weight: math.unit(3750, "kg"),
  24501. name: "Front",
  24502. image: {
  24503. source: "./media/characters/vexx/front.svg",
  24504. extra: 426 / 396,
  24505. bottom: 31.5 / 458
  24506. }
  24507. },
  24508. maw: {
  24509. height: math.unit(6, "feet"),
  24510. name: "Maw",
  24511. image: {
  24512. source: "./media/characters/vexx/maw.svg"
  24513. }
  24514. },
  24515. },
  24516. [
  24517. {
  24518. name: "Normal",
  24519. height: math.unit(18 + 5 / 12, "feet"),
  24520. default: true
  24521. },
  24522. ]
  24523. ))
  24524. characterMakers.push(() => makeCharacter(
  24525. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24526. {
  24527. front: {
  24528. height: math.unit(17 + 6 / 12, "feet"),
  24529. weight: math.unit(150, "lb"),
  24530. name: "Front",
  24531. image: {
  24532. source: "./media/characters/baadra/front.svg",
  24533. extra: 3137 / 2890,
  24534. bottom: 168.4 / 3305
  24535. }
  24536. },
  24537. back: {
  24538. height: math.unit(17 + 6 / 12, "feet"),
  24539. weight: math.unit(150, "lb"),
  24540. name: "Back",
  24541. image: {
  24542. source: "./media/characters/baadra/back.svg",
  24543. extra: 3142 / 2890,
  24544. bottom: 220 / 3371
  24545. }
  24546. },
  24547. head: {
  24548. height: math.unit(5.45, "feet"),
  24549. name: "Head",
  24550. image: {
  24551. source: "./media/characters/baadra/head.svg"
  24552. }
  24553. },
  24554. headAngry: {
  24555. height: math.unit(4.95, "feet"),
  24556. name: "Head (Angry)",
  24557. image: {
  24558. source: "./media/characters/baadra/head-angry.svg"
  24559. }
  24560. },
  24561. headOpen: {
  24562. height: math.unit(6, "feet"),
  24563. name: "Head (Open)",
  24564. image: {
  24565. source: "./media/characters/baadra/head-open.svg"
  24566. }
  24567. },
  24568. },
  24569. [
  24570. {
  24571. name: "Normal",
  24572. height: math.unit(17 + 6 / 12, "feet"),
  24573. default: true
  24574. },
  24575. ]
  24576. ))
  24577. characterMakers.push(() => makeCharacter(
  24578. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24579. {
  24580. front: {
  24581. height: math.unit(7 + 3 / 12, "feet"),
  24582. weight: math.unit(180, "lb"),
  24583. name: "Front",
  24584. image: {
  24585. source: "./media/characters/juri/front.svg",
  24586. extra: 1401 / 1237,
  24587. bottom: 18.5 / 1418
  24588. }
  24589. },
  24590. side: {
  24591. height: math.unit(7 + 3 / 12, "feet"),
  24592. weight: math.unit(180, "lb"),
  24593. name: "Side",
  24594. image: {
  24595. source: "./media/characters/juri/side.svg",
  24596. extra: 1424 / 1242,
  24597. bottom: 18.5 / 1447
  24598. }
  24599. },
  24600. sitting: {
  24601. height: math.unit(6, "feet"),
  24602. weight: math.unit(180, "lb"),
  24603. name: "Sitting",
  24604. image: {
  24605. source: "./media/characters/juri/sitting.svg",
  24606. extra: 1270 / 1143,
  24607. bottom: 100 / 1343
  24608. }
  24609. },
  24610. back: {
  24611. height: math.unit(7 + 3 / 12, "feet"),
  24612. weight: math.unit(180, "lb"),
  24613. name: "Back",
  24614. image: {
  24615. source: "./media/characters/juri/back.svg",
  24616. extra: 1377 / 1240,
  24617. bottom: 23.7 / 1405
  24618. }
  24619. },
  24620. maw: {
  24621. height: math.unit(2.8, "feet"),
  24622. name: "Maw",
  24623. image: {
  24624. source: "./media/characters/juri/maw.svg"
  24625. }
  24626. },
  24627. stomach: {
  24628. height: math.unit(0.89, "feet"),
  24629. capacity: math.unit(4, "liters"),
  24630. name: "Stomach",
  24631. image: {
  24632. source: "./media/characters/juri/stomach.svg"
  24633. }
  24634. },
  24635. },
  24636. [
  24637. {
  24638. name: "Normal",
  24639. height: math.unit(7 + 3 / 12, "feet"),
  24640. default: true
  24641. },
  24642. ]
  24643. ))
  24644. characterMakers.push(() => makeCharacter(
  24645. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24646. {
  24647. fox: {
  24648. height: math.unit(5 + 6 / 12, "feet"),
  24649. weight: math.unit(140, "lb"),
  24650. name: "Fox",
  24651. image: {
  24652. source: "./media/characters/maxene-sita/fox.svg",
  24653. extra: 146 / 138,
  24654. bottom: 2.1 / 148.19
  24655. }
  24656. },
  24657. kitsune: {
  24658. height: math.unit(10, "feet"),
  24659. weight: math.unit(800, "lb"),
  24660. name: "Kitsune",
  24661. image: {
  24662. source: "./media/characters/maxene-sita/kitsune.svg",
  24663. extra: 185 / 176,
  24664. bottom: 4.7 / 189.9
  24665. }
  24666. },
  24667. },
  24668. [
  24669. {
  24670. name: "Normal",
  24671. height: math.unit(5 + 6 / 12, "feet"),
  24672. default: true
  24673. },
  24674. ]
  24675. ))
  24676. characterMakers.push(() => makeCharacter(
  24677. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24678. {
  24679. front: {
  24680. height: math.unit(3 + 4 / 12, "feet"),
  24681. weight: math.unit(70, "lb"),
  24682. name: "Front",
  24683. image: {
  24684. source: "./media/characters/maia/front.svg",
  24685. extra: 227 / 219.5,
  24686. bottom: 40 / 267
  24687. }
  24688. },
  24689. back: {
  24690. height: math.unit(3 + 4 / 12, "feet"),
  24691. weight: math.unit(70, "lb"),
  24692. name: "Back",
  24693. image: {
  24694. source: "./media/characters/maia/back.svg",
  24695. extra: 237 / 225
  24696. }
  24697. },
  24698. },
  24699. [
  24700. {
  24701. name: "Normal",
  24702. height: math.unit(3 + 4 / 12, "feet"),
  24703. default: true
  24704. },
  24705. ]
  24706. ))
  24707. characterMakers.push(() => makeCharacter(
  24708. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24709. {
  24710. front: {
  24711. height: math.unit(5 + 10 / 12, "feet"),
  24712. weight: math.unit(197, "lb"),
  24713. name: "Front",
  24714. image: {
  24715. source: "./media/characters/jabaro/front.svg",
  24716. extra: 225 / 216,
  24717. bottom: 5.06 / 230
  24718. }
  24719. },
  24720. back: {
  24721. height: math.unit(5 + 10 / 12, "feet"),
  24722. weight: math.unit(197, "lb"),
  24723. name: "Back",
  24724. image: {
  24725. source: "./media/characters/jabaro/back.svg",
  24726. extra: 225 / 219,
  24727. bottom: 1.9 / 227
  24728. }
  24729. },
  24730. },
  24731. [
  24732. {
  24733. name: "Normal",
  24734. height: math.unit(5 + 10 / 12, "feet"),
  24735. default: true
  24736. },
  24737. ]
  24738. ))
  24739. characterMakers.push(() => makeCharacter(
  24740. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24741. {
  24742. front: {
  24743. height: math.unit(5 + 8 / 12, "feet"),
  24744. weight: math.unit(139, "lb"),
  24745. name: "Front",
  24746. image: {
  24747. source: "./media/characters/risa/front.svg",
  24748. extra: 270 / 260,
  24749. bottom: 11.2 / 282
  24750. }
  24751. },
  24752. back: {
  24753. height: math.unit(5 + 8 / 12, "feet"),
  24754. weight: math.unit(139, "lb"),
  24755. name: "Back",
  24756. image: {
  24757. source: "./media/characters/risa/back.svg",
  24758. extra: 264 / 255,
  24759. bottom: 4 / 268
  24760. }
  24761. },
  24762. },
  24763. [
  24764. {
  24765. name: "Normal",
  24766. height: math.unit(5 + 8 / 12, "feet"),
  24767. default: true
  24768. },
  24769. ]
  24770. ))
  24771. characterMakers.push(() => makeCharacter(
  24772. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24773. {
  24774. front: {
  24775. height: math.unit(2 + 11 / 12, "feet"),
  24776. weight: math.unit(30, "lb"),
  24777. name: "Front",
  24778. image: {
  24779. source: "./media/characters/weatley/front.svg",
  24780. bottom: 10.7 / 414,
  24781. extra: 403.5 / 362
  24782. }
  24783. },
  24784. back: {
  24785. height: math.unit(2 + 11 / 12, "feet"),
  24786. weight: math.unit(30, "lb"),
  24787. name: "Back",
  24788. image: {
  24789. source: "./media/characters/weatley/back.svg",
  24790. bottom: 10.7 / 414,
  24791. extra: 403.5 / 362
  24792. }
  24793. },
  24794. },
  24795. [
  24796. {
  24797. name: "Normal",
  24798. height: math.unit(2 + 11 / 12, "feet"),
  24799. default: true
  24800. },
  24801. ]
  24802. ))
  24803. characterMakers.push(() => makeCharacter(
  24804. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24805. {
  24806. front: {
  24807. height: math.unit(5 + 2 / 12, "feet"),
  24808. weight: math.unit(50, "kg"),
  24809. name: "Front",
  24810. image: {
  24811. source: "./media/characters/mercury-crescent/front.svg",
  24812. extra: 1088 / 1033,
  24813. bottom: 18.9 / 1109
  24814. }
  24815. },
  24816. },
  24817. [
  24818. {
  24819. name: "Normal",
  24820. height: math.unit(5 + 2 / 12, "feet"),
  24821. default: true
  24822. },
  24823. ]
  24824. ))
  24825. characterMakers.push(() => makeCharacter(
  24826. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24827. {
  24828. front: {
  24829. height: math.unit(2, "feet"),
  24830. weight: math.unit(15, "kg"),
  24831. name: "Front",
  24832. image: {
  24833. source: "./media/characters/diamond-jones/front.svg",
  24834. bottom: 16 / 568
  24835. }
  24836. },
  24837. },
  24838. [
  24839. {
  24840. name: "Normal",
  24841. height: math.unit(2, "feet"),
  24842. default: true
  24843. },
  24844. ]
  24845. ))
  24846. characterMakers.push(() => makeCharacter(
  24847. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24848. {
  24849. front: {
  24850. height: math.unit(3, "feet"),
  24851. weight: math.unit(30, "kg"),
  24852. name: "Front",
  24853. image: {
  24854. source: "./media/characters/sweet-bit/front.svg",
  24855. extra: 675 / 567,
  24856. bottom: 27.7 / 703
  24857. }
  24858. },
  24859. },
  24860. [
  24861. {
  24862. name: "Normal",
  24863. height: math.unit(3, "feet"),
  24864. default: true
  24865. },
  24866. ]
  24867. ))
  24868. characterMakers.push(() => makeCharacter(
  24869. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24870. {
  24871. side: {
  24872. height: math.unit(9.178, "feet"),
  24873. weight: math.unit(500, "lb"),
  24874. name: "Side",
  24875. image: {
  24876. source: "./media/characters/umbrazen/side.svg",
  24877. extra: 1730 / 1473,
  24878. bottom: 34.6 / 1765
  24879. }
  24880. },
  24881. },
  24882. [
  24883. {
  24884. name: "Normal",
  24885. height: math.unit(9.178, "feet"),
  24886. default: true
  24887. },
  24888. ]
  24889. ))
  24890. characterMakers.push(() => makeCharacter(
  24891. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24892. {
  24893. front: {
  24894. height: math.unit(10, "feet"),
  24895. weight: math.unit(750, "lb"),
  24896. name: "Front",
  24897. image: {
  24898. source: "./media/characters/arlist/front.svg",
  24899. extra: 961 / 778,
  24900. bottom: 6.2 / 986
  24901. }
  24902. },
  24903. },
  24904. [
  24905. {
  24906. name: "Normal",
  24907. height: math.unit(10, "feet"),
  24908. default: true
  24909. },
  24910. ]
  24911. ))
  24912. characterMakers.push(() => makeCharacter(
  24913. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24914. {
  24915. front: {
  24916. height: math.unit(5 + 1 / 12, "feet"),
  24917. weight: math.unit(110, "lb"),
  24918. name: "Front",
  24919. image: {
  24920. source: "./media/characters/aradel/front.svg",
  24921. extra: 324 / 303,
  24922. bottom: 3.6 / 329.4
  24923. }
  24924. },
  24925. },
  24926. [
  24927. {
  24928. name: "Normal",
  24929. height: math.unit(5 + 1 / 12, "feet"),
  24930. default: true
  24931. },
  24932. ]
  24933. ))
  24934. characterMakers.push(() => makeCharacter(
  24935. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24936. {
  24937. front: {
  24938. height: math.unit(3 + 8 / 12, "feet"),
  24939. weight: math.unit(50, "lb"),
  24940. name: "Front",
  24941. image: {
  24942. source: "./media/characters/serryn/front.svg",
  24943. extra: 1792 / 1656,
  24944. bottom: 43.5 / 1840
  24945. }
  24946. },
  24947. },
  24948. [
  24949. {
  24950. name: "Normal",
  24951. height: math.unit(3 + 8 / 12, "feet"),
  24952. default: true
  24953. },
  24954. ]
  24955. ))
  24956. characterMakers.push(() => makeCharacter(
  24957. { name: "Xavier Thyme" },
  24958. {
  24959. front: {
  24960. height: math.unit(7 + 10 / 12, "feet"),
  24961. weight: math.unit(255, "lb"),
  24962. name: "Front",
  24963. image: {
  24964. source: "./media/characters/xavier-thyme/front.svg",
  24965. extra: 3733 / 3642,
  24966. bottom: 131 / 3869
  24967. }
  24968. },
  24969. frontRaven: {
  24970. height: math.unit(7 + 10 / 12, "feet"),
  24971. weight: math.unit(255, "lb"),
  24972. name: "Front (Raven)",
  24973. image: {
  24974. source: "./media/characters/xavier-thyme/front-raven.svg",
  24975. extra: 4385 / 3642,
  24976. bottom: 131 / 4517
  24977. }
  24978. },
  24979. },
  24980. [
  24981. {
  24982. name: "Normal",
  24983. height: math.unit(7 + 10 / 12, "feet"),
  24984. default: true
  24985. },
  24986. ]
  24987. ))
  24988. characterMakers.push(() => makeCharacter(
  24989. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24990. {
  24991. front: {
  24992. height: math.unit(1.6, "m"),
  24993. weight: math.unit(50, "kg"),
  24994. name: "Front",
  24995. image: {
  24996. source: "./media/characters/kiki/front.svg",
  24997. extra: 4682 / 3610,
  24998. bottom: 115 / 4777
  24999. }
  25000. },
  25001. },
  25002. [
  25003. {
  25004. name: "Normal",
  25005. height: math.unit(1.6, "meters"),
  25006. default: true
  25007. },
  25008. ]
  25009. ))
  25010. characterMakers.push(() => makeCharacter(
  25011. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25012. {
  25013. front: {
  25014. height: math.unit(50, "m"),
  25015. weight: math.unit(500, "tonnes"),
  25016. name: "Front",
  25017. image: {
  25018. source: "./media/characters/ryoko/front.svg",
  25019. extra: 4632 / 3926,
  25020. bottom: 193 / 4823
  25021. }
  25022. },
  25023. },
  25024. [
  25025. {
  25026. name: "Normal",
  25027. height: math.unit(50, "meters"),
  25028. default: true
  25029. },
  25030. ]
  25031. ))
  25032. characterMakers.push(() => makeCharacter(
  25033. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25034. {
  25035. front: {
  25036. height: math.unit(30, "m"),
  25037. weight: math.unit(22, "tonnes"),
  25038. name: "Front",
  25039. image: {
  25040. source: "./media/characters/elio/front.svg",
  25041. extra: 4582 / 3720,
  25042. bottom: 236 / 4828
  25043. }
  25044. },
  25045. },
  25046. [
  25047. {
  25048. name: "Normal",
  25049. height: math.unit(30, "meters"),
  25050. default: true
  25051. },
  25052. ]
  25053. ))
  25054. characterMakers.push(() => makeCharacter(
  25055. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25056. {
  25057. front: {
  25058. height: math.unit(6 + 3 / 12, "feet"),
  25059. weight: math.unit(120, "lb"),
  25060. name: "Front",
  25061. image: {
  25062. source: "./media/characters/azura/front.svg",
  25063. extra: 1149 / 1135,
  25064. bottom: 45 / 1194
  25065. }
  25066. },
  25067. frontClothed: {
  25068. height: math.unit(6 + 3 / 12, "feet"),
  25069. weight: math.unit(120, "lb"),
  25070. name: "Front (Clothed)",
  25071. image: {
  25072. source: "./media/characters/azura/front-clothed.svg",
  25073. extra: 1149 / 1135,
  25074. bottom: 45 / 1194
  25075. }
  25076. },
  25077. },
  25078. [
  25079. {
  25080. name: "Normal",
  25081. height: math.unit(6 + 3 / 12, "feet"),
  25082. default: true
  25083. },
  25084. {
  25085. name: "Macro",
  25086. height: math.unit(20 + 6 / 12, "feet")
  25087. },
  25088. {
  25089. name: "Megamacro",
  25090. height: math.unit(12, "miles")
  25091. },
  25092. {
  25093. name: "Gigamacro",
  25094. height: math.unit(10000, "miles")
  25095. },
  25096. {
  25097. name: "Teramacro",
  25098. height: math.unit(900000, "miles")
  25099. },
  25100. ]
  25101. ))
  25102. characterMakers.push(() => makeCharacter(
  25103. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25104. {
  25105. front: {
  25106. height: math.unit(12, "feet"),
  25107. weight: math.unit(1, "ton"),
  25108. capacity: math.unit(660000, "gallons"),
  25109. name: "Front",
  25110. image: {
  25111. source: "./media/characters/zeus/front.svg",
  25112. extra: 5005 / 4717,
  25113. bottom: 363 / 5388
  25114. }
  25115. },
  25116. },
  25117. [
  25118. {
  25119. name: "Normal",
  25120. height: math.unit(12, "feet")
  25121. },
  25122. {
  25123. name: "Preferred Size",
  25124. height: math.unit(0.5, "miles"),
  25125. default: true
  25126. },
  25127. {
  25128. name: "Giga Horse",
  25129. height: math.unit(300, "miles")
  25130. },
  25131. {
  25132. name: "Riding Planets",
  25133. height: math.unit(30, "megameters")
  25134. },
  25135. {
  25136. name: "Cosmic Giant",
  25137. height: math.unit(3, "zettameters")
  25138. },
  25139. {
  25140. name: "Breeding God",
  25141. height: math.unit(9.92e22, "yottameters")
  25142. },
  25143. ]
  25144. ))
  25145. characterMakers.push(() => makeCharacter(
  25146. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25147. {
  25148. side: {
  25149. height: math.unit(9, "feet"),
  25150. weight: math.unit(1500, "kg"),
  25151. name: "Side",
  25152. image: {
  25153. source: "./media/characters/fang/side.svg",
  25154. extra: 924 / 866,
  25155. bottom: 47.5 / 972.3
  25156. }
  25157. },
  25158. },
  25159. [
  25160. {
  25161. name: "Normal",
  25162. height: math.unit(9, "feet"),
  25163. default: true
  25164. },
  25165. {
  25166. name: "Macro",
  25167. height: math.unit(75 + 6 / 12, "feet")
  25168. },
  25169. {
  25170. name: "Teramacro",
  25171. height: math.unit(50000, "miles")
  25172. },
  25173. ]
  25174. ))
  25175. characterMakers.push(() => makeCharacter(
  25176. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25177. {
  25178. front: {
  25179. height: math.unit(10, "feet"),
  25180. weight: math.unit(2, "tons"),
  25181. name: "Front",
  25182. image: {
  25183. source: "./media/characters/rekhit/front.svg",
  25184. extra: 2796 / 2590,
  25185. bottom: 225 / 3022
  25186. }
  25187. },
  25188. },
  25189. [
  25190. {
  25191. name: "Normal",
  25192. height: math.unit(10, "feet"),
  25193. default: true
  25194. },
  25195. {
  25196. name: "Macro",
  25197. height: math.unit(500, "feet")
  25198. },
  25199. ]
  25200. ))
  25201. characterMakers.push(() => makeCharacter(
  25202. { name: "Dahlia Verrick" },
  25203. {
  25204. front: {
  25205. height: math.unit(7 + 6.451 / 12, "feet"),
  25206. weight: math.unit(310, "lb"),
  25207. name: "Front",
  25208. image: {
  25209. source: "./media/characters/dahlia-verrick/front.svg",
  25210. extra: 1488 / 1365,
  25211. bottom: 6.2 / 1495
  25212. }
  25213. },
  25214. back: {
  25215. height: math.unit(7 + 6.451 / 12, "feet"),
  25216. weight: math.unit(310, "lb"),
  25217. name: "Back",
  25218. image: {
  25219. source: "./media/characters/dahlia-verrick/back.svg",
  25220. extra: 1472 / 1351,
  25221. bottom: 5.28 / 1477
  25222. }
  25223. },
  25224. frontBusiness: {
  25225. height: math.unit(7 + 6.451 / 12, "feet"),
  25226. weight: math.unit(200, "lb"),
  25227. name: "Front (Business)",
  25228. image: {
  25229. source: "./media/characters/dahlia-verrick/front-business.svg",
  25230. extra: 1478 / 1381,
  25231. bottom: 5.5 / 1484
  25232. }
  25233. },
  25234. frontCasual: {
  25235. height: math.unit(7 + 6.451 / 12, "feet"),
  25236. weight: math.unit(200, "lb"),
  25237. name: "Front (Casual)",
  25238. image: {
  25239. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25240. extra: 1478 / 1381,
  25241. bottom: 5.5 / 1484
  25242. }
  25243. },
  25244. },
  25245. [
  25246. {
  25247. name: "Travel-Sized",
  25248. height: math.unit(7.45, "inches")
  25249. },
  25250. {
  25251. name: "Normal",
  25252. height: math.unit(7 + 6.451 / 12, "feet"),
  25253. default: true
  25254. },
  25255. {
  25256. name: "Hitting the Town",
  25257. height: math.unit(37 + 8 / 12, "feet")
  25258. },
  25259. {
  25260. name: "Stomp in the Suburbs",
  25261. height: math.unit(964 + 9.728 / 12, "feet")
  25262. },
  25263. {
  25264. name: "Sit on the City",
  25265. height: math.unit(61747 + 10.592 / 12, "feet")
  25266. },
  25267. {
  25268. name: "Glomp the Globe",
  25269. height: math.unit(252919327 + 4.832 / 12, "feet")
  25270. },
  25271. ]
  25272. ))
  25273. characterMakers.push(() => makeCharacter(
  25274. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25275. {
  25276. front: {
  25277. height: math.unit(6 + 4 / 12, "feet"),
  25278. weight: math.unit(320, "lb"),
  25279. name: "Front",
  25280. image: {
  25281. source: "./media/characters/balina-mahigan/front.svg",
  25282. extra: 447 / 428,
  25283. bottom: 18 / 466
  25284. }
  25285. },
  25286. back: {
  25287. height: math.unit(6 + 4 / 12, "feet"),
  25288. weight: math.unit(320, "lb"),
  25289. name: "Back",
  25290. image: {
  25291. source: "./media/characters/balina-mahigan/back.svg",
  25292. extra: 445 / 428,
  25293. bottom: 4.07 / 448
  25294. }
  25295. },
  25296. arm: {
  25297. height: math.unit(1.88, "feet"),
  25298. name: "Arm",
  25299. image: {
  25300. source: "./media/characters/balina-mahigan/arm.svg"
  25301. }
  25302. },
  25303. backPort: {
  25304. height: math.unit(0.685, "feet"),
  25305. name: "Back Port",
  25306. image: {
  25307. source: "./media/characters/balina-mahigan/back-port.svg"
  25308. }
  25309. },
  25310. hoofpaw: {
  25311. height: math.unit(1.41, "feet"),
  25312. name: "Hoofpaw",
  25313. image: {
  25314. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25315. }
  25316. },
  25317. leftHandBack: {
  25318. height: math.unit(0.938, "feet"),
  25319. name: "Left Hand (Back)",
  25320. image: {
  25321. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25322. }
  25323. },
  25324. leftHandFront: {
  25325. height: math.unit(0.938, "feet"),
  25326. name: "Left Hand (Front)",
  25327. image: {
  25328. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25329. }
  25330. },
  25331. rightHandBack: {
  25332. height: math.unit(0.95, "feet"),
  25333. name: "Right Hand (Back)",
  25334. image: {
  25335. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25336. }
  25337. },
  25338. rightHandFront: {
  25339. height: math.unit(0.95, "feet"),
  25340. name: "Right Hand (Front)",
  25341. image: {
  25342. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25343. }
  25344. },
  25345. },
  25346. [
  25347. {
  25348. name: "Normal",
  25349. height: math.unit(6 + 4 / 12, "feet"),
  25350. default: true
  25351. },
  25352. ]
  25353. ))
  25354. characterMakers.push(() => makeCharacter(
  25355. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25356. {
  25357. front: {
  25358. height: math.unit(6, "feet"),
  25359. weight: math.unit(320, "lb"),
  25360. name: "Front",
  25361. image: {
  25362. source: "./media/characters/balina-mejeri/front.svg",
  25363. extra: 517 / 488,
  25364. bottom: 44.2 / 561
  25365. }
  25366. },
  25367. },
  25368. [
  25369. {
  25370. name: "Normal",
  25371. height: math.unit(6 + 4 / 12, "feet")
  25372. },
  25373. {
  25374. name: "Business",
  25375. height: math.unit(155, "feet"),
  25376. default: true
  25377. },
  25378. ]
  25379. ))
  25380. characterMakers.push(() => makeCharacter(
  25381. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25382. {
  25383. kneeling: {
  25384. height: math.unit(6 + 4 / 12, "feet"),
  25385. weight: math.unit(300 * 20, "lb"),
  25386. name: "Kneeling",
  25387. image: {
  25388. source: "./media/characters/balbarian/kneeling.svg",
  25389. extra: 922 / 862,
  25390. bottom: 42.4 / 965
  25391. }
  25392. },
  25393. },
  25394. [
  25395. {
  25396. name: "Normal",
  25397. height: math.unit(6 + 4 / 12, "feet")
  25398. },
  25399. {
  25400. name: "Treasured",
  25401. height: math.unit(18 + 9 / 12, "feet"),
  25402. default: true
  25403. },
  25404. {
  25405. name: "Macro",
  25406. height: math.unit(900, "feet")
  25407. },
  25408. ]
  25409. ))
  25410. characterMakers.push(() => makeCharacter(
  25411. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25412. {
  25413. front: {
  25414. height: math.unit(6 + 4 / 12, "feet"),
  25415. weight: math.unit(325, "lb"),
  25416. name: "Front",
  25417. image: {
  25418. source: "./media/characters/balina-amarini/front.svg",
  25419. extra: 415 / 403,
  25420. bottom: 19 / 433.4
  25421. }
  25422. },
  25423. back: {
  25424. height: math.unit(6 + 4 / 12, "feet"),
  25425. weight: math.unit(325, "lb"),
  25426. name: "Back",
  25427. image: {
  25428. source: "./media/characters/balina-amarini/back.svg",
  25429. extra: 415 / 403,
  25430. bottom: 13.5 / 432
  25431. }
  25432. },
  25433. overdrive: {
  25434. height: math.unit(6 + 4 / 12, "feet"),
  25435. weight: math.unit(400, "lb"),
  25436. name: "Overdrive",
  25437. image: {
  25438. source: "./media/characters/balina-amarini/overdrive.svg",
  25439. extra: 269 / 259,
  25440. bottom: 12 / 282
  25441. }
  25442. },
  25443. },
  25444. [
  25445. {
  25446. name: "Boom",
  25447. height: math.unit(9 + 10 / 12, "feet"),
  25448. default: true
  25449. },
  25450. {
  25451. name: "Macro",
  25452. height: math.unit(280, "feet")
  25453. },
  25454. ]
  25455. ))
  25456. characterMakers.push(() => makeCharacter(
  25457. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25458. {
  25459. goddess: {
  25460. height: math.unit(600, "feet"),
  25461. weight: math.unit(2000000, "tons"),
  25462. name: "Goddess",
  25463. image: {
  25464. source: "./media/characters/lady-kubwa/goddess.svg",
  25465. extra: 1240.5 / 1223,
  25466. bottom: 22 / 1263
  25467. }
  25468. },
  25469. goddesser: {
  25470. height: math.unit(900, "feet"),
  25471. weight: math.unit(20000000, "lb"),
  25472. name: "Goddess-er",
  25473. image: {
  25474. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25475. extra: 899 / 888,
  25476. bottom: 12.6 / 912
  25477. }
  25478. },
  25479. },
  25480. [
  25481. {
  25482. name: "Macro",
  25483. height: math.unit(600, "feet"),
  25484. default: true
  25485. },
  25486. {
  25487. name: "Megamacro",
  25488. height: math.unit(250, "miles")
  25489. },
  25490. ]
  25491. ))
  25492. characterMakers.push(() => makeCharacter(
  25493. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25494. {
  25495. front: {
  25496. height: math.unit(7 + 7 / 12, "feet"),
  25497. weight: math.unit(250, "lb"),
  25498. name: "Front",
  25499. image: {
  25500. source: "./media/characters/tala-grovehorn/front.svg",
  25501. extra: 2636 / 2525,
  25502. bottom: 147 / 2781
  25503. }
  25504. },
  25505. back: {
  25506. height: math.unit(7 + 7 / 12, "feet"),
  25507. weight: math.unit(250, "lb"),
  25508. name: "Back",
  25509. image: {
  25510. source: "./media/characters/tala-grovehorn/back.svg",
  25511. extra: 2635 / 2539,
  25512. bottom: 100 / 2732.8
  25513. }
  25514. },
  25515. mouth: {
  25516. height: math.unit(1.15, "feet"),
  25517. name: "Mouth",
  25518. image: {
  25519. source: "./media/characters/tala-grovehorn/mouth.svg"
  25520. }
  25521. },
  25522. dick: {
  25523. height: math.unit(2.36, "feet"),
  25524. name: "Dick",
  25525. image: {
  25526. source: "./media/characters/tala-grovehorn/dick.svg"
  25527. }
  25528. },
  25529. slit: {
  25530. height: math.unit(0.61, "feet"),
  25531. name: "Slit",
  25532. image: {
  25533. source: "./media/characters/tala-grovehorn/slit.svg"
  25534. }
  25535. },
  25536. },
  25537. [
  25538. ]
  25539. ))
  25540. characterMakers.push(() => makeCharacter(
  25541. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25542. {
  25543. front: {
  25544. height: math.unit(7 + 7 / 12, "feet"),
  25545. weight: math.unit(225, "lb"),
  25546. name: "Front",
  25547. image: {
  25548. source: "./media/characters/epona/front.svg",
  25549. extra: 2445 / 2290,
  25550. bottom: 251 / 2696
  25551. }
  25552. },
  25553. back: {
  25554. height: math.unit(7 + 7 / 12, "feet"),
  25555. weight: math.unit(225, "lb"),
  25556. name: "Back",
  25557. image: {
  25558. source: "./media/characters/epona/back.svg",
  25559. extra: 2546 / 2408,
  25560. bottom: 44 / 2589
  25561. }
  25562. },
  25563. genitals: {
  25564. height: math.unit(1.5, "feet"),
  25565. name: "Genitals",
  25566. image: {
  25567. source: "./media/characters/epona/genitals.svg"
  25568. }
  25569. },
  25570. },
  25571. [
  25572. {
  25573. name: "Normal",
  25574. height: math.unit(7 + 7 / 12, "feet")
  25575. },
  25576. ]
  25577. ))
  25578. characterMakers.push(() => makeCharacter(
  25579. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25580. {
  25581. front: {
  25582. height: math.unit(7, "feet"),
  25583. weight: math.unit(518, "lb"),
  25584. name: "Front",
  25585. image: {
  25586. source: "./media/characters/avia-bloodbourn/front.svg",
  25587. extra: 1466 / 1350,
  25588. bottom: 65 / 1527
  25589. }
  25590. },
  25591. },
  25592. [
  25593. ]
  25594. ))
  25595. characterMakers.push(() => makeCharacter(
  25596. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25597. {
  25598. front: {
  25599. height: math.unit(9.35, "feet"),
  25600. weight: math.unit(600, "lb"),
  25601. name: "Front",
  25602. image: {
  25603. source: "./media/characters/amera/front.svg",
  25604. extra: 891 / 818,
  25605. bottom: 30 / 922.7
  25606. }
  25607. },
  25608. back: {
  25609. height: math.unit(9.35, "feet"),
  25610. weight: math.unit(600, "lb"),
  25611. name: "Back",
  25612. image: {
  25613. source: "./media/characters/amera/back.svg",
  25614. extra: 876 / 824,
  25615. bottom: 6.8 / 884
  25616. }
  25617. },
  25618. dick: {
  25619. height: math.unit(2.14, "feet"),
  25620. name: "Dick",
  25621. image: {
  25622. source: "./media/characters/amera/dick.svg"
  25623. }
  25624. },
  25625. },
  25626. [
  25627. {
  25628. name: "Normal",
  25629. height: math.unit(9.35, "feet"),
  25630. default: true
  25631. },
  25632. ]
  25633. ))
  25634. characterMakers.push(() => makeCharacter(
  25635. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25636. {
  25637. kneeling: {
  25638. height: math.unit(3 + 4 / 12, "feet"),
  25639. weight: math.unit(90, "lb"),
  25640. name: "Kneeling",
  25641. image: {
  25642. source: "./media/characters/rosewen/kneeling.svg",
  25643. extra: 1835 / 1571,
  25644. bottom: 27.7 / 1862
  25645. }
  25646. },
  25647. },
  25648. [
  25649. {
  25650. name: "Normal",
  25651. height: math.unit(3 + 4 / 12, "feet"),
  25652. default: true
  25653. },
  25654. ]
  25655. ))
  25656. characterMakers.push(() => makeCharacter(
  25657. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25658. {
  25659. front: {
  25660. height: math.unit(5 + 10 / 12, "feet"),
  25661. weight: math.unit(200, "lb"),
  25662. name: "Front",
  25663. image: {
  25664. source: "./media/characters/sabah/front.svg",
  25665. extra: 849 / 763,
  25666. bottom: 33.9 / 881
  25667. }
  25668. },
  25669. },
  25670. [
  25671. {
  25672. name: "Normal",
  25673. height: math.unit(5 + 10 / 12, "feet"),
  25674. default: true
  25675. },
  25676. ]
  25677. ))
  25678. characterMakers.push(() => makeCharacter(
  25679. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25680. {
  25681. front: {
  25682. height: math.unit(3 + 5 / 12, "feet"),
  25683. weight: math.unit(40, "kg"),
  25684. name: "Front",
  25685. image: {
  25686. source: "./media/characters/purple-flame/front.svg",
  25687. extra: 1577 / 1412,
  25688. bottom: 97 / 1694
  25689. }
  25690. },
  25691. frontDressed: {
  25692. height: math.unit(3 + 5 / 12, "feet"),
  25693. weight: math.unit(40, "kg"),
  25694. name: "Front (Dressed)",
  25695. image: {
  25696. source: "./media/characters/purple-flame/front-dressed.svg",
  25697. extra: 1577 / 1412,
  25698. bottom: 97 / 1694
  25699. }
  25700. },
  25701. headphones: {
  25702. height: math.unit(0.85, "feet"),
  25703. name: "Headphones",
  25704. image: {
  25705. source: "./media/characters/purple-flame/headphones.svg"
  25706. }
  25707. },
  25708. },
  25709. [
  25710. {
  25711. name: "Really Small",
  25712. height: math.unit(5, "cm")
  25713. },
  25714. {
  25715. name: "Micro",
  25716. height: math.unit(1 + 5 / 12, "feet")
  25717. },
  25718. {
  25719. name: "Normal",
  25720. height: math.unit(3 + 5 / 12, "feet"),
  25721. default: true
  25722. },
  25723. {
  25724. name: "Minimacro",
  25725. height: math.unit(125, "feet")
  25726. },
  25727. {
  25728. name: "Macro",
  25729. height: math.unit(0.5, "miles")
  25730. },
  25731. {
  25732. name: "Megamacro",
  25733. height: math.unit(50, "miles")
  25734. },
  25735. {
  25736. name: "Gigantic",
  25737. height: math.unit(750, "miles")
  25738. },
  25739. {
  25740. name: "Planetary",
  25741. height: math.unit(15000, "miles")
  25742. },
  25743. ]
  25744. ))
  25745. characterMakers.push(() => makeCharacter(
  25746. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25747. {
  25748. front: {
  25749. height: math.unit(14, "feet"),
  25750. weight: math.unit(959, "lb"),
  25751. name: "Front",
  25752. image: {
  25753. source: "./media/characters/arsenal/front.svg",
  25754. extra: 2357 / 2157,
  25755. bottom: 93 / 2458
  25756. }
  25757. },
  25758. },
  25759. [
  25760. {
  25761. name: "Normal",
  25762. height: math.unit(14, "feet"),
  25763. default: true
  25764. },
  25765. ]
  25766. ))
  25767. characterMakers.push(() => makeCharacter(
  25768. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25769. {
  25770. front: {
  25771. height: math.unit(6, "feet"),
  25772. weight: math.unit(150, "lb"),
  25773. name: "Front",
  25774. image: {
  25775. source: "./media/characters/adira/front.svg",
  25776. extra: 1078 / 1029,
  25777. bottom: 87 / 1166
  25778. }
  25779. },
  25780. },
  25781. [
  25782. {
  25783. name: "Micro",
  25784. height: math.unit(4, "inches"),
  25785. default: true
  25786. },
  25787. {
  25788. name: "Macro",
  25789. height: math.unit(50, "feet")
  25790. },
  25791. ]
  25792. ))
  25793. characterMakers.push(() => makeCharacter(
  25794. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25795. {
  25796. front: {
  25797. height: math.unit(16, "feet"),
  25798. weight: math.unit(1000, "lb"),
  25799. name: "Front",
  25800. image: {
  25801. source: "./media/characters/grim/front.svg",
  25802. extra: 622 / 614,
  25803. bottom: 18.1 / 642
  25804. }
  25805. },
  25806. back: {
  25807. height: math.unit(16, "feet"),
  25808. weight: math.unit(1000, "lb"),
  25809. name: "Back",
  25810. image: {
  25811. source: "./media/characters/grim/back.svg",
  25812. extra: 610.6 / 602,
  25813. bottom: 40.8 / 652
  25814. }
  25815. },
  25816. hunched: {
  25817. height: math.unit(9.75, "feet"),
  25818. weight: math.unit(1000, "lb"),
  25819. name: "Hunched",
  25820. image: {
  25821. source: "./media/characters/grim/hunched.svg",
  25822. extra: 304 / 297,
  25823. bottom: 35.4 / 394
  25824. }
  25825. },
  25826. },
  25827. [
  25828. {
  25829. name: "Normal",
  25830. height: math.unit(16, "feet"),
  25831. default: true
  25832. },
  25833. ]
  25834. ))
  25835. characterMakers.push(() => makeCharacter(
  25836. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25837. {
  25838. front: {
  25839. height: math.unit(2.3, "meters"),
  25840. weight: math.unit(300, "lb"),
  25841. name: "Front",
  25842. image: {
  25843. source: "./media/characters/sinja/front-sfw.svg",
  25844. extra: 1393 / 1294,
  25845. bottom: 70 / 1463
  25846. }
  25847. },
  25848. frontNsfw: {
  25849. height: math.unit(2.3, "meters"),
  25850. weight: math.unit(300, "lb"),
  25851. name: "Front (NSFW)",
  25852. image: {
  25853. source: "./media/characters/sinja/front-nsfw.svg",
  25854. extra: 1393 / 1294,
  25855. bottom: 70 / 1463
  25856. }
  25857. },
  25858. back: {
  25859. height: math.unit(2.3, "meters"),
  25860. weight: math.unit(300, "lb"),
  25861. name: "Back",
  25862. image: {
  25863. source: "./media/characters/sinja/back.svg",
  25864. extra: 1393 / 1294,
  25865. bottom: 70 / 1463
  25866. }
  25867. },
  25868. head: {
  25869. height: math.unit(1.771, "feet"),
  25870. name: "Head",
  25871. image: {
  25872. source: "./media/characters/sinja/head.svg"
  25873. }
  25874. },
  25875. slit: {
  25876. height: math.unit(0.8, "feet"),
  25877. name: "Slit",
  25878. image: {
  25879. source: "./media/characters/sinja/slit.svg"
  25880. }
  25881. },
  25882. },
  25883. [
  25884. {
  25885. name: "Normal",
  25886. height: math.unit(2.3, "meters")
  25887. },
  25888. {
  25889. name: "Macro",
  25890. height: math.unit(91, "meters"),
  25891. default: true
  25892. },
  25893. {
  25894. name: "Megamacro",
  25895. height: math.unit(91440, "meters")
  25896. },
  25897. {
  25898. name: "Gigamacro",
  25899. height: math.unit(60960000, "meters")
  25900. },
  25901. {
  25902. name: "Teramacro",
  25903. height: math.unit(9144000000, "meters")
  25904. },
  25905. ]
  25906. ))
  25907. characterMakers.push(() => makeCharacter(
  25908. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25909. {
  25910. front: {
  25911. height: math.unit(1.7, "meters"),
  25912. weight: math.unit(130, "lb"),
  25913. name: "Front",
  25914. image: {
  25915. source: "./media/characters/kyu/front.svg",
  25916. extra: 415 / 395,
  25917. bottom: 5 / 420
  25918. }
  25919. },
  25920. head: {
  25921. height: math.unit(1.75, "feet"),
  25922. name: "Head",
  25923. image: {
  25924. source: "./media/characters/kyu/head.svg"
  25925. }
  25926. },
  25927. foot: {
  25928. height: math.unit(0.81, "feet"),
  25929. name: "Foot",
  25930. image: {
  25931. source: "./media/characters/kyu/foot.svg"
  25932. }
  25933. },
  25934. },
  25935. [
  25936. {
  25937. name: "Normal",
  25938. height: math.unit(1.7, "meters")
  25939. },
  25940. {
  25941. name: "Macro",
  25942. height: math.unit(131, "feet"),
  25943. default: true
  25944. },
  25945. {
  25946. name: "Megamacro",
  25947. height: math.unit(91440, "meters")
  25948. },
  25949. {
  25950. name: "Gigamacro",
  25951. height: math.unit(60960000, "meters")
  25952. },
  25953. {
  25954. name: "Teramacro",
  25955. height: math.unit(9144000000, "meters")
  25956. },
  25957. ]
  25958. ))
  25959. characterMakers.push(() => makeCharacter(
  25960. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  25961. {
  25962. front: {
  25963. height: math.unit(7 + 1 / 12, "feet"),
  25964. weight: math.unit(250, "lb"),
  25965. name: "Front",
  25966. image: {
  25967. source: "./media/characters/joey/front.svg",
  25968. extra: 1791 / 1537,
  25969. bottom: 28 / 1816
  25970. }
  25971. },
  25972. },
  25973. [
  25974. {
  25975. name: "Micro",
  25976. height: math.unit(3, "inches")
  25977. },
  25978. {
  25979. name: "Normal",
  25980. height: math.unit(7 + 1 / 12, "feet"),
  25981. default: true
  25982. },
  25983. ]
  25984. ))
  25985. characterMakers.push(() => makeCharacter(
  25986. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  25987. {
  25988. front: {
  25989. height: math.unit(165, "cm"),
  25990. weight: math.unit(140, "lb"),
  25991. name: "Front",
  25992. image: {
  25993. source: "./media/characters/sam-evans/front.svg",
  25994. extra: 3417 / 3230,
  25995. bottom: 41.3 / 3417
  25996. }
  25997. },
  25998. frontSixTails: {
  25999. height: math.unit(165, "cm"),
  26000. weight: math.unit(140, "lb"),
  26001. name: "Front-six-tails",
  26002. image: {
  26003. source: "./media/characters/sam-evans/front-six-tails.svg",
  26004. extra: 3417 / 3230,
  26005. bottom: 41.3 / 3417
  26006. }
  26007. },
  26008. back: {
  26009. height: math.unit(165, "cm"),
  26010. weight: math.unit(140, "lb"),
  26011. name: "Back",
  26012. image: {
  26013. source: "./media/characters/sam-evans/back.svg",
  26014. extra: 3227 / 3032,
  26015. bottom: 6.8 / 3234
  26016. }
  26017. },
  26018. face: {
  26019. height: math.unit(0.68, "feet"),
  26020. name: "Face",
  26021. image: {
  26022. source: "./media/characters/sam-evans/face.svg"
  26023. }
  26024. },
  26025. },
  26026. [
  26027. {
  26028. name: "Normal",
  26029. height: math.unit(165, "cm"),
  26030. default: true
  26031. },
  26032. {
  26033. name: "Macro",
  26034. height: math.unit(100, "meters")
  26035. },
  26036. {
  26037. name: "Macro+",
  26038. height: math.unit(800, "meters")
  26039. },
  26040. {
  26041. name: "Macro++",
  26042. height: math.unit(3, "km")
  26043. },
  26044. {
  26045. name: "Macro+++",
  26046. height: math.unit(30, "km")
  26047. },
  26048. ]
  26049. ))
  26050. characterMakers.push(() => makeCharacter(
  26051. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26052. {
  26053. front: {
  26054. height: math.unit(10, "feet"),
  26055. weight: math.unit(750, "lb"),
  26056. name: "Front",
  26057. image: {
  26058. source: "./media/characters/juliet-a/front.svg",
  26059. extra: 1766 / 1720,
  26060. bottom: 43 / 1809
  26061. }
  26062. },
  26063. back: {
  26064. height: math.unit(10, "feet"),
  26065. weight: math.unit(750, "lb"),
  26066. name: "Back",
  26067. image: {
  26068. source: "./media/characters/juliet-a/back.svg",
  26069. extra: 1781 / 1734,
  26070. bottom: 35 / 1810,
  26071. }
  26072. },
  26073. },
  26074. [
  26075. {
  26076. name: "Normal",
  26077. height: math.unit(10, "feet"),
  26078. default: true
  26079. },
  26080. {
  26081. name: "Dragon Form",
  26082. height: math.unit(250, "feet")
  26083. },
  26084. {
  26085. name: "Macro",
  26086. height: math.unit(1000, "feet")
  26087. },
  26088. {
  26089. name: "Megamacro",
  26090. height: math.unit(10000, "feet")
  26091. }
  26092. ]
  26093. ))
  26094. characterMakers.push(() => makeCharacter(
  26095. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26096. {
  26097. regular: {
  26098. height: math.unit(7 + 3 / 12, "feet"),
  26099. weight: math.unit(260, "lb"),
  26100. name: "Regular",
  26101. image: {
  26102. source: "./media/characters/wild/regular.svg",
  26103. extra: 97.45 / 92,
  26104. bottom: 6.8 / 104.3
  26105. }
  26106. },
  26107. biggums: {
  26108. height: math.unit(8 + 6 / 12, "feet"),
  26109. weight: math.unit(425, "lb"),
  26110. name: "Biggums",
  26111. image: {
  26112. source: "./media/characters/wild/biggums.svg",
  26113. extra: 97.45 / 92,
  26114. bottom: 7.5 / 132.34
  26115. }
  26116. },
  26117. mawRegular: {
  26118. height: math.unit(1.24, "feet"),
  26119. name: "Maw (Regular)",
  26120. image: {
  26121. source: "./media/characters/wild/maw.svg"
  26122. }
  26123. },
  26124. mawBiggums: {
  26125. height: math.unit(1.47, "feet"),
  26126. name: "Maw (Biggums)",
  26127. image: {
  26128. source: "./media/characters/wild/maw.svg"
  26129. }
  26130. },
  26131. },
  26132. [
  26133. {
  26134. name: "Normal",
  26135. height: math.unit(7 + 3 / 12, "feet"),
  26136. default: true
  26137. },
  26138. ]
  26139. ))
  26140. characterMakers.push(() => makeCharacter(
  26141. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26142. {
  26143. front: {
  26144. height: math.unit(2.5, "meters"),
  26145. weight: math.unit(200, "kg"),
  26146. name: "Front",
  26147. image: {
  26148. source: "./media/characters/vidar/front.svg",
  26149. extra: 2994 / 2795,
  26150. bottom: 56 / 3061
  26151. }
  26152. },
  26153. back: {
  26154. height: math.unit(2.5, "meters"),
  26155. weight: math.unit(200, "kg"),
  26156. name: "Back",
  26157. image: {
  26158. source: "./media/characters/vidar/back.svg",
  26159. extra: 3131 / 2928,
  26160. bottom: 13.5 / 3141.5
  26161. }
  26162. },
  26163. feral: {
  26164. height: math.unit(2.5, "meters"),
  26165. weight: math.unit(2000, "kg"),
  26166. name: "Feral",
  26167. image: {
  26168. source: "./media/characters/vidar/feral.svg",
  26169. extra: 2790 / 1765,
  26170. bottom: 6 / 2796
  26171. }
  26172. },
  26173. },
  26174. [
  26175. {
  26176. name: "Normal",
  26177. height: math.unit(2.5, "meters"),
  26178. default: true
  26179. },
  26180. {
  26181. name: "Macro",
  26182. height: math.unit(100, "meters")
  26183. },
  26184. ]
  26185. ))
  26186. characterMakers.push(() => makeCharacter(
  26187. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26188. {
  26189. front: {
  26190. height: math.unit(5 + 9 / 12, "feet"),
  26191. weight: math.unit(120, "lb"),
  26192. name: "Front",
  26193. image: {
  26194. source: "./media/characters/ash/front.svg",
  26195. extra: 2189 / 1961,
  26196. bottom: 5.2 / 2194
  26197. }
  26198. },
  26199. },
  26200. [
  26201. {
  26202. name: "Normal",
  26203. height: math.unit(5 + 9 / 12, "feet"),
  26204. default: true
  26205. },
  26206. ]
  26207. ))
  26208. characterMakers.push(() => makeCharacter(
  26209. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26210. {
  26211. front: {
  26212. height: math.unit(9, "feet"),
  26213. weight: math.unit(10000, "lb"),
  26214. name: "Front",
  26215. image: {
  26216. source: "./media/characters/gygabite/front.svg",
  26217. bottom: 31.7 / 537.8,
  26218. extra: 505 / 370
  26219. }
  26220. },
  26221. },
  26222. [
  26223. {
  26224. name: "Normal",
  26225. height: math.unit(9, "feet"),
  26226. default: true
  26227. },
  26228. ]
  26229. ))
  26230. characterMakers.push(() => makeCharacter(
  26231. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26232. {
  26233. front: {
  26234. height: math.unit(12, "feet"),
  26235. weight: math.unit(35000, "lb"),
  26236. name: "Front",
  26237. image: {
  26238. source: "./media/characters/p0tat0/front.svg",
  26239. extra: 1065 / 921,
  26240. bottom: 55.7 / 1121.25
  26241. }
  26242. },
  26243. },
  26244. [
  26245. {
  26246. name: "Normal",
  26247. height: math.unit(12, "feet"),
  26248. default: true
  26249. },
  26250. ]
  26251. ))
  26252. characterMakers.push(() => makeCharacter(
  26253. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26254. {
  26255. side: {
  26256. height: math.unit(6.5, "feet"),
  26257. weight: math.unit(800, "lb"),
  26258. name: "Side",
  26259. image: {
  26260. source: "./media/characters/dusk/side.svg",
  26261. extra: 615 / 373,
  26262. bottom: 53 / 664
  26263. }
  26264. },
  26265. sitting: {
  26266. height: math.unit(7, "feet"),
  26267. weight: math.unit(800, "lb"),
  26268. name: "Sitting",
  26269. image: {
  26270. source: "./media/characters/dusk/sitting.svg",
  26271. extra: 753 / 425,
  26272. bottom: 33 / 774
  26273. }
  26274. },
  26275. head: {
  26276. height: math.unit(6.1, "feet"),
  26277. name: "Head",
  26278. image: {
  26279. source: "./media/characters/dusk/head.svg"
  26280. }
  26281. },
  26282. },
  26283. [
  26284. {
  26285. name: "Normal",
  26286. height: math.unit(7, "feet"),
  26287. default: true
  26288. },
  26289. ]
  26290. ))
  26291. characterMakers.push(() => makeCharacter(
  26292. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26293. {
  26294. front: {
  26295. height: math.unit(15, "feet"),
  26296. weight: math.unit(7000, "lb"),
  26297. name: "Front",
  26298. image: {
  26299. source: "./media/characters/jay-direwolf/front.svg",
  26300. extra: 1810 / 1732,
  26301. bottom: 66 / 1892
  26302. }
  26303. },
  26304. },
  26305. [
  26306. {
  26307. name: "Normal",
  26308. height: math.unit(15, "feet"),
  26309. default: true
  26310. },
  26311. ]
  26312. ))
  26313. characterMakers.push(() => makeCharacter(
  26314. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26315. {
  26316. front: {
  26317. height: math.unit(4 + 9 / 12, "feet"),
  26318. weight: math.unit(130, "lb"),
  26319. name: "Front",
  26320. image: {
  26321. source: "./media/characters/anchovie/front.svg",
  26322. extra: 382 / 350,
  26323. bottom: 25 / 409
  26324. }
  26325. },
  26326. back: {
  26327. height: math.unit(4 + 9 / 12, "feet"),
  26328. weight: math.unit(130, "lb"),
  26329. name: "Back",
  26330. image: {
  26331. source: "./media/characters/anchovie/back.svg",
  26332. extra: 385 / 352,
  26333. bottom: 16.6 / 402
  26334. }
  26335. },
  26336. frontDressed: {
  26337. height: math.unit(4 + 9 / 12, "feet"),
  26338. weight: math.unit(130, "lb"),
  26339. name: "Front (Dressed)",
  26340. image: {
  26341. source: "./media/characters/anchovie/front-dressed.svg",
  26342. extra: 382 / 350,
  26343. bottom: 25 / 409
  26344. }
  26345. },
  26346. backDressed: {
  26347. height: math.unit(4 + 9 / 12, "feet"),
  26348. weight: math.unit(130, "lb"),
  26349. name: "Back (Dressed)",
  26350. image: {
  26351. source: "./media/characters/anchovie/back-dressed.svg",
  26352. extra: 385 / 352,
  26353. bottom: 16.6 / 402
  26354. }
  26355. },
  26356. },
  26357. [
  26358. {
  26359. name: "Micro",
  26360. height: math.unit(6.4, "inches")
  26361. },
  26362. {
  26363. name: "Normal",
  26364. height: math.unit(4 + 9 / 12, "feet"),
  26365. default: true
  26366. },
  26367. ]
  26368. ))
  26369. characterMakers.push(() => makeCharacter(
  26370. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26371. {
  26372. front: {
  26373. height: math.unit(2, "meters"),
  26374. weight: math.unit(180, "lb"),
  26375. name: "Front",
  26376. image: {
  26377. source: "./media/characters/acidrenamon/front.svg",
  26378. extra: 987 / 890,
  26379. bottom: 22.8 / 1009
  26380. }
  26381. },
  26382. back: {
  26383. height: math.unit(2, "meters"),
  26384. weight: math.unit(180, "lb"),
  26385. name: "Back",
  26386. image: {
  26387. source: "./media/characters/acidrenamon/back.svg",
  26388. extra: 983 / 891,
  26389. bottom: 8.4 / 992
  26390. }
  26391. },
  26392. head: {
  26393. height: math.unit(1.92, "feet"),
  26394. name: "Head",
  26395. image: {
  26396. source: "./media/characters/acidrenamon/head.svg"
  26397. }
  26398. },
  26399. rump: {
  26400. height: math.unit(1.72, "feet"),
  26401. name: "Rump",
  26402. image: {
  26403. source: "./media/characters/acidrenamon/rump.svg"
  26404. }
  26405. },
  26406. tail: {
  26407. height: math.unit(4.2, "feet"),
  26408. name: "Tail",
  26409. image: {
  26410. source: "./media/characters/acidrenamon/tail.svg"
  26411. }
  26412. },
  26413. },
  26414. [
  26415. {
  26416. name: "Normal",
  26417. height: math.unit(2, "meters"),
  26418. default: true
  26419. },
  26420. {
  26421. name: "Minimacro",
  26422. height: math.unit(7, "meters")
  26423. },
  26424. {
  26425. name: "Macro",
  26426. height: math.unit(200, "meters")
  26427. },
  26428. {
  26429. name: "Gigamacro",
  26430. height: math.unit(0.2, "earths")
  26431. },
  26432. ]
  26433. ))
  26434. characterMakers.push(() => makeCharacter(
  26435. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26436. {
  26437. front: {
  26438. height: math.unit(6, "feet"),
  26439. weight: math.unit(150, "lb"),
  26440. name: "Front",
  26441. image: {
  26442. source: "./media/characters/kenzie-lee/front.svg",
  26443. extra: 1525 / 1465,
  26444. bottom: 45 / 1570
  26445. }
  26446. },
  26447. side: {
  26448. height: math.unit(6, "feet"),
  26449. weight: math.unit(150, "lb"),
  26450. name: "Side",
  26451. image: {
  26452. source: "./media/characters/kenzie-lee/side.svg",
  26453. extra: 5505 / 5383,
  26454. bottom: 60 / 5573
  26455. }
  26456. },
  26457. },
  26458. [
  26459. {
  26460. name: "Normal",
  26461. height: math.unit(152, "feet"),
  26462. default: true
  26463. },
  26464. {
  26465. name: "Megamacro",
  26466. height: math.unit(7, "miles")
  26467. },
  26468. {
  26469. name: "Gigamacro",
  26470. height: math.unit(8000, "miles")
  26471. },
  26472. ]
  26473. ))
  26474. characterMakers.push(() => makeCharacter(
  26475. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26476. {
  26477. side: {
  26478. height: math.unit(6, "feet"),
  26479. weight: math.unit(150, "lb"),
  26480. name: "Side",
  26481. image: {
  26482. source: "./media/characters/withers/side.svg",
  26483. extra: 1830 / 1728,
  26484. bottom: 96 / 1927
  26485. }
  26486. },
  26487. front: {
  26488. height: math.unit(6, "feet"),
  26489. weight: math.unit(150, "lb"),
  26490. name: "Front",
  26491. image: {
  26492. source: "./media/characters/withers/front.svg",
  26493. extra: 1514 / 1438,
  26494. bottom: 118 / 1632
  26495. }
  26496. },
  26497. },
  26498. [
  26499. {
  26500. name: "Normal",
  26501. height: math.unit(6, "feet")
  26502. },
  26503. {
  26504. name: "Macro",
  26505. height: math.unit(50, "feet")
  26506. },
  26507. {
  26508. name: "Megamacro",
  26509. height: math.unit(15, "miles"),
  26510. default: true
  26511. },
  26512. {
  26513. name: "Megamacro+",
  26514. height: math.unit(100, "km")
  26515. },
  26516. {
  26517. name: "Gigamacro",
  26518. height: math.unit(4750, "miles")
  26519. },
  26520. {
  26521. name: "Gigamacro+",
  26522. height: math.unit(32000, "miles")
  26523. },
  26524. ]
  26525. ))
  26526. characterMakers.push(() => makeCharacter(
  26527. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26528. {
  26529. front: {
  26530. height: math.unit(6 + 7 / 12, "feet"),
  26531. weight: math.unit(250, "lb"),
  26532. name: "Front",
  26533. image: {
  26534. source: "./media/characters/nemoskii/front.svg",
  26535. extra: 2270 / 1734,
  26536. bottom: 86 / 2354
  26537. }
  26538. },
  26539. back: {
  26540. height: math.unit(6 + 7 / 12, "feet"),
  26541. weight: math.unit(250, "lb"),
  26542. name: "Back",
  26543. image: {
  26544. source: "./media/characters/nemoskii/back.svg",
  26545. extra: 1845 / 1788,
  26546. bottom: 10.5 / 1852
  26547. }
  26548. },
  26549. head: {
  26550. height: math.unit(1.31, "feet"),
  26551. name: "Head",
  26552. image: {
  26553. source: "./media/characters/nemoskii/head.svg"
  26554. }
  26555. },
  26556. },
  26557. [
  26558. {
  26559. name: "Normal",
  26560. height: math.unit(6 + 7 / 12, "feet"),
  26561. default: true
  26562. },
  26563. ]
  26564. ))
  26565. characterMakers.push(() => makeCharacter(
  26566. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26567. {
  26568. front: {
  26569. height: math.unit(1, "mile"),
  26570. weight: math.unit(265261.9, "lb"),
  26571. name: "Front",
  26572. image: {
  26573. source: "./media/characters/shui/front.svg",
  26574. extra: 1633 / 1564,
  26575. bottom: 91.5 / 1726
  26576. }
  26577. },
  26578. },
  26579. [
  26580. {
  26581. name: "Macro",
  26582. height: math.unit(1, "mile"),
  26583. default: true
  26584. },
  26585. ]
  26586. ))
  26587. characterMakers.push(() => makeCharacter(
  26588. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26589. {
  26590. front: {
  26591. height: math.unit(12 + 6 / 12, "feet"),
  26592. weight: math.unit(1342, "lb"),
  26593. name: "Front",
  26594. image: {
  26595. source: "./media/characters/arokh-takakura/front.svg",
  26596. extra: 1089 / 1043,
  26597. bottom: 77.4 / 1176.7
  26598. }
  26599. },
  26600. back: {
  26601. height: math.unit(12 + 6 / 12, "feet"),
  26602. weight: math.unit(1342, "lb"),
  26603. name: "Back",
  26604. image: {
  26605. source: "./media/characters/arokh-takakura/back.svg",
  26606. extra: 1046 / 1019,
  26607. bottom: 102 / 1150
  26608. }
  26609. },
  26610. },
  26611. [
  26612. {
  26613. name: "Big",
  26614. height: math.unit(12 + 6 / 12, "feet"),
  26615. default: true
  26616. },
  26617. ]
  26618. ))
  26619. characterMakers.push(() => makeCharacter(
  26620. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26621. {
  26622. front: {
  26623. height: math.unit(5 + 6 / 12, "feet"),
  26624. weight: math.unit(150, "lb"),
  26625. name: "Front",
  26626. image: {
  26627. source: "./media/characters/theo/front.svg",
  26628. extra: 1184 / 1131,
  26629. bottom: 7.4 / 1191
  26630. }
  26631. },
  26632. },
  26633. [
  26634. {
  26635. name: "Micro",
  26636. height: math.unit(5, "inches")
  26637. },
  26638. {
  26639. name: "Normal",
  26640. height: math.unit(5 + 6 / 12, "feet"),
  26641. default: true
  26642. },
  26643. ]
  26644. ))
  26645. characterMakers.push(() => makeCharacter(
  26646. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26647. {
  26648. front: {
  26649. height: math.unit(5 + 9 / 12, "feet"),
  26650. weight: math.unit(130, "lb"),
  26651. name: "Front",
  26652. image: {
  26653. source: "./media/characters/cecelia-swift/front.svg",
  26654. extra: 502 / 484,
  26655. bottom: 23 / 523
  26656. }
  26657. },
  26658. back: {
  26659. height: math.unit(5 + 9 / 12, "feet"),
  26660. weight: math.unit(130, "lb"),
  26661. name: "Back",
  26662. image: {
  26663. source: "./media/characters/cecelia-swift/back.svg",
  26664. extra: 499 / 485,
  26665. bottom: 12 / 511
  26666. }
  26667. },
  26668. head: {
  26669. height: math.unit(0.90, "feet"),
  26670. name: "Head",
  26671. image: {
  26672. source: "./media/characters/cecelia-swift/head.svg"
  26673. }
  26674. },
  26675. rump: {
  26676. height: math.unit(1.75, "feet"),
  26677. name: "Rump",
  26678. image: {
  26679. source: "./media/characters/cecelia-swift/rump.svg"
  26680. }
  26681. },
  26682. },
  26683. [
  26684. {
  26685. name: "Normal",
  26686. height: math.unit(5 + 9 / 12, "feet"),
  26687. default: true
  26688. },
  26689. {
  26690. name: "Big",
  26691. height: math.unit(50, "feet")
  26692. },
  26693. {
  26694. name: "Macro",
  26695. height: math.unit(100, "feet")
  26696. },
  26697. {
  26698. name: "Macro+",
  26699. height: math.unit(500, "feet")
  26700. },
  26701. {
  26702. name: "Macro++",
  26703. height: math.unit(1000, "feet")
  26704. },
  26705. ]
  26706. ))
  26707. characterMakers.push(() => makeCharacter(
  26708. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26709. {
  26710. front: {
  26711. height: math.unit(6, "feet"),
  26712. weight: math.unit(150, "lb"),
  26713. name: "Front",
  26714. image: {
  26715. source: "./media/characters/kaunan/front.svg",
  26716. extra: 2890 / 2523,
  26717. bottom: 49 / 2939
  26718. }
  26719. },
  26720. },
  26721. [
  26722. {
  26723. name: "Macro",
  26724. height: math.unit(150, "feet"),
  26725. default: true
  26726. },
  26727. ]
  26728. ))
  26729. characterMakers.push(() => makeCharacter(
  26730. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26731. {
  26732. front: {
  26733. height: math.unit(175, "cm"),
  26734. weight: math.unit(60, "kg"),
  26735. name: "Front",
  26736. image: {
  26737. source: "./media/characters/fei/front.svg",
  26738. extra: 2581 / 2400,
  26739. bottom: 82.2 / 2663
  26740. }
  26741. },
  26742. },
  26743. [
  26744. {
  26745. name: "Mortal",
  26746. height: math.unit(175, "cm")
  26747. },
  26748. {
  26749. name: "Normal",
  26750. height: math.unit(3500, "m"),
  26751. default: true
  26752. },
  26753. {
  26754. name: "Stroll",
  26755. height: math.unit(17.5, "km")
  26756. },
  26757. {
  26758. name: "Showoff",
  26759. height: math.unit(175, "km")
  26760. },
  26761. ]
  26762. ))
  26763. characterMakers.push(() => makeCharacter(
  26764. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26765. {
  26766. front: {
  26767. height: math.unit(7, "feet"),
  26768. weight: math.unit(1000, "kg"),
  26769. name: "Front",
  26770. image: {
  26771. source: "./media/characters/edrax/front.svg",
  26772. extra: 2838 / 2550,
  26773. bottom: 130 / 2968
  26774. }
  26775. },
  26776. },
  26777. [
  26778. {
  26779. name: "Small",
  26780. height: math.unit(7, "feet")
  26781. },
  26782. {
  26783. name: "Normal",
  26784. height: math.unit(1500, "meters")
  26785. },
  26786. {
  26787. name: "Mega",
  26788. height: math.unit(12000000, "km"),
  26789. default: true
  26790. },
  26791. {
  26792. name: "Megamacro",
  26793. height: math.unit(10600000, "lightyears")
  26794. },
  26795. {
  26796. name: "Hypermacro",
  26797. height: math.unit(256, "yottameters")
  26798. },
  26799. ]
  26800. ))
  26801. characterMakers.push(() => makeCharacter(
  26802. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  26803. {
  26804. front: {
  26805. height: math.unit(10, "feet"),
  26806. weight: math.unit(750, "lb"),
  26807. name: "Front",
  26808. image: {
  26809. source: "./media/characters/clove/front.svg",
  26810. extra: 2031 / 1860,
  26811. bottom: 47.8 / 2080
  26812. }
  26813. },
  26814. back: {
  26815. height: math.unit(10, "feet"),
  26816. weight: math.unit(750, "lb"),
  26817. name: "Back",
  26818. image: {
  26819. source: "./media/characters/clove/back.svg",
  26820. extra: 2025 / 1859,
  26821. bottom: 46 / 2071
  26822. }
  26823. },
  26824. },
  26825. [
  26826. {
  26827. name: "Normal",
  26828. height: math.unit(10, "feet")
  26829. },
  26830. ]
  26831. ))
  26832. characterMakers.push(() => makeCharacter(
  26833. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  26834. {
  26835. front: {
  26836. height: math.unit(4, "feet"),
  26837. weight: math.unit(50, "lb"),
  26838. name: "Front",
  26839. image: {
  26840. source: "./media/characters/alex-rabbit/front.svg",
  26841. extra: 507 / 458,
  26842. bottom: 18.5 / 527
  26843. }
  26844. },
  26845. back: {
  26846. height: math.unit(4, "feet"),
  26847. weight: math.unit(50, "lb"),
  26848. name: "Back",
  26849. image: {
  26850. source: "./media/characters/alex-rabbit/back.svg",
  26851. extra: 502 / 460,
  26852. bottom: 18.9 / 521
  26853. }
  26854. },
  26855. },
  26856. [
  26857. {
  26858. name: "Normal",
  26859. height: math.unit(4, "feet"),
  26860. default: true
  26861. },
  26862. ]
  26863. ))
  26864. characterMakers.push(() => makeCharacter(
  26865. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  26866. {
  26867. front: {
  26868. height: math.unit(1 + 3 / 12, "feet"),
  26869. weight: math.unit(80, "lb"),
  26870. name: "Front",
  26871. image: {
  26872. source: "./media/characters/zander-rose/front.svg",
  26873. extra: 916 / 797,
  26874. bottom: 17 / 933
  26875. }
  26876. },
  26877. back: {
  26878. height: math.unit(1 + 3 / 12, "feet"),
  26879. weight: math.unit(80, "lb"),
  26880. name: "Back",
  26881. image: {
  26882. source: "./media/characters/zander-rose/back.svg",
  26883. extra: 903 / 779,
  26884. bottom: 31 / 934
  26885. }
  26886. },
  26887. },
  26888. [
  26889. {
  26890. name: "Normal",
  26891. height: math.unit(1 + 3 / 12, "feet"),
  26892. default: true
  26893. },
  26894. ]
  26895. ))
  26896. characterMakers.push(() => makeCharacter(
  26897. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  26898. {
  26899. anthro: {
  26900. height: math.unit(6, "feet"),
  26901. weight: math.unit(150, "lb"),
  26902. name: "Anthro",
  26903. image: {
  26904. source: "./media/characters/razz/anthro.svg",
  26905. extra: 1437 / 1343,
  26906. bottom: 48 / 1485
  26907. }
  26908. },
  26909. feral: {
  26910. height: math.unit(6, "feet"),
  26911. weight: math.unit(150, "lb"),
  26912. name: "Feral",
  26913. image: {
  26914. source: "./media/characters/razz/feral.svg",
  26915. extra: 2569 / 1385,
  26916. bottom: 95 / 2664
  26917. }
  26918. },
  26919. },
  26920. [
  26921. {
  26922. name: "Normal",
  26923. height: math.unit(6, "feet"),
  26924. default: true
  26925. },
  26926. ]
  26927. ))
  26928. characterMakers.push(() => makeCharacter(
  26929. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  26930. {
  26931. front: {
  26932. height: math.unit(9 + 4 / 12, "feet"),
  26933. weight: math.unit(500, "lb"),
  26934. name: "Front",
  26935. image: {
  26936. source: "./media/characters/morrigan/front.svg",
  26937. extra: 2707 / 2579,
  26938. bottom: 156 / 2863
  26939. }
  26940. },
  26941. },
  26942. [
  26943. {
  26944. name: "Normal",
  26945. height: math.unit(9 + 4 / 12, "feet"),
  26946. default: true
  26947. },
  26948. ]
  26949. ))
  26950. characterMakers.push(() => makeCharacter(
  26951. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  26952. {
  26953. front: {
  26954. height: math.unit(5, "stories"),
  26955. weight: math.unit(4000, "lb"),
  26956. name: "Front",
  26957. image: {
  26958. source: "./media/characters/jenene/front.svg",
  26959. extra: 1780 / 1710,
  26960. bottom: 57 / 1837
  26961. }
  26962. },
  26963. },
  26964. [
  26965. {
  26966. name: "Normal",
  26967. height: math.unit(5, "stories"),
  26968. default: true
  26969. },
  26970. ]
  26971. ))
  26972. characterMakers.push(() => makeCharacter(
  26973. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  26974. {
  26975. front: {
  26976. height: math.unit(6, "feet"),
  26977. weight: math.unit(150, "lb"),
  26978. name: "Front",
  26979. image: {
  26980. source: "./media/characters/vix-archaser/front.svg",
  26981. extra: 2767 / 2562,
  26982. bottom: 36 / 2803
  26983. }
  26984. },
  26985. },
  26986. [
  26987. {
  26988. name: "Micro",
  26989. height: math.unit(1, "foot")
  26990. },
  26991. {
  26992. name: "Normal",
  26993. height: math.unit(6 + 5 / 12, "feet")
  26994. },
  26995. {
  26996. name: "Minimacro",
  26997. height: math.unit(500, "feet")
  26998. },
  26999. {
  27000. name: "Macro",
  27001. height: math.unit(4, "miles")
  27002. },
  27003. {
  27004. name: "Megamacro",
  27005. height: math.unit(250, "miles"),
  27006. default: true
  27007. },
  27008. {
  27009. name: "Gigamacro",
  27010. height: math.unit(1, "universe")
  27011. },
  27012. {
  27013. name: "Endgame",
  27014. height: math.unit(100, "multiverses")
  27015. }
  27016. ]
  27017. ))
  27018. characterMakers.push(() => makeCharacter(
  27019. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27020. {
  27021. taurSfw: {
  27022. height: math.unit(10, "meters"),
  27023. weight: math.unit(17500, "kg"),
  27024. name: "Taur",
  27025. image: {
  27026. source: "./media/characters/faey/taur-sfw.svg",
  27027. extra: 1200 / 968,
  27028. bottom: 41 / 1241
  27029. }
  27030. },
  27031. chestmaw: {
  27032. height: math.unit(2.01, "meters"),
  27033. name: "Chestmaw",
  27034. image: {
  27035. source: "./media/characters/faey/chestmaw.svg"
  27036. }
  27037. },
  27038. foot: {
  27039. height: math.unit(2.43, "meters"),
  27040. name: "Foot",
  27041. image: {
  27042. source: "./media/characters/faey/foot.svg"
  27043. }
  27044. },
  27045. jaws: {
  27046. height: math.unit(1.66, "meters"),
  27047. name: "Jaws",
  27048. image: {
  27049. source: "./media/characters/faey/jaws.svg"
  27050. }
  27051. },
  27052. tongues: {
  27053. height: math.unit(2.01, "meters"),
  27054. name: "Tongues",
  27055. image: {
  27056. source: "./media/characters/faey/tongues.svg"
  27057. }
  27058. },
  27059. },
  27060. [
  27061. {
  27062. name: "Small",
  27063. height: math.unit(10, "meters"),
  27064. default: true
  27065. },
  27066. {
  27067. name: "Big",
  27068. height: math.unit(500000, "km")
  27069. },
  27070. ]
  27071. ))
  27072. characterMakers.push(() => makeCharacter(
  27073. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27074. {
  27075. front: {
  27076. height: math.unit(7, "feet"),
  27077. weight: math.unit(275, "lb"),
  27078. name: "Front",
  27079. image: {
  27080. source: "./media/characters/roku/front.svg",
  27081. extra: 903 / 878,
  27082. bottom: 37 / 940
  27083. }
  27084. },
  27085. },
  27086. [
  27087. {
  27088. name: "Normal",
  27089. height: math.unit(7, "feet"),
  27090. default: true
  27091. },
  27092. {
  27093. name: "Macro",
  27094. height: math.unit(500, "feet")
  27095. },
  27096. {
  27097. name: "Megamacro",
  27098. height: math.unit(200, "miles")
  27099. },
  27100. ]
  27101. ))
  27102. characterMakers.push(() => makeCharacter(
  27103. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27104. {
  27105. front: {
  27106. height: math.unit(6 + 2 / 12, "feet"),
  27107. weight: math.unit(150, "lb"),
  27108. name: "Front",
  27109. image: {
  27110. source: "./media/characters/lira/front.svg",
  27111. extra: 1727 / 1605,
  27112. bottom: 26 / 1753
  27113. }
  27114. },
  27115. back: {
  27116. height: math.unit(6 + 2 / 12, "feet"),
  27117. weight: math.unit(150, "lb"),
  27118. name: "Back",
  27119. image: {
  27120. source: "./media/characters/lira/back.svg",
  27121. extra: 1713 / 159,
  27122. bottom: 20 / 1733
  27123. }
  27124. },
  27125. hand: {
  27126. height: math.unit(0.75, "feet"),
  27127. name: "Hand",
  27128. image: {
  27129. source: "./media/characters/lira/hand.svg"
  27130. }
  27131. },
  27132. maw: {
  27133. height: math.unit(0.65, "feet"),
  27134. name: "Maw",
  27135. image: {
  27136. source: "./media/characters/lira/maw.svg"
  27137. }
  27138. },
  27139. pawDigi: {
  27140. height: math.unit(1.6, "feet"),
  27141. name: "Paw Digi",
  27142. image: {
  27143. source: "./media/characters/lira/paw-digi.svg"
  27144. }
  27145. },
  27146. pawPlanti: {
  27147. height: math.unit(1.4, "feet"),
  27148. name: "Paw Planti",
  27149. image: {
  27150. source: "./media/characters/lira/paw-planti.svg"
  27151. }
  27152. },
  27153. },
  27154. [
  27155. {
  27156. name: "Normal",
  27157. height: math.unit(6 + 2 / 12, "feet"),
  27158. default: true
  27159. },
  27160. {
  27161. name: "Macro",
  27162. height: math.unit(100, "feet")
  27163. },
  27164. {
  27165. name: "Macro²",
  27166. height: math.unit(1600, "feet")
  27167. },
  27168. {
  27169. name: "Planetary",
  27170. height: math.unit(20, "earths")
  27171. },
  27172. ]
  27173. ))
  27174. characterMakers.push(() => makeCharacter(
  27175. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27176. {
  27177. front: {
  27178. height: math.unit(6, "feet"),
  27179. weight: math.unit(150, "lb"),
  27180. name: "Front",
  27181. image: {
  27182. source: "./media/characters/hadjet/front.svg",
  27183. extra: 1480 / 1346,
  27184. bottom: 26 / 1506
  27185. }
  27186. },
  27187. frontNsfw: {
  27188. height: math.unit(6, "feet"),
  27189. weight: math.unit(150, "lb"),
  27190. name: "Front (NSFW)",
  27191. image: {
  27192. source: "./media/characters/hadjet/front-nsfw.svg",
  27193. extra: 1440 / 1358,
  27194. bottom: 52 / 1492
  27195. }
  27196. },
  27197. },
  27198. [
  27199. {
  27200. name: "Macro",
  27201. height: math.unit(10, "stories"),
  27202. default: true
  27203. },
  27204. {
  27205. name: "Megamacro",
  27206. height: math.unit(1.5, "miles")
  27207. },
  27208. {
  27209. name: "Megamacro+",
  27210. height: math.unit(5, "miles")
  27211. },
  27212. ]
  27213. ))
  27214. characterMakers.push(() => makeCharacter(
  27215. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27216. {
  27217. side: {
  27218. height: math.unit(106, "feet"),
  27219. weight: math.unit(500, "tonnes"),
  27220. name: "Side",
  27221. image: {
  27222. source: "./media/characters/kodran/side.svg",
  27223. extra: 553 / 480,
  27224. bottom: 33 / 586
  27225. }
  27226. },
  27227. front: {
  27228. height: math.unit(132, "feet"),
  27229. weight: math.unit(500, "tonnes"),
  27230. name: "Front",
  27231. image: {
  27232. source: "./media/characters/kodran/front.svg",
  27233. extra: 667 / 643,
  27234. bottom: 42 / 709
  27235. }
  27236. },
  27237. flying: {
  27238. height: math.unit(350, "feet"),
  27239. weight: math.unit(500, "tonnes"),
  27240. name: "Flying",
  27241. image: {
  27242. source: "./media/characters/kodran/flying.svg"
  27243. }
  27244. },
  27245. foot: {
  27246. height: math.unit(33, "feet"),
  27247. name: "Foot",
  27248. image: {
  27249. source: "./media/characters/kodran/foot.svg"
  27250. }
  27251. },
  27252. footFront: {
  27253. height: math.unit(19, "feet"),
  27254. name: "Foot (Front)",
  27255. image: {
  27256. source: "./media/characters/kodran/foot-front.svg",
  27257. extra: 261 / 261,
  27258. bottom: 91 / 352
  27259. }
  27260. },
  27261. headFront: {
  27262. height: math.unit(53, "feet"),
  27263. name: "Head (Front)",
  27264. image: {
  27265. source: "./media/characters/kodran/head-front.svg"
  27266. }
  27267. },
  27268. headSide: {
  27269. height: math.unit(65, "feet"),
  27270. name: "Head (Side)",
  27271. image: {
  27272. source: "./media/characters/kodran/head-side.svg"
  27273. }
  27274. },
  27275. throat: {
  27276. height: math.unit(79, "feet"),
  27277. name: "Throat",
  27278. image: {
  27279. source: "./media/characters/kodran/throat.svg"
  27280. }
  27281. },
  27282. },
  27283. [
  27284. {
  27285. name: "Large",
  27286. height: math.unit(106, "feet"),
  27287. default: true
  27288. },
  27289. ]
  27290. ))
  27291. characterMakers.push(() => makeCharacter(
  27292. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27293. {
  27294. side: {
  27295. height: math.unit(11, "feet"),
  27296. weight: math.unit(150, "lb"),
  27297. name: "Side",
  27298. image: {
  27299. source: "./media/characters/pyxaron/side.svg",
  27300. extra: 305 / 195,
  27301. bottom: 17 / 322
  27302. }
  27303. },
  27304. },
  27305. [
  27306. {
  27307. name: "Normal",
  27308. height: math.unit(11, "feet")
  27309. },
  27310. ]
  27311. ))
  27312. characterMakers.push(() => makeCharacter(
  27313. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27314. {
  27315. front: {
  27316. height: math.unit(6, "feet"),
  27317. weight: math.unit(150, "lb"),
  27318. name: "Front",
  27319. image: {
  27320. source: "./media/characters/meep/front.svg",
  27321. extra: 88 / 80,
  27322. bottom: 6 / 94
  27323. }
  27324. },
  27325. },
  27326. [
  27327. {
  27328. name: "Fun Sized",
  27329. height: math.unit(2, "inches"),
  27330. default: true
  27331. },
  27332. {
  27333. name: "Friend Sized",
  27334. height: math.unit(8, "inches")
  27335. },
  27336. ]
  27337. ))
  27338. characterMakers.push(() => makeCharacter(
  27339. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27340. {
  27341. front: {
  27342. height: math.unit(15, "feet"),
  27343. weight: math.unit(2500, "lb"),
  27344. name: "Front",
  27345. image: {
  27346. source: "./media/characters/holly-rabbit/front.svg",
  27347. extra: 1433 / 1233,
  27348. bottom: 125 / 1558
  27349. }
  27350. },
  27351. dick: {
  27352. height: math.unit(4.6, "feet"),
  27353. name: "Dick",
  27354. image: {
  27355. source: "./media/characters/holly-rabbit/dick.svg"
  27356. }
  27357. },
  27358. },
  27359. [
  27360. {
  27361. name: "Normal",
  27362. height: math.unit(15, "feet"),
  27363. default: true
  27364. },
  27365. {
  27366. name: "Macro",
  27367. height: math.unit(250, "feet")
  27368. },
  27369. {
  27370. name: "Macro+",
  27371. height: math.unit(2500, "feet")
  27372. },
  27373. ]
  27374. ))
  27375. characterMakers.push(() => makeCharacter(
  27376. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27377. {
  27378. front: {
  27379. height: math.unit(3.02, "meters"),
  27380. weight: math.unit(500, "kg"),
  27381. name: "Front",
  27382. image: {
  27383. source: "./media/characters/drena/front.svg",
  27384. extra: 282 / 243,
  27385. bottom: 8 / 290
  27386. }
  27387. },
  27388. side: {
  27389. height: math.unit(3.02, "meters"),
  27390. weight: math.unit(500, "kg"),
  27391. name: "Side",
  27392. image: {
  27393. source: "./media/characters/drena/side.svg",
  27394. extra: 280 / 245,
  27395. bottom: 10 / 290
  27396. }
  27397. },
  27398. back: {
  27399. height: math.unit(3.02, "meters"),
  27400. weight: math.unit(500, "kg"),
  27401. name: "Back",
  27402. image: {
  27403. source: "./media/characters/drena/back.svg",
  27404. extra: 278 / 243,
  27405. bottom: 2 / 280
  27406. }
  27407. },
  27408. foot: {
  27409. height: math.unit(0.75, "meters"),
  27410. name: "Foot",
  27411. image: {
  27412. source: "./media/characters/drena/foot.svg"
  27413. }
  27414. },
  27415. maw: {
  27416. height: math.unit(0.82, "meters"),
  27417. name: "Maw",
  27418. image: {
  27419. source: "./media/characters/drena/maw.svg"
  27420. }
  27421. },
  27422. rump: {
  27423. height: math.unit(0.93, "meters"),
  27424. name: "Rump",
  27425. image: {
  27426. source: "./media/characters/drena/rump.svg"
  27427. }
  27428. },
  27429. },
  27430. [
  27431. {
  27432. name: "Normal",
  27433. height: math.unit(3.02, "meters"),
  27434. default: true
  27435. },
  27436. ]
  27437. ))
  27438. characterMakers.push(() => makeCharacter(
  27439. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27440. {
  27441. front: {
  27442. height: math.unit(6 + 4 / 12, "feet"),
  27443. weight: math.unit(250, "lb"),
  27444. name: "Front",
  27445. image: {
  27446. source: "./media/characters/remmyzilla/front.svg",
  27447. extra: 4033 / 3588,
  27448. bottom: 123 / 4156
  27449. }
  27450. },
  27451. back: {
  27452. height: math.unit(6 + 4 / 12, "feet"),
  27453. weight: math.unit(250, "lb"),
  27454. name: "Back",
  27455. image: {
  27456. source: "./media/characters/remmyzilla/back.svg",
  27457. extra: 2687 / 2555,
  27458. bottom: 48 / 2735
  27459. }
  27460. },
  27461. frontFancy: {
  27462. height: math.unit(6 + 4 / 12, "feet"),
  27463. weight: math.unit(250, "lb"),
  27464. name: "Front (Fancy)",
  27465. image: {
  27466. source: "./media/characters/remmyzilla/front-fancy.svg",
  27467. extra: 4119 / 3419,
  27468. bottom: 237 / 4356
  27469. }
  27470. },
  27471. paw: {
  27472. height: math.unit(1.73, "feet"),
  27473. name: "Paw",
  27474. image: {
  27475. source: "./media/characters/remmyzilla/paw.svg"
  27476. }
  27477. },
  27478. maw: {
  27479. height: math.unit(1.73, "feet"),
  27480. name: "Maw",
  27481. image: {
  27482. source: "./media/characters/remmyzilla/maw.svg"
  27483. }
  27484. },
  27485. },
  27486. [
  27487. {
  27488. name: "Normal",
  27489. height: math.unit(6 + 4 / 12, "feet")
  27490. },
  27491. {
  27492. name: "Minimacro",
  27493. height: math.unit(12 + 8 / 12, "feet")
  27494. },
  27495. {
  27496. name: "Normal",
  27497. height: math.unit(640, "feet"),
  27498. default: true
  27499. },
  27500. {
  27501. name: "Megamacro",
  27502. height: math.unit(6400, "feet")
  27503. },
  27504. {
  27505. name: "Gigamacro",
  27506. height: math.unit(64000, "miles")
  27507. },
  27508. ]
  27509. ))
  27510. characterMakers.push(() => makeCharacter(
  27511. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27512. {
  27513. front: {
  27514. height: math.unit(2.5, "meters"),
  27515. weight: math.unit(300, "lb"),
  27516. name: "Front",
  27517. image: {
  27518. source: "./media/characters/lawrence/front.svg",
  27519. extra: 357 / 335,
  27520. bottom: 30 / 387
  27521. }
  27522. },
  27523. back: {
  27524. height: math.unit(2.5, "meters"),
  27525. weight: math.unit(300, "lb"),
  27526. name: "Back",
  27527. image: {
  27528. source: "./media/characters/lawrence/back.svg",
  27529. extra: 357 / 338,
  27530. bottom: 16 / 373
  27531. }
  27532. },
  27533. head: {
  27534. height: math.unit(0.9, "meter"),
  27535. name: "Head",
  27536. image: {
  27537. source: "./media/characters/lawrence/head.svg"
  27538. }
  27539. },
  27540. maw: {
  27541. height: math.unit(0.7, "meter"),
  27542. name: "Maw",
  27543. image: {
  27544. source: "./media/characters/lawrence/maw.svg"
  27545. }
  27546. },
  27547. footBottom: {
  27548. height: math.unit(0.5, "meter"),
  27549. name: "Foot (Bottom)",
  27550. image: {
  27551. source: "./media/characters/lawrence/foot-bottom.svg"
  27552. }
  27553. },
  27554. footTop: {
  27555. height: math.unit(0.5, "meter"),
  27556. name: "Foot (Top)",
  27557. image: {
  27558. source: "./media/characters/lawrence/foot-top.svg"
  27559. }
  27560. },
  27561. },
  27562. [
  27563. {
  27564. name: "Normal",
  27565. height: math.unit(2.5, "meters"),
  27566. default: true
  27567. },
  27568. {
  27569. name: "Macro",
  27570. height: math.unit(95, "meters")
  27571. },
  27572. {
  27573. name: "Megamacro",
  27574. height: math.unit(150, "km")
  27575. },
  27576. ]
  27577. ))
  27578. characterMakers.push(() => makeCharacter(
  27579. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27580. {
  27581. front: {
  27582. height: math.unit(4.2, "meters"),
  27583. name: "Front",
  27584. image: {
  27585. source: "./media/characters/sydney/front.svg",
  27586. extra: 1323 / 1277,
  27587. bottom: 111 / 1434
  27588. }
  27589. },
  27590. },
  27591. [
  27592. {
  27593. name: "Normal",
  27594. height: math.unit(4.2, "meters")
  27595. },
  27596. ]
  27597. ))
  27598. characterMakers.push(() => makeCharacter(
  27599. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27600. {
  27601. back: {
  27602. height: math.unit(201, "feet"),
  27603. name: "Back",
  27604. image: {
  27605. source: "./media/characters/jessica/back.svg",
  27606. extra: 273 / 259,
  27607. bottom: 7 / 280
  27608. }
  27609. },
  27610. },
  27611. [
  27612. {
  27613. name: "Normal",
  27614. height: math.unit(201, "feet"),
  27615. default: true
  27616. },
  27617. {
  27618. name: "Megamacro",
  27619. height: math.unit(8, "miles")
  27620. },
  27621. ]
  27622. ))
  27623. characterMakers.push(() => makeCharacter(
  27624. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27625. {
  27626. side: {
  27627. height: math.unit(320, "cm"),
  27628. name: "Side",
  27629. image: {
  27630. source: "./media/characters/victoria/side.svg",
  27631. extra: 778/346,
  27632. bottom: 56/834
  27633. }
  27634. },
  27635. maw: {
  27636. height: math.unit(5.9, "feet"),
  27637. name: "Maw",
  27638. image: {
  27639. source: "./media/characters/victoria/maw.svg"
  27640. }
  27641. },
  27642. },
  27643. [
  27644. {
  27645. name: "Normal",
  27646. height: math.unit(320, "cm"),
  27647. default: true
  27648. },
  27649. ]
  27650. ))
  27651. characterMakers.push(() => makeCharacter(
  27652. { name: "Cat", species: ["cat"], tags: ["anthro"] },
  27653. {
  27654. front: {
  27655. height: math.unit(5 + 6/12, "feet"),
  27656. name: "Front",
  27657. image: {
  27658. source: "./media/characters/cat/front.svg",
  27659. extra: 1374/1257,
  27660. bottom: 59/1433
  27661. }
  27662. },
  27663. back: {
  27664. height: math.unit(5 + 6/12, "feet"),
  27665. name: "Back",
  27666. image: {
  27667. source: "./media/characters/cat/back.svg",
  27668. extra: 1337/1226,
  27669. bottom: 34/1371
  27670. }
  27671. },
  27672. },
  27673. [
  27674. {
  27675. name: "Really small",
  27676. height: math.unit(1, "nm")
  27677. },
  27678. {
  27679. name: "Micro",
  27680. height: math.unit(5, "inches")
  27681. },
  27682. {
  27683. name: "Normal",
  27684. height: math.unit(5 + 6/12, "feet"),
  27685. default: true
  27686. },
  27687. {
  27688. name: "Macro",
  27689. height: math.unit(50, "feet")
  27690. },
  27691. {
  27692. name: "Macro+",
  27693. height: math.unit(150, "feet")
  27694. },
  27695. {
  27696. name: "Megamacro",
  27697. height: math.unit(100, "miles")
  27698. },
  27699. ]
  27700. ))
  27701. //characters
  27702. function makeCharacters() {
  27703. const results = [];
  27704. characterMakers.forEach(character => {
  27705. results.push(character());
  27706. });
  27707. return results;
  27708. }