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

28304 строки
706 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: 573 / 543,
  4090. bottom: 0.01
  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 / 543,
  4100. }
  4101. },
  4102. feet: {
  4103. height: math.unit(1.276, "feet"),
  4104. name: "Feet",
  4105. image: {
  4106. source: "./media/characters/vulpes/feet.svg"
  4107. }
  4108. },
  4109. maw: {
  4110. height: math.unit(1.18, "feet"),
  4111. name: "Maw",
  4112. image: {
  4113. source: "./media/characters/vulpes/maw.svg"
  4114. }
  4115. },
  4116. },
  4117. [
  4118. {
  4119. name: "Micro",
  4120. height: math.unit(2, "inches")
  4121. },
  4122. {
  4123. name: "Normal",
  4124. height: math.unit(6.3, "feet")
  4125. },
  4126. {
  4127. name: "Macro",
  4128. height: math.unit(850, "feet")
  4129. },
  4130. {
  4131. name: "Megamacro",
  4132. height: math.unit(7500, "feet"),
  4133. default: true
  4134. },
  4135. {
  4136. name: "Gigamacro",
  4137. height: math.unit(570000, "miles")
  4138. }
  4139. ]
  4140. ))
  4141. characterMakers.push(() => makeCharacter(
  4142. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4143. {
  4144. front: {
  4145. height: math.unit(6, "feet"),
  4146. weight: math.unit(210, "lbs"),
  4147. name: "Front",
  4148. image: {
  4149. source: "./media/characters/rain-fallen/front.svg"
  4150. }
  4151. },
  4152. side: {
  4153. height: math.unit(6, "feet"),
  4154. weight: math.unit(210, "lbs"),
  4155. name: "Side",
  4156. image: {
  4157. source: "./media/characters/rain-fallen/side.svg"
  4158. }
  4159. },
  4160. back: {
  4161. height: math.unit(6, "feet"),
  4162. weight: math.unit(210, "lbs"),
  4163. name: "Back",
  4164. image: {
  4165. source: "./media/characters/rain-fallen/back.svg"
  4166. }
  4167. },
  4168. feral: {
  4169. height: math.unit(9, "feet"),
  4170. weight: math.unit(700, "lbs"),
  4171. name: "Feral",
  4172. image: {
  4173. source: "./media/characters/rain-fallen/feral.svg"
  4174. }
  4175. },
  4176. },
  4177. [
  4178. {
  4179. name: "Normal",
  4180. height: math.unit(5, "meter")
  4181. },
  4182. {
  4183. name: "Macro",
  4184. height: math.unit(150, "meter"),
  4185. default: true
  4186. },
  4187. {
  4188. name: "Megamacro",
  4189. height: math.unit(278e6, "meter")
  4190. },
  4191. {
  4192. name: "Gigamacro",
  4193. height: math.unit(2e9, "meter")
  4194. },
  4195. {
  4196. name: "Teramacro",
  4197. height: math.unit(8e12, "meter")
  4198. },
  4199. {
  4200. name: "Devourer",
  4201. height: math.unit(14, "zettameters")
  4202. },
  4203. {
  4204. name: "Scarlet King",
  4205. height: math.unit(18, "yottameters")
  4206. },
  4207. {
  4208. name: "Void",
  4209. height: math.unit(6.66e66, "yottameters")
  4210. }
  4211. ]
  4212. ))
  4213. characterMakers.push(() => makeCharacter(
  4214. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4215. {
  4216. standing: {
  4217. height: math.unit(6, "feet"),
  4218. weight: math.unit(180, "lbs"),
  4219. name: "Standing",
  4220. image: {
  4221. source: "./media/characters/zaakira/standing.svg"
  4222. }
  4223. },
  4224. laying: {
  4225. height: math.unit(3, "feet"),
  4226. weight: math.unit(180, "lbs"),
  4227. name: "Laying",
  4228. image: {
  4229. source: "./media/characters/zaakira/laying.svg"
  4230. }
  4231. },
  4232. },
  4233. [
  4234. {
  4235. name: "Normal",
  4236. height: math.unit(12, "feet")
  4237. },
  4238. {
  4239. name: "Macro",
  4240. height: math.unit(279, "feet"),
  4241. default: true
  4242. }
  4243. ]
  4244. ))
  4245. characterMakers.push(() => makeCharacter(
  4246. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4247. {
  4248. femSfw: {
  4249. height: math.unit(8, "feet"),
  4250. weight: math.unit(350, "lb"),
  4251. name: "Fem",
  4252. image: {
  4253. source: "./media/characters/sigvald/fem-sfw.svg",
  4254. extra: 182 / 164,
  4255. bottom: 8.7 / 190.5
  4256. }
  4257. },
  4258. femNsfw: {
  4259. height: math.unit(8, "feet"),
  4260. weight: math.unit(350, "lb"),
  4261. name: "Fem (NSFW)",
  4262. image: {
  4263. source: "./media/characters/sigvald/fem-nsfw.svg",
  4264. extra: 182 / 164,
  4265. bottom: 8.7 / 190.5
  4266. }
  4267. },
  4268. maleNsfw: {
  4269. height: math.unit(8, "feet"),
  4270. weight: math.unit(350, "lb"),
  4271. name: "Male (NSFW)",
  4272. image: {
  4273. source: "./media/characters/sigvald/male-nsfw.svg",
  4274. extra: 182 / 164,
  4275. bottom: 8.7 / 190.5
  4276. }
  4277. },
  4278. hermNsfw: {
  4279. height: math.unit(8, "feet"),
  4280. weight: math.unit(350, "lb"),
  4281. name: "Herm (NSFW)",
  4282. image: {
  4283. source: "./media/characters/sigvald/herm-nsfw.svg",
  4284. extra: 182 / 164,
  4285. bottom: 8.7 / 190.5
  4286. }
  4287. },
  4288. dick: {
  4289. height: math.unit(2.36, "feet"),
  4290. name: "Dick",
  4291. image: {
  4292. source: "./media/characters/sigvald/dick.svg"
  4293. }
  4294. },
  4295. eye: {
  4296. height: math.unit(0.31, "feet"),
  4297. name: "Eye",
  4298. image: {
  4299. source: "./media/characters/sigvald/eye.svg"
  4300. }
  4301. },
  4302. mouth: {
  4303. height: math.unit(0.92, "feet"),
  4304. name: "Mouth",
  4305. image: {
  4306. source: "./media/characters/sigvald/mouth.svg"
  4307. }
  4308. },
  4309. paws: {
  4310. height: math.unit(2.2, "feet"),
  4311. name: "Paws",
  4312. image: {
  4313. source: "./media/characters/sigvald/paws.svg"
  4314. }
  4315. }
  4316. },
  4317. [
  4318. {
  4319. name: "Normal",
  4320. height: math.unit(8, "feet")
  4321. },
  4322. {
  4323. name: "Large",
  4324. height: math.unit(12, "feet")
  4325. },
  4326. {
  4327. name: "Larger",
  4328. height: math.unit(20, "feet")
  4329. },
  4330. {
  4331. name: "Macro",
  4332. height: math.unit(150, "feet")
  4333. },
  4334. {
  4335. name: "Macro+",
  4336. height: math.unit(200, "feet"),
  4337. default: true
  4338. },
  4339. ]
  4340. ))
  4341. characterMakers.push(() => makeCharacter(
  4342. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4343. {
  4344. side: {
  4345. height: math.unit(12, "feet"),
  4346. weight: math.unit(2000, "kg"),
  4347. name: "Side",
  4348. image: {
  4349. source: "./media/characters/scott/side.svg",
  4350. extra: 754 / 724,
  4351. bottom: 0.069
  4352. }
  4353. },
  4354. upright: {
  4355. height: math.unit(12, "feet"),
  4356. weight: math.unit(2000, "kg"),
  4357. name: "Upright",
  4358. image: {
  4359. source: "./media/characters/scott/upright.svg",
  4360. extra: 3881 / 3722,
  4361. bottom: 0.05
  4362. }
  4363. },
  4364. },
  4365. [
  4366. {
  4367. name: "Normal",
  4368. height: math.unit(12, "feet"),
  4369. default: true
  4370. },
  4371. ]
  4372. ))
  4373. characterMakers.push(() => makeCharacter(
  4374. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4375. {
  4376. side: {
  4377. height: math.unit(8, "meters"),
  4378. weight: math.unit(84755, "lbs"),
  4379. name: "Side",
  4380. image: {
  4381. source: "./media/characters/tobias/side.svg",
  4382. extra: 1474 / 1096,
  4383. bottom: 38.9 / 1513.1235
  4384. }
  4385. },
  4386. },
  4387. [
  4388. {
  4389. name: "Normal",
  4390. height: math.unit(8, "meters"),
  4391. default: true
  4392. },
  4393. ]
  4394. ))
  4395. characterMakers.push(() => makeCharacter(
  4396. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4397. {
  4398. front: {
  4399. height: math.unit(5.5, "feet"),
  4400. weight: math.unit(400, "lbs"),
  4401. name: "Front",
  4402. image: {
  4403. source: "./media/characters/kieran/front.svg",
  4404. extra: 2694 / 2364,
  4405. bottom: 217 / 2908
  4406. }
  4407. },
  4408. side: {
  4409. height: math.unit(5.5, "feet"),
  4410. weight: math.unit(400, "lbs"),
  4411. name: "Side",
  4412. image: {
  4413. source: "./media/characters/kieran/side.svg",
  4414. extra: 875 / 777,
  4415. bottom: 84.6 / 959
  4416. }
  4417. },
  4418. },
  4419. [
  4420. {
  4421. name: "Normal",
  4422. height: math.unit(5.5, "feet"),
  4423. default: true
  4424. },
  4425. ]
  4426. ))
  4427. characterMakers.push(() => makeCharacter(
  4428. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4429. {
  4430. side: {
  4431. height: math.unit(2, "meters"),
  4432. weight: math.unit(70, "kg"),
  4433. name: "Side",
  4434. image: {
  4435. source: "./media/characters/sanya/side.svg",
  4436. bottom: 0.02,
  4437. extra: 1.02
  4438. }
  4439. },
  4440. },
  4441. [
  4442. {
  4443. name: "Small",
  4444. height: math.unit(2, "meters")
  4445. },
  4446. {
  4447. name: "Normal",
  4448. height: math.unit(3, "meters")
  4449. },
  4450. {
  4451. name: "Macro",
  4452. height: math.unit(16, "meters"),
  4453. default: true
  4454. },
  4455. ]
  4456. ))
  4457. characterMakers.push(() => makeCharacter(
  4458. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4459. {
  4460. front: {
  4461. height: math.unit(2, "meters"),
  4462. weight: math.unit(120, "kg"),
  4463. name: "Front",
  4464. image: {
  4465. source: "./media/characters/miranda/front.svg",
  4466. extra: 195 / 185,
  4467. bottom: 10.9 / 206.5
  4468. }
  4469. },
  4470. back: {
  4471. height: math.unit(2, "meters"),
  4472. weight: math.unit(120, "kg"),
  4473. name: "Back",
  4474. image: {
  4475. source: "./media/characters/miranda/back.svg",
  4476. extra: 201 / 193,
  4477. bottom: 2.3 / 203.7
  4478. }
  4479. },
  4480. },
  4481. [
  4482. {
  4483. name: "Normal",
  4484. height: math.unit(10, "feet"),
  4485. default: true
  4486. }
  4487. ]
  4488. ))
  4489. characterMakers.push(() => makeCharacter(
  4490. { name: "James", species: ["deer"], tags: ["anthro"] },
  4491. {
  4492. side: {
  4493. height: math.unit(2, "meters"),
  4494. weight: math.unit(100, "kg"),
  4495. name: "Front",
  4496. image: {
  4497. source: "./media/characters/james/front.svg",
  4498. extra: 10 / 8.5
  4499. }
  4500. },
  4501. },
  4502. [
  4503. {
  4504. name: "Normal",
  4505. height: math.unit(8.5, "feet"),
  4506. default: true
  4507. }
  4508. ]
  4509. ))
  4510. characterMakers.push(() => makeCharacter(
  4511. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4512. {
  4513. side: {
  4514. height: math.unit(9.5, "feet"),
  4515. weight: math.unit(2500, "lbs"),
  4516. name: "Side",
  4517. image: {
  4518. source: "./media/characters/heather/side.svg"
  4519. }
  4520. },
  4521. },
  4522. [
  4523. {
  4524. name: "Normal",
  4525. height: math.unit(9.5, "feet"),
  4526. default: true
  4527. }
  4528. ]
  4529. ))
  4530. characterMakers.push(() => makeCharacter(
  4531. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4532. {
  4533. side: {
  4534. height: math.unit(6.5, "feet"),
  4535. weight: math.unit(400, "lbs"),
  4536. name: "Side",
  4537. image: {
  4538. source: "./media/characters/lukas/side.svg",
  4539. extra: 7.25 / 6.5
  4540. }
  4541. },
  4542. },
  4543. [
  4544. {
  4545. name: "Normal",
  4546. height: math.unit(6.5, "feet"),
  4547. default: true
  4548. }
  4549. ]
  4550. ))
  4551. characterMakers.push(() => makeCharacter(
  4552. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4553. {
  4554. side: {
  4555. height: math.unit(5, "feet"),
  4556. weight: math.unit(3000, "lbs"),
  4557. name: "Side",
  4558. image: {
  4559. source: "./media/characters/louise/side.svg"
  4560. }
  4561. },
  4562. },
  4563. [
  4564. {
  4565. name: "Normal",
  4566. height: math.unit(5, "feet"),
  4567. default: true
  4568. }
  4569. ]
  4570. ))
  4571. characterMakers.push(() => makeCharacter(
  4572. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4573. {
  4574. side: {
  4575. height: math.unit(6, "feet"),
  4576. weight: math.unit(150, "lbs"),
  4577. name: "Side",
  4578. image: {
  4579. source: "./media/characters/ramona/side.svg"
  4580. }
  4581. },
  4582. },
  4583. [
  4584. {
  4585. name: "Normal",
  4586. height: math.unit(5.3, "meters"),
  4587. default: true
  4588. },
  4589. {
  4590. name: "Macro",
  4591. height: math.unit(20, "stories")
  4592. },
  4593. {
  4594. name: "Macro+",
  4595. height: math.unit(50, "stories")
  4596. },
  4597. ]
  4598. ))
  4599. characterMakers.push(() => makeCharacter(
  4600. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4601. {
  4602. standing: {
  4603. height: math.unit(5.75, "feet"),
  4604. weight: math.unit(160, "lbs"),
  4605. name: "Standing",
  4606. image: {
  4607. source: "./media/characters/deerpuff/standing.svg",
  4608. extra: 682 / 624
  4609. }
  4610. },
  4611. sitting: {
  4612. height: math.unit(5.75 / 1.79, "feet"),
  4613. weight: math.unit(160, "lbs"),
  4614. name: "Sitting",
  4615. image: {
  4616. source: "./media/characters/deerpuff/sitting.svg",
  4617. bottom: 44 / 400,
  4618. extra: 1
  4619. }
  4620. },
  4621. taurLaying: {
  4622. height: math.unit(6, "feet"),
  4623. weight: math.unit(400, "lbs"),
  4624. name: "Taur (Laying)",
  4625. image: {
  4626. source: "./media/characters/deerpuff/taur-laying.svg"
  4627. }
  4628. },
  4629. },
  4630. [
  4631. {
  4632. name: "Puffball",
  4633. height: math.unit(6, "inches")
  4634. },
  4635. {
  4636. name: "Normalpuff",
  4637. height: math.unit(5.75, "feet")
  4638. },
  4639. {
  4640. name: "Macropuff",
  4641. height: math.unit(1500, "feet"),
  4642. default: true
  4643. },
  4644. {
  4645. name: "Megapuff",
  4646. height: math.unit(500, "miles")
  4647. },
  4648. {
  4649. name: "Gigapuff",
  4650. height: math.unit(250000, "miles")
  4651. },
  4652. {
  4653. name: "Omegapuff",
  4654. height: math.unit(1000, "lightyears")
  4655. },
  4656. ]
  4657. ))
  4658. characterMakers.push(() => makeCharacter(
  4659. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4660. {
  4661. stomping: {
  4662. height: math.unit(6, "feet"),
  4663. weight: math.unit(170, "lbs"),
  4664. name: "Stomping",
  4665. image: {
  4666. source: "./media/characters/vivian/stomping.svg"
  4667. }
  4668. },
  4669. sitting: {
  4670. height: math.unit(6 / 1.75, "feet"),
  4671. weight: math.unit(170, "lbs"),
  4672. name: "Sitting",
  4673. image: {
  4674. source: "./media/characters/vivian/sitting.svg",
  4675. bottom: 1 / 6.4,
  4676. extra: 1,
  4677. }
  4678. },
  4679. },
  4680. [
  4681. {
  4682. name: "Normal",
  4683. height: math.unit(7, "feet"),
  4684. default: true
  4685. },
  4686. {
  4687. name: "Macro",
  4688. height: math.unit(10, "stories")
  4689. },
  4690. {
  4691. name: "Macro+",
  4692. height: math.unit(30, "stories")
  4693. },
  4694. {
  4695. name: "Megamacro",
  4696. height: math.unit(10, "miles")
  4697. },
  4698. {
  4699. name: "Megamacro+",
  4700. height: math.unit(2750000, "meters")
  4701. },
  4702. ]
  4703. ))
  4704. characterMakers.push(() => makeCharacter(
  4705. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4706. {
  4707. front: {
  4708. height: math.unit(6, "feet"),
  4709. weight: math.unit(160, "lbs"),
  4710. name: "Front",
  4711. image: {
  4712. source: "./media/characters/prince/front.svg",
  4713. extra: 3400 / 3000
  4714. }
  4715. },
  4716. jumping: {
  4717. height: math.unit(6, "feet"),
  4718. weight: math.unit(160, "lbs"),
  4719. name: "Jumping",
  4720. image: {
  4721. source: "./media/characters/prince/jump.svg",
  4722. extra: 2555 / 2134
  4723. }
  4724. },
  4725. },
  4726. [
  4727. {
  4728. name: "Normal",
  4729. height: math.unit(7.75, "feet"),
  4730. default: true
  4731. },
  4732. {
  4733. name: "Not cute",
  4734. height: math.unit(17, "feet")
  4735. },
  4736. {
  4737. name: "I said NOT",
  4738. height: math.unit(91, "feet")
  4739. },
  4740. {
  4741. name: "Please stop",
  4742. height: math.unit(560, "feet")
  4743. },
  4744. {
  4745. name: "What have you done",
  4746. height: math.unit(2200, "feet")
  4747. },
  4748. {
  4749. name: "Deer God",
  4750. height: math.unit(3.6, "miles")
  4751. },
  4752. ]
  4753. ))
  4754. characterMakers.push(() => makeCharacter(
  4755. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4756. {
  4757. standing: {
  4758. height: math.unit(6, "feet"),
  4759. weight: math.unit(300, "lbs"),
  4760. name: "Standing",
  4761. image: {
  4762. source: "./media/characters/psymon/standing.svg",
  4763. extra: 1888 / 1810,
  4764. bottom: 0.05
  4765. }
  4766. },
  4767. slithering: {
  4768. height: math.unit(6, "feet"),
  4769. weight: math.unit(300, "lbs"),
  4770. name: "Slithering",
  4771. image: {
  4772. source: "./media/characters/psymon/slithering.svg",
  4773. extra: 1330 / 1224
  4774. }
  4775. },
  4776. slitheringAlt: {
  4777. height: math.unit(6, "feet"),
  4778. weight: math.unit(300, "lbs"),
  4779. name: "Slithering (Alt)",
  4780. image: {
  4781. source: "./media/characters/psymon/slithering-alt.svg",
  4782. extra: 1330 / 1224
  4783. }
  4784. },
  4785. },
  4786. [
  4787. {
  4788. name: "Normal",
  4789. height: math.unit(11.25, "feet"),
  4790. default: true
  4791. },
  4792. {
  4793. name: "Large",
  4794. height: math.unit(27, "feet")
  4795. },
  4796. {
  4797. name: "Giant",
  4798. height: math.unit(87, "feet")
  4799. },
  4800. {
  4801. name: "Macro",
  4802. height: math.unit(365, "feet")
  4803. },
  4804. {
  4805. name: "Megamacro",
  4806. height: math.unit(3, "miles")
  4807. },
  4808. {
  4809. name: "World Serpent",
  4810. height: math.unit(8000, "miles")
  4811. },
  4812. ]
  4813. ))
  4814. characterMakers.push(() => makeCharacter(
  4815. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4816. {
  4817. front: {
  4818. height: math.unit(6, "feet"),
  4819. weight: math.unit(180, "lbs"),
  4820. name: "Front",
  4821. image: {
  4822. source: "./media/characters/daimos/front.svg",
  4823. extra: 4160 / 3897,
  4824. bottom: 0.021
  4825. }
  4826. }
  4827. },
  4828. [
  4829. {
  4830. name: "Normal",
  4831. height: math.unit(8, "feet"),
  4832. default: true
  4833. },
  4834. {
  4835. name: "Big Dog",
  4836. height: math.unit(22, "feet")
  4837. },
  4838. {
  4839. name: "Macro",
  4840. height: math.unit(127, "feet")
  4841. },
  4842. {
  4843. name: "Megamacro",
  4844. height: math.unit(3600, "feet")
  4845. },
  4846. ]
  4847. ))
  4848. characterMakers.push(() => makeCharacter(
  4849. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4850. {
  4851. side: {
  4852. height: math.unit(6, "feet"),
  4853. weight: math.unit(180, "lbs"),
  4854. name: "Side",
  4855. image: {
  4856. source: "./media/characters/blake/side.svg",
  4857. extra: 1212 / 1120,
  4858. bottom: 0.05
  4859. }
  4860. },
  4861. crouched: {
  4862. height: math.unit(6 * 0.57, "feet"),
  4863. weight: math.unit(180, "lbs"),
  4864. name: "Crouched",
  4865. image: {
  4866. source: "./media/characters/blake/crouched.svg",
  4867. extra: 840 / 587,
  4868. bottom: 0.04
  4869. }
  4870. },
  4871. bent: {
  4872. height: math.unit(6 * 0.75, "feet"),
  4873. weight: math.unit(180, "lbs"),
  4874. name: "Bent",
  4875. image: {
  4876. source: "./media/characters/blake/bent.svg",
  4877. extra: 592 / 544,
  4878. bottom: 0.035
  4879. }
  4880. },
  4881. },
  4882. [
  4883. {
  4884. name: "Normal",
  4885. height: math.unit(8 + 1 / 6, "feet"),
  4886. default: true
  4887. },
  4888. {
  4889. name: "Big Backside",
  4890. height: math.unit(37, "feet")
  4891. },
  4892. {
  4893. name: "Subway Shredder",
  4894. height: math.unit(72, "feet")
  4895. },
  4896. {
  4897. name: "City Carver",
  4898. height: math.unit(1675, "feet")
  4899. },
  4900. {
  4901. name: "Tectonic Tweaker",
  4902. height: math.unit(2300, "miles")
  4903. },
  4904. ]
  4905. ))
  4906. characterMakers.push(() => makeCharacter(
  4907. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4908. {
  4909. front: {
  4910. height: math.unit(6, "feet"),
  4911. weight: math.unit(180, "lbs"),
  4912. name: "Front",
  4913. image: {
  4914. source: "./media/characters/guisetto/front.svg",
  4915. extra: 856 / 817,
  4916. bottom: 0.06
  4917. }
  4918. },
  4919. airborne: {
  4920. height: math.unit(6, "feet"),
  4921. weight: math.unit(180, "lbs"),
  4922. name: "Airborne",
  4923. image: {
  4924. source: "./media/characters/guisetto/airborne.svg",
  4925. extra: 584 / 525
  4926. }
  4927. },
  4928. },
  4929. [
  4930. {
  4931. name: "Normal",
  4932. height: math.unit(10 + 11 / 12, "feet"),
  4933. default: true
  4934. },
  4935. {
  4936. name: "Large",
  4937. height: math.unit(35, "feet")
  4938. },
  4939. {
  4940. name: "Macro",
  4941. height: math.unit(475, "feet")
  4942. },
  4943. ]
  4944. ))
  4945. characterMakers.push(() => makeCharacter(
  4946. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4947. {
  4948. front: {
  4949. height: math.unit(6, "feet"),
  4950. weight: math.unit(180, "lbs"),
  4951. name: "Front",
  4952. image: {
  4953. source: "./media/characters/luxor/front.svg",
  4954. extra: 2940 / 2152
  4955. }
  4956. },
  4957. back: {
  4958. height: math.unit(6, "feet"),
  4959. weight: math.unit(180, "lbs"),
  4960. name: "Back",
  4961. image: {
  4962. source: "./media/characters/luxor/back.svg",
  4963. extra: 1083 / 960
  4964. }
  4965. },
  4966. },
  4967. [
  4968. {
  4969. name: "Normal",
  4970. height: math.unit(5 + 5 / 6, "feet"),
  4971. default: true
  4972. },
  4973. {
  4974. name: "Lamp",
  4975. height: math.unit(50, "feet")
  4976. },
  4977. {
  4978. name: "Lämp",
  4979. height: math.unit(300, "feet")
  4980. },
  4981. {
  4982. name: "The sun is a lamp",
  4983. height: math.unit(250000, "miles")
  4984. },
  4985. ]
  4986. ))
  4987. characterMakers.push(() => makeCharacter(
  4988. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4989. {
  4990. front: {
  4991. height: math.unit(6, "feet"),
  4992. weight: math.unit(50, "lbs"),
  4993. name: "Front",
  4994. image: {
  4995. source: "./media/characters/huoyan/front.svg"
  4996. }
  4997. },
  4998. side: {
  4999. height: math.unit(6, "feet"),
  5000. weight: math.unit(180, "lbs"),
  5001. name: "Side",
  5002. image: {
  5003. source: "./media/characters/huoyan/side.svg"
  5004. }
  5005. },
  5006. },
  5007. [
  5008. {
  5009. name: "Chef",
  5010. height: math.unit(9, "feet")
  5011. },
  5012. {
  5013. name: "Normal",
  5014. height: math.unit(65, "feet"),
  5015. default: true
  5016. },
  5017. {
  5018. name: "Macro",
  5019. height: math.unit(780, "feet")
  5020. },
  5021. {
  5022. name: "Flaming Mountain",
  5023. height: math.unit(4.8, "miles")
  5024. },
  5025. {
  5026. name: "Celestial",
  5027. height: math.unit(765000, "miles")
  5028. },
  5029. ]
  5030. ))
  5031. characterMakers.push(() => makeCharacter(
  5032. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5033. {
  5034. front: {
  5035. height: math.unit(5 + 3 / 4, "feet"),
  5036. weight: math.unit(120, "lbs"),
  5037. name: "Front",
  5038. image: {
  5039. source: "./media/characters/tails/front.svg"
  5040. }
  5041. }
  5042. },
  5043. [
  5044. {
  5045. name: "Normal",
  5046. height: math.unit(5 + 3 / 4, "feet"),
  5047. default: true
  5048. }
  5049. ]
  5050. ))
  5051. characterMakers.push(() => makeCharacter(
  5052. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5053. {
  5054. front: {
  5055. height: math.unit(4, "feet"),
  5056. weight: math.unit(50, "lbs"),
  5057. name: "Front",
  5058. image: {
  5059. source: "./media/characters/rainy/front.svg"
  5060. }
  5061. }
  5062. },
  5063. [
  5064. {
  5065. name: "Macro",
  5066. height: math.unit(800, "feet"),
  5067. default: true
  5068. }
  5069. ]
  5070. ))
  5071. characterMakers.push(() => makeCharacter(
  5072. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5073. {
  5074. front: {
  5075. height: math.unit(6, "feet"),
  5076. weight: math.unit(150, "lbs"),
  5077. name: "Front",
  5078. image: {
  5079. source: "./media/characters/rainier/front.svg"
  5080. }
  5081. }
  5082. },
  5083. [
  5084. {
  5085. name: "Micro",
  5086. height: math.unit(2, "mm"),
  5087. default: true
  5088. }
  5089. ]
  5090. ))
  5091. characterMakers.push(() => makeCharacter(
  5092. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5093. {
  5094. front: {
  5095. height: math.unit(6, "feet"),
  5096. weight: math.unit(180, "lbs"),
  5097. name: "Front",
  5098. image: {
  5099. source: "./media/characters/andy/front.svg"
  5100. }
  5101. }
  5102. },
  5103. [
  5104. {
  5105. name: "Normal",
  5106. height: math.unit(8, "feet"),
  5107. default: true
  5108. },
  5109. {
  5110. name: "Macro",
  5111. height: math.unit(1000, "feet")
  5112. },
  5113. {
  5114. name: "Megamacro",
  5115. height: math.unit(5, "miles")
  5116. },
  5117. {
  5118. name: "Gigamacro",
  5119. height: math.unit(5000, "miles")
  5120. },
  5121. ]
  5122. ))
  5123. characterMakers.push(() => makeCharacter(
  5124. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5125. {
  5126. front: {
  5127. height: math.unit(6, "feet"),
  5128. weight: math.unit(210, "lbs"),
  5129. name: "Front",
  5130. image: {
  5131. source: "./media/characters/cimmaron/front-sfw.svg",
  5132. extra: 701 / 676,
  5133. bottom: 0.046
  5134. }
  5135. },
  5136. back: {
  5137. height: math.unit(6, "feet"),
  5138. weight: math.unit(210, "lbs"),
  5139. name: "Back",
  5140. image: {
  5141. source: "./media/characters/cimmaron/back-sfw.svg",
  5142. extra: 701 / 676,
  5143. bottom: 0.046
  5144. }
  5145. },
  5146. frontNsfw: {
  5147. height: math.unit(6, "feet"),
  5148. weight: math.unit(210, "lbs"),
  5149. name: "Front (NSFW)",
  5150. image: {
  5151. source: "./media/characters/cimmaron/front-nsfw.svg",
  5152. extra: 701 / 676,
  5153. bottom: 0.046
  5154. }
  5155. },
  5156. backNsfw: {
  5157. height: math.unit(6, "feet"),
  5158. weight: math.unit(210, "lbs"),
  5159. name: "Back (NSFW)",
  5160. image: {
  5161. source: "./media/characters/cimmaron/back-nsfw.svg",
  5162. extra: 701 / 676,
  5163. bottom: 0.046
  5164. }
  5165. },
  5166. dick: {
  5167. height: math.unit(1.714, "feet"),
  5168. name: "Dick",
  5169. image: {
  5170. source: "./media/characters/cimmaron/dick.svg"
  5171. }
  5172. },
  5173. },
  5174. [
  5175. {
  5176. name: "Normal",
  5177. height: math.unit(6, "feet"),
  5178. default: true
  5179. },
  5180. {
  5181. name: "Macro Mayor",
  5182. height: math.unit(350, "meters")
  5183. },
  5184. ]
  5185. ))
  5186. characterMakers.push(() => makeCharacter(
  5187. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5188. {
  5189. front: {
  5190. height: math.unit(6, "feet"),
  5191. weight: math.unit(200, "lbs"),
  5192. name: "Front",
  5193. image: {
  5194. source: "./media/characters/akari/front.svg",
  5195. extra: 962 / 901,
  5196. bottom: 0.04
  5197. }
  5198. }
  5199. },
  5200. [
  5201. {
  5202. name: "Micro",
  5203. height: math.unit(5, "inches"),
  5204. default: true
  5205. },
  5206. {
  5207. name: "Normal",
  5208. height: math.unit(7, "feet")
  5209. },
  5210. ]
  5211. ))
  5212. characterMakers.push(() => makeCharacter(
  5213. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5214. {
  5215. front: {
  5216. height: math.unit(6, "feet"),
  5217. weight: math.unit(140, "lbs"),
  5218. name: "Front",
  5219. image: {
  5220. source: "./media/characters/cynosura/front.svg",
  5221. extra: 896 / 847
  5222. }
  5223. },
  5224. back: {
  5225. height: math.unit(6, "feet"),
  5226. weight: math.unit(140, "lbs"),
  5227. name: "Back",
  5228. image: {
  5229. source: "./media/characters/cynosura/back.svg",
  5230. extra: 1365 / 1250
  5231. }
  5232. },
  5233. },
  5234. [
  5235. {
  5236. name: "Micro",
  5237. height: math.unit(4, "inches")
  5238. },
  5239. {
  5240. name: "Normal",
  5241. height: math.unit(5.75, "feet"),
  5242. default: true
  5243. },
  5244. {
  5245. name: "Tall",
  5246. height: math.unit(10, "feet")
  5247. },
  5248. {
  5249. name: "Big",
  5250. height: math.unit(20, "feet")
  5251. },
  5252. {
  5253. name: "Macro",
  5254. height: math.unit(50, "feet")
  5255. },
  5256. ]
  5257. ))
  5258. characterMakers.push(() => makeCharacter(
  5259. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5260. {
  5261. front: {
  5262. height: math.unit(6, "feet"),
  5263. weight: math.unit(170, "lbs"),
  5264. name: "Front",
  5265. image: {
  5266. source: "./media/characters/gin/front.svg",
  5267. extra: 1.053,
  5268. bottom: 0.025
  5269. }
  5270. },
  5271. foot: {
  5272. height: math.unit(6 / 4.25, "feet"),
  5273. name: "Foot",
  5274. image: {
  5275. source: "./media/characters/gin/foot.svg"
  5276. }
  5277. },
  5278. sole: {
  5279. height: math.unit(6 / 4.40, "feet"),
  5280. name: "Sole",
  5281. image: {
  5282. source: "./media/characters/gin/sole.svg"
  5283. }
  5284. },
  5285. },
  5286. [
  5287. {
  5288. name: "Normal",
  5289. height: math.unit(13 + 2 / 12, "feet")
  5290. },
  5291. {
  5292. name: "Macro",
  5293. height: math.unit(1500, "feet")
  5294. },
  5295. {
  5296. name: "Megamacro",
  5297. height: math.unit(200, "miles"),
  5298. default: true
  5299. },
  5300. {
  5301. name: "Gigamacro",
  5302. height: math.unit(500, "megameters")
  5303. },
  5304. {
  5305. name: "Teramacro",
  5306. height: math.unit(15, "lightyears")
  5307. }
  5308. ]
  5309. ))
  5310. characterMakers.push(() => makeCharacter(
  5311. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5312. {
  5313. front: {
  5314. height: math.unit(6 + 1 / 6, "feet"),
  5315. weight: math.unit(178, "lbs"),
  5316. name: "Front",
  5317. image: {
  5318. source: "./media/characters/guy/front.svg"
  5319. }
  5320. }
  5321. },
  5322. [
  5323. {
  5324. name: "Normal",
  5325. height: math.unit(6 + 1 / 6, "feet"),
  5326. default: true
  5327. },
  5328. {
  5329. name: "Large",
  5330. height: math.unit(25 + 7 / 12, "feet")
  5331. },
  5332. {
  5333. name: "Macro",
  5334. height: math.unit(60 + 9 / 12, "feet")
  5335. },
  5336. {
  5337. name: "Macro+",
  5338. height: math.unit(246, "feet")
  5339. },
  5340. {
  5341. name: "Macro++",
  5342. height: math.unit(878, "feet")
  5343. }
  5344. ]
  5345. ))
  5346. characterMakers.push(() => makeCharacter(
  5347. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5348. {
  5349. front: {
  5350. height: math.unit(9, "feet"),
  5351. weight: math.unit(800, "lbs"),
  5352. name: "Front",
  5353. image: {
  5354. source: "./media/characters/tiberius/front.svg",
  5355. extra: 2295 / 2071
  5356. }
  5357. },
  5358. back: {
  5359. height: math.unit(9, "feet"),
  5360. weight: math.unit(800, "lbs"),
  5361. name: "Back",
  5362. image: {
  5363. source: "./media/characters/tiberius/back.svg",
  5364. extra: 2373 / 2160
  5365. }
  5366. },
  5367. },
  5368. [
  5369. {
  5370. name: "Normal",
  5371. height: math.unit(9, "feet"),
  5372. default: true
  5373. }
  5374. ]
  5375. ))
  5376. characterMakers.push(() => makeCharacter(
  5377. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5378. {
  5379. front: {
  5380. height: math.unit(6, "feet"),
  5381. weight: math.unit(600, "lbs"),
  5382. name: "Front",
  5383. image: {
  5384. source: "./media/characters/surgo/front.svg",
  5385. extra: 3591 / 2227
  5386. }
  5387. },
  5388. back: {
  5389. height: math.unit(6, "feet"),
  5390. weight: math.unit(600, "lbs"),
  5391. name: "Back",
  5392. image: {
  5393. source: "./media/characters/surgo/back.svg",
  5394. extra: 3557 / 2228
  5395. }
  5396. },
  5397. laying: {
  5398. height: math.unit(6 * 0.85, "feet"),
  5399. weight: math.unit(600, "lbs"),
  5400. name: "Laying",
  5401. image: {
  5402. source: "./media/characters/surgo/laying.svg"
  5403. }
  5404. },
  5405. },
  5406. [
  5407. {
  5408. name: "Normal",
  5409. height: math.unit(6, "feet"),
  5410. default: true
  5411. }
  5412. ]
  5413. ))
  5414. characterMakers.push(() => makeCharacter(
  5415. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5416. {
  5417. side: {
  5418. height: math.unit(6, "feet"),
  5419. weight: math.unit(150, "lbs"),
  5420. name: "Side",
  5421. image: {
  5422. source: "./media/characters/cibus/side.svg",
  5423. extra: 800 / 400
  5424. }
  5425. },
  5426. },
  5427. [
  5428. {
  5429. name: "Normal",
  5430. height: math.unit(6, "feet"),
  5431. default: true
  5432. }
  5433. ]
  5434. ))
  5435. characterMakers.push(() => makeCharacter(
  5436. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5437. {
  5438. front: {
  5439. height: math.unit(6, "feet"),
  5440. weight: math.unit(240, "lbs"),
  5441. name: "Front",
  5442. image: {
  5443. source: "./media/characters/nibbles/front.svg"
  5444. }
  5445. },
  5446. side: {
  5447. height: math.unit(6, "feet"),
  5448. weight: math.unit(240, "lbs"),
  5449. name: "Side",
  5450. image: {
  5451. source: "./media/characters/nibbles/side.svg"
  5452. }
  5453. },
  5454. },
  5455. [
  5456. {
  5457. name: "Normal",
  5458. height: math.unit(9, "feet"),
  5459. default: true
  5460. }
  5461. ]
  5462. ))
  5463. characterMakers.push(() => makeCharacter(
  5464. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5465. {
  5466. side: {
  5467. height: math.unit(5 + 1 / 6, "feet"),
  5468. weight: math.unit(130, "lbs"),
  5469. name: "Side",
  5470. image: {
  5471. source: "./media/characters/rikky/side.svg",
  5472. extra: 851 / 801
  5473. }
  5474. },
  5475. },
  5476. [
  5477. {
  5478. name: "Normal",
  5479. height: math.unit(5 + 1 / 6, "feet")
  5480. },
  5481. {
  5482. name: "Macro",
  5483. height: math.unit(152, "feet"),
  5484. default: true
  5485. },
  5486. {
  5487. name: "Megamacro",
  5488. height: math.unit(7, "miles")
  5489. }
  5490. ]
  5491. ))
  5492. characterMakers.push(() => makeCharacter(
  5493. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5494. {
  5495. side: {
  5496. height: math.unit(370, "cm"),
  5497. weight: math.unit(350, "lbs"),
  5498. name: "Side",
  5499. image: {
  5500. source: "./media/characters/malfressa/side.svg"
  5501. }
  5502. },
  5503. walking: {
  5504. height: math.unit(370, "cm"),
  5505. weight: math.unit(350, "lbs"),
  5506. name: "Walking",
  5507. image: {
  5508. source: "./media/characters/malfressa/walking.svg"
  5509. }
  5510. },
  5511. feral: {
  5512. height: math.unit(2500, "cm"),
  5513. weight: math.unit(100000, "lbs"),
  5514. name: "Feral",
  5515. image: {
  5516. source: "./media/characters/malfressa/feral.svg",
  5517. extra: 2108 / 837,
  5518. bottom: 0.02
  5519. }
  5520. },
  5521. },
  5522. [
  5523. {
  5524. name: "Normal",
  5525. height: math.unit(370, "cm")
  5526. },
  5527. {
  5528. name: "Macro",
  5529. height: math.unit(300, "meters"),
  5530. default: true
  5531. }
  5532. ]
  5533. ))
  5534. characterMakers.push(() => makeCharacter(
  5535. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5536. {
  5537. front: {
  5538. height: math.unit(6, "feet"),
  5539. weight: math.unit(60, "kg"),
  5540. name: "Front",
  5541. image: {
  5542. source: "./media/characters/jaro/front.svg"
  5543. }
  5544. },
  5545. back: {
  5546. height: math.unit(6, "feet"),
  5547. weight: math.unit(60, "kg"),
  5548. name: "Back",
  5549. image: {
  5550. source: "./media/characters/jaro/back.svg"
  5551. }
  5552. },
  5553. },
  5554. [
  5555. {
  5556. name: "Micro",
  5557. height: math.unit(7, "inches")
  5558. },
  5559. {
  5560. name: "Normal",
  5561. height: math.unit(5.5, "feet"),
  5562. default: true
  5563. },
  5564. {
  5565. name: "Minimacro",
  5566. height: math.unit(20, "feet")
  5567. },
  5568. {
  5569. name: "Macro",
  5570. height: math.unit(200, "meters")
  5571. }
  5572. ]
  5573. ))
  5574. characterMakers.push(() => makeCharacter(
  5575. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5576. {
  5577. front: {
  5578. height: math.unit(6, "feet"),
  5579. weight: math.unit(195, "lb"),
  5580. name: "Front",
  5581. image: {
  5582. source: "./media/characters/rogue/front.svg"
  5583. }
  5584. },
  5585. },
  5586. [
  5587. {
  5588. name: "Macro",
  5589. height: math.unit(90, "feet"),
  5590. default: true
  5591. },
  5592. ]
  5593. ))
  5594. characterMakers.push(() => makeCharacter(
  5595. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5596. {
  5597. front: {
  5598. height: math.unit(5 + 8 / 12, "feet"),
  5599. weight: math.unit(140, "lb"),
  5600. name: "Front",
  5601. image: {
  5602. source: "./media/characters/piper/front.svg",
  5603. extra: 3928 / 3681
  5604. }
  5605. },
  5606. },
  5607. [
  5608. {
  5609. name: "Micro",
  5610. height: math.unit(2, "inches")
  5611. },
  5612. {
  5613. name: "Normal",
  5614. height: math.unit(5 + 8 / 12, "feet")
  5615. },
  5616. {
  5617. name: "Macro",
  5618. height: math.unit(250, "feet"),
  5619. default: true
  5620. },
  5621. {
  5622. name: "Megamacro",
  5623. height: math.unit(7, "miles")
  5624. },
  5625. ]
  5626. ))
  5627. characterMakers.push(() => makeCharacter(
  5628. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5629. {
  5630. front: {
  5631. height: math.unit(6, "feet"),
  5632. weight: math.unit(220, "lb"),
  5633. name: "Front",
  5634. image: {
  5635. source: "./media/characters/gemini/front.svg"
  5636. }
  5637. },
  5638. back: {
  5639. height: math.unit(6, "feet"),
  5640. weight: math.unit(220, "lb"),
  5641. name: "Back",
  5642. image: {
  5643. source: "./media/characters/gemini/back.svg"
  5644. }
  5645. },
  5646. kneeling: {
  5647. height: math.unit(6 / 1.5, "feet"),
  5648. weight: math.unit(220, "lb"),
  5649. name: "Kneeling",
  5650. image: {
  5651. source: "./media/characters/gemini/kneeling.svg",
  5652. bottom: 0.02
  5653. }
  5654. },
  5655. },
  5656. [
  5657. {
  5658. name: "Macro",
  5659. height: math.unit(300, "meters"),
  5660. default: true
  5661. },
  5662. {
  5663. name: "Megamacro",
  5664. height: math.unit(6900, "meters")
  5665. },
  5666. ]
  5667. ))
  5668. characterMakers.push(() => makeCharacter(
  5669. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5670. {
  5671. anthro: {
  5672. height: math.unit(2.35, "meters"),
  5673. weight: math.unit(73, "kg"),
  5674. name: "Anthro",
  5675. image: {
  5676. source: "./media/characters/alicia/anthro.svg",
  5677. extra: 2571 / 2385,
  5678. bottom: 75 / 2648
  5679. }
  5680. },
  5681. paw: {
  5682. height: math.unit(1.32, "feet"),
  5683. name: "Paw",
  5684. image: {
  5685. source: "./media/characters/alicia/paw.svg"
  5686. }
  5687. },
  5688. feral: {
  5689. height: math.unit(1.69, "meters"),
  5690. weight: math.unit(73, "kg"),
  5691. name: "Feral",
  5692. image: {
  5693. source: "./media/characters/alicia/feral.svg",
  5694. extra: 2123 / 1715,
  5695. bottom: 222 / 2349
  5696. }
  5697. },
  5698. },
  5699. [
  5700. {
  5701. name: "Normal",
  5702. height: math.unit(2.35, "meters")
  5703. },
  5704. {
  5705. name: "Macro",
  5706. height: math.unit(60, "meters"),
  5707. default: true
  5708. },
  5709. {
  5710. name: "Megamacro",
  5711. height: math.unit(10000, "kilometers")
  5712. },
  5713. ]
  5714. ))
  5715. characterMakers.push(() => makeCharacter(
  5716. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5717. {
  5718. front: {
  5719. height: math.unit(7, "feet"),
  5720. weight: math.unit(250, "lbs"),
  5721. name: "Front",
  5722. image: {
  5723. source: "./media/characters/archy/front.svg"
  5724. }
  5725. }
  5726. },
  5727. [
  5728. {
  5729. name: "Micro",
  5730. height: math.unit(1, "inch")
  5731. },
  5732. {
  5733. name: "Shorty",
  5734. height: math.unit(5, "feet")
  5735. },
  5736. {
  5737. name: "Normal",
  5738. height: math.unit(7, "feet")
  5739. },
  5740. {
  5741. name: "Macro",
  5742. height: math.unit(600, "meters"),
  5743. default: true
  5744. },
  5745. {
  5746. name: "Megamacro",
  5747. height: math.unit(1, "mile")
  5748. },
  5749. ]
  5750. ))
  5751. characterMakers.push(() => makeCharacter(
  5752. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5753. {
  5754. front: {
  5755. height: math.unit(1.65, "meters"),
  5756. weight: math.unit(74, "kg"),
  5757. name: "Front",
  5758. image: {
  5759. source: "./media/characters/berri/front.svg",
  5760. extra: 857 / 837,
  5761. bottom: 18 / 877
  5762. }
  5763. },
  5764. bum: {
  5765. height: math.unit(1.46, "feet"),
  5766. name: "Bum",
  5767. image: {
  5768. source: "./media/characters/berri/bum.svg"
  5769. }
  5770. },
  5771. mouth: {
  5772. height: math.unit(0.44, "feet"),
  5773. name: "Mouth",
  5774. image: {
  5775. source: "./media/characters/berri/mouth.svg"
  5776. }
  5777. },
  5778. paw: {
  5779. height: math.unit(0.826, "feet"),
  5780. name: "Paw",
  5781. image: {
  5782. source: "./media/characters/berri/paw.svg"
  5783. }
  5784. },
  5785. },
  5786. [
  5787. {
  5788. name: "Normal",
  5789. height: math.unit(1.65, "meters")
  5790. },
  5791. {
  5792. name: "Macro",
  5793. height: math.unit(60, "m"),
  5794. default: true
  5795. },
  5796. {
  5797. name: "Megamacro",
  5798. height: math.unit(9.213, "km")
  5799. },
  5800. {
  5801. name: "Planet Eater",
  5802. height: math.unit(489, "megameters")
  5803. },
  5804. {
  5805. name: "Teramacro",
  5806. height: math.unit(2471635000000, "meters")
  5807. },
  5808. {
  5809. name: "Examacro",
  5810. height: math.unit(8.0624e+26, "meters")
  5811. }
  5812. ]
  5813. ))
  5814. characterMakers.push(() => makeCharacter(
  5815. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5816. {
  5817. front: {
  5818. height: math.unit(1.72, "meters"),
  5819. weight: math.unit(68, "kg"),
  5820. name: "Front",
  5821. image: {
  5822. source: "./media/characters/lexi/front.svg"
  5823. }
  5824. }
  5825. },
  5826. [
  5827. {
  5828. name: "Very Smol",
  5829. height: math.unit(10, "mm")
  5830. },
  5831. {
  5832. name: "Micro",
  5833. height: math.unit(6.8, "cm"),
  5834. default: true
  5835. },
  5836. {
  5837. name: "Normal",
  5838. height: math.unit(1.72, "m")
  5839. }
  5840. ]
  5841. ))
  5842. characterMakers.push(() => makeCharacter(
  5843. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5844. {
  5845. front: {
  5846. height: math.unit(1.69, "meters"),
  5847. weight: math.unit(68, "kg"),
  5848. name: "Front",
  5849. image: {
  5850. source: "./media/characters/martin/front.svg",
  5851. extra: 596 / 581
  5852. }
  5853. }
  5854. },
  5855. [
  5856. {
  5857. name: "Micro",
  5858. height: math.unit(6.85, "cm"),
  5859. default: true
  5860. },
  5861. {
  5862. name: "Normal",
  5863. height: math.unit(1.69, "m")
  5864. }
  5865. ]
  5866. ))
  5867. characterMakers.push(() => makeCharacter(
  5868. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5869. {
  5870. front: {
  5871. height: math.unit(1.69, "meters"),
  5872. weight: math.unit(68, "kg"),
  5873. name: "Front",
  5874. image: {
  5875. source: "./media/characters/juno/front.svg"
  5876. }
  5877. }
  5878. },
  5879. [
  5880. {
  5881. name: "Micro",
  5882. height: math.unit(7, "cm")
  5883. },
  5884. {
  5885. name: "Normal",
  5886. height: math.unit(1.89, "m")
  5887. },
  5888. {
  5889. name: "Macro",
  5890. height: math.unit(353, "meters"),
  5891. default: true
  5892. }
  5893. ]
  5894. ))
  5895. characterMakers.push(() => makeCharacter(
  5896. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5897. {
  5898. front: {
  5899. height: math.unit(1.93, "meters"),
  5900. weight: math.unit(83, "kg"),
  5901. name: "Front",
  5902. image: {
  5903. source: "./media/characters/samantha/front.svg"
  5904. }
  5905. },
  5906. frontClothed: {
  5907. height: math.unit(1.93, "meters"),
  5908. weight: math.unit(83, "kg"),
  5909. name: "Front (Clothed)",
  5910. image: {
  5911. source: "./media/characters/samantha/front-clothed.svg"
  5912. }
  5913. },
  5914. back: {
  5915. height: math.unit(1.93, "meters"),
  5916. weight: math.unit(83, "kg"),
  5917. name: "Back",
  5918. image: {
  5919. source: "./media/characters/samantha/back.svg"
  5920. }
  5921. },
  5922. },
  5923. [
  5924. {
  5925. name: "Normal",
  5926. height: math.unit(1.93, "m")
  5927. },
  5928. {
  5929. name: "Macro",
  5930. height: math.unit(74, "meters"),
  5931. default: true
  5932. },
  5933. {
  5934. name: "Macro+",
  5935. height: math.unit(223, "meters"),
  5936. },
  5937. {
  5938. name: "Megamacro",
  5939. height: math.unit(8381, "meters"),
  5940. },
  5941. {
  5942. name: "Megamacro+",
  5943. height: math.unit(12000, "kilometers")
  5944. },
  5945. ]
  5946. ))
  5947. characterMakers.push(() => makeCharacter(
  5948. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5949. {
  5950. front: {
  5951. height: math.unit(1.92, "meters"),
  5952. weight: math.unit(80, "kg"),
  5953. name: "Front",
  5954. image: {
  5955. source: "./media/characters/dr-clay/front.svg"
  5956. }
  5957. },
  5958. frontClothed: {
  5959. height: math.unit(1.92, "meters"),
  5960. weight: math.unit(80, "kg"),
  5961. name: "Front (Clothed)",
  5962. image: {
  5963. source: "./media/characters/dr-clay/front-clothed.svg"
  5964. }
  5965. }
  5966. },
  5967. [
  5968. {
  5969. name: "Normal",
  5970. height: math.unit(1.92, "m")
  5971. },
  5972. {
  5973. name: "Macro",
  5974. height: math.unit(214, "meters"),
  5975. default: true
  5976. },
  5977. {
  5978. name: "Macro+",
  5979. height: math.unit(12.237, "meters"),
  5980. },
  5981. {
  5982. name: "Megamacro",
  5983. height: math.unit(557, "megameters"),
  5984. },
  5985. {
  5986. name: "Unimaginable",
  5987. height: math.unit(120e9, "lightyears")
  5988. },
  5989. ]
  5990. ))
  5991. characterMakers.push(() => makeCharacter(
  5992. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5993. {
  5994. front: {
  5995. height: math.unit(2, "meters"),
  5996. weight: math.unit(80, "kg"),
  5997. name: "Front",
  5998. image: {
  5999. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6000. }
  6001. }
  6002. },
  6003. [
  6004. {
  6005. name: "Teramacro",
  6006. height: math.unit(500000, "lightyears"),
  6007. default: true
  6008. },
  6009. ]
  6010. ))
  6011. characterMakers.push(() => makeCharacter(
  6012. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6013. {
  6014. front: {
  6015. height: math.unit(2, "meters"),
  6016. weight: math.unit(150, "kg"),
  6017. name: "Front",
  6018. image: {
  6019. source: "./media/characters/vemus/front.svg",
  6020. extra: 2384 / 2084,
  6021. bottom: 0.0123
  6022. }
  6023. }
  6024. },
  6025. [
  6026. {
  6027. name: "Normal",
  6028. height: math.unit(3.75, "meters"),
  6029. default: true
  6030. },
  6031. {
  6032. name: "Big",
  6033. height: math.unit(8, "meters")
  6034. },
  6035. {
  6036. name: "Macro",
  6037. height: math.unit(100, "meters")
  6038. },
  6039. {
  6040. name: "Macro+",
  6041. height: math.unit(1500, "meters")
  6042. },
  6043. {
  6044. name: "Stellar",
  6045. height: math.unit(14e8, "meters")
  6046. },
  6047. ]
  6048. ))
  6049. characterMakers.push(() => makeCharacter(
  6050. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6051. {
  6052. front: {
  6053. height: math.unit(2, "meters"),
  6054. weight: math.unit(70, "kg"),
  6055. name: "Front",
  6056. image: {
  6057. source: "./media/characters/beherit/front.svg",
  6058. extra: 1408 / 1242
  6059. }
  6060. }
  6061. },
  6062. [
  6063. {
  6064. name: "Normal",
  6065. height: math.unit(6, "feet")
  6066. },
  6067. {
  6068. name: "Lorg",
  6069. height: math.unit(25, "feet"),
  6070. default: true
  6071. },
  6072. {
  6073. name: "Lorger",
  6074. height: math.unit(75, "feet")
  6075. },
  6076. {
  6077. name: "Macro",
  6078. height: math.unit(200, "meters")
  6079. },
  6080. ]
  6081. ))
  6082. characterMakers.push(() => makeCharacter(
  6083. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6084. {
  6085. front: {
  6086. height: math.unit(2, "meters"),
  6087. weight: math.unit(150, "kg"),
  6088. name: "Front",
  6089. image: {
  6090. source: "./media/characters/everett/front.svg",
  6091. extra: 2038 / 1737,
  6092. bottom: 0.03
  6093. }
  6094. },
  6095. paw: {
  6096. height: math.unit(2 / 3.6, "meters"),
  6097. name: "Paw",
  6098. image: {
  6099. source: "./media/characters/everett/paw.svg"
  6100. }
  6101. },
  6102. },
  6103. [
  6104. {
  6105. name: "Normal",
  6106. height: math.unit(15, "feet"),
  6107. default: true
  6108. },
  6109. {
  6110. name: "Lorg",
  6111. height: math.unit(70, "feet"),
  6112. default: true
  6113. },
  6114. {
  6115. name: "Lorger",
  6116. height: math.unit(250, "feet")
  6117. },
  6118. {
  6119. name: "Macro",
  6120. height: math.unit(500, "meters")
  6121. },
  6122. ]
  6123. ))
  6124. characterMakers.push(() => makeCharacter(
  6125. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6126. {
  6127. front: {
  6128. height: math.unit(2, "meters"),
  6129. weight: math.unit(86, "kg"),
  6130. name: "Front",
  6131. image: {
  6132. source: "./media/characters/rose-lion/front.svg"
  6133. }
  6134. },
  6135. bent: {
  6136. height: math.unit(2 / 1.4288, "meters"),
  6137. weight: math.unit(86, "kg"),
  6138. name: "Bent",
  6139. image: {
  6140. source: "./media/characters/rose-lion/bent.svg"
  6141. }
  6142. }
  6143. },
  6144. [
  6145. {
  6146. name: "Mini-Micro",
  6147. height: math.unit(1, "cm")
  6148. },
  6149. {
  6150. name: "Micro",
  6151. height: math.unit(3.5, "inches"),
  6152. default: true
  6153. },
  6154. {
  6155. name: "Normal",
  6156. height: math.unit(6 + 1 / 6, "feet")
  6157. },
  6158. {
  6159. name: "Mini-Macro",
  6160. height: math.unit(9 + 10 / 12, "feet")
  6161. },
  6162. ]
  6163. ))
  6164. characterMakers.push(() => makeCharacter(
  6165. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6166. {
  6167. front: {
  6168. height: math.unit(2, "meters"),
  6169. weight: math.unit(350, "lbs"),
  6170. name: "Front",
  6171. image: {
  6172. source: "./media/characters/regal/front.svg"
  6173. }
  6174. },
  6175. back: {
  6176. height: math.unit(2, "meters"),
  6177. weight: math.unit(350, "lbs"),
  6178. name: "Back",
  6179. image: {
  6180. source: "./media/characters/regal/back.svg"
  6181. }
  6182. },
  6183. },
  6184. [
  6185. {
  6186. name: "Macro",
  6187. height: math.unit(350, "feet"),
  6188. default: true
  6189. }
  6190. ]
  6191. ))
  6192. characterMakers.push(() => makeCharacter(
  6193. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6194. {
  6195. front: {
  6196. height: math.unit(4 + 11 / 12, "feet"),
  6197. weight: math.unit(100, "lbs"),
  6198. name: "Front",
  6199. image: {
  6200. source: "./media/characters/opal/front.svg"
  6201. }
  6202. },
  6203. frontAlt: {
  6204. height: math.unit(4 + 11 / 12, "feet"),
  6205. weight: math.unit(100, "lbs"),
  6206. name: "Front (Alt)",
  6207. image: {
  6208. source: "./media/characters/opal/front-alt.svg"
  6209. }
  6210. },
  6211. },
  6212. [
  6213. {
  6214. name: "Small",
  6215. height: math.unit(4 + 11 / 12, "feet")
  6216. },
  6217. {
  6218. name: "Normal",
  6219. height: math.unit(20, "feet"),
  6220. default: true
  6221. },
  6222. {
  6223. name: "Macro",
  6224. height: math.unit(120, "feet")
  6225. },
  6226. {
  6227. name: "Megamacro",
  6228. height: math.unit(80, "miles")
  6229. },
  6230. {
  6231. name: "True Size",
  6232. height: math.unit(100000, "lightyears")
  6233. },
  6234. ]
  6235. ))
  6236. characterMakers.push(() => makeCharacter(
  6237. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6238. {
  6239. front: {
  6240. height: math.unit(6, "feet"),
  6241. weight: math.unit(200, "lbs"),
  6242. name: "Front",
  6243. image: {
  6244. source: "./media/characters/vector-wuff/front.svg"
  6245. }
  6246. }
  6247. },
  6248. [
  6249. {
  6250. name: "Normal",
  6251. height: math.unit(2.8, "meters")
  6252. },
  6253. {
  6254. name: "Macro",
  6255. height: math.unit(450, "meters"),
  6256. default: true
  6257. },
  6258. {
  6259. name: "Megamacro",
  6260. height: math.unit(15, "kilometers")
  6261. }
  6262. ]
  6263. ))
  6264. characterMakers.push(() => makeCharacter(
  6265. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6266. {
  6267. front: {
  6268. height: math.unit(6, "feet"),
  6269. weight: math.unit(256, "lbs"),
  6270. name: "Front",
  6271. image: {
  6272. source: "./media/characters/dannik/front.svg"
  6273. }
  6274. }
  6275. },
  6276. [
  6277. {
  6278. name: "Macro",
  6279. height: math.unit(69.57, "meters"),
  6280. default: true
  6281. },
  6282. ]
  6283. ))
  6284. characterMakers.push(() => makeCharacter(
  6285. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6286. {
  6287. front: {
  6288. height: math.unit(6, "feet"),
  6289. weight: math.unit(120, "lbs"),
  6290. name: "Front",
  6291. image: {
  6292. source: "./media/characters/azura-saharah/front.svg"
  6293. }
  6294. },
  6295. back: {
  6296. height: math.unit(6, "feet"),
  6297. weight: math.unit(120, "lbs"),
  6298. name: "Back",
  6299. image: {
  6300. source: "./media/characters/azura-saharah/back.svg"
  6301. }
  6302. },
  6303. },
  6304. [
  6305. {
  6306. name: "Macro",
  6307. height: math.unit(100, "feet"),
  6308. default: true
  6309. },
  6310. ]
  6311. ))
  6312. characterMakers.push(() => makeCharacter(
  6313. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6314. {
  6315. side: {
  6316. height: math.unit(5 + 4 / 12, "feet"),
  6317. weight: math.unit(163, "lbs"),
  6318. name: "Side",
  6319. image: {
  6320. source: "./media/characters/kennedy/side.svg"
  6321. }
  6322. }
  6323. },
  6324. [
  6325. {
  6326. name: "Standard Doggo",
  6327. height: math.unit(5 + 4 / 12, "feet")
  6328. },
  6329. {
  6330. name: "Big Doggo",
  6331. height: math.unit(25 + 3 / 12, "feet"),
  6332. default: true
  6333. },
  6334. ]
  6335. ))
  6336. characterMakers.push(() => makeCharacter(
  6337. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6338. {
  6339. front: {
  6340. height: math.unit(6, "feet"),
  6341. weight: math.unit(90, "lbs"),
  6342. name: "Front",
  6343. image: {
  6344. source: "./media/characters/odi-lunar/front.svg"
  6345. }
  6346. }
  6347. },
  6348. [
  6349. {
  6350. name: "Micro",
  6351. height: math.unit(3, "inches"),
  6352. default: true
  6353. },
  6354. {
  6355. name: "Normal",
  6356. height: math.unit(5.5, "feet")
  6357. }
  6358. ]
  6359. ))
  6360. characterMakers.push(() => makeCharacter(
  6361. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6362. {
  6363. back: {
  6364. height: math.unit(6, "feet"),
  6365. weight: math.unit(220, "lbs"),
  6366. name: "Back",
  6367. image: {
  6368. source: "./media/characters/mandake/back.svg"
  6369. }
  6370. }
  6371. },
  6372. [
  6373. {
  6374. name: "Normal",
  6375. height: math.unit(7, "feet"),
  6376. default: true
  6377. },
  6378. {
  6379. name: "Macro",
  6380. height: math.unit(78, "feet")
  6381. },
  6382. {
  6383. name: "Macro+",
  6384. height: math.unit(300, "meters")
  6385. },
  6386. {
  6387. name: "Macro++",
  6388. height: math.unit(2400, "feet")
  6389. },
  6390. {
  6391. name: "Megamacro",
  6392. height: math.unit(5167, "meters")
  6393. },
  6394. {
  6395. name: "Gigamacro",
  6396. height: math.unit(41769, "miles")
  6397. },
  6398. ]
  6399. ))
  6400. characterMakers.push(() => makeCharacter(
  6401. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6402. {
  6403. front: {
  6404. height: math.unit(6, "feet"),
  6405. weight: math.unit(120, "lbs"),
  6406. name: "Front",
  6407. image: {
  6408. source: "./media/characters/yozey/front.svg"
  6409. }
  6410. },
  6411. frontAlt: {
  6412. height: math.unit(6, "feet"),
  6413. weight: math.unit(120, "lbs"),
  6414. name: "Front (Alt)",
  6415. image: {
  6416. source: "./media/characters/yozey/front-alt.svg"
  6417. }
  6418. },
  6419. side: {
  6420. height: math.unit(6, "feet"),
  6421. weight: math.unit(120, "lbs"),
  6422. name: "Side",
  6423. image: {
  6424. source: "./media/characters/yozey/side.svg"
  6425. }
  6426. },
  6427. },
  6428. [
  6429. {
  6430. name: "Micro",
  6431. height: math.unit(3, "inches"),
  6432. default: true
  6433. },
  6434. {
  6435. name: "Normal",
  6436. height: math.unit(6, "feet")
  6437. }
  6438. ]
  6439. ))
  6440. characterMakers.push(() => makeCharacter(
  6441. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6442. {
  6443. front: {
  6444. height: math.unit(6, "feet"),
  6445. weight: math.unit(103, "lbs"),
  6446. name: "Front",
  6447. image: {
  6448. source: "./media/characters/valeska-voss/front.svg"
  6449. }
  6450. }
  6451. },
  6452. [
  6453. {
  6454. name: "Mini-Sized Sub",
  6455. height: math.unit(3.1, "inches")
  6456. },
  6457. {
  6458. name: "Mid-Sized Sub",
  6459. height: math.unit(6.2, "inches")
  6460. },
  6461. {
  6462. name: "Full-Sized Sub",
  6463. height: math.unit(9.3, "inches")
  6464. },
  6465. {
  6466. name: "Normal",
  6467. height: math.unit(5 + 2 / 12, "foot"),
  6468. default: true
  6469. },
  6470. ]
  6471. ))
  6472. characterMakers.push(() => makeCharacter(
  6473. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6474. {
  6475. front: {
  6476. height: math.unit(6, "feet"),
  6477. weight: math.unit(160, "lbs"),
  6478. name: "Front",
  6479. image: {
  6480. source: "./media/characters/gene-zeta/front.svg",
  6481. bottom: 0.03,
  6482. extra: 1
  6483. }
  6484. }
  6485. },
  6486. [
  6487. {
  6488. name: "Normal",
  6489. height: math.unit(6.25, "foot"),
  6490. default: true
  6491. },
  6492. ]
  6493. ))
  6494. characterMakers.push(() => makeCharacter(
  6495. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6496. {
  6497. front: {
  6498. height: math.unit(6, "feet"),
  6499. weight: math.unit(350, "lbs"),
  6500. name: "Front",
  6501. image: {
  6502. source: "./media/characters/razinox/front.svg",
  6503. extra: 1686 / 1548,
  6504. bottom: 28.2 / 1868
  6505. }
  6506. },
  6507. back: {
  6508. height: math.unit(6, "feet"),
  6509. weight: math.unit(350, "lbs"),
  6510. name: "Back",
  6511. image: {
  6512. source: "./media/characters/razinox/back.svg",
  6513. extra: 1660 / 1590,
  6514. bottom: 15 / 1665
  6515. }
  6516. },
  6517. },
  6518. [
  6519. {
  6520. name: "Normal",
  6521. height: math.unit(10 + 8 / 12, "foot")
  6522. },
  6523. {
  6524. name: "Minimacro",
  6525. height: math.unit(15, "foot")
  6526. },
  6527. {
  6528. name: "Macro",
  6529. height: math.unit(60, "foot"),
  6530. default: true
  6531. },
  6532. {
  6533. name: "Megamacro",
  6534. height: math.unit(5, "miles")
  6535. },
  6536. {
  6537. name: "Gigamacro",
  6538. height: math.unit(6000, "miles")
  6539. },
  6540. ]
  6541. ))
  6542. characterMakers.push(() => makeCharacter(
  6543. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6544. {
  6545. front: {
  6546. height: math.unit(6, "feet"),
  6547. weight: math.unit(150, "lbs"),
  6548. name: "Front",
  6549. image: {
  6550. source: "./media/characters/cobalt/front.svg"
  6551. }
  6552. }
  6553. },
  6554. [
  6555. {
  6556. name: "Normal",
  6557. height: math.unit(8 + 1 / 12, "foot")
  6558. },
  6559. {
  6560. name: "Macro",
  6561. height: math.unit(111, "foot"),
  6562. default: true
  6563. },
  6564. {
  6565. name: "Supracosmic",
  6566. height: math.unit(1e42, "feet")
  6567. },
  6568. ]
  6569. ))
  6570. characterMakers.push(() => makeCharacter(
  6571. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6572. {
  6573. front: {
  6574. height: math.unit(6, "feet"),
  6575. weight: math.unit(140, "lbs"),
  6576. name: "Front",
  6577. image: {
  6578. source: "./media/characters/amanda/front.svg"
  6579. }
  6580. }
  6581. },
  6582. [
  6583. {
  6584. name: "Micro",
  6585. height: math.unit(5, "inches"),
  6586. default: true
  6587. },
  6588. ]
  6589. ))
  6590. characterMakers.push(() => makeCharacter(
  6591. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6592. {
  6593. front: {
  6594. height: math.unit(5.59, "feet"),
  6595. weight: math.unit(250, "lbs"),
  6596. name: "Front",
  6597. image: {
  6598. source: "./media/characters/teal/front.svg"
  6599. }
  6600. },
  6601. frontAlt: {
  6602. height: math.unit(6, "feet"),
  6603. weight: math.unit(250, "lbs"),
  6604. name: "Front (Alt)",
  6605. image: {
  6606. source: "./media/characters/teal/front-alt.svg",
  6607. bottom: 0.04,
  6608. extra: 1
  6609. }
  6610. },
  6611. },
  6612. [
  6613. {
  6614. name: "Normal",
  6615. height: math.unit(12, "feet"),
  6616. default: true
  6617. },
  6618. {
  6619. name: "Macro",
  6620. height: math.unit(300, "feet")
  6621. },
  6622. ]
  6623. ))
  6624. characterMakers.push(() => makeCharacter(
  6625. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6626. {
  6627. frontCat: {
  6628. height: math.unit(6, "feet"),
  6629. weight: math.unit(180, "lbs"),
  6630. name: "Front (Cat)",
  6631. image: {
  6632. source: "./media/characters/ravin-amulet/front-cat.svg"
  6633. }
  6634. },
  6635. frontCatAlt: {
  6636. height: math.unit(6, "feet"),
  6637. weight: math.unit(180, "lbs"),
  6638. name: "Front (Alt, Cat)",
  6639. image: {
  6640. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6641. }
  6642. },
  6643. frontWerewolf: {
  6644. height: math.unit(6 * 1.2, "feet"),
  6645. weight: math.unit(225, "lbs"),
  6646. name: "Front (Werewolf)",
  6647. image: {
  6648. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6649. }
  6650. },
  6651. backWerewolf: {
  6652. height: math.unit(6 * 1.2, "feet"),
  6653. weight: math.unit(225, "lbs"),
  6654. name: "Back (Werewolf)",
  6655. image: {
  6656. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6657. }
  6658. },
  6659. },
  6660. [
  6661. {
  6662. name: "Nano",
  6663. height: math.unit(1, "micrometer")
  6664. },
  6665. {
  6666. name: "Micro",
  6667. height: math.unit(1, "inch")
  6668. },
  6669. {
  6670. name: "Normal",
  6671. height: math.unit(6, "feet"),
  6672. default: true
  6673. },
  6674. {
  6675. name: "Macro",
  6676. height: math.unit(60, "feet")
  6677. }
  6678. ]
  6679. ))
  6680. characterMakers.push(() => makeCharacter(
  6681. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6682. {
  6683. front: {
  6684. height: math.unit(6, "feet"),
  6685. weight: math.unit(165, "lbs"),
  6686. name: "Front",
  6687. image: {
  6688. source: "./media/characters/fluoresce/front.svg"
  6689. }
  6690. }
  6691. },
  6692. [
  6693. {
  6694. name: "Micro",
  6695. height: math.unit(6, "cm")
  6696. },
  6697. {
  6698. name: "Normal",
  6699. height: math.unit(5 + 7 / 12, "feet"),
  6700. default: true
  6701. },
  6702. {
  6703. name: "Macro",
  6704. height: math.unit(56, "feet")
  6705. },
  6706. {
  6707. name: "Megamacro",
  6708. height: math.unit(1.9, "miles")
  6709. },
  6710. ]
  6711. ))
  6712. characterMakers.push(() => makeCharacter(
  6713. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6714. {
  6715. front: {
  6716. height: math.unit(9 + 6 / 12, "feet"),
  6717. weight: math.unit(523, "lbs"),
  6718. name: "Side",
  6719. image: {
  6720. source: "./media/characters/aurora/side.svg"
  6721. }
  6722. }
  6723. },
  6724. [
  6725. {
  6726. name: "Normal",
  6727. height: math.unit(9 + 6 / 12, "feet")
  6728. },
  6729. {
  6730. name: "Macro",
  6731. height: math.unit(96, "feet"),
  6732. default: true
  6733. },
  6734. {
  6735. name: "Macro+",
  6736. height: math.unit(243, "feet")
  6737. },
  6738. ]
  6739. ))
  6740. characterMakers.push(() => makeCharacter(
  6741. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6742. {
  6743. front: {
  6744. height: math.unit(194, "cm"),
  6745. weight: math.unit(90, "kg"),
  6746. name: "Front",
  6747. image: {
  6748. source: "./media/characters/ranek/front.svg"
  6749. }
  6750. },
  6751. side: {
  6752. height: math.unit(194, "cm"),
  6753. weight: math.unit(90, "kg"),
  6754. name: "Side",
  6755. image: {
  6756. source: "./media/characters/ranek/side.svg"
  6757. }
  6758. },
  6759. back: {
  6760. height: math.unit(194, "cm"),
  6761. weight: math.unit(90, "kg"),
  6762. name: "Back",
  6763. image: {
  6764. source: "./media/characters/ranek/back.svg"
  6765. }
  6766. },
  6767. feral: {
  6768. height: math.unit(30, "cm"),
  6769. weight: math.unit(1.6, "lbs"),
  6770. name: "Feral",
  6771. image: {
  6772. source: "./media/characters/ranek/feral.svg"
  6773. }
  6774. },
  6775. },
  6776. [
  6777. {
  6778. name: "Normal",
  6779. height: math.unit(194, "cm"),
  6780. default: true
  6781. },
  6782. {
  6783. name: "Macro",
  6784. height: math.unit(100, "meters")
  6785. },
  6786. ]
  6787. ))
  6788. characterMakers.push(() => makeCharacter(
  6789. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6790. {
  6791. front: {
  6792. height: math.unit(5 + 6 / 12, "feet"),
  6793. weight: math.unit(153, "lbs"),
  6794. name: "Front",
  6795. image: {
  6796. source: "./media/characters/andrew-cooper/front.svg"
  6797. }
  6798. },
  6799. },
  6800. [
  6801. {
  6802. name: "Nano",
  6803. height: math.unit(1, "mm")
  6804. },
  6805. {
  6806. name: "Micro",
  6807. height: math.unit(2, "inches")
  6808. },
  6809. {
  6810. name: "Normal",
  6811. height: math.unit(5 + 6 / 12, "feet"),
  6812. default: true
  6813. }
  6814. ]
  6815. ))
  6816. characterMakers.push(() => makeCharacter(
  6817. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6818. {
  6819. front: {
  6820. height: math.unit(6, "feet"),
  6821. weight: math.unit(180, "lbs"),
  6822. name: "Front",
  6823. image: {
  6824. source: "./media/characters/akane-sato/front.svg",
  6825. extra: 1219 / 1140
  6826. }
  6827. },
  6828. back: {
  6829. height: math.unit(6, "feet"),
  6830. weight: math.unit(180, "lbs"),
  6831. name: "Back",
  6832. image: {
  6833. source: "./media/characters/akane-sato/back.svg",
  6834. extra: 1219 / 1170
  6835. }
  6836. },
  6837. },
  6838. [
  6839. {
  6840. name: "Normal",
  6841. height: math.unit(2.5, "meters")
  6842. },
  6843. {
  6844. name: "Macro",
  6845. height: math.unit(250, "meters"),
  6846. default: true
  6847. },
  6848. {
  6849. name: "Megamacro",
  6850. height: math.unit(25, "km")
  6851. },
  6852. ]
  6853. ))
  6854. characterMakers.push(() => makeCharacter(
  6855. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6856. {
  6857. front: {
  6858. height: math.unit(6, "feet"),
  6859. weight: math.unit(65, "kg"),
  6860. name: "Front",
  6861. image: {
  6862. source: "./media/characters/rook/front.svg",
  6863. extra: 960 / 950
  6864. }
  6865. }
  6866. },
  6867. [
  6868. {
  6869. name: "Normal",
  6870. height: math.unit(8.8, "feet")
  6871. },
  6872. {
  6873. name: "Macro",
  6874. height: math.unit(88, "feet"),
  6875. default: true
  6876. },
  6877. {
  6878. name: "Megamacro",
  6879. height: math.unit(8, "miles")
  6880. },
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6885. {
  6886. front: {
  6887. height: math.unit(12 + 2 / 12, "feet"),
  6888. weight: math.unit(808, "lbs"),
  6889. name: "Front",
  6890. image: {
  6891. source: "./media/characters/prodigy/front.svg"
  6892. }
  6893. }
  6894. },
  6895. [
  6896. {
  6897. name: "Normal",
  6898. height: math.unit(12 + 2 / 12, "feet"),
  6899. default: true
  6900. },
  6901. {
  6902. name: "Macro",
  6903. height: math.unit(143, "feet")
  6904. },
  6905. {
  6906. name: "Macro+",
  6907. height: math.unit(400, "feet")
  6908. },
  6909. ]
  6910. ))
  6911. characterMakers.push(() => makeCharacter(
  6912. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6913. {
  6914. front: {
  6915. height: math.unit(6, "feet"),
  6916. weight: math.unit(225, "lbs"),
  6917. name: "Front",
  6918. image: {
  6919. source: "./media/characters/daniel/front.svg"
  6920. }
  6921. },
  6922. leaning: {
  6923. height: math.unit(6, "feet"),
  6924. weight: math.unit(225, "lbs"),
  6925. name: "Leaning",
  6926. image: {
  6927. source: "./media/characters/daniel/leaning.svg"
  6928. }
  6929. },
  6930. },
  6931. [
  6932. {
  6933. name: "Macro",
  6934. height: math.unit(1000, "feet"),
  6935. default: true
  6936. },
  6937. ]
  6938. ))
  6939. characterMakers.push(() => makeCharacter(
  6940. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6941. {
  6942. front: {
  6943. height: math.unit(6, "feet"),
  6944. weight: math.unit(88, "lbs"),
  6945. name: "Front",
  6946. image: {
  6947. source: "./media/characters/chiros/front.svg",
  6948. extra: 306 / 226
  6949. }
  6950. },
  6951. side: {
  6952. height: math.unit(6, "feet"),
  6953. weight: math.unit(88, "lbs"),
  6954. name: "Side",
  6955. image: {
  6956. source: "./media/characters/chiros/side.svg",
  6957. extra: 306 / 226
  6958. }
  6959. },
  6960. },
  6961. [
  6962. {
  6963. name: "Normal",
  6964. height: math.unit(6, "cm"),
  6965. default: true
  6966. },
  6967. ]
  6968. ))
  6969. characterMakers.push(() => makeCharacter(
  6970. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6971. {
  6972. front: {
  6973. height: math.unit(6, "feet"),
  6974. weight: math.unit(100, "lbs"),
  6975. name: "Front",
  6976. image: {
  6977. source: "./media/characters/selka/front.svg",
  6978. extra: 947 / 887
  6979. }
  6980. }
  6981. },
  6982. [
  6983. {
  6984. name: "Normal",
  6985. height: math.unit(5, "cm"),
  6986. default: true
  6987. },
  6988. ]
  6989. ))
  6990. characterMakers.push(() => makeCharacter(
  6991. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6992. {
  6993. front: {
  6994. height: math.unit(8 + 3 / 12, "feet"),
  6995. weight: math.unit(424, "lbs"),
  6996. name: "Front",
  6997. image: {
  6998. source: "./media/characters/verin/front.svg",
  6999. extra: 1845 / 1550
  7000. }
  7001. },
  7002. frontArmored: {
  7003. height: math.unit(8 + 3 / 12, "feet"),
  7004. weight: math.unit(424, "lbs"),
  7005. name: "Front (Armored)",
  7006. image: {
  7007. source: "./media/characters/verin/front-armor.svg",
  7008. extra: 1845 / 1550,
  7009. bottom: 0.01
  7010. }
  7011. },
  7012. back: {
  7013. height: math.unit(8 + 3 / 12, "feet"),
  7014. weight: math.unit(424, "lbs"),
  7015. name: "Back",
  7016. image: {
  7017. source: "./media/characters/verin/back.svg",
  7018. bottom: 0.1,
  7019. extra: 1
  7020. }
  7021. },
  7022. foot: {
  7023. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7024. name: "Foot",
  7025. image: {
  7026. source: "./media/characters/verin/foot.svg"
  7027. }
  7028. },
  7029. },
  7030. [
  7031. {
  7032. name: "Normal",
  7033. height: math.unit(8 + 3 / 12, "feet")
  7034. },
  7035. {
  7036. name: "Minimacro",
  7037. height: math.unit(21, "feet"),
  7038. default: true
  7039. },
  7040. {
  7041. name: "Macro",
  7042. height: math.unit(626, "feet")
  7043. },
  7044. ]
  7045. ))
  7046. characterMakers.push(() => makeCharacter(
  7047. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7048. {
  7049. front: {
  7050. height: math.unit(2.718, "meters"),
  7051. weight: math.unit(150, "lbs"),
  7052. name: "Front",
  7053. image: {
  7054. source: "./media/characters/sovrim-terraquian/front.svg"
  7055. }
  7056. },
  7057. back: {
  7058. height: math.unit(2.718, "meters"),
  7059. weight: math.unit(150, "lbs"),
  7060. name: "Back",
  7061. image: {
  7062. source: "./media/characters/sovrim-terraquian/back.svg"
  7063. }
  7064. }
  7065. },
  7066. [
  7067. {
  7068. name: "Micro",
  7069. height: math.unit(2, "inches")
  7070. },
  7071. {
  7072. name: "Small",
  7073. height: math.unit(1, "meter")
  7074. },
  7075. {
  7076. name: "Normal",
  7077. height: math.unit(Math.E, "meters"),
  7078. default: true
  7079. },
  7080. {
  7081. name: "Macro",
  7082. height: math.unit(20, "meters")
  7083. },
  7084. {
  7085. name: "Macro+",
  7086. height: math.unit(400, "meters")
  7087. },
  7088. ]
  7089. ))
  7090. characterMakers.push(() => makeCharacter(
  7091. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7092. {
  7093. front: {
  7094. height: math.unit(7, "feet"),
  7095. weight: math.unit(489, "lbs"),
  7096. name: "Front",
  7097. image: {
  7098. source: "./media/characters/reece-silvermane/front.svg",
  7099. bottom: 0.02,
  7100. extra: 1
  7101. }
  7102. },
  7103. },
  7104. [
  7105. {
  7106. name: "Macro",
  7107. height: math.unit(1.5, "miles"),
  7108. default: true
  7109. },
  7110. ]
  7111. ))
  7112. characterMakers.push(() => makeCharacter(
  7113. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7114. {
  7115. front: {
  7116. height: math.unit(6, "feet"),
  7117. weight: math.unit(78, "kg"),
  7118. name: "Front",
  7119. image: {
  7120. source: "./media/characters/kane/front.svg",
  7121. extra: 978 / 899
  7122. }
  7123. },
  7124. },
  7125. [
  7126. {
  7127. name: "Normal",
  7128. height: math.unit(2.1, "m"),
  7129. },
  7130. {
  7131. name: "Macro",
  7132. height: math.unit(1, "km"),
  7133. default: true
  7134. },
  7135. ]
  7136. ))
  7137. characterMakers.push(() => makeCharacter(
  7138. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7139. {
  7140. front: {
  7141. height: math.unit(6, "feet"),
  7142. weight: math.unit(200, "kg"),
  7143. name: "Front",
  7144. image: {
  7145. source: "./media/characters/tegon/front.svg",
  7146. bottom: 0.01,
  7147. extra: 1
  7148. }
  7149. },
  7150. },
  7151. [
  7152. {
  7153. name: "Micro",
  7154. height: math.unit(1, "inch")
  7155. },
  7156. {
  7157. name: "Normal",
  7158. height: math.unit(6 + 3 / 12, "feet"),
  7159. default: true
  7160. },
  7161. {
  7162. name: "Macro",
  7163. height: math.unit(300, "feet")
  7164. },
  7165. {
  7166. name: "Megamacro",
  7167. height: math.unit(69, "miles")
  7168. },
  7169. ]
  7170. ))
  7171. characterMakers.push(() => makeCharacter(
  7172. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7173. {
  7174. side: {
  7175. height: math.unit(6, "feet"),
  7176. weight: math.unit(2304, "lbs"),
  7177. name: "Side",
  7178. image: {
  7179. source: "./media/characters/arcturax/side.svg",
  7180. extra: 790 / 376,
  7181. bottom: 0.01
  7182. }
  7183. },
  7184. },
  7185. [
  7186. {
  7187. name: "Micro",
  7188. height: math.unit(2, "inch")
  7189. },
  7190. {
  7191. name: "Normal",
  7192. height: math.unit(6, "feet")
  7193. },
  7194. {
  7195. name: "Macro",
  7196. height: math.unit(39, "feet"),
  7197. default: true
  7198. },
  7199. {
  7200. name: "Megamacro",
  7201. height: math.unit(7, "miles")
  7202. },
  7203. ]
  7204. ))
  7205. characterMakers.push(() => makeCharacter(
  7206. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7207. {
  7208. front: {
  7209. height: math.unit(6, "feet"),
  7210. weight: math.unit(50, "lbs"),
  7211. name: "Front",
  7212. image: {
  7213. source: "./media/characters/sentri/front.svg",
  7214. extra: 1750 / 1570,
  7215. bottom: 0.025
  7216. }
  7217. },
  7218. frontAlt: {
  7219. height: math.unit(6, "feet"),
  7220. weight: math.unit(50, "lbs"),
  7221. name: "Front (Alt)",
  7222. image: {
  7223. source: "./media/characters/sentri/front-alt.svg",
  7224. extra: 1750 / 1570,
  7225. bottom: 0.025
  7226. }
  7227. },
  7228. },
  7229. [
  7230. {
  7231. name: "Normal",
  7232. height: math.unit(15, "feet"),
  7233. default: true
  7234. },
  7235. {
  7236. name: "Macro",
  7237. height: math.unit(2500, "feet")
  7238. }
  7239. ]
  7240. ))
  7241. characterMakers.push(() => makeCharacter(
  7242. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7243. {
  7244. front: {
  7245. height: math.unit(5 + 8 / 12, "feet"),
  7246. weight: math.unit(130, "lbs"),
  7247. name: "Front",
  7248. image: {
  7249. source: "./media/characters/corvin/front.svg",
  7250. extra: 1803 / 1629
  7251. }
  7252. },
  7253. frontShirt: {
  7254. height: math.unit(5 + 8 / 12, "feet"),
  7255. weight: math.unit(130, "lbs"),
  7256. name: "Front (Shirt)",
  7257. image: {
  7258. source: "./media/characters/corvin/front-shirt.svg",
  7259. extra: 1803 / 1629
  7260. }
  7261. },
  7262. frontPoncho: {
  7263. height: math.unit(5 + 8 / 12, "feet"),
  7264. weight: math.unit(130, "lbs"),
  7265. name: "Front (Poncho)",
  7266. image: {
  7267. source: "./media/characters/corvin/front-poncho.svg",
  7268. extra: 1803 / 1629
  7269. }
  7270. },
  7271. side: {
  7272. height: math.unit(5 + 8 / 12, "feet"),
  7273. weight: math.unit(130, "lbs"),
  7274. name: "Side",
  7275. image: {
  7276. source: "./media/characters/corvin/side.svg",
  7277. extra: 1012 / 945
  7278. }
  7279. },
  7280. back: {
  7281. height: math.unit(5 + 8 / 12, "feet"),
  7282. weight: math.unit(130, "lbs"),
  7283. name: "Back",
  7284. image: {
  7285. source: "./media/characters/corvin/back.svg",
  7286. extra: 1803 / 1629
  7287. }
  7288. },
  7289. },
  7290. [
  7291. {
  7292. name: "Micro",
  7293. height: math.unit(3, "inches")
  7294. },
  7295. {
  7296. name: "Normal",
  7297. height: math.unit(5 + 8 / 12, "feet")
  7298. },
  7299. {
  7300. name: "Macro",
  7301. height: math.unit(300, "feet"),
  7302. default: true
  7303. },
  7304. {
  7305. name: "Megamacro",
  7306. height: math.unit(500, "miles")
  7307. }
  7308. ]
  7309. ))
  7310. characterMakers.push(() => makeCharacter(
  7311. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7312. {
  7313. front: {
  7314. height: math.unit(6, "feet"),
  7315. weight: math.unit(135, "lbs"),
  7316. name: "Front",
  7317. image: {
  7318. source: "./media/characters/q/front.svg",
  7319. extra: 854 / 752,
  7320. bottom: 0.005
  7321. }
  7322. },
  7323. back: {
  7324. height: math.unit(6, "feet"),
  7325. weight: math.unit(130, "lbs"),
  7326. name: "Back",
  7327. image: {
  7328. source: "./media/characters/q/back.svg",
  7329. extra: 854 / 752
  7330. }
  7331. },
  7332. },
  7333. [
  7334. {
  7335. name: "Macro",
  7336. height: math.unit(90, "feet"),
  7337. default: true
  7338. },
  7339. {
  7340. name: "Extra Macro",
  7341. height: math.unit(300, "feet"),
  7342. },
  7343. {
  7344. name: "BIG WALF",
  7345. height: math.unit(750, "feet"),
  7346. },
  7347. ]
  7348. ))
  7349. characterMakers.push(() => makeCharacter(
  7350. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7351. {
  7352. front: {
  7353. height: math.unit(6, "feet"),
  7354. weight: math.unit(150, "lbs"),
  7355. name: "Front",
  7356. image: {
  7357. source: "./media/characters/carley/front.svg",
  7358. extra: 3927 / 3540,
  7359. bottom: 29.2 / 735
  7360. }
  7361. }
  7362. },
  7363. [
  7364. {
  7365. name: "Normal",
  7366. height: math.unit(6 + 3 / 12, "feet")
  7367. },
  7368. {
  7369. name: "Macro",
  7370. height: math.unit(185, "feet"),
  7371. default: true
  7372. },
  7373. {
  7374. name: "Megamacro",
  7375. height: math.unit(8, "miles"),
  7376. },
  7377. ]
  7378. ))
  7379. characterMakers.push(() => makeCharacter(
  7380. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7381. {
  7382. front: {
  7383. height: math.unit(3, "feet"),
  7384. weight: math.unit(28, "lbs"),
  7385. name: "Front",
  7386. image: {
  7387. source: "./media/characters/citrine/front.svg"
  7388. }
  7389. }
  7390. },
  7391. [
  7392. {
  7393. name: "Normal",
  7394. height: math.unit(3, "feet"),
  7395. default: true
  7396. }
  7397. ]
  7398. ))
  7399. characterMakers.push(() => makeCharacter(
  7400. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7401. {
  7402. front: {
  7403. height: math.unit(14, "feet"),
  7404. weight: math.unit(1450, "kg"),
  7405. capacity: math.unit(15, "people"),
  7406. name: "Front",
  7407. image: {
  7408. source: "./media/characters/aura-starwind/front.svg",
  7409. extra: 1455 / 1335
  7410. }
  7411. },
  7412. side: {
  7413. height: math.unit(14, "feet"),
  7414. weight: math.unit(1450, "kg"),
  7415. capacity: math.unit(15, "people"),
  7416. name: "Side",
  7417. image: {
  7418. source: "./media/characters/aura-starwind/side.svg",
  7419. extra: 1654 / 1497
  7420. }
  7421. },
  7422. taur: {
  7423. height: math.unit(18, "feet"),
  7424. weight: math.unit(5500, "kg"),
  7425. capacity: math.unit(50, "people"),
  7426. name: "Taur",
  7427. image: {
  7428. source: "./media/characters/aura-starwind/taur.svg",
  7429. extra: 1760 / 1650
  7430. }
  7431. },
  7432. feral: {
  7433. height: math.unit(46, "feet"),
  7434. weight: math.unit(25000, "kg"),
  7435. capacity: math.unit(120, "people"),
  7436. name: "Feral",
  7437. image: {
  7438. source: "./media/characters/aura-starwind/feral.svg"
  7439. }
  7440. },
  7441. },
  7442. [
  7443. {
  7444. name: "Normal",
  7445. height: math.unit(14, "feet"),
  7446. default: true
  7447. },
  7448. {
  7449. name: "Macro",
  7450. height: math.unit(50, "meters")
  7451. },
  7452. {
  7453. name: "Megamacro",
  7454. height: math.unit(5000, "meters")
  7455. },
  7456. {
  7457. name: "Gigamacro",
  7458. height: math.unit(100000, "kilometers")
  7459. },
  7460. ]
  7461. ))
  7462. characterMakers.push(() => makeCharacter(
  7463. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7464. {
  7465. front: {
  7466. height: math.unit(2 + 7 / 12, "feet"),
  7467. weight: math.unit(32, "lbs"),
  7468. name: "Front",
  7469. image: {
  7470. source: "./media/characters/rivet/front.svg",
  7471. extra: 1716 / 1658,
  7472. bottom: 0.03
  7473. }
  7474. },
  7475. foot: {
  7476. height: math.unit(0.551, "feet"),
  7477. name: "Rivet's Foot",
  7478. image: {
  7479. source: "./media/characters/rivet/foot.svg"
  7480. },
  7481. rename: true
  7482. }
  7483. },
  7484. [
  7485. {
  7486. name: "Micro",
  7487. height: math.unit(1.5, "inches"),
  7488. },
  7489. {
  7490. name: "Normal",
  7491. height: math.unit(2 + 7 / 12, "feet"),
  7492. default: true
  7493. },
  7494. {
  7495. name: "Macro",
  7496. height: math.unit(85, "feet")
  7497. },
  7498. {
  7499. name: "Megamacro",
  7500. height: math.unit(2.2, "km")
  7501. }
  7502. ]
  7503. ))
  7504. characterMakers.push(() => makeCharacter(
  7505. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7506. {
  7507. front: {
  7508. height: math.unit(5 + 9 / 12, "feet"),
  7509. weight: math.unit(150, "lbs"),
  7510. name: "Front",
  7511. image: {
  7512. source: "./media/characters/coffee/front.svg",
  7513. extra: 3666 / 3032,
  7514. bottom: 0.04
  7515. }
  7516. },
  7517. foot: {
  7518. height: math.unit(1.29, "feet"),
  7519. name: "Foot",
  7520. image: {
  7521. source: "./media/characters/coffee/foot.svg"
  7522. }
  7523. },
  7524. },
  7525. [
  7526. {
  7527. name: "Micro",
  7528. height: math.unit(2, "inches"),
  7529. },
  7530. {
  7531. name: "Normal",
  7532. height: math.unit(5 + 9 / 12, "feet"),
  7533. default: true
  7534. },
  7535. {
  7536. name: "Macro",
  7537. height: math.unit(800, "feet")
  7538. },
  7539. {
  7540. name: "Megamacro",
  7541. height: math.unit(25, "miles")
  7542. }
  7543. ]
  7544. ))
  7545. characterMakers.push(() => makeCharacter(
  7546. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7547. {
  7548. front: {
  7549. height: math.unit(6, "feet"),
  7550. weight: math.unit(200, "lbs"),
  7551. name: "Front",
  7552. image: {
  7553. source: "./media/characters/chari-gal/front.svg",
  7554. extra: 1568 / 1385,
  7555. bottom: 0.047
  7556. }
  7557. },
  7558. gigantamax: {
  7559. height: math.unit(6 * 16, "feet"),
  7560. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7561. name: "Gigantamax",
  7562. image: {
  7563. source: "./media/characters/chari-gal/gigantamax.svg",
  7564. extra: 1124 / 888,
  7565. bottom: 0.03
  7566. }
  7567. },
  7568. },
  7569. [
  7570. {
  7571. name: "Normal",
  7572. height: math.unit(5 + 7 / 12, "feet")
  7573. },
  7574. {
  7575. name: "Macro",
  7576. height: math.unit(200, "feet"),
  7577. default: true
  7578. }
  7579. ]
  7580. ))
  7581. characterMakers.push(() => makeCharacter(
  7582. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7583. {
  7584. front: {
  7585. height: math.unit(6, "feet"),
  7586. weight: math.unit(150, "lbs"),
  7587. name: "Front",
  7588. image: {
  7589. source: "./media/characters/nova/front.svg",
  7590. extra: 5000 / 4722,
  7591. bottom: 0.02
  7592. }
  7593. }
  7594. },
  7595. [
  7596. {
  7597. name: "Micro-",
  7598. height: math.unit(0.8, "inches")
  7599. },
  7600. {
  7601. name: "Micro",
  7602. height: math.unit(2, "inches"),
  7603. default: true
  7604. },
  7605. ]
  7606. ))
  7607. characterMakers.push(() => makeCharacter(
  7608. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7609. {
  7610. front: {
  7611. height: math.unit(3 + 1 / 12, "feet"),
  7612. weight: math.unit(21.7, "lbs"),
  7613. name: "Front",
  7614. image: {
  7615. source: "./media/characters/argent/front.svg",
  7616. extra: 1471 / 1331,
  7617. bottom: 100.8 / 1575.5
  7618. }
  7619. }
  7620. },
  7621. [
  7622. {
  7623. name: "Micro",
  7624. height: math.unit(2, "inches")
  7625. },
  7626. {
  7627. name: "Normal",
  7628. height: math.unit(3 + 1 / 12, "feet"),
  7629. default: true
  7630. },
  7631. {
  7632. name: "Macro",
  7633. height: math.unit(120, "feet")
  7634. },
  7635. ]
  7636. ))
  7637. characterMakers.push(() => makeCharacter(
  7638. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7639. {
  7640. lamp: {
  7641. height: math.unit(7 * 1559 / 989, "feet"),
  7642. name: "Magic Lamp",
  7643. image: {
  7644. source: "./media/characters/mira-al-cul/lamp.svg",
  7645. extra: 1617 / 1559
  7646. }
  7647. },
  7648. front: {
  7649. height: math.unit(7, "feet"),
  7650. name: "Front",
  7651. image: {
  7652. source: "./media/characters/mira-al-cul/front.svg",
  7653. extra: 1044 / 990
  7654. }
  7655. },
  7656. },
  7657. [
  7658. {
  7659. name: "Heavily Restricted",
  7660. height: math.unit(7 * 1559 / 989, "feet")
  7661. },
  7662. {
  7663. name: "Freshly Freed",
  7664. height: math.unit(50 * 1559 / 989, "feet")
  7665. },
  7666. {
  7667. name: "World Encompassing",
  7668. height: math.unit(10000 * 1559 / 989, "miles")
  7669. },
  7670. {
  7671. name: "Galactic",
  7672. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7673. },
  7674. {
  7675. name: "Palmed Universe",
  7676. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7677. default: true
  7678. },
  7679. {
  7680. name: "Multiversal Matriarch",
  7681. height: math.unit(8.87e10, "yottameters")
  7682. },
  7683. {
  7684. name: "Void Mother",
  7685. height: math.unit(3.14e110, "yottaparsecs")
  7686. },
  7687. {
  7688. name: "Toying with Transcendence",
  7689. height: math.unit(1e307, "meters")
  7690. },
  7691. ]
  7692. ))
  7693. characterMakers.push(() => makeCharacter(
  7694. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7695. {
  7696. front: {
  7697. height: math.unit(17 + 1 / 12, "feet"),
  7698. weight: math.unit(476.2 * 5, "lbs"),
  7699. name: "Front",
  7700. image: {
  7701. source: "./media/characters/kuro-shi-uchū/front.svg",
  7702. extra: 2329 / 1835,
  7703. bottom: 0.02
  7704. }
  7705. },
  7706. },
  7707. [
  7708. {
  7709. name: "Micro",
  7710. height: math.unit(2, "inches")
  7711. },
  7712. {
  7713. name: "Normal",
  7714. height: math.unit(12, "meters")
  7715. },
  7716. {
  7717. name: "Planetary",
  7718. height: math.unit(0.00929, "AU"),
  7719. default: true
  7720. },
  7721. {
  7722. name: "Universal",
  7723. height: math.unit(20, "gigaparsecs")
  7724. },
  7725. ]
  7726. ))
  7727. characterMakers.push(() => makeCharacter(
  7728. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7729. {
  7730. front: {
  7731. height: math.unit(5 + 2 / 12, "feet"),
  7732. weight: math.unit(120, "lbs"),
  7733. name: "Front",
  7734. image: {
  7735. source: "./media/characters/katherine/front.svg",
  7736. extra: 2075 / 1969
  7737. }
  7738. },
  7739. dress: {
  7740. height: math.unit(5 + 2 / 12, "feet"),
  7741. weight: math.unit(120, "lbs"),
  7742. name: "Dress",
  7743. image: {
  7744. source: "./media/characters/katherine/dress.svg",
  7745. extra: 2258 / 2064
  7746. }
  7747. },
  7748. },
  7749. [
  7750. {
  7751. name: "Micro",
  7752. height: math.unit(1, "inches"),
  7753. default: true
  7754. },
  7755. {
  7756. name: "Normal",
  7757. height: math.unit(5 + 2 / 12, "feet")
  7758. },
  7759. {
  7760. name: "Macro",
  7761. height: math.unit(100, "meters")
  7762. },
  7763. {
  7764. name: "Megamacro",
  7765. height: math.unit(80, "miles")
  7766. },
  7767. ]
  7768. ))
  7769. characterMakers.push(() => makeCharacter(
  7770. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7771. {
  7772. front: {
  7773. height: math.unit(7 + 8 / 12, "feet"),
  7774. weight: math.unit(250, "lbs"),
  7775. name: "Front",
  7776. image: {
  7777. source: "./media/characters/yevis/front.svg",
  7778. extra: 1938 / 1755
  7779. }
  7780. }
  7781. },
  7782. [
  7783. {
  7784. name: "Mortal",
  7785. height: math.unit(7 + 8 / 12, "feet")
  7786. },
  7787. {
  7788. name: "Battle",
  7789. height: math.unit(25 + 11 / 12, "feet")
  7790. },
  7791. {
  7792. name: "Wrath",
  7793. height: math.unit(1654 + 11 / 12, "feet")
  7794. },
  7795. {
  7796. name: "Planet Destroyer",
  7797. height: math.unit(12000, "miles")
  7798. },
  7799. {
  7800. name: "Galaxy Conqueror",
  7801. height: math.unit(1.45, "zettameters"),
  7802. default: true
  7803. },
  7804. {
  7805. name: "Universal War",
  7806. height: math.unit(184, "gigaparsecs")
  7807. },
  7808. {
  7809. name: "Eternity War",
  7810. height: math.unit(1.98e55, "yottaparsecs")
  7811. },
  7812. ]
  7813. ))
  7814. characterMakers.push(() => makeCharacter(
  7815. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7816. {
  7817. front: {
  7818. height: math.unit(5 + 8 / 12, "feet"),
  7819. weight: math.unit(63, "kg"),
  7820. name: "Front",
  7821. image: {
  7822. source: "./media/characters/xavier/front.svg",
  7823. extra: 944 / 883
  7824. }
  7825. },
  7826. frontStretch: {
  7827. height: math.unit(5 + 8 / 12, "feet"),
  7828. weight: math.unit(63, "kg"),
  7829. name: "Stretching",
  7830. image: {
  7831. source: "./media/characters/xavier/front-stretch.svg",
  7832. extra: 962 / 820
  7833. }
  7834. },
  7835. },
  7836. [
  7837. {
  7838. name: "Normal",
  7839. height: math.unit(5 + 8 / 12, "feet")
  7840. },
  7841. {
  7842. name: "Macro",
  7843. height: math.unit(100, "meters"),
  7844. default: true
  7845. },
  7846. {
  7847. name: "McLargeHuge",
  7848. height: math.unit(10, "miles")
  7849. },
  7850. ]
  7851. ))
  7852. characterMakers.push(() => makeCharacter(
  7853. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7854. {
  7855. front: {
  7856. height: math.unit(5 + 5 / 12, "feet"),
  7857. weight: math.unit(150, "lb"),
  7858. name: "Front",
  7859. image: {
  7860. source: "./media/characters/joshii/front.svg"
  7861. }
  7862. },
  7863. foot: {
  7864. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7865. name: "Foot",
  7866. image: {
  7867. source: "./media/characters/joshii/foot.svg"
  7868. }
  7869. },
  7870. },
  7871. [
  7872. {
  7873. name: "Micro",
  7874. height: math.unit(2, "inches")
  7875. },
  7876. {
  7877. name: "Normal",
  7878. height: math.unit(5 + 5 / 12, "feet"),
  7879. default: true
  7880. },
  7881. {
  7882. name: "Macro",
  7883. height: math.unit(785, "feet")
  7884. },
  7885. {
  7886. name: "Megamacro",
  7887. height: math.unit(24.5, "miles")
  7888. },
  7889. ]
  7890. ))
  7891. characterMakers.push(() => makeCharacter(
  7892. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7893. {
  7894. front: {
  7895. height: math.unit(6, "feet"),
  7896. weight: math.unit(150, "lb"),
  7897. name: "Front",
  7898. image: {
  7899. source: "./media/characters/goddess-elizabeth/front.svg",
  7900. extra: 1800 / 1525,
  7901. bottom: 0.005
  7902. }
  7903. },
  7904. foot: {
  7905. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7906. name: "Foot",
  7907. image: {
  7908. source: "./media/characters/goddess-elizabeth/foot.svg"
  7909. }
  7910. },
  7911. mouth: {
  7912. height: math.unit(6, "feet"),
  7913. name: "Mouth",
  7914. image: {
  7915. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7916. }
  7917. },
  7918. },
  7919. [
  7920. {
  7921. name: "Micro",
  7922. height: math.unit(12, "feet")
  7923. },
  7924. {
  7925. name: "Normal",
  7926. height: math.unit(80, "miles"),
  7927. default: true
  7928. },
  7929. {
  7930. name: "Macro",
  7931. height: math.unit(15000, "parsecs")
  7932. },
  7933. ]
  7934. ))
  7935. characterMakers.push(() => makeCharacter(
  7936. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7937. {
  7938. front: {
  7939. height: math.unit(5 + 9 / 12, "feet"),
  7940. weight: math.unit(144, "lb"),
  7941. name: "Front",
  7942. image: {
  7943. source: "./media/characters/kara/front.svg"
  7944. }
  7945. },
  7946. feet: {
  7947. height: math.unit(6 / 6.765, "feet"),
  7948. name: "Kara's Feet",
  7949. rename: true,
  7950. image: {
  7951. source: "./media/characters/kara/feet.svg"
  7952. }
  7953. },
  7954. },
  7955. [
  7956. {
  7957. name: "Normal",
  7958. height: math.unit(5 + 9 / 12, "feet")
  7959. },
  7960. {
  7961. name: "Macro",
  7962. height: math.unit(174, "feet"),
  7963. default: true
  7964. },
  7965. ]
  7966. ))
  7967. characterMakers.push(() => makeCharacter(
  7968. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7969. {
  7970. front: {
  7971. height: math.unit(18, "feet"),
  7972. weight: math.unit(4050, "lb"),
  7973. name: "Front",
  7974. image: {
  7975. source: "./media/characters/tyrone/front.svg",
  7976. extra: 2520 / 2402,
  7977. bottom: 0.025
  7978. }
  7979. },
  7980. },
  7981. [
  7982. {
  7983. name: "Normal",
  7984. height: math.unit(18, "feet"),
  7985. default: true
  7986. },
  7987. {
  7988. name: "Macro",
  7989. height: math.unit(300, "feet")
  7990. },
  7991. ]
  7992. ))
  7993. characterMakers.push(() => makeCharacter(
  7994. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7995. {
  7996. front: {
  7997. height: math.unit(7 + 8 / 12, "feet"),
  7998. weight: math.unit(120, "lb"),
  7999. name: "Front",
  8000. image: {
  8001. source: "./media/characters/danny/front.svg",
  8002. extra: 1490 / 1350
  8003. }
  8004. },
  8005. back: {
  8006. height: math.unit(7 + 8 / 12, "feet"),
  8007. weight: math.unit(120, "lb"),
  8008. name: "Back",
  8009. image: {
  8010. source: "./media/characters/danny/back.svg",
  8011. extra: 1490 / 1350
  8012. }
  8013. },
  8014. },
  8015. [
  8016. {
  8017. name: "Normal",
  8018. height: math.unit(7 + 8 / 12, "feet"),
  8019. default: true
  8020. },
  8021. ]
  8022. ))
  8023. characterMakers.push(() => makeCharacter(
  8024. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8025. {
  8026. front: {
  8027. height: math.unit(3.5, "inches"),
  8028. weight: math.unit(19, "grams"),
  8029. name: "Front",
  8030. image: {
  8031. source: "./media/characters/mallow/front.svg",
  8032. extra: 471 / 431
  8033. }
  8034. },
  8035. back: {
  8036. height: math.unit(3.5, "inches"),
  8037. weight: math.unit(19, "grams"),
  8038. name: "Back",
  8039. image: {
  8040. source: "./media/characters/mallow/back.svg",
  8041. extra: 471 / 431
  8042. }
  8043. },
  8044. },
  8045. [
  8046. {
  8047. name: "Normal",
  8048. height: math.unit(3.5, "inches"),
  8049. default: true
  8050. },
  8051. ]
  8052. ))
  8053. characterMakers.push(() => makeCharacter(
  8054. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8055. {
  8056. front: {
  8057. height: math.unit(9, "feet"),
  8058. weight: math.unit(230, "kg"),
  8059. name: "Front",
  8060. image: {
  8061. source: "./media/characters/starry-aqua/front.svg"
  8062. }
  8063. },
  8064. back: {
  8065. height: math.unit(9, "feet"),
  8066. weight: math.unit(230, "kg"),
  8067. name: "Back",
  8068. image: {
  8069. source: "./media/characters/starry-aqua/back.svg"
  8070. }
  8071. },
  8072. hand: {
  8073. height: math.unit(9 * 0.1168, "feet"),
  8074. name: "Hand",
  8075. image: {
  8076. source: "./media/characters/starry-aqua/hand.svg"
  8077. }
  8078. },
  8079. foot: {
  8080. height: math.unit(9 * 0.18, "feet"),
  8081. name: "Foot",
  8082. image: {
  8083. source: "./media/characters/starry-aqua/foot.svg"
  8084. }
  8085. }
  8086. },
  8087. [
  8088. {
  8089. name: "Micro",
  8090. height: math.unit(3, "inches")
  8091. },
  8092. {
  8093. name: "Normal",
  8094. height: math.unit(9, "feet")
  8095. },
  8096. {
  8097. name: "Macro",
  8098. height: math.unit(300, "feet"),
  8099. default: true
  8100. },
  8101. {
  8102. name: "Megamacro",
  8103. height: math.unit(3200, "feet")
  8104. }
  8105. ]
  8106. ))
  8107. characterMakers.push(() => makeCharacter(
  8108. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8109. {
  8110. front: {
  8111. height: math.unit(6, "feet"),
  8112. weight: math.unit(230, "lb"),
  8113. name: "Front",
  8114. image: {
  8115. source: "./media/characters/luka/front.svg",
  8116. extra: 1,
  8117. bottom: 0.025
  8118. }
  8119. },
  8120. },
  8121. [
  8122. {
  8123. name: "Normal",
  8124. height: math.unit(12 + 8 / 12, "feet"),
  8125. default: true
  8126. },
  8127. {
  8128. name: "Minimacro",
  8129. height: math.unit(20, "feet")
  8130. },
  8131. {
  8132. name: "Macro",
  8133. height: math.unit(250, "feet")
  8134. },
  8135. {
  8136. name: "Megamacro",
  8137. height: math.unit(5, "miles")
  8138. },
  8139. {
  8140. name: "Gigamacro",
  8141. height: math.unit(8000, "miles")
  8142. },
  8143. ]
  8144. ))
  8145. characterMakers.push(() => makeCharacter(
  8146. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8147. {
  8148. front: {
  8149. height: math.unit(6, "feet"),
  8150. weight: math.unit(150, "lb"),
  8151. name: "Front",
  8152. image: {
  8153. source: "./media/characters/natalie-nightring/front.svg",
  8154. extra: 1,
  8155. bottom: 0.06
  8156. }
  8157. },
  8158. },
  8159. [
  8160. {
  8161. name: "Uh Oh",
  8162. height: math.unit(0.1, "mm")
  8163. },
  8164. {
  8165. name: "Small",
  8166. height: math.unit(3, "inches")
  8167. },
  8168. {
  8169. name: "Human Scale",
  8170. height: math.unit(6, "feet")
  8171. },
  8172. {
  8173. name: "Librarian",
  8174. height: math.unit(50, "feet"),
  8175. default: true
  8176. },
  8177. {
  8178. name: "Immense",
  8179. height: math.unit(200, "miles")
  8180. },
  8181. ]
  8182. ))
  8183. characterMakers.push(() => makeCharacter(
  8184. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8185. {
  8186. front: {
  8187. height: math.unit(6, "feet"),
  8188. weight: math.unit(180, "lbs"),
  8189. name: "Front",
  8190. image: {
  8191. source: "./media/characters/danni-rosie/front.svg",
  8192. extra: 1260 / 1128,
  8193. bottom: 0.022
  8194. }
  8195. },
  8196. },
  8197. [
  8198. {
  8199. name: "Micro",
  8200. height: math.unit(2, "inches"),
  8201. default: true
  8202. },
  8203. ]
  8204. ))
  8205. characterMakers.push(() => makeCharacter(
  8206. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8207. {
  8208. front: {
  8209. height: math.unit(5 + 9 / 12, "feet"),
  8210. weight: math.unit(220, "lb"),
  8211. name: "Front",
  8212. image: {
  8213. source: "./media/characters/samantha-kruse/front.svg",
  8214. extra: (985 / 935),
  8215. bottom: 0.03
  8216. }
  8217. },
  8218. frontUndressed: {
  8219. height: math.unit(5 + 9 / 12, "feet"),
  8220. weight: math.unit(220, "lb"),
  8221. name: "Front (Undressed)",
  8222. image: {
  8223. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8224. extra: (973 / 923),
  8225. bottom: 0.025
  8226. }
  8227. },
  8228. fat: {
  8229. height: math.unit(5 + 9 / 12, "feet"),
  8230. weight: math.unit(900, "lb"),
  8231. name: "Front (Fat)",
  8232. image: {
  8233. source: "./media/characters/samantha-kruse/fat.svg",
  8234. extra: 2688 / 2561
  8235. }
  8236. },
  8237. },
  8238. [
  8239. {
  8240. name: "Normal",
  8241. height: math.unit(5 + 9 / 12, "feet"),
  8242. default: true
  8243. }
  8244. ]
  8245. ))
  8246. characterMakers.push(() => makeCharacter(
  8247. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8248. {
  8249. back: {
  8250. height: math.unit(5 + 4 / 12, "feet"),
  8251. weight: math.unit(4963, "lb"),
  8252. name: "Back",
  8253. image: {
  8254. source: "./media/characters/amelia-rosie/back.svg",
  8255. extra: 1113 / 963,
  8256. bottom: 0.01
  8257. }
  8258. },
  8259. },
  8260. [
  8261. {
  8262. name: "Level 0",
  8263. height: math.unit(5 + 4 / 12, "feet")
  8264. },
  8265. {
  8266. name: "Level 1",
  8267. height: math.unit(164597, "feet"),
  8268. default: true
  8269. },
  8270. {
  8271. name: "Level 2",
  8272. height: math.unit(956243, "miles")
  8273. },
  8274. {
  8275. name: "Level 3",
  8276. height: math.unit(29421709423, "miles")
  8277. },
  8278. {
  8279. name: "Level 4",
  8280. height: math.unit(154, "lightyears")
  8281. },
  8282. {
  8283. name: "Level 5",
  8284. height: math.unit(4738272, "lightyears")
  8285. },
  8286. {
  8287. name: "Level 6",
  8288. height: math.unit(145787152896, "lightyears")
  8289. },
  8290. ]
  8291. ))
  8292. characterMakers.push(() => makeCharacter(
  8293. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8294. {
  8295. front: {
  8296. height: math.unit(5 + 11 / 12, "feet"),
  8297. weight: math.unit(65, "kg"),
  8298. name: "Front",
  8299. image: {
  8300. source: "./media/characters/rook-kitara/front.svg",
  8301. extra: 1347 / 1274,
  8302. bottom: 0.005
  8303. }
  8304. },
  8305. },
  8306. [
  8307. {
  8308. name: "Totally Unfair",
  8309. height: math.unit(1.8, "mm")
  8310. },
  8311. {
  8312. name: "Lap Rookie",
  8313. height: math.unit(1.4, "feet")
  8314. },
  8315. {
  8316. name: "Normal",
  8317. height: math.unit(5 + 11 / 12, "feet"),
  8318. default: true
  8319. },
  8320. {
  8321. name: "How Did This Happen",
  8322. height: math.unit(80, "miles")
  8323. }
  8324. ]
  8325. ))
  8326. characterMakers.push(() => makeCharacter(
  8327. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8328. {
  8329. front: {
  8330. height: math.unit(7, "feet"),
  8331. weight: math.unit(300, "lb"),
  8332. name: "Front",
  8333. image: {
  8334. source: "./media/characters/pisces/front.svg",
  8335. extra: 2255 / 2115,
  8336. bottom: 0.03
  8337. }
  8338. },
  8339. back: {
  8340. height: math.unit(7, "feet"),
  8341. weight: math.unit(300, "lb"),
  8342. name: "Back",
  8343. image: {
  8344. source: "./media/characters/pisces/back.svg",
  8345. extra: 2146 / 2055,
  8346. bottom: 0.04
  8347. }
  8348. },
  8349. },
  8350. [
  8351. {
  8352. name: "Normal",
  8353. height: math.unit(7, "feet"),
  8354. default: true
  8355. },
  8356. {
  8357. name: "Swimming Pool",
  8358. height: math.unit(12.2, "meters")
  8359. },
  8360. {
  8361. name: "Olympic Swimming Pool",
  8362. height: math.unit(56.3, "meters")
  8363. },
  8364. {
  8365. name: "Lake Superior",
  8366. height: math.unit(93900, "meters")
  8367. },
  8368. {
  8369. name: "Mediterranean Sea",
  8370. height: math.unit(644457, "meters")
  8371. },
  8372. {
  8373. name: "World's Oceans",
  8374. height: math.unit(4567491, "meters")
  8375. },
  8376. ]
  8377. ))
  8378. characterMakers.push(() => makeCharacter(
  8379. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8380. {
  8381. front: {
  8382. height: math.unit(2.3, "meters"),
  8383. weight: math.unit(120, "kg"),
  8384. name: "Front",
  8385. image: {
  8386. source: "./media/characters/zelas/front.svg"
  8387. }
  8388. },
  8389. side: {
  8390. height: math.unit(2.3, "meters"),
  8391. weight: math.unit(120, "kg"),
  8392. name: "Side",
  8393. image: {
  8394. source: "./media/characters/zelas/side.svg"
  8395. }
  8396. },
  8397. back: {
  8398. height: math.unit(2.3, "meters"),
  8399. weight: math.unit(120, "kg"),
  8400. name: "Back",
  8401. image: {
  8402. source: "./media/characters/zelas/back.svg"
  8403. }
  8404. },
  8405. foot: {
  8406. height: math.unit(1.116, "feet"),
  8407. name: "Foot",
  8408. image: {
  8409. source: "./media/characters/zelas/foot.svg"
  8410. }
  8411. },
  8412. },
  8413. [
  8414. {
  8415. name: "Normal",
  8416. height: math.unit(2.3, "meters")
  8417. },
  8418. {
  8419. name: "Macro",
  8420. height: math.unit(30, "meters"),
  8421. default: true
  8422. },
  8423. ]
  8424. ))
  8425. characterMakers.push(() => makeCharacter(
  8426. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8427. {
  8428. front: {
  8429. height: math.unit(1, "inch"),
  8430. weight: math.unit(0.21, "grams"),
  8431. name: "Front",
  8432. image: {
  8433. source: "./media/characters/talbot/front.svg",
  8434. extra: 594 / 544
  8435. }
  8436. },
  8437. },
  8438. [
  8439. {
  8440. name: "Micro",
  8441. height: math.unit(1, "inch"),
  8442. default: true
  8443. },
  8444. ]
  8445. ))
  8446. characterMakers.push(() => makeCharacter(
  8447. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8448. {
  8449. front: {
  8450. height: math.unit(3 + 3 / 12, "feet"),
  8451. weight: math.unit(51.8, "lb"),
  8452. name: "Front",
  8453. image: {
  8454. source: "./media/characters/fliss/front.svg",
  8455. extra: 840 / 640
  8456. }
  8457. },
  8458. },
  8459. [
  8460. {
  8461. name: "Teeny Tiny",
  8462. height: math.unit(1, "mm")
  8463. },
  8464. {
  8465. name: "Small",
  8466. height: math.unit(1, "inch"),
  8467. default: true
  8468. },
  8469. {
  8470. name: "Standard Sylveon",
  8471. height: math.unit(3 + 3 / 12, "feet")
  8472. },
  8473. {
  8474. name: "Large Nuisance",
  8475. height: math.unit(33, "feet")
  8476. },
  8477. {
  8478. name: "City Filler",
  8479. height: math.unit(3000, "feet")
  8480. },
  8481. {
  8482. name: "New Horizon",
  8483. height: math.unit(6000, "miles")
  8484. },
  8485. ]
  8486. ))
  8487. characterMakers.push(() => makeCharacter(
  8488. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8489. {
  8490. front: {
  8491. height: math.unit(5, "cm"),
  8492. weight: math.unit(1.94, "g"),
  8493. name: "Front",
  8494. image: {
  8495. source: "./media/characters/fleta/front.svg",
  8496. extra: 835 / 803
  8497. }
  8498. },
  8499. back: {
  8500. height: math.unit(5, "cm"),
  8501. weight: math.unit(1.94, "g"),
  8502. name: "Back",
  8503. image: {
  8504. source: "./media/characters/fleta/back.svg",
  8505. extra: 835 / 803
  8506. }
  8507. },
  8508. },
  8509. [
  8510. {
  8511. name: "Micro",
  8512. height: math.unit(5, "cm"),
  8513. default: true
  8514. },
  8515. ]
  8516. ))
  8517. characterMakers.push(() => makeCharacter(
  8518. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8519. {
  8520. front: {
  8521. height: math.unit(6, "feet"),
  8522. weight: math.unit(225, "lb"),
  8523. name: "Front",
  8524. image: {
  8525. source: "./media/characters/dominic/front.svg",
  8526. extra: 1770 / 1620,
  8527. bottom: 0.025
  8528. }
  8529. },
  8530. back: {
  8531. height: math.unit(6, "feet"),
  8532. weight: math.unit(225, "lb"),
  8533. name: "Back",
  8534. image: {
  8535. source: "./media/characters/dominic/back.svg",
  8536. extra: 1745 / 1620,
  8537. bottom: 0.065
  8538. }
  8539. },
  8540. },
  8541. [
  8542. {
  8543. name: "Nano",
  8544. height: math.unit(0.1, "mm")
  8545. },
  8546. {
  8547. name: "Micro-",
  8548. height: math.unit(1, "mm")
  8549. },
  8550. {
  8551. name: "Micro",
  8552. height: math.unit(4, "inches")
  8553. },
  8554. {
  8555. name: "Normal",
  8556. height: math.unit(6 + 4 / 12, "feet"),
  8557. default: true
  8558. },
  8559. {
  8560. name: "Macro",
  8561. height: math.unit(115, "feet")
  8562. },
  8563. {
  8564. name: "Macro+",
  8565. height: math.unit(955, "feet")
  8566. },
  8567. {
  8568. name: "Megamacro",
  8569. height: math.unit(8990, "feet")
  8570. },
  8571. {
  8572. name: "Gigmacro",
  8573. height: math.unit(9310, "miles")
  8574. },
  8575. {
  8576. name: "Teramacro",
  8577. height: math.unit(1567005010, "miles")
  8578. },
  8579. {
  8580. name: "Examacro",
  8581. height: math.unit(1425, "parsecs")
  8582. },
  8583. ]
  8584. ))
  8585. characterMakers.push(() => makeCharacter(
  8586. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8587. {
  8588. front: {
  8589. height: math.unit(400, "feet"),
  8590. weight: math.unit(44444444, "lb"),
  8591. name: "Front",
  8592. image: {
  8593. source: "./media/characters/major-colonel/front.svg"
  8594. }
  8595. },
  8596. back: {
  8597. height: math.unit(400, "feet"),
  8598. weight: math.unit(44444444, "lb"),
  8599. name: "Back",
  8600. image: {
  8601. source: "./media/characters/major-colonel/back.svg"
  8602. }
  8603. },
  8604. },
  8605. [
  8606. {
  8607. name: "Macro",
  8608. height: math.unit(400, "feet"),
  8609. default: true
  8610. },
  8611. ]
  8612. ))
  8613. characterMakers.push(() => makeCharacter(
  8614. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8615. {
  8616. catFront: {
  8617. height: math.unit(6, "feet"),
  8618. weight: math.unit(120, "lb"),
  8619. name: "Front (Cat Side)",
  8620. image: {
  8621. source: "./media/characters/axel-lycan/cat-front.svg",
  8622. extra: 430 / 402,
  8623. bottom: 43 / 472.35
  8624. }
  8625. },
  8626. catBack: {
  8627. height: math.unit(6, "feet"),
  8628. weight: math.unit(120, "lb"),
  8629. name: "Back (Cat Side)",
  8630. image: {
  8631. source: "./media/characters/axel-lycan/cat-back.svg",
  8632. extra: 447 / 419,
  8633. bottom: 23.3 / 469
  8634. }
  8635. },
  8636. wolfFront: {
  8637. height: math.unit(6, "feet"),
  8638. weight: math.unit(120, "lb"),
  8639. name: "Front (Wolf Side)",
  8640. image: {
  8641. source: "./media/characters/axel-lycan/wolf-front.svg",
  8642. extra: 485 / 456,
  8643. bottom: 19 / 504
  8644. }
  8645. },
  8646. wolfBack: {
  8647. height: math.unit(6, "feet"),
  8648. weight: math.unit(120, "lb"),
  8649. name: "Back (Wolf Side)",
  8650. image: {
  8651. source: "./media/characters/axel-lycan/wolf-back.svg",
  8652. extra: 475 / 438,
  8653. bottom: 39.2 / 514
  8654. }
  8655. },
  8656. },
  8657. [
  8658. {
  8659. name: "Macro",
  8660. height: math.unit(1, "km"),
  8661. default: true
  8662. },
  8663. ]
  8664. ))
  8665. characterMakers.push(() => makeCharacter(
  8666. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8667. {
  8668. front: {
  8669. height: math.unit(5 + 9 / 12, "feet"),
  8670. weight: math.unit(175, "lb"),
  8671. name: "Front",
  8672. image: {
  8673. source: "./media/characters/vanrel-hyena/front.svg",
  8674. extra: 1086 / 1010,
  8675. bottom: 0.04
  8676. }
  8677. },
  8678. },
  8679. [
  8680. {
  8681. name: "Normal",
  8682. height: math.unit(5 + 9 / 12, "feet"),
  8683. default: true
  8684. },
  8685. ]
  8686. ))
  8687. characterMakers.push(() => makeCharacter(
  8688. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8689. {
  8690. front: {
  8691. height: math.unit(6, "feet"),
  8692. weight: math.unit(103, "lb"),
  8693. name: "Front",
  8694. image: {
  8695. source: "./media/characters/abbott-absol/front.svg",
  8696. extra: 2010 / 1842
  8697. }
  8698. },
  8699. },
  8700. [
  8701. {
  8702. name: "Megamicro",
  8703. height: math.unit(0.1, "mm")
  8704. },
  8705. {
  8706. name: "Micro",
  8707. height: math.unit(1, "inch")
  8708. },
  8709. {
  8710. name: "Normal",
  8711. height: math.unit(6, "feet"),
  8712. default: true
  8713. },
  8714. ]
  8715. ))
  8716. characterMakers.push(() => makeCharacter(
  8717. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8718. {
  8719. front: {
  8720. height: math.unit(6, "feet"),
  8721. weight: math.unit(264, "lb"),
  8722. name: "Front",
  8723. image: {
  8724. source: "./media/characters/hector/front.svg",
  8725. extra: 2280 / 2130,
  8726. bottom: 0.07
  8727. }
  8728. },
  8729. },
  8730. [
  8731. {
  8732. name: "Normal",
  8733. height: math.unit(12.25, "foot"),
  8734. default: true
  8735. },
  8736. {
  8737. name: "Macro",
  8738. height: math.unit(160, "feet")
  8739. },
  8740. ]
  8741. ))
  8742. characterMakers.push(() => makeCharacter(
  8743. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8744. {
  8745. front: {
  8746. height: math.unit(6, "feet"),
  8747. weight: math.unit(150, "lb"),
  8748. name: "Front",
  8749. image: {
  8750. source: "./media/characters/sal/front.svg",
  8751. extra: 1846 / 1699,
  8752. bottom: 0.04
  8753. }
  8754. },
  8755. },
  8756. [
  8757. {
  8758. name: "Megamacro",
  8759. height: math.unit(10, "miles"),
  8760. default: true
  8761. },
  8762. ]
  8763. ))
  8764. characterMakers.push(() => makeCharacter(
  8765. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8766. {
  8767. front: {
  8768. height: math.unit(3, "meters"),
  8769. weight: math.unit(450, "kg"),
  8770. name: "front",
  8771. image: {
  8772. source: "./media/characters/ranger/front.svg",
  8773. extra: 2401 / 2243,
  8774. bottom: 0.05
  8775. }
  8776. },
  8777. },
  8778. [
  8779. {
  8780. name: "Normal",
  8781. height: math.unit(3, "meters"),
  8782. default: true
  8783. },
  8784. ]
  8785. ))
  8786. characterMakers.push(() => makeCharacter(
  8787. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8788. {
  8789. front: {
  8790. height: math.unit(14, "feet"),
  8791. weight: math.unit(800, "kg"),
  8792. name: "Front",
  8793. image: {
  8794. source: "./media/characters/theresa/front.svg",
  8795. extra: 3575 / 3346,
  8796. bottom: 0.03
  8797. }
  8798. },
  8799. },
  8800. [
  8801. {
  8802. name: "Normal",
  8803. height: math.unit(14, "feet"),
  8804. default: true
  8805. },
  8806. ]
  8807. ))
  8808. characterMakers.push(() => makeCharacter(
  8809. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8810. {
  8811. front: {
  8812. height: math.unit(6, "feet"),
  8813. weight: math.unit(3, "kg"),
  8814. name: "Front",
  8815. image: {
  8816. source: "./media/characters/ine/front.svg",
  8817. extra: 678 / 539,
  8818. bottom: 0.023
  8819. }
  8820. },
  8821. },
  8822. [
  8823. {
  8824. name: "Normal",
  8825. height: math.unit(2.265, "feet"),
  8826. default: true
  8827. },
  8828. ]
  8829. ))
  8830. characterMakers.push(() => makeCharacter(
  8831. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8832. {
  8833. front: {
  8834. height: math.unit(5, "feet"),
  8835. weight: math.unit(30, "kg"),
  8836. name: "Front",
  8837. image: {
  8838. source: "./media/characters/vial/front.svg",
  8839. extra: 1365 / 1277,
  8840. bottom: 0.04
  8841. }
  8842. },
  8843. },
  8844. [
  8845. {
  8846. name: "Normal",
  8847. height: math.unit(5, "feet"),
  8848. default: true
  8849. },
  8850. ]
  8851. ))
  8852. characterMakers.push(() => makeCharacter(
  8853. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8854. {
  8855. side: {
  8856. height: math.unit(3.4, "meters"),
  8857. weight: math.unit(1000, "lb"),
  8858. name: "Side",
  8859. image: {
  8860. source: "./media/characters/rovoska/side.svg",
  8861. extra: 4403 / 1515
  8862. }
  8863. },
  8864. },
  8865. [
  8866. {
  8867. name: "Normal",
  8868. height: math.unit(3.4, "meters"),
  8869. default: true
  8870. },
  8871. ]
  8872. ))
  8873. characterMakers.push(() => makeCharacter(
  8874. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8875. {
  8876. front: {
  8877. height: math.unit(8, "feet"),
  8878. weight: math.unit(315, "lb"),
  8879. name: "Front",
  8880. image: {
  8881. source: "./media/characters/gunner-rotthbauer/front.svg"
  8882. }
  8883. },
  8884. back: {
  8885. height: math.unit(8, "feet"),
  8886. weight: math.unit(315, "lb"),
  8887. name: "Back",
  8888. image: {
  8889. source: "./media/characters/gunner-rotthbauer/back.svg"
  8890. }
  8891. },
  8892. },
  8893. [
  8894. {
  8895. name: "Micro",
  8896. height: math.unit(3.5, "inches")
  8897. },
  8898. {
  8899. name: "Normal",
  8900. height: math.unit(8, "feet"),
  8901. default: true
  8902. },
  8903. {
  8904. name: "Macro",
  8905. height: math.unit(250, "feet")
  8906. },
  8907. {
  8908. name: "Megamacro",
  8909. height: math.unit(1, "AU")
  8910. },
  8911. ]
  8912. ))
  8913. characterMakers.push(() => makeCharacter(
  8914. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8915. {
  8916. front: {
  8917. height: math.unit(5 + 5 / 12, "feet"),
  8918. weight: math.unit(140, "lb"),
  8919. name: "Front",
  8920. image: {
  8921. source: "./media/characters/allatia/front.svg",
  8922. extra: 1227 / 1180,
  8923. bottom: 0.027
  8924. }
  8925. },
  8926. },
  8927. [
  8928. {
  8929. name: "Normal",
  8930. height: math.unit(5 + 5 / 12, "feet")
  8931. },
  8932. {
  8933. name: "Macro",
  8934. height: math.unit(250, "feet"),
  8935. default: true
  8936. },
  8937. {
  8938. name: "Megamacro",
  8939. height: math.unit(8, "miles")
  8940. }
  8941. ]
  8942. ))
  8943. characterMakers.push(() => makeCharacter(
  8944. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8945. {
  8946. front: {
  8947. height: math.unit(6, "feet"),
  8948. weight: math.unit(120, "lb"),
  8949. name: "Front",
  8950. image: {
  8951. source: "./media/characters/tene/front.svg",
  8952. extra: 1728 / 1578,
  8953. bottom: 0.022
  8954. }
  8955. },
  8956. stomping: {
  8957. height: math.unit(2.025, "meters"),
  8958. weight: math.unit(120, "lb"),
  8959. name: "Stomping",
  8960. image: {
  8961. source: "./media/characters/tene/stomping.svg",
  8962. extra: 938 / 873,
  8963. bottom: 0.01
  8964. }
  8965. },
  8966. sitting: {
  8967. height: math.unit(1, "meter"),
  8968. weight: math.unit(120, "lb"),
  8969. name: "Sitting",
  8970. image: {
  8971. source: "./media/characters/tene/sitting.svg",
  8972. extra: 437 / 415,
  8973. bottom: 0.1
  8974. }
  8975. },
  8976. feral: {
  8977. height: math.unit(3.9, "feet"),
  8978. weight: math.unit(250, "lb"),
  8979. name: "Feral",
  8980. image: {
  8981. source: "./media/characters/tene/feral.svg",
  8982. extra: 717 / 458,
  8983. bottom: 0.179
  8984. }
  8985. },
  8986. },
  8987. [
  8988. {
  8989. name: "Normal",
  8990. height: math.unit(6, "feet")
  8991. },
  8992. {
  8993. name: "Macro",
  8994. height: math.unit(300, "feet"),
  8995. default: true
  8996. },
  8997. {
  8998. name: "Megamacro",
  8999. height: math.unit(5, "miles")
  9000. },
  9001. ]
  9002. ))
  9003. characterMakers.push(() => makeCharacter(
  9004. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9005. {
  9006. side: {
  9007. height: math.unit(6, "feet"),
  9008. name: "Side",
  9009. image: {
  9010. source: "./media/characters/evander/side.svg",
  9011. extra: 877 / 477
  9012. }
  9013. },
  9014. },
  9015. [
  9016. {
  9017. name: "Normal",
  9018. height: math.unit(0.83, "meters"),
  9019. default: true
  9020. },
  9021. ]
  9022. ))
  9023. characterMakers.push(() => makeCharacter(
  9024. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9025. {
  9026. front: {
  9027. height: math.unit(12, "feet"),
  9028. weight: math.unit(1000, "lb"),
  9029. name: "Front",
  9030. image: {
  9031. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9032. extra: 1762 / 1611
  9033. }
  9034. },
  9035. back: {
  9036. height: math.unit(12, "feet"),
  9037. weight: math.unit(1000, "lb"),
  9038. name: "Back",
  9039. image: {
  9040. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9041. extra: 1762 / 1611
  9042. }
  9043. },
  9044. },
  9045. [
  9046. {
  9047. name: "Normal",
  9048. height: math.unit(12, "feet"),
  9049. default: true
  9050. },
  9051. {
  9052. name: "Kaiju",
  9053. height: math.unit(150, "feet")
  9054. },
  9055. ]
  9056. ))
  9057. characterMakers.push(() => makeCharacter(
  9058. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9059. {
  9060. front: {
  9061. height: math.unit(6, "feet"),
  9062. weight: math.unit(150, "lb"),
  9063. name: "Front",
  9064. image: {
  9065. source: "./media/characters/zero-alurus/front.svg"
  9066. }
  9067. },
  9068. back: {
  9069. height: math.unit(6, "feet"),
  9070. weight: math.unit(150, "lb"),
  9071. name: "Back",
  9072. image: {
  9073. source: "./media/characters/zero-alurus/back.svg"
  9074. }
  9075. },
  9076. },
  9077. [
  9078. {
  9079. name: "Normal",
  9080. height: math.unit(5 + 10 / 12, "feet")
  9081. },
  9082. {
  9083. name: "Macro",
  9084. height: math.unit(60, "feet"),
  9085. default: true
  9086. },
  9087. {
  9088. name: "Macro+",
  9089. height: math.unit(450, "feet")
  9090. },
  9091. ]
  9092. ))
  9093. characterMakers.push(() => makeCharacter(
  9094. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9095. {
  9096. front: {
  9097. height: math.unit(6, "feet"),
  9098. weight: math.unit(200, "lb"),
  9099. name: "Front",
  9100. image: {
  9101. source: "./media/characters/mega-shi/front.svg",
  9102. extra: 1279 / 1250,
  9103. bottom: 0.02
  9104. }
  9105. },
  9106. back: {
  9107. height: math.unit(6, "feet"),
  9108. weight: math.unit(200, "lb"),
  9109. name: "Back",
  9110. image: {
  9111. source: "./media/characters/mega-shi/back.svg",
  9112. extra: 1279 / 1250,
  9113. bottom: 0.02
  9114. }
  9115. },
  9116. },
  9117. [
  9118. {
  9119. name: "Micro",
  9120. height: math.unit(16 + 6 / 12, "feet")
  9121. },
  9122. {
  9123. name: "Third Dimension",
  9124. height: math.unit(40, "meters")
  9125. },
  9126. {
  9127. name: "Normal",
  9128. height: math.unit(660, "feet"),
  9129. default: true
  9130. },
  9131. {
  9132. name: "Megamacro",
  9133. height: math.unit(10, "miles")
  9134. },
  9135. {
  9136. name: "Planetary Launch",
  9137. height: math.unit(500, "miles")
  9138. },
  9139. {
  9140. name: "Interstellar",
  9141. height: math.unit(1e9, "miles")
  9142. },
  9143. {
  9144. name: "Leaving the Universe",
  9145. height: math.unit(1, "gigaparsec")
  9146. },
  9147. {
  9148. name: "Travelling Universes",
  9149. height: math.unit(30e15, "parsecs")
  9150. },
  9151. ]
  9152. ))
  9153. characterMakers.push(() => makeCharacter(
  9154. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9155. {
  9156. front: {
  9157. height: math.unit(6, "feet"),
  9158. weight: math.unit(150, "lb"),
  9159. name: "Front",
  9160. image: {
  9161. source: "./media/characters/odyssey/front.svg",
  9162. extra: 1782 / 1582,
  9163. bottom: 0.01
  9164. }
  9165. },
  9166. side: {
  9167. height: math.unit(5.7, "feet"),
  9168. weight: math.unit(140, "lb"),
  9169. name: "Side",
  9170. image: {
  9171. source: "./media/characters/odyssey/side.svg",
  9172. extra: 6462 / 5700
  9173. }
  9174. },
  9175. },
  9176. [
  9177. {
  9178. name: "Normal",
  9179. height: math.unit(5 + 4 / 12, "feet")
  9180. },
  9181. {
  9182. name: "Macro",
  9183. height: math.unit(1, "km")
  9184. },
  9185. {
  9186. name: "Megamacro",
  9187. height: math.unit(3000, "km")
  9188. },
  9189. {
  9190. name: "Gigamacro",
  9191. height: math.unit(1, "AU"),
  9192. default: true
  9193. },
  9194. {
  9195. name: "Omniversal",
  9196. height: math.unit(100e14, "lightyears")
  9197. },
  9198. ]
  9199. ))
  9200. characterMakers.push(() => makeCharacter(
  9201. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9202. {
  9203. front: {
  9204. height: math.unit(6, "feet"),
  9205. weight: math.unit(300, "lb"),
  9206. name: "Front",
  9207. image: {
  9208. source: "./media/characters/mekuto/front.svg",
  9209. extra: 921 / 832,
  9210. bottom: 0.03
  9211. }
  9212. },
  9213. hand: {
  9214. height: math.unit(6 / 10.24, "feet"),
  9215. name: "Hand",
  9216. image: {
  9217. source: "./media/characters/mekuto/hand.svg"
  9218. }
  9219. },
  9220. foot: {
  9221. height: math.unit(6 / 5.05, "feet"),
  9222. name: "Foot",
  9223. image: {
  9224. source: "./media/characters/mekuto/foot.svg"
  9225. }
  9226. },
  9227. },
  9228. [
  9229. {
  9230. name: "Minimicro",
  9231. height: math.unit(0.2, "inches")
  9232. },
  9233. {
  9234. name: "Micro",
  9235. height: math.unit(1.5, "inches")
  9236. },
  9237. {
  9238. name: "Normal",
  9239. height: math.unit(5 + 11 / 12, "feet"),
  9240. default: true
  9241. },
  9242. {
  9243. name: "Minimacro",
  9244. height: math.unit(17 + 9 / 12, "feet")
  9245. },
  9246. {
  9247. name: "Macro",
  9248. height: math.unit(177.5, "feet")
  9249. },
  9250. {
  9251. name: "Megamacro",
  9252. height: math.unit(152, "miles")
  9253. },
  9254. ]
  9255. ))
  9256. characterMakers.push(() => makeCharacter(
  9257. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9258. {
  9259. front: {
  9260. height: math.unit(6.5, "inches"),
  9261. weight: math.unit(13, "oz"),
  9262. name: "Front",
  9263. image: {
  9264. source: "./media/characters/dafydd-tomos/front.svg",
  9265. extra: 2990 / 2603,
  9266. bottom: 0.03
  9267. }
  9268. },
  9269. },
  9270. [
  9271. {
  9272. name: "Micro",
  9273. height: math.unit(6.5, "inches"),
  9274. default: true
  9275. },
  9276. ]
  9277. ))
  9278. characterMakers.push(() => makeCharacter(
  9279. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9280. {
  9281. front: {
  9282. height: math.unit(6, "feet"),
  9283. weight: math.unit(150, "lb"),
  9284. name: "Front",
  9285. image: {
  9286. source: "./media/characters/splinter/front.svg",
  9287. extra: 2990 / 2882,
  9288. bottom: 0.04
  9289. }
  9290. },
  9291. back: {
  9292. height: math.unit(6, "feet"),
  9293. weight: math.unit(150, "lb"),
  9294. name: "Back",
  9295. image: {
  9296. source: "./media/characters/splinter/back.svg",
  9297. extra: 2990 / 2882,
  9298. bottom: 0.04
  9299. }
  9300. },
  9301. },
  9302. [
  9303. {
  9304. name: "Normal",
  9305. height: math.unit(6, "feet")
  9306. },
  9307. {
  9308. name: "Macro",
  9309. height: math.unit(230, "meters"),
  9310. default: true
  9311. },
  9312. ]
  9313. ))
  9314. characterMakers.push(() => makeCharacter(
  9315. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9316. {
  9317. front: {
  9318. height: math.unit(4 + 10 / 12, "feet"),
  9319. weight: math.unit(480, "lb"),
  9320. name: "Front",
  9321. image: {
  9322. source: "./media/characters/snow-gabumon/front.svg",
  9323. extra: 1140 / 963,
  9324. bottom: 0.058
  9325. }
  9326. },
  9327. back: {
  9328. height: math.unit(4 + 10 / 12, "feet"),
  9329. weight: math.unit(480, "lb"),
  9330. name: "Back",
  9331. image: {
  9332. source: "./media/characters/snow-gabumon/back.svg",
  9333. extra: 1115 / 962,
  9334. bottom: 0.041
  9335. }
  9336. },
  9337. frontUndresed: {
  9338. height: math.unit(4 + 10 / 12, "feet"),
  9339. weight: math.unit(480, "lb"),
  9340. name: "Front (Undressed)",
  9341. image: {
  9342. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9343. extra: 1061 / 960,
  9344. bottom: 0.045
  9345. }
  9346. },
  9347. },
  9348. [
  9349. {
  9350. name: "Micro",
  9351. height: math.unit(1, "inch")
  9352. },
  9353. {
  9354. name: "Normal",
  9355. height: math.unit(4 + 10 / 12, "feet"),
  9356. default: true
  9357. },
  9358. {
  9359. name: "Macro",
  9360. height: math.unit(200, "feet")
  9361. },
  9362. {
  9363. name: "Megamacro",
  9364. height: math.unit(120, "miles")
  9365. },
  9366. {
  9367. name: "Gigamacro",
  9368. height: math.unit(9800, "miles")
  9369. },
  9370. ]
  9371. ))
  9372. characterMakers.push(() => makeCharacter(
  9373. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9374. {
  9375. front: {
  9376. height: math.unit(1.7, "meters"),
  9377. weight: math.unit(140, "lb"),
  9378. name: "Front",
  9379. image: {
  9380. source: "./media/characters/moody/front.svg",
  9381. extra: 3226 / 3007,
  9382. bottom: 0.087
  9383. }
  9384. },
  9385. },
  9386. [
  9387. {
  9388. name: "Micro",
  9389. height: math.unit(1, "mm")
  9390. },
  9391. {
  9392. name: "Normal",
  9393. height: math.unit(1.7, "meters"),
  9394. default: true
  9395. },
  9396. {
  9397. name: "Macro",
  9398. height: math.unit(80, "meters")
  9399. },
  9400. {
  9401. name: "Macro+",
  9402. height: math.unit(500, "meters")
  9403. },
  9404. ]
  9405. ))
  9406. characterMakers.push(() => makeCharacter(
  9407. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9408. {
  9409. front: {
  9410. height: math.unit(6, "feet"),
  9411. weight: math.unit(150, "lb"),
  9412. name: "Front",
  9413. image: {
  9414. source: "./media/characters/zyas/front.svg",
  9415. extra: 1180 / 1120,
  9416. bottom: 0.045
  9417. }
  9418. },
  9419. },
  9420. [
  9421. {
  9422. name: "Normal",
  9423. height: math.unit(10, "feet"),
  9424. default: true
  9425. },
  9426. {
  9427. name: "Macro",
  9428. height: math.unit(500, "feet")
  9429. },
  9430. {
  9431. name: "Megamacro",
  9432. height: math.unit(5, "miles")
  9433. },
  9434. {
  9435. name: "Teramacro",
  9436. height: math.unit(150000, "miles")
  9437. },
  9438. ]
  9439. ))
  9440. characterMakers.push(() => makeCharacter(
  9441. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9442. {
  9443. front: {
  9444. height: math.unit(6, "feet"),
  9445. weight: math.unit(150, "lb"),
  9446. name: "Front",
  9447. image: {
  9448. source: "./media/characters/cuon/front.svg",
  9449. extra: 1390 / 1320,
  9450. bottom: 0.008
  9451. }
  9452. },
  9453. },
  9454. [
  9455. {
  9456. name: "Micro",
  9457. height: math.unit(3, "inches")
  9458. },
  9459. {
  9460. name: "Normal",
  9461. height: math.unit(18 + 9 / 12, "feet"),
  9462. default: true
  9463. },
  9464. {
  9465. name: "Macro",
  9466. height: math.unit(360, "feet")
  9467. },
  9468. {
  9469. name: "Megamacro",
  9470. height: math.unit(360, "miles")
  9471. },
  9472. ]
  9473. ))
  9474. characterMakers.push(() => makeCharacter(
  9475. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9476. {
  9477. front: {
  9478. height: math.unit(2.4, "meters"),
  9479. weight: math.unit(70, "kg"),
  9480. name: "Front",
  9481. image: {
  9482. source: "./media/characters/nyanuxk/front.svg",
  9483. extra: 1172 / 1084,
  9484. bottom: 0.065
  9485. }
  9486. },
  9487. side: {
  9488. height: math.unit(2.4, "meters"),
  9489. weight: math.unit(70, "kg"),
  9490. name: "Side",
  9491. image: {
  9492. source: "./media/characters/nyanuxk/side.svg",
  9493. extra: 1190 / 1132,
  9494. bottom: 0.007
  9495. }
  9496. },
  9497. back: {
  9498. height: math.unit(2.4, "meters"),
  9499. weight: math.unit(70, "kg"),
  9500. name: "Back",
  9501. image: {
  9502. source: "./media/characters/nyanuxk/back.svg",
  9503. extra: 1200 / 1141,
  9504. bottom: 0.015
  9505. }
  9506. },
  9507. foot: {
  9508. height: math.unit(0.52, "meters"),
  9509. name: "Foot",
  9510. image: {
  9511. source: "./media/characters/nyanuxk/foot.svg"
  9512. }
  9513. },
  9514. },
  9515. [
  9516. {
  9517. name: "Micro",
  9518. height: math.unit(2, "cm")
  9519. },
  9520. {
  9521. name: "Normal",
  9522. height: math.unit(2.4, "meters"),
  9523. default: true
  9524. },
  9525. {
  9526. name: "Smaller Macro",
  9527. height: math.unit(120, "meters")
  9528. },
  9529. {
  9530. name: "Bigger Macro",
  9531. height: math.unit(1.2, "km")
  9532. },
  9533. {
  9534. name: "Megamacro",
  9535. height: math.unit(15, "kilometers")
  9536. },
  9537. {
  9538. name: "Gigamacro",
  9539. height: math.unit(2000, "km")
  9540. },
  9541. {
  9542. name: "Teramacro",
  9543. height: math.unit(500000, "km")
  9544. },
  9545. ]
  9546. ))
  9547. characterMakers.push(() => makeCharacter(
  9548. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9549. {
  9550. side: {
  9551. height: math.unit(6, "feet"),
  9552. name: "Side",
  9553. image: {
  9554. source: "./media/characters/ailbhe/side.svg",
  9555. extra: 757 / 464,
  9556. bottom: 0.041
  9557. }
  9558. },
  9559. },
  9560. [
  9561. {
  9562. name: "Normal",
  9563. height: math.unit(1.07, "meters"),
  9564. default: true
  9565. },
  9566. ]
  9567. ))
  9568. characterMakers.push(() => makeCharacter(
  9569. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9570. {
  9571. front: {
  9572. height: math.unit(6, "feet"),
  9573. weight: math.unit(120, "kg"),
  9574. name: "Front",
  9575. image: {
  9576. source: "./media/characters/zevulfius/front.svg",
  9577. extra: 965 / 903
  9578. }
  9579. },
  9580. side: {
  9581. height: math.unit(6, "feet"),
  9582. weight: math.unit(120, "kg"),
  9583. name: "Side",
  9584. image: {
  9585. source: "./media/characters/zevulfius/side.svg",
  9586. extra: 939 / 900
  9587. }
  9588. },
  9589. back: {
  9590. height: math.unit(6, "feet"),
  9591. weight: math.unit(120, "kg"),
  9592. name: "Back",
  9593. image: {
  9594. source: "./media/characters/zevulfius/back.svg",
  9595. extra: 918 / 854,
  9596. bottom: 0.005
  9597. }
  9598. },
  9599. foot: {
  9600. height: math.unit(6 / 3.72, "feet"),
  9601. name: "Foot",
  9602. image: {
  9603. source: "./media/characters/zevulfius/foot.svg"
  9604. }
  9605. },
  9606. },
  9607. [
  9608. {
  9609. name: "Macro",
  9610. height: math.unit(750, "meters")
  9611. },
  9612. {
  9613. name: "Megamacro",
  9614. height: math.unit(20, "km"),
  9615. default: true
  9616. },
  9617. {
  9618. name: "Gigamacro",
  9619. height: math.unit(2000, "km")
  9620. },
  9621. {
  9622. name: "Teramacro",
  9623. height: math.unit(250000, "km")
  9624. },
  9625. ]
  9626. ))
  9627. characterMakers.push(() => makeCharacter(
  9628. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9629. {
  9630. front: {
  9631. height: math.unit(100, "feet"),
  9632. weight: math.unit(350, "kg"),
  9633. name: "Front",
  9634. image: {
  9635. source: "./media/characters/rikes/front.svg",
  9636. extra: 1565 / 1483,
  9637. bottom: 0.017
  9638. }
  9639. },
  9640. },
  9641. [
  9642. {
  9643. name: "Macro",
  9644. height: math.unit(100, "feet"),
  9645. default: true
  9646. },
  9647. ]
  9648. ))
  9649. characterMakers.push(() => makeCharacter(
  9650. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9651. {
  9652. anthro: {
  9653. height: math.unit(8, "feet"),
  9654. weight: math.unit(120, "kg"),
  9655. name: "Anthro",
  9656. image: {
  9657. source: "./media/characters/adam-silver-mane/anthro.svg",
  9658. extra: 5743 / 5339,
  9659. bottom: 0.07
  9660. }
  9661. },
  9662. taur: {
  9663. height: math.unit(16, "feet"),
  9664. weight: math.unit(1500, "kg"),
  9665. name: "Taur",
  9666. image: {
  9667. source: "./media/characters/adam-silver-mane/taur.svg",
  9668. extra: 1713 / 1571,
  9669. bottom: 0.01
  9670. }
  9671. },
  9672. },
  9673. [
  9674. {
  9675. name: "Normal",
  9676. height: math.unit(8, "feet")
  9677. },
  9678. {
  9679. name: "Minimacro",
  9680. height: math.unit(80, "feet")
  9681. },
  9682. {
  9683. name: "Macro",
  9684. height: math.unit(800, "feet"),
  9685. default: true
  9686. },
  9687. {
  9688. name: "Megamacro",
  9689. height: math.unit(8000, "feet")
  9690. },
  9691. {
  9692. name: "Gigamacro",
  9693. height: math.unit(800, "miles")
  9694. },
  9695. {
  9696. name: "Teramacro",
  9697. height: math.unit(80000, "miles")
  9698. },
  9699. {
  9700. name: "Celestial",
  9701. height: math.unit(8e6, "miles")
  9702. },
  9703. {
  9704. name: "Star Dragon",
  9705. height: math.unit(800000, "parsecs")
  9706. },
  9707. {
  9708. name: "Godly",
  9709. height: math.unit(800, "teraparsecs")
  9710. },
  9711. ]
  9712. ))
  9713. characterMakers.push(() => makeCharacter(
  9714. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9715. {
  9716. front: {
  9717. height: math.unit(6, "feet"),
  9718. weight: math.unit(150, "lb"),
  9719. name: "Front",
  9720. image: {
  9721. source: "./media/characters/ky'owin/front.svg",
  9722. extra: 3888 / 3068,
  9723. bottom: 0.015
  9724. }
  9725. },
  9726. },
  9727. [
  9728. {
  9729. name: "Normal",
  9730. height: math.unit(6 + 8 / 12, "feet")
  9731. },
  9732. {
  9733. name: "Large",
  9734. height: math.unit(68, "feet")
  9735. },
  9736. {
  9737. name: "Macro",
  9738. height: math.unit(132, "feet")
  9739. },
  9740. {
  9741. name: "Macro+",
  9742. height: math.unit(340, "feet")
  9743. },
  9744. {
  9745. name: "Macro++",
  9746. height: math.unit(680, "feet"),
  9747. default: true
  9748. },
  9749. {
  9750. name: "Megamacro",
  9751. height: math.unit(1, "mile")
  9752. },
  9753. {
  9754. name: "Megamacro+",
  9755. height: math.unit(10, "miles")
  9756. },
  9757. ]
  9758. ))
  9759. characterMakers.push(() => makeCharacter(
  9760. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9761. {
  9762. front: {
  9763. height: math.unit(4, "feet"),
  9764. weight: math.unit(50, "lb"),
  9765. name: "Front",
  9766. image: {
  9767. source: "./media/characters/mal/front.svg",
  9768. extra: 785 / 724,
  9769. bottom: 0.07
  9770. }
  9771. },
  9772. },
  9773. [
  9774. {
  9775. name: "Micro",
  9776. height: math.unit(4, "inches")
  9777. },
  9778. {
  9779. name: "Normal",
  9780. height: math.unit(4, "feet"),
  9781. default: true
  9782. },
  9783. {
  9784. name: "Macro",
  9785. height: math.unit(200, "feet")
  9786. },
  9787. ]
  9788. ))
  9789. characterMakers.push(() => makeCharacter(
  9790. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9791. {
  9792. front: {
  9793. height: math.unit(6, "feet"),
  9794. weight: math.unit(150, "lb"),
  9795. name: "Front",
  9796. image: {
  9797. source: "./media/characters/jordan-deware/front.svg",
  9798. extra: 1191 / 1012
  9799. }
  9800. },
  9801. },
  9802. [
  9803. {
  9804. name: "Nano",
  9805. height: math.unit(0.01, "mm")
  9806. },
  9807. {
  9808. name: "Minimicro",
  9809. height: math.unit(1, "mm")
  9810. },
  9811. {
  9812. name: "Micro",
  9813. height: math.unit(0.5, "inches")
  9814. },
  9815. {
  9816. name: "Normal",
  9817. height: math.unit(4, "feet"),
  9818. default: true
  9819. },
  9820. {
  9821. name: "Minimacro",
  9822. height: math.unit(40, "meters")
  9823. },
  9824. {
  9825. name: "Small Macro",
  9826. height: math.unit(400, "meters")
  9827. },
  9828. {
  9829. name: "Macro",
  9830. height: math.unit(4, "miles")
  9831. },
  9832. {
  9833. name: "Megamacro",
  9834. height: math.unit(40, "miles")
  9835. },
  9836. {
  9837. name: "Megamacro+",
  9838. height: math.unit(400, "miles")
  9839. },
  9840. {
  9841. name: "Gigamacro",
  9842. height: math.unit(400000, "miles")
  9843. },
  9844. ]
  9845. ))
  9846. characterMakers.push(() => makeCharacter(
  9847. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9848. {
  9849. side: {
  9850. height: math.unit(6, "feet"),
  9851. weight: math.unit(150, "lb"),
  9852. name: "Side",
  9853. image: {
  9854. source: "./media/characters/kimiko/side.svg",
  9855. extra: 600 / 358
  9856. }
  9857. },
  9858. },
  9859. [
  9860. {
  9861. name: "Normal",
  9862. height: math.unit(15, "feet"),
  9863. default: true
  9864. },
  9865. {
  9866. name: "Macro",
  9867. height: math.unit(220, "feet")
  9868. },
  9869. {
  9870. name: "Macro+",
  9871. height: math.unit(1450, "feet")
  9872. },
  9873. {
  9874. name: "Megamacro",
  9875. height: math.unit(11500, "feet")
  9876. },
  9877. {
  9878. name: "Gigamacro",
  9879. height: math.unit(9500, "miles")
  9880. },
  9881. {
  9882. name: "Teramacro",
  9883. height: math.unit(2208005005, "miles")
  9884. },
  9885. {
  9886. name: "Examacro",
  9887. height: math.unit(2750, "parsecs")
  9888. },
  9889. {
  9890. name: "Zettamacro",
  9891. height: math.unit(101500, "parsecs")
  9892. },
  9893. ]
  9894. ))
  9895. characterMakers.push(() => makeCharacter(
  9896. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9897. {
  9898. front: {
  9899. height: math.unit(6, "feet"),
  9900. weight: math.unit(70, "kg"),
  9901. name: "Front",
  9902. image: {
  9903. source: "./media/characters/andrew-sleepy/front.svg"
  9904. }
  9905. },
  9906. side: {
  9907. height: math.unit(6, "feet"),
  9908. weight: math.unit(70, "kg"),
  9909. name: "Side",
  9910. image: {
  9911. source: "./media/characters/andrew-sleepy/side.svg"
  9912. }
  9913. },
  9914. },
  9915. [
  9916. {
  9917. name: "Micro",
  9918. height: math.unit(1, "mm"),
  9919. default: true
  9920. },
  9921. ]
  9922. ))
  9923. characterMakers.push(() => makeCharacter(
  9924. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9925. {
  9926. front: {
  9927. height: math.unit(6, "feet"),
  9928. weight: math.unit(150, "lb"),
  9929. name: "Front",
  9930. image: {
  9931. source: "./media/characters/judio/front.svg",
  9932. extra: 1258 / 1110
  9933. }
  9934. },
  9935. },
  9936. [
  9937. {
  9938. name: "Normal",
  9939. height: math.unit(5 + 6 / 12, "feet")
  9940. },
  9941. {
  9942. name: "Macro",
  9943. height: math.unit(1000, "feet"),
  9944. default: true
  9945. },
  9946. {
  9947. name: "Megamacro",
  9948. height: math.unit(10, "miles")
  9949. },
  9950. ]
  9951. ))
  9952. characterMakers.push(() => makeCharacter(
  9953. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9954. {
  9955. front: {
  9956. height: math.unit(6, "feet"),
  9957. weight: math.unit(68, "kg"),
  9958. name: "Front",
  9959. image: {
  9960. source: "./media/characters/nomaxice/front.svg",
  9961. extra: 1498 / 1073,
  9962. bottom: 0.075
  9963. }
  9964. },
  9965. foot: {
  9966. height: math.unit(1.1, "feet"),
  9967. name: "Foot",
  9968. image: {
  9969. source: "./media/characters/nomaxice/foot.svg"
  9970. }
  9971. },
  9972. },
  9973. [
  9974. {
  9975. name: "Micro",
  9976. height: math.unit(8, "cm")
  9977. },
  9978. {
  9979. name: "Norm",
  9980. height: math.unit(1.82, "m")
  9981. },
  9982. {
  9983. name: "Norm+",
  9984. height: math.unit(8.8, "feet")
  9985. },
  9986. {
  9987. name: "Big",
  9988. height: math.unit(8, "meters"),
  9989. default: true
  9990. },
  9991. {
  9992. name: "Macro",
  9993. height: math.unit(18, "meters")
  9994. },
  9995. {
  9996. name: "Macro+",
  9997. height: math.unit(88, "meters")
  9998. },
  9999. ]
  10000. ))
  10001. characterMakers.push(() => makeCharacter(
  10002. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10003. {
  10004. front: {
  10005. height: math.unit(12, "feet"),
  10006. weight: math.unit(1.5, "tons"),
  10007. name: "Front",
  10008. image: {
  10009. source: "./media/characters/dydros/front.svg",
  10010. extra: 863 / 800,
  10011. bottom: 0.015
  10012. }
  10013. },
  10014. back: {
  10015. height: math.unit(12, "feet"),
  10016. weight: math.unit(1.5, "tons"),
  10017. name: "Back",
  10018. image: {
  10019. source: "./media/characters/dydros/back.svg",
  10020. extra: 900 / 843,
  10021. bottom: 0.005
  10022. }
  10023. },
  10024. },
  10025. [
  10026. {
  10027. name: "Normal",
  10028. height: math.unit(12, "feet"),
  10029. default: true
  10030. },
  10031. ]
  10032. ))
  10033. characterMakers.push(() => makeCharacter(
  10034. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10035. {
  10036. front: {
  10037. height: math.unit(6, "feet"),
  10038. weight: math.unit(100, "kg"),
  10039. name: "Front",
  10040. image: {
  10041. source: "./media/characters/riggi/front.svg",
  10042. extra: 5787 / 5303
  10043. }
  10044. },
  10045. hyper: {
  10046. height: math.unit(6 * 5 / 3, "feet"),
  10047. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10048. name: "Hyper",
  10049. image: {
  10050. source: "./media/characters/riggi/hyper.svg",
  10051. extra: 3595 / 3485
  10052. }
  10053. },
  10054. },
  10055. [
  10056. {
  10057. name: "Small Macro",
  10058. height: math.unit(50, "feet")
  10059. },
  10060. {
  10061. name: "Default",
  10062. height: math.unit(200, "feet"),
  10063. default: true
  10064. },
  10065. {
  10066. name: "Loom",
  10067. height: math.unit(10000, "feet")
  10068. },
  10069. {
  10070. name: "Cruising Altitude",
  10071. height: math.unit(30000, "feet")
  10072. },
  10073. {
  10074. name: "Megamacro",
  10075. height: math.unit(100, "miles")
  10076. },
  10077. {
  10078. name: "Continent Sized",
  10079. height: math.unit(2800, "miles")
  10080. },
  10081. {
  10082. name: "Earth Sized",
  10083. height: math.unit(8000, "miles")
  10084. },
  10085. ]
  10086. ))
  10087. characterMakers.push(() => makeCharacter(
  10088. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10089. {
  10090. front: {
  10091. height: math.unit(6, "feet"),
  10092. weight: math.unit(250, "lb"),
  10093. name: "Front",
  10094. image: {
  10095. source: "./media/characters/alexi/front.svg",
  10096. extra: 3483 / 3291,
  10097. bottom: 0.04
  10098. }
  10099. },
  10100. back: {
  10101. height: math.unit(6, "feet"),
  10102. weight: math.unit(250, "lb"),
  10103. name: "Back",
  10104. image: {
  10105. source: "./media/characters/alexi/back.svg",
  10106. extra: 3533 / 3356,
  10107. bottom: 0.021
  10108. }
  10109. },
  10110. frontTransforming: {
  10111. height: math.unit(8.58, "feet"),
  10112. weight: math.unit(1300, "lb"),
  10113. name: "Transforming",
  10114. image: {
  10115. source: "./media/characters/alexi/front-transforming.svg",
  10116. extra: 437 / 409,
  10117. bottom: 19 / 458.66
  10118. }
  10119. },
  10120. frontTransformed: {
  10121. height: math.unit(12.5, "feet"),
  10122. weight: math.unit(4000, "lb"),
  10123. name: "Transformed",
  10124. image: {
  10125. source: "./media/characters/alexi/front-transformed.svg",
  10126. extra: 639 / 614,
  10127. bottom: 30.55 / 671
  10128. }
  10129. },
  10130. },
  10131. [
  10132. {
  10133. name: "Normal",
  10134. height: math.unit(3, "meters"),
  10135. default: true
  10136. },
  10137. {
  10138. name: "Minimacro",
  10139. height: math.unit(30, "meters")
  10140. },
  10141. {
  10142. name: "Macro",
  10143. height: math.unit(500, "meters")
  10144. },
  10145. {
  10146. name: "Megamacro",
  10147. height: math.unit(9000, "km")
  10148. },
  10149. {
  10150. name: "Teramacro",
  10151. height: math.unit(384000, "km")
  10152. },
  10153. ]
  10154. ))
  10155. characterMakers.push(() => makeCharacter(
  10156. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10157. {
  10158. front: {
  10159. height: math.unit(6, "feet"),
  10160. weight: math.unit(150, "lb"),
  10161. name: "Front",
  10162. image: {
  10163. source: "./media/characters/kayroo/front.svg",
  10164. extra: 1153 / 1038,
  10165. bottom: 0.06
  10166. }
  10167. },
  10168. foot: {
  10169. height: math.unit(6, "feet"),
  10170. weight: math.unit(150, "lb"),
  10171. name: "Foot",
  10172. image: {
  10173. source: "./media/characters/kayroo/foot.svg"
  10174. }
  10175. },
  10176. },
  10177. [
  10178. {
  10179. name: "Normal",
  10180. height: math.unit(8, "feet"),
  10181. default: true
  10182. },
  10183. {
  10184. name: "Minimacro",
  10185. height: math.unit(250, "feet")
  10186. },
  10187. {
  10188. name: "Macro",
  10189. height: math.unit(2800, "feet")
  10190. },
  10191. {
  10192. name: "Megamacro",
  10193. height: math.unit(5200, "feet")
  10194. },
  10195. {
  10196. name: "Gigamacro",
  10197. height: math.unit(27000, "feet")
  10198. },
  10199. {
  10200. name: "Omega",
  10201. height: math.unit(45000, "feet")
  10202. },
  10203. ]
  10204. ))
  10205. characterMakers.push(() => makeCharacter(
  10206. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10207. {
  10208. front: {
  10209. height: math.unit(18, "feet"),
  10210. weight: math.unit(5800, "lb"),
  10211. name: "Front",
  10212. image: {
  10213. source: "./media/characters/rhys/front.svg",
  10214. extra: 3386 / 3090,
  10215. bottom: 0.07
  10216. }
  10217. },
  10218. },
  10219. [
  10220. {
  10221. name: "Normal",
  10222. height: math.unit(18, "feet"),
  10223. default: true
  10224. },
  10225. {
  10226. name: "Working Size",
  10227. height: math.unit(200, "feet")
  10228. },
  10229. {
  10230. name: "Demolition Size",
  10231. height: math.unit(2000, "feet")
  10232. },
  10233. {
  10234. name: "Maximum Licensed Size",
  10235. height: math.unit(5, "miles")
  10236. },
  10237. {
  10238. name: "Maximum Observed Size",
  10239. height: math.unit(10, "yottameters")
  10240. },
  10241. ]
  10242. ))
  10243. characterMakers.push(() => makeCharacter(
  10244. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10245. {
  10246. front: {
  10247. height: math.unit(6, "feet"),
  10248. weight: math.unit(250, "lb"),
  10249. name: "Front",
  10250. image: {
  10251. source: "./media/characters/toto/front.svg",
  10252. extra: 527 / 479,
  10253. bottom: 0.05
  10254. }
  10255. },
  10256. },
  10257. [
  10258. {
  10259. name: "Micro",
  10260. height: math.unit(3, "feet")
  10261. },
  10262. {
  10263. name: "Normal",
  10264. height: math.unit(10, "feet")
  10265. },
  10266. {
  10267. name: "Macro",
  10268. height: math.unit(150, "feet"),
  10269. default: true
  10270. },
  10271. {
  10272. name: "Megamacro",
  10273. height: math.unit(1200, "feet")
  10274. },
  10275. ]
  10276. ))
  10277. characterMakers.push(() => makeCharacter(
  10278. { name: "King", species: ["lion"], tags: ["anthro"] },
  10279. {
  10280. back: {
  10281. height: math.unit(6, "feet"),
  10282. weight: math.unit(150, "lb"),
  10283. name: "Back",
  10284. image: {
  10285. source: "./media/characters/king/back.svg"
  10286. }
  10287. },
  10288. },
  10289. [
  10290. {
  10291. name: "Micro",
  10292. height: math.unit(2, "inches")
  10293. },
  10294. {
  10295. name: "Normal",
  10296. height: math.unit(8, "feet")
  10297. },
  10298. {
  10299. name: "Macro",
  10300. height: math.unit(200, "feet"),
  10301. default: true
  10302. },
  10303. {
  10304. name: "Megamacro",
  10305. height: math.unit(50, "miles")
  10306. },
  10307. ]
  10308. ))
  10309. characterMakers.push(() => makeCharacter(
  10310. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10311. {
  10312. anthro: {
  10313. height: math.unit(6 + 5 / 12, "feet"),
  10314. weight: math.unit(280, "lb"),
  10315. name: "Anthro",
  10316. image: {
  10317. source: "./media/characters/cordite/anthro.svg",
  10318. extra: 1986 / 1905,
  10319. bottom: 0.025
  10320. }
  10321. },
  10322. feral: {
  10323. height: math.unit(2, "feet"),
  10324. weight: math.unit(90, "lb"),
  10325. name: "Feral",
  10326. image: {
  10327. source: "./media/characters/cordite/feral.svg",
  10328. extra: 1260 / 755,
  10329. bottom: 0.05
  10330. }
  10331. },
  10332. },
  10333. [
  10334. {
  10335. name: "Normal",
  10336. height: math.unit(6 + 5 / 12, "feet"),
  10337. default: true
  10338. },
  10339. ]
  10340. ))
  10341. characterMakers.push(() => makeCharacter(
  10342. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10343. {
  10344. front: {
  10345. height: math.unit(6, "feet"),
  10346. weight: math.unit(150, "lb"),
  10347. name: "Front",
  10348. image: {
  10349. source: "./media/characters/pianostrong/front.svg",
  10350. extra: 6577 / 6254,
  10351. bottom: 0.02
  10352. }
  10353. },
  10354. side: {
  10355. height: math.unit(6, "feet"),
  10356. weight: math.unit(150, "lb"),
  10357. name: "Side",
  10358. image: {
  10359. source: "./media/characters/pianostrong/side.svg",
  10360. extra: 6106 / 5730
  10361. }
  10362. },
  10363. back: {
  10364. height: math.unit(6, "feet"),
  10365. weight: math.unit(150, "lb"),
  10366. name: "Back",
  10367. image: {
  10368. source: "./media/characters/pianostrong/back.svg",
  10369. extra: 6085 / 5733,
  10370. bottom: 0.01
  10371. }
  10372. },
  10373. },
  10374. [
  10375. {
  10376. name: "Macro",
  10377. height: math.unit(100, "feet")
  10378. },
  10379. {
  10380. name: "Macro+",
  10381. height: math.unit(300, "feet"),
  10382. default: true
  10383. },
  10384. {
  10385. name: "Macro++",
  10386. height: math.unit(1000, "feet")
  10387. },
  10388. ]
  10389. ))
  10390. characterMakers.push(() => makeCharacter(
  10391. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10392. {
  10393. front: {
  10394. height: math.unit(6, "feet"),
  10395. weight: math.unit(150, "lb"),
  10396. name: "Front",
  10397. image: {
  10398. source: "./media/characters/kona/front.svg",
  10399. extra: 2960 / 2629,
  10400. bottom: 0.005
  10401. }
  10402. },
  10403. },
  10404. [
  10405. {
  10406. name: "Normal",
  10407. height: math.unit(11 + 8 / 12, "feet")
  10408. },
  10409. {
  10410. name: "Macro",
  10411. height: math.unit(850, "feet"),
  10412. default: true
  10413. },
  10414. {
  10415. name: "Macro+",
  10416. height: math.unit(1.5, "km"),
  10417. default: true
  10418. },
  10419. {
  10420. name: "Megamacro",
  10421. height: math.unit(80, "miles")
  10422. },
  10423. {
  10424. name: "Gigamacro",
  10425. height: math.unit(3500, "miles")
  10426. },
  10427. ]
  10428. ))
  10429. characterMakers.push(() => makeCharacter(
  10430. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10431. {
  10432. side: {
  10433. height: math.unit(1.9, "meters"),
  10434. weight: math.unit(326, "kg"),
  10435. name: "Side",
  10436. image: {
  10437. source: "./media/characters/levi/side.svg",
  10438. extra: 1704 / 1334,
  10439. bottom: 0.02
  10440. }
  10441. },
  10442. },
  10443. [
  10444. {
  10445. name: "Normal",
  10446. height: math.unit(1.9, "meters"),
  10447. default: true
  10448. },
  10449. {
  10450. name: "Macro",
  10451. height: math.unit(20, "meters")
  10452. },
  10453. {
  10454. name: "Macro+",
  10455. height: math.unit(200, "meters")
  10456. },
  10457. {
  10458. name: "Megamacro",
  10459. height: math.unit(2, "km")
  10460. },
  10461. {
  10462. name: "Megamacro+",
  10463. height: math.unit(20, "km")
  10464. },
  10465. {
  10466. name: "Gigamacro",
  10467. height: math.unit(2500, "km")
  10468. },
  10469. {
  10470. name: "Gigamacro+",
  10471. height: math.unit(120000, "km")
  10472. },
  10473. {
  10474. name: "Teramacro",
  10475. height: math.unit(7.77e6, "km")
  10476. },
  10477. ]
  10478. ))
  10479. characterMakers.push(() => makeCharacter(
  10480. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10481. {
  10482. front: {
  10483. height: math.unit(6 + 4 / 12, "feet"),
  10484. weight: math.unit(188, "lb"),
  10485. name: "Front",
  10486. image: {
  10487. source: "./media/characters/bmc/front.svg",
  10488. extra: 1067 / 1022,
  10489. bottom: 0.047
  10490. }
  10491. },
  10492. },
  10493. [
  10494. {
  10495. name: "Human-sized",
  10496. height: math.unit(6 + 4 / 12, "feet")
  10497. },
  10498. {
  10499. name: "Small",
  10500. height: math.unit(250, "feet")
  10501. },
  10502. {
  10503. name: "Normal",
  10504. height: math.unit(1250, "feet"),
  10505. default: true
  10506. },
  10507. {
  10508. name: "Good Day",
  10509. height: math.unit(88, "miles")
  10510. },
  10511. {
  10512. name: "Largest Measured Size",
  10513. height: math.unit(11.2e6, "lightyears")
  10514. },
  10515. ]
  10516. ))
  10517. characterMakers.push(() => makeCharacter(
  10518. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10519. {
  10520. front: {
  10521. height: math.unit(20, "feet"),
  10522. weight: math.unit(2016, "kg"),
  10523. name: "Front",
  10524. image: {
  10525. source: "./media/characters/sven-the-kaiju/front.svg",
  10526. extra: 1479 / 1449,
  10527. bottom: 0.05
  10528. }
  10529. },
  10530. },
  10531. [
  10532. {
  10533. name: "Fairy",
  10534. height: math.unit(6, "inches")
  10535. },
  10536. {
  10537. name: "Normal",
  10538. height: math.unit(20, "feet"),
  10539. default: true
  10540. },
  10541. {
  10542. name: "Rampage",
  10543. height: math.unit(200, "feet")
  10544. },
  10545. {
  10546. name: "Archfey Forest Guardian",
  10547. height: math.unit(1, "mile")
  10548. },
  10549. ]
  10550. ))
  10551. characterMakers.push(() => makeCharacter(
  10552. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10553. {
  10554. front: {
  10555. height: math.unit(4, "meters"),
  10556. weight: math.unit(2, "tons"),
  10557. name: "Front",
  10558. image: {
  10559. source: "./media/characters/marik/front.svg",
  10560. extra: 1057 / 1003,
  10561. bottom: 0.08
  10562. }
  10563. },
  10564. },
  10565. [
  10566. {
  10567. name: "Normal",
  10568. height: math.unit(4, "meters"),
  10569. default: true
  10570. },
  10571. {
  10572. name: "Macro",
  10573. height: math.unit(20, "meters")
  10574. },
  10575. {
  10576. name: "Megamacro",
  10577. height: math.unit(50, "km")
  10578. },
  10579. {
  10580. name: "Gigamacro",
  10581. height: math.unit(100, "km")
  10582. },
  10583. {
  10584. name: "Alpha Macro",
  10585. height: math.unit(7.88e7, "yottameters")
  10586. },
  10587. ]
  10588. ))
  10589. characterMakers.push(() => makeCharacter(
  10590. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10591. {
  10592. front: {
  10593. height: math.unit(6, "feet"),
  10594. weight: math.unit(110, "lb"),
  10595. name: "Front",
  10596. image: {
  10597. source: "./media/characters/mel/front.svg",
  10598. extra: 736 / 617,
  10599. bottom: 0.017
  10600. }
  10601. },
  10602. },
  10603. [
  10604. {
  10605. name: "Pico",
  10606. height: math.unit(3, "pm")
  10607. },
  10608. {
  10609. name: "Nano",
  10610. height: math.unit(3, "nm")
  10611. },
  10612. {
  10613. name: "Micro",
  10614. height: math.unit(0.3, "mm"),
  10615. default: true
  10616. },
  10617. {
  10618. name: "Micro+",
  10619. height: math.unit(3, "mm")
  10620. },
  10621. {
  10622. name: "Normal",
  10623. height: math.unit(5 + 10.5 / 12, "feet")
  10624. },
  10625. ]
  10626. ))
  10627. characterMakers.push(() => makeCharacter(
  10628. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10629. {
  10630. kaiju: {
  10631. height: math.unit(1.75, "meters"),
  10632. weight: math.unit(55, "kg"),
  10633. name: "Kaiju",
  10634. image: {
  10635. source: "./media/characters/lykonous/kaiju.svg",
  10636. extra: 1055 / 946,
  10637. bottom: 0.135
  10638. }
  10639. },
  10640. },
  10641. [
  10642. {
  10643. name: "Normal",
  10644. height: math.unit(2.5, "meters"),
  10645. default: true
  10646. },
  10647. {
  10648. name: "Kaiju Dragon",
  10649. height: math.unit(60, "meters")
  10650. },
  10651. {
  10652. name: "Mega Kaiju",
  10653. height: math.unit(120, "km")
  10654. },
  10655. {
  10656. name: "Giga Kaiju",
  10657. height: math.unit(200, "megameters")
  10658. },
  10659. {
  10660. name: "Terra Kaiju",
  10661. height: math.unit(400, "gigameters")
  10662. },
  10663. {
  10664. name: "Kaiju Dragon God",
  10665. height: math.unit(13000, "exaparsecs")
  10666. },
  10667. ]
  10668. ))
  10669. characterMakers.push(() => makeCharacter(
  10670. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10671. {
  10672. front: {
  10673. height: math.unit(6, "feet"),
  10674. weight: math.unit(150, "lb"),
  10675. name: "Front",
  10676. image: {
  10677. source: "./media/characters/blü/front.svg",
  10678. extra: 1883 / 1564,
  10679. bottom: 0.031
  10680. }
  10681. },
  10682. },
  10683. [
  10684. {
  10685. name: "Normal",
  10686. height: math.unit(13, "feet"),
  10687. default: true
  10688. },
  10689. {
  10690. name: "Big Boi",
  10691. height: math.unit(150, "meters")
  10692. },
  10693. {
  10694. name: "Mini Stomper",
  10695. height: math.unit(300, "meters")
  10696. },
  10697. {
  10698. name: "Macro",
  10699. height: math.unit(1000, "meters")
  10700. },
  10701. {
  10702. name: "Megamacro",
  10703. height: math.unit(11000, "meters")
  10704. },
  10705. {
  10706. name: "Gigamacro",
  10707. height: math.unit(11000, "km")
  10708. },
  10709. {
  10710. name: "Teramacro",
  10711. height: math.unit(420000, "km")
  10712. },
  10713. {
  10714. name: "Examacro",
  10715. height: math.unit(120, "parsecs")
  10716. },
  10717. {
  10718. name: "God Tho",
  10719. height: math.unit(98000000000, "parsecs")
  10720. },
  10721. ]
  10722. ))
  10723. characterMakers.push(() => makeCharacter(
  10724. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10725. {
  10726. taurFront: {
  10727. height: math.unit(6, "feet"),
  10728. weight: math.unit(200, "lb"),
  10729. name: "Taur (Front)",
  10730. image: {
  10731. source: "./media/characters/scales/taur-front.svg",
  10732. extra: 1,
  10733. bottom: 0.05
  10734. }
  10735. },
  10736. taurBack: {
  10737. height: math.unit(6, "feet"),
  10738. weight: math.unit(200, "lb"),
  10739. name: "Taur (Back)",
  10740. image: {
  10741. source: "./media/characters/scales/taur-back.svg",
  10742. extra: 1,
  10743. bottom: 0.08
  10744. }
  10745. },
  10746. anthro: {
  10747. height: math.unit(6 * 7 / 12, "feet"),
  10748. weight: math.unit(100, "lb"),
  10749. name: "Anthro",
  10750. image: {
  10751. source: "./media/characters/scales/anthro.svg",
  10752. extra: 1,
  10753. bottom: 0.06
  10754. }
  10755. },
  10756. },
  10757. [
  10758. {
  10759. name: "Normal",
  10760. height: math.unit(12, "feet"),
  10761. default: true
  10762. },
  10763. ]
  10764. ))
  10765. characterMakers.push(() => makeCharacter(
  10766. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10767. {
  10768. front: {
  10769. height: math.unit(6, "feet"),
  10770. weight: math.unit(150, "lb"),
  10771. name: "Front",
  10772. image: {
  10773. source: "./media/characters/koragos/front.svg",
  10774. extra: 841 / 794,
  10775. bottom: 0.035
  10776. }
  10777. },
  10778. back: {
  10779. height: math.unit(6, "feet"),
  10780. weight: math.unit(150, "lb"),
  10781. name: "Back",
  10782. image: {
  10783. source: "./media/characters/koragos/back.svg",
  10784. extra: 841 / 810,
  10785. bottom: 0.022
  10786. }
  10787. },
  10788. },
  10789. [
  10790. {
  10791. name: "Normal",
  10792. height: math.unit(6 + 11 / 12, "feet"),
  10793. default: true
  10794. },
  10795. {
  10796. name: "Macro",
  10797. height: math.unit(490, "feet")
  10798. },
  10799. {
  10800. name: "Megamacro",
  10801. height: math.unit(10, "miles")
  10802. },
  10803. {
  10804. name: "Gigamacro",
  10805. height: math.unit(50, "miles")
  10806. },
  10807. ]
  10808. ))
  10809. characterMakers.push(() => makeCharacter(
  10810. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10811. {
  10812. front: {
  10813. height: math.unit(6, "feet"),
  10814. weight: math.unit(250, "lb"),
  10815. name: "Front",
  10816. image: {
  10817. source: "./media/characters/xylrem/front.svg",
  10818. extra: 3323 / 3050,
  10819. bottom: 0.065
  10820. }
  10821. },
  10822. },
  10823. [
  10824. {
  10825. name: "Micro",
  10826. height: math.unit(4, "feet")
  10827. },
  10828. {
  10829. name: "Normal",
  10830. height: math.unit(16, "feet"),
  10831. default: true
  10832. },
  10833. {
  10834. name: "Macro",
  10835. height: math.unit(2720, "feet")
  10836. },
  10837. {
  10838. name: "Megamacro",
  10839. height: math.unit(25000, "miles")
  10840. },
  10841. ]
  10842. ))
  10843. characterMakers.push(() => makeCharacter(
  10844. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10845. {
  10846. front: {
  10847. height: math.unit(8, "feet"),
  10848. weight: math.unit(250, "kg"),
  10849. name: "Front",
  10850. image: {
  10851. source: "./media/characters/ikideru/front.svg",
  10852. extra: 930 / 870,
  10853. bottom: 0.087
  10854. }
  10855. },
  10856. back: {
  10857. height: math.unit(8, "feet"),
  10858. weight: math.unit(250, "kg"),
  10859. name: "Back",
  10860. image: {
  10861. source: "./media/characters/ikideru/back.svg",
  10862. extra: 919 / 852,
  10863. bottom: 0.055
  10864. }
  10865. },
  10866. },
  10867. [
  10868. {
  10869. name: "Rare",
  10870. height: math.unit(8, "feet"),
  10871. default: true
  10872. },
  10873. {
  10874. name: "Playful Loom",
  10875. height: math.unit(80, "feet")
  10876. },
  10877. {
  10878. name: "City Leaner",
  10879. height: math.unit(230, "feet")
  10880. },
  10881. {
  10882. name: "Megamacro",
  10883. height: math.unit(2500, "feet")
  10884. },
  10885. {
  10886. name: "Gigamacro",
  10887. height: math.unit(26400, "feet")
  10888. },
  10889. {
  10890. name: "Tectonic Shifter",
  10891. height: math.unit(1.7, "megameters")
  10892. },
  10893. {
  10894. name: "Planet Carer",
  10895. height: math.unit(21, "megameters")
  10896. },
  10897. {
  10898. name: "God",
  10899. height: math.unit(11157.22, "parsecs")
  10900. },
  10901. ]
  10902. ))
  10903. characterMakers.push(() => makeCharacter(
  10904. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10905. {
  10906. front: {
  10907. height: math.unit(6, "feet"),
  10908. weight: math.unit(120, "lb"),
  10909. name: "Front",
  10910. image: {
  10911. source: "./media/characters/neo/front.svg"
  10912. }
  10913. },
  10914. },
  10915. [
  10916. {
  10917. name: "Micro",
  10918. height: math.unit(2, "inches"),
  10919. default: true
  10920. },
  10921. {
  10922. name: "Human Size",
  10923. height: math.unit(5 + 8 / 12, "feet")
  10924. },
  10925. ]
  10926. ))
  10927. characterMakers.push(() => makeCharacter(
  10928. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10929. {
  10930. front: {
  10931. height: math.unit(13 + 10 / 12, "feet"),
  10932. weight: math.unit(5320, "lb"),
  10933. name: "Front",
  10934. image: {
  10935. source: "./media/characters/chauncey-chantz/front.svg",
  10936. extra: 1587 / 1435,
  10937. bottom: 0.02
  10938. }
  10939. },
  10940. },
  10941. [
  10942. {
  10943. name: "Normal",
  10944. height: math.unit(13 + 10 / 12, "feet"),
  10945. default: true
  10946. },
  10947. {
  10948. name: "Macro",
  10949. height: math.unit(45, "feet")
  10950. },
  10951. {
  10952. name: "Megamacro",
  10953. height: math.unit(250, "miles")
  10954. },
  10955. {
  10956. name: "Planetary",
  10957. height: math.unit(10000, "miles")
  10958. },
  10959. {
  10960. name: "Galactic",
  10961. height: math.unit(40000, "parsecs")
  10962. },
  10963. {
  10964. name: "Universal",
  10965. height: math.unit(1, "yottameter")
  10966. },
  10967. ]
  10968. ))
  10969. characterMakers.push(() => makeCharacter(
  10970. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10971. {
  10972. front: {
  10973. height: math.unit(6, "feet"),
  10974. weight: math.unit(150, "lb"),
  10975. name: "Front",
  10976. image: {
  10977. source: "./media/characters/epifox/front.svg",
  10978. extra: 1,
  10979. bottom: 0.075
  10980. }
  10981. },
  10982. },
  10983. [
  10984. {
  10985. name: "Micro",
  10986. height: math.unit(6, "inches")
  10987. },
  10988. {
  10989. name: "Normal",
  10990. height: math.unit(12, "feet"),
  10991. default: true
  10992. },
  10993. {
  10994. name: "Macro",
  10995. height: math.unit(3810, "feet")
  10996. },
  10997. {
  10998. name: "Megamacro",
  10999. height: math.unit(500, "miles")
  11000. },
  11001. ]
  11002. ))
  11003. characterMakers.push(() => makeCharacter(
  11004. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11005. {
  11006. front: {
  11007. height: math.unit(1.8796, "m"),
  11008. weight: math.unit(230, "lb"),
  11009. name: "Front",
  11010. image: {
  11011. source: "./media/characters/colin-t/front.svg",
  11012. extra: 1272 / 1193,
  11013. bottom: 0.07
  11014. }
  11015. },
  11016. },
  11017. [
  11018. {
  11019. name: "Micro",
  11020. height: math.unit(0.571, "meters")
  11021. },
  11022. {
  11023. name: "Normal",
  11024. height: math.unit(1.8796, "meters"),
  11025. default: true
  11026. },
  11027. {
  11028. name: "Tall",
  11029. height: math.unit(4, "meters")
  11030. },
  11031. {
  11032. name: "Macro",
  11033. height: math.unit(67.241, "meters")
  11034. },
  11035. {
  11036. name: "Megamacro",
  11037. height: math.unit(371.856, "meters")
  11038. },
  11039. {
  11040. name: "Planetary",
  11041. height: math.unit(12631.5689, "km")
  11042. },
  11043. ]
  11044. ))
  11045. characterMakers.push(() => makeCharacter(
  11046. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11047. {
  11048. front: {
  11049. height: math.unit(1.85, "meters"),
  11050. weight: math.unit(80, "kg"),
  11051. name: "Front",
  11052. image: {
  11053. source: "./media/characters/matvei/front.svg",
  11054. extra: 614 / 594,
  11055. bottom: 0.01
  11056. }
  11057. },
  11058. },
  11059. [
  11060. {
  11061. name: "Normal",
  11062. height: math.unit(1.85, "meters"),
  11063. default: true
  11064. },
  11065. ]
  11066. ))
  11067. characterMakers.push(() => makeCharacter(
  11068. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11069. {
  11070. front: {
  11071. height: math.unit(5 + 9 / 12, "feet"),
  11072. weight: math.unit(70, "lb"),
  11073. name: "Front",
  11074. image: {
  11075. source: "./media/characters/quincy/front.svg",
  11076. extra: 3041 / 2751
  11077. }
  11078. },
  11079. back: {
  11080. height: math.unit(5 + 9 / 12, "feet"),
  11081. weight: math.unit(70, "lb"),
  11082. name: "Back",
  11083. image: {
  11084. source: "./media/characters/quincy/back.svg",
  11085. extra: 3041 / 2751
  11086. }
  11087. },
  11088. flying: {
  11089. height: math.unit(5 + 4 / 12, "feet"),
  11090. weight: math.unit(70, "lb"),
  11091. name: "Flying",
  11092. image: {
  11093. source: "./media/characters/quincy/flying.svg",
  11094. extra: 1044 / 930
  11095. }
  11096. },
  11097. },
  11098. [
  11099. {
  11100. name: "Micro",
  11101. height: math.unit(3, "cm")
  11102. },
  11103. {
  11104. name: "Normal",
  11105. height: math.unit(5 + 9 / 12, "feet")
  11106. },
  11107. {
  11108. name: "Macro",
  11109. height: math.unit(200, "meters"),
  11110. default: true
  11111. },
  11112. {
  11113. name: "Megamacro",
  11114. height: math.unit(1000, "meters")
  11115. },
  11116. ]
  11117. ))
  11118. characterMakers.push(() => makeCharacter(
  11119. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11120. {
  11121. front: {
  11122. height: math.unit(4 + 7 / 12, "feet"),
  11123. weight: math.unit(150, "lb"),
  11124. name: "Front",
  11125. image: {
  11126. source: "./media/characters/vanrel/front.svg",
  11127. extra: 1,
  11128. bottom: 0.02
  11129. }
  11130. },
  11131. elemental: {
  11132. height: math.unit(3, "feet"),
  11133. weight: math.unit(150, "lb"),
  11134. name: "Elemental",
  11135. image: {
  11136. source: "./media/characters/vanrel/elemental.svg",
  11137. extra: 192.3 / 162.8,
  11138. bottom: 1.79 / 194.17
  11139. }
  11140. },
  11141. side: {
  11142. height: math.unit(4 + 7 / 12, "feet"),
  11143. weight: math.unit(150, "lb"),
  11144. name: "Side",
  11145. image: {
  11146. source: "./media/characters/vanrel/side.svg",
  11147. extra: 1,
  11148. bottom: 0.025
  11149. }
  11150. },
  11151. tome: {
  11152. height: math.unit(1.35, "feet"),
  11153. weight: math.unit(10, "lb"),
  11154. name: "Vanrel's Tome",
  11155. rename: true,
  11156. image: {
  11157. source: "./media/characters/vanrel/tome.svg"
  11158. }
  11159. },
  11160. beans: {
  11161. height: math.unit(0.89, "feet"),
  11162. name: "Beans",
  11163. image: {
  11164. source: "./media/characters/vanrel/beans.svg"
  11165. }
  11166. },
  11167. },
  11168. [
  11169. {
  11170. name: "Normal",
  11171. height: math.unit(4 + 7 / 12, "feet"),
  11172. default: true
  11173. },
  11174. ]
  11175. ))
  11176. characterMakers.push(() => makeCharacter(
  11177. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11178. {
  11179. front: {
  11180. height: math.unit(7 + 5 / 12, "feet"),
  11181. weight: math.unit(150, "lb"),
  11182. name: "Front",
  11183. image: {
  11184. source: "./media/characters/kuiper-vanrel/front.svg",
  11185. extra: 1118 / 1068,
  11186. bottom: 0.09
  11187. }
  11188. },
  11189. foot: {
  11190. height: math.unit(0.55, "meters"),
  11191. name: "Foot",
  11192. image: {
  11193. source: "./media/characters/kuiper-vanrel/foot.svg",
  11194. }
  11195. },
  11196. battle: {
  11197. height: math.unit(6.824, "feet"),
  11198. weight: math.unit(150, "lb"),
  11199. name: "Battle",
  11200. image: {
  11201. source: "./media/characters/kuiper-vanrel/battle.svg",
  11202. extra: 1466 / 1327,
  11203. bottom: 29 / 1492.5
  11204. }
  11205. },
  11206. battleAlt: {
  11207. height: math.unit(6.824, "feet"),
  11208. weight: math.unit(150, "lb"),
  11209. name: "Battle (Alt)",
  11210. image: {
  11211. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11212. extra: 2081 / 1965,
  11213. bottom: 40 / 2121
  11214. }
  11215. },
  11216. },
  11217. [
  11218. {
  11219. name: "Normal",
  11220. height: math.unit(7 + 5 / 12, "feet"),
  11221. default: true
  11222. },
  11223. ]
  11224. ))
  11225. characterMakers.push(() => makeCharacter(
  11226. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11227. {
  11228. front: {
  11229. height: math.unit(8 + 5 / 12, "feet"),
  11230. weight: math.unit(150, "lb"),
  11231. name: "Front",
  11232. image: {
  11233. source: "./media/characters/keset-vanrel/front.svg",
  11234. extra: 1150 / 1084,
  11235. bottom: 0.05
  11236. }
  11237. },
  11238. hand: {
  11239. height: math.unit(0.6, "meters"),
  11240. name: "Hand",
  11241. image: {
  11242. source: "./media/characters/keset-vanrel/hand.svg"
  11243. }
  11244. },
  11245. foot: {
  11246. height: math.unit(0.94978, "meters"),
  11247. name: "Foot",
  11248. image: {
  11249. source: "./media/characters/keset-vanrel/foot.svg"
  11250. }
  11251. },
  11252. battle: {
  11253. height: math.unit(7.408, "feet"),
  11254. weight: math.unit(150, "lb"),
  11255. name: "Battle",
  11256. image: {
  11257. source: "./media/characters/keset-vanrel/battle.svg",
  11258. extra: 1890 / 1386,
  11259. bottom: 73.28 / 1970
  11260. }
  11261. },
  11262. },
  11263. [
  11264. {
  11265. name: "Normal",
  11266. height: math.unit(8 + 5 / 12, "feet"),
  11267. default: true
  11268. },
  11269. ]
  11270. ))
  11271. characterMakers.push(() => makeCharacter(
  11272. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11273. {
  11274. front: {
  11275. height: math.unit(6, "feet"),
  11276. weight: math.unit(150, "lb"),
  11277. name: "Front",
  11278. image: {
  11279. source: "./media/characters/neos/front.svg",
  11280. extra: 1696 / 992,
  11281. bottom: 0.14
  11282. }
  11283. },
  11284. },
  11285. [
  11286. {
  11287. name: "Normal",
  11288. height: math.unit(54, "cm"),
  11289. default: true
  11290. },
  11291. {
  11292. name: "Macro",
  11293. height: math.unit(100, "m")
  11294. },
  11295. {
  11296. name: "Megamacro",
  11297. height: math.unit(10, "km")
  11298. },
  11299. {
  11300. name: "Megamacro+",
  11301. height: math.unit(100, "km")
  11302. },
  11303. {
  11304. name: "Gigamacro",
  11305. height: math.unit(100, "Mm")
  11306. },
  11307. {
  11308. name: "Teramacro",
  11309. height: math.unit(100, "Gm")
  11310. },
  11311. {
  11312. name: "Examacro",
  11313. height: math.unit(100, "Em")
  11314. },
  11315. {
  11316. name: "Godly",
  11317. height: math.unit(10000, "Ym")
  11318. },
  11319. {
  11320. name: "Beyond Godly",
  11321. height: math.unit(25, "multiverses")
  11322. },
  11323. ]
  11324. ))
  11325. characterMakers.push(() => makeCharacter(
  11326. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11327. {
  11328. feminine: {
  11329. height: math.unit(5, "feet"),
  11330. weight: math.unit(100, "lb"),
  11331. name: "Feminine",
  11332. image: {
  11333. source: "./media/characters/sammy-mouse/feminine.svg",
  11334. extra: 2526 / 2425,
  11335. bottom: 0.123
  11336. }
  11337. },
  11338. masculine: {
  11339. height: math.unit(5, "feet"),
  11340. weight: math.unit(100, "lb"),
  11341. name: "Masculine",
  11342. image: {
  11343. source: "./media/characters/sammy-mouse/masculine.svg",
  11344. extra: 2526 / 2425,
  11345. bottom: 0.123
  11346. }
  11347. },
  11348. },
  11349. [
  11350. {
  11351. name: "Micro",
  11352. height: math.unit(5, "inches")
  11353. },
  11354. {
  11355. name: "Normal",
  11356. height: math.unit(5, "feet"),
  11357. default: true
  11358. },
  11359. {
  11360. name: "Macro",
  11361. height: math.unit(60, "feet")
  11362. },
  11363. ]
  11364. ))
  11365. characterMakers.push(() => makeCharacter(
  11366. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11367. {
  11368. front: {
  11369. height: math.unit(4, "feet"),
  11370. weight: math.unit(50, "lb"),
  11371. name: "Front",
  11372. image: {
  11373. source: "./media/characters/kole/front.svg",
  11374. extra: 1423 / 1303,
  11375. bottom: 0.025
  11376. }
  11377. },
  11378. back: {
  11379. height: math.unit(4, "feet"),
  11380. weight: math.unit(50, "lb"),
  11381. name: "Back",
  11382. image: {
  11383. source: "./media/characters/kole/back.svg",
  11384. extra: 1426 / 1280,
  11385. bottom: 0.02
  11386. }
  11387. },
  11388. },
  11389. [
  11390. {
  11391. name: "Normal",
  11392. height: math.unit(4, "feet"),
  11393. default: true
  11394. },
  11395. ]
  11396. ))
  11397. characterMakers.push(() => makeCharacter(
  11398. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11399. {
  11400. front: {
  11401. height: math.unit(2 + 6 / 12, "feet"),
  11402. weight: math.unit(20, "lb"),
  11403. name: "Front",
  11404. image: {
  11405. source: "./media/characters/rufran/front.svg",
  11406. extra: 2041 / 1839,
  11407. bottom: 0.055
  11408. }
  11409. },
  11410. back: {
  11411. height: math.unit(2 + 6 / 12, "feet"),
  11412. weight: math.unit(20, "lb"),
  11413. name: "Back",
  11414. image: {
  11415. source: "./media/characters/rufran/back.svg",
  11416. extra: 2054 / 1839,
  11417. bottom: 0.01
  11418. }
  11419. },
  11420. hand: {
  11421. height: math.unit(0.2166, "meters"),
  11422. name: "Hand",
  11423. image: {
  11424. source: "./media/characters/rufran/hand.svg"
  11425. }
  11426. },
  11427. foot: {
  11428. height: math.unit(0.185, "meters"),
  11429. name: "Foot",
  11430. image: {
  11431. source: "./media/characters/rufran/foot.svg"
  11432. }
  11433. },
  11434. },
  11435. [
  11436. {
  11437. name: "Micro",
  11438. height: math.unit(1, "inch")
  11439. },
  11440. {
  11441. name: "Normal",
  11442. height: math.unit(2 + 6 / 12, "feet"),
  11443. default: true
  11444. },
  11445. {
  11446. name: "Big",
  11447. height: math.unit(60, "feet")
  11448. },
  11449. {
  11450. name: "Macro",
  11451. height: math.unit(325, "feet")
  11452. },
  11453. ]
  11454. ))
  11455. characterMakers.push(() => makeCharacter(
  11456. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11457. {
  11458. front: {
  11459. height: math.unit(0.3, "meters"),
  11460. weight: math.unit(3.5, "kg"),
  11461. name: "Front",
  11462. image: {
  11463. source: "./media/characters/chip/front.svg",
  11464. extra: 748 / 674
  11465. }
  11466. },
  11467. },
  11468. [
  11469. {
  11470. name: "Micro",
  11471. height: math.unit(1, "inch"),
  11472. default: true
  11473. },
  11474. ]
  11475. ))
  11476. characterMakers.push(() => makeCharacter(
  11477. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11478. {
  11479. side: {
  11480. height: math.unit(2.3, "meters"),
  11481. weight: math.unit(3500, "lb"),
  11482. name: "Side",
  11483. image: {
  11484. source: "./media/characters/torvid/side.svg",
  11485. extra: 1972 / 722,
  11486. bottom: 0.035
  11487. }
  11488. },
  11489. },
  11490. [
  11491. {
  11492. name: "Normal",
  11493. height: math.unit(2.3, "meters"),
  11494. default: true
  11495. },
  11496. ]
  11497. ))
  11498. characterMakers.push(() => makeCharacter(
  11499. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11500. {
  11501. front: {
  11502. height: math.unit(2, "meters"),
  11503. weight: math.unit(150.5, "kg"),
  11504. name: "Front",
  11505. image: {
  11506. source: "./media/characters/susan/front.svg",
  11507. extra: 693 / 635,
  11508. bottom: 0.05
  11509. }
  11510. },
  11511. },
  11512. [
  11513. {
  11514. name: "Megamacro",
  11515. height: math.unit(505, "miles"),
  11516. default: true
  11517. },
  11518. ]
  11519. ))
  11520. characterMakers.push(() => makeCharacter(
  11521. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11522. {
  11523. front: {
  11524. height: math.unit(6, "feet"),
  11525. weight: math.unit(150, "lb"),
  11526. name: "Front",
  11527. image: {
  11528. source: "./media/characters/raindrops/front.svg",
  11529. extra: 2655 / 2461,
  11530. bottom: 49 / 2705
  11531. }
  11532. },
  11533. back: {
  11534. height: math.unit(6, "feet"),
  11535. weight: math.unit(150, "lb"),
  11536. name: "Back",
  11537. image: {
  11538. source: "./media/characters/raindrops/back.svg",
  11539. extra: 2574 / 2400,
  11540. bottom: 65 / 2634
  11541. }
  11542. },
  11543. },
  11544. [
  11545. {
  11546. name: "Micro",
  11547. height: math.unit(6, "inches")
  11548. },
  11549. {
  11550. name: "Normal",
  11551. height: math.unit(6 + 2 / 12, "feet")
  11552. },
  11553. {
  11554. name: "Macro",
  11555. height: math.unit(131, "feet"),
  11556. default: true
  11557. },
  11558. {
  11559. name: "Megamacro",
  11560. height: math.unit(15, "miles")
  11561. },
  11562. {
  11563. name: "Gigamacro",
  11564. height: math.unit(4000, "miles")
  11565. },
  11566. {
  11567. name: "Teramacro",
  11568. height: math.unit(315000, "miles")
  11569. },
  11570. ]
  11571. ))
  11572. characterMakers.push(() => makeCharacter(
  11573. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11574. {
  11575. front: {
  11576. height: math.unit(2.794, "meters"),
  11577. weight: math.unit(325, "kg"),
  11578. name: "Front",
  11579. image: {
  11580. source: "./media/characters/tezwa/front.svg",
  11581. extra: 2083 / 1906,
  11582. bottom: 0.031
  11583. }
  11584. },
  11585. foot: {
  11586. height: math.unit(0.687, "meters"),
  11587. name: "Foot",
  11588. image: {
  11589. source: "./media/characters/tezwa/foot.svg"
  11590. }
  11591. },
  11592. },
  11593. [
  11594. {
  11595. name: "Normal",
  11596. height: math.unit(9 + 2 / 12, "feet"),
  11597. default: true
  11598. },
  11599. ]
  11600. ))
  11601. characterMakers.push(() => makeCharacter(
  11602. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11603. {
  11604. front: {
  11605. height: math.unit(58, "feet"),
  11606. weight: math.unit(89000, "lb"),
  11607. name: "Front",
  11608. image: {
  11609. source: "./media/characters/typhus/front.svg",
  11610. extra: 816 / 800,
  11611. bottom: 0.065
  11612. }
  11613. },
  11614. },
  11615. [
  11616. {
  11617. name: "Macro",
  11618. height: math.unit(58, "feet"),
  11619. default: true
  11620. },
  11621. ]
  11622. ))
  11623. characterMakers.push(() => makeCharacter(
  11624. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11625. {
  11626. front: {
  11627. height: math.unit(12, "feet"),
  11628. weight: math.unit(6, "tonnes"),
  11629. name: "Front",
  11630. image: {
  11631. source: "./media/characters/lyra-von-wulf/front.svg",
  11632. extra: 1,
  11633. bottom: 0.10
  11634. }
  11635. },
  11636. frontMecha: {
  11637. height: math.unit(12, "feet"),
  11638. weight: math.unit(12, "tonnes"),
  11639. name: "Front (Mecha)",
  11640. image: {
  11641. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11642. extra: 1,
  11643. bottom: 0.042
  11644. }
  11645. },
  11646. maw: {
  11647. height: math.unit(2.2, "feet"),
  11648. name: "Maw",
  11649. image: {
  11650. source: "./media/characters/lyra-von-wulf/maw.svg"
  11651. }
  11652. },
  11653. },
  11654. [
  11655. {
  11656. name: "Normal",
  11657. height: math.unit(12, "feet"),
  11658. default: true
  11659. },
  11660. {
  11661. name: "Classic",
  11662. height: math.unit(50, "feet")
  11663. },
  11664. {
  11665. name: "Macro",
  11666. height: math.unit(500, "feet")
  11667. },
  11668. {
  11669. name: "Megamacro",
  11670. height: math.unit(1, "mile")
  11671. },
  11672. {
  11673. name: "Gigamacro",
  11674. height: math.unit(400, "miles")
  11675. },
  11676. {
  11677. name: "Teramacro",
  11678. height: math.unit(22000, "miles")
  11679. },
  11680. {
  11681. name: "Solarmacro",
  11682. height: math.unit(8600000, "miles")
  11683. },
  11684. {
  11685. name: "Galactic",
  11686. height: math.unit(1057000, "lightyears")
  11687. },
  11688. ]
  11689. ))
  11690. characterMakers.push(() => makeCharacter(
  11691. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11692. {
  11693. front: {
  11694. height: math.unit(6 + 10 / 12, "feet"),
  11695. weight: math.unit(150, "lb"),
  11696. name: "Front",
  11697. image: {
  11698. source: "./media/characters/dixon/front.svg",
  11699. extra: 3361 / 3209,
  11700. bottom: 0.01
  11701. }
  11702. },
  11703. },
  11704. [
  11705. {
  11706. name: "Normal",
  11707. height: math.unit(6 + 10 / 12, "feet"),
  11708. default: true
  11709. },
  11710. {
  11711. name: "Big",
  11712. height: math.unit(12, "meters")
  11713. },
  11714. {
  11715. name: "Macro",
  11716. height: math.unit(500, "meters")
  11717. },
  11718. {
  11719. name: "Megamacro",
  11720. height: math.unit(2, "km")
  11721. },
  11722. ]
  11723. ))
  11724. characterMakers.push(() => makeCharacter(
  11725. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11726. {
  11727. front: {
  11728. height: math.unit(185, "cm"),
  11729. weight: math.unit(68, "kg"),
  11730. name: "Front",
  11731. image: {
  11732. source: "./media/characters/kauko/front.svg",
  11733. extra: 1455 / 1421,
  11734. bottom: 0.03
  11735. }
  11736. },
  11737. back: {
  11738. height: math.unit(185, "cm"),
  11739. weight: math.unit(68, "kg"),
  11740. name: "Back",
  11741. image: {
  11742. source: "./media/characters/kauko/back.svg",
  11743. extra: 1455 / 1421,
  11744. bottom: 0.004
  11745. }
  11746. },
  11747. },
  11748. [
  11749. {
  11750. name: "Normal",
  11751. height: math.unit(185, "cm"),
  11752. default: true
  11753. },
  11754. ]
  11755. ))
  11756. characterMakers.push(() => makeCharacter(
  11757. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11758. {
  11759. front: {
  11760. height: math.unit(6, "feet"),
  11761. weight: math.unit(150, "kg"),
  11762. name: "Front",
  11763. image: {
  11764. source: "./media/characters/varg/front.svg",
  11765. extra: 1108 / 1018,
  11766. bottom: 0.0375
  11767. }
  11768. },
  11769. },
  11770. [
  11771. {
  11772. name: "Normal",
  11773. height: math.unit(5, "meters")
  11774. },
  11775. {
  11776. name: "Macro",
  11777. height: math.unit(200, "meters")
  11778. },
  11779. {
  11780. name: "Megamacro",
  11781. height: math.unit(20, "kilometers")
  11782. },
  11783. {
  11784. name: "True Size",
  11785. height: math.unit(211, "km"),
  11786. default: true
  11787. },
  11788. {
  11789. name: "Gigamacro",
  11790. height: math.unit(1000, "km")
  11791. },
  11792. {
  11793. name: "Gigamacro+",
  11794. height: math.unit(8000, "km")
  11795. },
  11796. {
  11797. name: "Teramacro",
  11798. height: math.unit(1000000, "km")
  11799. },
  11800. ]
  11801. ))
  11802. characterMakers.push(() => makeCharacter(
  11803. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11804. {
  11805. front: {
  11806. height: math.unit(7 + 7 / 12, "feet"),
  11807. weight: math.unit(267, "lb"),
  11808. name: "Front",
  11809. image: {
  11810. source: "./media/characters/dayza/front.svg",
  11811. extra: 1262 / 1200,
  11812. bottom: 0.035
  11813. }
  11814. },
  11815. side: {
  11816. height: math.unit(7 + 7 / 12, "feet"),
  11817. weight: math.unit(267, "lb"),
  11818. name: "Side",
  11819. image: {
  11820. source: "./media/characters/dayza/side.svg",
  11821. extra: 1295 / 1245,
  11822. bottom: 0.05
  11823. }
  11824. },
  11825. back: {
  11826. height: math.unit(7 + 7 / 12, "feet"),
  11827. weight: math.unit(267, "lb"),
  11828. name: "Back",
  11829. image: {
  11830. source: "./media/characters/dayza/back.svg",
  11831. extra: 1241 / 1170
  11832. }
  11833. },
  11834. },
  11835. [
  11836. {
  11837. name: "Normal",
  11838. height: math.unit(7 + 7 / 12, "feet"),
  11839. default: true
  11840. },
  11841. {
  11842. name: "Macro",
  11843. height: math.unit(155, "feet")
  11844. },
  11845. ]
  11846. ))
  11847. characterMakers.push(() => makeCharacter(
  11848. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11849. {
  11850. front: {
  11851. height: math.unit(6 + 5 / 12, "feet"),
  11852. weight: math.unit(160, "lb"),
  11853. name: "Front",
  11854. image: {
  11855. source: "./media/characters/xanthos/front.svg",
  11856. extra: 1,
  11857. bottom: 0.04
  11858. }
  11859. },
  11860. back: {
  11861. height: math.unit(6 + 5 / 12, "feet"),
  11862. weight: math.unit(160, "lb"),
  11863. name: "Back",
  11864. image: {
  11865. source: "./media/characters/xanthos/back.svg",
  11866. extra: 1,
  11867. bottom: 0.03
  11868. }
  11869. },
  11870. hand: {
  11871. height: math.unit(0.928, "feet"),
  11872. name: "Hand",
  11873. image: {
  11874. source: "./media/characters/xanthos/hand.svg"
  11875. }
  11876. },
  11877. foot: {
  11878. height: math.unit(1.286, "feet"),
  11879. name: "Foot",
  11880. image: {
  11881. source: "./media/characters/xanthos/foot.svg"
  11882. }
  11883. },
  11884. },
  11885. [
  11886. {
  11887. name: "Normal",
  11888. height: math.unit(6 + 5 / 12, "feet"),
  11889. default: true
  11890. },
  11891. {
  11892. name: "Normal+",
  11893. height: math.unit(6, "meters")
  11894. },
  11895. {
  11896. name: "Macro",
  11897. height: math.unit(40, "feet")
  11898. },
  11899. {
  11900. name: "Macro+",
  11901. height: math.unit(200, "meters")
  11902. },
  11903. {
  11904. name: "Megamacro",
  11905. height: math.unit(20, "km")
  11906. },
  11907. {
  11908. name: "Megamacro+",
  11909. height: math.unit(100, "km")
  11910. },
  11911. ]
  11912. ))
  11913. characterMakers.push(() => makeCharacter(
  11914. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11915. {
  11916. front: {
  11917. height: math.unit(6 + 3 / 12, "feet"),
  11918. weight: math.unit(215, "lb"),
  11919. name: "Front",
  11920. image: {
  11921. source: "./media/characters/grynn/front.svg",
  11922. extra: 4627 / 4209,
  11923. bottom: 0.047
  11924. }
  11925. },
  11926. },
  11927. [
  11928. {
  11929. name: "Micro",
  11930. height: math.unit(6, "inches")
  11931. },
  11932. {
  11933. name: "Normal",
  11934. height: math.unit(6 + 3 / 12, "feet"),
  11935. default: true
  11936. },
  11937. {
  11938. name: "Big",
  11939. height: math.unit(104, "feet")
  11940. },
  11941. {
  11942. name: "Macro",
  11943. height: math.unit(944, "feet")
  11944. },
  11945. {
  11946. name: "Macro+",
  11947. height: math.unit(9480, "feet")
  11948. },
  11949. {
  11950. name: "Megamacro",
  11951. height: math.unit(78752, "feet")
  11952. },
  11953. {
  11954. name: "Megamacro+",
  11955. height: math.unit(630128, "feet")
  11956. },
  11957. {
  11958. name: "Megamacro++",
  11959. height: math.unit(3150695, "feet")
  11960. },
  11961. ]
  11962. ))
  11963. characterMakers.push(() => makeCharacter(
  11964. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11965. {
  11966. front: {
  11967. height: math.unit(7 + 5 / 12, "feet"),
  11968. weight: math.unit(450, "lb"),
  11969. name: "Front",
  11970. image: {
  11971. source: "./media/characters/mocha-aura/front.svg",
  11972. extra: 1907 / 1817,
  11973. bottom: 0.04
  11974. }
  11975. },
  11976. back: {
  11977. height: math.unit(7 + 5 / 12, "feet"),
  11978. weight: math.unit(450, "lb"),
  11979. name: "Back",
  11980. image: {
  11981. source: "./media/characters/mocha-aura/back.svg",
  11982. extra: 1900 / 1825,
  11983. bottom: 0.045
  11984. }
  11985. },
  11986. },
  11987. [
  11988. {
  11989. name: "Nano",
  11990. height: math.unit(1, "nm")
  11991. },
  11992. {
  11993. name: "Megamicro",
  11994. height: math.unit(1, "mm")
  11995. },
  11996. {
  11997. name: "Micro",
  11998. height: math.unit(3, "inches")
  11999. },
  12000. {
  12001. name: "Normal",
  12002. height: math.unit(7 + 5 / 12, "feet"),
  12003. default: true
  12004. },
  12005. {
  12006. name: "Macro",
  12007. height: math.unit(30, "feet")
  12008. },
  12009. {
  12010. name: "Megamacro",
  12011. height: math.unit(3500, "feet")
  12012. },
  12013. {
  12014. name: "Teramacro",
  12015. height: math.unit(500000, "miles")
  12016. },
  12017. {
  12018. name: "Petamacro",
  12019. height: math.unit(50000000000000000, "parsecs")
  12020. },
  12021. ]
  12022. ))
  12023. characterMakers.push(() => makeCharacter(
  12024. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12025. {
  12026. front: {
  12027. height: math.unit(6, "feet"),
  12028. weight: math.unit(150, "lb"),
  12029. name: "Front",
  12030. image: {
  12031. source: "./media/characters/ilisha-devya/front.svg",
  12032. extra: 1,
  12033. bottom: 0.175
  12034. }
  12035. },
  12036. back: {
  12037. height: math.unit(6, "feet"),
  12038. weight: math.unit(150, "lb"),
  12039. name: "Back",
  12040. image: {
  12041. source: "./media/characters/ilisha-devya/back.svg",
  12042. extra: 1,
  12043. bottom: 0.015
  12044. }
  12045. },
  12046. },
  12047. [
  12048. {
  12049. name: "Macro",
  12050. height: math.unit(500, "feet"),
  12051. default: true
  12052. },
  12053. {
  12054. name: "Megamacro",
  12055. height: math.unit(10, "miles")
  12056. },
  12057. {
  12058. name: "Gigamacro",
  12059. height: math.unit(100000, "miles")
  12060. },
  12061. {
  12062. name: "Examacro",
  12063. height: math.unit(1e9, "lightyears")
  12064. },
  12065. {
  12066. name: "Omniversal",
  12067. height: math.unit(1e33, "lightyears")
  12068. },
  12069. {
  12070. name: "Beyond Infinite",
  12071. height: math.unit(1e100, "lightyears")
  12072. },
  12073. ]
  12074. ))
  12075. characterMakers.push(() => makeCharacter(
  12076. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12077. {
  12078. Side: {
  12079. height: math.unit(6, "feet"),
  12080. weight: math.unit(150, "lb"),
  12081. name: "Side",
  12082. image: {
  12083. source: "./media/characters/mira/side.svg",
  12084. extra: 900 / 799,
  12085. bottom: 0.02
  12086. }
  12087. },
  12088. },
  12089. [
  12090. {
  12091. name: "Human Size",
  12092. height: math.unit(6, "feet")
  12093. },
  12094. {
  12095. name: "Macro",
  12096. height: math.unit(100, "feet"),
  12097. default: true
  12098. },
  12099. {
  12100. name: "Megamacro",
  12101. height: math.unit(10, "miles")
  12102. },
  12103. {
  12104. name: "Gigamacro",
  12105. height: math.unit(25000, "miles")
  12106. },
  12107. {
  12108. name: "Teramacro",
  12109. height: math.unit(300, "AU")
  12110. },
  12111. {
  12112. name: "Full Size",
  12113. height: math.unit(4.5e10, "lightyears")
  12114. },
  12115. ]
  12116. ))
  12117. characterMakers.push(() => makeCharacter(
  12118. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12119. {
  12120. front: {
  12121. height: math.unit(6, "feet"),
  12122. weight: math.unit(150, "lb"),
  12123. name: "Front",
  12124. image: {
  12125. source: "./media/characters/holly/front.svg",
  12126. extra: 639 / 606
  12127. }
  12128. },
  12129. back: {
  12130. height: math.unit(6, "feet"),
  12131. weight: math.unit(150, "lb"),
  12132. name: "Back",
  12133. image: {
  12134. source: "./media/characters/holly/back.svg",
  12135. extra: 623 / 598
  12136. }
  12137. },
  12138. frontWorking: {
  12139. height: math.unit(6, "feet"),
  12140. weight: math.unit(150, "lb"),
  12141. name: "Front (Working)",
  12142. image: {
  12143. source: "./media/characters/holly/front-working.svg",
  12144. extra: 607 / 577,
  12145. bottom: 0.048
  12146. }
  12147. },
  12148. },
  12149. [
  12150. {
  12151. name: "Normal",
  12152. height: math.unit(12 + 3 / 12, "feet"),
  12153. default: true
  12154. },
  12155. ]
  12156. ))
  12157. characterMakers.push(() => makeCharacter(
  12158. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12159. {
  12160. front: {
  12161. height: math.unit(6, "feet"),
  12162. weight: math.unit(150, "lb"),
  12163. name: "Front",
  12164. image: {
  12165. source: "./media/characters/porter/front.svg",
  12166. extra: 1,
  12167. bottom: 0.01
  12168. }
  12169. },
  12170. frontRobes: {
  12171. height: math.unit(6, "feet"),
  12172. weight: math.unit(150, "lb"),
  12173. name: "Front (Robes)",
  12174. image: {
  12175. source: "./media/characters/porter/front-robes.svg",
  12176. extra: 1.01,
  12177. bottom: 0.01
  12178. }
  12179. },
  12180. },
  12181. [
  12182. {
  12183. name: "Normal",
  12184. height: math.unit(11 + 9 / 12, "feet"),
  12185. default: true
  12186. },
  12187. ]
  12188. ))
  12189. characterMakers.push(() => makeCharacter(
  12190. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12191. {
  12192. legendary: {
  12193. height: math.unit(6, "feet"),
  12194. weight: math.unit(150, "lb"),
  12195. name: "Legendary",
  12196. image: {
  12197. source: "./media/characters/lucy/legendary.svg",
  12198. extra: 1355 / 1100,
  12199. bottom: 0.045
  12200. }
  12201. },
  12202. },
  12203. [
  12204. {
  12205. name: "Legendary",
  12206. height: math.unit(86882 * 2, "miles"),
  12207. default: true
  12208. },
  12209. ]
  12210. ))
  12211. characterMakers.push(() => makeCharacter(
  12212. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12213. {
  12214. front: {
  12215. height: math.unit(6, "feet"),
  12216. weight: math.unit(150, "lb"),
  12217. name: "Front",
  12218. image: {
  12219. source: "./media/characters/drusilla/front.svg",
  12220. extra: 678 / 635,
  12221. bottom: 0.03
  12222. }
  12223. },
  12224. back: {
  12225. height: math.unit(6, "feet"),
  12226. weight: math.unit(150, "lb"),
  12227. name: "Back",
  12228. image: {
  12229. source: "./media/characters/drusilla/back.svg",
  12230. extra: 678 / 635,
  12231. bottom: 0.005
  12232. }
  12233. },
  12234. },
  12235. [
  12236. {
  12237. name: "Macro",
  12238. height: math.unit(100, "feet")
  12239. },
  12240. {
  12241. name: "Canon Height",
  12242. height: math.unit(2000, "feet"),
  12243. default: true
  12244. },
  12245. ]
  12246. ))
  12247. characterMakers.push(() => makeCharacter(
  12248. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12249. {
  12250. front: {
  12251. height: math.unit(6, "feet"),
  12252. weight: math.unit(180, "lb"),
  12253. name: "Front",
  12254. image: {
  12255. source: "./media/characters/renard-thatch/front.svg",
  12256. extra: 2411 / 2275,
  12257. bottom: 0.01
  12258. }
  12259. },
  12260. frontPosing: {
  12261. height: math.unit(6, "feet"),
  12262. weight: math.unit(180, "lb"),
  12263. name: "Front (Posing)",
  12264. image: {
  12265. source: "./media/characters/renard-thatch/front-posing.svg",
  12266. extra: 2381 / 2261,
  12267. bottom: 0.01
  12268. }
  12269. },
  12270. back: {
  12271. height: math.unit(6, "feet"),
  12272. weight: math.unit(180, "lb"),
  12273. name: "Back",
  12274. image: {
  12275. source: "./media/characters/renard-thatch/back.svg",
  12276. extra: 2428 / 2288
  12277. }
  12278. },
  12279. },
  12280. [
  12281. {
  12282. name: "Micro",
  12283. height: math.unit(3, "inches")
  12284. },
  12285. {
  12286. name: "Default",
  12287. height: math.unit(6, "feet"),
  12288. default: true
  12289. },
  12290. {
  12291. name: "Macro",
  12292. height: math.unit(75, "feet")
  12293. },
  12294. ]
  12295. ))
  12296. characterMakers.push(() => makeCharacter(
  12297. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12298. {
  12299. front: {
  12300. height: math.unit(1450, "feet"),
  12301. weight: math.unit(1.21e6, "tons"),
  12302. name: "Front",
  12303. image: {
  12304. source: "./media/characters/sekvra/front.svg",
  12305. extra: 1,
  12306. bottom: 0.03
  12307. }
  12308. },
  12309. frontClothed: {
  12310. height: math.unit(1450, "feet"),
  12311. weight: math.unit(1.21e6, "tons"),
  12312. name: "Front (Clothed)",
  12313. image: {
  12314. source: "./media/characters/sekvra/front-clothed.svg",
  12315. extra: 1,
  12316. bottom: 0.03
  12317. }
  12318. },
  12319. side: {
  12320. height: math.unit(1450, "feet"),
  12321. weight: math.unit(1.21e6, "tons"),
  12322. name: "Side",
  12323. image: {
  12324. source: "./media/characters/sekvra/side.svg",
  12325. extra: 1,
  12326. bottom: 0.025
  12327. }
  12328. },
  12329. back: {
  12330. height: math.unit(1450, "feet"),
  12331. weight: math.unit(1.21e6, "tons"),
  12332. name: "Back",
  12333. image: {
  12334. source: "./media/characters/sekvra/back.svg",
  12335. extra: 1,
  12336. bottom: 0.005
  12337. }
  12338. },
  12339. },
  12340. [
  12341. {
  12342. name: "Macro",
  12343. height: math.unit(1450, "feet"),
  12344. default: true
  12345. },
  12346. {
  12347. name: "Megamacro",
  12348. height: math.unit(15000, "feet")
  12349. },
  12350. ]
  12351. ))
  12352. characterMakers.push(() => makeCharacter(
  12353. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12354. {
  12355. front: {
  12356. height: math.unit(6, "feet"),
  12357. weight: math.unit(150, "lb"),
  12358. name: "Front",
  12359. image: {
  12360. source: "./media/characters/carmine/front.svg",
  12361. extra: 1,
  12362. bottom: 0.035
  12363. }
  12364. },
  12365. frontArmor: {
  12366. height: math.unit(6, "feet"),
  12367. weight: math.unit(150, "lb"),
  12368. name: "Front (Armor)",
  12369. image: {
  12370. source: "./media/characters/carmine/front-armor.svg",
  12371. extra: 1,
  12372. bottom: 0.035
  12373. }
  12374. },
  12375. },
  12376. [
  12377. {
  12378. name: "Large",
  12379. height: math.unit(1, "mile")
  12380. },
  12381. {
  12382. name: "Huge",
  12383. height: math.unit(40, "miles"),
  12384. default: true
  12385. },
  12386. {
  12387. name: "Colossal",
  12388. height: math.unit(2500, "miles")
  12389. },
  12390. ]
  12391. ))
  12392. characterMakers.push(() => makeCharacter(
  12393. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12394. {
  12395. front: {
  12396. height: math.unit(6, "feet"),
  12397. weight: math.unit(150, "lb"),
  12398. name: "Front",
  12399. image: {
  12400. source: "./media/characters/elyssia/front.svg",
  12401. extra: 2201 / 2035,
  12402. bottom: 0.05
  12403. }
  12404. },
  12405. frontClothed: {
  12406. height: math.unit(6, "feet"),
  12407. weight: math.unit(150, "lb"),
  12408. name: "Front (Clothed)",
  12409. image: {
  12410. source: "./media/characters/elyssia/front-clothed.svg",
  12411. extra: 2201 / 2035,
  12412. bottom: 0.05
  12413. }
  12414. },
  12415. back: {
  12416. height: math.unit(6, "feet"),
  12417. weight: math.unit(150, "lb"),
  12418. name: "Back",
  12419. image: {
  12420. source: "./media/characters/elyssia/back.svg",
  12421. extra: 2201 / 2035,
  12422. bottom: 0.013
  12423. }
  12424. },
  12425. },
  12426. [
  12427. {
  12428. name: "Smaller",
  12429. height: math.unit(150, "feet")
  12430. },
  12431. {
  12432. name: "Standard",
  12433. height: math.unit(1400, "feet"),
  12434. default: true
  12435. },
  12436. {
  12437. name: "Distracted",
  12438. height: math.unit(15000, "feet")
  12439. },
  12440. ]
  12441. ))
  12442. characterMakers.push(() => makeCharacter(
  12443. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12444. {
  12445. front: {
  12446. height: math.unit(7 + 4 / 12, "feet"),
  12447. weight: math.unit(500, "lb"),
  12448. name: "Front",
  12449. image: {
  12450. source: "./media/characters/geno-maxwell/front.svg",
  12451. extra: 2207 / 2040,
  12452. bottom: 0.015
  12453. }
  12454. },
  12455. },
  12456. [
  12457. {
  12458. name: "Micro",
  12459. height: math.unit(3, "inches")
  12460. },
  12461. {
  12462. name: "Normal",
  12463. height: math.unit(7 + 4 / 12, "feet"),
  12464. default: true
  12465. },
  12466. {
  12467. name: "Macro",
  12468. height: math.unit(220, "feet")
  12469. },
  12470. {
  12471. name: "Megamacro",
  12472. height: math.unit(11, "miles")
  12473. },
  12474. ]
  12475. ))
  12476. characterMakers.push(() => makeCharacter(
  12477. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12478. {
  12479. front: {
  12480. height: math.unit(7 + 4 / 12, "feet"),
  12481. weight: math.unit(500, "lb"),
  12482. name: "Front",
  12483. image: {
  12484. source: "./media/characters/regena-maxwell/front.svg",
  12485. extra: 3115 / 2770,
  12486. bottom: 0.02
  12487. }
  12488. },
  12489. },
  12490. [
  12491. {
  12492. name: "Normal",
  12493. height: math.unit(7 + 4 / 12, "feet"),
  12494. default: true
  12495. },
  12496. {
  12497. name: "Macro",
  12498. height: math.unit(220, "feet")
  12499. },
  12500. {
  12501. name: "Megamacro",
  12502. height: math.unit(11, "miles")
  12503. },
  12504. ]
  12505. ))
  12506. characterMakers.push(() => makeCharacter(
  12507. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12508. {
  12509. front: {
  12510. height: math.unit(6, "feet"),
  12511. weight: math.unit(150, "lb"),
  12512. name: "Front",
  12513. image: {
  12514. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12515. extra: 860 / 690,
  12516. bottom: 0.03
  12517. }
  12518. },
  12519. },
  12520. [
  12521. {
  12522. name: "Normal",
  12523. height: math.unit(1.7, "meters"),
  12524. default: true
  12525. },
  12526. ]
  12527. ))
  12528. characterMakers.push(() => makeCharacter(
  12529. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12530. {
  12531. front: {
  12532. height: math.unit(6, "feet"),
  12533. weight: math.unit(150, "lb"),
  12534. name: "Front",
  12535. image: {
  12536. source: "./media/characters/quilly/front.svg",
  12537. extra: 890 / 776
  12538. }
  12539. },
  12540. },
  12541. [
  12542. {
  12543. name: "Gigamacro",
  12544. height: math.unit(404090, "miles"),
  12545. default: true
  12546. },
  12547. ]
  12548. ))
  12549. characterMakers.push(() => makeCharacter(
  12550. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12551. {
  12552. front: {
  12553. height: math.unit(7 + 8 / 12, "feet"),
  12554. weight: math.unit(350, "lb"),
  12555. name: "Front",
  12556. image: {
  12557. source: "./media/characters/tempest/front.svg",
  12558. extra: 1175 / 1086,
  12559. bottom: 0.02
  12560. }
  12561. },
  12562. },
  12563. [
  12564. {
  12565. name: "Normal",
  12566. height: math.unit(7 + 8 / 12, "feet"),
  12567. default: true
  12568. },
  12569. ]
  12570. ))
  12571. characterMakers.push(() => makeCharacter(
  12572. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12573. {
  12574. side: {
  12575. height: math.unit(4 + 5 / 12, "feet"),
  12576. weight: math.unit(80, "lb"),
  12577. name: "Side",
  12578. image: {
  12579. source: "./media/characters/rodger/side.svg",
  12580. extra: 1235 / 1118
  12581. }
  12582. },
  12583. },
  12584. [
  12585. {
  12586. name: "Micro",
  12587. height: math.unit(1, "inch")
  12588. },
  12589. {
  12590. name: "Normal",
  12591. height: math.unit(4 + 5 / 12, "feet"),
  12592. default: true
  12593. },
  12594. {
  12595. name: "Macro",
  12596. height: math.unit(120, "feet")
  12597. },
  12598. ]
  12599. ))
  12600. characterMakers.push(() => makeCharacter(
  12601. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12602. {
  12603. front: {
  12604. height: math.unit(6, "feet"),
  12605. weight: math.unit(150, "lb"),
  12606. name: "Front",
  12607. image: {
  12608. source: "./media/characters/danyel/front.svg",
  12609. extra: 1185 / 1123,
  12610. bottom: 0.05
  12611. }
  12612. },
  12613. },
  12614. [
  12615. {
  12616. name: "Shrunken",
  12617. height: math.unit(0.5, "mm")
  12618. },
  12619. {
  12620. name: "Micro",
  12621. height: math.unit(1, "mm"),
  12622. default: true
  12623. },
  12624. {
  12625. name: "Upsized",
  12626. height: math.unit(5 + 5 / 12, "feet")
  12627. },
  12628. ]
  12629. ))
  12630. characterMakers.push(() => makeCharacter(
  12631. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12632. {
  12633. front: {
  12634. height: math.unit(5 + 6 / 12, "feet"),
  12635. weight: math.unit(200, "lb"),
  12636. name: "Front",
  12637. image: {
  12638. source: "./media/characters/vivian-bijoux/front.svg",
  12639. extra: 1,
  12640. bottom: 0.072
  12641. }
  12642. },
  12643. },
  12644. [
  12645. {
  12646. name: "Normal",
  12647. height: math.unit(5 + 6 / 12, "feet"),
  12648. default: true
  12649. },
  12650. {
  12651. name: "Bad Dream",
  12652. height: math.unit(500, "feet")
  12653. },
  12654. {
  12655. name: "Nightmare",
  12656. height: math.unit(500, "miles")
  12657. },
  12658. ]
  12659. ))
  12660. characterMakers.push(() => makeCharacter(
  12661. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12662. {
  12663. front: {
  12664. height: math.unit(6 + 1 / 12, "feet"),
  12665. weight: math.unit(260, "lb"),
  12666. name: "Front",
  12667. image: {
  12668. source: "./media/characters/zeta/front.svg",
  12669. extra: 1968 / 1889,
  12670. bottom: 0.06
  12671. }
  12672. },
  12673. back: {
  12674. height: math.unit(6 + 1 / 12, "feet"),
  12675. weight: math.unit(260, "lb"),
  12676. name: "Back",
  12677. image: {
  12678. source: "./media/characters/zeta/back.svg",
  12679. extra: 1944 / 1858,
  12680. bottom: 0.03
  12681. }
  12682. },
  12683. hand: {
  12684. height: math.unit(1.112, "feet"),
  12685. name: "Hand",
  12686. image: {
  12687. source: "./media/characters/zeta/hand.svg"
  12688. }
  12689. },
  12690. foot: {
  12691. height: math.unit(1.48, "feet"),
  12692. name: "Foot",
  12693. image: {
  12694. source: "./media/characters/zeta/foot.svg"
  12695. }
  12696. },
  12697. },
  12698. [
  12699. {
  12700. name: "Micro",
  12701. height: math.unit(6, "inches")
  12702. },
  12703. {
  12704. name: "Normal",
  12705. height: math.unit(6 + 1 / 12, "feet"),
  12706. default: true
  12707. },
  12708. {
  12709. name: "Macro",
  12710. height: math.unit(20, "feet")
  12711. },
  12712. ]
  12713. ))
  12714. characterMakers.push(() => makeCharacter(
  12715. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12716. {
  12717. front: {
  12718. height: math.unit(6, "feet"),
  12719. weight: math.unit(150, "lb"),
  12720. name: "Front",
  12721. image: {
  12722. source: "./media/characters/jamie-larsen/front.svg",
  12723. extra: 962 / 933,
  12724. bottom: 0.02
  12725. }
  12726. },
  12727. back: {
  12728. height: math.unit(6, "feet"),
  12729. weight: math.unit(150, "lb"),
  12730. name: "Back",
  12731. image: {
  12732. source: "./media/characters/jamie-larsen/back.svg",
  12733. extra: 997 / 946
  12734. }
  12735. },
  12736. },
  12737. [
  12738. {
  12739. name: "Macro",
  12740. height: math.unit(28 + 7 / 12, "feet"),
  12741. default: true
  12742. },
  12743. {
  12744. name: "Macro+",
  12745. height: math.unit(180, "feet")
  12746. },
  12747. {
  12748. name: "Megamacro",
  12749. height: math.unit(10, "miles")
  12750. },
  12751. {
  12752. name: "Gigamacro",
  12753. height: math.unit(200000, "miles")
  12754. },
  12755. ]
  12756. ))
  12757. characterMakers.push(() => makeCharacter(
  12758. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12759. {
  12760. front: {
  12761. height: math.unit(6, "feet"),
  12762. weight: math.unit(120, "lb"),
  12763. name: "Front",
  12764. image: {
  12765. source: "./media/characters/vance/front.svg",
  12766. extra: 1980 / 1890,
  12767. bottom: 0.09
  12768. }
  12769. },
  12770. back: {
  12771. height: math.unit(6, "feet"),
  12772. weight: math.unit(120, "lb"),
  12773. name: "Back",
  12774. image: {
  12775. source: "./media/characters/vance/back.svg",
  12776. extra: 2081 / 1994,
  12777. bottom: 0.014
  12778. }
  12779. },
  12780. hand: {
  12781. height: math.unit(0.88, "feet"),
  12782. name: "Hand",
  12783. image: {
  12784. source: "./media/characters/vance/hand.svg"
  12785. }
  12786. },
  12787. foot: {
  12788. height: math.unit(0.64, "feet"),
  12789. name: "Foot",
  12790. image: {
  12791. source: "./media/characters/vance/foot.svg"
  12792. }
  12793. },
  12794. },
  12795. [
  12796. {
  12797. name: "Small",
  12798. height: math.unit(90, "feet"),
  12799. default: true
  12800. },
  12801. {
  12802. name: "Macro",
  12803. height: math.unit(100, "meters")
  12804. },
  12805. {
  12806. name: "Megamacro",
  12807. height: math.unit(15, "miles")
  12808. },
  12809. ]
  12810. ))
  12811. characterMakers.push(() => makeCharacter(
  12812. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12813. {
  12814. front: {
  12815. height: math.unit(6, "feet"),
  12816. weight: math.unit(180, "lb"),
  12817. name: "Front",
  12818. image: {
  12819. source: "./media/characters/xochitl/front.svg",
  12820. extra: 2297 / 2261,
  12821. bottom: 0.065
  12822. }
  12823. },
  12824. back: {
  12825. height: math.unit(6, "feet"),
  12826. weight: math.unit(180, "lb"),
  12827. name: "Back",
  12828. image: {
  12829. source: "./media/characters/xochitl/back.svg",
  12830. extra: 2386 / 2354,
  12831. bottom: 0.01
  12832. }
  12833. },
  12834. foot: {
  12835. height: math.unit(6 / 5 * 1.15, "feet"),
  12836. weight: math.unit(150, "lb"),
  12837. name: "Foot",
  12838. image: {
  12839. source: "./media/characters/xochitl/foot.svg"
  12840. }
  12841. },
  12842. },
  12843. [
  12844. {
  12845. name: "Macro",
  12846. height: math.unit(80, "feet")
  12847. },
  12848. {
  12849. name: "Macro+",
  12850. height: math.unit(400, "feet"),
  12851. default: true
  12852. },
  12853. {
  12854. name: "Gigamacro",
  12855. height: math.unit(80000, "miles")
  12856. },
  12857. {
  12858. name: "Gigamacro+",
  12859. height: math.unit(400000, "miles")
  12860. },
  12861. {
  12862. name: "Teramacro",
  12863. height: math.unit(300, "AU")
  12864. },
  12865. ]
  12866. ))
  12867. characterMakers.push(() => makeCharacter(
  12868. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12869. {
  12870. front: {
  12871. height: math.unit(6, "feet"),
  12872. weight: math.unit(150, "lb"),
  12873. name: "Front",
  12874. image: {
  12875. source: "./media/characters/vincent/front.svg",
  12876. extra: 1130 / 1080,
  12877. bottom: 0.055
  12878. }
  12879. },
  12880. beak: {
  12881. height: math.unit(6 * 0.1, "feet"),
  12882. name: "Beak",
  12883. image: {
  12884. source: "./media/characters/vincent/beak.svg"
  12885. }
  12886. },
  12887. hand: {
  12888. height: math.unit(6 * 0.85, "feet"),
  12889. weight: math.unit(150, "lb"),
  12890. name: "Hand",
  12891. image: {
  12892. source: "./media/characters/vincent/hand.svg"
  12893. }
  12894. },
  12895. foot: {
  12896. height: math.unit(6 * 0.19, "feet"),
  12897. weight: math.unit(150, "lb"),
  12898. name: "Foot",
  12899. image: {
  12900. source: "./media/characters/vincent/foot.svg"
  12901. }
  12902. },
  12903. },
  12904. [
  12905. {
  12906. name: "Base",
  12907. height: math.unit(6 + 5 / 12, "feet"),
  12908. default: true
  12909. },
  12910. {
  12911. name: "Macro",
  12912. height: math.unit(300, "feet")
  12913. },
  12914. {
  12915. name: "Megamacro",
  12916. height: math.unit(2, "miles")
  12917. },
  12918. {
  12919. name: "Gigamacro",
  12920. height: math.unit(1000, "miles")
  12921. },
  12922. ]
  12923. ))
  12924. characterMakers.push(() => makeCharacter(
  12925. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12926. {
  12927. front: {
  12928. height: math.unit(6 + 2 / 12, "feet"),
  12929. weight: math.unit(265, "lb"),
  12930. name: "Front",
  12931. image: {
  12932. source: "./media/characters/jay/front.svg",
  12933. extra: 1510 / 1430,
  12934. bottom: 0.042
  12935. }
  12936. },
  12937. back: {
  12938. height: math.unit(6 + 2 / 12, "feet"),
  12939. weight: math.unit(265, "lb"),
  12940. name: "Back",
  12941. image: {
  12942. source: "./media/characters/jay/back.svg",
  12943. extra: 1510 / 1430,
  12944. bottom: 0.025
  12945. }
  12946. },
  12947. clothed: {
  12948. height: math.unit(6 + 2 / 12, "feet"),
  12949. weight: math.unit(265, "lb"),
  12950. name: "Front (Clothed)",
  12951. image: {
  12952. source: "./media/characters/jay/clothed.svg",
  12953. extra: 744 / 699,
  12954. bottom: 0.043
  12955. }
  12956. },
  12957. head: {
  12958. height: math.unit(1.772, "feet"),
  12959. name: "Head",
  12960. image: {
  12961. source: "./media/characters/jay/head.svg"
  12962. }
  12963. },
  12964. sizeRay: {
  12965. height: math.unit(1.331, "feet"),
  12966. name: "Size Ray",
  12967. image: {
  12968. source: "./media/characters/jay/size-ray.svg"
  12969. }
  12970. },
  12971. },
  12972. [
  12973. {
  12974. name: "Micro",
  12975. height: math.unit(1, "inch")
  12976. },
  12977. {
  12978. name: "Normal",
  12979. height: math.unit(6 + 2 / 12, "feet"),
  12980. default: true
  12981. },
  12982. {
  12983. name: "Macro",
  12984. height: math.unit(1, "mile")
  12985. },
  12986. {
  12987. name: "Megamacro",
  12988. height: math.unit(100, "miles")
  12989. },
  12990. ]
  12991. ))
  12992. characterMakers.push(() => makeCharacter(
  12993. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12994. {
  12995. front: {
  12996. height: math.unit(2, "meters"),
  12997. weight: math.unit(500, "kg"),
  12998. name: "Front",
  12999. image: {
  13000. source: "./media/characters/coatl/front.svg",
  13001. extra: 3948 / 3500,
  13002. bottom: 0.082
  13003. }
  13004. },
  13005. },
  13006. [
  13007. {
  13008. name: "Normal",
  13009. height: math.unit(4, "meters")
  13010. },
  13011. {
  13012. name: "Macro",
  13013. height: math.unit(100, "meters"),
  13014. default: true
  13015. },
  13016. {
  13017. name: "Macro+",
  13018. height: math.unit(300, "meters")
  13019. },
  13020. {
  13021. name: "Megamacro",
  13022. height: math.unit(3, "gigameters")
  13023. },
  13024. {
  13025. name: "Megamacro+",
  13026. height: math.unit(300, "terameters")
  13027. },
  13028. {
  13029. name: "Megamacro++",
  13030. height: math.unit(3, "lightyears")
  13031. },
  13032. ]
  13033. ))
  13034. characterMakers.push(() => makeCharacter(
  13035. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13036. {
  13037. front: {
  13038. height: math.unit(6, "feet"),
  13039. weight: math.unit(50, "kg"),
  13040. name: "front",
  13041. image: {
  13042. source: "./media/characters/shiroryu/front.svg",
  13043. extra: 1990 / 1935
  13044. }
  13045. },
  13046. },
  13047. [
  13048. {
  13049. name: "Mortal Mingling",
  13050. height: math.unit(3, "meters")
  13051. },
  13052. {
  13053. name: "Kaiju-ish",
  13054. height: math.unit(250, "meters")
  13055. },
  13056. {
  13057. name: "Somewhat Godly",
  13058. height: math.unit(400, "km"),
  13059. default: true
  13060. },
  13061. {
  13062. name: "Planetary",
  13063. height: math.unit(300, "megameters")
  13064. },
  13065. {
  13066. name: "Galaxy-dwarfing",
  13067. height: math.unit(450, "kiloparsecs")
  13068. },
  13069. {
  13070. name: "Universe Eater",
  13071. height: math.unit(150, "gigaparsecs")
  13072. },
  13073. {
  13074. name: "Almost Immeasurable",
  13075. height: math.unit(1.3e266, "yottaparsecs")
  13076. },
  13077. ]
  13078. ))
  13079. characterMakers.push(() => makeCharacter(
  13080. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13081. {
  13082. front: {
  13083. height: math.unit(6, "feet"),
  13084. weight: math.unit(150, "lb"),
  13085. name: "Front",
  13086. image: {
  13087. source: "./media/characters/umeko/front.svg",
  13088. extra: 1,
  13089. bottom: 0.019
  13090. }
  13091. },
  13092. frontArmored: {
  13093. height: math.unit(6, "feet"),
  13094. weight: math.unit(150, "lb"),
  13095. name: "Front (Armored)",
  13096. image: {
  13097. source: "./media/characters/umeko/front-armored.svg",
  13098. extra: 1,
  13099. bottom: 0.021
  13100. }
  13101. },
  13102. },
  13103. [
  13104. {
  13105. name: "Macro",
  13106. height: math.unit(220, "feet"),
  13107. default: true
  13108. },
  13109. {
  13110. name: "Guardian Dragon",
  13111. height: math.unit(50, "miles")
  13112. },
  13113. {
  13114. name: "Cosmic",
  13115. height: math.unit(800000, "miles")
  13116. },
  13117. ]
  13118. ))
  13119. characterMakers.push(() => makeCharacter(
  13120. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13121. {
  13122. front: {
  13123. height: math.unit(6, "feet"),
  13124. weight: math.unit(150, "lb"),
  13125. name: "Front",
  13126. image: {
  13127. source: "./media/characters/cassidy/front.svg",
  13128. extra: 1,
  13129. bottom: 0.043
  13130. }
  13131. },
  13132. },
  13133. [
  13134. {
  13135. name: "Canon Height",
  13136. height: math.unit(120, "feet"),
  13137. default: true
  13138. },
  13139. {
  13140. name: "Macro+",
  13141. height: math.unit(400, "feet")
  13142. },
  13143. {
  13144. name: "Macro++",
  13145. height: math.unit(4000, "feet")
  13146. },
  13147. {
  13148. name: "Megamacro",
  13149. height: math.unit(3, "miles")
  13150. },
  13151. ]
  13152. ))
  13153. characterMakers.push(() => makeCharacter(
  13154. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13155. {
  13156. front: {
  13157. height: math.unit(6, "feet"),
  13158. weight: math.unit(150, "lb"),
  13159. name: "Front",
  13160. image: {
  13161. source: "./media/characters/isaac/front.svg",
  13162. extra: 896 / 815,
  13163. bottom: 0.11
  13164. }
  13165. },
  13166. },
  13167. [
  13168. {
  13169. name: "Human Size",
  13170. height: math.unit(8, "feet"),
  13171. default: true
  13172. },
  13173. {
  13174. name: "Macro",
  13175. height: math.unit(400, "feet")
  13176. },
  13177. {
  13178. name: "Megamacro",
  13179. height: math.unit(50, "miles")
  13180. },
  13181. {
  13182. name: "Canon Height",
  13183. height: math.unit(200, "AU")
  13184. },
  13185. ]
  13186. ))
  13187. characterMakers.push(() => makeCharacter(
  13188. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13189. {
  13190. front: {
  13191. height: math.unit(6, "feet"),
  13192. weight: math.unit(72, "kg"),
  13193. name: "Front",
  13194. image: {
  13195. source: "./media/characters/sleekit/front.svg",
  13196. extra: 4693 / 4487,
  13197. bottom: 0.012
  13198. }
  13199. },
  13200. },
  13201. [
  13202. {
  13203. name: "Minimum Height",
  13204. height: math.unit(10, "meters")
  13205. },
  13206. {
  13207. name: "Smaller",
  13208. height: math.unit(25, "meters")
  13209. },
  13210. {
  13211. name: "Larger",
  13212. height: math.unit(38, "meters"),
  13213. default: true
  13214. },
  13215. {
  13216. name: "Maximum height",
  13217. height: math.unit(100, "meters")
  13218. },
  13219. ]
  13220. ))
  13221. characterMakers.push(() => makeCharacter(
  13222. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13223. {
  13224. front: {
  13225. height: math.unit(6, "feet"),
  13226. weight: math.unit(150, "lb"),
  13227. name: "Front",
  13228. image: {
  13229. source: "./media/characters/nillia/front.svg",
  13230. extra: 2195 / 2037,
  13231. bottom: 0.005
  13232. }
  13233. },
  13234. back: {
  13235. height: math.unit(6, "feet"),
  13236. weight: math.unit(150, "lb"),
  13237. name: "Back",
  13238. image: {
  13239. source: "./media/characters/nillia/back.svg",
  13240. extra: 2195 / 2037,
  13241. bottom: 0.005
  13242. }
  13243. },
  13244. },
  13245. [
  13246. {
  13247. name: "Canon Height",
  13248. height: math.unit(489, "feet"),
  13249. default: true
  13250. }
  13251. ]
  13252. ))
  13253. characterMakers.push(() => makeCharacter(
  13254. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13255. {
  13256. front: {
  13257. height: math.unit(6, "feet"),
  13258. weight: math.unit(150, "lb"),
  13259. name: "Front",
  13260. image: {
  13261. source: "./media/characters/mesmyriza/front.svg",
  13262. extra: 2067 / 1784,
  13263. bottom: 0.035
  13264. }
  13265. },
  13266. foot: {
  13267. height: math.unit(6 / (250 / 35), "feet"),
  13268. name: "Foot",
  13269. image: {
  13270. source: "./media/characters/mesmyriza/foot.svg"
  13271. }
  13272. },
  13273. },
  13274. [
  13275. {
  13276. name: "Macro",
  13277. height: math.unit(457, "meters"),
  13278. default: true
  13279. },
  13280. {
  13281. name: "Megamacro",
  13282. height: math.unit(8, "megameters")
  13283. },
  13284. ]
  13285. ))
  13286. characterMakers.push(() => makeCharacter(
  13287. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13288. {
  13289. front: {
  13290. height: math.unit(6, "feet"),
  13291. weight: math.unit(250, "lb"),
  13292. name: "Front",
  13293. image: {
  13294. source: "./media/characters/saudade/front.svg",
  13295. extra: 1172 / 1139,
  13296. bottom: 0.035
  13297. }
  13298. },
  13299. },
  13300. [
  13301. {
  13302. name: "Micro",
  13303. height: math.unit(3, "inches")
  13304. },
  13305. {
  13306. name: "Normal",
  13307. height: math.unit(6, "feet"),
  13308. default: true
  13309. },
  13310. {
  13311. name: "Macro",
  13312. height: math.unit(50, "feet")
  13313. },
  13314. {
  13315. name: "Megamacro",
  13316. height: math.unit(2800, "feet")
  13317. },
  13318. ]
  13319. ))
  13320. characterMakers.push(() => makeCharacter(
  13321. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13322. {
  13323. front: {
  13324. height: math.unit(5 + 4 / 12, "feet"),
  13325. weight: math.unit(100, "lb"),
  13326. name: "Front",
  13327. image: {
  13328. source: "./media/characters/keireer/front.svg",
  13329. extra: 716 / 666,
  13330. bottom: 0.05
  13331. }
  13332. },
  13333. },
  13334. [
  13335. {
  13336. name: "Normal",
  13337. height: math.unit(5 + 4 / 12, "feet"),
  13338. default: true
  13339. },
  13340. ]
  13341. ))
  13342. characterMakers.push(() => makeCharacter(
  13343. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13344. {
  13345. front: {
  13346. height: math.unit(6, "feet"),
  13347. weight: math.unit(90, "kg"),
  13348. name: "Front",
  13349. image: {
  13350. source: "./media/characters/mirja/front.svg",
  13351. extra: 1789 / 1683,
  13352. bottom: 0.05
  13353. }
  13354. },
  13355. frontDressed: {
  13356. height: math.unit(6, "feet"),
  13357. weight: math.unit(90, "lb"),
  13358. name: "Front (Dressed)",
  13359. image: {
  13360. source: "./media/characters/mirja/front-dressed.svg",
  13361. extra: 1789 / 1683,
  13362. bottom: 0.05
  13363. }
  13364. },
  13365. back: {
  13366. height: math.unit(6, "feet"),
  13367. weight: math.unit(90, "lb"),
  13368. name: "Back",
  13369. image: {
  13370. source: "./media/characters/mirja/back.svg",
  13371. extra: 953 / 917,
  13372. bottom: 0.017
  13373. }
  13374. },
  13375. },
  13376. [
  13377. {
  13378. name: "\"Incognito\"",
  13379. height: math.unit(3, "meters")
  13380. },
  13381. {
  13382. name: "Strolling Size",
  13383. height: math.unit(15, "km")
  13384. },
  13385. {
  13386. name: "Larger Strolling Size",
  13387. height: math.unit(400, "km")
  13388. },
  13389. {
  13390. name: "Preferred Size",
  13391. height: math.unit(5000, "km")
  13392. },
  13393. {
  13394. name: "True Size",
  13395. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13396. default: true
  13397. },
  13398. ]
  13399. ))
  13400. characterMakers.push(() => makeCharacter(
  13401. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13402. {
  13403. front: {
  13404. height: math.unit(15, "feet"),
  13405. weight: math.unit(880, "kg"),
  13406. name: "Front",
  13407. image: {
  13408. source: "./media/characters/nightraver/front.svg",
  13409. extra: 2444 / 2160,
  13410. bottom: 0.027
  13411. }
  13412. },
  13413. back: {
  13414. height: math.unit(15, "feet"),
  13415. weight: math.unit(880, "kg"),
  13416. name: "Back",
  13417. image: {
  13418. source: "./media/characters/nightraver/back.svg",
  13419. extra: 2309 / 2180,
  13420. bottom: 0.005
  13421. }
  13422. },
  13423. sole: {
  13424. height: math.unit(2.878, "feet"),
  13425. name: "Sole",
  13426. image: {
  13427. source: "./media/characters/nightraver/sole.svg"
  13428. }
  13429. },
  13430. foot: {
  13431. height: math.unit(2.285, "feet"),
  13432. name: "Foot",
  13433. image: {
  13434. source: "./media/characters/nightraver/foot.svg"
  13435. }
  13436. },
  13437. maw: {
  13438. height: math.unit(2.67, "feet"),
  13439. name: "Maw",
  13440. image: {
  13441. source: "./media/characters/nightraver/maw.svg"
  13442. }
  13443. },
  13444. },
  13445. [
  13446. {
  13447. name: "Micro",
  13448. height: math.unit(1, "cm")
  13449. },
  13450. {
  13451. name: "Normal",
  13452. height: math.unit(15, "feet"),
  13453. default: true
  13454. },
  13455. {
  13456. name: "Macro",
  13457. height: math.unit(300, "feet")
  13458. },
  13459. {
  13460. name: "Megamacro",
  13461. height: math.unit(300, "miles")
  13462. },
  13463. {
  13464. name: "Gigamacro",
  13465. height: math.unit(10000, "miles")
  13466. },
  13467. ]
  13468. ))
  13469. characterMakers.push(() => makeCharacter(
  13470. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13471. {
  13472. side: {
  13473. height: math.unit(2, "inches"),
  13474. weight: math.unit(5, "grams"),
  13475. name: "Side",
  13476. image: {
  13477. source: "./media/characters/arc/side.svg"
  13478. }
  13479. },
  13480. },
  13481. [
  13482. {
  13483. name: "Micro",
  13484. height: math.unit(2, "inches"),
  13485. default: true
  13486. },
  13487. ]
  13488. ))
  13489. characterMakers.push(() => makeCharacter(
  13490. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13491. {
  13492. front: {
  13493. height: math.unit(1.1938, "meters"),
  13494. weight: math.unit(54, "kg"),
  13495. name: "Front",
  13496. image: {
  13497. source: "./media/characters/nebula-shahar/front.svg",
  13498. extra: 1642 / 1436,
  13499. bottom: 0.06
  13500. }
  13501. },
  13502. },
  13503. [
  13504. {
  13505. name: "Megamicro",
  13506. height: math.unit(0.3, "mm")
  13507. },
  13508. {
  13509. name: "Micro",
  13510. height: math.unit(3, "cm")
  13511. },
  13512. {
  13513. name: "Normal",
  13514. height: math.unit(138, "cm"),
  13515. default: true
  13516. },
  13517. {
  13518. name: "Macro",
  13519. height: math.unit(30, "m")
  13520. },
  13521. ]
  13522. ))
  13523. characterMakers.push(() => makeCharacter(
  13524. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13525. {
  13526. front: {
  13527. height: math.unit(5.24, "feet"),
  13528. weight: math.unit(150, "lb"),
  13529. name: "Front",
  13530. image: {
  13531. source: "./media/characters/shayla/front.svg",
  13532. extra: 1512 / 1414,
  13533. bottom: 0.01
  13534. }
  13535. },
  13536. back: {
  13537. height: math.unit(5.24, "feet"),
  13538. weight: math.unit(150, "lb"),
  13539. name: "Back",
  13540. image: {
  13541. source: "./media/characters/shayla/back.svg",
  13542. extra: 1512 / 1414
  13543. }
  13544. },
  13545. hand: {
  13546. height: math.unit(0.7781496062992126, "feet"),
  13547. name: "Hand",
  13548. image: {
  13549. source: "./media/characters/shayla/hand.svg"
  13550. }
  13551. },
  13552. foot: {
  13553. height: math.unit(1.4206036745406823, "feet"),
  13554. name: "Foot",
  13555. image: {
  13556. source: "./media/characters/shayla/foot.svg"
  13557. }
  13558. },
  13559. },
  13560. [
  13561. {
  13562. name: "Micro",
  13563. height: math.unit(0.32, "feet")
  13564. },
  13565. {
  13566. name: "Normal",
  13567. height: math.unit(5.24, "feet"),
  13568. default: true
  13569. },
  13570. {
  13571. name: "Macro",
  13572. height: math.unit(492.12, "feet")
  13573. },
  13574. {
  13575. name: "Megamacro",
  13576. height: math.unit(186.41, "miles")
  13577. },
  13578. ]
  13579. ))
  13580. characterMakers.push(() => makeCharacter(
  13581. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13582. {
  13583. front: {
  13584. height: math.unit(2.2, "m"),
  13585. weight: math.unit(120, "kg"),
  13586. name: "Front",
  13587. image: {
  13588. source: "./media/characters/pia-jr/front.svg",
  13589. extra: 1000 / 970,
  13590. bottom: 0.035
  13591. }
  13592. },
  13593. hand: {
  13594. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13595. name: "Hand",
  13596. image: {
  13597. source: "./media/characters/pia-jr/hand.svg"
  13598. }
  13599. },
  13600. paw: {
  13601. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13602. name: "Paw",
  13603. image: {
  13604. source: "./media/characters/pia-jr/paw.svg"
  13605. }
  13606. },
  13607. },
  13608. [
  13609. {
  13610. name: "Micro",
  13611. height: math.unit(1.2, "cm")
  13612. },
  13613. {
  13614. name: "Normal",
  13615. height: math.unit(2.2, "m"),
  13616. default: true
  13617. },
  13618. {
  13619. name: "Macro",
  13620. height: math.unit(180, "m")
  13621. },
  13622. {
  13623. name: "Megamacro",
  13624. height: math.unit(420, "km")
  13625. },
  13626. ]
  13627. ))
  13628. characterMakers.push(() => makeCharacter(
  13629. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13630. {
  13631. front: {
  13632. height: math.unit(2, "m"),
  13633. weight: math.unit(115, "kg"),
  13634. name: "Front",
  13635. image: {
  13636. source: "./media/characters/pia-sr/front.svg",
  13637. extra: 760 / 730,
  13638. bottom: 0.015
  13639. }
  13640. },
  13641. back: {
  13642. height: math.unit(2, "m"),
  13643. weight: math.unit(115, "kg"),
  13644. name: "Back",
  13645. image: {
  13646. source: "./media/characters/pia-sr/back.svg",
  13647. extra: 760 / 730,
  13648. bottom: 0.01
  13649. }
  13650. },
  13651. hand: {
  13652. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13653. name: "Hand",
  13654. image: {
  13655. source: "./media/characters/pia-sr/hand.svg"
  13656. }
  13657. },
  13658. foot: {
  13659. height: math.unit(1.83, "feet"),
  13660. name: "Foot",
  13661. image: {
  13662. source: "./media/characters/pia-sr/foot.svg"
  13663. }
  13664. },
  13665. },
  13666. [
  13667. {
  13668. name: "Micro",
  13669. height: math.unit(88, "mm")
  13670. },
  13671. {
  13672. name: "Normal",
  13673. height: math.unit(2, "m"),
  13674. default: true
  13675. },
  13676. {
  13677. name: "Macro",
  13678. height: math.unit(200, "m")
  13679. },
  13680. {
  13681. name: "Megamacro",
  13682. height: math.unit(420, "km")
  13683. },
  13684. ]
  13685. ))
  13686. characterMakers.push(() => makeCharacter(
  13687. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13688. {
  13689. front: {
  13690. height: math.unit(8 + 2 / 12, "feet"),
  13691. weight: math.unit(300, "lb"),
  13692. name: "Front",
  13693. image: {
  13694. source: "./media/characters/kibibyte/front.svg",
  13695. extra: 2221 / 2098,
  13696. bottom: 0.04
  13697. }
  13698. },
  13699. },
  13700. [
  13701. {
  13702. name: "Normal",
  13703. height: math.unit(8 + 2 / 12, "feet"),
  13704. default: true
  13705. },
  13706. {
  13707. name: "Socialable Macro",
  13708. height: math.unit(50, "feet")
  13709. },
  13710. {
  13711. name: "Macro",
  13712. height: math.unit(300, "feet")
  13713. },
  13714. {
  13715. name: "Megamacro",
  13716. height: math.unit(500, "miles")
  13717. },
  13718. ]
  13719. ))
  13720. characterMakers.push(() => makeCharacter(
  13721. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13722. {
  13723. front: {
  13724. height: math.unit(6, "feet"),
  13725. weight: math.unit(150, "lb"),
  13726. name: "Front",
  13727. image: {
  13728. source: "./media/characters/felix/front.svg",
  13729. extra: 762 / 722,
  13730. bottom: 0.02
  13731. }
  13732. },
  13733. frontClothed: {
  13734. height: math.unit(6, "feet"),
  13735. weight: math.unit(150, "lb"),
  13736. name: "Front (Clothed)",
  13737. image: {
  13738. source: "./media/characters/felix/front-clothed.svg",
  13739. extra: 762 / 722,
  13740. bottom: 0.02
  13741. }
  13742. },
  13743. },
  13744. [
  13745. {
  13746. name: "Normal",
  13747. height: math.unit(6 + 8 / 12, "feet"),
  13748. default: true
  13749. },
  13750. {
  13751. name: "Macro",
  13752. height: math.unit(2600, "feet")
  13753. },
  13754. {
  13755. name: "Megamacro",
  13756. height: math.unit(450, "miles")
  13757. },
  13758. ]
  13759. ))
  13760. characterMakers.push(() => makeCharacter(
  13761. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13762. {
  13763. front: {
  13764. height: math.unit(6 + 1 / 12, "feet"),
  13765. weight: math.unit(250, "lb"),
  13766. name: "Front",
  13767. image: {
  13768. source: "./media/characters/tobo/front.svg",
  13769. extra: 608 / 586,
  13770. bottom: 0.023
  13771. }
  13772. },
  13773. back: {
  13774. height: math.unit(6 + 1 / 12, "feet"),
  13775. weight: math.unit(250, "lb"),
  13776. name: "Back",
  13777. image: {
  13778. source: "./media/characters/tobo/back.svg",
  13779. extra: 608 / 586
  13780. }
  13781. },
  13782. },
  13783. [
  13784. {
  13785. name: "Nano",
  13786. height: math.unit(2, "nm")
  13787. },
  13788. {
  13789. name: "Megamicro",
  13790. height: math.unit(0.1, "mm")
  13791. },
  13792. {
  13793. name: "Micro",
  13794. height: math.unit(1, "inch"),
  13795. default: true
  13796. },
  13797. {
  13798. name: "Human-sized",
  13799. height: math.unit(6 + 1 / 12, "feet")
  13800. },
  13801. {
  13802. name: "Macro",
  13803. height: math.unit(250, "feet")
  13804. },
  13805. {
  13806. name: "Megamacro",
  13807. height: math.unit(75, "miles")
  13808. },
  13809. {
  13810. name: "Texas-sized",
  13811. height: math.unit(750, "miles")
  13812. },
  13813. {
  13814. name: "Teramacro",
  13815. height: math.unit(50000, "miles")
  13816. },
  13817. ]
  13818. ))
  13819. characterMakers.push(() => makeCharacter(
  13820. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13821. {
  13822. front: {
  13823. height: math.unit(6, "feet"),
  13824. weight: math.unit(269, "lb"),
  13825. name: "Front",
  13826. image: {
  13827. source: "./media/characters/danny-kapowsky/front.svg",
  13828. extra: 766 / 736,
  13829. bottom: 0.044
  13830. }
  13831. },
  13832. back: {
  13833. height: math.unit(6, "feet"),
  13834. weight: math.unit(269, "lb"),
  13835. name: "Back",
  13836. image: {
  13837. source: "./media/characters/danny-kapowsky/back.svg",
  13838. extra: 797 / 760,
  13839. bottom: 0.025
  13840. }
  13841. },
  13842. },
  13843. [
  13844. {
  13845. name: "Macro",
  13846. height: math.unit(150, "feet"),
  13847. default: true
  13848. },
  13849. {
  13850. name: "Macro+",
  13851. height: math.unit(200, "feet")
  13852. },
  13853. {
  13854. name: "Macro++",
  13855. height: math.unit(300, "feet")
  13856. },
  13857. {
  13858. name: "Macro+++",
  13859. height: math.unit(400, "feet")
  13860. },
  13861. ]
  13862. ))
  13863. characterMakers.push(() => makeCharacter(
  13864. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13865. {
  13866. side: {
  13867. height: math.unit(6, "feet"),
  13868. weight: math.unit(170, "lb"),
  13869. name: "Side",
  13870. image: {
  13871. source: "./media/characters/finn/side.svg",
  13872. extra: 1953 / 1807,
  13873. bottom: 0.057
  13874. }
  13875. },
  13876. },
  13877. [
  13878. {
  13879. name: "Megamacro",
  13880. height: math.unit(14445, "feet"),
  13881. default: true
  13882. },
  13883. ]
  13884. ))
  13885. characterMakers.push(() => makeCharacter(
  13886. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13887. {
  13888. front: {
  13889. height: math.unit(5 + 6 / 12, "feet"),
  13890. weight: math.unit(125, "lb"),
  13891. name: "Front",
  13892. image: {
  13893. source: "./media/characters/roy/front.svg",
  13894. extra: 1,
  13895. bottom: 0.11
  13896. }
  13897. },
  13898. },
  13899. [
  13900. {
  13901. name: "Micro",
  13902. height: math.unit(3, "inches"),
  13903. default: true
  13904. },
  13905. {
  13906. name: "Normal",
  13907. height: math.unit(5 + 6 / 12, "feet")
  13908. },
  13909. {
  13910. name: "Lesser Macro",
  13911. height: math.unit(60, "feet")
  13912. },
  13913. {
  13914. name: "Greater Macro",
  13915. height: math.unit(120, "feet")
  13916. },
  13917. ]
  13918. ))
  13919. characterMakers.push(() => makeCharacter(
  13920. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13921. {
  13922. front: {
  13923. height: math.unit(6, "feet"),
  13924. weight: math.unit(100, "lb"),
  13925. name: "Front",
  13926. image: {
  13927. source: "./media/characters/aevsivs/front.svg",
  13928. extra: 1,
  13929. bottom: 0.03
  13930. }
  13931. },
  13932. back: {
  13933. height: math.unit(6, "feet"),
  13934. weight: math.unit(100, "lb"),
  13935. name: "Back",
  13936. image: {
  13937. source: "./media/characters/aevsivs/back.svg"
  13938. }
  13939. },
  13940. },
  13941. [
  13942. {
  13943. name: "Micro",
  13944. height: math.unit(2, "inches"),
  13945. default: true
  13946. },
  13947. {
  13948. name: "Normal",
  13949. height: math.unit(5, "feet")
  13950. },
  13951. ]
  13952. ))
  13953. characterMakers.push(() => makeCharacter(
  13954. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13955. {
  13956. front: {
  13957. height: math.unit(5 + 7 / 12, "feet"),
  13958. weight: math.unit(159, "lb"),
  13959. name: "Front",
  13960. image: {
  13961. source: "./media/characters/hildegard/front.svg",
  13962. extra: 289 / 269,
  13963. bottom: 7.63 / 297.8
  13964. }
  13965. },
  13966. back: {
  13967. height: math.unit(5 + 7 / 12, "feet"),
  13968. weight: math.unit(159, "lb"),
  13969. name: "Back",
  13970. image: {
  13971. source: "./media/characters/hildegard/back.svg",
  13972. extra: 280 / 260,
  13973. bottom: 2.3 / 282
  13974. }
  13975. },
  13976. },
  13977. [
  13978. {
  13979. name: "Normal",
  13980. height: math.unit(5 + 7 / 12, "feet"),
  13981. default: true
  13982. },
  13983. ]
  13984. ))
  13985. characterMakers.push(() => makeCharacter(
  13986. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13987. {
  13988. bernard: {
  13989. height: math.unit(2 + 7 / 12, "feet"),
  13990. weight: math.unit(66, "lb"),
  13991. name: "Bernard",
  13992. rename: true,
  13993. image: {
  13994. source: "./media/characters/bernard-wilder/bernard.svg",
  13995. extra: 192 / 128,
  13996. bottom: 0.05
  13997. }
  13998. },
  13999. wilder: {
  14000. height: math.unit(5 + 8 / 12, "feet"),
  14001. weight: math.unit(143, "lb"),
  14002. name: "Wilder",
  14003. rename: true,
  14004. image: {
  14005. source: "./media/characters/bernard-wilder/wilder.svg",
  14006. extra: 361 / 312,
  14007. bottom: 0.02
  14008. }
  14009. },
  14010. },
  14011. [
  14012. {
  14013. name: "Normal",
  14014. height: math.unit(2 + 7 / 12, "feet"),
  14015. default: true
  14016. },
  14017. ]
  14018. ))
  14019. characterMakers.push(() => makeCharacter(
  14020. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14021. {
  14022. anthro: {
  14023. height: math.unit(6 + 1 / 12, "feet"),
  14024. weight: math.unit(155, "lb"),
  14025. name: "Anthro",
  14026. image: {
  14027. source: "./media/characters/hearth/anthro.svg",
  14028. extra: 260 / 250,
  14029. bottom: 0.02
  14030. }
  14031. },
  14032. feral: {
  14033. height: math.unit(3.78, "feet"),
  14034. weight: math.unit(35, "kg"),
  14035. name: "Feral",
  14036. image: {
  14037. source: "./media/characters/hearth/feral.svg",
  14038. extra: 153 / 135,
  14039. bottom: 0.03
  14040. }
  14041. },
  14042. },
  14043. [
  14044. {
  14045. name: "Normal",
  14046. height: math.unit(6 + 1 / 12, "feet"),
  14047. default: true
  14048. },
  14049. ]
  14050. ))
  14051. characterMakers.push(() => makeCharacter(
  14052. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14053. {
  14054. front: {
  14055. height: math.unit(6, "feet"),
  14056. weight: math.unit(182, "lb"),
  14057. name: "Front",
  14058. image: {
  14059. source: "./media/characters/ingrid/front.svg",
  14060. extra: 294 / 268,
  14061. bottom: 0.027
  14062. }
  14063. },
  14064. },
  14065. [
  14066. {
  14067. name: "Normal",
  14068. height: math.unit(6, "feet"),
  14069. default: true
  14070. },
  14071. ]
  14072. ))
  14073. characterMakers.push(() => makeCharacter(
  14074. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14075. {
  14076. eevee: {
  14077. height: math.unit(2 + 10 / 12, "feet"),
  14078. weight: math.unit(86, "lb"),
  14079. name: "Malgam",
  14080. image: {
  14081. source: "./media/characters/malgam/eevee.svg",
  14082. extra: 218 / 180,
  14083. bottom: 0.2
  14084. }
  14085. },
  14086. sylveon: {
  14087. height: math.unit(4, "feet"),
  14088. weight: math.unit(101, "lb"),
  14089. name: "Future Malgam",
  14090. rename: true,
  14091. image: {
  14092. source: "./media/characters/malgam/sylveon.svg",
  14093. extra: 371 / 325,
  14094. bottom: 0.015
  14095. }
  14096. },
  14097. gigantamax: {
  14098. height: math.unit(50, "feet"),
  14099. name: "Gigantamax Malgam",
  14100. rename: true,
  14101. image: {
  14102. source: "./media/characters/malgam/gigantamax.svg"
  14103. }
  14104. },
  14105. },
  14106. [
  14107. {
  14108. name: "Normal",
  14109. height: math.unit(2 + 10 / 12, "feet"),
  14110. default: true
  14111. },
  14112. ]
  14113. ))
  14114. characterMakers.push(() => makeCharacter(
  14115. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14116. {
  14117. front: {
  14118. height: math.unit(5 + 11 / 12, "feet"),
  14119. weight: math.unit(188, "lb"),
  14120. name: "Front",
  14121. image: {
  14122. source: "./media/characters/fleur/front.svg",
  14123. extra: 309 / 283,
  14124. bottom: 0.007
  14125. }
  14126. },
  14127. },
  14128. [
  14129. {
  14130. name: "Normal",
  14131. height: math.unit(5 + 11 / 12, "feet"),
  14132. default: true
  14133. },
  14134. ]
  14135. ))
  14136. characterMakers.push(() => makeCharacter(
  14137. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14138. {
  14139. front: {
  14140. height: math.unit(5 + 4 / 12, "feet"),
  14141. weight: math.unit(122, "lb"),
  14142. name: "Front",
  14143. image: {
  14144. source: "./media/characters/jude/front.svg",
  14145. extra: 288 / 273,
  14146. bottom: 0.03
  14147. }
  14148. },
  14149. },
  14150. [
  14151. {
  14152. name: "Normal",
  14153. height: math.unit(5 + 4 / 12, "feet"),
  14154. default: true
  14155. },
  14156. ]
  14157. ))
  14158. characterMakers.push(() => makeCharacter(
  14159. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14160. {
  14161. front: {
  14162. height: math.unit(5 + 11 / 12, "feet"),
  14163. weight: math.unit(190, "lb"),
  14164. name: "Front",
  14165. image: {
  14166. source: "./media/characters/seara/front.svg",
  14167. extra: 1,
  14168. bottom: 0.05
  14169. }
  14170. },
  14171. },
  14172. [
  14173. {
  14174. name: "Normal",
  14175. height: math.unit(5 + 11 / 12, "feet"),
  14176. default: true
  14177. },
  14178. ]
  14179. ))
  14180. characterMakers.push(() => makeCharacter(
  14181. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14182. {
  14183. front: {
  14184. height: math.unit(16 + 5 / 12, "feet"),
  14185. weight: math.unit(524, "lb"),
  14186. name: "Front",
  14187. image: {
  14188. source: "./media/characters/caspian/front.svg",
  14189. extra: 1,
  14190. bottom: 0.04
  14191. }
  14192. },
  14193. },
  14194. [
  14195. {
  14196. name: "Normal",
  14197. height: math.unit(16 + 5 / 12, "feet"),
  14198. default: true
  14199. },
  14200. ]
  14201. ))
  14202. characterMakers.push(() => makeCharacter(
  14203. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14204. {
  14205. front: {
  14206. height: math.unit(5 + 7 / 12, "feet"),
  14207. weight: math.unit(170, "lb"),
  14208. name: "Front",
  14209. image: {
  14210. source: "./media/characters/mika/front.svg",
  14211. extra: 1,
  14212. bottom: 0.016
  14213. }
  14214. },
  14215. },
  14216. [
  14217. {
  14218. name: "Normal",
  14219. height: math.unit(5 + 7 / 12, "feet"),
  14220. default: true
  14221. },
  14222. ]
  14223. ))
  14224. characterMakers.push(() => makeCharacter(
  14225. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14226. {
  14227. front: {
  14228. height: math.unit(6 + 2 / 12, "feet"),
  14229. weight: math.unit(268, "lb"),
  14230. name: "Front",
  14231. image: {
  14232. source: "./media/characters/sol/front.svg",
  14233. extra: 247 / 231,
  14234. bottom: 0.05
  14235. }
  14236. },
  14237. },
  14238. [
  14239. {
  14240. name: "Normal",
  14241. height: math.unit(6 + 2 / 12, "feet"),
  14242. default: true
  14243. },
  14244. ]
  14245. ))
  14246. characterMakers.push(() => makeCharacter(
  14247. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14248. {
  14249. buizel: {
  14250. height: math.unit(2 + 5 / 12, "feet"),
  14251. weight: math.unit(87, "lb"),
  14252. name: "Buizel",
  14253. image: {
  14254. source: "./media/characters/umiko/buizel.svg",
  14255. extra: 172 / 157,
  14256. bottom: 0.01
  14257. }
  14258. },
  14259. floatzel: {
  14260. height: math.unit(5 + 9 / 12, "feet"),
  14261. weight: math.unit(250, "lb"),
  14262. name: "Floatzel",
  14263. image: {
  14264. source: "./media/characters/umiko/floatzel.svg",
  14265. extra: 262 / 248
  14266. }
  14267. },
  14268. },
  14269. [
  14270. {
  14271. name: "Normal",
  14272. height: math.unit(2 + 5 / 12, "feet"),
  14273. default: true
  14274. },
  14275. ]
  14276. ))
  14277. characterMakers.push(() => makeCharacter(
  14278. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14279. {
  14280. front: {
  14281. height: math.unit(6 + 2 / 12, "feet"),
  14282. weight: math.unit(146, "lb"),
  14283. name: "Front",
  14284. image: {
  14285. source: "./media/characters/iliac/front.svg",
  14286. extra: 389 / 365,
  14287. bottom: 0.035
  14288. }
  14289. },
  14290. },
  14291. [
  14292. {
  14293. name: "Normal",
  14294. height: math.unit(6 + 2 / 12, "feet"),
  14295. default: true
  14296. },
  14297. ]
  14298. ))
  14299. characterMakers.push(() => makeCharacter(
  14300. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14301. {
  14302. front: {
  14303. height: math.unit(6, "feet"),
  14304. weight: math.unit(170, "lb"),
  14305. name: "Front",
  14306. image: {
  14307. source: "./media/characters/topaz/front.svg",
  14308. extra: 317 / 303,
  14309. bottom: 0.055
  14310. }
  14311. },
  14312. },
  14313. [
  14314. {
  14315. name: "Normal",
  14316. height: math.unit(6, "feet"),
  14317. default: true
  14318. },
  14319. ]
  14320. ))
  14321. characterMakers.push(() => makeCharacter(
  14322. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14323. {
  14324. front: {
  14325. height: math.unit(5 + 11 / 12, "feet"),
  14326. weight: math.unit(144, "lb"),
  14327. name: "Front",
  14328. image: {
  14329. source: "./media/characters/gabriel/front.svg",
  14330. extra: 285 / 262,
  14331. bottom: 0.004
  14332. }
  14333. },
  14334. },
  14335. [
  14336. {
  14337. name: "Normal",
  14338. height: math.unit(5 + 11 / 12, "feet"),
  14339. default: true
  14340. },
  14341. ]
  14342. ))
  14343. characterMakers.push(() => makeCharacter(
  14344. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14345. {
  14346. side: {
  14347. height: math.unit(6 + 5 / 12, "feet"),
  14348. weight: math.unit(300, "lb"),
  14349. name: "Side",
  14350. image: {
  14351. source: "./media/characters/tempest-suicune/side.svg",
  14352. extra: 195 / 154,
  14353. bottom: 0.04
  14354. }
  14355. },
  14356. },
  14357. [
  14358. {
  14359. name: "Normal",
  14360. height: math.unit(6 + 5 / 12, "feet"),
  14361. default: true
  14362. },
  14363. ]
  14364. ))
  14365. characterMakers.push(() => makeCharacter(
  14366. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14367. {
  14368. front: {
  14369. height: math.unit(7 + 2 / 12, "feet"),
  14370. weight: math.unit(322, "lb"),
  14371. name: "Front",
  14372. image: {
  14373. source: "./media/characters/vulcan/front.svg",
  14374. extra: 154 / 147,
  14375. bottom: 0.04
  14376. }
  14377. },
  14378. },
  14379. [
  14380. {
  14381. name: "Normal",
  14382. height: math.unit(7 + 2 / 12, "feet"),
  14383. default: true
  14384. },
  14385. ]
  14386. ))
  14387. characterMakers.push(() => makeCharacter(
  14388. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14389. {
  14390. front: {
  14391. height: math.unit(5 + 10 / 12, "feet"),
  14392. weight: math.unit(264, "lb"),
  14393. name: "Front",
  14394. image: {
  14395. source: "./media/characters/gault/front.svg",
  14396. extra: 161 / 140,
  14397. bottom: 0.028
  14398. }
  14399. },
  14400. },
  14401. [
  14402. {
  14403. name: "Normal",
  14404. height: math.unit(5 + 10 / 12, "feet"),
  14405. default: true
  14406. },
  14407. ]
  14408. ))
  14409. characterMakers.push(() => makeCharacter(
  14410. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14411. {
  14412. front: {
  14413. height: math.unit(6, "feet"),
  14414. weight: math.unit(150, "lb"),
  14415. name: "Front",
  14416. image: {
  14417. source: "./media/characters/shard/front.svg",
  14418. extra: 273 / 238,
  14419. bottom: 0.02
  14420. }
  14421. },
  14422. },
  14423. [
  14424. {
  14425. name: "Normal",
  14426. height: math.unit(3 + 6 / 12, "feet"),
  14427. default: true
  14428. },
  14429. ]
  14430. ))
  14431. characterMakers.push(() => makeCharacter(
  14432. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14433. {
  14434. front: {
  14435. height: math.unit(5 + 11 / 12, "feet"),
  14436. weight: math.unit(146, "lb"),
  14437. name: "Front",
  14438. image: {
  14439. source: "./media/characters/ashe/front.svg",
  14440. extra: 400 / 373,
  14441. bottom: 0.01
  14442. }
  14443. },
  14444. },
  14445. [
  14446. {
  14447. name: "Normal",
  14448. height: math.unit(5 + 11 / 12, "feet"),
  14449. default: true
  14450. },
  14451. ]
  14452. ))
  14453. characterMakers.push(() => makeCharacter(
  14454. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14455. {
  14456. front: {
  14457. height: math.unit(5 + 5 / 12, "feet"),
  14458. weight: math.unit(135, "lb"),
  14459. name: "Front",
  14460. image: {
  14461. source: "./media/characters/beatrix/front.svg",
  14462. extra: 392 / 379,
  14463. bottom: 0.01
  14464. }
  14465. },
  14466. },
  14467. [
  14468. {
  14469. name: "Normal",
  14470. height: math.unit(6, "feet"),
  14471. default: true
  14472. },
  14473. ]
  14474. ))
  14475. characterMakers.push(() => makeCharacter(
  14476. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14477. {
  14478. front: {
  14479. height: math.unit(6, "feet"),
  14480. weight: math.unit(150, "lb"),
  14481. name: "Front",
  14482. image: {
  14483. source: "./media/characters/ignatius/front.svg",
  14484. extra: 245 / 222,
  14485. bottom: 0.01
  14486. }
  14487. },
  14488. },
  14489. [
  14490. {
  14491. name: "Normal",
  14492. height: math.unit(5 + 5 / 12, "feet"),
  14493. default: true
  14494. },
  14495. ]
  14496. ))
  14497. characterMakers.push(() => makeCharacter(
  14498. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14499. {
  14500. front: {
  14501. height: math.unit(6 + 2 / 12, "feet"),
  14502. weight: math.unit(138, "lb"),
  14503. name: "Front",
  14504. image: {
  14505. source: "./media/characters/mei-li/front.svg",
  14506. extra: 237 / 229,
  14507. bottom: 0.03
  14508. }
  14509. },
  14510. },
  14511. [
  14512. {
  14513. name: "Normal",
  14514. height: math.unit(6 + 2 / 12, "feet"),
  14515. default: true
  14516. },
  14517. ]
  14518. ))
  14519. characterMakers.push(() => makeCharacter(
  14520. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14521. {
  14522. front: {
  14523. height: math.unit(2 + 4 / 12, "feet"),
  14524. weight: math.unit(62, "lb"),
  14525. name: "Front",
  14526. image: {
  14527. source: "./media/characters/puru/front.svg",
  14528. extra: 206 / 149,
  14529. bottom: 0.06
  14530. }
  14531. },
  14532. },
  14533. [
  14534. {
  14535. name: "Normal",
  14536. height: math.unit(2 + 4 / 12, "feet"),
  14537. default: true
  14538. },
  14539. ]
  14540. ))
  14541. characterMakers.push(() => makeCharacter(
  14542. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14543. {
  14544. taur: {
  14545. height: math.unit(11, "feet"),
  14546. weight: math.unit(500, "lb"),
  14547. name: "Taur",
  14548. image: {
  14549. source: "./media/characters/kee/taur.svg",
  14550. extra: 1,
  14551. bottom: 0.04
  14552. }
  14553. },
  14554. },
  14555. [
  14556. {
  14557. name: "Normal",
  14558. height: math.unit(11, "feet"),
  14559. default: true
  14560. },
  14561. ]
  14562. ))
  14563. characterMakers.push(() => makeCharacter(
  14564. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14565. {
  14566. anthro: {
  14567. height: math.unit(7, "feet"),
  14568. weight: math.unit(190, "lb"),
  14569. name: "Anthro",
  14570. image: {
  14571. source: "./media/characters/cobalt-dracha/anthro.svg",
  14572. extra: 231 / 225,
  14573. bottom: 0.04
  14574. }
  14575. },
  14576. feral: {
  14577. height: math.unit(9 + 7 / 12, "feet"),
  14578. weight: math.unit(294, "lb"),
  14579. name: "Feral",
  14580. image: {
  14581. source: "./media/characters/cobalt-dracha/feral.svg",
  14582. extra: 692 / 633,
  14583. bottom: 0.05
  14584. }
  14585. },
  14586. },
  14587. [
  14588. {
  14589. name: "Normal",
  14590. height: math.unit(7, "feet"),
  14591. default: true
  14592. },
  14593. ]
  14594. ))
  14595. characterMakers.push(() => makeCharacter(
  14596. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14597. {
  14598. fallen: {
  14599. height: math.unit(11 + 8 / 12, "feet"),
  14600. weight: math.unit(485, "lb"),
  14601. name: "Java (Fallen)",
  14602. rename: true,
  14603. image: {
  14604. source: "./media/characters/java/fallen.svg",
  14605. extra: 226 / 208,
  14606. bottom: 0.005
  14607. }
  14608. },
  14609. godkin: {
  14610. height: math.unit(10 + 6 / 12, "feet"),
  14611. weight: math.unit(328, "lb"),
  14612. name: "Java (Godkin)",
  14613. rename: true,
  14614. image: {
  14615. source: "./media/characters/java/godkin.svg",
  14616. extra: 270 / 262,
  14617. bottom: 0.02
  14618. }
  14619. },
  14620. },
  14621. [
  14622. {
  14623. name: "Normal",
  14624. height: math.unit(11 + 8 / 12, "feet"),
  14625. default: true
  14626. },
  14627. ]
  14628. ))
  14629. characterMakers.push(() => makeCharacter(
  14630. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14631. {
  14632. front: {
  14633. height: math.unit(7 + 8 / 12, "feet"),
  14634. weight: math.unit(320, "lb"),
  14635. name: "Front",
  14636. image: {
  14637. source: "./media/characters/skoll/front.svg",
  14638. extra: 232 / 220,
  14639. bottom: 0.02
  14640. }
  14641. },
  14642. },
  14643. [
  14644. {
  14645. name: "Normal",
  14646. height: math.unit(7 + 8 / 12, "feet"),
  14647. default: true
  14648. },
  14649. ]
  14650. ))
  14651. characterMakers.push(() => makeCharacter(
  14652. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14653. {
  14654. front: {
  14655. height: math.unit(5 + 9 / 12, "feet"),
  14656. weight: math.unit(170, "lb"),
  14657. name: "Front",
  14658. image: {
  14659. source: "./media/characters/purna/front.svg",
  14660. extra: 239 / 229,
  14661. bottom: 0.01
  14662. }
  14663. },
  14664. },
  14665. [
  14666. {
  14667. name: "Normal",
  14668. height: math.unit(5 + 9 / 12, "feet"),
  14669. default: true
  14670. },
  14671. ]
  14672. ))
  14673. characterMakers.push(() => makeCharacter(
  14674. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14675. {
  14676. front: {
  14677. height: math.unit(5 + 9 / 12, "feet"),
  14678. weight: math.unit(142, "lb"),
  14679. name: "Front",
  14680. image: {
  14681. source: "./media/characters/kuva/front.svg",
  14682. extra: 281 / 271,
  14683. bottom: 0.006
  14684. }
  14685. },
  14686. },
  14687. [
  14688. {
  14689. name: "Normal",
  14690. height: math.unit(5 + 9 / 12, "feet"),
  14691. default: true
  14692. },
  14693. ]
  14694. ))
  14695. characterMakers.push(() => makeCharacter(
  14696. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14697. {
  14698. anthro: {
  14699. height: math.unit(9 + 2 / 12, "feet"),
  14700. weight: math.unit(270, "lb"),
  14701. name: "Anthro",
  14702. image: {
  14703. source: "./media/characters/embra/anthro.svg",
  14704. extra: 200 / 187,
  14705. bottom: 0.02
  14706. }
  14707. },
  14708. feral: {
  14709. height: math.unit(18 + 8 / 12, "feet"),
  14710. weight: math.unit(576, "lb"),
  14711. name: "Feral",
  14712. image: {
  14713. source: "./media/characters/embra/feral.svg",
  14714. extra: 152 / 137,
  14715. bottom: 0.037
  14716. }
  14717. },
  14718. },
  14719. [
  14720. {
  14721. name: "Normal",
  14722. height: math.unit(9 + 2 / 12, "feet"),
  14723. default: true
  14724. },
  14725. ]
  14726. ))
  14727. characterMakers.push(() => makeCharacter(
  14728. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14729. {
  14730. anthro: {
  14731. height: math.unit(10 + 9 / 12, "feet"),
  14732. weight: math.unit(224, "lb"),
  14733. name: "Anthro",
  14734. image: {
  14735. source: "./media/characters/grottos/anthro.svg",
  14736. extra: 350 / 332,
  14737. bottom: 0.045
  14738. }
  14739. },
  14740. feral: {
  14741. height: math.unit(20 + 7 / 12, "feet"),
  14742. weight: math.unit(629, "lb"),
  14743. name: "Feral",
  14744. image: {
  14745. source: "./media/characters/grottos/feral.svg",
  14746. extra: 207 / 190,
  14747. bottom: 0.05
  14748. }
  14749. },
  14750. },
  14751. [
  14752. {
  14753. name: "Normal",
  14754. height: math.unit(10 + 9 / 12, "feet"),
  14755. default: true
  14756. },
  14757. ]
  14758. ))
  14759. characterMakers.push(() => makeCharacter(
  14760. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14761. {
  14762. anthro: {
  14763. height: math.unit(9 + 6 / 12, "feet"),
  14764. weight: math.unit(298, "lb"),
  14765. name: "Anthro",
  14766. image: {
  14767. source: "./media/characters/frifna/anthro.svg",
  14768. extra: 282 / 269,
  14769. bottom: 0.015
  14770. }
  14771. },
  14772. feral: {
  14773. height: math.unit(16 + 2 / 12, "feet"),
  14774. weight: math.unit(624, "lb"),
  14775. name: "Feral",
  14776. image: {
  14777. source: "./media/characters/frifna/feral.svg"
  14778. }
  14779. },
  14780. },
  14781. [
  14782. {
  14783. name: "Normal",
  14784. height: math.unit(9 + 6 / 12, "feet"),
  14785. default: true
  14786. },
  14787. ]
  14788. ))
  14789. characterMakers.push(() => makeCharacter(
  14790. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14791. {
  14792. front: {
  14793. height: math.unit(6 + 2 / 12, "feet"),
  14794. weight: math.unit(168, "lb"),
  14795. name: "Front",
  14796. image: {
  14797. source: "./media/characters/elise/front.svg",
  14798. extra: 276 / 271
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Normal",
  14805. height: math.unit(6 + 2 / 12, "feet"),
  14806. default: true
  14807. },
  14808. ]
  14809. ))
  14810. characterMakers.push(() => makeCharacter(
  14811. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14812. {
  14813. front: {
  14814. height: math.unit(5 + 10 / 12, "feet"),
  14815. weight: math.unit(210, "lb"),
  14816. name: "Front",
  14817. image: {
  14818. source: "./media/characters/glade/front.svg",
  14819. extra: 258 / 247,
  14820. bottom: 0.008
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "Normal",
  14827. height: math.unit(5 + 10 / 12, "feet"),
  14828. default: true
  14829. },
  14830. ]
  14831. ))
  14832. characterMakers.push(() => makeCharacter(
  14833. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14834. {
  14835. front: {
  14836. height: math.unit(5 + 10 / 12, "feet"),
  14837. weight: math.unit(129, "lb"),
  14838. name: "Front",
  14839. image: {
  14840. source: "./media/characters/rina/front.svg",
  14841. extra: 266 / 255,
  14842. bottom: 0.005
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Normal",
  14849. height: math.unit(5 + 10 / 12, "feet"),
  14850. default: true
  14851. },
  14852. ]
  14853. ))
  14854. characterMakers.push(() => makeCharacter(
  14855. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14856. {
  14857. front: {
  14858. height: math.unit(6 + 1 / 12, "feet"),
  14859. weight: math.unit(192, "lb"),
  14860. name: "Front",
  14861. image: {
  14862. source: "./media/characters/veronica/front.svg",
  14863. extra: 319 / 309,
  14864. bottom: 0.005
  14865. }
  14866. },
  14867. },
  14868. [
  14869. {
  14870. name: "Normal",
  14871. height: math.unit(6 + 1 / 12, "feet"),
  14872. default: true
  14873. },
  14874. ]
  14875. ))
  14876. characterMakers.push(() => makeCharacter(
  14877. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14878. {
  14879. front: {
  14880. height: math.unit(9 + 3 / 12, "feet"),
  14881. weight: math.unit(1100, "lb"),
  14882. name: "Front",
  14883. image: {
  14884. source: "./media/characters/braxton/front.svg",
  14885. extra: 1057 / 984,
  14886. bottom: 0.05
  14887. }
  14888. },
  14889. },
  14890. [
  14891. {
  14892. name: "Normal",
  14893. height: math.unit(9 + 3 / 12, "feet")
  14894. },
  14895. {
  14896. name: "Giant",
  14897. height: math.unit(300, "feet"),
  14898. default: true
  14899. },
  14900. {
  14901. name: "Macro",
  14902. height: math.unit(700, "feet")
  14903. },
  14904. {
  14905. name: "Megamacro",
  14906. height: math.unit(6000, "feet")
  14907. },
  14908. ]
  14909. ))
  14910. characterMakers.push(() => makeCharacter(
  14911. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14912. {
  14913. front: {
  14914. height: math.unit(6 + 7 / 12, "feet"),
  14915. weight: math.unit(150, "lb"),
  14916. name: "Front",
  14917. image: {
  14918. source: "./media/characters/blue-feyonics/front.svg",
  14919. extra: 1403 / 1306,
  14920. bottom: 0.047
  14921. }
  14922. },
  14923. },
  14924. [
  14925. {
  14926. name: "Normal",
  14927. height: math.unit(6 + 7 / 12, "feet"),
  14928. default: true
  14929. },
  14930. ]
  14931. ))
  14932. characterMakers.push(() => makeCharacter(
  14933. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14934. {
  14935. front: {
  14936. height: math.unit(1.8, "meters"),
  14937. weight: math.unit(60, "kg"),
  14938. name: "Front",
  14939. image: {
  14940. source: "./media/characters/maxwell/front.svg",
  14941. extra: 2060 / 1873
  14942. }
  14943. },
  14944. },
  14945. [
  14946. {
  14947. name: "Micro",
  14948. height: math.unit(1, "mm")
  14949. },
  14950. {
  14951. name: "Normal",
  14952. height: math.unit(1.8, "meter"),
  14953. default: true
  14954. },
  14955. {
  14956. name: "Macro",
  14957. height: math.unit(30, "meters")
  14958. },
  14959. {
  14960. name: "Megamacro",
  14961. height: math.unit(10, "km")
  14962. },
  14963. ]
  14964. ))
  14965. characterMakers.push(() => makeCharacter(
  14966. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14967. {
  14968. front: {
  14969. height: math.unit(6, "feet"),
  14970. weight: math.unit(150, "lb"),
  14971. name: "Front",
  14972. image: {
  14973. source: "./media/characters/jack/front.svg",
  14974. extra: 1754 / 1640,
  14975. bottom: 0.01
  14976. }
  14977. },
  14978. },
  14979. [
  14980. {
  14981. name: "Normal",
  14982. height: math.unit(80000, "feet"),
  14983. default: true
  14984. },
  14985. {
  14986. name: "Max size",
  14987. height: math.unit(10, "lightyears")
  14988. },
  14989. ]
  14990. ))
  14991. characterMakers.push(() => makeCharacter(
  14992. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14993. {
  14994. upright: {
  14995. height: math.unit(7, "feet"),
  14996. weight: math.unit(170, "lb"),
  14997. name: "Upright",
  14998. image: {
  14999. source: "./media/characters/cafat/upright.svg",
  15000. bottom: 0.01
  15001. }
  15002. },
  15003. uprightFull: {
  15004. height: math.unit(7, "feet"),
  15005. weight: math.unit(170, "lb"),
  15006. name: "Upright (Full)",
  15007. image: {
  15008. source: "./media/characters/cafat/upright-full.svg",
  15009. bottom: 0.01
  15010. }
  15011. },
  15012. side: {
  15013. height: math.unit(5, "feet"),
  15014. weight: math.unit(150, "lb"),
  15015. name: "Side",
  15016. image: {
  15017. source: "./media/characters/cafat/side.svg"
  15018. }
  15019. },
  15020. },
  15021. [
  15022. {
  15023. name: "Small",
  15024. height: math.unit(7, "feet"),
  15025. default: true
  15026. },
  15027. {
  15028. name: "Large",
  15029. height: math.unit(15.5, "feet")
  15030. },
  15031. ]
  15032. ))
  15033. characterMakers.push(() => makeCharacter(
  15034. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15035. {
  15036. front: {
  15037. height: math.unit(6, "feet"),
  15038. weight: math.unit(150, "lb"),
  15039. name: "Front",
  15040. image: {
  15041. source: "./media/characters/verin-raharra/front.svg",
  15042. extra: 5019 / 4835,
  15043. bottom: 0.023
  15044. }
  15045. },
  15046. },
  15047. [
  15048. {
  15049. name: "Normal",
  15050. height: math.unit(7 + 5 / 12, "feet"),
  15051. default: true
  15052. },
  15053. {
  15054. name: "Upsized",
  15055. height: math.unit(20, "feet")
  15056. },
  15057. ]
  15058. ))
  15059. characterMakers.push(() => makeCharacter(
  15060. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15061. {
  15062. front: {
  15063. height: math.unit(7, "feet"),
  15064. weight: math.unit(230, "lb"),
  15065. name: "Front",
  15066. image: {
  15067. source: "./media/characters/nakata/front.svg",
  15068. extra: 1.005,
  15069. bottom: 0.01
  15070. }
  15071. },
  15072. },
  15073. [
  15074. {
  15075. name: "Normal",
  15076. height: math.unit(7, "feet"),
  15077. default: true
  15078. },
  15079. {
  15080. name: "Big",
  15081. height: math.unit(14, "feet")
  15082. },
  15083. {
  15084. name: "Macro",
  15085. height: math.unit(400, "feet")
  15086. },
  15087. ]
  15088. ))
  15089. characterMakers.push(() => makeCharacter(
  15090. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15091. {
  15092. front: {
  15093. height: math.unit(4.91, "feet"),
  15094. weight: math.unit(100, "lb"),
  15095. name: "Front",
  15096. image: {
  15097. source: "./media/characters/lily/front.svg",
  15098. extra: 1585 / 1415,
  15099. bottom: 0.02
  15100. }
  15101. },
  15102. },
  15103. [
  15104. {
  15105. name: "Normal",
  15106. height: math.unit(4.91, "feet"),
  15107. default: true
  15108. },
  15109. ]
  15110. ))
  15111. characterMakers.push(() => makeCharacter(
  15112. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15113. {
  15114. laying: {
  15115. height: math.unit(4 + 4 / 12, "feet"),
  15116. weight: math.unit(600, "lb"),
  15117. name: "Laying",
  15118. image: {
  15119. source: "./media/characters/sheila/laying.svg",
  15120. extra: 1333 / 1265,
  15121. bottom: 0.16
  15122. }
  15123. },
  15124. },
  15125. [
  15126. {
  15127. name: "Normal",
  15128. height: math.unit(4 + 4 / 12, "feet"),
  15129. default: true
  15130. },
  15131. ]
  15132. ))
  15133. characterMakers.push(() => makeCharacter(
  15134. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15135. {
  15136. front: {
  15137. height: math.unit(6, "feet"),
  15138. weight: math.unit(190, "lb"),
  15139. name: "Front",
  15140. image: {
  15141. source: "./media/characters/sax/front.svg",
  15142. extra: 1187 / 973,
  15143. bottom: 0.042
  15144. }
  15145. },
  15146. },
  15147. [
  15148. {
  15149. name: "Micro",
  15150. height: math.unit(4, "inches"),
  15151. default: true
  15152. },
  15153. ]
  15154. ))
  15155. characterMakers.push(() => makeCharacter(
  15156. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15157. {
  15158. front: {
  15159. height: math.unit(6, "feet"),
  15160. weight: math.unit(150, "lb"),
  15161. name: "Front",
  15162. image: {
  15163. source: "./media/characters/pandora/front.svg",
  15164. extra: 2720 / 2556,
  15165. bottom: 0.015
  15166. }
  15167. },
  15168. back: {
  15169. height: math.unit(6, "feet"),
  15170. weight: math.unit(150, "lb"),
  15171. name: "Back",
  15172. image: {
  15173. source: "./media/characters/pandora/back.svg",
  15174. extra: 2720 / 2556,
  15175. bottom: 0.01
  15176. }
  15177. },
  15178. beans: {
  15179. height: math.unit(6 / 8, "feet"),
  15180. name: "Beans",
  15181. image: {
  15182. source: "./media/characters/pandora/beans.svg"
  15183. }
  15184. },
  15185. skirt: {
  15186. height: math.unit(6, "feet"),
  15187. weight: math.unit(150, "lb"),
  15188. name: "Skirt",
  15189. image: {
  15190. source: "./media/characters/pandora/skirt.svg",
  15191. extra: 1622 / 1525,
  15192. bottom: 0.015
  15193. }
  15194. },
  15195. hoodie: {
  15196. height: math.unit(6, "feet"),
  15197. weight: math.unit(150, "lb"),
  15198. name: "Hoodie",
  15199. image: {
  15200. source: "./media/characters/pandora/hoodie.svg",
  15201. extra: 1622 / 1525,
  15202. bottom: 0.015
  15203. }
  15204. },
  15205. casual: {
  15206. height: math.unit(6, "feet"),
  15207. weight: math.unit(150, "lb"),
  15208. name: "Casual",
  15209. image: {
  15210. source: "./media/characters/pandora/casual.svg",
  15211. extra: 1622 / 1525,
  15212. bottom: 0.015
  15213. }
  15214. },
  15215. },
  15216. [
  15217. {
  15218. name: "Normal",
  15219. height: math.unit(6, "feet")
  15220. },
  15221. {
  15222. name: "Big Steppy",
  15223. height: math.unit(1, "km"),
  15224. default: true
  15225. },
  15226. ]
  15227. ))
  15228. characterMakers.push(() => makeCharacter(
  15229. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15230. {
  15231. side: {
  15232. height: math.unit(10, "feet"),
  15233. weight: math.unit(800, "kg"),
  15234. name: "Side",
  15235. image: {
  15236. source: "./media/characters/venio-darcony/side.svg",
  15237. extra: 1373 / 1003,
  15238. bottom: 0.037
  15239. }
  15240. },
  15241. front: {
  15242. height: math.unit(19, "feet"),
  15243. weight: math.unit(800, "kg"),
  15244. name: "Front",
  15245. image: {
  15246. source: "./media/characters/venio-darcony/front.svg"
  15247. }
  15248. },
  15249. back: {
  15250. height: math.unit(19, "feet"),
  15251. weight: math.unit(800, "kg"),
  15252. name: "Back",
  15253. image: {
  15254. source: "./media/characters/venio-darcony/back.svg"
  15255. }
  15256. },
  15257. sideNsfw: {
  15258. height: math.unit(10, "feet"),
  15259. weight: math.unit(800, "kg"),
  15260. name: "Side (NSFW)",
  15261. image: {
  15262. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15263. extra: 1373 / 1003,
  15264. bottom: 0.037
  15265. }
  15266. },
  15267. frontNsfw: {
  15268. height: math.unit(19, "feet"),
  15269. weight: math.unit(800, "kg"),
  15270. name: "Front (NSFW)",
  15271. image: {
  15272. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15273. }
  15274. },
  15275. backNsfw: {
  15276. height: math.unit(19, "feet"),
  15277. weight: math.unit(800, "kg"),
  15278. name: "Back (NSFW)",
  15279. image: {
  15280. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15281. }
  15282. },
  15283. sideArmored: {
  15284. height: math.unit(10, "feet"),
  15285. weight: math.unit(800, "kg"),
  15286. name: "Side (Armored)",
  15287. image: {
  15288. source: "./media/characters/venio-darcony/side-armored.svg",
  15289. extra: 1373 / 1003,
  15290. bottom: 0.037
  15291. }
  15292. },
  15293. frontArmored: {
  15294. height: math.unit(19, "feet"),
  15295. weight: math.unit(900, "kg"),
  15296. name: "Front (Armored)",
  15297. image: {
  15298. source: "./media/characters/venio-darcony/front-armored.svg"
  15299. }
  15300. },
  15301. backArmored: {
  15302. height: math.unit(19, "feet"),
  15303. weight: math.unit(900, "kg"),
  15304. name: "Back (Armored)",
  15305. image: {
  15306. source: "./media/characters/venio-darcony/back-armored.svg"
  15307. }
  15308. },
  15309. sword: {
  15310. height: math.unit(10, "feet"),
  15311. weight: math.unit(50, "lb"),
  15312. name: "Sword",
  15313. image: {
  15314. source: "./media/characters/venio-darcony/sword.svg"
  15315. }
  15316. },
  15317. },
  15318. [
  15319. {
  15320. name: "Normal",
  15321. height: math.unit(10, "feet")
  15322. },
  15323. {
  15324. name: "Macro",
  15325. height: math.unit(130, "feet"),
  15326. default: true
  15327. },
  15328. {
  15329. name: "Macro+",
  15330. height: math.unit(240, "feet")
  15331. },
  15332. ]
  15333. ))
  15334. characterMakers.push(() => makeCharacter(
  15335. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15336. {
  15337. front: {
  15338. height: math.unit(6, "feet"),
  15339. weight: math.unit(150, "lb"),
  15340. name: "Front",
  15341. image: {
  15342. source: "./media/characters/veski/front.svg",
  15343. extra: 1299 / 1225,
  15344. bottom: 0.04
  15345. }
  15346. },
  15347. back: {
  15348. height: math.unit(6, "feet"),
  15349. weight: math.unit(150, "lb"),
  15350. name: "Back",
  15351. image: {
  15352. source: "./media/characters/veski/back.svg",
  15353. extra: 1299 / 1225,
  15354. bottom: 0.008
  15355. }
  15356. },
  15357. maw: {
  15358. height: math.unit(1.5 * 1.21, "feet"),
  15359. name: "Maw",
  15360. image: {
  15361. source: "./media/characters/veski/maw.svg"
  15362. }
  15363. },
  15364. },
  15365. [
  15366. {
  15367. name: "Macro",
  15368. height: math.unit(2, "km"),
  15369. default: true
  15370. },
  15371. ]
  15372. ))
  15373. characterMakers.push(() => makeCharacter(
  15374. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15375. {
  15376. front: {
  15377. height: math.unit(5 + 7 / 12, "feet"),
  15378. name: "Front",
  15379. image: {
  15380. source: "./media/characters/isabelle/front.svg",
  15381. extra: 2130 / 1976,
  15382. bottom: 0.05
  15383. }
  15384. },
  15385. },
  15386. [
  15387. {
  15388. name: "Supermicro",
  15389. height: math.unit(10, "micrometers")
  15390. },
  15391. {
  15392. name: "Micro",
  15393. height: math.unit(1, "inch")
  15394. },
  15395. {
  15396. name: "Tiny",
  15397. height: math.unit(5, "inches")
  15398. },
  15399. {
  15400. name: "Standard",
  15401. height: math.unit(5 + 7 / 12, "inches")
  15402. },
  15403. {
  15404. name: "Macro",
  15405. height: math.unit(80, "meters"),
  15406. default: true
  15407. },
  15408. {
  15409. name: "Megamacro",
  15410. height: math.unit(250, "meters")
  15411. },
  15412. {
  15413. name: "Gigamacro",
  15414. height: math.unit(5, "km")
  15415. },
  15416. {
  15417. name: "Cosmic",
  15418. height: math.unit(2.5e6, "miles")
  15419. },
  15420. ]
  15421. ))
  15422. characterMakers.push(() => makeCharacter(
  15423. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15424. {
  15425. front: {
  15426. height: math.unit(6, "feet"),
  15427. weight: math.unit(150, "lb"),
  15428. name: "Front",
  15429. image: {
  15430. source: "./media/characters/hanzo/front.svg",
  15431. extra: 374 / 344,
  15432. bottom: 0.02
  15433. }
  15434. },
  15435. },
  15436. [
  15437. {
  15438. name: "Normal",
  15439. height: math.unit(8, "feet"),
  15440. default: true
  15441. },
  15442. ]
  15443. ))
  15444. characterMakers.push(() => makeCharacter(
  15445. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15446. {
  15447. front: {
  15448. height: math.unit(7, "feet"),
  15449. weight: math.unit(130, "lb"),
  15450. name: "Front",
  15451. image: {
  15452. source: "./media/characters/anna/front.svg",
  15453. extra: 169 / 145,
  15454. bottom: 0.06
  15455. }
  15456. },
  15457. full: {
  15458. height: math.unit(4.96, "feet"),
  15459. weight: math.unit(220, "lb"),
  15460. name: "Full",
  15461. image: {
  15462. source: "./media/characters/anna/full.svg",
  15463. extra: 138 / 114,
  15464. bottom: 0.15
  15465. }
  15466. },
  15467. tongue: {
  15468. height: math.unit(2.53, "feet"),
  15469. name: "Tongue",
  15470. image: {
  15471. source: "./media/characters/anna/tongue.svg"
  15472. }
  15473. },
  15474. },
  15475. [
  15476. {
  15477. name: "Normal",
  15478. height: math.unit(7, "feet"),
  15479. default: true
  15480. },
  15481. ]
  15482. ))
  15483. characterMakers.push(() => makeCharacter(
  15484. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15485. {
  15486. front: {
  15487. height: math.unit(7, "feet"),
  15488. weight: math.unit(150, "lb"),
  15489. name: "Front",
  15490. image: {
  15491. source: "./media/characters/ian-corvid/front.svg",
  15492. extra: 150 / 142,
  15493. bottom: 0.02
  15494. }
  15495. },
  15496. back: {
  15497. height: math.unit(7, "feet"),
  15498. weight: math.unit(150, "lb"),
  15499. name: "Back",
  15500. image: {
  15501. source: "./media/characters/ian-corvid/back.svg",
  15502. extra: 150 / 143,
  15503. bottom: 0.01
  15504. }
  15505. },
  15506. stomping: {
  15507. height: math.unit(7, "feet"),
  15508. weight: math.unit(150, "lb"),
  15509. name: "Stomping",
  15510. image: {
  15511. source: "./media/characters/ian-corvid/stomping.svg",
  15512. extra: 76 / 72
  15513. }
  15514. },
  15515. sitting: {
  15516. height: math.unit(7 / 1.8, "feet"),
  15517. weight: math.unit(150, "lb"),
  15518. name: "Sitting",
  15519. image: {
  15520. source: "./media/characters/ian-corvid/sitting.svg",
  15521. extra: 1400 / 1269,
  15522. bottom: 0.15
  15523. }
  15524. },
  15525. },
  15526. [
  15527. {
  15528. name: "Tiny Microw",
  15529. height: math.unit(1, "inch")
  15530. },
  15531. {
  15532. name: "Microw",
  15533. height: math.unit(6, "inches")
  15534. },
  15535. {
  15536. name: "Crow",
  15537. height: math.unit(7 + 1 / 12, "feet"),
  15538. default: true
  15539. },
  15540. {
  15541. name: "Macrow",
  15542. height: math.unit(176, "feet")
  15543. },
  15544. ]
  15545. ))
  15546. characterMakers.push(() => makeCharacter(
  15547. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15548. {
  15549. front: {
  15550. height: math.unit(5 + 7 / 12, "feet"),
  15551. weight: math.unit(147, "lb"),
  15552. name: "Front",
  15553. image: {
  15554. source: "./media/characters/natalie-kellon/front.svg",
  15555. extra: 1214 / 1141,
  15556. bottom: 0.02
  15557. }
  15558. },
  15559. },
  15560. [
  15561. {
  15562. name: "Micro",
  15563. height: math.unit(1 / 16, "inch")
  15564. },
  15565. {
  15566. name: "Tiny",
  15567. height: math.unit(4, "inches")
  15568. },
  15569. {
  15570. name: "Normal",
  15571. height: math.unit(5 + 7 / 12, "feet"),
  15572. default: true
  15573. },
  15574. {
  15575. name: "Amazon",
  15576. height: math.unit(12, "feet")
  15577. },
  15578. {
  15579. name: "Giantess",
  15580. height: math.unit(160, "meters")
  15581. },
  15582. {
  15583. name: "Titaness",
  15584. height: math.unit(800, "meters")
  15585. },
  15586. ]
  15587. ))
  15588. characterMakers.push(() => makeCharacter(
  15589. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15590. {
  15591. front: {
  15592. height: math.unit(6, "feet"),
  15593. weight: math.unit(150, "lb"),
  15594. name: "Front",
  15595. image: {
  15596. source: "./media/characters/alluria/front.svg",
  15597. extra: 806 / 738,
  15598. bottom: 0.01
  15599. }
  15600. },
  15601. side: {
  15602. height: math.unit(6, "feet"),
  15603. weight: math.unit(150, "lb"),
  15604. name: "Side",
  15605. image: {
  15606. source: "./media/characters/alluria/side.svg",
  15607. extra: 800 / 750,
  15608. }
  15609. },
  15610. back: {
  15611. height: math.unit(6, "feet"),
  15612. weight: math.unit(150, "lb"),
  15613. name: "Back",
  15614. image: {
  15615. source: "./media/characters/alluria/back.svg",
  15616. extra: 806 / 738,
  15617. }
  15618. },
  15619. frontMaid: {
  15620. height: math.unit(6, "feet"),
  15621. weight: math.unit(150, "lb"),
  15622. name: "Front (Maid)",
  15623. image: {
  15624. source: "./media/characters/alluria/front-maid.svg",
  15625. extra: 806 / 738,
  15626. bottom: 0.01
  15627. }
  15628. },
  15629. sideMaid: {
  15630. height: math.unit(6, "feet"),
  15631. weight: math.unit(150, "lb"),
  15632. name: "Side (Maid)",
  15633. image: {
  15634. source: "./media/characters/alluria/side-maid.svg",
  15635. extra: 800 / 750,
  15636. bottom: 0.005
  15637. }
  15638. },
  15639. backMaid: {
  15640. height: math.unit(6, "feet"),
  15641. weight: math.unit(150, "lb"),
  15642. name: "Back (Maid)",
  15643. image: {
  15644. source: "./media/characters/alluria/back-maid.svg",
  15645. extra: 806 / 738,
  15646. }
  15647. },
  15648. },
  15649. [
  15650. {
  15651. name: "Micro",
  15652. height: math.unit(6, "inches"),
  15653. default: true
  15654. },
  15655. ]
  15656. ))
  15657. characterMakers.push(() => makeCharacter(
  15658. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15659. {
  15660. front: {
  15661. height: math.unit(6, "feet"),
  15662. weight: math.unit(150, "lb"),
  15663. name: "Front",
  15664. image: {
  15665. source: "./media/characters/kyle/front.svg",
  15666. extra: 1069 / 962,
  15667. bottom: 77.228 / 1727.45
  15668. }
  15669. },
  15670. },
  15671. [
  15672. {
  15673. name: "Macro",
  15674. height: math.unit(150, "feet"),
  15675. default: true
  15676. },
  15677. ]
  15678. ))
  15679. characterMakers.push(() => makeCharacter(
  15680. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15681. {
  15682. front: {
  15683. height: math.unit(6, "feet"),
  15684. weight: math.unit(300, "lb"),
  15685. name: "Front",
  15686. image: {
  15687. source: "./media/characters/duncan/front.svg",
  15688. extra: 1650 / 1482,
  15689. bottom: 0.05
  15690. }
  15691. },
  15692. },
  15693. [
  15694. {
  15695. name: "Macro",
  15696. height: math.unit(100, "feet"),
  15697. default: true
  15698. },
  15699. ]
  15700. ))
  15701. characterMakers.push(() => makeCharacter(
  15702. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15703. {
  15704. front: {
  15705. height: math.unit(5 + 4 / 12, "feet"),
  15706. weight: math.unit(220, "lb"),
  15707. name: "Front",
  15708. image: {
  15709. source: "./media/characters/memory/front.svg",
  15710. extra: 3641 / 3545,
  15711. bottom: 0.03
  15712. }
  15713. },
  15714. back: {
  15715. height: math.unit(5 + 4 / 12, "feet"),
  15716. weight: math.unit(220, "lb"),
  15717. name: "Back",
  15718. image: {
  15719. source: "./media/characters/memory/back.svg",
  15720. extra: 3641 / 3545,
  15721. bottom: 0.025
  15722. }
  15723. },
  15724. frontSkirt: {
  15725. height: math.unit(5 + 4 / 12, "feet"),
  15726. weight: math.unit(220, "lb"),
  15727. name: "Front (Skirt)",
  15728. image: {
  15729. source: "./media/characters/memory/front-skirt.svg",
  15730. extra: 3641 / 3545,
  15731. bottom: 0.03
  15732. }
  15733. },
  15734. frontDress: {
  15735. height: math.unit(5 + 4 / 12, "feet"),
  15736. weight: math.unit(220, "lb"),
  15737. name: "Front (Dress)",
  15738. image: {
  15739. source: "./media/characters/memory/front-dress.svg",
  15740. extra: 3641 / 3545,
  15741. bottom: 0.03
  15742. }
  15743. },
  15744. },
  15745. [
  15746. {
  15747. name: "Micro",
  15748. height: math.unit(6, "inches"),
  15749. default: true
  15750. },
  15751. {
  15752. name: "Normal",
  15753. height: math.unit(5 + 4 / 12, "feet")
  15754. },
  15755. ]
  15756. ))
  15757. characterMakers.push(() => makeCharacter(
  15758. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15759. {
  15760. front: {
  15761. height: math.unit(4 + 11 / 12, "feet"),
  15762. weight: math.unit(100, "lb"),
  15763. name: "Front",
  15764. image: {
  15765. source: "./media/characters/luno/front.svg",
  15766. extra: 1535 / 1487,
  15767. bottom: 0.03
  15768. }
  15769. },
  15770. },
  15771. [
  15772. {
  15773. name: "Micro",
  15774. height: math.unit(3, "inches")
  15775. },
  15776. {
  15777. name: "Normal",
  15778. height: math.unit(4 + 11 / 12, "feet"),
  15779. default: true
  15780. },
  15781. {
  15782. name: "Macro",
  15783. height: math.unit(300, "feet")
  15784. },
  15785. {
  15786. name: "Megamacro",
  15787. height: math.unit(700, "miles")
  15788. },
  15789. ]
  15790. ))
  15791. characterMakers.push(() => makeCharacter(
  15792. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15793. {
  15794. front: {
  15795. height: math.unit(6 + 2 / 12, "feet"),
  15796. weight: math.unit(170, "lb"),
  15797. name: "Front",
  15798. image: {
  15799. source: "./media/characters/jamesy/front.svg",
  15800. extra: 440 / 382,
  15801. bottom: 0.005
  15802. }
  15803. },
  15804. },
  15805. [
  15806. {
  15807. name: "Micro",
  15808. height: math.unit(3, "inches")
  15809. },
  15810. {
  15811. name: "Normal",
  15812. height: math.unit(6 + 2 / 12, "feet"),
  15813. default: true
  15814. },
  15815. {
  15816. name: "Macro",
  15817. height: math.unit(300, "feet")
  15818. },
  15819. {
  15820. name: "Megamacro",
  15821. height: math.unit(700, "miles")
  15822. },
  15823. ]
  15824. ))
  15825. characterMakers.push(() => makeCharacter(
  15826. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15827. {
  15828. front: {
  15829. height: math.unit(6, "feet"),
  15830. weight: math.unit(160, "lb"),
  15831. name: "Front",
  15832. image: {
  15833. source: "./media/characters/mark/front.svg",
  15834. extra: 3300 / 3100,
  15835. bottom: 136.42 / 3440.47
  15836. }
  15837. },
  15838. },
  15839. [
  15840. {
  15841. name: "Macro",
  15842. height: math.unit(120, "meters")
  15843. },
  15844. {
  15845. name: "Bigger Macro",
  15846. height: math.unit(350, "meters")
  15847. },
  15848. {
  15849. name: "Megamacro",
  15850. height: math.unit(8, "km"),
  15851. default: true
  15852. },
  15853. {
  15854. name: "Continental",
  15855. height: math.unit(4550, "km")
  15856. },
  15857. {
  15858. name: "Planetary",
  15859. height: math.unit(65000, "km")
  15860. },
  15861. ]
  15862. ))
  15863. characterMakers.push(() => makeCharacter(
  15864. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15865. {
  15866. front: {
  15867. height: math.unit(6, "feet"),
  15868. weight: math.unit(400, "lb"),
  15869. name: "Front",
  15870. image: {
  15871. source: "./media/characters/mac/front.svg",
  15872. extra: 1048 / 987.7,
  15873. bottom: 60 / 1107.6,
  15874. }
  15875. },
  15876. },
  15877. [
  15878. {
  15879. name: "Macro",
  15880. height: math.unit(500, "feet"),
  15881. default: true
  15882. },
  15883. ]
  15884. ))
  15885. characterMakers.push(() => makeCharacter(
  15886. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15887. {
  15888. front: {
  15889. height: math.unit(5 + 2 / 12, "feet"),
  15890. weight: math.unit(190, "lb"),
  15891. name: "Front",
  15892. image: {
  15893. source: "./media/characters/bari/front.svg",
  15894. extra: 3156 / 2880,
  15895. bottom: 0.03
  15896. }
  15897. },
  15898. back: {
  15899. height: math.unit(5 + 2 / 12, "feet"),
  15900. weight: math.unit(190, "lb"),
  15901. name: "Back",
  15902. image: {
  15903. source: "./media/characters/bari/back.svg",
  15904. extra: 3260 / 2834,
  15905. bottom: 0.025
  15906. }
  15907. },
  15908. frontPlush: {
  15909. height: math.unit(5 + 2 / 12, "feet"),
  15910. weight: math.unit(190, "lb"),
  15911. name: "Front (Plush)",
  15912. image: {
  15913. source: "./media/characters/bari/front-plush.svg",
  15914. extra: 1112 / 1061,
  15915. bottom: 0.002
  15916. }
  15917. },
  15918. },
  15919. [
  15920. {
  15921. name: "Micro",
  15922. height: math.unit(3, "inches")
  15923. },
  15924. {
  15925. name: "Normal",
  15926. height: math.unit(5 + 2 / 12, "feet"),
  15927. default: true
  15928. },
  15929. {
  15930. name: "Macro",
  15931. height: math.unit(20, "feet")
  15932. },
  15933. ]
  15934. ))
  15935. characterMakers.push(() => makeCharacter(
  15936. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15937. {
  15938. front: {
  15939. height: math.unit(6 + 1 / 12, "feet"),
  15940. weight: math.unit(275, "lb"),
  15941. name: "Front",
  15942. image: {
  15943. source: "./media/characters/hunter-misha-raven/front.svg"
  15944. }
  15945. },
  15946. },
  15947. [
  15948. {
  15949. name: "Mortal",
  15950. height: math.unit(6 + 1 / 12, "feet")
  15951. },
  15952. {
  15953. name: "Divine",
  15954. height: math.unit(1.12134e34, "parsecs"),
  15955. default: true
  15956. },
  15957. ]
  15958. ))
  15959. characterMakers.push(() => makeCharacter(
  15960. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15961. {
  15962. front: {
  15963. height: math.unit(6 + 3 / 12, "feet"),
  15964. weight: math.unit(220, "lb"),
  15965. name: "Front",
  15966. image: {
  15967. source: "./media/characters/max-calore/front.svg",
  15968. extra: 1700 / 1648,
  15969. bottom: 0.01
  15970. }
  15971. },
  15972. back: {
  15973. height: math.unit(6 + 3 / 12, "feet"),
  15974. weight: math.unit(220, "lb"),
  15975. name: "Back",
  15976. image: {
  15977. source: "./media/characters/max-calore/back.svg",
  15978. extra: 1700 / 1648,
  15979. bottom: 0.01
  15980. }
  15981. },
  15982. },
  15983. [
  15984. {
  15985. name: "Normal",
  15986. height: math.unit(6 + 3 / 12, "feet"),
  15987. default: true
  15988. },
  15989. ]
  15990. ))
  15991. characterMakers.push(() => makeCharacter(
  15992. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15993. {
  15994. side: {
  15995. height: math.unit(2 + 8 / 12, "feet"),
  15996. weight: math.unit(99, "lb"),
  15997. name: "Side",
  15998. image: {
  15999. source: "./media/characters/aspen/side.svg",
  16000. extra: 152 / 138,
  16001. bottom: 0.032
  16002. }
  16003. },
  16004. },
  16005. [
  16006. {
  16007. name: "Normal",
  16008. height: math.unit(2 + 8 / 12, "feet"),
  16009. default: true
  16010. },
  16011. ]
  16012. ))
  16013. characterMakers.push(() => makeCharacter(
  16014. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16015. {
  16016. side: {
  16017. height: math.unit(3 + 2 / 12, "feet"),
  16018. weight: math.unit(224, "lb"),
  16019. name: "Side",
  16020. image: {
  16021. source: "./media/characters/sheila-feral-wolf/side.svg",
  16022. extra: 179 / 166,
  16023. bottom: 0.03
  16024. }
  16025. },
  16026. },
  16027. [
  16028. {
  16029. name: "Normal",
  16030. height: math.unit(3 + 2 / 12, "feet"),
  16031. default: true
  16032. },
  16033. ]
  16034. ))
  16035. characterMakers.push(() => makeCharacter(
  16036. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16037. {
  16038. side: {
  16039. height: math.unit(1 + 9 / 12, "feet"),
  16040. weight: math.unit(38, "lb"),
  16041. name: "Side",
  16042. image: {
  16043. source: "./media/characters/michelle/side.svg",
  16044. extra: 147 / 136.7,
  16045. bottom: 0.03
  16046. }
  16047. },
  16048. },
  16049. [
  16050. {
  16051. name: "Normal",
  16052. height: math.unit(1 + 9 / 12, "feet"),
  16053. default: true
  16054. },
  16055. ]
  16056. ))
  16057. characterMakers.push(() => makeCharacter(
  16058. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16059. {
  16060. front: {
  16061. height: math.unit(1 + 1 / 12, "feet"),
  16062. weight: math.unit(18, "lb"),
  16063. name: "Front",
  16064. image: {
  16065. source: "./media/characters/nino/front.svg"
  16066. }
  16067. },
  16068. },
  16069. [
  16070. {
  16071. name: "Normal",
  16072. height: math.unit(1 + 1 / 12, "feet"),
  16073. default: true
  16074. },
  16075. ]
  16076. ))
  16077. characterMakers.push(() => makeCharacter(
  16078. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16079. {
  16080. front: {
  16081. height: math.unit(1, "feet"),
  16082. weight: math.unit(16, "lb"),
  16083. name: "Front",
  16084. image: {
  16085. source: "./media/characters/viola/front.svg"
  16086. }
  16087. },
  16088. },
  16089. [
  16090. {
  16091. name: "Normal",
  16092. height: math.unit(1, "feet"),
  16093. default: true
  16094. },
  16095. ]
  16096. ))
  16097. characterMakers.push(() => makeCharacter(
  16098. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16099. {
  16100. front: {
  16101. height: math.unit(6 + 5 / 12, "feet"),
  16102. weight: math.unit(580, "lb"),
  16103. name: "Front",
  16104. image: {
  16105. source: "./media/characters/atlas/front.svg",
  16106. extra: 298.5 / 290,
  16107. bottom: 0.015
  16108. }
  16109. },
  16110. },
  16111. [
  16112. {
  16113. name: "Normal",
  16114. height: math.unit(6 + 5 / 12, "feet"),
  16115. default: true
  16116. },
  16117. ]
  16118. ))
  16119. characterMakers.push(() => makeCharacter(
  16120. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16121. {
  16122. side: {
  16123. height: math.unit(1 + 10 / 12, "feet"),
  16124. weight: math.unit(25, "lb"),
  16125. name: "Side",
  16126. image: {
  16127. source: "./media/characters/davy/side.svg",
  16128. extra: 200 / 170,
  16129. bottom: 0.01
  16130. }
  16131. },
  16132. },
  16133. [
  16134. {
  16135. name: "Normal",
  16136. height: math.unit(1 + 10 / 12, "feet"),
  16137. default: true
  16138. },
  16139. ]
  16140. ))
  16141. characterMakers.push(() => makeCharacter(
  16142. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16143. {
  16144. side: {
  16145. height: math.unit(4 + 8 / 12, "feet"),
  16146. weight: math.unit(166, "lb"),
  16147. name: "Side",
  16148. image: {
  16149. source: "./media/characters/fiona/side.svg",
  16150. extra: 232 / 220,
  16151. bottom: 0.03
  16152. }
  16153. },
  16154. },
  16155. [
  16156. {
  16157. name: "Normal",
  16158. height: math.unit(4 + 8 / 12, "feet"),
  16159. default: true
  16160. },
  16161. ]
  16162. ))
  16163. characterMakers.push(() => makeCharacter(
  16164. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16165. {
  16166. front: {
  16167. height: math.unit(2, "feet"),
  16168. weight: math.unit(62, "lb"),
  16169. name: "Front",
  16170. image: {
  16171. source: "./media/characters/lyla/front.svg",
  16172. bottom: 0.1
  16173. }
  16174. },
  16175. },
  16176. [
  16177. {
  16178. name: "Normal",
  16179. height: math.unit(2, "feet"),
  16180. default: true
  16181. },
  16182. ]
  16183. ))
  16184. characterMakers.push(() => makeCharacter(
  16185. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16186. {
  16187. side: {
  16188. height: math.unit(1.8, "feet"),
  16189. weight: math.unit(44, "lb"),
  16190. name: "Side",
  16191. image: {
  16192. source: "./media/characters/perseus/side.svg",
  16193. bottom: 0.21
  16194. }
  16195. },
  16196. },
  16197. [
  16198. {
  16199. name: "Normal",
  16200. height: math.unit(1.8, "feet"),
  16201. default: true
  16202. },
  16203. ]
  16204. ))
  16205. characterMakers.push(() => makeCharacter(
  16206. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16207. {
  16208. side: {
  16209. height: math.unit(4 + 2 / 12, "feet"),
  16210. weight: math.unit(20, "lb"),
  16211. name: "Side",
  16212. image: {
  16213. source: "./media/characters/remus/side.svg"
  16214. }
  16215. },
  16216. },
  16217. [
  16218. {
  16219. name: "Normal",
  16220. height: math.unit(4 + 2 / 12, "feet"),
  16221. default: true
  16222. },
  16223. ]
  16224. ))
  16225. characterMakers.push(() => makeCharacter(
  16226. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16227. {
  16228. front: {
  16229. height: math.unit(4 + 11 / 12, "feet"),
  16230. weight: math.unit(114, "lb"),
  16231. name: "Front",
  16232. image: {
  16233. source: "./media/characters/raf/front.svg",
  16234. bottom: 20.5 / 1863
  16235. }
  16236. },
  16237. side: {
  16238. height: math.unit(4 + 11 / 12, "feet"),
  16239. weight: math.unit(114, "lb"),
  16240. name: "Side",
  16241. image: {
  16242. source: "./media/characters/raf/side.svg",
  16243. bottom: 22 / 1822
  16244. }
  16245. },
  16246. },
  16247. [
  16248. {
  16249. name: "Micro",
  16250. height: math.unit(2, "inches")
  16251. },
  16252. {
  16253. name: "Normal",
  16254. height: math.unit(4 + 11 / 12, "feet"),
  16255. default: true
  16256. },
  16257. {
  16258. name: "Macro",
  16259. height: math.unit(70, "feet")
  16260. },
  16261. ]
  16262. ))
  16263. characterMakers.push(() => makeCharacter(
  16264. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16265. {
  16266. front: {
  16267. height: math.unit(1.5, "meters"),
  16268. weight: math.unit(68, "kg"),
  16269. name: "Front",
  16270. image: {
  16271. source: "./media/characters/liam-einarr/front.svg",
  16272. extra: 2822 / 2666
  16273. }
  16274. },
  16275. back: {
  16276. height: math.unit(1.5, "meters"),
  16277. weight: math.unit(68, "kg"),
  16278. name: "Back",
  16279. image: {
  16280. source: "./media/characters/liam-einarr/back.svg",
  16281. extra: 2822 / 2666,
  16282. bottom: 0.015
  16283. }
  16284. },
  16285. },
  16286. [
  16287. {
  16288. name: "Normal",
  16289. height: math.unit(1.5, "meters"),
  16290. default: true
  16291. },
  16292. {
  16293. name: "Macro",
  16294. height: math.unit(150, "meters")
  16295. },
  16296. {
  16297. name: "Megamacro",
  16298. height: math.unit(35, "km")
  16299. },
  16300. ]
  16301. ))
  16302. characterMakers.push(() => makeCharacter(
  16303. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16304. {
  16305. front: {
  16306. height: math.unit(6, "feet"),
  16307. weight: math.unit(75, "kg"),
  16308. name: "Front",
  16309. image: {
  16310. source: "./media/characters/linda/front.svg",
  16311. extra: 930 / 874,
  16312. bottom: 0.004
  16313. }
  16314. },
  16315. },
  16316. [
  16317. {
  16318. name: "Normal",
  16319. height: math.unit(6, "feet"),
  16320. default: true
  16321. },
  16322. ]
  16323. ))
  16324. characterMakers.push(() => makeCharacter(
  16325. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16326. {
  16327. front: {
  16328. height: math.unit(6 + 8 / 12, "feet"),
  16329. weight: math.unit(220, "lb"),
  16330. name: "Front",
  16331. image: {
  16332. source: "./media/characters/caylex/front.svg",
  16333. extra: 821 / 772,
  16334. bottom: 0.07
  16335. }
  16336. },
  16337. back: {
  16338. height: math.unit(6 + 8 / 12, "feet"),
  16339. weight: math.unit(220, "lb"),
  16340. name: "Back",
  16341. image: {
  16342. source: "./media/characters/caylex/back.svg",
  16343. extra: 821 / 772,
  16344. bottom: 0.022
  16345. }
  16346. },
  16347. hand: {
  16348. height: math.unit(1.25, "feet"),
  16349. name: "Hand",
  16350. image: {
  16351. source: "./media/characters/caylex/hand.svg"
  16352. }
  16353. },
  16354. foot: {
  16355. height: math.unit(1.6, "feet"),
  16356. name: "Foot",
  16357. image: {
  16358. source: "./media/characters/caylex/foot.svg"
  16359. }
  16360. },
  16361. armored: {
  16362. height: math.unit(6 + 8 / 12, "feet"),
  16363. weight: math.unit(250, "lb"),
  16364. name: "Armored",
  16365. image: {
  16366. source: "./media/characters/caylex/armored.svg",
  16367. extra: 1420 / 1310,
  16368. bottom: 0.045
  16369. }
  16370. },
  16371. },
  16372. [
  16373. {
  16374. name: "Normal",
  16375. height: math.unit(6 + 8 / 12, "feet"),
  16376. default: true
  16377. },
  16378. {
  16379. name: "Normal+",
  16380. height: math.unit(12, "feet")
  16381. },
  16382. ]
  16383. ))
  16384. characterMakers.push(() => makeCharacter(
  16385. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16386. {
  16387. front: {
  16388. height: math.unit(7 + 6 / 12, "feet"),
  16389. weight: math.unit(288, "lb"),
  16390. name: "Front",
  16391. image: {
  16392. source: "./media/characters/alana/front.svg",
  16393. extra: 679 / 653,
  16394. bottom: 22.5 / 701
  16395. }
  16396. },
  16397. },
  16398. [
  16399. {
  16400. name: "Normal",
  16401. height: math.unit(7 + 6 / 12, "feet")
  16402. },
  16403. {
  16404. name: "Large",
  16405. height: math.unit(50, "feet")
  16406. },
  16407. {
  16408. name: "Macro",
  16409. height: math.unit(100, "feet"),
  16410. default: true
  16411. },
  16412. {
  16413. name: "Macro+",
  16414. height: math.unit(200, "feet")
  16415. },
  16416. ]
  16417. ))
  16418. characterMakers.push(() => makeCharacter(
  16419. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16420. {
  16421. front: {
  16422. height: math.unit(6 + 1 / 12, "feet"),
  16423. weight: math.unit(210, "lb"),
  16424. name: "Front",
  16425. image: {
  16426. source: "./media/characters/hasani/front.svg",
  16427. extra: 244 / 232,
  16428. bottom: 0.01
  16429. }
  16430. },
  16431. back: {
  16432. height: math.unit(6 + 1 / 12, "feet"),
  16433. weight: math.unit(210, "lb"),
  16434. name: "Back",
  16435. image: {
  16436. source: "./media/characters/hasani/back.svg",
  16437. extra: 244 / 232,
  16438. bottom: 0.01
  16439. }
  16440. },
  16441. },
  16442. [
  16443. {
  16444. name: "Normal",
  16445. height: math.unit(6 + 1 / 12, "feet")
  16446. },
  16447. {
  16448. name: "Macro",
  16449. height: math.unit(175, "feet"),
  16450. default: true
  16451. },
  16452. ]
  16453. ))
  16454. characterMakers.push(() => makeCharacter(
  16455. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16456. {
  16457. front: {
  16458. height: math.unit(1.82, "meters"),
  16459. weight: math.unit(140, "lb"),
  16460. name: "Front",
  16461. image: {
  16462. source: "./media/characters/nita/front.svg",
  16463. extra: 2473 / 2363,
  16464. bottom: 0.01
  16465. }
  16466. },
  16467. },
  16468. [
  16469. {
  16470. name: "Normal",
  16471. height: math.unit(1.82, "m")
  16472. },
  16473. {
  16474. name: "Macro",
  16475. height: math.unit(300, "m")
  16476. },
  16477. {
  16478. name: "Mistake Canon",
  16479. height: math.unit(0.5, "miles"),
  16480. default: true
  16481. },
  16482. {
  16483. name: "Big Mistake",
  16484. height: math.unit(13, "miles")
  16485. },
  16486. {
  16487. name: "Playing God",
  16488. height: math.unit(2450, "miles")
  16489. },
  16490. ]
  16491. ))
  16492. characterMakers.push(() => makeCharacter(
  16493. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16494. {
  16495. front: {
  16496. height: math.unit(4, "feet"),
  16497. weight: math.unit(120, "lb"),
  16498. name: "Front",
  16499. image: {
  16500. source: "./media/characters/shiriko/front.svg",
  16501. extra: 195 / 188
  16502. }
  16503. },
  16504. },
  16505. [
  16506. {
  16507. name: "Normal",
  16508. height: math.unit(4, "feet"),
  16509. default: true
  16510. },
  16511. ]
  16512. ))
  16513. characterMakers.push(() => makeCharacter(
  16514. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16515. {
  16516. front: {
  16517. height: math.unit(6, "feet"),
  16518. name: "front",
  16519. image: {
  16520. source: "./media/characters/deja/front.svg",
  16521. extra: 926 / 840,
  16522. bottom: 0.07
  16523. }
  16524. },
  16525. },
  16526. [
  16527. {
  16528. name: "Planck Length",
  16529. height: math.unit(1.6e-35, "meters")
  16530. },
  16531. {
  16532. name: "Normal",
  16533. height: math.unit(30.48, "meters"),
  16534. default: true
  16535. },
  16536. {
  16537. name: "Universal",
  16538. height: math.unit(8.8e26, "meters")
  16539. },
  16540. ]
  16541. ))
  16542. characterMakers.push(() => makeCharacter(
  16543. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16544. {
  16545. side: {
  16546. height: math.unit(8, "feet"),
  16547. weight: math.unit(6300, "lb"),
  16548. name: "Side",
  16549. image: {
  16550. source: "./media/characters/anima/side.svg",
  16551. bottom: 0.035
  16552. }
  16553. },
  16554. },
  16555. [
  16556. {
  16557. name: "Normal",
  16558. height: math.unit(8, "feet"),
  16559. default: true
  16560. },
  16561. ]
  16562. ))
  16563. characterMakers.push(() => makeCharacter(
  16564. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16565. {
  16566. front: {
  16567. height: math.unit(8, "feet"),
  16568. weight: math.unit(350, "lb"),
  16569. name: "Front",
  16570. image: {
  16571. source: "./media/characters/bianca/front.svg",
  16572. extra: 234 / 225,
  16573. bottom: 0.03
  16574. }
  16575. },
  16576. },
  16577. [
  16578. {
  16579. name: "Normal",
  16580. height: math.unit(8, "feet"),
  16581. default: true
  16582. },
  16583. ]
  16584. ))
  16585. characterMakers.push(() => makeCharacter(
  16586. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16587. {
  16588. front: {
  16589. height: math.unit(6, "feet"),
  16590. weight: math.unit(150, "lb"),
  16591. name: "Front",
  16592. image: {
  16593. source: "./media/characters/adinia/front.svg",
  16594. extra: 1845 / 1672,
  16595. bottom: 0.02
  16596. }
  16597. },
  16598. back: {
  16599. height: math.unit(6, "feet"),
  16600. weight: math.unit(150, "lb"),
  16601. name: "Back",
  16602. image: {
  16603. source: "./media/characters/adinia/back.svg",
  16604. extra: 1845 / 1672,
  16605. bottom: 0.002
  16606. }
  16607. },
  16608. },
  16609. [
  16610. {
  16611. name: "Normal",
  16612. height: math.unit(11 + 5 / 12, "feet"),
  16613. default: true
  16614. },
  16615. ]
  16616. ))
  16617. characterMakers.push(() => makeCharacter(
  16618. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16619. {
  16620. front: {
  16621. height: math.unit(3, "meters"),
  16622. weight: math.unit(200, "kg"),
  16623. name: "Front",
  16624. image: {
  16625. source: "./media/characters/lykasa/front.svg",
  16626. extra: 1076 / 976,
  16627. bottom: 0.06
  16628. }
  16629. },
  16630. },
  16631. [
  16632. {
  16633. name: "Normal",
  16634. height: math.unit(3, "meters")
  16635. },
  16636. {
  16637. name: "Kaiju",
  16638. height: math.unit(120, "meters"),
  16639. default: true
  16640. },
  16641. {
  16642. name: "Mega Kaiju",
  16643. height: math.unit(240, "km")
  16644. },
  16645. {
  16646. name: "Giga Kaiju",
  16647. height: math.unit(400, "megameters")
  16648. },
  16649. {
  16650. name: "Tera Kaiju",
  16651. height: math.unit(800, "gigameters")
  16652. },
  16653. {
  16654. name: "Kaiju Dragon Goddess",
  16655. height: math.unit(26, "zettaparsecs")
  16656. },
  16657. ]
  16658. ))
  16659. characterMakers.push(() => makeCharacter(
  16660. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16661. {
  16662. side: {
  16663. height: math.unit(283 / 124 * 6, "feet"),
  16664. weight: math.unit(35000, "lb"),
  16665. name: "Side",
  16666. image: {
  16667. source: "./media/characters/malfaren/side.svg",
  16668. extra: 2500 / 1010,
  16669. bottom: 0.01
  16670. }
  16671. },
  16672. front: {
  16673. height: math.unit(22.36, "feet"),
  16674. weight: math.unit(35000, "lb"),
  16675. name: "Front",
  16676. image: {
  16677. source: "./media/characters/malfaren/front.svg",
  16678. extra: 1631 / 1476,
  16679. bottom: 0.01
  16680. }
  16681. },
  16682. maw: {
  16683. height: math.unit(6.9, "feet"),
  16684. name: "Maw",
  16685. image: {
  16686. source: "./media/characters/malfaren/maw.svg"
  16687. }
  16688. },
  16689. },
  16690. [
  16691. {
  16692. name: "Big",
  16693. height: math.unit(283 / 162 * 6, "feet"),
  16694. },
  16695. {
  16696. name: "Bigger",
  16697. height: math.unit(283 / 124 * 6, "feet")
  16698. },
  16699. {
  16700. name: "Massive",
  16701. height: math.unit(283 / 92 * 6, "feet"),
  16702. default: true
  16703. },
  16704. {
  16705. name: "👀💦",
  16706. height: math.unit(283 / 73 * 6, "feet"),
  16707. },
  16708. ]
  16709. ))
  16710. characterMakers.push(() => makeCharacter(
  16711. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16712. {
  16713. front: {
  16714. height: math.unit(1.7, "m"),
  16715. weight: math.unit(70, "kg"),
  16716. name: "Front",
  16717. image: {
  16718. source: "./media/characters/kernel/front.svg",
  16719. extra: 222 / 210,
  16720. bottom: 0.007
  16721. }
  16722. },
  16723. },
  16724. [
  16725. {
  16726. name: "Nano",
  16727. height: math.unit(17, "micrometers")
  16728. },
  16729. {
  16730. name: "Micro",
  16731. height: math.unit(1.7, "mm")
  16732. },
  16733. {
  16734. name: "Small",
  16735. height: math.unit(1.7, "cm")
  16736. },
  16737. {
  16738. name: "Normal",
  16739. height: math.unit(1.7, "m"),
  16740. default: true
  16741. },
  16742. ]
  16743. ))
  16744. characterMakers.push(() => makeCharacter(
  16745. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16746. {
  16747. front: {
  16748. height: math.unit(1.75, "meters"),
  16749. weight: math.unit(65, "kg"),
  16750. name: "Front",
  16751. image: {
  16752. source: "./media/characters/jayne-folest/front.svg",
  16753. extra: 2115 / 2007,
  16754. bottom: 0.02
  16755. }
  16756. },
  16757. back: {
  16758. height: math.unit(1.75, "meters"),
  16759. weight: math.unit(65, "kg"),
  16760. name: "Back",
  16761. image: {
  16762. source: "./media/characters/jayne-folest/back.svg",
  16763. extra: 2115 / 2007,
  16764. bottom: 0.005
  16765. }
  16766. },
  16767. frontClothed: {
  16768. height: math.unit(1.75, "meters"),
  16769. weight: math.unit(65, "kg"),
  16770. name: "Front (Clothed)",
  16771. image: {
  16772. source: "./media/characters/jayne-folest/front-clothed.svg",
  16773. extra: 2115 / 2007,
  16774. bottom: 0.035
  16775. }
  16776. },
  16777. hand: {
  16778. height: math.unit(1 / 1.260, "feet"),
  16779. name: "Hand",
  16780. image: {
  16781. source: "./media/characters/jayne-folest/hand.svg"
  16782. }
  16783. },
  16784. foot: {
  16785. height: math.unit(1 / 0.918, "feet"),
  16786. name: "Foot",
  16787. image: {
  16788. source: "./media/characters/jayne-folest/foot.svg"
  16789. }
  16790. },
  16791. },
  16792. [
  16793. {
  16794. name: "Micro",
  16795. height: math.unit(4, "cm")
  16796. },
  16797. {
  16798. name: "Normal",
  16799. height: math.unit(1.75, "meters")
  16800. },
  16801. {
  16802. name: "Macro",
  16803. height: math.unit(47.5, "meters"),
  16804. default: true
  16805. },
  16806. ]
  16807. ))
  16808. characterMakers.push(() => makeCharacter(
  16809. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16810. {
  16811. front: {
  16812. height: math.unit(180, "cm"),
  16813. weight: math.unit(70, "kg"),
  16814. name: "Front",
  16815. image: {
  16816. source: "./media/characters/algier/front.svg",
  16817. extra: 596 / 572,
  16818. bottom: 0.04
  16819. }
  16820. },
  16821. back: {
  16822. height: math.unit(180, "cm"),
  16823. weight: math.unit(70, "kg"),
  16824. name: "Back",
  16825. image: {
  16826. source: "./media/characters/algier/back.svg",
  16827. extra: 596 / 572,
  16828. bottom: 0.025
  16829. }
  16830. },
  16831. frontdressed: {
  16832. height: math.unit(180, "cm"),
  16833. weight: math.unit(150, "kg"),
  16834. name: "Front-dressed",
  16835. image: {
  16836. source: "./media/characters/algier/front-dressed.svg",
  16837. extra: 596 / 572,
  16838. bottom: 0.038
  16839. }
  16840. },
  16841. },
  16842. [
  16843. {
  16844. name: "Micro",
  16845. height: math.unit(5, "cm")
  16846. },
  16847. {
  16848. name: "Normal",
  16849. height: math.unit(180, "cm"),
  16850. default: true
  16851. },
  16852. {
  16853. name: "Macro",
  16854. height: math.unit(64, "m")
  16855. },
  16856. ]
  16857. ))
  16858. characterMakers.push(() => makeCharacter(
  16859. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16860. {
  16861. upright: {
  16862. height: math.unit(7, "feet"),
  16863. weight: math.unit(300, "lb"),
  16864. name: "Upright",
  16865. image: {
  16866. source: "./media/characters/pretzel/upright.svg",
  16867. extra: 534 / 522,
  16868. bottom: 0.065
  16869. }
  16870. },
  16871. sprawling: {
  16872. height: math.unit(3.75, "feet"),
  16873. weight: math.unit(300, "lb"),
  16874. name: "Sprawling",
  16875. image: {
  16876. source: "./media/characters/pretzel/sprawling.svg",
  16877. extra: 314 / 281,
  16878. bottom: 0.1
  16879. }
  16880. },
  16881. tongue: {
  16882. height: math.unit(2, "feet"),
  16883. name: "Tongue",
  16884. image: {
  16885. source: "./media/characters/pretzel/tongue.svg"
  16886. }
  16887. },
  16888. },
  16889. [
  16890. {
  16891. name: "Normal",
  16892. height: math.unit(7, "feet"),
  16893. default: true
  16894. },
  16895. {
  16896. name: "Oversized",
  16897. height: math.unit(15, "feet")
  16898. },
  16899. {
  16900. name: "Huge",
  16901. height: math.unit(30, "feet")
  16902. },
  16903. {
  16904. name: "Macro",
  16905. height: math.unit(250, "feet")
  16906. },
  16907. ]
  16908. ))
  16909. characterMakers.push(() => makeCharacter(
  16910. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16911. {
  16912. sideFront: {
  16913. height: math.unit(5 + 2 / 12, "feet"),
  16914. weight: math.unit(120, "lb"),
  16915. name: "Front Side",
  16916. image: {
  16917. source: "./media/characters/roxi/side-front.svg",
  16918. extra: 2924 / 2717,
  16919. bottom: 0.08
  16920. }
  16921. },
  16922. sideBack: {
  16923. height: math.unit(5 + 2 / 12, "feet"),
  16924. weight: math.unit(120, "lb"),
  16925. name: "Back Side",
  16926. image: {
  16927. source: "./media/characters/roxi/side-back.svg",
  16928. extra: 2904 / 2693,
  16929. bottom: 0.06
  16930. }
  16931. },
  16932. front: {
  16933. height: math.unit(5 + 2 / 12, "feet"),
  16934. weight: math.unit(120, "lb"),
  16935. name: "Front",
  16936. image: {
  16937. source: "./media/characters/roxi/front.svg",
  16938. extra: 2028 / 1907,
  16939. bottom: 0.01
  16940. }
  16941. },
  16942. frontAlt: {
  16943. height: math.unit(5 + 2 / 12, "feet"),
  16944. weight: math.unit(120, "lb"),
  16945. name: "Front (Alt)",
  16946. image: {
  16947. source: "./media/characters/roxi/front-alt.svg",
  16948. extra: 1828 / 1798,
  16949. bottom: 0.01
  16950. }
  16951. },
  16952. sitting: {
  16953. height: math.unit(2.8, "feet"),
  16954. weight: math.unit(120, "lb"),
  16955. name: "Sitting",
  16956. image: {
  16957. source: "./media/characters/roxi/sitting.svg",
  16958. extra: 2660 / 2462,
  16959. bottom: 0.1
  16960. }
  16961. },
  16962. },
  16963. [
  16964. {
  16965. name: "Normal",
  16966. height: math.unit(5 + 2 / 12, "feet"),
  16967. default: true
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16973. {
  16974. side: {
  16975. height: math.unit(55, "feet"),
  16976. weight: math.unit(153, "tons"),
  16977. name: "Side",
  16978. image: {
  16979. source: "./media/characters/shadow/side.svg",
  16980. extra: 701 / 628,
  16981. bottom: 0.02
  16982. }
  16983. },
  16984. flying: {
  16985. height: math.unit(145, "feet"),
  16986. weight: math.unit(153, "tons"),
  16987. name: "Flying",
  16988. image: {
  16989. source: "./media/characters/shadow/flying.svg"
  16990. }
  16991. },
  16992. },
  16993. [
  16994. {
  16995. name: "Normal",
  16996. height: math.unit(55, "feet"),
  16997. default: true
  16998. },
  16999. ]
  17000. ))
  17001. characterMakers.push(() => makeCharacter(
  17002. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17003. {
  17004. front: {
  17005. height: math.unit(6, "feet"),
  17006. weight: math.unit(200, "lb"),
  17007. name: "Front",
  17008. image: {
  17009. source: "./media/characters/marcie/front.svg",
  17010. extra: 960 / 876,
  17011. bottom: 58 / 1017.87
  17012. }
  17013. },
  17014. },
  17015. [
  17016. {
  17017. name: "Macro",
  17018. height: math.unit(1, "mile"),
  17019. default: true
  17020. },
  17021. ]
  17022. ))
  17023. characterMakers.push(() => makeCharacter(
  17024. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17025. {
  17026. front: {
  17027. height: math.unit(7, "feet"),
  17028. weight: math.unit(200, "lb"),
  17029. name: "Front",
  17030. image: {
  17031. source: "./media/characters/kachina/front.svg",
  17032. extra: 1290.68 / 1119,
  17033. bottom: 36.5 / 1327.18
  17034. }
  17035. },
  17036. },
  17037. [
  17038. {
  17039. name: "Normal",
  17040. height: math.unit(7, "feet"),
  17041. default: true
  17042. },
  17043. ]
  17044. ))
  17045. characterMakers.push(() => makeCharacter(
  17046. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17047. {
  17048. looking: {
  17049. height: math.unit(2, "meters"),
  17050. weight: math.unit(300, "kg"),
  17051. name: "Looking",
  17052. image: {
  17053. source: "./media/characters/kash/looking.svg",
  17054. extra: 474 / 344,
  17055. bottom: 0.03
  17056. }
  17057. },
  17058. side: {
  17059. height: math.unit(2, "meters"),
  17060. weight: math.unit(300, "kg"),
  17061. name: "Side",
  17062. image: {
  17063. source: "./media/characters/kash/side.svg",
  17064. extra: 302 / 251,
  17065. bottom: 0.03
  17066. }
  17067. },
  17068. front: {
  17069. height: math.unit(2, "meters"),
  17070. weight: math.unit(300, "kg"),
  17071. name: "Front",
  17072. image: {
  17073. source: "./media/characters/kash/front.svg",
  17074. extra: 495 / 360,
  17075. bottom: 0.015
  17076. }
  17077. },
  17078. },
  17079. [
  17080. {
  17081. name: "Normal",
  17082. height: math.unit(2, "meters"),
  17083. default: true
  17084. },
  17085. {
  17086. name: "Big",
  17087. height: math.unit(3, "meters")
  17088. },
  17089. {
  17090. name: "Large",
  17091. height: math.unit(5, "meters")
  17092. },
  17093. ]
  17094. ))
  17095. characterMakers.push(() => makeCharacter(
  17096. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17097. {
  17098. feeding: {
  17099. height: math.unit(6.7, "feet"),
  17100. weight: math.unit(350, "lb"),
  17101. name: "Feeding",
  17102. image: {
  17103. source: "./media/characters/lalim/feeding.svg",
  17104. }
  17105. },
  17106. },
  17107. [
  17108. {
  17109. name: "Normal",
  17110. height: math.unit(6.7, "feet"),
  17111. default: true
  17112. },
  17113. ]
  17114. ))
  17115. characterMakers.push(() => makeCharacter(
  17116. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17117. {
  17118. front: {
  17119. height: math.unit(9.5, "feet"),
  17120. weight: math.unit(600, "lb"),
  17121. name: "Front",
  17122. image: {
  17123. source: "./media/characters/de'vout/front.svg",
  17124. extra: 1443 / 1328,
  17125. bottom: 0.025
  17126. }
  17127. },
  17128. back: {
  17129. height: math.unit(9.5, "feet"),
  17130. weight: math.unit(600, "lb"),
  17131. name: "Back",
  17132. image: {
  17133. source: "./media/characters/de'vout/back.svg",
  17134. extra: 1443 / 1328
  17135. }
  17136. },
  17137. frontDressed: {
  17138. height: math.unit(9.5, "feet"),
  17139. weight: math.unit(600, "lb"),
  17140. name: "Front (Dressed",
  17141. image: {
  17142. source: "./media/characters/de'vout/front-dressed.svg",
  17143. extra: 1443 / 1328,
  17144. bottom: 0.025
  17145. }
  17146. },
  17147. backDressed: {
  17148. height: math.unit(9.5, "feet"),
  17149. weight: math.unit(600, "lb"),
  17150. name: "Back (Dressed",
  17151. image: {
  17152. source: "./media/characters/de'vout/back-dressed.svg",
  17153. extra: 1443 / 1328
  17154. }
  17155. },
  17156. },
  17157. [
  17158. {
  17159. name: "Normal",
  17160. height: math.unit(9.5, "feet"),
  17161. default: true
  17162. },
  17163. ]
  17164. ))
  17165. characterMakers.push(() => makeCharacter(
  17166. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17167. {
  17168. front: {
  17169. height: math.unit(8, "feet"),
  17170. weight: math.unit(225, "lb"),
  17171. name: "Front",
  17172. image: {
  17173. source: "./media/characters/talana/front.svg",
  17174. extra: 1410 / 1300,
  17175. bottom: 0.015
  17176. }
  17177. },
  17178. frontDressed: {
  17179. height: math.unit(8, "feet"),
  17180. weight: math.unit(225, "lb"),
  17181. name: "Front (Dressed",
  17182. image: {
  17183. source: "./media/characters/talana/front-dressed.svg",
  17184. extra: 1410 / 1300,
  17185. bottom: 0.015
  17186. }
  17187. },
  17188. },
  17189. [
  17190. {
  17191. name: "Normal",
  17192. height: math.unit(8, "feet"),
  17193. default: true
  17194. },
  17195. ]
  17196. ))
  17197. characterMakers.push(() => makeCharacter(
  17198. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17199. {
  17200. side: {
  17201. height: math.unit(7.2, "feet"),
  17202. weight: math.unit(150, "lb"),
  17203. name: "Side",
  17204. image: {
  17205. source: "./media/characters/xeauvok/side.svg",
  17206. extra: 1975 / 1523,
  17207. bottom: 0.07
  17208. }
  17209. },
  17210. },
  17211. [
  17212. {
  17213. name: "Normal",
  17214. height: math.unit(7.2, "feet"),
  17215. default: true
  17216. },
  17217. ]
  17218. ))
  17219. characterMakers.push(() => makeCharacter(
  17220. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17221. {
  17222. side: {
  17223. height: math.unit(10, "feet"),
  17224. weight: math.unit(900, "kg"),
  17225. name: "Side",
  17226. image: {
  17227. source: "./media/characters/zara/side.svg",
  17228. extra: 504 / 498
  17229. }
  17230. },
  17231. },
  17232. [
  17233. {
  17234. name: "Normal",
  17235. height: math.unit(10, "feet"),
  17236. default: true
  17237. },
  17238. ]
  17239. ))
  17240. characterMakers.push(() => makeCharacter(
  17241. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17242. {
  17243. side: {
  17244. height: math.unit(6, "feet"),
  17245. weight: math.unit(150, "lb"),
  17246. name: "Side",
  17247. image: {
  17248. source: "./media/characters/richard-dragon/side.svg",
  17249. extra: 845 / 340,
  17250. bottom: 0.017
  17251. }
  17252. },
  17253. maw: {
  17254. height: math.unit(2.97, "feet"),
  17255. name: "Maw",
  17256. image: {
  17257. source: "./media/characters/richard-dragon/maw.svg"
  17258. }
  17259. },
  17260. },
  17261. [
  17262. ]
  17263. ))
  17264. characterMakers.push(() => makeCharacter(
  17265. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17266. {
  17267. front: {
  17268. height: math.unit(4, "feet"),
  17269. weight: math.unit(100, "lb"),
  17270. name: "Front",
  17271. image: {
  17272. source: "./media/characters/richard-smeargle/front.svg",
  17273. extra: 2952 / 2820,
  17274. bottom: 0.028
  17275. }
  17276. },
  17277. },
  17278. [
  17279. {
  17280. name: "Normal",
  17281. height: math.unit(4, "feet"),
  17282. default: true
  17283. },
  17284. {
  17285. name: "Dynamax",
  17286. height: math.unit(20, "meters")
  17287. },
  17288. ]
  17289. ))
  17290. characterMakers.push(() => makeCharacter(
  17291. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17292. {
  17293. front: {
  17294. height: math.unit(6, "feet"),
  17295. weight: math.unit(110, "lb"),
  17296. name: "Front",
  17297. image: {
  17298. source: "./media/characters/klay/front.svg",
  17299. extra: 962 / 883,
  17300. bottom: 0.04
  17301. }
  17302. },
  17303. back: {
  17304. height: math.unit(6, "feet"),
  17305. weight: math.unit(110, "lb"),
  17306. name: "Back",
  17307. image: {
  17308. source: "./media/characters/klay/back.svg",
  17309. extra: 962 / 883
  17310. }
  17311. },
  17312. beans: {
  17313. height: math.unit(1.15, "feet"),
  17314. name: "Beans",
  17315. image: {
  17316. source: "./media/characters/klay/beans.svg"
  17317. }
  17318. },
  17319. },
  17320. [
  17321. {
  17322. name: "Micro",
  17323. height: math.unit(6, "inches")
  17324. },
  17325. {
  17326. name: "Mini",
  17327. height: math.unit(3, "feet")
  17328. },
  17329. {
  17330. name: "Normal",
  17331. height: math.unit(6, "feet"),
  17332. default: true
  17333. },
  17334. {
  17335. name: "Big",
  17336. height: math.unit(25, "feet")
  17337. },
  17338. {
  17339. name: "Macro",
  17340. height: math.unit(100, "feet")
  17341. },
  17342. {
  17343. name: "Megamacro",
  17344. height: math.unit(400, "feet")
  17345. },
  17346. ]
  17347. ))
  17348. characterMakers.push(() => makeCharacter(
  17349. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17350. {
  17351. front: {
  17352. height: math.unit(6, "feet"),
  17353. weight: math.unit(160, "lb"),
  17354. name: "Front",
  17355. image: {
  17356. source: "./media/characters/marcus/front.svg",
  17357. extra: 734 / 676,
  17358. bottom: 0.03
  17359. }
  17360. },
  17361. },
  17362. [
  17363. {
  17364. name: "Little",
  17365. height: math.unit(6, "feet")
  17366. },
  17367. {
  17368. name: "Normal",
  17369. height: math.unit(110, "feet"),
  17370. default: true
  17371. },
  17372. {
  17373. name: "Macro",
  17374. height: math.unit(250, "feet")
  17375. },
  17376. {
  17377. name: "Megamacro",
  17378. height: math.unit(1000, "feet")
  17379. },
  17380. ]
  17381. ))
  17382. characterMakers.push(() => makeCharacter(
  17383. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17384. {
  17385. front: {
  17386. height: math.unit(7, "feet"),
  17387. weight: math.unit(275, "lb"),
  17388. name: "Front",
  17389. image: {
  17390. source: "./media/characters/claude-delroute/front.svg",
  17391. extra: 230 / 214,
  17392. bottom: 0.007
  17393. }
  17394. },
  17395. side: {
  17396. height: math.unit(7, "feet"),
  17397. weight: math.unit(275, "lb"),
  17398. name: "Side",
  17399. image: {
  17400. source: "./media/characters/claude-delroute/side.svg",
  17401. extra: 222 / 214,
  17402. bottom: 0.01
  17403. }
  17404. },
  17405. back: {
  17406. height: math.unit(7, "feet"),
  17407. weight: math.unit(275, "lb"),
  17408. name: "Back",
  17409. image: {
  17410. source: "./media/characters/claude-delroute/back.svg",
  17411. extra: 230 / 214,
  17412. bottom: 0.015
  17413. }
  17414. },
  17415. maw: {
  17416. height: math.unit(0.6407, "meters"),
  17417. name: "Maw",
  17418. image: {
  17419. source: "./media/characters/claude-delroute/maw.svg"
  17420. }
  17421. },
  17422. },
  17423. [
  17424. {
  17425. name: "Normal",
  17426. height: math.unit(7, "feet"),
  17427. default: true
  17428. },
  17429. {
  17430. name: "Lorge",
  17431. height: math.unit(20, "feet")
  17432. },
  17433. ]
  17434. ))
  17435. characterMakers.push(() => makeCharacter(
  17436. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17437. {
  17438. front: {
  17439. height: math.unit(8 + 4 / 12, "feet"),
  17440. weight: math.unit(600, "lb"),
  17441. name: "Front",
  17442. image: {
  17443. source: "./media/characters/dragonien/front.svg",
  17444. extra: 100 / 94,
  17445. bottom: 3.3 / 103.3445
  17446. }
  17447. },
  17448. back: {
  17449. height: math.unit(8 + 4 / 12, "feet"),
  17450. weight: math.unit(600, "lb"),
  17451. name: "Back",
  17452. image: {
  17453. source: "./media/characters/dragonien/back.svg",
  17454. extra: 776 / 746,
  17455. bottom: 6.4 / 782.0616
  17456. }
  17457. },
  17458. foot: {
  17459. height: math.unit(1.54, "feet"),
  17460. name: "Foot",
  17461. image: {
  17462. source: "./media/characters/dragonien/foot.svg",
  17463. }
  17464. },
  17465. },
  17466. [
  17467. {
  17468. name: "Normal",
  17469. height: math.unit(8 + 4 / 12, "feet"),
  17470. default: true
  17471. },
  17472. {
  17473. name: "Macro",
  17474. height: math.unit(200, "feet")
  17475. },
  17476. {
  17477. name: "Megamacro",
  17478. height: math.unit(1, "mile")
  17479. },
  17480. {
  17481. name: "Gigamacro",
  17482. height: math.unit(1000, "miles")
  17483. },
  17484. ]
  17485. ))
  17486. characterMakers.push(() => makeCharacter(
  17487. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17488. {
  17489. front: {
  17490. height: math.unit(5 + 2 / 12, "feet"),
  17491. weight: math.unit(110, "lb"),
  17492. name: "Front",
  17493. image: {
  17494. source: "./media/characters/desta/front.svg",
  17495. extra: 767 / 726,
  17496. bottom: 11.7 / 779
  17497. }
  17498. },
  17499. back: {
  17500. height: math.unit(5 + 2 / 12, "feet"),
  17501. weight: math.unit(110, "lb"),
  17502. name: "Back",
  17503. image: {
  17504. source: "./media/characters/desta/back.svg",
  17505. extra: 777 / 728,
  17506. bottom: 6 / 784
  17507. }
  17508. },
  17509. frontAlt: {
  17510. height: math.unit(5 + 2 / 12, "feet"),
  17511. weight: math.unit(110, "lb"),
  17512. name: "Front",
  17513. image: {
  17514. source: "./media/characters/desta/front-alt.svg",
  17515. extra: 1482 / 1417
  17516. }
  17517. },
  17518. side: {
  17519. height: math.unit(5 + 2 / 12, "feet"),
  17520. weight: math.unit(110, "lb"),
  17521. name: "Side",
  17522. image: {
  17523. source: "./media/characters/desta/side.svg",
  17524. extra: 2579 / 2491,
  17525. bottom: 0.053
  17526. }
  17527. },
  17528. },
  17529. [
  17530. {
  17531. name: "Micro",
  17532. height: math.unit(6, "inches")
  17533. },
  17534. {
  17535. name: "Normal",
  17536. height: math.unit(5 + 2 / 12, "feet"),
  17537. default: true
  17538. },
  17539. {
  17540. name: "Macro",
  17541. height: math.unit(62, "feet")
  17542. },
  17543. {
  17544. name: "Megamacro",
  17545. height: math.unit(1800, "feet")
  17546. },
  17547. ]
  17548. ))
  17549. characterMakers.push(() => makeCharacter(
  17550. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17551. {
  17552. front: {
  17553. height: math.unit(10, "feet"),
  17554. weight: math.unit(700, "lb"),
  17555. name: "Front",
  17556. image: {
  17557. source: "./media/characters/storm-alystar/front.svg",
  17558. extra: 2112 / 1898,
  17559. bottom: 0.034
  17560. }
  17561. },
  17562. },
  17563. [
  17564. {
  17565. name: "Micro",
  17566. height: math.unit(3.5, "inches")
  17567. },
  17568. {
  17569. name: "Normal",
  17570. height: math.unit(10, "feet"),
  17571. default: true
  17572. },
  17573. {
  17574. name: "Macro",
  17575. height: math.unit(400, "feet")
  17576. },
  17577. {
  17578. name: "Deific",
  17579. height: math.unit(60, "miles")
  17580. },
  17581. ]
  17582. ))
  17583. characterMakers.push(() => makeCharacter(
  17584. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17585. {
  17586. front: {
  17587. height: math.unit(2.35, "meters"),
  17588. weight: math.unit(119, "kg"),
  17589. name: "Front",
  17590. image: {
  17591. source: "./media/characters/ilia/front.svg",
  17592. extra: 1285 / 1255,
  17593. bottom: 0.06
  17594. }
  17595. },
  17596. },
  17597. [
  17598. {
  17599. name: "Normal",
  17600. height: math.unit(2.35, "meters")
  17601. },
  17602. {
  17603. name: "Macro",
  17604. height: math.unit(140, "meters"),
  17605. default: true
  17606. },
  17607. {
  17608. name: "Megamacro",
  17609. height: math.unit(100, "miles")
  17610. },
  17611. ]
  17612. ))
  17613. characterMakers.push(() => makeCharacter(
  17614. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17615. {
  17616. front: {
  17617. height: math.unit(6 + 5 / 12, "feet"),
  17618. weight: math.unit(190, "lb"),
  17619. name: "Front",
  17620. image: {
  17621. source: "./media/characters/kingdead/front.svg",
  17622. extra: 1228 / 1177
  17623. }
  17624. },
  17625. },
  17626. [
  17627. {
  17628. name: "Micro",
  17629. height: math.unit(7, "inches")
  17630. },
  17631. {
  17632. name: "Normal",
  17633. height: math.unit(6 + 5 / 12, "feet")
  17634. },
  17635. {
  17636. name: "Macro",
  17637. height: math.unit(150, "feet"),
  17638. default: true
  17639. },
  17640. {
  17641. name: "Megamacro",
  17642. height: math.unit(200, "miles")
  17643. },
  17644. ]
  17645. ))
  17646. characterMakers.push(() => makeCharacter(
  17647. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17648. {
  17649. front: {
  17650. height: math.unit(8, "feet"),
  17651. weight: math.unit(600, "lb"),
  17652. name: "Front",
  17653. image: {
  17654. source: "./media/characters/kyrehx/front.svg",
  17655. extra: 1195 / 1095,
  17656. bottom: 0.034
  17657. }
  17658. },
  17659. },
  17660. [
  17661. {
  17662. name: "Micro",
  17663. height: math.unit(2, "inches")
  17664. },
  17665. {
  17666. name: "Normal",
  17667. height: math.unit(8, "feet"),
  17668. default: true
  17669. },
  17670. {
  17671. name: "Macro",
  17672. height: math.unit(255, "feet")
  17673. },
  17674. ]
  17675. ))
  17676. characterMakers.push(() => makeCharacter(
  17677. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17678. {
  17679. front: {
  17680. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17681. weight: math.unit(184, "lb"),
  17682. name: "Front",
  17683. image: {
  17684. source: "./media/characters/xang/front.svg",
  17685. extra: 845 / 755
  17686. }
  17687. },
  17688. },
  17689. [
  17690. {
  17691. name: "Normal",
  17692. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17693. default: true
  17694. },
  17695. {
  17696. name: "Macro",
  17697. height: math.unit(0.935 * 146, "feet")
  17698. },
  17699. {
  17700. name: "Megamacro",
  17701. height: math.unit(0.935 * 3, "miles")
  17702. },
  17703. ]
  17704. ))
  17705. characterMakers.push(() => makeCharacter(
  17706. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17707. {
  17708. frontDressed: {
  17709. height: math.unit(5 + 7 / 12, "feet"),
  17710. weight: math.unit(140, "lb"),
  17711. name: "Front (Dressed)",
  17712. image: {
  17713. source: "./media/characters/doc-weardno/front-dressed.svg",
  17714. extra: 263 / 234
  17715. }
  17716. },
  17717. backDressed: {
  17718. height: math.unit(5 + 7 / 12, "feet"),
  17719. weight: math.unit(140, "lb"),
  17720. name: "Back (Dressed)",
  17721. image: {
  17722. source: "./media/characters/doc-weardno/back-dressed.svg",
  17723. extra: 266 / 238
  17724. }
  17725. },
  17726. front: {
  17727. height: math.unit(5 + 7 / 12, "feet"),
  17728. weight: math.unit(140, "lb"),
  17729. name: "Front",
  17730. image: {
  17731. source: "./media/characters/doc-weardno/front.svg",
  17732. extra: 254 / 233
  17733. }
  17734. },
  17735. },
  17736. [
  17737. {
  17738. name: "Micro",
  17739. height: math.unit(3, "inches")
  17740. },
  17741. {
  17742. name: "Normal",
  17743. height: math.unit(5 + 7 / 12, "feet"),
  17744. default: true
  17745. },
  17746. {
  17747. name: "Macro",
  17748. height: math.unit(25, "feet")
  17749. },
  17750. {
  17751. name: "Megamacro",
  17752. height: math.unit(2, "miles")
  17753. },
  17754. ]
  17755. ))
  17756. characterMakers.push(() => makeCharacter(
  17757. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17758. {
  17759. front: {
  17760. height: math.unit(6 + 2 / 12, "feet"),
  17761. weight: math.unit(153, "lb"),
  17762. name: "Front",
  17763. image: {
  17764. source: "./media/characters/seth-whilst/front.svg",
  17765. bottom: 0.07
  17766. }
  17767. },
  17768. },
  17769. [
  17770. {
  17771. name: "Micro",
  17772. height: math.unit(5, "inches")
  17773. },
  17774. {
  17775. name: "Normal",
  17776. height: math.unit(6 + 2 / 12, "feet"),
  17777. default: true
  17778. },
  17779. ]
  17780. ))
  17781. characterMakers.push(() => makeCharacter(
  17782. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17783. {
  17784. front: {
  17785. height: math.unit(3, "inches"),
  17786. weight: math.unit(8, "grams"),
  17787. name: "Front",
  17788. image: {
  17789. source: "./media/characters/pocket-jabari/front.svg",
  17790. extra: 1024 / 974,
  17791. bottom: 0.039
  17792. }
  17793. },
  17794. },
  17795. [
  17796. {
  17797. name: "Minimicro",
  17798. height: math.unit(8, "mm")
  17799. },
  17800. {
  17801. name: "Micro",
  17802. height: math.unit(3, "inches"),
  17803. default: true
  17804. },
  17805. {
  17806. name: "Normal",
  17807. height: math.unit(3, "feet")
  17808. },
  17809. ]
  17810. ))
  17811. characterMakers.push(() => makeCharacter(
  17812. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17813. {
  17814. front: {
  17815. height: math.unit(15, "feet"),
  17816. weight: math.unit(3280, "lb"),
  17817. name: "Front",
  17818. image: {
  17819. source: "./media/characters/sapphy/front.svg",
  17820. extra: 671 / 577,
  17821. bottom: 0.085
  17822. }
  17823. },
  17824. back: {
  17825. height: math.unit(15, "feet"),
  17826. weight: math.unit(3280, "lb"),
  17827. name: "Back",
  17828. image: {
  17829. source: "./media/characters/sapphy/back.svg",
  17830. extra: 631 / 607,
  17831. bottom: 0.045
  17832. }
  17833. },
  17834. },
  17835. [
  17836. {
  17837. name: "Normal",
  17838. height: math.unit(15, "feet")
  17839. },
  17840. {
  17841. name: "Casual Macro",
  17842. height: math.unit(120, "feet")
  17843. },
  17844. {
  17845. name: "Macro",
  17846. height: math.unit(2150, "feet"),
  17847. default: true
  17848. },
  17849. {
  17850. name: "Megamacro",
  17851. height: math.unit(8, "miles")
  17852. },
  17853. {
  17854. name: "Galaxy Mom",
  17855. height: math.unit(6, "megalightyears")
  17856. },
  17857. ]
  17858. ))
  17859. characterMakers.push(() => makeCharacter(
  17860. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17861. {
  17862. front: {
  17863. height: math.unit(6, "feet"),
  17864. weight: math.unit(170, "lb"),
  17865. name: "Front",
  17866. image: {
  17867. source: "./media/characters/kiro/front.svg",
  17868. extra: 1064 / 1012,
  17869. bottom: 0.052
  17870. }
  17871. },
  17872. },
  17873. [
  17874. {
  17875. name: "Micro",
  17876. height: math.unit(6, "inches")
  17877. },
  17878. {
  17879. name: "Normal",
  17880. height: math.unit(6, "feet"),
  17881. default: true
  17882. },
  17883. {
  17884. name: "Macro",
  17885. height: math.unit(72, "feet")
  17886. },
  17887. ]
  17888. ))
  17889. characterMakers.push(() => makeCharacter(
  17890. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17891. {
  17892. front: {
  17893. height: math.unit(5 + 9 / 12, "feet"),
  17894. weight: math.unit(175, "lb"),
  17895. name: "Front",
  17896. image: {
  17897. source: "./media/characters/irishfox/front.svg",
  17898. extra: 1912 / 1680,
  17899. bottom: 0.02
  17900. }
  17901. },
  17902. },
  17903. [
  17904. {
  17905. name: "Nano",
  17906. height: math.unit(1, "mm")
  17907. },
  17908. {
  17909. name: "Micro",
  17910. height: math.unit(2, "inches")
  17911. },
  17912. {
  17913. name: "Normal",
  17914. height: math.unit(5 + 9 / 12, "feet"),
  17915. default: true
  17916. },
  17917. {
  17918. name: "Macro",
  17919. height: math.unit(45, "feet")
  17920. },
  17921. ]
  17922. ))
  17923. characterMakers.push(() => makeCharacter(
  17924. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17925. {
  17926. front: {
  17927. height: math.unit(6 + 1 / 12, "feet"),
  17928. weight: math.unit(150, "lb"),
  17929. name: "Front",
  17930. image: {
  17931. source: "./media/characters/aronai-sieyes/front.svg",
  17932. extra: 1556 / 1480,
  17933. bottom: 0.015
  17934. }
  17935. },
  17936. side: {
  17937. height: math.unit(6 + 1 / 12, "feet"),
  17938. weight: math.unit(150, "lb"),
  17939. name: "Side",
  17940. image: {
  17941. source: "./media/characters/aronai-sieyes/side.svg",
  17942. extra: 1433 / 1390,
  17943. bottom: 0.0393
  17944. }
  17945. },
  17946. back: {
  17947. height: math.unit(6 + 1 / 12, "feet"),
  17948. weight: math.unit(150, "lb"),
  17949. name: "Back",
  17950. image: {
  17951. source: "./media/characters/aronai-sieyes/back.svg",
  17952. extra: 1544 / 1494,
  17953. bottom: 0.02
  17954. }
  17955. },
  17956. frontClothed: {
  17957. height: math.unit(6 + 1 / 12, "feet"),
  17958. weight: math.unit(150, "lb"),
  17959. name: "Front (Clothed)",
  17960. image: {
  17961. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17962. extra: 1582 / 1527
  17963. }
  17964. },
  17965. feral: {
  17966. height: math.unit(18, "feet"),
  17967. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17968. name: "Feral",
  17969. image: {
  17970. source: "./media/characters/aronai-sieyes/feral.svg",
  17971. extra: 1530 / 1240,
  17972. bottom: 0.035
  17973. }
  17974. },
  17975. },
  17976. [
  17977. {
  17978. name: "Micro",
  17979. height: math.unit(2, "inches")
  17980. },
  17981. {
  17982. name: "Normal",
  17983. height: math.unit(6 + 1 / 12, "feet"),
  17984. default: true
  17985. }
  17986. ]
  17987. ))
  17988. characterMakers.push(() => makeCharacter(
  17989. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17990. {
  17991. front: {
  17992. height: math.unit(12, "feet"),
  17993. weight: math.unit(410, "kg"),
  17994. name: "Front",
  17995. image: {
  17996. source: "./media/characters/xuna/front.svg",
  17997. extra: 2184 / 1980
  17998. }
  17999. },
  18000. side: {
  18001. height: math.unit(12, "feet"),
  18002. weight: math.unit(410, "kg"),
  18003. name: "Side",
  18004. image: {
  18005. source: "./media/characters/xuna/side.svg",
  18006. extra: 2184 / 1980
  18007. }
  18008. },
  18009. back: {
  18010. height: math.unit(12, "feet"),
  18011. weight: math.unit(410, "kg"),
  18012. name: "Back",
  18013. image: {
  18014. source: "./media/characters/xuna/back.svg",
  18015. extra: 2184 / 1980
  18016. }
  18017. },
  18018. },
  18019. [
  18020. {
  18021. name: "Nano glow",
  18022. height: math.unit(10, "nm")
  18023. },
  18024. {
  18025. name: "Micro floof",
  18026. height: math.unit(0.3, "m")
  18027. },
  18028. {
  18029. name: "Huggable softy boi",
  18030. height: math.unit(3.6576, "m"),
  18031. default: true
  18032. },
  18033. {
  18034. name: "Admirable floof",
  18035. height: math.unit(80, "meters")
  18036. },
  18037. {
  18038. name: "Gentle macro",
  18039. height: math.unit(300, "meters")
  18040. },
  18041. {
  18042. name: "Very careful floof",
  18043. height: math.unit(3200, "meters")
  18044. },
  18045. {
  18046. name: "The mega floof",
  18047. height: math.unit(36000, "meters")
  18048. },
  18049. {
  18050. name: "Giga-fur-Wicker",
  18051. height: math.unit(4800000, "meters")
  18052. },
  18053. {
  18054. name: "Licky world",
  18055. height: math.unit(20000000, "meters")
  18056. },
  18057. {
  18058. name: "Floofy cyan sun",
  18059. height: math.unit(1500000000, "meters")
  18060. },
  18061. {
  18062. name: "Milky Wicker",
  18063. height: math.unit(1000000000000000000000, "meters")
  18064. },
  18065. {
  18066. name: "The observing Wicker",
  18067. height: math.unit(999999999999999999999999999, "meters")
  18068. },
  18069. ]
  18070. ))
  18071. characterMakers.push(() => makeCharacter(
  18072. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18073. {
  18074. front: {
  18075. height: math.unit(5 + 9 / 12, "feet"),
  18076. weight: math.unit(150, "lb"),
  18077. name: "Front",
  18078. image: {
  18079. source: "./media/characters/arokha-sieyes/front.svg",
  18080. extra: 1425 / 1284,
  18081. bottom: 0.05
  18082. }
  18083. },
  18084. },
  18085. [
  18086. {
  18087. name: "Normal",
  18088. height: math.unit(5 + 9 / 12, "feet")
  18089. },
  18090. {
  18091. name: "Macro",
  18092. height: math.unit(30, "meters"),
  18093. default: true
  18094. },
  18095. ]
  18096. ))
  18097. characterMakers.push(() => makeCharacter(
  18098. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18099. {
  18100. front: {
  18101. height: math.unit(6, "feet"),
  18102. weight: math.unit(180, "lb"),
  18103. name: "Front",
  18104. image: {
  18105. source: "./media/characters/arokh-sieyes/front.svg",
  18106. extra: 1830 / 1769,
  18107. bottom: 0.01
  18108. }
  18109. },
  18110. },
  18111. [
  18112. {
  18113. name: "Normal",
  18114. height: math.unit(6, "feet")
  18115. },
  18116. {
  18117. name: "Macro",
  18118. height: math.unit(30, "meters"),
  18119. default: true
  18120. },
  18121. ]
  18122. ))
  18123. characterMakers.push(() => makeCharacter(
  18124. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18125. {
  18126. side: {
  18127. height: math.unit(13 + 1 / 12, "feet"),
  18128. weight: math.unit(8.5, "tonnes"),
  18129. name: "Side",
  18130. image: {
  18131. source: "./media/characters/goldeneye/side.svg",
  18132. extra: 1182 / 778,
  18133. bottom: 0.067
  18134. }
  18135. },
  18136. paw: {
  18137. height: math.unit(3.4, "feet"),
  18138. name: "Paw",
  18139. image: {
  18140. source: "./media/characters/goldeneye/paw.svg"
  18141. }
  18142. },
  18143. },
  18144. [
  18145. {
  18146. name: "Normal",
  18147. height: math.unit(13 + 1 / 12, "feet"),
  18148. default: true
  18149. },
  18150. ]
  18151. ))
  18152. characterMakers.push(() => makeCharacter(
  18153. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18154. {
  18155. front: {
  18156. height: math.unit(6 + 1 / 12, "feet"),
  18157. weight: math.unit(210, "lb"),
  18158. name: "Front",
  18159. image: {
  18160. source: "./media/characters/leonardo-lycheborne/front.svg",
  18161. extra: 390 / 365,
  18162. bottom: 0.032
  18163. }
  18164. },
  18165. side: {
  18166. height: math.unit(6 + 1 / 12, "feet"),
  18167. weight: math.unit(210, "lb"),
  18168. name: "Side",
  18169. image: {
  18170. source: "./media/characters/leonardo-lycheborne/side.svg",
  18171. extra: 390 / 365,
  18172. bottom: 0.005
  18173. }
  18174. },
  18175. back: {
  18176. height: math.unit(6 + 1 / 12, "feet"),
  18177. weight: math.unit(210, "lb"),
  18178. name: "Back",
  18179. image: {
  18180. source: "./media/characters/leonardo-lycheborne/back.svg",
  18181. extra: 392 / 366,
  18182. bottom: 0.01
  18183. }
  18184. },
  18185. hand: {
  18186. height: math.unit(1.08, "feet"),
  18187. name: "Hand",
  18188. image: {
  18189. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18190. }
  18191. },
  18192. foot: {
  18193. height: math.unit(1.32, "feet"),
  18194. name: "Foot",
  18195. image: {
  18196. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18197. }
  18198. },
  18199. were: {
  18200. height: math.unit(20, "feet"),
  18201. weight: math.unit(7800, "lb"),
  18202. name: "Were",
  18203. image: {
  18204. source: "./media/characters/leonardo-lycheborne/were.svg",
  18205. extra: 308 / 294,
  18206. bottom: 0.048
  18207. }
  18208. },
  18209. feral: {
  18210. height: math.unit(7.5, "feet"),
  18211. weight: math.unit(600, "lb"),
  18212. name: "Feral",
  18213. image: {
  18214. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18215. extra: 210 / 186,
  18216. bottom: 0.108
  18217. }
  18218. },
  18219. taur: {
  18220. height: math.unit(11, "feet"),
  18221. weight: math.unit(3300, "lb"),
  18222. name: "Taur",
  18223. image: {
  18224. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18225. extra: 320 / 303,
  18226. bottom: 0.025
  18227. }
  18228. },
  18229. barghest: {
  18230. height: math.unit(11, "feet"),
  18231. weight: math.unit(1300, "lb"),
  18232. name: "Barghest",
  18233. image: {
  18234. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18235. extra: 323 / 302,
  18236. bottom: 0.027
  18237. }
  18238. },
  18239. dick: {
  18240. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18241. name: "Dick",
  18242. image: {
  18243. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18244. }
  18245. },
  18246. dickWere: {
  18247. height: math.unit((20) / 3.8, "feet"),
  18248. name: "Dick (Were)",
  18249. image: {
  18250. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18251. }
  18252. },
  18253. },
  18254. [
  18255. {
  18256. name: "Normal",
  18257. height: math.unit(6 + 1 / 12, "feet"),
  18258. default: true
  18259. },
  18260. ]
  18261. ))
  18262. characterMakers.push(() => makeCharacter(
  18263. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18264. {
  18265. front: {
  18266. height: math.unit(10, "feet"),
  18267. weight: math.unit(350, "lb"),
  18268. name: "Front",
  18269. image: {
  18270. source: "./media/characters/jet/front.svg",
  18271. extra: 2050 / 1980,
  18272. bottom: 0.013
  18273. }
  18274. },
  18275. back: {
  18276. height: math.unit(10, "feet"),
  18277. weight: math.unit(350, "lb"),
  18278. name: "Back",
  18279. image: {
  18280. source: "./media/characters/jet/back.svg",
  18281. extra: 2050 / 1980,
  18282. bottom: 0.013
  18283. }
  18284. },
  18285. },
  18286. [
  18287. {
  18288. name: "Micro",
  18289. height: math.unit(6, "inches")
  18290. },
  18291. {
  18292. name: "Normal",
  18293. height: math.unit(10, "feet"),
  18294. default: true
  18295. },
  18296. {
  18297. name: "Macro",
  18298. height: math.unit(100, "feet")
  18299. },
  18300. ]
  18301. ))
  18302. characterMakers.push(() => makeCharacter(
  18303. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18304. {
  18305. front: {
  18306. height: math.unit(15, "feet"),
  18307. weight: math.unit(2800, "lb"),
  18308. name: "Front",
  18309. image: {
  18310. source: "./media/characters/tanarath/front.svg",
  18311. extra: 2392 / 2220,
  18312. bottom: 0.03
  18313. }
  18314. },
  18315. back: {
  18316. height: math.unit(15, "feet"),
  18317. weight: math.unit(2800, "lb"),
  18318. name: "Back",
  18319. image: {
  18320. source: "./media/characters/tanarath/back.svg",
  18321. extra: 2392 / 2220,
  18322. bottom: 0.03
  18323. }
  18324. },
  18325. },
  18326. [
  18327. {
  18328. name: "Normal",
  18329. height: math.unit(15, "feet"),
  18330. default: true
  18331. },
  18332. ]
  18333. ))
  18334. characterMakers.push(() => makeCharacter(
  18335. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18336. {
  18337. front: {
  18338. height: math.unit(7 + 1 / 12, "feet"),
  18339. weight: math.unit(175, "lb"),
  18340. name: "Front",
  18341. image: {
  18342. source: "./media/characters/patty-cattybatty/front.svg",
  18343. extra: 908 / 874,
  18344. bottom: 0.025
  18345. }
  18346. },
  18347. },
  18348. [
  18349. {
  18350. name: "Micro",
  18351. height: math.unit(1, "inch")
  18352. },
  18353. {
  18354. name: "Normal",
  18355. height: math.unit(7 + 1 / 12, "feet")
  18356. },
  18357. {
  18358. name: "Mini Macro",
  18359. height: math.unit(155, "feet")
  18360. },
  18361. {
  18362. name: "Macro",
  18363. height: math.unit(1077, "feet")
  18364. },
  18365. {
  18366. name: "Mega Macro",
  18367. height: math.unit(47650, "feet"),
  18368. default: true
  18369. },
  18370. {
  18371. name: "Giga Macro",
  18372. height: math.unit(440, "miles")
  18373. },
  18374. {
  18375. name: "Tera Macro",
  18376. height: math.unit(8700, "miles")
  18377. },
  18378. {
  18379. name: "Planetary Macro",
  18380. height: math.unit(32700, "miles")
  18381. },
  18382. {
  18383. name: "Solar Macro",
  18384. height: math.unit(550000, "miles")
  18385. },
  18386. {
  18387. name: "Celestial Macro",
  18388. height: math.unit(2.5, "AU")
  18389. },
  18390. ]
  18391. ))
  18392. characterMakers.push(() => makeCharacter(
  18393. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18394. {
  18395. front: {
  18396. height: math.unit(4 + 5 / 12, "feet"),
  18397. weight: math.unit(90, "lb"),
  18398. name: "Front",
  18399. image: {
  18400. source: "./media/characters/cappu/front.svg",
  18401. extra: 1247 / 1152,
  18402. bottom: 0.012
  18403. }
  18404. },
  18405. },
  18406. [
  18407. {
  18408. name: "Normal",
  18409. height: math.unit(4 + 5 / 12, "feet"),
  18410. default: true
  18411. },
  18412. ]
  18413. ))
  18414. characterMakers.push(() => makeCharacter(
  18415. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18416. {
  18417. frontDressed: {
  18418. height: math.unit(70, "cm"),
  18419. weight: math.unit(6, "kg"),
  18420. name: "Front (Dressed)",
  18421. image: {
  18422. source: "./media/characters/sebi/front-dressed.svg",
  18423. extra: 713.5 / 686.5,
  18424. bottom: 0.003
  18425. }
  18426. },
  18427. front: {
  18428. height: math.unit(70, "cm"),
  18429. weight: math.unit(5, "kg"),
  18430. name: "Front",
  18431. image: {
  18432. source: "./media/characters/sebi/front.svg",
  18433. extra: 713.5 / 686.5,
  18434. bottom: 0.003
  18435. }
  18436. }
  18437. },
  18438. [
  18439. {
  18440. name: "Normal",
  18441. height: math.unit(70, "cm"),
  18442. default: true
  18443. },
  18444. {
  18445. name: "Macro",
  18446. height: math.unit(8, "meters")
  18447. },
  18448. ]
  18449. ))
  18450. characterMakers.push(() => makeCharacter(
  18451. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18452. {
  18453. front: {
  18454. height: math.unit(6, "feet"),
  18455. weight: math.unit(150, "lb"),
  18456. name: "Front",
  18457. image: {
  18458. source: "./media/characters/typhek/front.svg",
  18459. extra: 1948 / 1929,
  18460. bottom: 0.025
  18461. }
  18462. },
  18463. side: {
  18464. height: math.unit(6, "feet"),
  18465. weight: math.unit(150, "lb"),
  18466. name: "Side",
  18467. image: {
  18468. source: "./media/characters/typhek/side.svg",
  18469. extra: 2034 / 2010,
  18470. bottom: 0.003
  18471. }
  18472. },
  18473. back: {
  18474. height: math.unit(6, "feet"),
  18475. weight: math.unit(150, "lb"),
  18476. name: "Back",
  18477. image: {
  18478. source: "./media/characters/typhek/back.svg",
  18479. extra: 2005 / 1978,
  18480. bottom: 0.004
  18481. }
  18482. },
  18483. palm: {
  18484. height: math.unit(1.2, "feet"),
  18485. name: "Palm",
  18486. image: {
  18487. source: "./media/characters/typhek/palm.svg"
  18488. }
  18489. },
  18490. fist: {
  18491. height: math.unit(1.1, "feet"),
  18492. name: "Fist",
  18493. image: {
  18494. source: "./media/characters/typhek/fist.svg"
  18495. }
  18496. },
  18497. foot: {
  18498. height: math.unit(1.57, "feet"),
  18499. name: "Foot",
  18500. image: {
  18501. source: "./media/characters/typhek/foot.svg"
  18502. }
  18503. },
  18504. sole: {
  18505. height: math.unit(2.05, "feet"),
  18506. name: "Sole",
  18507. image: {
  18508. source: "./media/characters/typhek/sole.svg"
  18509. }
  18510. },
  18511. },
  18512. [
  18513. {
  18514. name: "Macro",
  18515. height: math.unit(40, "stories"),
  18516. default: true
  18517. },
  18518. {
  18519. name: "Megamacro",
  18520. height: math.unit(1, "mile")
  18521. },
  18522. {
  18523. name: "Gigamacro",
  18524. height: math.unit(4000, "solarradii")
  18525. },
  18526. {
  18527. name: "Universal",
  18528. height: math.unit(1.1, "universes")
  18529. }
  18530. ]
  18531. ))
  18532. characterMakers.push(() => makeCharacter(
  18533. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18534. {
  18535. side: {
  18536. height: math.unit(5 + 7 / 12, "feet"),
  18537. weight: math.unit(150, "lb"),
  18538. name: "Side",
  18539. image: {
  18540. source: "./media/characters/kassy/side.svg",
  18541. extra: 1280 / 1225,
  18542. bottom: 0.002
  18543. }
  18544. },
  18545. front: {
  18546. height: math.unit(5 + 7 / 12, "feet"),
  18547. weight: math.unit(150, "lb"),
  18548. name: "Front",
  18549. image: {
  18550. source: "./media/characters/kassy/front.svg",
  18551. extra: 1280 / 1225,
  18552. bottom: 0.025
  18553. }
  18554. },
  18555. back: {
  18556. height: math.unit(5 + 7 / 12, "feet"),
  18557. weight: math.unit(150, "lb"),
  18558. name: "Back",
  18559. image: {
  18560. source: "./media/characters/kassy/back.svg",
  18561. extra: 1280 / 1225,
  18562. bottom: 0.002
  18563. }
  18564. },
  18565. foot: {
  18566. height: math.unit(1.266, "feet"),
  18567. name: "Foot",
  18568. image: {
  18569. source: "./media/characters/kassy/foot.svg"
  18570. }
  18571. },
  18572. },
  18573. [
  18574. {
  18575. name: "Normal",
  18576. height: math.unit(5 + 7 / 12, "feet")
  18577. },
  18578. {
  18579. name: "Macro",
  18580. height: math.unit(137, "feet"),
  18581. default: true
  18582. },
  18583. {
  18584. name: "Megamacro",
  18585. height: math.unit(1, "mile")
  18586. },
  18587. ]
  18588. ))
  18589. characterMakers.push(() => makeCharacter(
  18590. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18591. {
  18592. front: {
  18593. height: math.unit(6 + 1 / 12, "feet"),
  18594. weight: math.unit(200, "lb"),
  18595. name: "Front",
  18596. image: {
  18597. source: "./media/characters/neil/front.svg",
  18598. extra: 1326 / 1250,
  18599. bottom: 0.023
  18600. }
  18601. },
  18602. },
  18603. [
  18604. {
  18605. name: "Normal",
  18606. height: math.unit(6 + 1 / 12, "feet"),
  18607. default: true
  18608. },
  18609. {
  18610. name: "Macro",
  18611. height: math.unit(200, "feet")
  18612. },
  18613. ]
  18614. ))
  18615. characterMakers.push(() => makeCharacter(
  18616. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18617. {
  18618. front: {
  18619. height: math.unit(5 + 9 / 12, "feet"),
  18620. weight: math.unit(190, "lb"),
  18621. name: "Front",
  18622. image: {
  18623. source: "./media/characters/atticus/front.svg",
  18624. extra: 2934 / 2785,
  18625. bottom: 0.025
  18626. }
  18627. },
  18628. },
  18629. [
  18630. {
  18631. name: "Normal",
  18632. height: math.unit(5 + 9 / 12, "feet"),
  18633. default: true
  18634. },
  18635. {
  18636. name: "Macro",
  18637. height: math.unit(180, "feet")
  18638. },
  18639. ]
  18640. ))
  18641. characterMakers.push(() => makeCharacter(
  18642. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18643. {
  18644. side: {
  18645. height: math.unit(9, "feet"),
  18646. weight: math.unit(650, "lb"),
  18647. name: "Side",
  18648. image: {
  18649. source: "./media/characters/milo/side.svg",
  18650. extra: 2644 / 2310,
  18651. bottom: 0.032
  18652. }
  18653. },
  18654. },
  18655. [
  18656. {
  18657. name: "Normal",
  18658. height: math.unit(9, "feet"),
  18659. default: true
  18660. },
  18661. {
  18662. name: "Macro",
  18663. height: math.unit(300, "feet")
  18664. },
  18665. ]
  18666. ))
  18667. characterMakers.push(() => makeCharacter(
  18668. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18669. {
  18670. side: {
  18671. height: math.unit(8, "meters"),
  18672. weight: math.unit(90000, "kg"),
  18673. name: "Side",
  18674. image: {
  18675. source: "./media/characters/ijzer/side.svg",
  18676. extra: 2756 / 1600,
  18677. bottom: 0.01
  18678. }
  18679. },
  18680. },
  18681. [
  18682. {
  18683. name: "Small",
  18684. height: math.unit(3, "meters")
  18685. },
  18686. {
  18687. name: "Normal",
  18688. height: math.unit(8, "meters"),
  18689. default: true
  18690. },
  18691. {
  18692. name: "Normal+",
  18693. height: math.unit(10, "meters")
  18694. },
  18695. {
  18696. name: "Bigger",
  18697. height: math.unit(24, "meters")
  18698. },
  18699. {
  18700. name: "Huge",
  18701. height: math.unit(80, "meters")
  18702. },
  18703. ]
  18704. ))
  18705. characterMakers.push(() => makeCharacter(
  18706. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18707. {
  18708. front: {
  18709. height: math.unit(6 + 2 / 12, "feet"),
  18710. weight: math.unit(153, "lb"),
  18711. name: "Front",
  18712. image: {
  18713. source: "./media/characters/luca-cervicum/front.svg",
  18714. extra: 370 / 327,
  18715. bottom: 0.015
  18716. }
  18717. },
  18718. back: {
  18719. height: math.unit(6 + 2 / 12, "feet"),
  18720. weight: math.unit(153, "lb"),
  18721. name: "Back",
  18722. image: {
  18723. source: "./media/characters/luca-cervicum/back.svg",
  18724. extra: 367 / 333,
  18725. bottom: 0.005
  18726. }
  18727. },
  18728. frontGear: {
  18729. height: math.unit(6 + 2 / 12, "feet"),
  18730. weight: math.unit(173, "lb"),
  18731. name: "Front (Gear)",
  18732. image: {
  18733. source: "./media/characters/luca-cervicum/front-gear.svg",
  18734. extra: 377 / 333,
  18735. bottom: 0.006
  18736. }
  18737. },
  18738. },
  18739. [
  18740. {
  18741. name: "Normal",
  18742. height: math.unit(6 + 2 / 12, "feet"),
  18743. default: true
  18744. },
  18745. ]
  18746. ))
  18747. characterMakers.push(() => makeCharacter(
  18748. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18749. {
  18750. front: {
  18751. height: math.unit(6 + 1 / 12, "feet"),
  18752. weight: math.unit(304, "lb"),
  18753. name: "Front",
  18754. image: {
  18755. source: "./media/characters/oliver/front.svg",
  18756. extra: 157 / 143,
  18757. bottom: 0.08
  18758. }
  18759. },
  18760. },
  18761. [
  18762. {
  18763. name: "Normal",
  18764. height: math.unit(6 + 1 / 12, "feet"),
  18765. default: true
  18766. },
  18767. ]
  18768. ))
  18769. characterMakers.push(() => makeCharacter(
  18770. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18771. {
  18772. front: {
  18773. height: math.unit(5 + 7 / 12, "feet"),
  18774. weight: math.unit(140, "lb"),
  18775. name: "Front",
  18776. image: {
  18777. source: "./media/characters/shane/front.svg",
  18778. extra: 304 / 289,
  18779. bottom: 0.005
  18780. }
  18781. },
  18782. },
  18783. [
  18784. {
  18785. name: "Normal",
  18786. height: math.unit(5 + 7 / 12, "feet"),
  18787. default: true
  18788. },
  18789. ]
  18790. ))
  18791. characterMakers.push(() => makeCharacter(
  18792. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18793. {
  18794. front: {
  18795. height: math.unit(5 + 9 / 12, "feet"),
  18796. weight: math.unit(178, "lb"),
  18797. name: "Front",
  18798. image: {
  18799. source: "./media/characters/shin/front.svg",
  18800. extra: 159 / 151,
  18801. bottom: 0.015
  18802. }
  18803. },
  18804. },
  18805. [
  18806. {
  18807. name: "Normal",
  18808. height: math.unit(5 + 9 / 12, "feet"),
  18809. default: true
  18810. },
  18811. ]
  18812. ))
  18813. characterMakers.push(() => makeCharacter(
  18814. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18815. {
  18816. front: {
  18817. height: math.unit(5 + 10 / 12, "feet"),
  18818. weight: math.unit(168, "lb"),
  18819. name: "Front",
  18820. image: {
  18821. source: "./media/characters/xerxes/front.svg",
  18822. extra: 282 / 260,
  18823. bottom: 0.045
  18824. }
  18825. },
  18826. },
  18827. [
  18828. {
  18829. name: "Normal",
  18830. height: math.unit(5 + 10 / 12, "feet"),
  18831. default: true
  18832. },
  18833. ]
  18834. ))
  18835. characterMakers.push(() => makeCharacter(
  18836. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18837. {
  18838. front: {
  18839. height: math.unit(6 + 7 / 12, "feet"),
  18840. weight: math.unit(208, "lb"),
  18841. name: "Front",
  18842. image: {
  18843. source: "./media/characters/chaska/front.svg",
  18844. extra: 332 / 319,
  18845. bottom: 0.015
  18846. }
  18847. },
  18848. },
  18849. [
  18850. {
  18851. name: "Normal",
  18852. height: math.unit(6 + 7 / 12, "feet"),
  18853. default: true
  18854. },
  18855. ]
  18856. ))
  18857. characterMakers.push(() => makeCharacter(
  18858. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18859. {
  18860. front: {
  18861. height: math.unit(5 + 8 / 12, "feet"),
  18862. weight: math.unit(208, "lb"),
  18863. name: "Front",
  18864. image: {
  18865. source: "./media/characters/enuk/front.svg",
  18866. extra: 437 / 406,
  18867. bottom: 0.02
  18868. }
  18869. },
  18870. },
  18871. [
  18872. {
  18873. name: "Normal",
  18874. height: math.unit(5 + 8 / 12, "feet"),
  18875. default: true
  18876. },
  18877. ]
  18878. ))
  18879. characterMakers.push(() => makeCharacter(
  18880. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18881. {
  18882. front: {
  18883. height: math.unit(5 + 10 / 12, "feet"),
  18884. weight: math.unit(252, "lb"),
  18885. name: "Front",
  18886. image: {
  18887. source: "./media/characters/bruun/front.svg",
  18888. extra: 197 / 187,
  18889. bottom: 0.012
  18890. }
  18891. },
  18892. },
  18893. [
  18894. {
  18895. name: "Normal",
  18896. height: math.unit(5 + 10 / 12, "feet"),
  18897. default: true
  18898. },
  18899. ]
  18900. ))
  18901. characterMakers.push(() => makeCharacter(
  18902. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18903. {
  18904. front: {
  18905. height: math.unit(6 + 10 / 12, "feet"),
  18906. weight: math.unit(255, "lb"),
  18907. name: "Front",
  18908. image: {
  18909. source: "./media/characters/alexeev/front.svg",
  18910. extra: 213 / 200,
  18911. bottom: 0.05
  18912. }
  18913. },
  18914. },
  18915. [
  18916. {
  18917. name: "Normal",
  18918. height: math.unit(6 + 10 / 12, "feet"),
  18919. default: true
  18920. },
  18921. ]
  18922. ))
  18923. characterMakers.push(() => makeCharacter(
  18924. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18925. {
  18926. front: {
  18927. height: math.unit(2 + 8 / 12, "feet"),
  18928. weight: math.unit(22, "lb"),
  18929. name: "Front",
  18930. image: {
  18931. source: "./media/characters/evelyn/front.svg",
  18932. extra: 208 / 180
  18933. }
  18934. },
  18935. },
  18936. [
  18937. {
  18938. name: "Normal",
  18939. height: math.unit(2 + 8 / 12, "feet"),
  18940. default: true
  18941. },
  18942. ]
  18943. ))
  18944. characterMakers.push(() => makeCharacter(
  18945. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18946. {
  18947. front: {
  18948. height: math.unit(5 + 9 / 12, "feet"),
  18949. weight: math.unit(139, "lb"),
  18950. name: "Front",
  18951. image: {
  18952. source: "./media/characters/inca/front.svg",
  18953. extra: 294 / 291,
  18954. bottom: 0.03
  18955. }
  18956. },
  18957. },
  18958. [
  18959. {
  18960. name: "Normal",
  18961. height: math.unit(5 + 9 / 12, "feet"),
  18962. default: true
  18963. },
  18964. ]
  18965. ))
  18966. characterMakers.push(() => makeCharacter(
  18967. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18968. {
  18969. front: {
  18970. height: math.unit(5 + 1 / 12, "feet"),
  18971. weight: math.unit(84, "lb"),
  18972. name: "Front",
  18973. image: {
  18974. source: "./media/characters/magdalene/front.svg",
  18975. extra: 293 / 273
  18976. }
  18977. },
  18978. },
  18979. [
  18980. {
  18981. name: "Normal",
  18982. height: math.unit(5 + 1 / 12, "feet"),
  18983. default: true
  18984. },
  18985. ]
  18986. ))
  18987. characterMakers.push(() => makeCharacter(
  18988. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18989. {
  18990. front: {
  18991. height: math.unit(6 + 3 / 12, "feet"),
  18992. weight: math.unit(185, "lb"),
  18993. name: "Front",
  18994. image: {
  18995. source: "./media/characters/mera/front.svg",
  18996. extra: 291 / 277,
  18997. bottom: 0.03
  18998. }
  18999. },
  19000. },
  19001. [
  19002. {
  19003. name: "Normal",
  19004. height: math.unit(6 + 3 / 12, "feet"),
  19005. default: true
  19006. },
  19007. ]
  19008. ))
  19009. characterMakers.push(() => makeCharacter(
  19010. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19011. {
  19012. front: {
  19013. height: math.unit(6 + 7 / 12, "feet"),
  19014. weight: math.unit(160, "lb"),
  19015. name: "Front",
  19016. image: {
  19017. source: "./media/characters/ceres/front.svg",
  19018. extra: 1023 / 950,
  19019. bottom: 0.027
  19020. }
  19021. },
  19022. back: {
  19023. height: math.unit(6 + 7 / 12, "feet"),
  19024. weight: math.unit(160, "lb"),
  19025. name: "Back",
  19026. image: {
  19027. source: "./media/characters/ceres/back.svg",
  19028. extra: 1023 / 950
  19029. }
  19030. },
  19031. },
  19032. [
  19033. {
  19034. name: "Normal",
  19035. height: math.unit(6 + 7 / 12, "feet"),
  19036. default: true
  19037. },
  19038. ]
  19039. ))
  19040. characterMakers.push(() => makeCharacter(
  19041. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19042. {
  19043. front: {
  19044. height: math.unit(5 + 10 / 12, "feet"),
  19045. weight: math.unit(150, "lb"),
  19046. name: "Front",
  19047. image: {
  19048. source: "./media/characters/kris/front.svg",
  19049. extra: 885 / 803,
  19050. bottom: 0.03
  19051. }
  19052. },
  19053. },
  19054. [
  19055. {
  19056. name: "Normal",
  19057. height: math.unit(5 + 10 / 12, "feet"),
  19058. default: true
  19059. },
  19060. ]
  19061. ))
  19062. characterMakers.push(() => makeCharacter(
  19063. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19064. {
  19065. front: {
  19066. height: math.unit(7, "feet"),
  19067. weight: math.unit(120, "kg"),
  19068. name: "Front",
  19069. image: {
  19070. source: "./media/characters/taluthus/front.svg",
  19071. extra: 903 / 833,
  19072. bottom: 0.015
  19073. }
  19074. },
  19075. },
  19076. [
  19077. {
  19078. name: "Normal",
  19079. height: math.unit(7, "feet"),
  19080. default: true
  19081. },
  19082. {
  19083. name: "Macro",
  19084. height: math.unit(300, "feet")
  19085. },
  19086. ]
  19087. ))
  19088. characterMakers.push(() => makeCharacter(
  19089. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19090. {
  19091. front: {
  19092. height: math.unit(5 + 9 / 12, "feet"),
  19093. weight: math.unit(145, "lb"),
  19094. name: "Front",
  19095. image: {
  19096. source: "./media/characters/dawn/front.svg",
  19097. extra: 2094 / 2016,
  19098. bottom: 0.025
  19099. }
  19100. },
  19101. back: {
  19102. height: math.unit(5 + 9 / 12, "feet"),
  19103. weight: math.unit(160, "lb"),
  19104. name: "Back",
  19105. image: {
  19106. source: "./media/characters/dawn/back.svg",
  19107. extra: 2112 / 2080,
  19108. bottom: 0.005
  19109. }
  19110. },
  19111. },
  19112. [
  19113. {
  19114. name: "Normal",
  19115. height: math.unit(6 + 7 / 12, "feet"),
  19116. default: true
  19117. },
  19118. ]
  19119. ))
  19120. characterMakers.push(() => makeCharacter(
  19121. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19122. {
  19123. anthro: {
  19124. height: math.unit(8 + 3 / 12, "feet"),
  19125. weight: math.unit(450, "lb"),
  19126. name: "Anthro",
  19127. image: {
  19128. source: "./media/characters/arador/anthro.svg",
  19129. extra: 1835 / 1718,
  19130. bottom: 0.025
  19131. }
  19132. },
  19133. feral: {
  19134. height: math.unit(4, "feet"),
  19135. weight: math.unit(200, "lb"),
  19136. name: "Feral",
  19137. image: {
  19138. source: "./media/characters/arador/feral.svg",
  19139. extra: 1683 / 1514,
  19140. bottom: 0.07
  19141. }
  19142. },
  19143. },
  19144. [
  19145. {
  19146. name: "Normal",
  19147. height: math.unit(8 + 3 / 12, "feet")
  19148. },
  19149. {
  19150. name: "Macro",
  19151. height: math.unit(82.5, "feet"),
  19152. default: true
  19153. },
  19154. ]
  19155. ))
  19156. characterMakers.push(() => makeCharacter(
  19157. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19158. {
  19159. front: {
  19160. height: math.unit(5 + 10 / 12, "feet"),
  19161. weight: math.unit(125, "lb"),
  19162. name: "Front",
  19163. image: {
  19164. source: "./media/characters/dharsi/front.svg",
  19165. extra: 716 / 630,
  19166. bottom: 0.035
  19167. }
  19168. },
  19169. },
  19170. [
  19171. {
  19172. name: "Nano",
  19173. height: math.unit(100, "nm")
  19174. },
  19175. {
  19176. name: "Micro",
  19177. height: math.unit(2, "inches")
  19178. },
  19179. {
  19180. name: "Normal",
  19181. height: math.unit(5 + 10 / 12, "feet"),
  19182. default: true
  19183. },
  19184. {
  19185. name: "Macro",
  19186. height: math.unit(1000, "feet")
  19187. },
  19188. {
  19189. name: "Megamacro",
  19190. height: math.unit(10, "miles")
  19191. },
  19192. {
  19193. name: "Gigamacro",
  19194. height: math.unit(3000, "miles")
  19195. },
  19196. {
  19197. name: "Teramacro",
  19198. height: math.unit(500000, "miles")
  19199. },
  19200. {
  19201. name: "Teramacro+",
  19202. height: math.unit(30, "galaxies")
  19203. },
  19204. ]
  19205. ))
  19206. characterMakers.push(() => makeCharacter(
  19207. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19208. {
  19209. front: {
  19210. height: math.unit(6, "feet"),
  19211. weight: math.unit(150, "lb"),
  19212. name: "Front",
  19213. image: {
  19214. source: "./media/characters/deathy/front.svg",
  19215. extra: 1552 / 1463,
  19216. bottom: 0.025
  19217. }
  19218. },
  19219. side: {
  19220. height: math.unit(6, "feet"),
  19221. weight: math.unit(150, "lb"),
  19222. name: "Side",
  19223. image: {
  19224. source: "./media/characters/deathy/side.svg",
  19225. extra: 1604 / 1455,
  19226. bottom: 0.025
  19227. }
  19228. },
  19229. back: {
  19230. height: math.unit(6, "feet"),
  19231. weight: math.unit(150, "lb"),
  19232. name: "Back",
  19233. image: {
  19234. source: "./media/characters/deathy/back.svg",
  19235. extra: 1580 / 1463,
  19236. bottom: 0.005
  19237. }
  19238. },
  19239. },
  19240. [
  19241. {
  19242. name: "Micro",
  19243. height: math.unit(5, "millimeters")
  19244. },
  19245. {
  19246. name: "Normal",
  19247. height: math.unit(6 + 5 / 12, "feet"),
  19248. default: true
  19249. },
  19250. ]
  19251. ))
  19252. characterMakers.push(() => makeCharacter(
  19253. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19254. {
  19255. front: {
  19256. height: math.unit(16, "feet"),
  19257. weight: math.unit(4000, "lb"),
  19258. name: "Front",
  19259. image: {
  19260. source: "./media/characters/juniper/front.svg",
  19261. bottom: 0.04
  19262. }
  19263. },
  19264. },
  19265. [
  19266. {
  19267. name: "Normal",
  19268. height: math.unit(16, "feet"),
  19269. default: true
  19270. },
  19271. ]
  19272. ))
  19273. characterMakers.push(() => makeCharacter(
  19274. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19275. {
  19276. front: {
  19277. height: math.unit(6, "feet"),
  19278. weight: math.unit(150, "lb"),
  19279. name: "Front",
  19280. image: {
  19281. source: "./media/characters/hipster/front.svg",
  19282. extra: 1312 / 1209,
  19283. bottom: 0.025
  19284. }
  19285. },
  19286. back: {
  19287. height: math.unit(6, "feet"),
  19288. weight: math.unit(150, "lb"),
  19289. name: "Back",
  19290. image: {
  19291. source: "./media/characters/hipster/back.svg",
  19292. extra: 1281 / 1196,
  19293. bottom: 0.01
  19294. }
  19295. },
  19296. },
  19297. [
  19298. {
  19299. name: "Micro",
  19300. height: math.unit(1, "mm")
  19301. },
  19302. {
  19303. name: "Normal",
  19304. height: math.unit(4, "inches"),
  19305. default: true
  19306. },
  19307. {
  19308. name: "Macro",
  19309. height: math.unit(500, "feet")
  19310. },
  19311. {
  19312. name: "Megamacro",
  19313. height: math.unit(1000, "miles")
  19314. },
  19315. ]
  19316. ))
  19317. characterMakers.push(() => makeCharacter(
  19318. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19319. {
  19320. front: {
  19321. height: math.unit(6, "feet"),
  19322. weight: math.unit(150, "lb"),
  19323. name: "Front",
  19324. image: {
  19325. source: "./media/characters/tendirmuldr/front.svg",
  19326. extra: 1878 / 1772,
  19327. bottom: 0.015
  19328. }
  19329. },
  19330. },
  19331. [
  19332. {
  19333. name: "Megamacro",
  19334. height: math.unit(1500, "miles"),
  19335. default: true
  19336. },
  19337. ]
  19338. ))
  19339. characterMakers.push(() => makeCharacter(
  19340. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19341. {
  19342. front: {
  19343. height: math.unit(14, "feet"),
  19344. weight: math.unit(12000, "lb"),
  19345. name: "Front",
  19346. image: {
  19347. source: "./media/characters/mort/front.svg",
  19348. extra: 365 / 318,
  19349. bottom: 0.01
  19350. }
  19351. },
  19352. side: {
  19353. height: math.unit(14, "feet"),
  19354. weight: math.unit(12000, "lb"),
  19355. name: "Side",
  19356. image: {
  19357. source: "./media/characters/mort/side.svg",
  19358. extra: 365 / 318,
  19359. bottom: 0.052
  19360. },
  19361. default: true
  19362. },
  19363. back: {
  19364. height: math.unit(14, "feet"),
  19365. weight: math.unit(12000, "lb"),
  19366. name: "Back",
  19367. image: {
  19368. source: "./media/characters/mort/back.svg",
  19369. extra: 371 / 332,
  19370. bottom: 0.18
  19371. }
  19372. },
  19373. },
  19374. [
  19375. {
  19376. name: "Normal",
  19377. height: math.unit(14, "feet"),
  19378. default: true
  19379. },
  19380. ]
  19381. ))
  19382. characterMakers.push(() => makeCharacter(
  19383. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19384. {
  19385. front: {
  19386. height: math.unit(8, "feet"),
  19387. weight: math.unit(1, "ton"),
  19388. name: "Front",
  19389. image: {
  19390. source: "./media/characters/lycoa/front.svg",
  19391. extra: 1875 / 1789,
  19392. bottom: 0.022
  19393. }
  19394. },
  19395. back: {
  19396. height: math.unit(8, "feet"),
  19397. weight: math.unit(1, "ton"),
  19398. name: "Back",
  19399. image: {
  19400. source: "./media/characters/lycoa/back.svg",
  19401. extra: 1835 / 1781,
  19402. bottom: 0.03
  19403. }
  19404. },
  19405. head: {
  19406. height: math.unit(2.1, "feet"),
  19407. name: "Head",
  19408. image: {
  19409. source: "./media/characters/lycoa/head.svg"
  19410. }
  19411. },
  19412. tailmaw: {
  19413. height: math.unit(1.9, "feet"),
  19414. name: "Tailmaw",
  19415. image: {
  19416. source: "./media/characters/lycoa/tailmaw.svg"
  19417. }
  19418. },
  19419. tentacles: {
  19420. height: math.unit(2.1, "feet"),
  19421. name: "Tentacles",
  19422. image: {
  19423. source: "./media/characters/lycoa/tentacles.svg"
  19424. }
  19425. },
  19426. dick: {
  19427. height: math.unit(1.73, "feet"),
  19428. name: "Dick",
  19429. image: {
  19430. source: "./media/characters/lycoa/dick.svg"
  19431. }
  19432. },
  19433. },
  19434. [
  19435. {
  19436. name: "Normal",
  19437. height: math.unit(8, "feet"),
  19438. default: true
  19439. },
  19440. {
  19441. name: "Macro",
  19442. height: math.unit(30, "feet")
  19443. },
  19444. ]
  19445. ))
  19446. characterMakers.push(() => makeCharacter(
  19447. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19448. {
  19449. front: {
  19450. height: math.unit(4 + 2 / 12, "feet"),
  19451. weight: math.unit(70, "lb"),
  19452. name: "Front",
  19453. image: {
  19454. source: "./media/characters/naldara/front.svg",
  19455. extra: 841 / 720,
  19456. bottom: 0.04
  19457. }
  19458. },
  19459. naga: {
  19460. height: math.unit(23, "feet"),
  19461. weight: math.unit(15000, "kg"),
  19462. name: "Naga",
  19463. image: {
  19464. source: "./media/characters/naldara/naga.svg",
  19465. extra: 3290 / 2959,
  19466. bottom: 124 / 3432
  19467. }
  19468. },
  19469. },
  19470. [
  19471. {
  19472. name: "Normal",
  19473. height: math.unit(4 + 2 / 12, "feet"),
  19474. default: true
  19475. },
  19476. ]
  19477. ))
  19478. characterMakers.push(() => makeCharacter(
  19479. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19480. {
  19481. front: {
  19482. height: math.unit(13 + 7 / 12, "feet"),
  19483. weight: math.unit(1500, "lb"),
  19484. name: "Front",
  19485. image: {
  19486. source: "./media/characters/briar/front.svg",
  19487. extra: 626 / 596,
  19488. bottom: 0.08
  19489. }
  19490. },
  19491. },
  19492. [
  19493. {
  19494. name: "Normal",
  19495. height: math.unit(13 + 7 / 12, "feet"),
  19496. default: true
  19497. },
  19498. ]
  19499. ))
  19500. characterMakers.push(() => makeCharacter(
  19501. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19502. {
  19503. side: {
  19504. height: math.unit(10, "feet"),
  19505. weight: math.unit(500, "lb"),
  19506. name: "Side",
  19507. image: {
  19508. source: "./media/characters/vanguard/side.svg",
  19509. extra: 502 / 425,
  19510. bottom: 0.087
  19511. }
  19512. },
  19513. },
  19514. [
  19515. {
  19516. name: "Normal",
  19517. height: math.unit(10, "feet"),
  19518. default: true
  19519. },
  19520. ]
  19521. ))
  19522. characterMakers.push(() => makeCharacter(
  19523. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19524. {
  19525. front: {
  19526. height: math.unit(7.5, "feet"),
  19527. weight: math.unit(2, "lb"),
  19528. name: "Front",
  19529. image: {
  19530. source: "./media/characters/artemis/front.svg",
  19531. extra: 1192 / 1075,
  19532. bottom: 0.07
  19533. }
  19534. },
  19535. frontNsfw: {
  19536. height: math.unit(7.5, "feet"),
  19537. weight: math.unit(2, "lb"),
  19538. name: "Front (NSFW)",
  19539. image: {
  19540. source: "./media/characters/artemis/front-nsfw.svg",
  19541. extra: 1192 / 1075,
  19542. bottom: 0.07
  19543. }
  19544. },
  19545. frontNsfwer: {
  19546. height: math.unit(7.5, "feet"),
  19547. weight: math.unit(2, "lb"),
  19548. name: "Front (NSFW-er)",
  19549. image: {
  19550. source: "./media/characters/artemis/front-nsfwer.svg",
  19551. extra: 1192 / 1075,
  19552. bottom: 0.07
  19553. }
  19554. },
  19555. side: {
  19556. height: math.unit(7.5, "feet"),
  19557. weight: math.unit(2, "lb"),
  19558. name: "Side",
  19559. image: {
  19560. source: "./media/characters/artemis/side.svg",
  19561. extra: 1192 / 1075,
  19562. bottom: 0.07
  19563. }
  19564. },
  19565. sideNsfw: {
  19566. height: math.unit(7.5, "feet"),
  19567. weight: math.unit(2, "lb"),
  19568. name: "Side (NSFW)",
  19569. image: {
  19570. source: "./media/characters/artemis/side-nsfw.svg",
  19571. extra: 1192 / 1075,
  19572. bottom: 0.07
  19573. }
  19574. },
  19575. sideNsfwer: {
  19576. height: math.unit(7.5, "feet"),
  19577. weight: math.unit(2, "lb"),
  19578. name: "Side (NSFW-er)",
  19579. image: {
  19580. source: "./media/characters/artemis/side-nsfwer.svg",
  19581. extra: 1192 / 1075,
  19582. bottom: 0.07
  19583. }
  19584. },
  19585. maw: {
  19586. height: math.unit(1.1, "feet"),
  19587. name: "Maw",
  19588. image: {
  19589. source: "./media/characters/artemis/maw.svg"
  19590. }
  19591. },
  19592. stomach: {
  19593. height: math.unit(0.95, "feet"),
  19594. name: "Stomach",
  19595. image: {
  19596. source: "./media/characters/artemis/stomach.svg"
  19597. }
  19598. },
  19599. dickCanine: {
  19600. height: math.unit(1, "feet"),
  19601. name: "Dick (Canine)",
  19602. image: {
  19603. source: "./media/characters/artemis/dick-canine.svg"
  19604. }
  19605. },
  19606. dickEquine: {
  19607. height: math.unit(0.85, "feet"),
  19608. name: "Dick (Equine)",
  19609. image: {
  19610. source: "./media/characters/artemis/dick-equine.svg"
  19611. }
  19612. },
  19613. dickExotic: {
  19614. height: math.unit(0.85, "feet"),
  19615. name: "Dick (Exotic)",
  19616. image: {
  19617. source: "./media/characters/artemis/dick-exotic.svg"
  19618. }
  19619. },
  19620. },
  19621. [
  19622. {
  19623. name: "Normal",
  19624. height: math.unit(7.5, "feet"),
  19625. default: true
  19626. },
  19627. {
  19628. name: "Enlarged",
  19629. height: math.unit(12, "feet")
  19630. },
  19631. ]
  19632. ))
  19633. characterMakers.push(() => makeCharacter(
  19634. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19635. {
  19636. front: {
  19637. height: math.unit(5 + 3 / 12, "feet"),
  19638. weight: math.unit(160, "lb"),
  19639. name: "Front",
  19640. image: {
  19641. source: "./media/characters/kira/front.svg",
  19642. extra: 906 / 786,
  19643. bottom: 0.01
  19644. }
  19645. },
  19646. back: {
  19647. height: math.unit(5 + 3 / 12, "feet"),
  19648. weight: math.unit(160, "lb"),
  19649. name: "Back",
  19650. image: {
  19651. source: "./media/characters/kira/back.svg",
  19652. extra: 882 / 757,
  19653. bottom: 0.005
  19654. }
  19655. },
  19656. frontDressed: {
  19657. height: math.unit(5 + 3 / 12, "feet"),
  19658. weight: math.unit(160, "lb"),
  19659. name: "Front (Dressed)",
  19660. image: {
  19661. source: "./media/characters/kira/front-dressed.svg",
  19662. extra: 906 / 786,
  19663. bottom: 0.01
  19664. }
  19665. },
  19666. beans: {
  19667. height: math.unit(0.92, "feet"),
  19668. name: "Beans",
  19669. image: {
  19670. source: "./media/characters/kira/beans.svg"
  19671. }
  19672. },
  19673. },
  19674. [
  19675. {
  19676. name: "Normal",
  19677. height: math.unit(5 + 3 / 12, "feet"),
  19678. default: true
  19679. },
  19680. ]
  19681. ))
  19682. characterMakers.push(() => makeCharacter(
  19683. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19684. {
  19685. front: {
  19686. height: math.unit(5 + 4 / 12, "feet"),
  19687. weight: math.unit(145, "lb"),
  19688. name: "Front",
  19689. image: {
  19690. source: "./media/characters/scramble/front.svg",
  19691. extra: 763 / 727,
  19692. bottom: 0.05
  19693. }
  19694. },
  19695. back: {
  19696. height: math.unit(5 + 4 / 12, "feet"),
  19697. weight: math.unit(145, "lb"),
  19698. name: "Back",
  19699. image: {
  19700. source: "./media/characters/scramble/back.svg",
  19701. extra: 826 / 737,
  19702. bottom: 0.002
  19703. }
  19704. },
  19705. },
  19706. [
  19707. {
  19708. name: "Normal",
  19709. height: math.unit(5 + 4 / 12, "feet"),
  19710. default: true
  19711. },
  19712. ]
  19713. ))
  19714. characterMakers.push(() => makeCharacter(
  19715. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19716. {
  19717. side: {
  19718. height: math.unit(6 + 2 / 12, "feet"),
  19719. weight: math.unit(190, "lb"),
  19720. name: "Side",
  19721. image: {
  19722. source: "./media/characters/biscuit/side.svg",
  19723. extra: 858 / 791,
  19724. bottom: 0.044
  19725. }
  19726. },
  19727. },
  19728. [
  19729. {
  19730. name: "Normal",
  19731. height: math.unit(6 + 2 / 12, "feet"),
  19732. default: true
  19733. },
  19734. ]
  19735. ))
  19736. characterMakers.push(() => makeCharacter(
  19737. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19738. {
  19739. front: {
  19740. height: math.unit(5 + 2 / 12, "feet"),
  19741. weight: math.unit(120, "lb"),
  19742. name: "Front",
  19743. image: {
  19744. source: "./media/characters/poffin/front.svg",
  19745. extra: 786 / 680,
  19746. bottom: 0.005
  19747. }
  19748. },
  19749. },
  19750. [
  19751. {
  19752. name: "Normal",
  19753. height: math.unit(5 + 2 / 12, "feet"),
  19754. default: true
  19755. },
  19756. ]
  19757. ))
  19758. characterMakers.push(() => makeCharacter(
  19759. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19760. {
  19761. front: {
  19762. height: math.unit(6 + 3 / 12, "feet"),
  19763. weight: math.unit(519, "lb"),
  19764. name: "Front",
  19765. image: {
  19766. source: "./media/characters/dhari/front.svg",
  19767. extra: 1048 / 946,
  19768. bottom: 0.015
  19769. }
  19770. },
  19771. back: {
  19772. height: math.unit(6 + 3 / 12, "feet"),
  19773. weight: math.unit(519, "lb"),
  19774. name: "Back",
  19775. image: {
  19776. source: "./media/characters/dhari/back.svg",
  19777. extra: 1048 / 931,
  19778. bottom: 0.005
  19779. }
  19780. },
  19781. frontDressed: {
  19782. height: math.unit(6 + 3 / 12, "feet"),
  19783. weight: math.unit(519, "lb"),
  19784. name: "Front (Dressed)",
  19785. image: {
  19786. source: "./media/characters/dhari/front-dressed.svg",
  19787. extra: 1713 / 1546,
  19788. bottom: 0.02
  19789. }
  19790. },
  19791. backDressed: {
  19792. height: math.unit(6 + 3 / 12, "feet"),
  19793. weight: math.unit(519, "lb"),
  19794. name: "Back (Dressed)",
  19795. image: {
  19796. source: "./media/characters/dhari/back-dressed.svg",
  19797. extra: 1699 / 1537,
  19798. bottom: 0.01
  19799. }
  19800. },
  19801. maw: {
  19802. height: math.unit(0.95, "feet"),
  19803. name: "Maw",
  19804. image: {
  19805. source: "./media/characters/dhari/maw.svg"
  19806. }
  19807. },
  19808. wereFront: {
  19809. height: math.unit(12 + 8 / 12, "feet"),
  19810. weight: math.unit(4000, "lb"),
  19811. name: "Front (Were)",
  19812. image: {
  19813. source: "./media/characters/dhari/were-front.svg",
  19814. extra: 1065 / 969,
  19815. bottom: 0.015
  19816. }
  19817. },
  19818. wereBack: {
  19819. height: math.unit(12 + 8 / 12, "feet"),
  19820. weight: math.unit(4000, "lb"),
  19821. name: "Back (Were)",
  19822. image: {
  19823. source: "./media/characters/dhari/were-back.svg",
  19824. extra: 1065 / 969,
  19825. bottom: 0.012
  19826. }
  19827. },
  19828. wereMaw: {
  19829. height: math.unit(0.625, "meters"),
  19830. name: "Maw (Were)",
  19831. image: {
  19832. source: "./media/characters/dhari/were-maw.svg"
  19833. }
  19834. },
  19835. },
  19836. [
  19837. {
  19838. name: "Normal",
  19839. height: math.unit(6 + 3 / 12, "feet"),
  19840. default: true
  19841. },
  19842. ]
  19843. ))
  19844. characterMakers.push(() => makeCharacter(
  19845. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19846. {
  19847. anthro: {
  19848. height: math.unit(5 + 7 / 12, "feet"),
  19849. weight: math.unit(175, "lb"),
  19850. name: "Anthro",
  19851. image: {
  19852. source: "./media/characters/rena-dyne/anthro.svg",
  19853. extra: 1849 / 1785,
  19854. bottom: 0.005
  19855. }
  19856. },
  19857. taur: {
  19858. height: math.unit(15 + 6 / 12, "feet"),
  19859. weight: math.unit(8000, "lb"),
  19860. name: "Taur",
  19861. image: {
  19862. source: "./media/characters/rena-dyne/taur.svg",
  19863. extra: 2315 / 2234,
  19864. bottom: 0.033
  19865. }
  19866. },
  19867. },
  19868. [
  19869. {
  19870. name: "Normal",
  19871. height: math.unit(5 + 7 / 12, "feet"),
  19872. default: true
  19873. },
  19874. ]
  19875. ))
  19876. characterMakers.push(() => makeCharacter(
  19877. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19878. {
  19879. front: {
  19880. height: math.unit(8, "feet"),
  19881. weight: math.unit(600, "lb"),
  19882. name: "Front",
  19883. image: {
  19884. source: "./media/characters/weremeep/front.svg",
  19885. extra: 967 / 862,
  19886. bottom: 0.01
  19887. }
  19888. },
  19889. },
  19890. [
  19891. {
  19892. name: "Normal",
  19893. height: math.unit(8, "feet"),
  19894. default: true
  19895. },
  19896. {
  19897. name: "Lorg",
  19898. height: math.unit(12, "feet")
  19899. },
  19900. {
  19901. name: "Oh Lawd She Comin'",
  19902. height: math.unit(20, "feet")
  19903. },
  19904. ]
  19905. ))
  19906. characterMakers.push(() => makeCharacter(
  19907. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19908. {
  19909. front: {
  19910. height: math.unit(4, "feet"),
  19911. weight: math.unit(90, "lb"),
  19912. name: "Front",
  19913. image: {
  19914. source: "./media/characters/reza/front.svg",
  19915. extra: 1183 / 1111,
  19916. bottom: 0.017
  19917. }
  19918. },
  19919. back: {
  19920. height: math.unit(4, "feet"),
  19921. weight: math.unit(90, "lb"),
  19922. name: "Back",
  19923. image: {
  19924. source: "./media/characters/reza/back.svg",
  19925. extra: 1183 / 1111,
  19926. bottom: 0.01
  19927. }
  19928. },
  19929. drake: {
  19930. height: math.unit(30, "feet"),
  19931. weight: math.unit(246960, "lb"),
  19932. name: "Drake",
  19933. image: {
  19934. source: "./media/characters/reza/drake.svg",
  19935. extra: 2350 / 2024,
  19936. bottom: 60.7 / 2403
  19937. }
  19938. },
  19939. },
  19940. [
  19941. {
  19942. name: "Normal",
  19943. height: math.unit(4, "feet"),
  19944. default: true
  19945. },
  19946. ]
  19947. ))
  19948. characterMakers.push(() => makeCharacter(
  19949. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19950. {
  19951. side: {
  19952. height: math.unit(15, "feet"),
  19953. weight: math.unit(14, "tons"),
  19954. name: "Side",
  19955. image: {
  19956. source: "./media/characters/athea/side.svg",
  19957. extra: 960 / 540,
  19958. bottom: 0.003
  19959. }
  19960. },
  19961. sitting: {
  19962. height: math.unit(6 * 2.85, "feet"),
  19963. weight: math.unit(14, "tons"),
  19964. name: "Sitting",
  19965. image: {
  19966. source: "./media/characters/athea/sitting.svg",
  19967. extra: 621 / 581,
  19968. bottom: 0.075
  19969. }
  19970. },
  19971. maw: {
  19972. height: math.unit(7.59498031496063, "feet"),
  19973. name: "Maw",
  19974. image: {
  19975. source: "./media/characters/athea/maw.svg"
  19976. }
  19977. },
  19978. },
  19979. [
  19980. {
  19981. name: "Lap Cat",
  19982. height: math.unit(2.5, "feet")
  19983. },
  19984. {
  19985. name: "Minimacro",
  19986. height: math.unit(15, "feet"),
  19987. default: true
  19988. },
  19989. {
  19990. name: "Macro",
  19991. height: math.unit(120, "feet")
  19992. },
  19993. {
  19994. name: "Macro+",
  19995. height: math.unit(640, "feet")
  19996. },
  19997. {
  19998. name: "Colossus",
  19999. height: math.unit(2.2, "miles")
  20000. },
  20001. ]
  20002. ))
  20003. characterMakers.push(() => makeCharacter(
  20004. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20005. {
  20006. front: {
  20007. height: math.unit(8 + 8 / 12, "feet"),
  20008. weight: math.unit(130, "kg"),
  20009. name: "Front",
  20010. image: {
  20011. source: "./media/characters/seroko/front.svg",
  20012. extra: 1385 / 1280,
  20013. bottom: 0.025
  20014. }
  20015. },
  20016. back: {
  20017. height: math.unit(8 + 8 / 12, "feet"),
  20018. weight: math.unit(130, "kg"),
  20019. name: "Back",
  20020. image: {
  20021. source: "./media/characters/seroko/back.svg",
  20022. extra: 1369 / 1238,
  20023. bottom: 0.018
  20024. }
  20025. },
  20026. frontDressed: {
  20027. height: math.unit(8 + 8 / 12, "feet"),
  20028. weight: math.unit(130, "kg"),
  20029. name: "Front (Dressed)",
  20030. image: {
  20031. source: "./media/characters/seroko/front-dressed.svg",
  20032. extra: 1366 / 1275,
  20033. bottom: 0.03
  20034. }
  20035. },
  20036. },
  20037. [
  20038. {
  20039. name: "Normal",
  20040. height: math.unit(8 + 8 / 12, "feet"),
  20041. default: true
  20042. },
  20043. ]
  20044. ))
  20045. characterMakers.push(() => makeCharacter(
  20046. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20047. {
  20048. front: {
  20049. height: math.unit(5.5, "feet"),
  20050. weight: math.unit(160, "lb"),
  20051. name: "Front",
  20052. image: {
  20053. source: "./media/characters/quatzi/front.svg",
  20054. extra: 2346 / 2242,
  20055. bottom: 0.015
  20056. }
  20057. },
  20058. },
  20059. [
  20060. {
  20061. name: "Normal",
  20062. height: math.unit(5.5, "feet"),
  20063. default: true
  20064. },
  20065. {
  20066. name: "Big",
  20067. height: math.unit(7.7, "feet")
  20068. },
  20069. ]
  20070. ))
  20071. characterMakers.push(() => makeCharacter(
  20072. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20073. {
  20074. front: {
  20075. height: math.unit(5 + 11 / 12, "feet"),
  20076. weight: math.unit(180, "lb"),
  20077. name: "Front",
  20078. image: {
  20079. source: "./media/characters/sen/front.svg",
  20080. extra: 1321 / 1254,
  20081. bottom: 0.015
  20082. }
  20083. },
  20084. side: {
  20085. height: math.unit(5 + 11 / 12, "feet"),
  20086. weight: math.unit(180, "lb"),
  20087. name: "Side",
  20088. image: {
  20089. source: "./media/characters/sen/side.svg",
  20090. extra: 1321 / 1254,
  20091. bottom: 0.007
  20092. }
  20093. },
  20094. back: {
  20095. height: math.unit(5 + 11 / 12, "feet"),
  20096. weight: math.unit(180, "lb"),
  20097. name: "Back",
  20098. image: {
  20099. source: "./media/characters/sen/back.svg",
  20100. extra: 1321 / 1254
  20101. }
  20102. },
  20103. },
  20104. [
  20105. {
  20106. name: "Normal",
  20107. height: math.unit(5 + 11 / 12, "feet"),
  20108. default: true
  20109. },
  20110. ]
  20111. ))
  20112. characterMakers.push(() => makeCharacter(
  20113. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20114. {
  20115. front: {
  20116. height: math.unit(166.6, "cm"),
  20117. weight: math.unit(66.6, "kg"),
  20118. name: "Front",
  20119. image: {
  20120. source: "./media/characters/fruity/front.svg",
  20121. extra: 1510 / 1386,
  20122. bottom: 0.04
  20123. }
  20124. },
  20125. back: {
  20126. height: math.unit(166.6, "cm"),
  20127. weight: math.unit(66.6, "lb"),
  20128. name: "Back",
  20129. image: {
  20130. source: "./media/characters/fruity/back.svg",
  20131. extra: 1563 / 1435,
  20132. bottom: 0.005
  20133. }
  20134. },
  20135. },
  20136. [
  20137. {
  20138. name: "Normal",
  20139. height: math.unit(166.6, "cm"),
  20140. default: true
  20141. },
  20142. {
  20143. name: "Demonic",
  20144. height: math.unit(166.6, "feet")
  20145. },
  20146. ]
  20147. ))
  20148. characterMakers.push(() => makeCharacter(
  20149. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20150. {
  20151. side: {
  20152. height: math.unit(10, "feet"),
  20153. weight: math.unit(500, "lb"),
  20154. name: "Side",
  20155. image: {
  20156. source: "./media/characters/zost/side.svg",
  20157. extra: 966 / 880,
  20158. bottom: 0.075
  20159. }
  20160. },
  20161. mawFront: {
  20162. height: math.unit(1.08, "meters"),
  20163. name: "Maw (Front)",
  20164. image: {
  20165. source: "./media/characters/zost/maw-front.svg"
  20166. }
  20167. },
  20168. mawSide: {
  20169. height: math.unit(2.66, "feet"),
  20170. name: "Maw (Side)",
  20171. image: {
  20172. source: "./media/characters/zost/maw-side.svg"
  20173. }
  20174. },
  20175. },
  20176. [
  20177. {
  20178. name: "Normal",
  20179. height: math.unit(10, "feet"),
  20180. default: true
  20181. },
  20182. ]
  20183. ))
  20184. characterMakers.push(() => makeCharacter(
  20185. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20186. {
  20187. front: {
  20188. height: math.unit(5 + 4 / 12, "feet"),
  20189. weight: math.unit(120, "lb"),
  20190. name: "Front",
  20191. image: {
  20192. source: "./media/characters/luci/front.svg",
  20193. extra: 1985 / 1884,
  20194. bottom: 0.04
  20195. }
  20196. },
  20197. back: {
  20198. height: math.unit(5 + 4 / 12, "feet"),
  20199. weight: math.unit(120, "lb"),
  20200. name: "Back",
  20201. image: {
  20202. source: "./media/characters/luci/back.svg",
  20203. extra: 1892 / 1791,
  20204. bottom: 0.002
  20205. }
  20206. },
  20207. },
  20208. [
  20209. {
  20210. name: "Normal",
  20211. height: math.unit(5 + 4 / 12, "feet"),
  20212. default: true
  20213. },
  20214. ]
  20215. ))
  20216. characterMakers.push(() => makeCharacter(
  20217. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20218. {
  20219. front: {
  20220. height: math.unit(1500, "feet"),
  20221. weight: math.unit(3.8e6, "tons"),
  20222. name: "Front",
  20223. image: {
  20224. source: "./media/characters/2th/front.svg",
  20225. extra: 3489 / 3350,
  20226. bottom: 0.1
  20227. }
  20228. },
  20229. foot: {
  20230. height: math.unit(461, "feet"),
  20231. name: "Foot",
  20232. image: {
  20233. source: "./media/characters/2th/foot.svg"
  20234. }
  20235. },
  20236. },
  20237. [
  20238. {
  20239. name: "\"Micro\"",
  20240. height: math.unit(15 + 7 / 12, "feet")
  20241. },
  20242. {
  20243. name: "Normal",
  20244. height: math.unit(1500, "feet"),
  20245. default: true
  20246. },
  20247. {
  20248. name: "Macro",
  20249. height: math.unit(5000, "feet")
  20250. },
  20251. {
  20252. name: "Megamacro",
  20253. height: math.unit(15, "miles")
  20254. },
  20255. {
  20256. name: "Gigamacro",
  20257. height: math.unit(4000, "miles")
  20258. },
  20259. {
  20260. name: "Galactic",
  20261. height: math.unit(50, "AU")
  20262. },
  20263. ]
  20264. ))
  20265. characterMakers.push(() => makeCharacter(
  20266. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20267. {
  20268. front: {
  20269. height: math.unit(5 + 6 / 12, "feet"),
  20270. weight: math.unit(220, "lb"),
  20271. name: "Front",
  20272. image: {
  20273. source: "./media/characters/amethyst/front.svg",
  20274. extra: 2078 / 2040,
  20275. bottom: 0.045
  20276. }
  20277. },
  20278. back: {
  20279. height: math.unit(5 + 6 / 12, "feet"),
  20280. weight: math.unit(220, "lb"),
  20281. name: "Back",
  20282. image: {
  20283. source: "./media/characters/amethyst/back.svg",
  20284. extra: 2021 / 1989,
  20285. bottom: 0.02
  20286. }
  20287. },
  20288. },
  20289. [
  20290. {
  20291. name: "Normal",
  20292. height: math.unit(5 + 6 / 12, "feet"),
  20293. default: true
  20294. },
  20295. ]
  20296. ))
  20297. characterMakers.push(() => makeCharacter(
  20298. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20299. {
  20300. front: {
  20301. height: math.unit(4 + 11 / 12, "feet"),
  20302. weight: math.unit(120, "lb"),
  20303. name: "Front",
  20304. image: {
  20305. source: "./media/characters/yumi-akiyama/front.svg",
  20306. extra: 1327 / 1235,
  20307. bottom: 0.02
  20308. }
  20309. },
  20310. back: {
  20311. height: math.unit(4 + 11 / 12, "feet"),
  20312. weight: math.unit(120, "lb"),
  20313. name: "Back",
  20314. image: {
  20315. source: "./media/characters/yumi-akiyama/back.svg",
  20316. extra: 1287 / 1245,
  20317. bottom: 0.002
  20318. }
  20319. },
  20320. },
  20321. [
  20322. {
  20323. name: "Galactic",
  20324. height: math.unit(50, "galaxies"),
  20325. default: true
  20326. },
  20327. {
  20328. name: "Universal",
  20329. height: math.unit(100, "universes")
  20330. },
  20331. ]
  20332. ))
  20333. characterMakers.push(() => makeCharacter(
  20334. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20335. {
  20336. front: {
  20337. height: math.unit(8, "feet"),
  20338. weight: math.unit(500, "lb"),
  20339. name: "Front",
  20340. image: {
  20341. source: "./media/characters/rifter-yrmori/front.svg",
  20342. extra: 1180 / 1125,
  20343. bottom: 0.02
  20344. }
  20345. },
  20346. back: {
  20347. height: math.unit(8, "feet"),
  20348. weight: math.unit(500, "lb"),
  20349. name: "Back",
  20350. image: {
  20351. source: "./media/characters/rifter-yrmori/back.svg",
  20352. extra: 1190 / 1145,
  20353. bottom: 0.001
  20354. }
  20355. },
  20356. wings: {
  20357. height: math.unit(7.75, "feet"),
  20358. weight: math.unit(500, "lb"),
  20359. name: "Wings",
  20360. image: {
  20361. source: "./media/characters/rifter-yrmori/wings.svg",
  20362. extra: 1357 / 1285
  20363. }
  20364. },
  20365. maw: {
  20366. height: math.unit(0.8, "feet"),
  20367. name: "Maw",
  20368. image: {
  20369. source: "./media/characters/rifter-yrmori/maw.svg"
  20370. }
  20371. },
  20372. mawfront: {
  20373. height: math.unit(1.45, "feet"),
  20374. name: "Maw (Front)",
  20375. image: {
  20376. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20377. }
  20378. },
  20379. },
  20380. [
  20381. {
  20382. name: "Normal",
  20383. height: math.unit(8, "feet"),
  20384. default: true
  20385. },
  20386. {
  20387. name: "Macro",
  20388. height: math.unit(42, "meters")
  20389. },
  20390. ]
  20391. ))
  20392. characterMakers.push(() => makeCharacter(
  20393. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20394. {
  20395. were: {
  20396. height: math.unit(25 + 6 / 12, "feet"),
  20397. weight: math.unit(10000, "lb"),
  20398. name: "Were",
  20399. image: {
  20400. source: "./media/characters/tahajin/were.svg",
  20401. extra: 801 / 770,
  20402. bottom: 0.042
  20403. }
  20404. },
  20405. aquatic: {
  20406. height: math.unit(6 + 4 / 12, "feet"),
  20407. weight: math.unit(160, "lb"),
  20408. name: "Aquatic",
  20409. image: {
  20410. source: "./media/characters/tahajin/aquatic.svg",
  20411. extra: 572 / 542,
  20412. bottom: 0.04
  20413. }
  20414. },
  20415. chow: {
  20416. height: math.unit(8 + 11 / 12, "feet"),
  20417. weight: math.unit(450, "lb"),
  20418. name: "Chow",
  20419. image: {
  20420. source: "./media/characters/tahajin/chow.svg",
  20421. extra: 660 / 640,
  20422. bottom: 0.015
  20423. }
  20424. },
  20425. demiNaga: {
  20426. height: math.unit(6 + 8 / 12, "feet"),
  20427. weight: math.unit(300, "lb"),
  20428. name: "Demi Naga",
  20429. image: {
  20430. source: "./media/characters/tahajin/demi-naga.svg",
  20431. extra: 643 / 615,
  20432. bottom: 0.1
  20433. }
  20434. },
  20435. data: {
  20436. height: math.unit(5, "inches"),
  20437. weight: math.unit(0.1, "lb"),
  20438. name: "Data",
  20439. image: {
  20440. source: "./media/characters/tahajin/data.svg"
  20441. }
  20442. },
  20443. fluu: {
  20444. height: math.unit(5 + 7 / 12, "feet"),
  20445. weight: math.unit(140, "lb"),
  20446. name: "Fluu",
  20447. image: {
  20448. source: "./media/characters/tahajin/fluu.svg",
  20449. extra: 628 / 592,
  20450. bottom: 0.02
  20451. }
  20452. },
  20453. starWarrior: {
  20454. height: math.unit(4 + 5 / 12, "feet"),
  20455. weight: math.unit(50, "lb"),
  20456. name: "Star Warrior",
  20457. image: {
  20458. source: "./media/characters/tahajin/star-warrior.svg"
  20459. }
  20460. },
  20461. },
  20462. [
  20463. {
  20464. name: "Normal",
  20465. height: math.unit(25 + 6 / 12, "feet"),
  20466. default: true
  20467. },
  20468. ]
  20469. ))
  20470. characterMakers.push(() => makeCharacter(
  20471. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20472. {
  20473. front: {
  20474. height: math.unit(8, "feet"),
  20475. weight: math.unit(350, "lb"),
  20476. name: "Front",
  20477. image: {
  20478. source: "./media/characters/gabira/front.svg",
  20479. extra: 608 / 580,
  20480. bottom: 0.03
  20481. }
  20482. },
  20483. back: {
  20484. height: math.unit(8, "feet"),
  20485. weight: math.unit(350, "lb"),
  20486. name: "Back",
  20487. image: {
  20488. source: "./media/characters/gabira/back.svg",
  20489. extra: 608 / 580,
  20490. bottom: 0.03
  20491. }
  20492. },
  20493. },
  20494. [
  20495. {
  20496. name: "Normal",
  20497. height: math.unit(8, "feet"),
  20498. default: true
  20499. },
  20500. ]
  20501. ))
  20502. characterMakers.push(() => makeCharacter(
  20503. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20504. {
  20505. front: {
  20506. height: math.unit(5 + 3 / 12, "feet"),
  20507. weight: math.unit(137, "lb"),
  20508. name: "Front",
  20509. image: {
  20510. source: "./media/characters/sasha-katraine/front.svg",
  20511. bottom: 0.045
  20512. }
  20513. },
  20514. },
  20515. [
  20516. {
  20517. name: "Micro",
  20518. height: math.unit(5, "inches")
  20519. },
  20520. {
  20521. name: "Normal",
  20522. height: math.unit(5 + 3 / 12, "feet"),
  20523. default: true
  20524. },
  20525. ]
  20526. ))
  20527. characterMakers.push(() => makeCharacter(
  20528. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20529. {
  20530. side: {
  20531. height: math.unit(4, "inches"),
  20532. weight: math.unit(200, "grams"),
  20533. name: "Side",
  20534. image: {
  20535. source: "./media/characters/der/side.svg",
  20536. extra: 719 / 400,
  20537. bottom: 30.6 / 749.9187
  20538. }
  20539. },
  20540. },
  20541. [
  20542. {
  20543. name: "Micro",
  20544. height: math.unit(4, "inches"),
  20545. default: true
  20546. },
  20547. ]
  20548. ))
  20549. characterMakers.push(() => makeCharacter(
  20550. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20551. {
  20552. side: {
  20553. height: math.unit(30, "meters"),
  20554. weight: math.unit(700, "tonnes"),
  20555. name: "Side",
  20556. image: {
  20557. source: "./media/characters/fixerdragon/side.svg",
  20558. extra: (1293.0514 - 116.03) / 1106.86,
  20559. bottom: 116.03 / 1293.0514
  20560. }
  20561. },
  20562. },
  20563. [
  20564. {
  20565. name: "Planck",
  20566. height: math.unit(1.6e-35, "meters")
  20567. },
  20568. {
  20569. name: "Micro",
  20570. height: math.unit(0.4, "meters")
  20571. },
  20572. {
  20573. name: "Normal",
  20574. height: math.unit(30, "meters"),
  20575. default: true
  20576. },
  20577. {
  20578. name: "Megamacro",
  20579. height: math.unit(1.2, "megameters")
  20580. },
  20581. {
  20582. name: "Teramacro",
  20583. height: math.unit(130, "terameters")
  20584. },
  20585. {
  20586. name: "Yottamacro",
  20587. height: math.unit(6200, "yottameters")
  20588. },
  20589. ]
  20590. ));
  20591. characterMakers.push(() => makeCharacter(
  20592. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20593. {
  20594. front: {
  20595. height: math.unit(8, "feet"),
  20596. weight: math.unit(250, "lb"),
  20597. name: "Front",
  20598. image: {
  20599. source: "./media/characters/kite/front.svg",
  20600. extra: 2796 / 2659,
  20601. bottom: 0.002
  20602. }
  20603. },
  20604. },
  20605. [
  20606. {
  20607. name: "Normal",
  20608. height: math.unit(8, "feet"),
  20609. default: true
  20610. },
  20611. {
  20612. name: "Macro",
  20613. height: math.unit(360, "feet")
  20614. },
  20615. {
  20616. name: "Megamacro",
  20617. height: math.unit(1500, "feet")
  20618. },
  20619. ]
  20620. ))
  20621. characterMakers.push(() => makeCharacter(
  20622. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20623. {
  20624. front: {
  20625. height: math.unit(5 + 10 / 12, "feet"),
  20626. weight: math.unit(150, "lb"),
  20627. name: "Front",
  20628. image: {
  20629. source: "./media/characters/poojawa-vynar/front.svg",
  20630. extra: (1506.1547 - 55) / 1356.6,
  20631. bottom: 55 / 1506.1547
  20632. }
  20633. },
  20634. frontTailless: {
  20635. height: math.unit(5 + 10 / 12, "feet"),
  20636. weight: math.unit(150, "lb"),
  20637. name: "Front (Tailless)",
  20638. image: {
  20639. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20640. extra: (1506.1547 - 55) / 1356.6,
  20641. bottom: 55 / 1506.1547
  20642. }
  20643. },
  20644. },
  20645. [
  20646. {
  20647. name: "Normal",
  20648. height: math.unit(5 + 10 / 12, "feet"),
  20649. default: true
  20650. },
  20651. ]
  20652. ))
  20653. characterMakers.push(() => makeCharacter(
  20654. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20655. {
  20656. front: {
  20657. height: math.unit(293, "meters"),
  20658. weight: math.unit(70400, "tons"),
  20659. name: "Front",
  20660. image: {
  20661. source: "./media/characters/violette/front.svg",
  20662. extra: 1227 / 1180,
  20663. bottom: 0.005
  20664. }
  20665. },
  20666. back: {
  20667. height: math.unit(293, "meters"),
  20668. weight: math.unit(70400, "tons"),
  20669. name: "Back",
  20670. image: {
  20671. source: "./media/characters/violette/back.svg",
  20672. extra: 1227 / 1180,
  20673. bottom: 0.005
  20674. }
  20675. },
  20676. },
  20677. [
  20678. {
  20679. name: "Macro",
  20680. height: math.unit(293, "meters"),
  20681. default: true
  20682. },
  20683. ]
  20684. ))
  20685. characterMakers.push(() => makeCharacter(
  20686. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20687. {
  20688. front: {
  20689. height: math.unit(1050, "feet"),
  20690. weight: math.unit(200000, "tons"),
  20691. name: "Front",
  20692. image: {
  20693. source: "./media/characters/alessandra/front.svg",
  20694. extra: 960 / 912,
  20695. bottom: 0.06
  20696. }
  20697. },
  20698. },
  20699. [
  20700. {
  20701. name: "Macro",
  20702. height: math.unit(1050, "feet")
  20703. },
  20704. {
  20705. name: "Macro+",
  20706. height: math.unit(900, "meters"),
  20707. default: true
  20708. },
  20709. ]
  20710. ))
  20711. characterMakers.push(() => makeCharacter(
  20712. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20713. {
  20714. front: {
  20715. height: math.unit(5, "feet"),
  20716. weight: math.unit(187, "lb"),
  20717. name: "Front",
  20718. image: {
  20719. source: "./media/characters/person/front.svg",
  20720. extra: 3087 / 2945,
  20721. bottom: 91 / 3181
  20722. }
  20723. },
  20724. },
  20725. [
  20726. {
  20727. name: "Micro",
  20728. height: math.unit(3, "inches")
  20729. },
  20730. {
  20731. name: "Normal",
  20732. height: math.unit(5, "feet"),
  20733. default: true
  20734. },
  20735. {
  20736. name: "Macro",
  20737. height: math.unit(90, "feet")
  20738. },
  20739. {
  20740. name: "Max Size",
  20741. height: math.unit(280, "feet")
  20742. },
  20743. ]
  20744. ))
  20745. characterMakers.push(() => makeCharacter(
  20746. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20747. {
  20748. front: {
  20749. height: math.unit(4.5, "meters"),
  20750. weight: math.unit(3200, "lb"),
  20751. name: "Front",
  20752. image: {
  20753. source: "./media/characters/ty/front.svg",
  20754. extra: 1038 / 960,
  20755. bottom: 31.156 / 1068
  20756. }
  20757. },
  20758. back: {
  20759. height: math.unit(4.5, "meters"),
  20760. weight: math.unit(3200, "lb"),
  20761. name: "Back",
  20762. image: {
  20763. source: "./media/characters/ty/back.svg",
  20764. extra: 1044 / 966,
  20765. bottom: 7.48 / 1049
  20766. }
  20767. },
  20768. },
  20769. [
  20770. {
  20771. name: "Normal",
  20772. height: math.unit(4.5, "meters"),
  20773. default: true
  20774. },
  20775. ]
  20776. ))
  20777. characterMakers.push(() => makeCharacter(
  20778. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20779. {
  20780. front: {
  20781. height: math.unit(5 + 4 / 12, "feet"),
  20782. weight: math.unit(115, "lb"),
  20783. name: "Front",
  20784. image: {
  20785. source: "./media/characters/rocky/front.svg",
  20786. extra: 1012 / 975,
  20787. bottom: 54 / 1066
  20788. }
  20789. },
  20790. },
  20791. [
  20792. {
  20793. name: "Normal",
  20794. height: math.unit(5 + 4 / 12, "feet"),
  20795. default: true
  20796. },
  20797. ]
  20798. ))
  20799. characterMakers.push(() => makeCharacter(
  20800. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20801. {
  20802. upright: {
  20803. height: math.unit(6, "meters"),
  20804. weight: math.unit(4000, "kg"),
  20805. name: "Upright",
  20806. image: {
  20807. source: "./media/characters/ruin/upright.svg",
  20808. extra: 668 / 661,
  20809. bottom: 42 / 799.8396
  20810. }
  20811. },
  20812. },
  20813. [
  20814. {
  20815. name: "Normal",
  20816. height: math.unit(6, "meters"),
  20817. default: true
  20818. },
  20819. ]
  20820. ))
  20821. characterMakers.push(() => makeCharacter(
  20822. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20823. {
  20824. front: {
  20825. height: math.unit(5, "feet"),
  20826. weight: math.unit(106, "lb"),
  20827. name: "Front",
  20828. image: {
  20829. source: "./media/characters/robin/front.svg",
  20830. extra: 862 / 799,
  20831. bottom: 42.4 / 914.8856
  20832. }
  20833. },
  20834. },
  20835. [
  20836. {
  20837. name: "Normal",
  20838. height: math.unit(5, "feet"),
  20839. default: true
  20840. },
  20841. ]
  20842. ))
  20843. characterMakers.push(() => makeCharacter(
  20844. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20845. {
  20846. side: {
  20847. height: math.unit(3, "feet"),
  20848. weight: math.unit(225, "lb"),
  20849. name: "Side",
  20850. image: {
  20851. source: "./media/characters/saian/side.svg",
  20852. extra: 566 / 356,
  20853. bottom: 79.7 / 643
  20854. }
  20855. },
  20856. maw: {
  20857. height: math.unit(2.85, "feet"),
  20858. name: "Maw",
  20859. image: {
  20860. source: "./media/characters/saian/maw.svg"
  20861. }
  20862. },
  20863. },
  20864. [
  20865. {
  20866. name: "Normal",
  20867. height: math.unit(3, "feet"),
  20868. default: true
  20869. },
  20870. ]
  20871. ))
  20872. characterMakers.push(() => makeCharacter(
  20873. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20874. {
  20875. side: {
  20876. height: math.unit(8, "feet"),
  20877. weight: math.unit(300, "lb"),
  20878. name: "Side",
  20879. image: {
  20880. source: "./media/characters/equus-silvermane/side.svg",
  20881. extra: 2176 / 2050,
  20882. bottom: 65.7 / 2245
  20883. }
  20884. },
  20885. front: {
  20886. height: math.unit(8, "feet"),
  20887. weight: math.unit(300, "lb"),
  20888. name: "Front",
  20889. image: {
  20890. source: "./media/characters/equus-silvermane/front.svg",
  20891. extra: 4633 / 4400,
  20892. bottom: 71.3 / 4706.915
  20893. }
  20894. },
  20895. sideStepping: {
  20896. height: math.unit(8, "feet"),
  20897. weight: math.unit(300, "lb"),
  20898. name: "Side (Stepping)",
  20899. image: {
  20900. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20901. extra: 1968 / 1860,
  20902. bottom: 16.4 / 1989
  20903. }
  20904. },
  20905. },
  20906. [
  20907. {
  20908. name: "Normal",
  20909. height: math.unit(8, "feet")
  20910. },
  20911. {
  20912. name: "Minimacro",
  20913. height: math.unit(75, "feet"),
  20914. default: true
  20915. },
  20916. {
  20917. name: "Macro",
  20918. height: math.unit(150, "feet")
  20919. },
  20920. {
  20921. name: "Macro+",
  20922. height: math.unit(1000, "feet")
  20923. },
  20924. {
  20925. name: "Megamacro",
  20926. height: math.unit(1, "mile")
  20927. },
  20928. ]
  20929. ))
  20930. characterMakers.push(() => makeCharacter(
  20931. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20932. {
  20933. side: {
  20934. height: math.unit(20, "feet"),
  20935. weight: math.unit(30000, "kg"),
  20936. name: "Side",
  20937. image: {
  20938. source: "./media/characters/windar/side.svg",
  20939. extra: 1491 / 1248,
  20940. bottom: 82.56 / 1568
  20941. }
  20942. },
  20943. },
  20944. [
  20945. {
  20946. name: "Normal",
  20947. height: math.unit(20, "feet"),
  20948. default: true
  20949. },
  20950. ]
  20951. ))
  20952. characterMakers.push(() => makeCharacter(
  20953. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20954. {
  20955. side: {
  20956. height: math.unit(15.66, "feet"),
  20957. weight: math.unit(150, "lb"),
  20958. name: "Side",
  20959. image: {
  20960. source: "./media/characters/melody/side.svg",
  20961. extra: 1097 / 944,
  20962. bottom: 11.8 / 1109
  20963. }
  20964. },
  20965. sideOutfit: {
  20966. height: math.unit(15.66, "feet"),
  20967. weight: math.unit(150, "lb"),
  20968. name: "Side (Outfit)",
  20969. image: {
  20970. source: "./media/characters/melody/side-outfit.svg",
  20971. extra: 1097 / 944,
  20972. bottom: 11.8 / 1109
  20973. }
  20974. },
  20975. },
  20976. [
  20977. {
  20978. name: "Normal",
  20979. height: math.unit(15.66, "feet"),
  20980. default: true
  20981. },
  20982. ]
  20983. ))
  20984. characterMakers.push(() => makeCharacter(
  20985. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20986. {
  20987. front: {
  20988. height: math.unit(8, "feet"),
  20989. weight: math.unit(325, "lb"),
  20990. name: "Front",
  20991. image: {
  20992. source: "./media/characters/windera/front.svg",
  20993. extra: 3180 / 2845,
  20994. bottom: 178 / 3365
  20995. }
  20996. },
  20997. },
  20998. [
  20999. {
  21000. name: "Normal",
  21001. height: math.unit(8, "feet"),
  21002. default: true
  21003. },
  21004. ]
  21005. ))
  21006. characterMakers.push(() => makeCharacter(
  21007. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21008. {
  21009. front: {
  21010. height: math.unit(28.75, "feet"),
  21011. weight: math.unit(2000, "kg"),
  21012. name: "Front",
  21013. image: {
  21014. source: "./media/characters/sonear/front.svg",
  21015. extra: 1041.1 / 964.9,
  21016. bottom: 53.7 / 1096.6
  21017. }
  21018. },
  21019. },
  21020. [
  21021. {
  21022. name: "Normal",
  21023. height: math.unit(28.75, "feet"),
  21024. default: true
  21025. },
  21026. ]
  21027. ))
  21028. characterMakers.push(() => makeCharacter(
  21029. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21030. {
  21031. side: {
  21032. height: math.unit(25.5, "feet"),
  21033. weight: math.unit(23000, "kg"),
  21034. name: "Side",
  21035. image: {
  21036. source: "./media/characters/kanara/side.svg"
  21037. }
  21038. },
  21039. },
  21040. [
  21041. {
  21042. name: "Normal",
  21043. height: math.unit(25.5, "feet"),
  21044. default: true
  21045. },
  21046. ]
  21047. ))
  21048. characterMakers.push(() => makeCharacter(
  21049. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21050. {
  21051. side: {
  21052. height: math.unit(10, "feet"),
  21053. weight: math.unit(1000, "kg"),
  21054. name: "Side",
  21055. image: {
  21056. source: "./media/characters/ereus/side.svg",
  21057. extra: 1157 / 959,
  21058. bottom: 153 / 1312.5
  21059. }
  21060. },
  21061. },
  21062. [
  21063. {
  21064. name: "Normal",
  21065. height: math.unit(10, "feet"),
  21066. default: true
  21067. },
  21068. ]
  21069. ))
  21070. characterMakers.push(() => makeCharacter(
  21071. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21072. {
  21073. side: {
  21074. height: math.unit(4.5, "feet"),
  21075. weight: math.unit(500, "lb"),
  21076. name: "Side",
  21077. image: {
  21078. source: "./media/characters/e-ter/side.svg",
  21079. extra: 1550 / 1248,
  21080. bottom: 146 / 1694
  21081. }
  21082. },
  21083. },
  21084. [
  21085. {
  21086. name: "Normal",
  21087. height: math.unit(4.5, "feet"),
  21088. default: true
  21089. },
  21090. ]
  21091. ))
  21092. characterMakers.push(() => makeCharacter(
  21093. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21094. {
  21095. side: {
  21096. height: math.unit(9.7, "feet"),
  21097. weight: math.unit(4000, "kg"),
  21098. name: "Side",
  21099. image: {
  21100. source: "./media/characters/yamie/side.svg"
  21101. }
  21102. },
  21103. },
  21104. [
  21105. {
  21106. name: "Normal",
  21107. height: math.unit(9.7, "feet"),
  21108. default: true
  21109. },
  21110. ]
  21111. ))
  21112. characterMakers.push(() => makeCharacter(
  21113. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21114. {
  21115. front: {
  21116. height: math.unit(50, "feet"),
  21117. weight: math.unit(50000, "kg"),
  21118. name: "Front",
  21119. image: {
  21120. source: "./media/characters/anders/front.svg",
  21121. extra: 570 / 539,
  21122. bottom: 14.7 / 586.7
  21123. }
  21124. },
  21125. },
  21126. [
  21127. {
  21128. name: "Large",
  21129. height: math.unit(50, "feet")
  21130. },
  21131. {
  21132. name: "Macro",
  21133. height: math.unit(2000, "feet"),
  21134. default: true
  21135. },
  21136. {
  21137. name: "Megamacro",
  21138. height: math.unit(12, "miles")
  21139. },
  21140. ]
  21141. ))
  21142. characterMakers.push(() => makeCharacter(
  21143. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21144. {
  21145. front: {
  21146. height: math.unit(7 + 2 / 12, "feet"),
  21147. weight: math.unit(300, "lb"),
  21148. name: "Front",
  21149. image: {
  21150. source: "./media/characters/reban/front.svg",
  21151. extra: 516 / 487,
  21152. bottom: 42.82 / 558.356
  21153. }
  21154. },
  21155. dick: {
  21156. height: math.unit(7 / 5, "feet"),
  21157. name: "Dick",
  21158. image: {
  21159. source: "./media/characters/reban/dick.svg"
  21160. }
  21161. },
  21162. },
  21163. [
  21164. {
  21165. name: "Natural Height",
  21166. height: math.unit(7 + 2 / 12, "feet")
  21167. },
  21168. {
  21169. name: "Macro",
  21170. height: math.unit(500, "feet"),
  21171. default: true
  21172. },
  21173. {
  21174. name: "Canon Height",
  21175. height: math.unit(50, "AU")
  21176. },
  21177. ]
  21178. ))
  21179. characterMakers.push(() => makeCharacter(
  21180. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21181. {
  21182. front: {
  21183. height: math.unit(6, "feet"),
  21184. weight: math.unit(150, "lb"),
  21185. name: "Front",
  21186. image: {
  21187. source: "./media/characters/terrance-keayes/front.svg",
  21188. extra: 1.005,
  21189. bottom: 151 / 1615
  21190. }
  21191. },
  21192. side: {
  21193. height: math.unit(6, "feet"),
  21194. weight: math.unit(150, "lb"),
  21195. name: "Side",
  21196. image: {
  21197. source: "./media/characters/terrance-keayes/side.svg",
  21198. extra: 1.005,
  21199. bottom: 129.4 / 1544
  21200. }
  21201. },
  21202. back: {
  21203. height: math.unit(6, "feet"),
  21204. weight: math.unit(150, "lb"),
  21205. name: "Back",
  21206. image: {
  21207. source: "./media/characters/terrance-keayes/back.svg",
  21208. extra: 1.005,
  21209. bottom: 58.4 / 1557.3
  21210. }
  21211. },
  21212. dick: {
  21213. height: math.unit(6 * 0.208, "feet"),
  21214. name: "Dick",
  21215. image: {
  21216. source: "./media/characters/terrance-keayes/dick.svg"
  21217. }
  21218. },
  21219. },
  21220. [
  21221. {
  21222. name: "Canon Height",
  21223. height: math.unit(35, "miles"),
  21224. default: true
  21225. },
  21226. ]
  21227. ))
  21228. characterMakers.push(() => makeCharacter(
  21229. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21230. {
  21231. front: {
  21232. height: math.unit(6, "feet"),
  21233. weight: math.unit(150, "lb"),
  21234. name: "Front",
  21235. image: {
  21236. source: "./media/characters/ofelia/front.svg",
  21237. extra: 546 / 541,
  21238. bottom: 39 / 583
  21239. }
  21240. },
  21241. back: {
  21242. height: math.unit(6, "feet"),
  21243. weight: math.unit(150, "lb"),
  21244. name: "Back",
  21245. image: {
  21246. source: "./media/characters/ofelia/back.svg",
  21247. extra: 564 / 559.5,
  21248. bottom: 8.69 / 573.02
  21249. }
  21250. },
  21251. maw: {
  21252. height: math.unit(1, "feet"),
  21253. name: "Maw",
  21254. image: {
  21255. source: "./media/characters/ofelia/maw.svg"
  21256. }
  21257. },
  21258. foot: {
  21259. height: math.unit(1.949, "feet"),
  21260. name: "Foot",
  21261. image: {
  21262. source: "./media/characters/ofelia/foot.svg"
  21263. }
  21264. },
  21265. },
  21266. [
  21267. {
  21268. name: "Canon Height",
  21269. height: math.unit(2000, "miles"),
  21270. default: true
  21271. },
  21272. ]
  21273. ))
  21274. characterMakers.push(() => makeCharacter(
  21275. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21276. {
  21277. front: {
  21278. height: math.unit(6, "feet"),
  21279. weight: math.unit(150, "lb"),
  21280. name: "Front",
  21281. image: {
  21282. source: "./media/characters/samuel/front.svg",
  21283. extra: 265 / 258,
  21284. bottom: 2 / 266.1566
  21285. }
  21286. },
  21287. },
  21288. [
  21289. {
  21290. name: "Macro",
  21291. height: math.unit(100, "feet"),
  21292. default: true
  21293. },
  21294. {
  21295. name: "Full Size",
  21296. height: math.unit(1000, "miles")
  21297. },
  21298. ]
  21299. ))
  21300. characterMakers.push(() => makeCharacter(
  21301. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21302. {
  21303. front: {
  21304. height: math.unit(6, "feet"),
  21305. weight: math.unit(300, "lb"),
  21306. name: "Front",
  21307. image: {
  21308. source: "./media/characters/beishir-kiel/front.svg",
  21309. extra: 569 / 547,
  21310. bottom: 41.9 / 609
  21311. }
  21312. },
  21313. maw: {
  21314. height: math.unit(6 * 0.202, "feet"),
  21315. name: "Maw",
  21316. image: {
  21317. source: "./media/characters/beishir-kiel/maw.svg"
  21318. }
  21319. },
  21320. },
  21321. [
  21322. {
  21323. name: "Macro",
  21324. height: math.unit(300, "feet"),
  21325. default: true
  21326. },
  21327. ]
  21328. ))
  21329. characterMakers.push(() => makeCharacter(
  21330. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21331. {
  21332. front: {
  21333. height: math.unit(5 + 8 / 12, "feet"),
  21334. weight: math.unit(120, "lb"),
  21335. name: "Front",
  21336. image: {
  21337. source: "./media/characters/logan-grey/front.svg",
  21338. extra: 2539 / 2393,
  21339. bottom: 97.6 / 2636.37
  21340. }
  21341. },
  21342. frontAlt: {
  21343. height: math.unit(5 + 8 / 12, "feet"),
  21344. weight: math.unit(120, "lb"),
  21345. name: "Front (Alt)",
  21346. image: {
  21347. source: "./media/characters/logan-grey/front-alt.svg",
  21348. extra: 958 / 893,
  21349. bottom: 15 / 970.768
  21350. }
  21351. },
  21352. back: {
  21353. height: math.unit(5 + 8 / 12, "feet"),
  21354. weight: math.unit(120, "lb"),
  21355. name: "Back",
  21356. image: {
  21357. source: "./media/characters/logan-grey/back.svg",
  21358. extra: 958 / 893,
  21359. bottom: 2.1881 / 970.9788
  21360. }
  21361. },
  21362. dick: {
  21363. height: math.unit(1.437, "feet"),
  21364. name: "Dick",
  21365. image: {
  21366. source: "./media/characters/logan-grey/dick.svg"
  21367. }
  21368. },
  21369. },
  21370. [
  21371. {
  21372. name: "Normal",
  21373. height: math.unit(5 + 8 / 12, "feet")
  21374. },
  21375. {
  21376. name: "The 500 Foot Femboy",
  21377. height: math.unit(500, "feet"),
  21378. default: true
  21379. },
  21380. {
  21381. name: "Megmacro",
  21382. height: math.unit(20, "miles")
  21383. },
  21384. ]
  21385. ))
  21386. characterMakers.push(() => makeCharacter(
  21387. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21388. {
  21389. front: {
  21390. height: math.unit(8 + 2 / 12, "feet"),
  21391. weight: math.unit(275, "lb"),
  21392. name: "Front",
  21393. image: {
  21394. source: "./media/characters/draganta/front.svg",
  21395. extra: 1177 / 1135,
  21396. bottom: 33.46 / 1212.1
  21397. }
  21398. },
  21399. },
  21400. [
  21401. {
  21402. name: "Normal",
  21403. height: math.unit(8 + 6 / 12, "feet"),
  21404. default: true
  21405. },
  21406. {
  21407. name: "Macro",
  21408. height: math.unit(150, "feet")
  21409. },
  21410. {
  21411. name: "Megamacro",
  21412. height: math.unit(1000, "miles")
  21413. },
  21414. ]
  21415. ))
  21416. characterMakers.push(() => makeCharacter(
  21417. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21418. {
  21419. front: {
  21420. height: math.unit(1.72, "m"),
  21421. weight: math.unit(80, "lb"),
  21422. name: "Front",
  21423. image: {
  21424. source: "./media/characters/voski/front.svg",
  21425. extra: 2076.22 / 2022.4,
  21426. bottom: 102.7 / 2177.3866
  21427. }
  21428. },
  21429. frontNsfw: {
  21430. height: math.unit(1.72, "m"),
  21431. weight: math.unit(80, "lb"),
  21432. name: "Front (NSFW)",
  21433. image: {
  21434. source: "./media/characters/voski/front-nsfw.svg",
  21435. extra: 2076.22 / 2022.4,
  21436. bottom: 102.7 / 2177.3866
  21437. }
  21438. },
  21439. back: {
  21440. height: math.unit(1.72, "m"),
  21441. weight: math.unit(80, "lb"),
  21442. name: "Back",
  21443. image: {
  21444. source: "./media/characters/voski/back.svg",
  21445. extra: 2104 / 2051,
  21446. bottom: 10.45 / 2113.63
  21447. }
  21448. },
  21449. },
  21450. [
  21451. {
  21452. name: "Normal",
  21453. height: math.unit(1.72, "m")
  21454. },
  21455. {
  21456. name: "Macro",
  21457. height: math.unit(55, "m"),
  21458. default: true
  21459. },
  21460. {
  21461. name: "Macro+",
  21462. height: math.unit(300, "m")
  21463. },
  21464. {
  21465. name: "Macro++",
  21466. height: math.unit(700, "m")
  21467. },
  21468. {
  21469. name: "Macro+++",
  21470. height: math.unit(4500, "m")
  21471. },
  21472. {
  21473. name: "Macro++++",
  21474. height: math.unit(45, "km")
  21475. },
  21476. {
  21477. name: "Macro+++++",
  21478. height: math.unit(1220, "km")
  21479. },
  21480. ]
  21481. ))
  21482. characterMakers.push(() => makeCharacter(
  21483. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21484. {
  21485. front: {
  21486. height: math.unit(2.3, "m"),
  21487. weight: math.unit(304, "kg"),
  21488. name: "Front",
  21489. image: {
  21490. source: "./media/characters/icowom-lee/front.svg",
  21491. extra: 985 / 955,
  21492. bottom: 25.4 / 1012
  21493. }
  21494. },
  21495. fronttentacles: {
  21496. height: math.unit(2.3, "m"),
  21497. weight: math.unit(304, "kg"),
  21498. name: "Front-tentacles",
  21499. image: {
  21500. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21501. extra: 985 / 955,
  21502. bottom: 25.4 / 1012
  21503. }
  21504. },
  21505. back: {
  21506. height: math.unit(2.3, "m"),
  21507. weight: math.unit(304, "kg"),
  21508. name: "Back",
  21509. image: {
  21510. source: "./media/characters/icowom-lee/back.svg",
  21511. extra: 975 / 954,
  21512. bottom: 9.5 / 985
  21513. }
  21514. },
  21515. backtentacles: {
  21516. height: math.unit(2.3, "m"),
  21517. weight: math.unit(304, "kg"),
  21518. name: "Back-tentacles",
  21519. image: {
  21520. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21521. extra: 975 / 954,
  21522. bottom: 9.5 / 985
  21523. }
  21524. },
  21525. frontDressed: {
  21526. height: math.unit(2.3, "m"),
  21527. weight: math.unit(304, "kg"),
  21528. name: "Front (Dressed)",
  21529. image: {
  21530. source: "./media/characters/icowom-lee/front-dressed.svg",
  21531. extra: 3076 / 2933,
  21532. bottom: 51.4 / 3125.1889
  21533. }
  21534. },
  21535. rump: {
  21536. height: math.unit(0.776, "meters"),
  21537. name: "Rump",
  21538. image: {
  21539. source: "./media/characters/icowom-lee/rump.svg"
  21540. }
  21541. },
  21542. genitals: {
  21543. height: math.unit(0.78, "meters"),
  21544. name: "Genitals",
  21545. image: {
  21546. source: "./media/characters/icowom-lee/genitals.svg"
  21547. }
  21548. },
  21549. },
  21550. [
  21551. {
  21552. name: "Normal",
  21553. height: math.unit(2.3, "meters"),
  21554. default: true
  21555. },
  21556. {
  21557. name: "Macro",
  21558. height: math.unit(94, "meters"),
  21559. default: true
  21560. },
  21561. ]
  21562. ))
  21563. characterMakers.push(() => makeCharacter(
  21564. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21565. {
  21566. front: {
  21567. height: math.unit(22, "meters"),
  21568. weight: math.unit(21000, "kg"),
  21569. name: "Front",
  21570. image: {
  21571. source: "./media/characters/shock-diamond/front.svg",
  21572. extra: 2204 / 2053,
  21573. bottom: 65 / 2239.47
  21574. }
  21575. },
  21576. frontNude: {
  21577. height: math.unit(22, "meters"),
  21578. weight: math.unit(21000, "kg"),
  21579. name: "Front (Nude)",
  21580. image: {
  21581. source: "./media/characters/shock-diamond/front-nude.svg",
  21582. extra: 2514 / 2285,
  21583. bottom: 13 / 2527.56
  21584. }
  21585. },
  21586. },
  21587. [
  21588. {
  21589. name: "Normal",
  21590. height: math.unit(3, "meters")
  21591. },
  21592. {
  21593. name: "Macro",
  21594. height: math.unit(22, "meters"),
  21595. default: true
  21596. },
  21597. ]
  21598. ))
  21599. characterMakers.push(() => makeCharacter(
  21600. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21601. {
  21602. front: {
  21603. height: math.unit(5 + 4 / 12, "feet"),
  21604. weight: math.unit(120, "lb"),
  21605. name: "Front",
  21606. image: {
  21607. source: "./media/characters/rory/front.svg",
  21608. extra: 589 / 556,
  21609. bottom: 45.7 / 635.76
  21610. }
  21611. },
  21612. frontNude: {
  21613. height: math.unit(5 + 4 / 12, "feet"),
  21614. weight: math.unit(120, "lb"),
  21615. name: "Front (Nude)",
  21616. image: {
  21617. source: "./media/characters/rory/front-nude.svg",
  21618. extra: 589 / 556,
  21619. bottom: 45.7 / 635.76
  21620. }
  21621. },
  21622. side: {
  21623. height: math.unit(5 + 4 / 12, "feet"),
  21624. weight: math.unit(120, "lb"),
  21625. name: "Side",
  21626. image: {
  21627. source: "./media/characters/rory/side.svg",
  21628. extra: 597 / 564,
  21629. bottom: 55 / 653
  21630. }
  21631. },
  21632. back: {
  21633. height: math.unit(5 + 4 / 12, "feet"),
  21634. weight: math.unit(120, "lb"),
  21635. name: "Back",
  21636. image: {
  21637. source: "./media/characters/rory/back.svg",
  21638. extra: 620 / 585,
  21639. bottom: 8.86 / 630.43
  21640. }
  21641. },
  21642. dick: {
  21643. height: math.unit(0.86, "feet"),
  21644. name: "Dick",
  21645. image: {
  21646. source: "./media/characters/rory/dick.svg"
  21647. }
  21648. },
  21649. },
  21650. [
  21651. {
  21652. name: "Normal",
  21653. height: math.unit(5 + 4 / 12, "feet"),
  21654. default: true
  21655. },
  21656. {
  21657. name: "Macro",
  21658. height: math.unit(100, "feet")
  21659. },
  21660. {
  21661. name: "Macro+",
  21662. height: math.unit(140, "feet")
  21663. },
  21664. {
  21665. name: "Macro++",
  21666. height: math.unit(300, "feet")
  21667. },
  21668. ]
  21669. ))
  21670. characterMakers.push(() => makeCharacter(
  21671. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21672. {
  21673. front: {
  21674. height: math.unit(5 + 9 / 12, "feet"),
  21675. weight: math.unit(190, "lb"),
  21676. name: "Front",
  21677. image: {
  21678. source: "./media/characters/sprisk/front.svg",
  21679. extra: 1225 / 1180,
  21680. bottom: 42.7 / 1266.4
  21681. }
  21682. },
  21683. frontNsfw: {
  21684. height: math.unit(5 + 9 / 12, "feet"),
  21685. weight: math.unit(190, "lb"),
  21686. name: "Front (NSFW)",
  21687. image: {
  21688. source: "./media/characters/sprisk/front-nsfw.svg",
  21689. extra: 1225 / 1180,
  21690. bottom: 42.7 / 1266.4
  21691. }
  21692. },
  21693. back: {
  21694. height: math.unit(5 + 9 / 12, "feet"),
  21695. weight: math.unit(190, "lb"),
  21696. name: "Back",
  21697. image: {
  21698. source: "./media/characters/sprisk/back.svg",
  21699. extra: 1247 / 1200,
  21700. bottom: 5.6 / 1253.04
  21701. }
  21702. },
  21703. },
  21704. [
  21705. {
  21706. name: "Tiny",
  21707. height: math.unit(2, "inches")
  21708. },
  21709. {
  21710. name: "Normal",
  21711. height: math.unit(5 + 9 / 12, "feet"),
  21712. default: true
  21713. },
  21714. {
  21715. name: "Mini Macro",
  21716. height: math.unit(18, "feet")
  21717. },
  21718. {
  21719. name: "Macro",
  21720. height: math.unit(100, "feet")
  21721. },
  21722. {
  21723. name: "MACRO",
  21724. height: math.unit(50, "miles")
  21725. },
  21726. {
  21727. name: "M A C R O",
  21728. height: math.unit(300, "miles")
  21729. },
  21730. ]
  21731. ))
  21732. characterMakers.push(() => makeCharacter(
  21733. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21734. {
  21735. side: {
  21736. height: math.unit(15.6, "meters"),
  21737. weight: math.unit(700000, "kg"),
  21738. name: "Side",
  21739. image: {
  21740. source: "./media/characters/bunsen/side.svg",
  21741. extra: 1644 / 358
  21742. }
  21743. },
  21744. foot: {
  21745. height: math.unit(1.611 * 1644 / 358, "meter"),
  21746. name: "Foot",
  21747. image: {
  21748. source: "./media/characters/bunsen/foot.svg"
  21749. }
  21750. },
  21751. },
  21752. [
  21753. {
  21754. name: "Small",
  21755. height: math.unit(10, "feet")
  21756. },
  21757. {
  21758. name: "Normal",
  21759. height: math.unit(15.6, "meters"),
  21760. default: true
  21761. },
  21762. ]
  21763. ))
  21764. characterMakers.push(() => makeCharacter(
  21765. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21766. {
  21767. front: {
  21768. height: math.unit(4 + 11 / 12, "feet"),
  21769. weight: math.unit(140, "lb"),
  21770. name: "Front",
  21771. image: {
  21772. source: "./media/characters/sesh/front.svg",
  21773. extra: 3420 / 3231,
  21774. bottom: 72 / 3949.5
  21775. }
  21776. },
  21777. },
  21778. [
  21779. {
  21780. name: "Normal",
  21781. height: math.unit(4 + 11 / 12, "feet")
  21782. },
  21783. {
  21784. name: "Grown",
  21785. height: math.unit(15, "feet"),
  21786. default: true
  21787. },
  21788. {
  21789. name: "Macro",
  21790. height: math.unit(1500, "feet")
  21791. },
  21792. {
  21793. name: "Megamacro",
  21794. height: math.unit(30, "miles")
  21795. },
  21796. {
  21797. name: "Continental",
  21798. height: math.unit(3000, "miles")
  21799. },
  21800. {
  21801. name: "Gravity Mass",
  21802. height: math.unit(300000, "miles")
  21803. },
  21804. {
  21805. name: "Planet Buster",
  21806. height: math.unit(30000000, "miles")
  21807. },
  21808. {
  21809. name: "Big",
  21810. height: math.unit(3000000000, "miles")
  21811. },
  21812. ]
  21813. ))
  21814. characterMakers.push(() => makeCharacter(
  21815. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21816. {
  21817. front: {
  21818. height: math.unit(9, "feet"),
  21819. weight: math.unit(350, "lb"),
  21820. name: "Front",
  21821. image: {
  21822. source: "./media/characters/pepper/front.svg",
  21823. extra: 1448 / 1312,
  21824. bottom: 9.4 / 1457.88
  21825. }
  21826. },
  21827. back: {
  21828. height: math.unit(9, "feet"),
  21829. weight: math.unit(350, "lb"),
  21830. name: "Back",
  21831. image: {
  21832. source: "./media/characters/pepper/back.svg",
  21833. extra: 1423 / 1300,
  21834. bottom: 4.6 / 1429
  21835. }
  21836. },
  21837. maw: {
  21838. height: math.unit(0.932, "feet"),
  21839. name: "Maw",
  21840. image: {
  21841. source: "./media/characters/pepper/maw.svg"
  21842. }
  21843. },
  21844. },
  21845. [
  21846. {
  21847. name: "Normal",
  21848. height: math.unit(9, "feet"),
  21849. default: true
  21850. },
  21851. ]
  21852. ))
  21853. characterMakers.push(() => makeCharacter(
  21854. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21855. {
  21856. front: {
  21857. height: math.unit(6, "feet"),
  21858. weight: math.unit(150, "lb"),
  21859. name: "Front",
  21860. image: {
  21861. source: "./media/characters/maelstrom/front.svg",
  21862. extra: 2100 / 1883,
  21863. bottom: 94 / 2196.7
  21864. }
  21865. },
  21866. },
  21867. [
  21868. {
  21869. name: "Less Kaiju",
  21870. height: math.unit(200, "feet")
  21871. },
  21872. {
  21873. name: "Kaiju",
  21874. height: math.unit(400, "feet"),
  21875. default: true
  21876. },
  21877. {
  21878. name: "Kaiju-er",
  21879. height: math.unit(600, "feet")
  21880. },
  21881. ]
  21882. ))
  21883. characterMakers.push(() => makeCharacter(
  21884. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21885. {
  21886. front: {
  21887. height: math.unit(6 + 5 / 12, "feet"),
  21888. weight: math.unit(180, "lb"),
  21889. name: "Front",
  21890. image: {
  21891. source: "./media/characters/lexir/front.svg",
  21892. extra: 180 / 172,
  21893. bottom: 12 / 192
  21894. }
  21895. },
  21896. back: {
  21897. height: math.unit(6 + 5 / 12, "feet"),
  21898. weight: math.unit(180, "lb"),
  21899. name: "Back",
  21900. image: {
  21901. source: "./media/characters/lexir/back.svg",
  21902. extra: 183.84 / 175.5,
  21903. bottom: 3.1 / 187
  21904. }
  21905. },
  21906. },
  21907. [
  21908. {
  21909. name: "Very Smal",
  21910. height: math.unit(1, "nm")
  21911. },
  21912. {
  21913. name: "Normal",
  21914. height: math.unit(6 + 5 / 12, "feet"),
  21915. default: true
  21916. },
  21917. {
  21918. name: "Macro",
  21919. height: math.unit(1, "mile")
  21920. },
  21921. {
  21922. name: "Megamacro",
  21923. height: math.unit(50, "miles")
  21924. },
  21925. ]
  21926. ))
  21927. characterMakers.push(() => makeCharacter(
  21928. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21929. {
  21930. front: {
  21931. height: math.unit(1.5, "meters"),
  21932. weight: math.unit(100, "lb"),
  21933. name: "Front",
  21934. image: {
  21935. source: "./media/characters/maksio/front.svg",
  21936. extra: 1549 / 1531,
  21937. bottom: 123.7 / 1674.5429
  21938. }
  21939. },
  21940. back: {
  21941. height: math.unit(1.5, "meters"),
  21942. weight: math.unit(100, "lb"),
  21943. name: "Back",
  21944. image: {
  21945. source: "./media/characters/maksio/back.svg",
  21946. extra: 1541 / 1509,
  21947. bottom: 97 / 1639
  21948. }
  21949. },
  21950. hand: {
  21951. height: math.unit(0.621, "feet"),
  21952. name: "Hand",
  21953. image: {
  21954. source: "./media/characters/maksio/hand.svg"
  21955. }
  21956. },
  21957. foot: {
  21958. height: math.unit(1.611, "feet"),
  21959. name: "Foot",
  21960. image: {
  21961. source: "./media/characters/maksio/foot.svg"
  21962. }
  21963. },
  21964. },
  21965. [
  21966. {
  21967. name: "Shrunken",
  21968. height: math.unit(10, "cm")
  21969. },
  21970. {
  21971. name: "Normal",
  21972. height: math.unit(150, "cm"),
  21973. default: true
  21974. },
  21975. ]
  21976. ))
  21977. characterMakers.push(() => makeCharacter(
  21978. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21979. {
  21980. front: {
  21981. height: math.unit(100, "feet"),
  21982. name: "Front",
  21983. image: {
  21984. source: "./media/characters/erza-bear/front.svg",
  21985. extra: 2449 / 2390,
  21986. bottom: 46 / 2494
  21987. }
  21988. },
  21989. back: {
  21990. height: math.unit(100, "feet"),
  21991. name: "Back",
  21992. image: {
  21993. source: "./media/characters/erza-bear/back.svg",
  21994. extra: 2489 / 2430,
  21995. bottom: 85.4 / 2480
  21996. }
  21997. },
  21998. tail: {
  21999. height: math.unit(42, "feet"),
  22000. name: "Tail",
  22001. image: {
  22002. source: "./media/characters/erza-bear/tail.svg"
  22003. }
  22004. },
  22005. tongue: {
  22006. height: math.unit(8, "feet"),
  22007. name: "Tongue",
  22008. image: {
  22009. source: "./media/characters/erza-bear/tongue.svg"
  22010. }
  22011. },
  22012. dick: {
  22013. height: math.unit(10.5, "feet"),
  22014. name: "Dick",
  22015. image: {
  22016. source: "./media/characters/erza-bear/dick.svg"
  22017. }
  22018. },
  22019. dickVertical: {
  22020. height: math.unit(16.9, "feet"),
  22021. name: "Dick (Vertical)",
  22022. image: {
  22023. source: "./media/characters/erza-bear/dick-vertical.svg"
  22024. }
  22025. },
  22026. },
  22027. [
  22028. {
  22029. name: "Macro",
  22030. height: math.unit(100, "feet"),
  22031. default: true
  22032. },
  22033. ]
  22034. ))
  22035. characterMakers.push(() => makeCharacter(
  22036. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22037. {
  22038. front: {
  22039. height: math.unit(172, "cm"),
  22040. weight: math.unit(73, "kg"),
  22041. name: "Front",
  22042. image: {
  22043. source: "./media/characters/violet-flor/front.svg",
  22044. extra: 1530 / 1442,
  22045. bottom: 61.9 / 1588.8
  22046. }
  22047. },
  22048. back: {
  22049. height: math.unit(180, "cm"),
  22050. weight: math.unit(73, "kg"),
  22051. name: "Back",
  22052. image: {
  22053. source: "./media/characters/violet-flor/back.svg",
  22054. extra: 1692 / 1630,
  22055. bottom: 20 / 1712
  22056. }
  22057. },
  22058. },
  22059. [
  22060. {
  22061. name: "Normal",
  22062. height: math.unit(172, "cm"),
  22063. default: true
  22064. },
  22065. ]
  22066. ))
  22067. characterMakers.push(() => makeCharacter(
  22068. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22069. {
  22070. front: {
  22071. height: math.unit(6, "feet"),
  22072. weight: math.unit(220, "lb"),
  22073. name: "Front",
  22074. image: {
  22075. source: "./media/characters/lynn-rhea/front.svg",
  22076. extra: 310 / 273
  22077. }
  22078. },
  22079. back: {
  22080. height: math.unit(6, "feet"),
  22081. weight: math.unit(220, "lb"),
  22082. name: "Back",
  22083. image: {
  22084. source: "./media/characters/lynn-rhea/back.svg",
  22085. extra: 310 / 273
  22086. }
  22087. },
  22088. dicks: {
  22089. height: math.unit(0.9, "feet"),
  22090. name: "Dicks",
  22091. image: {
  22092. source: "./media/characters/lynn-rhea/dicks.svg"
  22093. }
  22094. },
  22095. slit: {
  22096. height: math.unit(0.4, "feet"),
  22097. name: "Slit",
  22098. image: {
  22099. source: "./media/characters/lynn-rhea/slit.svg"
  22100. }
  22101. },
  22102. },
  22103. [
  22104. {
  22105. name: "Micro",
  22106. height: math.unit(1, "inch")
  22107. },
  22108. {
  22109. name: "Macro",
  22110. height: math.unit(60, "feet"),
  22111. default: true
  22112. },
  22113. {
  22114. name: "Megamacro",
  22115. height: math.unit(2, "miles")
  22116. },
  22117. {
  22118. name: "Gigamacro",
  22119. height: math.unit(3, "earths")
  22120. },
  22121. {
  22122. name: "Galactic",
  22123. height: math.unit(0.8, "galaxies")
  22124. },
  22125. ]
  22126. ))
  22127. characterMakers.push(() => makeCharacter(
  22128. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22129. {
  22130. front: {
  22131. height: math.unit(1600, "feet"),
  22132. weight: math.unit(85758785169, "kg"),
  22133. name: "Front",
  22134. image: {
  22135. source: "./media/characters/valathos/front.svg",
  22136. extra: 1451 / 1339
  22137. }
  22138. },
  22139. },
  22140. [
  22141. {
  22142. name: "Macro",
  22143. height: math.unit(1600, "feet"),
  22144. default: true
  22145. },
  22146. ]
  22147. ))
  22148. characterMakers.push(() => makeCharacter(
  22149. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22150. {
  22151. front: {
  22152. height: math.unit(7 + 5 / 12, "feet"),
  22153. weight: math.unit(300, "lb"),
  22154. name: "Front",
  22155. image: {
  22156. source: "./media/characters/azula/front.svg",
  22157. extra: 3208 / 2880,
  22158. bottom: 80.2 / 3277
  22159. }
  22160. },
  22161. back: {
  22162. height: math.unit(7 + 5 / 12, "feet"),
  22163. weight: math.unit(300, "lb"),
  22164. name: "Back",
  22165. image: {
  22166. source: "./media/characters/azula/back.svg",
  22167. extra: 3169 / 2822,
  22168. bottom: 150.6 / 3321
  22169. }
  22170. },
  22171. },
  22172. [
  22173. {
  22174. name: "Normal",
  22175. height: math.unit(7 + 5 / 12, "feet"),
  22176. default: true
  22177. },
  22178. {
  22179. name: "Big",
  22180. height: math.unit(20, "feet")
  22181. },
  22182. ]
  22183. ))
  22184. characterMakers.push(() => makeCharacter(
  22185. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22186. {
  22187. front: {
  22188. height: math.unit(5 + 1 / 12, "feet"),
  22189. weight: math.unit(110, "lb"),
  22190. name: "Front",
  22191. image: {
  22192. source: "./media/characters/rupert/front.svg",
  22193. extra: 1549 / 1495,
  22194. bottom: 54.2 / 1604.4
  22195. }
  22196. },
  22197. },
  22198. [
  22199. {
  22200. name: "Normal",
  22201. height: math.unit(5 + 1 / 12, "feet"),
  22202. default: true
  22203. },
  22204. ]
  22205. ))
  22206. characterMakers.push(() => makeCharacter(
  22207. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22208. {
  22209. front: {
  22210. height: math.unit(8 + 4 / 12, "feet"),
  22211. weight: math.unit(350, "lb"),
  22212. name: "Front",
  22213. image: {
  22214. source: "./media/characters/sheera-castellar/front.svg",
  22215. extra: 1957 / 1894,
  22216. bottom: 26.97 / 1975.017
  22217. }
  22218. },
  22219. side: {
  22220. height: math.unit(8 + 4 / 12, "feet"),
  22221. weight: math.unit(350, "lb"),
  22222. name: "Side",
  22223. image: {
  22224. source: "./media/characters/sheera-castellar/side.svg",
  22225. extra: 1957 / 1894
  22226. }
  22227. },
  22228. back: {
  22229. height: math.unit(8 + 4 / 12, "feet"),
  22230. weight: math.unit(350, "lb"),
  22231. name: "Back",
  22232. image: {
  22233. source: "./media/characters/sheera-castellar/back.svg",
  22234. extra: 1957 / 1894
  22235. }
  22236. },
  22237. angled: {
  22238. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22239. weight: math.unit(350, "lb"),
  22240. name: "Angled",
  22241. image: {
  22242. source: "./media/characters/sheera-castellar/angled.svg",
  22243. extra: 1807 / 1707,
  22244. bottom: 68 / 1875
  22245. }
  22246. },
  22247. genitals: {
  22248. height: math.unit(2.2, "feet"),
  22249. name: "Genitals",
  22250. image: {
  22251. source: "./media/characters/sheera-castellar/genitals.svg"
  22252. }
  22253. },
  22254. },
  22255. [
  22256. {
  22257. name: "Normal",
  22258. height: math.unit(8 + 4 / 12, "feet")
  22259. },
  22260. {
  22261. name: "Macro",
  22262. height: math.unit(150, "feet"),
  22263. default: true
  22264. },
  22265. {
  22266. name: "Macro+",
  22267. height: math.unit(800, "feet")
  22268. },
  22269. ]
  22270. ))
  22271. characterMakers.push(() => makeCharacter(
  22272. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22273. {
  22274. front: {
  22275. height: math.unit(6, "feet"),
  22276. weight: math.unit(150, "lb"),
  22277. name: "Front",
  22278. image: {
  22279. source: "./media/characters/jaipur/front.svg",
  22280. extra: 3860 / 3731,
  22281. bottom: 287 / 4140
  22282. }
  22283. },
  22284. back: {
  22285. height: math.unit(6, "feet"),
  22286. weight: math.unit(150, "lb"),
  22287. name: "Back",
  22288. image: {
  22289. source: "./media/characters/jaipur/back.svg",
  22290. extra: 4060 / 3930,
  22291. bottom: 151 / 4200
  22292. }
  22293. },
  22294. },
  22295. [
  22296. {
  22297. name: "Normal",
  22298. height: math.unit(1.85, "meters"),
  22299. default: true
  22300. },
  22301. {
  22302. name: "Macro",
  22303. height: math.unit(150, "meters")
  22304. },
  22305. {
  22306. name: "Macro+",
  22307. height: math.unit(0.5, "miles")
  22308. },
  22309. {
  22310. name: "Macro++",
  22311. height: math.unit(2.5, "miles")
  22312. },
  22313. {
  22314. name: "Macro+++",
  22315. height: math.unit(12, "miles")
  22316. },
  22317. {
  22318. name: "Macro++++",
  22319. height: math.unit(120, "miles")
  22320. },
  22321. {
  22322. name: "Macro+++++",
  22323. height: math.unit(1200, "miles")
  22324. },
  22325. ]
  22326. ))
  22327. characterMakers.push(() => makeCharacter(
  22328. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22329. {
  22330. front: {
  22331. height: math.unit(6, "feet"),
  22332. weight: math.unit(150, "lb"),
  22333. name: "Front",
  22334. image: {
  22335. source: "./media/characters/sheila-wolf/front.svg",
  22336. extra: 1931 / 1808,
  22337. bottom: 29.5 / 1960
  22338. }
  22339. },
  22340. dick: {
  22341. height: math.unit(1.464, "feet"),
  22342. name: "Dick",
  22343. image: {
  22344. source: "./media/characters/sheila-wolf/dick.svg"
  22345. }
  22346. },
  22347. muzzle: {
  22348. height: math.unit(0.513, "feet"),
  22349. name: "Muzzle",
  22350. image: {
  22351. source: "./media/characters/sheila-wolf/muzzle.svg"
  22352. }
  22353. },
  22354. },
  22355. [
  22356. {
  22357. name: "Macro",
  22358. height: math.unit(70, "feet"),
  22359. default: true
  22360. },
  22361. ]
  22362. ))
  22363. characterMakers.push(() => makeCharacter(
  22364. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22365. {
  22366. front: {
  22367. height: math.unit(32, "meters"),
  22368. weight: math.unit(300000, "kg"),
  22369. name: "Front",
  22370. image: {
  22371. source: "./media/characters/almor/front.svg",
  22372. extra: 1408 / 1322,
  22373. bottom: 94.6 / 1506.5
  22374. }
  22375. },
  22376. },
  22377. [
  22378. {
  22379. name: "Macro",
  22380. height: math.unit(32, "meters"),
  22381. default: true
  22382. },
  22383. ]
  22384. ))
  22385. characterMakers.push(() => makeCharacter(
  22386. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22387. {
  22388. front: {
  22389. height: math.unit(7, "feet"),
  22390. weight: math.unit(200, "lb"),
  22391. name: "Front",
  22392. image: {
  22393. source: "./media/characters/silver/front.svg",
  22394. extra: 472.1 / 450.5,
  22395. bottom: 26.5 / 499.424
  22396. }
  22397. },
  22398. },
  22399. [
  22400. {
  22401. name: "Normal",
  22402. height: math.unit(7, "feet"),
  22403. default: true
  22404. },
  22405. {
  22406. name: "Macro",
  22407. height: math.unit(800, "feet")
  22408. },
  22409. {
  22410. name: "Megamacro",
  22411. height: math.unit(250, "miles")
  22412. },
  22413. ]
  22414. ))
  22415. characterMakers.push(() => makeCharacter(
  22416. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22417. {
  22418. front: {
  22419. height: math.unit(6, "feet"),
  22420. weight: math.unit(150, "lb"),
  22421. name: "Front",
  22422. image: {
  22423. source: "./media/characters/pliskin/front.svg",
  22424. extra: 1469 / 1359,
  22425. bottom: 70 / 1540
  22426. }
  22427. },
  22428. },
  22429. [
  22430. {
  22431. name: "Micro",
  22432. height: math.unit(3, "inches")
  22433. },
  22434. {
  22435. name: "Normal",
  22436. height: math.unit(5 + 11 / 12, "feet"),
  22437. default: true
  22438. },
  22439. {
  22440. name: "Macro",
  22441. height: math.unit(120, "feet")
  22442. },
  22443. ]
  22444. ))
  22445. characterMakers.push(() => makeCharacter(
  22446. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22447. {
  22448. front: {
  22449. height: math.unit(6, "feet"),
  22450. weight: math.unit(150, "lb"),
  22451. name: "Front",
  22452. image: {
  22453. source: "./media/characters/sammy/front.svg",
  22454. extra: 1193 / 1089,
  22455. bottom: 30.5 / 1226
  22456. }
  22457. },
  22458. },
  22459. [
  22460. {
  22461. name: "Macro",
  22462. height: math.unit(1700, "feet"),
  22463. default: true
  22464. },
  22465. {
  22466. name: "Examacro",
  22467. height: math.unit(2.5e9, "lightyears")
  22468. },
  22469. ]
  22470. ))
  22471. characterMakers.push(() => makeCharacter(
  22472. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22473. {
  22474. front: {
  22475. height: math.unit(21, "meters"),
  22476. weight: math.unit(12, "tonnes"),
  22477. name: "Front",
  22478. image: {
  22479. source: "./media/characters/kuru/front.svg",
  22480. extra: 4301 / 3785,
  22481. bottom: 371.3 / 4691
  22482. }
  22483. },
  22484. },
  22485. [
  22486. {
  22487. name: "Macro",
  22488. height: math.unit(21, "meters"),
  22489. default: true
  22490. },
  22491. ]
  22492. ))
  22493. characterMakers.push(() => makeCharacter(
  22494. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22495. {
  22496. front: {
  22497. height: math.unit(23, "meters"),
  22498. weight: math.unit(12.2, "tonnes"),
  22499. name: "Front",
  22500. image: {
  22501. source: "./media/characters/rakka/front.svg",
  22502. extra: 4670 / 4169,
  22503. bottom: 301 / 4968.7
  22504. }
  22505. },
  22506. },
  22507. [
  22508. {
  22509. name: "Macro",
  22510. height: math.unit(23, "meters"),
  22511. default: true
  22512. },
  22513. ]
  22514. ))
  22515. characterMakers.push(() => makeCharacter(
  22516. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22517. {
  22518. front: {
  22519. height: math.unit(6, "feet"),
  22520. weight: math.unit(150, "lb"),
  22521. name: "Front",
  22522. image: {
  22523. source: "./media/characters/rhys-feline/front.svg",
  22524. extra: 2488 / 2308,
  22525. bottom: 35.67 / 2519.19
  22526. }
  22527. },
  22528. },
  22529. [
  22530. {
  22531. name: "Really Small",
  22532. height: math.unit(1, "nm")
  22533. },
  22534. {
  22535. name: "Micro",
  22536. height: math.unit(4, "inches")
  22537. },
  22538. {
  22539. name: "Normal",
  22540. height: math.unit(4 + 10 / 12, "feet"),
  22541. default: true
  22542. },
  22543. {
  22544. name: "Macro",
  22545. height: math.unit(100, "feet")
  22546. },
  22547. {
  22548. name: "Megamacto",
  22549. height: math.unit(50, "miles")
  22550. },
  22551. ]
  22552. ))
  22553. characterMakers.push(() => makeCharacter(
  22554. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22555. {
  22556. side: {
  22557. height: math.unit(30, "feet"),
  22558. weight: math.unit(35000, "kg"),
  22559. name: "Side",
  22560. image: {
  22561. source: "./media/characters/alydar/side.svg",
  22562. extra: 234 / 222,
  22563. bottom: 6.5 / 241
  22564. }
  22565. },
  22566. front: {
  22567. height: math.unit(30, "feet"),
  22568. weight: math.unit(35000, "kg"),
  22569. name: "Front",
  22570. image: {
  22571. source: "./media/characters/alydar/front.svg",
  22572. extra: 223.37 / 210.2,
  22573. bottom: 22.3 / 246.76
  22574. }
  22575. },
  22576. top: {
  22577. height: math.unit(64.54, "feet"),
  22578. weight: math.unit(35000, "kg"),
  22579. name: "Top",
  22580. image: {
  22581. source: "./media/characters/alydar/top.svg"
  22582. }
  22583. },
  22584. anthro: {
  22585. height: math.unit(30, "feet"),
  22586. weight: math.unit(9000, "kg"),
  22587. name: "Anthro",
  22588. image: {
  22589. source: "./media/characters/alydar/anthro.svg",
  22590. extra: 432 / 421,
  22591. bottom: 7.18 / 440
  22592. }
  22593. },
  22594. maw: {
  22595. height: math.unit(11.693, "feet"),
  22596. name: "Maw",
  22597. image: {
  22598. source: "./media/characters/alydar/maw.svg"
  22599. }
  22600. },
  22601. head: {
  22602. height: math.unit(11.693, "feet"),
  22603. name: "Head",
  22604. image: {
  22605. source: "./media/characters/alydar/head.svg"
  22606. }
  22607. },
  22608. headAlt: {
  22609. height: math.unit(12.861, "feet"),
  22610. name: "Head (Alt)",
  22611. image: {
  22612. source: "./media/characters/alydar/head-alt.svg"
  22613. }
  22614. },
  22615. wing: {
  22616. height: math.unit(20.712, "feet"),
  22617. name: "Wing",
  22618. image: {
  22619. source: "./media/characters/alydar/wing.svg"
  22620. }
  22621. },
  22622. wingFeather: {
  22623. height: math.unit(9.662, "feet"),
  22624. name: "Wing Feather",
  22625. image: {
  22626. source: "./media/characters/alydar/wing-feather.svg"
  22627. }
  22628. },
  22629. countourFeather: {
  22630. height: math.unit(4.154, "feet"),
  22631. name: "Contour Feather",
  22632. image: {
  22633. source: "./media/characters/alydar/contour-feather.svg"
  22634. }
  22635. },
  22636. },
  22637. [
  22638. {
  22639. name: "Diplomatic",
  22640. height: math.unit(13, "feet"),
  22641. default: true
  22642. },
  22643. {
  22644. name: "Small",
  22645. height: math.unit(30, "feet")
  22646. },
  22647. {
  22648. name: "Normal",
  22649. height: math.unit(95, "feet"),
  22650. default: true
  22651. },
  22652. {
  22653. name: "Large",
  22654. height: math.unit(285, "feet")
  22655. },
  22656. {
  22657. name: "Incomprehensible",
  22658. height: math.unit(450, "megameters")
  22659. },
  22660. ]
  22661. ))
  22662. characterMakers.push(() => makeCharacter(
  22663. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22664. {
  22665. side: {
  22666. height: math.unit(11, "feet"),
  22667. weight: math.unit(1750, "kg"),
  22668. name: "Side",
  22669. image: {
  22670. source: "./media/characters/selicia/side.svg",
  22671. extra: 440 / 396,
  22672. bottom: 24.8 / 465.979
  22673. }
  22674. },
  22675. maw: {
  22676. height: math.unit(4.665, "feet"),
  22677. name: "Maw",
  22678. image: {
  22679. source: "./media/characters/selicia/maw.svg"
  22680. }
  22681. },
  22682. },
  22683. [
  22684. {
  22685. name: "Normal",
  22686. height: math.unit(11, "feet"),
  22687. default: true
  22688. },
  22689. ]
  22690. ))
  22691. characterMakers.push(() => makeCharacter(
  22692. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22693. {
  22694. side: {
  22695. height: math.unit(2 + 6 / 12, "feet"),
  22696. weight: math.unit(30, "lb"),
  22697. name: "Side",
  22698. image: {
  22699. source: "./media/characters/layla/side.svg",
  22700. extra: 244 / 188,
  22701. bottom: 18.2 / 262.1
  22702. }
  22703. },
  22704. back: {
  22705. height: math.unit(2 + 6 / 12, "feet"),
  22706. weight: math.unit(30, "lb"),
  22707. name: "Back",
  22708. image: {
  22709. source: "./media/characters/layla/back.svg",
  22710. extra: 308 / 241.5,
  22711. bottom: 8.9 / 316.8
  22712. }
  22713. },
  22714. cumming: {
  22715. height: math.unit(2 + 6 / 12, "feet"),
  22716. weight: math.unit(30, "lb"),
  22717. name: "Cumming",
  22718. image: {
  22719. source: "./media/characters/layla/cumming.svg",
  22720. extra: 342 / 279,
  22721. bottom: 595 / 938
  22722. }
  22723. },
  22724. dickFlaccid: {
  22725. height: math.unit(2.595, "feet"),
  22726. name: "Flaccid Genitals",
  22727. image: {
  22728. source: "./media/characters/layla/dick-flaccid.svg"
  22729. }
  22730. },
  22731. dickErect: {
  22732. height: math.unit(2.359, "feet"),
  22733. name: "Erect Genitals",
  22734. image: {
  22735. source: "./media/characters/layla/dick-erect.svg"
  22736. }
  22737. },
  22738. },
  22739. [
  22740. {
  22741. name: "Micro",
  22742. height: math.unit(1, "inch")
  22743. },
  22744. {
  22745. name: "Small",
  22746. height: math.unit(1, "foot")
  22747. },
  22748. {
  22749. name: "Normal",
  22750. height: math.unit(2 + 6 / 12, "feet"),
  22751. default: true
  22752. },
  22753. {
  22754. name: "Macro",
  22755. height: math.unit(200, "feet")
  22756. },
  22757. {
  22758. name: "Megamacro",
  22759. height: math.unit(1000, "miles")
  22760. },
  22761. {
  22762. name: "Planetary",
  22763. height: math.unit(8000, "miles")
  22764. },
  22765. {
  22766. name: "True Layla",
  22767. height: math.unit(200000 * 7, "multiverses")
  22768. },
  22769. ]
  22770. ))
  22771. characterMakers.push(() => makeCharacter(
  22772. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22773. {
  22774. back: {
  22775. height: math.unit(10.5, "feet"),
  22776. weight: math.unit(800, "lb"),
  22777. name: "Back",
  22778. image: {
  22779. source: "./media/characters/knox/back.svg",
  22780. extra: 1486 / 1089,
  22781. bottom: 107 / 1601.4
  22782. }
  22783. },
  22784. side: {
  22785. height: math.unit(10.5, "feet"),
  22786. weight: math.unit(800, "lb"),
  22787. name: "Side",
  22788. image: {
  22789. source: "./media/characters/knox/side.svg",
  22790. extra: 244 / 218,
  22791. bottom: 14 / 260
  22792. }
  22793. },
  22794. },
  22795. [
  22796. {
  22797. name: "Compact",
  22798. height: math.unit(10.5, "feet"),
  22799. default: true
  22800. },
  22801. {
  22802. name: "Dynamax",
  22803. height: math.unit(210, "feet")
  22804. },
  22805. {
  22806. name: "Full Macro",
  22807. height: math.unit(850, "feet")
  22808. },
  22809. ]
  22810. ))
  22811. characterMakers.push(() => makeCharacter(
  22812. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22813. {
  22814. front: {
  22815. height: math.unit(6, "feet"),
  22816. weight: math.unit(152, "lb"),
  22817. name: "Front",
  22818. image: {
  22819. source: "./media/characters/shin-pikachu/front.svg",
  22820. extra: 1574 / 1480,
  22821. bottom: 53.3 / 1626
  22822. }
  22823. },
  22824. hand: {
  22825. height: math.unit(1.055, "feet"),
  22826. name: "Hand",
  22827. image: {
  22828. source: "./media/characters/shin-pikachu/hand.svg"
  22829. }
  22830. },
  22831. foot: {
  22832. height: math.unit(1.1, "feet"),
  22833. name: "Foot",
  22834. image: {
  22835. source: "./media/characters/shin-pikachu/foot.svg"
  22836. }
  22837. },
  22838. collar: {
  22839. height: math.unit(0.386, "feet"),
  22840. name: "Collar",
  22841. image: {
  22842. source: "./media/characters/shin-pikachu/collar.svg"
  22843. }
  22844. },
  22845. },
  22846. [
  22847. {
  22848. name: "Smallest",
  22849. height: math.unit(0.5, "inches")
  22850. },
  22851. {
  22852. name: "Micro",
  22853. height: math.unit(6, "inches")
  22854. },
  22855. {
  22856. name: "Normal",
  22857. height: math.unit(6, "feet"),
  22858. default: true
  22859. },
  22860. {
  22861. name: "Macro",
  22862. height: math.unit(150, "feet")
  22863. },
  22864. ]
  22865. ))
  22866. characterMakers.push(() => makeCharacter(
  22867. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22868. {
  22869. front: {
  22870. height: math.unit(28, "feet"),
  22871. weight: math.unit(10500, "lb"),
  22872. name: "Front",
  22873. image: {
  22874. source: "./media/characters/kayda/front.svg",
  22875. extra: 1536 / 1428,
  22876. bottom: 68.7 / 1603
  22877. }
  22878. },
  22879. back: {
  22880. height: math.unit(28, "feet"),
  22881. weight: math.unit(10500, "lb"),
  22882. name: "Back",
  22883. image: {
  22884. source: "./media/characters/kayda/back.svg",
  22885. extra: 1557 / 1464,
  22886. bottom: 39.5 / 1597.49
  22887. }
  22888. },
  22889. dick: {
  22890. height: math.unit(3.858, "feet"),
  22891. name: "Dick",
  22892. image: {
  22893. source: "./media/characters/kayda/dick.svg"
  22894. }
  22895. },
  22896. },
  22897. [
  22898. {
  22899. name: "Macro",
  22900. height: math.unit(28, "feet"),
  22901. default: true
  22902. },
  22903. ]
  22904. ))
  22905. characterMakers.push(() => makeCharacter(
  22906. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22907. {
  22908. front: {
  22909. height: math.unit(10 + 11 / 12, "feet"),
  22910. weight: math.unit(1400, "lb"),
  22911. name: "Front",
  22912. image: {
  22913. source: "./media/characters/brian/front.svg",
  22914. extra: 737 / 692,
  22915. bottom: 55.4 / 785
  22916. }
  22917. },
  22918. },
  22919. [
  22920. {
  22921. name: "Normal",
  22922. height: math.unit(10 + 11 / 12, "feet"),
  22923. default: true
  22924. },
  22925. ]
  22926. ))
  22927. characterMakers.push(() => makeCharacter(
  22928. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22929. {
  22930. front: {
  22931. height: math.unit(5 + 8 / 12, "feet"),
  22932. weight: math.unit(140, "lb"),
  22933. name: "Front",
  22934. image: {
  22935. source: "./media/characters/khemri/front.svg",
  22936. extra: 4780 / 4059,
  22937. bottom: 80.1 / 4859.25
  22938. }
  22939. },
  22940. },
  22941. [
  22942. {
  22943. name: "Micro",
  22944. height: math.unit(6, "inches")
  22945. },
  22946. {
  22947. name: "Normal",
  22948. height: math.unit(5 + 8 / 12, "feet"),
  22949. default: true
  22950. },
  22951. ]
  22952. ))
  22953. characterMakers.push(() => makeCharacter(
  22954. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22955. {
  22956. front: {
  22957. height: math.unit(13, "feet"),
  22958. weight: math.unit(1700, "lb"),
  22959. name: "Front",
  22960. image: {
  22961. source: "./media/characters/felix-braveheart/front.svg",
  22962. extra: 1222 / 1157,
  22963. bottom: 53.2 / 1280
  22964. }
  22965. },
  22966. back: {
  22967. height: math.unit(13, "feet"),
  22968. weight: math.unit(1700, "lb"),
  22969. name: "Back",
  22970. image: {
  22971. source: "./media/characters/felix-braveheart/back.svg",
  22972. extra: 1277 / 1203,
  22973. bottom: 50.2 / 1327
  22974. }
  22975. },
  22976. feral: {
  22977. height: math.unit(6, "feet"),
  22978. weight: math.unit(400, "lb"),
  22979. name: "Feral",
  22980. image: {
  22981. source: "./media/characters/felix-braveheart/feral.svg",
  22982. extra: 682 / 625,
  22983. bottom: 6.9 / 688
  22984. }
  22985. },
  22986. },
  22987. [
  22988. {
  22989. name: "Normal",
  22990. height: math.unit(13, "feet"),
  22991. default: true
  22992. },
  22993. ]
  22994. ))
  22995. characterMakers.push(() => makeCharacter(
  22996. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22997. {
  22998. side: {
  22999. height: math.unit(5 + 11 / 12, "feet"),
  23000. weight: math.unit(1400, "lb"),
  23001. name: "Side",
  23002. image: {
  23003. source: "./media/characters/shadow-blade/side.svg",
  23004. extra: 1726 / 1267,
  23005. bottom: 58.4 / 1785
  23006. }
  23007. },
  23008. },
  23009. [
  23010. {
  23011. name: "Normal",
  23012. height: math.unit(5 + 11 / 12, "feet"),
  23013. default: true
  23014. },
  23015. ]
  23016. ))
  23017. characterMakers.push(() => makeCharacter(
  23018. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23019. {
  23020. front: {
  23021. height: math.unit(1 + 6 / 12, "feet"),
  23022. weight: math.unit(25, "lb"),
  23023. name: "Front",
  23024. image: {
  23025. source: "./media/characters/karla-halldor/front.svg",
  23026. extra: 1459 / 1383,
  23027. bottom: 12 / 1472
  23028. }
  23029. },
  23030. },
  23031. [
  23032. {
  23033. name: "Normal",
  23034. height: math.unit(1 + 6 / 12, "feet"),
  23035. default: true
  23036. },
  23037. ]
  23038. ))
  23039. characterMakers.push(() => makeCharacter(
  23040. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23041. {
  23042. front: {
  23043. height: math.unit(6 + 2 / 12, "feet"),
  23044. weight: math.unit(160, "lb"),
  23045. name: "Front",
  23046. image: {
  23047. source: "./media/characters/ariam/front.svg",
  23048. extra: 714 / 617,
  23049. bottom: 23.4 / 737,
  23050. }
  23051. },
  23052. squatting: {
  23053. height: math.unit(4.1, "feet"),
  23054. weight: math.unit(160, "lb"),
  23055. name: "Squatting",
  23056. image: {
  23057. source: "./media/characters/ariam/squatting.svg",
  23058. extra: 2617 / 2112,
  23059. bottom: 61.2 / 2681,
  23060. }
  23061. },
  23062. },
  23063. [
  23064. {
  23065. name: "Normal",
  23066. height: math.unit(6 + 2 / 12, "feet"),
  23067. default: true
  23068. },
  23069. {
  23070. name: "Normal+",
  23071. height: math.unit(4, "meters")
  23072. },
  23073. {
  23074. name: "Macro",
  23075. height: math.unit(50, "meters")
  23076. },
  23077. {
  23078. name: "Macro+",
  23079. height: math.unit(100, "meters")
  23080. },
  23081. {
  23082. name: "Megamacro",
  23083. height: math.unit(20, "km")
  23084. },
  23085. ]
  23086. ))
  23087. characterMakers.push(() => makeCharacter(
  23088. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23089. {
  23090. front: {
  23091. height: math.unit(1.67, "meters"),
  23092. weight: math.unit(140, "lb"),
  23093. name: "Front",
  23094. image: {
  23095. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23096. extra: 438 / 410,
  23097. bottom: 0.75 / 439
  23098. }
  23099. },
  23100. },
  23101. [
  23102. {
  23103. name: "Shrunken",
  23104. height: math.unit(7.6, "cm")
  23105. },
  23106. {
  23107. name: "Human Scale",
  23108. height: math.unit(1.67, "meters")
  23109. },
  23110. {
  23111. name: "Wolxi Scale",
  23112. height: math.unit(36.7, "meters"),
  23113. default: true
  23114. },
  23115. ]
  23116. ))
  23117. characterMakers.push(() => makeCharacter(
  23118. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23119. {
  23120. front: {
  23121. height: math.unit(1.73, "meters"),
  23122. weight: math.unit(240, "lb"),
  23123. name: "Front",
  23124. image: {
  23125. source: "./media/characters/izue-two-mothers/front.svg",
  23126. extra: 469 / 437,
  23127. bottom: 1.24 / 470.6
  23128. }
  23129. },
  23130. },
  23131. [
  23132. {
  23133. name: "Shrunken",
  23134. height: math.unit(7.86, "cm")
  23135. },
  23136. {
  23137. name: "Human Scale",
  23138. height: math.unit(1.73, "meters")
  23139. },
  23140. {
  23141. name: "Wolxi Scale",
  23142. height: math.unit(38, "meters"),
  23143. default: true
  23144. },
  23145. ]
  23146. ))
  23147. characterMakers.push(() => makeCharacter(
  23148. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23149. {
  23150. front: {
  23151. height: math.unit(1.55, "meters"),
  23152. weight: math.unit(120, "lb"),
  23153. name: "Front",
  23154. image: {
  23155. source: "./media/characters/teeku-love-shack/front.svg",
  23156. extra: 387 / 362,
  23157. bottom: 1.51 / 388
  23158. }
  23159. },
  23160. },
  23161. [
  23162. {
  23163. name: "Shrunken",
  23164. height: math.unit(7, "cm")
  23165. },
  23166. {
  23167. name: "Human Scale",
  23168. height: math.unit(1.55, "meters")
  23169. },
  23170. {
  23171. name: "Wolxi Scale",
  23172. height: math.unit(34.1, "meters"),
  23173. default: true
  23174. },
  23175. ]
  23176. ))
  23177. characterMakers.push(() => makeCharacter(
  23178. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23179. {
  23180. front: {
  23181. height: math.unit(1.83, "meters"),
  23182. weight: math.unit(135, "lb"),
  23183. name: "Front",
  23184. image: {
  23185. source: "./media/characters/dejma-the-red/front.svg",
  23186. extra: 480 / 458,
  23187. bottom: 1.8 / 482
  23188. }
  23189. },
  23190. },
  23191. [
  23192. {
  23193. name: "Shrunken",
  23194. height: math.unit(8.3, "cm")
  23195. },
  23196. {
  23197. name: "Human Scale",
  23198. height: math.unit(1.83, "meters")
  23199. },
  23200. {
  23201. name: "Wolxi Scale",
  23202. height: math.unit(40, "meters"),
  23203. default: true
  23204. },
  23205. ]
  23206. ))
  23207. characterMakers.push(() => makeCharacter(
  23208. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23209. {
  23210. front: {
  23211. height: math.unit(1.78, "meters"),
  23212. weight: math.unit(65, "kg"),
  23213. name: "Front",
  23214. image: {
  23215. source: "./media/characters/aki/front.svg",
  23216. extra: 452 / 415
  23217. }
  23218. },
  23219. frontNsfw: {
  23220. height: math.unit(1.78, "meters"),
  23221. weight: math.unit(65, "kg"),
  23222. name: "Front (NSFW)",
  23223. image: {
  23224. source: "./media/characters/aki/front-nsfw.svg",
  23225. extra: 452 / 415
  23226. }
  23227. },
  23228. back: {
  23229. height: math.unit(1.78, "meters"),
  23230. weight: math.unit(65, "kg"),
  23231. name: "Back",
  23232. image: {
  23233. source: "./media/characters/aki/back.svg",
  23234. extra: 452 / 415
  23235. }
  23236. },
  23237. rump: {
  23238. height: math.unit(2.05, "feet"),
  23239. name: "Rump",
  23240. image: {
  23241. source: "./media/characters/aki/rump.svg"
  23242. }
  23243. },
  23244. dick: {
  23245. height: math.unit(0.95, "feet"),
  23246. name: "Dick",
  23247. image: {
  23248. source: "./media/characters/aki/dick.svg"
  23249. }
  23250. },
  23251. },
  23252. [
  23253. {
  23254. name: "Micro",
  23255. height: math.unit(15, "cm")
  23256. },
  23257. {
  23258. name: "Normal",
  23259. height: math.unit(178, "cm"),
  23260. default: true
  23261. },
  23262. {
  23263. name: "Macro",
  23264. height: math.unit(214, "m")
  23265. },
  23266. {
  23267. name: "Macro+",
  23268. height: math.unit(534, "m")
  23269. },
  23270. ]
  23271. ))
  23272. characterMakers.push(() => makeCharacter(
  23273. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23274. {
  23275. front: {
  23276. height: math.unit(5 + 5 / 12, "feet"),
  23277. weight: math.unit(120, "lb"),
  23278. name: "Front",
  23279. image: {
  23280. source: "./media/characters/ari/front.svg",
  23281. extra: 714.5 / 682,
  23282. bottom: 8 / 722.5
  23283. }
  23284. },
  23285. },
  23286. [
  23287. {
  23288. name: "Normal",
  23289. height: math.unit(5 + 5 / 12, "feet")
  23290. },
  23291. {
  23292. name: "Macro",
  23293. height: math.unit(100, "feet"),
  23294. default: true
  23295. },
  23296. {
  23297. name: "Megamacro",
  23298. height: math.unit(100, "miles")
  23299. },
  23300. {
  23301. name: "Gigamacro",
  23302. height: math.unit(80000, "miles")
  23303. },
  23304. ]
  23305. ))
  23306. characterMakers.push(() => makeCharacter(
  23307. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23308. {
  23309. side: {
  23310. height: math.unit(9, "feet"),
  23311. weight: math.unit(400, "kg"),
  23312. name: "Side",
  23313. image: {
  23314. source: "./media/characters/bolt/side.svg",
  23315. extra: 1126 / 896,
  23316. bottom: 60 / 1187.3,
  23317. }
  23318. },
  23319. },
  23320. [
  23321. {
  23322. name: "Micro",
  23323. height: math.unit(5, "inches")
  23324. },
  23325. {
  23326. name: "Normal",
  23327. height: math.unit(9, "feet"),
  23328. default: true
  23329. },
  23330. {
  23331. name: "Macro",
  23332. height: math.unit(700, "feet")
  23333. },
  23334. {
  23335. name: "Max Size",
  23336. height: math.unit(1.52e22, "yottameters")
  23337. },
  23338. ]
  23339. ))
  23340. characterMakers.push(() => makeCharacter(
  23341. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23342. {
  23343. front: {
  23344. height: math.unit(4.53, "meters"),
  23345. weight: math.unit(3, "tons"),
  23346. name: "Front",
  23347. image: {
  23348. source: "./media/characters/draekon-sylviar/front.svg",
  23349. extra: 1228 / 1068,
  23350. bottom: 41 / 1270
  23351. }
  23352. },
  23353. tail: {
  23354. height: math.unit(1.772, "meter"),
  23355. name: "Tail",
  23356. image: {
  23357. source: "./media/characters/draekon-sylviar/tail.svg"
  23358. }
  23359. },
  23360. head: {
  23361. height: math.unit(1.331, "meter"),
  23362. name: "Head",
  23363. image: {
  23364. source: "./media/characters/draekon-sylviar/head.svg"
  23365. }
  23366. },
  23367. hand: {
  23368. height: math.unit(0.564, "meter"),
  23369. name: "Hand",
  23370. image: {
  23371. source: "./media/characters/draekon-sylviar/hand.svg"
  23372. }
  23373. },
  23374. foot: {
  23375. height: math.unit(0.621, "meter"),
  23376. name: "Foot",
  23377. image: {
  23378. source: "./media/characters/draekon-sylviar/foot.svg",
  23379. bottom: 32 / 324
  23380. }
  23381. },
  23382. dick: {
  23383. height: math.unit(61, "cm"),
  23384. name: "Dick",
  23385. image: {
  23386. source: "./media/characters/draekon-sylviar/dick.svg"
  23387. }
  23388. },
  23389. dickseparated: {
  23390. height: math.unit(61, "cm"),
  23391. name: "Dick-separated",
  23392. image: {
  23393. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23394. }
  23395. },
  23396. },
  23397. [
  23398. {
  23399. name: "Small",
  23400. height: math.unit(4.53 / 2, "meters"),
  23401. default: true
  23402. },
  23403. {
  23404. name: "Normal",
  23405. height: math.unit(4.53, "meters"),
  23406. default: true
  23407. },
  23408. {
  23409. name: "Large",
  23410. height: math.unit(4.53 * 2, "meters"),
  23411. },
  23412. ]
  23413. ))
  23414. characterMakers.push(() => makeCharacter(
  23415. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23416. {
  23417. front: {
  23418. height: math.unit(6 + 2 / 12, "feet"),
  23419. weight: math.unit(180, "lb"),
  23420. name: "Front",
  23421. image: {
  23422. source: "./media/characters/brawler/front.svg",
  23423. extra: 3301 / 3027,
  23424. bottom: 138 / 3439
  23425. }
  23426. },
  23427. },
  23428. [
  23429. {
  23430. name: "Normal",
  23431. height: math.unit(6 + 2 / 12, "feet"),
  23432. default: true
  23433. },
  23434. ]
  23435. ))
  23436. characterMakers.push(() => makeCharacter(
  23437. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23438. {
  23439. front: {
  23440. height: math.unit(11, "feet"),
  23441. weight: math.unit(1000, "lb"),
  23442. name: "Front",
  23443. image: {
  23444. source: "./media/characters/alex/front.svg",
  23445. bottom: 44.5 / 620
  23446. }
  23447. },
  23448. },
  23449. [
  23450. {
  23451. name: "Micro",
  23452. height: math.unit(5, "inches")
  23453. },
  23454. {
  23455. name: "Normal",
  23456. height: math.unit(11, "feet"),
  23457. default: true
  23458. },
  23459. {
  23460. name: "Macro",
  23461. height: math.unit(9.5e9, "feet")
  23462. },
  23463. {
  23464. name: "Max Size",
  23465. height: math.unit(1.4e283, "yottameters")
  23466. },
  23467. ]
  23468. ))
  23469. characterMakers.push(() => makeCharacter(
  23470. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23471. {
  23472. female: {
  23473. height: math.unit(29.9, "m"),
  23474. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23475. name: "Female",
  23476. image: {
  23477. source: "./media/characters/zenari/female.svg",
  23478. extra: 3281.6 / 3217,
  23479. bottom: 72.2 / 3353
  23480. }
  23481. },
  23482. male: {
  23483. height: math.unit(27.7, "m"),
  23484. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23485. name: "Male",
  23486. image: {
  23487. source: "./media/characters/zenari/male.svg",
  23488. extra: 3008 / 2991,
  23489. bottom: 54.6 / 3069
  23490. }
  23491. },
  23492. },
  23493. [
  23494. {
  23495. name: "Macro",
  23496. height: math.unit(29.7, "meters"),
  23497. default: true
  23498. },
  23499. ]
  23500. ))
  23501. characterMakers.push(() => makeCharacter(
  23502. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23503. {
  23504. female: {
  23505. height: math.unit(23.8, "m"),
  23506. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23507. name: "Female",
  23508. image: {
  23509. source: "./media/characters/mactarian/female.svg",
  23510. extra: 2662 / 2569,
  23511. bottom: 73 / 2736
  23512. }
  23513. },
  23514. male: {
  23515. height: math.unit(23.8, "m"),
  23516. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23517. name: "Male",
  23518. image: {
  23519. source: "./media/characters/mactarian/male.svg",
  23520. extra: 2673 / 2600,
  23521. bottom: 76 / 2750
  23522. }
  23523. },
  23524. },
  23525. [
  23526. {
  23527. name: "Macro",
  23528. height: math.unit(23.8, "meters"),
  23529. default: true
  23530. },
  23531. ]
  23532. ))
  23533. characterMakers.push(() => makeCharacter(
  23534. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23535. {
  23536. female: {
  23537. height: math.unit(19.3, "m"),
  23538. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23539. name: "Female",
  23540. image: {
  23541. source: "./media/characters/umok/female.svg",
  23542. extra: 2186 / 2078,
  23543. bottom: 87 / 2277
  23544. }
  23545. },
  23546. male: {
  23547. height: math.unit(19.5, "m"),
  23548. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23549. name: "Male",
  23550. image: {
  23551. source: "./media/characters/umok/male.svg",
  23552. extra: 2233 / 2140,
  23553. bottom: 24.4 / 2258
  23554. }
  23555. },
  23556. },
  23557. [
  23558. {
  23559. name: "Macro",
  23560. height: math.unit(19.3, "meters"),
  23561. default: true
  23562. },
  23563. ]
  23564. ))
  23565. characterMakers.push(() => makeCharacter(
  23566. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23567. {
  23568. female: {
  23569. height: math.unit(26.15, "m"),
  23570. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23571. name: "Female",
  23572. image: {
  23573. source: "./media/characters/joraxian/female.svg",
  23574. extra: 2912 / 2824,
  23575. bottom: 36 / 2956
  23576. }
  23577. },
  23578. male: {
  23579. height: math.unit(25.4, "m"),
  23580. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23581. name: "Male",
  23582. image: {
  23583. source: "./media/characters/joraxian/male.svg",
  23584. extra: 2877 / 2721,
  23585. bottom: 82 / 2967
  23586. }
  23587. },
  23588. },
  23589. [
  23590. {
  23591. name: "Macro",
  23592. height: math.unit(26.15, "meters"),
  23593. default: true
  23594. },
  23595. ]
  23596. ))
  23597. characterMakers.push(() => makeCharacter(
  23598. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23599. {
  23600. female: {
  23601. height: math.unit(21.6, "m"),
  23602. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23603. name: "Female",
  23604. image: {
  23605. source: "./media/characters/sthara/female.svg",
  23606. extra: 2516 / 2347,
  23607. bottom: 21.5 / 2537
  23608. }
  23609. },
  23610. male: {
  23611. height: math.unit(24, "m"),
  23612. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23613. name: "Male",
  23614. image: {
  23615. source: "./media/characters/sthara/male.svg",
  23616. extra: 2732 / 2607,
  23617. bottom: 23 / 2732
  23618. }
  23619. },
  23620. },
  23621. [
  23622. {
  23623. name: "Macro",
  23624. height: math.unit(21.6, "meters"),
  23625. default: true
  23626. },
  23627. ]
  23628. ))
  23629. characterMakers.push(() => makeCharacter(
  23630. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23631. {
  23632. front: {
  23633. height: math.unit(6 + 4 / 12, "feet"),
  23634. weight: math.unit(175, "lb"),
  23635. name: "Front",
  23636. image: {
  23637. source: "./media/characters/luka-bryzant/front.svg",
  23638. extra: 311 / 289,
  23639. bottom: 4 / 315
  23640. }
  23641. },
  23642. back: {
  23643. height: math.unit(6 + 4 / 12, "feet"),
  23644. weight: math.unit(175, "lb"),
  23645. name: "Back",
  23646. image: {
  23647. source: "./media/characters/luka-bryzant/back.svg",
  23648. extra: 311 / 289,
  23649. bottom: 3.8 / 313.7
  23650. }
  23651. },
  23652. },
  23653. [
  23654. {
  23655. name: "Micro",
  23656. height: math.unit(10, "inches")
  23657. },
  23658. {
  23659. name: "Normal",
  23660. height: math.unit(6 + 4 / 12, "feet"),
  23661. default: true
  23662. },
  23663. {
  23664. name: "Large",
  23665. height: math.unit(12, "feet")
  23666. },
  23667. ]
  23668. ))
  23669. characterMakers.push(() => makeCharacter(
  23670. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23671. {
  23672. front: {
  23673. height: math.unit(5 + 7 / 12, "feet"),
  23674. weight: math.unit(185, "lb"),
  23675. name: "Front",
  23676. image: {
  23677. source: "./media/characters/aman-aquila/front.svg",
  23678. extra: 1013 / 976,
  23679. bottom: 45.6 / 1057
  23680. }
  23681. },
  23682. side: {
  23683. height: math.unit(5 + 7 / 12, "feet"),
  23684. weight: math.unit(185, "lb"),
  23685. name: "Side",
  23686. image: {
  23687. source: "./media/characters/aman-aquila/side.svg",
  23688. extra: 1054 / 1011,
  23689. bottom: 15 / 1070
  23690. }
  23691. },
  23692. back: {
  23693. height: math.unit(5 + 7 / 12, "feet"),
  23694. weight: math.unit(185, "lb"),
  23695. name: "Back",
  23696. image: {
  23697. source: "./media/characters/aman-aquila/back.svg",
  23698. extra: 1026 / 970,
  23699. bottom: 12 / 1039
  23700. }
  23701. },
  23702. head: {
  23703. height: math.unit(1.211, "feet"),
  23704. name: "Head",
  23705. image: {
  23706. source: "./media/characters/aman-aquila/head.svg",
  23707. }
  23708. },
  23709. },
  23710. [
  23711. {
  23712. name: "Minimicro",
  23713. height: math.unit(0.057, "inches")
  23714. },
  23715. {
  23716. name: "Micro",
  23717. height: math.unit(7, "inches")
  23718. },
  23719. {
  23720. name: "Mini",
  23721. height: math.unit(3 + 7 / 12, "feet")
  23722. },
  23723. {
  23724. name: "Normal",
  23725. height: math.unit(5 + 7 / 12, "feet"),
  23726. default: true
  23727. },
  23728. {
  23729. name: "Macro",
  23730. height: math.unit(157 + 7 / 12, "feet")
  23731. },
  23732. {
  23733. name: "Megamacro",
  23734. height: math.unit(1557 + 7 / 12, "feet")
  23735. },
  23736. {
  23737. name: "Gigamacro",
  23738. height: math.unit(15557 + 7 / 12, "feet")
  23739. },
  23740. ]
  23741. ))
  23742. characterMakers.push(() => makeCharacter(
  23743. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23744. {
  23745. front: {
  23746. height: math.unit(3 + 2 / 12, "inches"),
  23747. weight: math.unit(0.3, "ounces"),
  23748. name: "Front",
  23749. image: {
  23750. source: "./media/characters/hiphae/front.svg",
  23751. extra: 1931 / 1683,
  23752. bottom: 24 / 1955
  23753. }
  23754. },
  23755. },
  23756. [
  23757. {
  23758. name: "Normal",
  23759. height: math.unit(3 + 1 / 2, "inches"),
  23760. default: true
  23761. },
  23762. ]
  23763. ))
  23764. characterMakers.push(() => makeCharacter(
  23765. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23766. {
  23767. front: {
  23768. height: math.unit(5 + 10 / 12, "feet"),
  23769. weight: math.unit(165, "lb"),
  23770. name: "Front",
  23771. image: {
  23772. source: "./media/characters/nicky/front.svg",
  23773. extra: 3144 / 2886,
  23774. bottom: 45.6 / 3192
  23775. }
  23776. },
  23777. back: {
  23778. height: math.unit(5 + 10 / 12, "feet"),
  23779. weight: math.unit(165, "lb"),
  23780. name: "Back",
  23781. image: {
  23782. source: "./media/characters/nicky/back.svg",
  23783. extra: 3055 / 2804,
  23784. bottom: 28.4 / 3087
  23785. }
  23786. },
  23787. frontclothed: {
  23788. height: math.unit(5 + 10 / 12, "feet"),
  23789. weight: math.unit(165, "lb"),
  23790. name: "Front-clothed",
  23791. image: {
  23792. source: "./media/characters/nicky/front-clothed.svg",
  23793. extra: 3184.9 / 2926.9,
  23794. bottom: 86.5 / 3239.9
  23795. }
  23796. },
  23797. foot: {
  23798. height: math.unit(1.16, "feet"),
  23799. name: "Foot",
  23800. image: {
  23801. source: "./media/characters/nicky/foot.svg"
  23802. }
  23803. },
  23804. feet: {
  23805. height: math.unit(1.34, "feet"),
  23806. name: "Feet",
  23807. image: {
  23808. source: "./media/characters/nicky/feet.svg"
  23809. }
  23810. },
  23811. maw: {
  23812. height: math.unit(0.9, "feet"),
  23813. name: "Maw",
  23814. image: {
  23815. source: "./media/characters/nicky/maw.svg"
  23816. }
  23817. },
  23818. },
  23819. [
  23820. {
  23821. name: "Normal",
  23822. height: math.unit(5 + 10 / 12, "feet"),
  23823. default: true
  23824. },
  23825. {
  23826. name: "Macro",
  23827. height: math.unit(60, "feet")
  23828. },
  23829. {
  23830. name: "Megamacro",
  23831. height: math.unit(1, "mile")
  23832. },
  23833. ]
  23834. ))
  23835. characterMakers.push(() => makeCharacter(
  23836. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23837. {
  23838. side: {
  23839. height: math.unit(10, "feet"),
  23840. weight: math.unit(600, "lb"),
  23841. name: "Side",
  23842. image: {
  23843. source: "./media/characters/blair/side.svg",
  23844. bottom: 16.6 / 475,
  23845. extra: 458 / 431
  23846. }
  23847. },
  23848. },
  23849. [
  23850. {
  23851. name: "Micro",
  23852. height: math.unit(8, "inches")
  23853. },
  23854. {
  23855. name: "Normal",
  23856. height: math.unit(10, "feet"),
  23857. default: true
  23858. },
  23859. {
  23860. name: "Macro",
  23861. height: math.unit(180, "feet")
  23862. },
  23863. ]
  23864. ))
  23865. characterMakers.push(() => makeCharacter(
  23866. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23867. {
  23868. front: {
  23869. height: math.unit(5 + 4 / 12, "feet"),
  23870. weight: math.unit(125, "lb"),
  23871. name: "Front",
  23872. image: {
  23873. source: "./media/characters/fisher/front.svg",
  23874. extra: 444 / 390,
  23875. bottom: 2 / 444.8
  23876. }
  23877. },
  23878. },
  23879. [
  23880. {
  23881. name: "Micro",
  23882. height: math.unit(4, "inches")
  23883. },
  23884. {
  23885. name: "Normal",
  23886. height: math.unit(5 + 4 / 12, "feet"),
  23887. default: true
  23888. },
  23889. {
  23890. name: "Macro",
  23891. height: math.unit(100, "feet")
  23892. },
  23893. ]
  23894. ))
  23895. characterMakers.push(() => makeCharacter(
  23896. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23897. {
  23898. front: {
  23899. height: math.unit(6.71, "feet"),
  23900. weight: math.unit(200, "lb"),
  23901. capacity: math.unit(1000000, "people"),
  23902. name: "Front",
  23903. image: {
  23904. source: "./media/characters/gliss/front.svg",
  23905. extra: 2347 / 2231,
  23906. bottom: 113 / 2462
  23907. }
  23908. },
  23909. hammerspaceSize: {
  23910. height: math.unit(6.71 * 717, "feet"),
  23911. weight: math.unit(200, "lb"),
  23912. capacity: math.unit(1000000, "people"),
  23913. name: "Hammerspace Size",
  23914. image: {
  23915. source: "./media/characters/gliss/front.svg",
  23916. extra: 2347 / 2231,
  23917. bottom: 113 / 2462
  23918. }
  23919. },
  23920. },
  23921. [
  23922. {
  23923. name: "Normal",
  23924. height: math.unit(6.71, "feet"),
  23925. default: true
  23926. },
  23927. ]
  23928. ))
  23929. characterMakers.push(() => makeCharacter(
  23930. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23931. {
  23932. side: {
  23933. height: math.unit(1.44, "m"),
  23934. weight: math.unit(80, "kg"),
  23935. name: "Side",
  23936. image: {
  23937. source: "./media/characters/dune-anderson/side.svg",
  23938. bottom: 49 / 1426
  23939. }
  23940. },
  23941. },
  23942. [
  23943. {
  23944. name: "Wolf-sized",
  23945. height: math.unit(1.44, "meters")
  23946. },
  23947. {
  23948. name: "Normal",
  23949. height: math.unit(5.05, "meters"),
  23950. default: true
  23951. },
  23952. {
  23953. name: "Big",
  23954. height: math.unit(14.4, "meters")
  23955. },
  23956. {
  23957. name: "Huge",
  23958. height: math.unit(144, "meters")
  23959. },
  23960. ]
  23961. ))
  23962. characterMakers.push(() => makeCharacter(
  23963. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23964. {
  23965. front: {
  23966. height: math.unit(7, "feet"),
  23967. weight: math.unit(425, "lb"),
  23968. name: "Front",
  23969. image: {
  23970. source: "./media/characters/hind/front.svg",
  23971. extra: 2091 / 1860,
  23972. bottom: 129 / 2220
  23973. }
  23974. },
  23975. back: {
  23976. height: math.unit(7, "feet"),
  23977. weight: math.unit(425, "lb"),
  23978. name: "Back",
  23979. image: {
  23980. source: "./media/characters/hind/back.svg",
  23981. extra: 2091 / 1860,
  23982. bottom: 24.6 / 2309
  23983. }
  23984. },
  23985. tail: {
  23986. height: math.unit(2.8, "feet"),
  23987. name: "Tail",
  23988. image: {
  23989. source: "./media/characters/hind/tail.svg"
  23990. }
  23991. },
  23992. head: {
  23993. height: math.unit(2.55, "feet"),
  23994. name: "Head",
  23995. image: {
  23996. source: "./media/characters/hind/head.svg"
  23997. }
  23998. },
  23999. },
  24000. [
  24001. {
  24002. name: "XS",
  24003. height: math.unit(0.7, "feet")
  24004. },
  24005. {
  24006. name: "Normal",
  24007. height: math.unit(7, "feet"),
  24008. default: true
  24009. },
  24010. {
  24011. name: "XL",
  24012. height: math.unit(70, "feet")
  24013. },
  24014. ]
  24015. ))
  24016. characterMakers.push(() => makeCharacter(
  24017. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24018. {
  24019. front: {
  24020. height: math.unit(6, "feet"),
  24021. weight: math.unit(150, "lb"),
  24022. name: "Front",
  24023. image: {
  24024. source: "./media/characters/dylan-skaven/front.svg",
  24025. extra: 2318 / 2063,
  24026. bottom: 93.4 / 2410
  24027. }
  24028. },
  24029. },
  24030. [
  24031. {
  24032. name: "Nano",
  24033. height: math.unit(1, "mm")
  24034. },
  24035. {
  24036. name: "Micro",
  24037. height: math.unit(1, "cm")
  24038. },
  24039. {
  24040. name: "Normal",
  24041. height: math.unit(2.1, "meters"),
  24042. default: true
  24043. },
  24044. ]
  24045. ))
  24046. characterMakers.push(() => makeCharacter(
  24047. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24048. {
  24049. front: {
  24050. height: math.unit(7 + 5 / 12, "feet"),
  24051. weight: math.unit(357, "lb"),
  24052. name: "Front",
  24053. image: {
  24054. source: "./media/characters/solex-draconov/front.svg",
  24055. extra: 1993 / 1865,
  24056. bottom: 117 / 2111
  24057. }
  24058. },
  24059. },
  24060. [
  24061. {
  24062. name: "Natural Height",
  24063. height: math.unit(7 + 5 / 12, "feet"),
  24064. default: true
  24065. },
  24066. {
  24067. name: "Macro",
  24068. height: math.unit(350, "feet")
  24069. },
  24070. {
  24071. name: "Macro+",
  24072. height: math.unit(1000, "feet")
  24073. },
  24074. {
  24075. name: "Megamacro",
  24076. height: math.unit(20, "km")
  24077. },
  24078. {
  24079. name: "Megamacro+",
  24080. height: math.unit(1000, "km")
  24081. },
  24082. {
  24083. name: "Gigamacro",
  24084. height: math.unit(2.5, "Gm")
  24085. },
  24086. {
  24087. name: "Teramacro",
  24088. height: math.unit(15, "Tm")
  24089. },
  24090. {
  24091. name: "Galactic",
  24092. height: math.unit(30, "Zm")
  24093. },
  24094. {
  24095. name: "Universal",
  24096. height: math.unit(21000, "Ym")
  24097. },
  24098. {
  24099. name: "Omniversal",
  24100. height: math.unit(9.861e50, "Ym")
  24101. },
  24102. {
  24103. name: "Existential",
  24104. height: math.unit(1e300, "meters")
  24105. },
  24106. ]
  24107. ))
  24108. characterMakers.push(() => makeCharacter(
  24109. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24110. {
  24111. side: {
  24112. height: math.unit(25, "feet"),
  24113. weight: math.unit(90000, "lb"),
  24114. name: "Side",
  24115. image: {
  24116. source: "./media/characters/mandarax/side.svg",
  24117. extra: 614 / 332,
  24118. bottom: 55 / 630
  24119. }
  24120. },
  24121. head: {
  24122. height: math.unit(11.4, "feet"),
  24123. name: "Head",
  24124. image: {
  24125. source: "./media/characters/mandarax/head.svg"
  24126. }
  24127. },
  24128. belly: {
  24129. height: math.unit(33, "feet"),
  24130. name: "Belly",
  24131. capacity: math.unit(500, "people"),
  24132. image: {
  24133. source: "./media/characters/mandarax/belly.svg"
  24134. }
  24135. },
  24136. dick: {
  24137. height: math.unit(8.46, "feet"),
  24138. name: "Dick",
  24139. image: {
  24140. source: "./media/characters/mandarax/dick.svg"
  24141. }
  24142. },
  24143. top: {
  24144. height: math.unit(28, "meters"),
  24145. name: "Top",
  24146. image: {
  24147. source: "./media/characters/mandarax/top.svg"
  24148. }
  24149. },
  24150. },
  24151. [
  24152. {
  24153. name: "Normal",
  24154. height: math.unit(25, "feet"),
  24155. default: true
  24156. },
  24157. ]
  24158. ))
  24159. characterMakers.push(() => makeCharacter(
  24160. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24161. {
  24162. front: {
  24163. height: math.unit(5, "feet"),
  24164. weight: math.unit(90, "lb"),
  24165. name: "Front",
  24166. image: {
  24167. source: "./media/characters/pixil/front.svg",
  24168. extra: 2000 / 1618,
  24169. bottom: 12.3 / 2011
  24170. }
  24171. },
  24172. },
  24173. [
  24174. {
  24175. name: "Normal",
  24176. height: math.unit(5, "feet"),
  24177. default: true
  24178. },
  24179. {
  24180. name: "Megamacro",
  24181. height: math.unit(10, "miles"),
  24182. },
  24183. ]
  24184. ))
  24185. characterMakers.push(() => makeCharacter(
  24186. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24187. {
  24188. front: {
  24189. height: math.unit(7 + 2 / 12, "feet"),
  24190. weight: math.unit(200, "lb"),
  24191. name: "Front",
  24192. image: {
  24193. source: "./media/characters/angel/front.svg",
  24194. extra: 1830 / 1737,
  24195. bottom: 22.6 / 1854,
  24196. }
  24197. },
  24198. },
  24199. [
  24200. {
  24201. name: "Normal",
  24202. height: math.unit(7 + 2 / 12, "feet"),
  24203. default: true
  24204. },
  24205. {
  24206. name: "Macro",
  24207. height: math.unit(1000, "feet")
  24208. },
  24209. {
  24210. name: "Megamacro",
  24211. height: math.unit(2, "miles")
  24212. },
  24213. {
  24214. name: "Gigamacro",
  24215. height: math.unit(20, "earths")
  24216. },
  24217. ]
  24218. ))
  24219. characterMakers.push(() => makeCharacter(
  24220. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24221. {
  24222. front: {
  24223. height: math.unit(5, "feet"),
  24224. weight: math.unit(180, "lb"),
  24225. name: "Front",
  24226. image: {
  24227. source: "./media/characters/mekana/front.svg",
  24228. extra: 1671 / 1605,
  24229. bottom: 3.5 / 1691
  24230. }
  24231. },
  24232. side: {
  24233. height: math.unit(5, "feet"),
  24234. weight: math.unit(180, "lb"),
  24235. name: "Side",
  24236. image: {
  24237. source: "./media/characters/mekana/side.svg",
  24238. extra: 1671 / 1605,
  24239. bottom: 3.5 / 1691
  24240. }
  24241. },
  24242. back: {
  24243. height: math.unit(5, "feet"),
  24244. weight: math.unit(180, "lb"),
  24245. name: "Back",
  24246. image: {
  24247. source: "./media/characters/mekana/back.svg",
  24248. extra: 1671 / 1605,
  24249. bottom: 3.5 / 1691
  24250. }
  24251. },
  24252. },
  24253. [
  24254. {
  24255. name: "Normal",
  24256. height: math.unit(5, "feet"),
  24257. default: true
  24258. },
  24259. ]
  24260. ))
  24261. characterMakers.push(() => makeCharacter(
  24262. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24263. {
  24264. front: {
  24265. height: math.unit(4 + 6 / 12, "feet"),
  24266. weight: math.unit(80, "lb"),
  24267. name: "Front",
  24268. image: {
  24269. source: "./media/characters/pixie/front.svg",
  24270. extra: 1924 / 1825,
  24271. bottom: 22.4 / 1946
  24272. }
  24273. },
  24274. },
  24275. [
  24276. {
  24277. name: "Normal",
  24278. height: math.unit(4 + 6 / 12, "feet"),
  24279. default: true
  24280. },
  24281. {
  24282. name: "Macro",
  24283. height: math.unit(40, "feet")
  24284. },
  24285. ]
  24286. ))
  24287. characterMakers.push(() => makeCharacter(
  24288. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24289. {
  24290. front: {
  24291. height: math.unit(2.1, "meters"),
  24292. weight: math.unit(200, "lb"),
  24293. name: "Front",
  24294. image: {
  24295. source: "./media/characters/the-lascivious/front.svg",
  24296. extra: 1 / 0.893,
  24297. bottom: 3.5 / 573.7
  24298. }
  24299. },
  24300. },
  24301. [
  24302. {
  24303. name: "Human Scale",
  24304. height: math.unit(2.1, "meters")
  24305. },
  24306. {
  24307. name: "Wolxi Scale",
  24308. height: math.unit(46.2, "m"),
  24309. default: true
  24310. },
  24311. {
  24312. name: "Boinker of Buildings",
  24313. height: math.unit(10, "km")
  24314. },
  24315. {
  24316. name: "Shagger of Skyscrapers",
  24317. height: math.unit(40, "km")
  24318. },
  24319. {
  24320. name: "Banger of Boroughs",
  24321. height: math.unit(4000, "km")
  24322. },
  24323. {
  24324. name: "Screwer of States",
  24325. height: math.unit(100000, "km")
  24326. },
  24327. {
  24328. name: "Pounder of Planets",
  24329. height: math.unit(2000000, "km")
  24330. },
  24331. ]
  24332. ))
  24333. characterMakers.push(() => makeCharacter(
  24334. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24335. {
  24336. front: {
  24337. height: math.unit(6, "feet"),
  24338. weight: math.unit(150, "lb"),
  24339. name: "Front",
  24340. image: {
  24341. source: "./media/characters/aj/front.svg",
  24342. extra: 2039 / 1562,
  24343. bottom: 40 / 2079
  24344. }
  24345. },
  24346. },
  24347. [
  24348. {
  24349. name: "Normal",
  24350. height: math.unit(11 + 6 / 12, "feet"),
  24351. default: true
  24352. },
  24353. {
  24354. name: "Megamacro",
  24355. height: math.unit(60, "megameters")
  24356. },
  24357. ]
  24358. ))
  24359. characterMakers.push(() => makeCharacter(
  24360. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24361. {
  24362. side: {
  24363. height: math.unit(31 + 8 / 12, "feet"),
  24364. weight: math.unit(75000, "kg"),
  24365. name: "Side",
  24366. image: {
  24367. source: "./media/characters/koros/side.svg",
  24368. extra: 1442 / 1297,
  24369. bottom: 122.7 / 1562
  24370. }
  24371. },
  24372. dicksKingsCrown: {
  24373. height: math.unit(6, "feet"),
  24374. name: "Dicks (King's Crown)",
  24375. image: {
  24376. source: "./media/characters/koros/dicks-kings-crown.svg"
  24377. }
  24378. },
  24379. dicksTailSet: {
  24380. height: math.unit(3, "feet"),
  24381. name: "Dicks (Tail Set)",
  24382. image: {
  24383. source: "./media/characters/koros/dicks-tail-set.svg"
  24384. }
  24385. },
  24386. dickCumming: {
  24387. height: math.unit(7.98, "feet"),
  24388. name: "Dick (Cumming)",
  24389. image: {
  24390. source: "./media/characters/koros/dick-cumming.svg"
  24391. }
  24392. },
  24393. dicksBack: {
  24394. height: math.unit(5.9, "feet"),
  24395. name: "Dicks (Back)",
  24396. image: {
  24397. source: "./media/characters/koros/dicks-back.svg"
  24398. }
  24399. },
  24400. dicksFront: {
  24401. height: math.unit(3.72, "feet"),
  24402. name: "Dicks (Front)",
  24403. image: {
  24404. source: "./media/characters/koros/dicks-front.svg"
  24405. }
  24406. },
  24407. dicksPeeking: {
  24408. height: math.unit(3.0, "feet"),
  24409. name: "Dicks (Peeking)",
  24410. image: {
  24411. source: "./media/characters/koros/dicks-peeking.svg"
  24412. }
  24413. },
  24414. eye: {
  24415. height: math.unit(1.7, "feet"),
  24416. name: "Eye",
  24417. image: {
  24418. source: "./media/characters/koros/eye.svg"
  24419. }
  24420. },
  24421. headFront: {
  24422. height: math.unit(11.69, "feet"),
  24423. name: "Head (Front)",
  24424. image: {
  24425. source: "./media/characters/koros/head-front.svg"
  24426. }
  24427. },
  24428. headSide: {
  24429. height: math.unit(14, "feet"),
  24430. name: "Head (Side)",
  24431. image: {
  24432. source: "./media/characters/koros/head-side.svg"
  24433. }
  24434. },
  24435. leg: {
  24436. height: math.unit(17, "feet"),
  24437. name: "Leg",
  24438. image: {
  24439. source: "./media/characters/koros/leg.svg"
  24440. }
  24441. },
  24442. mawSide: {
  24443. height: math.unit(12.8, "feet"),
  24444. name: "Maw (Side)",
  24445. image: {
  24446. source: "./media/characters/koros/maw-side.svg"
  24447. }
  24448. },
  24449. mawSpitting: {
  24450. height: math.unit(17, "feet"),
  24451. name: "Maw (Spitting)",
  24452. image: {
  24453. source: "./media/characters/koros/maw-spitting.svg"
  24454. }
  24455. },
  24456. slit: {
  24457. height: math.unit(2.8, "feet"),
  24458. name: "Slit",
  24459. image: {
  24460. source: "./media/characters/koros/slit.svg"
  24461. }
  24462. },
  24463. stomach: {
  24464. height: math.unit(6.8, "feet"),
  24465. capacity: math.unit(20, "people"),
  24466. name: "Stomach",
  24467. image: {
  24468. source: "./media/characters/koros/stomach.svg"
  24469. }
  24470. },
  24471. wingspanBottom: {
  24472. height: math.unit(114, "feet"),
  24473. name: "Wingspan (Bottom)",
  24474. image: {
  24475. source: "./media/characters/koros/wingspan-bottom.svg"
  24476. }
  24477. },
  24478. wingspanTop: {
  24479. height: math.unit(104, "feet"),
  24480. name: "Wingspan (Top)",
  24481. image: {
  24482. source: "./media/characters/koros/wingspan-top.svg"
  24483. }
  24484. },
  24485. },
  24486. [
  24487. {
  24488. name: "Normal",
  24489. height: math.unit(31 + 8 / 12, "feet"),
  24490. default: true
  24491. },
  24492. ]
  24493. ))
  24494. characterMakers.push(() => makeCharacter(
  24495. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24496. {
  24497. front: {
  24498. height: math.unit(18 + 5 / 12, "feet"),
  24499. weight: math.unit(3750, "kg"),
  24500. name: "Front",
  24501. image: {
  24502. source: "./media/characters/vexx/front.svg",
  24503. extra: 426 / 396,
  24504. bottom: 31.5 / 458
  24505. }
  24506. },
  24507. maw: {
  24508. height: math.unit(6, "feet"),
  24509. name: "Maw",
  24510. image: {
  24511. source: "./media/characters/vexx/maw.svg"
  24512. }
  24513. },
  24514. },
  24515. [
  24516. {
  24517. name: "Normal",
  24518. height: math.unit(18 + 5 / 12, "feet"),
  24519. default: true
  24520. },
  24521. ]
  24522. ))
  24523. characterMakers.push(() => makeCharacter(
  24524. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24525. {
  24526. front: {
  24527. height: math.unit(17 + 6 / 12, "feet"),
  24528. weight: math.unit(150, "lb"),
  24529. name: "Front",
  24530. image: {
  24531. source: "./media/characters/baadra/front.svg",
  24532. extra: 3137 / 2890,
  24533. bottom: 168.4 / 3305
  24534. }
  24535. },
  24536. back: {
  24537. height: math.unit(17 + 6 / 12, "feet"),
  24538. weight: math.unit(150, "lb"),
  24539. name: "Back",
  24540. image: {
  24541. source: "./media/characters/baadra/back.svg",
  24542. extra: 3142 / 2890,
  24543. bottom: 220 / 3371
  24544. }
  24545. },
  24546. head: {
  24547. height: math.unit(5.45, "feet"),
  24548. name: "Head",
  24549. image: {
  24550. source: "./media/characters/baadra/head.svg"
  24551. }
  24552. },
  24553. headAngry: {
  24554. height: math.unit(4.95, "feet"),
  24555. name: "Head (Angry)",
  24556. image: {
  24557. source: "./media/characters/baadra/head-angry.svg"
  24558. }
  24559. },
  24560. headOpen: {
  24561. height: math.unit(6, "feet"),
  24562. name: "Head (Open)",
  24563. image: {
  24564. source: "./media/characters/baadra/head-open.svg"
  24565. }
  24566. },
  24567. },
  24568. [
  24569. {
  24570. name: "Normal",
  24571. height: math.unit(17 + 6 / 12, "feet"),
  24572. default: true
  24573. },
  24574. ]
  24575. ))
  24576. characterMakers.push(() => makeCharacter(
  24577. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24578. {
  24579. front: {
  24580. height: math.unit(7 + 3 / 12, "feet"),
  24581. weight: math.unit(180, "lb"),
  24582. name: "Front",
  24583. image: {
  24584. source: "./media/characters/juri/front.svg",
  24585. extra: 1401 / 1237,
  24586. bottom: 18.5 / 1418
  24587. }
  24588. },
  24589. side: {
  24590. height: math.unit(7 + 3 / 12, "feet"),
  24591. weight: math.unit(180, "lb"),
  24592. name: "Side",
  24593. image: {
  24594. source: "./media/characters/juri/side.svg",
  24595. extra: 1424 / 1242,
  24596. bottom: 18.5 / 1447
  24597. }
  24598. },
  24599. sitting: {
  24600. height: math.unit(6, "feet"),
  24601. weight: math.unit(180, "lb"),
  24602. name: "Sitting",
  24603. image: {
  24604. source: "./media/characters/juri/sitting.svg",
  24605. extra: 1270 / 1143,
  24606. bottom: 100 / 1343
  24607. }
  24608. },
  24609. back: {
  24610. height: math.unit(7 + 3 / 12, "feet"),
  24611. weight: math.unit(180, "lb"),
  24612. name: "Back",
  24613. image: {
  24614. source: "./media/characters/juri/back.svg",
  24615. extra: 1377 / 1240,
  24616. bottom: 23.7 / 1405
  24617. }
  24618. },
  24619. maw: {
  24620. height: math.unit(2.8, "feet"),
  24621. name: "Maw",
  24622. image: {
  24623. source: "./media/characters/juri/maw.svg"
  24624. }
  24625. },
  24626. stomach: {
  24627. height: math.unit(0.89, "feet"),
  24628. capacity: math.unit(4, "liters"),
  24629. name: "Stomach",
  24630. image: {
  24631. source: "./media/characters/juri/stomach.svg"
  24632. }
  24633. },
  24634. },
  24635. [
  24636. {
  24637. name: "Normal",
  24638. height: math.unit(7 + 3 / 12, "feet"),
  24639. default: true
  24640. },
  24641. ]
  24642. ))
  24643. characterMakers.push(() => makeCharacter(
  24644. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24645. {
  24646. fox: {
  24647. height: math.unit(5 + 6 / 12, "feet"),
  24648. weight: math.unit(140, "lb"),
  24649. name: "Fox",
  24650. image: {
  24651. source: "./media/characters/maxene-sita/fox.svg",
  24652. extra: 146 / 138,
  24653. bottom: 2.1 / 148.19
  24654. }
  24655. },
  24656. kitsune: {
  24657. height: math.unit(10, "feet"),
  24658. weight: math.unit(800, "lb"),
  24659. name: "Kitsune",
  24660. image: {
  24661. source: "./media/characters/maxene-sita/kitsune.svg",
  24662. extra: 185 / 176,
  24663. bottom: 4.7 / 189.9
  24664. }
  24665. },
  24666. },
  24667. [
  24668. {
  24669. name: "Normal",
  24670. height: math.unit(5 + 6 / 12, "feet"),
  24671. default: true
  24672. },
  24673. ]
  24674. ))
  24675. characterMakers.push(() => makeCharacter(
  24676. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24677. {
  24678. front: {
  24679. height: math.unit(3 + 4 / 12, "feet"),
  24680. weight: math.unit(70, "lb"),
  24681. name: "Front",
  24682. image: {
  24683. source: "./media/characters/maia/front.svg",
  24684. extra: 227 / 219.5,
  24685. bottom: 40 / 267
  24686. }
  24687. },
  24688. back: {
  24689. height: math.unit(3 + 4 / 12, "feet"),
  24690. weight: math.unit(70, "lb"),
  24691. name: "Back",
  24692. image: {
  24693. source: "./media/characters/maia/back.svg",
  24694. extra: 237 / 225
  24695. }
  24696. },
  24697. },
  24698. [
  24699. {
  24700. name: "Normal",
  24701. height: math.unit(3 + 4 / 12, "feet"),
  24702. default: true
  24703. },
  24704. ]
  24705. ))
  24706. characterMakers.push(() => makeCharacter(
  24707. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24708. {
  24709. front: {
  24710. height: math.unit(5 + 10 / 12, "feet"),
  24711. weight: math.unit(197, "lb"),
  24712. name: "Front",
  24713. image: {
  24714. source: "./media/characters/jabaro/front.svg",
  24715. extra: 225 / 216,
  24716. bottom: 5.06 / 230
  24717. }
  24718. },
  24719. back: {
  24720. height: math.unit(5 + 10 / 12, "feet"),
  24721. weight: math.unit(197, "lb"),
  24722. name: "Back",
  24723. image: {
  24724. source: "./media/characters/jabaro/back.svg",
  24725. extra: 225 / 219,
  24726. bottom: 1.9 / 227
  24727. }
  24728. },
  24729. },
  24730. [
  24731. {
  24732. name: "Normal",
  24733. height: math.unit(5 + 10 / 12, "feet"),
  24734. default: true
  24735. },
  24736. ]
  24737. ))
  24738. characterMakers.push(() => makeCharacter(
  24739. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24740. {
  24741. front: {
  24742. height: math.unit(5 + 8 / 12, "feet"),
  24743. weight: math.unit(139, "lb"),
  24744. name: "Front",
  24745. image: {
  24746. source: "./media/characters/risa/front.svg",
  24747. extra: 270 / 260,
  24748. bottom: 11.2 / 282
  24749. }
  24750. },
  24751. back: {
  24752. height: math.unit(5 + 8 / 12, "feet"),
  24753. weight: math.unit(139, "lb"),
  24754. name: "Back",
  24755. image: {
  24756. source: "./media/characters/risa/back.svg",
  24757. extra: 264 / 255,
  24758. bottom: 4 / 268
  24759. }
  24760. },
  24761. },
  24762. [
  24763. {
  24764. name: "Normal",
  24765. height: math.unit(5 + 8 / 12, "feet"),
  24766. default: true
  24767. },
  24768. ]
  24769. ))
  24770. characterMakers.push(() => makeCharacter(
  24771. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24772. {
  24773. front: {
  24774. height: math.unit(2 + 11 / 12, "feet"),
  24775. weight: math.unit(30, "lb"),
  24776. name: "Front",
  24777. image: {
  24778. source: "./media/characters/weatley/front.svg",
  24779. bottom: 10.7 / 414,
  24780. extra: 403.5 / 362
  24781. }
  24782. },
  24783. back: {
  24784. height: math.unit(2 + 11 / 12, "feet"),
  24785. weight: math.unit(30, "lb"),
  24786. name: "Back",
  24787. image: {
  24788. source: "./media/characters/weatley/back.svg",
  24789. bottom: 10.7 / 414,
  24790. extra: 403.5 / 362
  24791. }
  24792. },
  24793. },
  24794. [
  24795. {
  24796. name: "Normal",
  24797. height: math.unit(2 + 11 / 12, "feet"),
  24798. default: true
  24799. },
  24800. ]
  24801. ))
  24802. characterMakers.push(() => makeCharacter(
  24803. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24804. {
  24805. front: {
  24806. height: math.unit(5 + 2 / 12, "feet"),
  24807. weight: math.unit(50, "kg"),
  24808. name: "Front",
  24809. image: {
  24810. source: "./media/characters/mercury-crescent/front.svg",
  24811. extra: 1088 / 1033,
  24812. bottom: 18.9 / 1109
  24813. }
  24814. },
  24815. },
  24816. [
  24817. {
  24818. name: "Normal",
  24819. height: math.unit(5 + 2 / 12, "feet"),
  24820. default: true
  24821. },
  24822. ]
  24823. ))
  24824. characterMakers.push(() => makeCharacter(
  24825. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24826. {
  24827. front: {
  24828. height: math.unit(2, "feet"),
  24829. weight: math.unit(15, "kg"),
  24830. name: "Front",
  24831. image: {
  24832. source: "./media/characters/diamond-jones/front.svg",
  24833. bottom: 16 / 568
  24834. }
  24835. },
  24836. },
  24837. [
  24838. {
  24839. name: "Normal",
  24840. height: math.unit(2, "feet"),
  24841. default: true
  24842. },
  24843. ]
  24844. ))
  24845. characterMakers.push(() => makeCharacter(
  24846. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24847. {
  24848. front: {
  24849. height: math.unit(3, "feet"),
  24850. weight: math.unit(30, "kg"),
  24851. name: "Front",
  24852. image: {
  24853. source: "./media/characters/sweet-bit/front.svg",
  24854. extra: 675 / 567,
  24855. bottom: 27.7 / 703
  24856. }
  24857. },
  24858. },
  24859. [
  24860. {
  24861. name: "Normal",
  24862. height: math.unit(3, "feet"),
  24863. default: true
  24864. },
  24865. ]
  24866. ))
  24867. characterMakers.push(() => makeCharacter(
  24868. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24869. {
  24870. side: {
  24871. height: math.unit(9.178, "feet"),
  24872. weight: math.unit(500, "lb"),
  24873. name: "Side",
  24874. image: {
  24875. source: "./media/characters/umbrazen/side.svg",
  24876. extra: 1730 / 1473,
  24877. bottom: 34.6 / 1765
  24878. }
  24879. },
  24880. },
  24881. [
  24882. {
  24883. name: "Normal",
  24884. height: math.unit(9.178, "feet"),
  24885. default: true
  24886. },
  24887. ]
  24888. ))
  24889. characterMakers.push(() => makeCharacter(
  24890. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24891. {
  24892. front: {
  24893. height: math.unit(10, "feet"),
  24894. weight: math.unit(750, "lb"),
  24895. name: "Front",
  24896. image: {
  24897. source: "./media/characters/arlist/front.svg",
  24898. extra: 961 / 778,
  24899. bottom: 6.2 / 986
  24900. }
  24901. },
  24902. },
  24903. [
  24904. {
  24905. name: "Normal",
  24906. height: math.unit(10, "feet"),
  24907. default: true
  24908. },
  24909. ]
  24910. ))
  24911. characterMakers.push(() => makeCharacter(
  24912. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24913. {
  24914. front: {
  24915. height: math.unit(5 + 1 / 12, "feet"),
  24916. weight: math.unit(110, "lb"),
  24917. name: "Front",
  24918. image: {
  24919. source: "./media/characters/aradel/front.svg",
  24920. extra: 324 / 303,
  24921. bottom: 3.6 / 329.4
  24922. }
  24923. },
  24924. },
  24925. [
  24926. {
  24927. name: "Normal",
  24928. height: math.unit(5 + 1 / 12, "feet"),
  24929. default: true
  24930. },
  24931. ]
  24932. ))
  24933. characterMakers.push(() => makeCharacter(
  24934. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24935. {
  24936. front: {
  24937. height: math.unit(3 + 8 / 12, "feet"),
  24938. weight: math.unit(50, "lb"),
  24939. name: "Front",
  24940. image: {
  24941. source: "./media/characters/serryn/front.svg",
  24942. extra: 1792 / 1656,
  24943. bottom: 43.5 / 1840
  24944. }
  24945. },
  24946. },
  24947. [
  24948. {
  24949. name: "Normal",
  24950. height: math.unit(3 + 8 / 12, "feet"),
  24951. default: true
  24952. },
  24953. ]
  24954. ))
  24955. characterMakers.push(() => makeCharacter(
  24956. { name: "Xavier Thyme" },
  24957. {
  24958. front: {
  24959. height: math.unit(7 + 10 / 12, "feet"),
  24960. weight: math.unit(255, "lb"),
  24961. name: "Front",
  24962. image: {
  24963. source: "./media/characters/xavier-thyme/front.svg",
  24964. extra: 3733 / 3642,
  24965. bottom: 131 / 3869
  24966. }
  24967. },
  24968. frontRaven: {
  24969. height: math.unit(7 + 10 / 12, "feet"),
  24970. weight: math.unit(255, "lb"),
  24971. name: "Front (Raven)",
  24972. image: {
  24973. source: "./media/characters/xavier-thyme/front-raven.svg",
  24974. extra: 4385 / 3642,
  24975. bottom: 131 / 4517
  24976. }
  24977. },
  24978. },
  24979. [
  24980. {
  24981. name: "Normal",
  24982. height: math.unit(7 + 10 / 12, "feet"),
  24983. default: true
  24984. },
  24985. ]
  24986. ))
  24987. characterMakers.push(() => makeCharacter(
  24988. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24989. {
  24990. front: {
  24991. height: math.unit(1.6, "m"),
  24992. weight: math.unit(50, "kg"),
  24993. name: "Front",
  24994. image: {
  24995. source: "./media/characters/kiki/front.svg",
  24996. extra: 4682 / 3610,
  24997. bottom: 115 / 4777
  24998. }
  24999. },
  25000. },
  25001. [
  25002. {
  25003. name: "Normal",
  25004. height: math.unit(1.6, "meters"),
  25005. default: true
  25006. },
  25007. ]
  25008. ))
  25009. characterMakers.push(() => makeCharacter(
  25010. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25011. {
  25012. front: {
  25013. height: math.unit(50, "m"),
  25014. weight: math.unit(500, "tonnes"),
  25015. name: "Front",
  25016. image: {
  25017. source: "./media/characters/ryoko/front.svg",
  25018. extra: 4632 / 3926,
  25019. bottom: 193 / 4823
  25020. }
  25021. },
  25022. },
  25023. [
  25024. {
  25025. name: "Normal",
  25026. height: math.unit(50, "meters"),
  25027. default: true
  25028. },
  25029. ]
  25030. ))
  25031. characterMakers.push(() => makeCharacter(
  25032. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25033. {
  25034. front: {
  25035. height: math.unit(30, "m"),
  25036. weight: math.unit(22, "tonnes"),
  25037. name: "Front",
  25038. image: {
  25039. source: "./media/characters/elio/front.svg",
  25040. extra: 4582 / 3720,
  25041. bottom: 236 / 4828
  25042. }
  25043. },
  25044. },
  25045. [
  25046. {
  25047. name: "Normal",
  25048. height: math.unit(30, "meters"),
  25049. default: true
  25050. },
  25051. ]
  25052. ))
  25053. characterMakers.push(() => makeCharacter(
  25054. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25055. {
  25056. front: {
  25057. height: math.unit(6 + 3 / 12, "feet"),
  25058. weight: math.unit(120, "lb"),
  25059. name: "Front",
  25060. image: {
  25061. source: "./media/characters/azura/front.svg",
  25062. extra: 1149 / 1135,
  25063. bottom: 45 / 1194
  25064. }
  25065. },
  25066. frontClothed: {
  25067. height: math.unit(6 + 3 / 12, "feet"),
  25068. weight: math.unit(120, "lb"),
  25069. name: "Front (Clothed)",
  25070. image: {
  25071. source: "./media/characters/azura/front-clothed.svg",
  25072. extra: 1149 / 1135,
  25073. bottom: 45 / 1194
  25074. }
  25075. },
  25076. },
  25077. [
  25078. {
  25079. name: "Normal",
  25080. height: math.unit(6 + 3 / 12, "feet"),
  25081. default: true
  25082. },
  25083. {
  25084. name: "Macro",
  25085. height: math.unit(20 + 6 / 12, "feet")
  25086. },
  25087. {
  25088. name: "Megamacro",
  25089. height: math.unit(12, "miles")
  25090. },
  25091. {
  25092. name: "Gigamacro",
  25093. height: math.unit(10000, "miles")
  25094. },
  25095. {
  25096. name: "Teramacro",
  25097. height: math.unit(900000, "miles")
  25098. },
  25099. ]
  25100. ))
  25101. characterMakers.push(() => makeCharacter(
  25102. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25103. {
  25104. front: {
  25105. height: math.unit(12, "feet"),
  25106. weight: math.unit(1, "ton"),
  25107. capacity: math.unit(660000, "gallons"),
  25108. name: "Front",
  25109. image: {
  25110. source: "./media/characters/zeus/front.svg",
  25111. extra: 5005 / 4717,
  25112. bottom: 363 / 5388
  25113. }
  25114. },
  25115. },
  25116. [
  25117. {
  25118. name: "Normal",
  25119. height: math.unit(12, "feet")
  25120. },
  25121. {
  25122. name: "Preferred Size",
  25123. height: math.unit(0.5, "miles"),
  25124. default: true
  25125. },
  25126. {
  25127. name: "Giga Horse",
  25128. height: math.unit(300, "miles")
  25129. },
  25130. {
  25131. name: "Riding Planets",
  25132. height: math.unit(30, "megameters")
  25133. },
  25134. {
  25135. name: "Cosmic Giant",
  25136. height: math.unit(3, "zettameters")
  25137. },
  25138. {
  25139. name: "Breeding God",
  25140. height: math.unit(9.92e22, "yottameters")
  25141. },
  25142. ]
  25143. ))
  25144. characterMakers.push(() => makeCharacter(
  25145. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25146. {
  25147. side: {
  25148. height: math.unit(9, "feet"),
  25149. weight: math.unit(1500, "kg"),
  25150. name: "Side",
  25151. image: {
  25152. source: "./media/characters/fang/side.svg",
  25153. extra: 924 / 866,
  25154. bottom: 47.5 / 972.3
  25155. }
  25156. },
  25157. },
  25158. [
  25159. {
  25160. name: "Normal",
  25161. height: math.unit(9, "feet"),
  25162. default: true
  25163. },
  25164. {
  25165. name: "Macro",
  25166. height: math.unit(75 + 6 / 12, "feet")
  25167. },
  25168. {
  25169. name: "Teramacro",
  25170. height: math.unit(50000, "miles")
  25171. },
  25172. ]
  25173. ))
  25174. characterMakers.push(() => makeCharacter(
  25175. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25176. {
  25177. front: {
  25178. height: math.unit(10, "feet"),
  25179. weight: math.unit(2, "tons"),
  25180. name: "Front",
  25181. image: {
  25182. source: "./media/characters/rekhit/front.svg",
  25183. extra: 2796 / 2590,
  25184. bottom: 225 / 3022
  25185. }
  25186. },
  25187. },
  25188. [
  25189. {
  25190. name: "Normal",
  25191. height: math.unit(10, "feet"),
  25192. default: true
  25193. },
  25194. {
  25195. name: "Macro",
  25196. height: math.unit(500, "feet")
  25197. },
  25198. ]
  25199. ))
  25200. characterMakers.push(() => makeCharacter(
  25201. { name: "Dahlia Verrick" },
  25202. {
  25203. front: {
  25204. height: math.unit(7 + 6.451 / 12, "feet"),
  25205. weight: math.unit(310, "lb"),
  25206. name: "Front",
  25207. image: {
  25208. source: "./media/characters/dahlia-verrick/front.svg",
  25209. extra: 1488 / 1365,
  25210. bottom: 6.2 / 1495
  25211. }
  25212. },
  25213. back: {
  25214. height: math.unit(7 + 6.451 / 12, "feet"),
  25215. weight: math.unit(310, "lb"),
  25216. name: "Back",
  25217. image: {
  25218. source: "./media/characters/dahlia-verrick/back.svg",
  25219. extra: 1472 / 1351,
  25220. bottom: 5.28 / 1477
  25221. }
  25222. },
  25223. frontBusiness: {
  25224. height: math.unit(7 + 6.451 / 12, "feet"),
  25225. weight: math.unit(200, "lb"),
  25226. name: "Front (Business)",
  25227. image: {
  25228. source: "./media/characters/dahlia-verrick/front-business.svg",
  25229. extra: 1478 / 1381,
  25230. bottom: 5.5 / 1484
  25231. }
  25232. },
  25233. frontCasual: {
  25234. height: math.unit(7 + 6.451 / 12, "feet"),
  25235. weight: math.unit(200, "lb"),
  25236. name: "Front (Casual)",
  25237. image: {
  25238. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25239. extra: 1478 / 1381,
  25240. bottom: 5.5 / 1484
  25241. }
  25242. },
  25243. },
  25244. [
  25245. {
  25246. name: "Travel-Sized",
  25247. height: math.unit(7.45, "inches")
  25248. },
  25249. {
  25250. name: "Normal",
  25251. height: math.unit(7 + 6.451 / 12, "feet"),
  25252. default: true
  25253. },
  25254. {
  25255. name: "Hitting the Town",
  25256. height: math.unit(37 + 8 / 12, "feet")
  25257. },
  25258. {
  25259. name: "Stomp in the Suburbs",
  25260. height: math.unit(964 + 9.728 / 12, "feet")
  25261. },
  25262. {
  25263. name: "Sit on the City",
  25264. height: math.unit(61747 + 10.592 / 12, "feet")
  25265. },
  25266. {
  25267. name: "Glomp the Globe",
  25268. height: math.unit(252919327 + 4.832 / 12, "feet")
  25269. },
  25270. ]
  25271. ))
  25272. characterMakers.push(() => makeCharacter(
  25273. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25274. {
  25275. front: {
  25276. height: math.unit(6 + 4 / 12, "feet"),
  25277. weight: math.unit(320, "lb"),
  25278. name: "Front",
  25279. image: {
  25280. source: "./media/characters/balina-mahigan/front.svg",
  25281. extra: 447 / 428,
  25282. bottom: 18 / 466
  25283. }
  25284. },
  25285. back: {
  25286. height: math.unit(6 + 4 / 12, "feet"),
  25287. weight: math.unit(320, "lb"),
  25288. name: "Back",
  25289. image: {
  25290. source: "./media/characters/balina-mahigan/back.svg",
  25291. extra: 445 / 428,
  25292. bottom: 4.07 / 448
  25293. }
  25294. },
  25295. arm: {
  25296. height: math.unit(1.88, "feet"),
  25297. name: "Arm",
  25298. image: {
  25299. source: "./media/characters/balina-mahigan/arm.svg"
  25300. }
  25301. },
  25302. backPort: {
  25303. height: math.unit(0.685, "feet"),
  25304. name: "Back Port",
  25305. image: {
  25306. source: "./media/characters/balina-mahigan/back-port.svg"
  25307. }
  25308. },
  25309. hoofpaw: {
  25310. height: math.unit(1.41, "feet"),
  25311. name: "Hoofpaw",
  25312. image: {
  25313. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25314. }
  25315. },
  25316. leftHandBack: {
  25317. height: math.unit(0.938, "feet"),
  25318. name: "Left Hand (Back)",
  25319. image: {
  25320. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25321. }
  25322. },
  25323. leftHandFront: {
  25324. height: math.unit(0.938, "feet"),
  25325. name: "Left Hand (Front)",
  25326. image: {
  25327. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25328. }
  25329. },
  25330. rightHandBack: {
  25331. height: math.unit(0.95, "feet"),
  25332. name: "Right Hand (Back)",
  25333. image: {
  25334. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25335. }
  25336. },
  25337. rightHandFront: {
  25338. height: math.unit(0.95, "feet"),
  25339. name: "Right Hand (Front)",
  25340. image: {
  25341. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25342. }
  25343. },
  25344. },
  25345. [
  25346. {
  25347. name: "Normal",
  25348. height: math.unit(6 + 4 / 12, "feet"),
  25349. default: true
  25350. },
  25351. ]
  25352. ))
  25353. characterMakers.push(() => makeCharacter(
  25354. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25355. {
  25356. front: {
  25357. height: math.unit(6, "feet"),
  25358. weight: math.unit(320, "lb"),
  25359. name: "Front",
  25360. image: {
  25361. source: "./media/characters/balina-mejeri/front.svg",
  25362. extra: 517 / 488,
  25363. bottom: 44.2 / 561
  25364. }
  25365. },
  25366. },
  25367. [
  25368. {
  25369. name: "Normal",
  25370. height: math.unit(6 + 4 / 12, "feet")
  25371. },
  25372. {
  25373. name: "Business",
  25374. height: math.unit(155, "feet"),
  25375. default: true
  25376. },
  25377. ]
  25378. ))
  25379. characterMakers.push(() => makeCharacter(
  25380. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25381. {
  25382. kneeling: {
  25383. height: math.unit(6 + 4 / 12, "feet"),
  25384. weight: math.unit(300 * 20, "lb"),
  25385. name: "Kneeling",
  25386. image: {
  25387. source: "./media/characters/balbarian/kneeling.svg",
  25388. extra: 922 / 862,
  25389. bottom: 42.4 / 965
  25390. }
  25391. },
  25392. },
  25393. [
  25394. {
  25395. name: "Normal",
  25396. height: math.unit(6 + 4 / 12, "feet")
  25397. },
  25398. {
  25399. name: "Treasured",
  25400. height: math.unit(18 + 9 / 12, "feet"),
  25401. default: true
  25402. },
  25403. {
  25404. name: "Macro",
  25405. height: math.unit(900, "feet")
  25406. },
  25407. ]
  25408. ))
  25409. characterMakers.push(() => makeCharacter(
  25410. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25411. {
  25412. front: {
  25413. height: math.unit(6 + 4 / 12, "feet"),
  25414. weight: math.unit(325, "lb"),
  25415. name: "Front",
  25416. image: {
  25417. source: "./media/characters/balina-amarini/front.svg",
  25418. extra: 415 / 403,
  25419. bottom: 19 / 433.4
  25420. }
  25421. },
  25422. back: {
  25423. height: math.unit(6 + 4 / 12, "feet"),
  25424. weight: math.unit(325, "lb"),
  25425. name: "Back",
  25426. image: {
  25427. source: "./media/characters/balina-amarini/back.svg",
  25428. extra: 415 / 403,
  25429. bottom: 13.5 / 432
  25430. }
  25431. },
  25432. overdrive: {
  25433. height: math.unit(6 + 4 / 12, "feet"),
  25434. weight: math.unit(400, "lb"),
  25435. name: "Overdrive",
  25436. image: {
  25437. source: "./media/characters/balina-amarini/overdrive.svg",
  25438. extra: 269 / 259,
  25439. bottom: 12 / 282
  25440. }
  25441. },
  25442. },
  25443. [
  25444. {
  25445. name: "Boom",
  25446. height: math.unit(9 + 10 / 12, "feet"),
  25447. default: true
  25448. },
  25449. {
  25450. name: "Macro",
  25451. height: math.unit(280, "feet")
  25452. },
  25453. ]
  25454. ))
  25455. characterMakers.push(() => makeCharacter(
  25456. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25457. {
  25458. goddess: {
  25459. height: math.unit(600, "feet"),
  25460. weight: math.unit(2000000, "tons"),
  25461. name: "Goddess",
  25462. image: {
  25463. source: "./media/characters/lady-kubwa/goddess.svg",
  25464. extra: 1240.5 / 1223,
  25465. bottom: 22 / 1263
  25466. }
  25467. },
  25468. goddesser: {
  25469. height: math.unit(900, "feet"),
  25470. weight: math.unit(20000000, "lb"),
  25471. name: "Goddess-er",
  25472. image: {
  25473. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25474. extra: 899 / 888,
  25475. bottom: 12.6 / 912
  25476. }
  25477. },
  25478. },
  25479. [
  25480. {
  25481. name: "Macro",
  25482. height: math.unit(600, "feet"),
  25483. default: true
  25484. },
  25485. {
  25486. name: "Megamacro",
  25487. height: math.unit(250, "miles")
  25488. },
  25489. ]
  25490. ))
  25491. characterMakers.push(() => makeCharacter(
  25492. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25493. {
  25494. front: {
  25495. height: math.unit(7 + 7 / 12, "feet"),
  25496. weight: math.unit(250, "lb"),
  25497. name: "Front",
  25498. image: {
  25499. source: "./media/characters/tala-grovehorn/front.svg",
  25500. extra: 2636 / 2525,
  25501. bottom: 147 / 2781
  25502. }
  25503. },
  25504. back: {
  25505. height: math.unit(7 + 7 / 12, "feet"),
  25506. weight: math.unit(250, "lb"),
  25507. name: "Back",
  25508. image: {
  25509. source: "./media/characters/tala-grovehorn/back.svg",
  25510. extra: 2635 / 2539,
  25511. bottom: 100 / 2732.8
  25512. }
  25513. },
  25514. mouth: {
  25515. height: math.unit(1.15, "feet"),
  25516. name: "Mouth",
  25517. image: {
  25518. source: "./media/characters/tala-grovehorn/mouth.svg"
  25519. }
  25520. },
  25521. dick: {
  25522. height: math.unit(2.36, "feet"),
  25523. name: "Dick",
  25524. image: {
  25525. source: "./media/characters/tala-grovehorn/dick.svg"
  25526. }
  25527. },
  25528. slit: {
  25529. height: math.unit(0.61, "feet"),
  25530. name: "Slit",
  25531. image: {
  25532. source: "./media/characters/tala-grovehorn/slit.svg"
  25533. }
  25534. },
  25535. },
  25536. [
  25537. ]
  25538. ))
  25539. characterMakers.push(() => makeCharacter(
  25540. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25541. {
  25542. front: {
  25543. height: math.unit(7 + 7 / 12, "feet"),
  25544. weight: math.unit(225, "lb"),
  25545. name: "Front",
  25546. image: {
  25547. source: "./media/characters/epona/front.svg",
  25548. extra: 2445 / 2290,
  25549. bottom: 251 / 2696
  25550. }
  25551. },
  25552. back: {
  25553. height: math.unit(7 + 7 / 12, "feet"),
  25554. weight: math.unit(225, "lb"),
  25555. name: "Back",
  25556. image: {
  25557. source: "./media/characters/epona/back.svg",
  25558. extra: 2546 / 2408,
  25559. bottom: 44 / 2589
  25560. }
  25561. },
  25562. genitals: {
  25563. height: math.unit(1.5, "feet"),
  25564. name: "Genitals",
  25565. image: {
  25566. source: "./media/characters/epona/genitals.svg"
  25567. }
  25568. },
  25569. },
  25570. [
  25571. {
  25572. name: "Normal",
  25573. height: math.unit(7 + 7 / 12, "feet")
  25574. },
  25575. ]
  25576. ))
  25577. characterMakers.push(() => makeCharacter(
  25578. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25579. {
  25580. front: {
  25581. height: math.unit(7, "feet"),
  25582. weight: math.unit(518, "lb"),
  25583. name: "Front",
  25584. image: {
  25585. source: "./media/characters/avia-bloodbourn/front.svg",
  25586. extra: 1466 / 1350,
  25587. bottom: 65 / 1527
  25588. }
  25589. },
  25590. },
  25591. [
  25592. ]
  25593. ))
  25594. characterMakers.push(() => makeCharacter(
  25595. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25596. {
  25597. front: {
  25598. height: math.unit(9.35, "feet"),
  25599. weight: math.unit(600, "lb"),
  25600. name: "Front",
  25601. image: {
  25602. source: "./media/characters/amera/front.svg",
  25603. extra: 891 / 818,
  25604. bottom: 30 / 922.7
  25605. }
  25606. },
  25607. back: {
  25608. height: math.unit(9.35, "feet"),
  25609. weight: math.unit(600, "lb"),
  25610. name: "Back",
  25611. image: {
  25612. source: "./media/characters/amera/back.svg",
  25613. extra: 876 / 824,
  25614. bottom: 6.8 / 884
  25615. }
  25616. },
  25617. dick: {
  25618. height: math.unit(2.14, "feet"),
  25619. name: "Dick",
  25620. image: {
  25621. source: "./media/characters/amera/dick.svg"
  25622. }
  25623. },
  25624. },
  25625. [
  25626. {
  25627. name: "Normal",
  25628. height: math.unit(9.35, "feet"),
  25629. default: true
  25630. },
  25631. ]
  25632. ))
  25633. characterMakers.push(() => makeCharacter(
  25634. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25635. {
  25636. kneeling: {
  25637. height: math.unit(3 + 4 / 12, "feet"),
  25638. weight: math.unit(90, "lb"),
  25639. name: "Kneeling",
  25640. image: {
  25641. source: "./media/characters/rosewen/kneeling.svg",
  25642. extra: 1835 / 1571,
  25643. bottom: 27.7 / 1862
  25644. }
  25645. },
  25646. },
  25647. [
  25648. {
  25649. name: "Normal",
  25650. height: math.unit(3 + 4 / 12, "feet"),
  25651. default: true
  25652. },
  25653. ]
  25654. ))
  25655. characterMakers.push(() => makeCharacter(
  25656. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25657. {
  25658. front: {
  25659. height: math.unit(5 + 10 / 12, "feet"),
  25660. weight: math.unit(200, "lb"),
  25661. name: "Front",
  25662. image: {
  25663. source: "./media/characters/sabah/front.svg",
  25664. extra: 849 / 763,
  25665. bottom: 33.9 / 881
  25666. }
  25667. },
  25668. },
  25669. [
  25670. {
  25671. name: "Normal",
  25672. height: math.unit(5 + 10 / 12, "feet"),
  25673. default: true
  25674. },
  25675. ]
  25676. ))
  25677. characterMakers.push(() => makeCharacter(
  25678. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25679. {
  25680. front: {
  25681. height: math.unit(3 + 5 / 12, "feet"),
  25682. weight: math.unit(40, "kg"),
  25683. name: "Front",
  25684. image: {
  25685. source: "./media/characters/purple-flame/front.svg",
  25686. extra: 1577 / 1412,
  25687. bottom: 97 / 1694
  25688. }
  25689. },
  25690. frontDressed: {
  25691. height: math.unit(3 + 5 / 12, "feet"),
  25692. weight: math.unit(40, "kg"),
  25693. name: "Front (Dressed)",
  25694. image: {
  25695. source: "./media/characters/purple-flame/front-dressed.svg",
  25696. extra: 1577 / 1412,
  25697. bottom: 97 / 1694
  25698. }
  25699. },
  25700. headphones: {
  25701. height: math.unit(0.85, "feet"),
  25702. name: "Headphones",
  25703. image: {
  25704. source: "./media/characters/purple-flame/headphones.svg"
  25705. }
  25706. },
  25707. },
  25708. [
  25709. {
  25710. name: "Really Small",
  25711. height: math.unit(5, "cm")
  25712. },
  25713. {
  25714. name: "Micro",
  25715. height: math.unit(1 + 5 / 12, "feet")
  25716. },
  25717. {
  25718. name: "Normal",
  25719. height: math.unit(3 + 5 / 12, "feet"),
  25720. default: true
  25721. },
  25722. {
  25723. name: "Minimacro",
  25724. height: math.unit(125, "feet")
  25725. },
  25726. {
  25727. name: "Macro",
  25728. height: math.unit(0.5, "miles")
  25729. },
  25730. {
  25731. name: "Megamacro",
  25732. height: math.unit(50, "miles")
  25733. },
  25734. {
  25735. name: "Gigantic",
  25736. height: math.unit(750, "miles")
  25737. },
  25738. {
  25739. name: "Planetary",
  25740. height: math.unit(15000, "miles")
  25741. },
  25742. ]
  25743. ))
  25744. characterMakers.push(() => makeCharacter(
  25745. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25746. {
  25747. front: {
  25748. height: math.unit(14, "feet"),
  25749. weight: math.unit(959, "lb"),
  25750. name: "Front",
  25751. image: {
  25752. source: "./media/characters/arsenal/front.svg",
  25753. extra: 2357 / 2157,
  25754. bottom: 93 / 2458
  25755. }
  25756. },
  25757. },
  25758. [
  25759. {
  25760. name: "Normal",
  25761. height: math.unit(14, "feet"),
  25762. default: true
  25763. },
  25764. ]
  25765. ))
  25766. characterMakers.push(() => makeCharacter(
  25767. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25768. {
  25769. front: {
  25770. height: math.unit(6, "feet"),
  25771. weight: math.unit(150, "lb"),
  25772. name: "Front",
  25773. image: {
  25774. source: "./media/characters/adira/front.svg",
  25775. extra: 1078 / 1029,
  25776. bottom: 87 / 1166
  25777. }
  25778. },
  25779. },
  25780. [
  25781. {
  25782. name: "Micro",
  25783. height: math.unit(4, "inches"),
  25784. default: true
  25785. },
  25786. {
  25787. name: "Macro",
  25788. height: math.unit(50, "feet")
  25789. },
  25790. ]
  25791. ))
  25792. characterMakers.push(() => makeCharacter(
  25793. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25794. {
  25795. front: {
  25796. height: math.unit(16, "feet"),
  25797. weight: math.unit(1000, "lb"),
  25798. name: "Front",
  25799. image: {
  25800. source: "./media/characters/grim/front.svg",
  25801. extra: 622 / 614,
  25802. bottom: 18.1 / 642
  25803. }
  25804. },
  25805. back: {
  25806. height: math.unit(16, "feet"),
  25807. weight: math.unit(1000, "lb"),
  25808. name: "Back",
  25809. image: {
  25810. source: "./media/characters/grim/back.svg",
  25811. extra: 610.6 / 602,
  25812. bottom: 40.8 / 652
  25813. }
  25814. },
  25815. hunched: {
  25816. height: math.unit(9.75, "feet"),
  25817. weight: math.unit(1000, "lb"),
  25818. name: "Hunched",
  25819. image: {
  25820. source: "./media/characters/grim/hunched.svg",
  25821. extra: 304 / 297,
  25822. bottom: 35.4 / 394
  25823. }
  25824. },
  25825. },
  25826. [
  25827. {
  25828. name: "Normal",
  25829. height: math.unit(16, "feet"),
  25830. default: true
  25831. },
  25832. ]
  25833. ))
  25834. characterMakers.push(() => makeCharacter(
  25835. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25836. {
  25837. front: {
  25838. height: math.unit(2.3, "meters"),
  25839. weight: math.unit(300, "lb"),
  25840. name: "Front",
  25841. image: {
  25842. source: "./media/characters/sinja/front-sfw.svg",
  25843. extra: 1393 / 1294,
  25844. bottom: 70 / 1463
  25845. }
  25846. },
  25847. frontNsfw: {
  25848. height: math.unit(2.3, "meters"),
  25849. weight: math.unit(300, "lb"),
  25850. name: "Front (NSFW)",
  25851. image: {
  25852. source: "./media/characters/sinja/front-nsfw.svg",
  25853. extra: 1393 / 1294,
  25854. bottom: 70 / 1463
  25855. }
  25856. },
  25857. back: {
  25858. height: math.unit(2.3, "meters"),
  25859. weight: math.unit(300, "lb"),
  25860. name: "Back",
  25861. image: {
  25862. source: "./media/characters/sinja/back.svg",
  25863. extra: 1393 / 1294,
  25864. bottom: 70 / 1463
  25865. }
  25866. },
  25867. head: {
  25868. height: math.unit(1.771, "feet"),
  25869. name: "Head",
  25870. image: {
  25871. source: "./media/characters/sinja/head.svg"
  25872. }
  25873. },
  25874. slit: {
  25875. height: math.unit(0.8, "feet"),
  25876. name: "Slit",
  25877. image: {
  25878. source: "./media/characters/sinja/slit.svg"
  25879. }
  25880. },
  25881. },
  25882. [
  25883. {
  25884. name: "Normal",
  25885. height: math.unit(2.3, "meters")
  25886. },
  25887. {
  25888. name: "Macro",
  25889. height: math.unit(91, "meters"),
  25890. default: true
  25891. },
  25892. {
  25893. name: "Megamacro",
  25894. height: math.unit(91440, "meters")
  25895. },
  25896. {
  25897. name: "Gigamacro",
  25898. height: math.unit(60960000, "meters")
  25899. },
  25900. {
  25901. name: "Teramacro",
  25902. height: math.unit(9144000000, "meters")
  25903. },
  25904. ]
  25905. ))
  25906. characterMakers.push(() => makeCharacter(
  25907. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25908. {
  25909. front: {
  25910. height: math.unit(1.7, "meters"),
  25911. weight: math.unit(130, "lb"),
  25912. name: "Front",
  25913. image: {
  25914. source: "./media/characters/kyu/front.svg",
  25915. extra: 415 / 395,
  25916. bottom: 5 / 420
  25917. }
  25918. },
  25919. head: {
  25920. height: math.unit(1.75, "feet"),
  25921. name: "Head",
  25922. image: {
  25923. source: "./media/characters/kyu/head.svg"
  25924. }
  25925. },
  25926. foot: {
  25927. height: math.unit(0.81, "feet"),
  25928. name: "Foot",
  25929. image: {
  25930. source: "./media/characters/kyu/foot.svg"
  25931. }
  25932. },
  25933. },
  25934. [
  25935. {
  25936. name: "Normal",
  25937. height: math.unit(1.7, "meters")
  25938. },
  25939. {
  25940. name: "Macro",
  25941. height: math.unit(131, "feet"),
  25942. default: true
  25943. },
  25944. {
  25945. name: "Megamacro",
  25946. height: math.unit(91440, "meters")
  25947. },
  25948. {
  25949. name: "Gigamacro",
  25950. height: math.unit(60960000, "meters")
  25951. },
  25952. {
  25953. name: "Teramacro",
  25954. height: math.unit(9144000000, "meters")
  25955. },
  25956. ]
  25957. ))
  25958. characterMakers.push(() => makeCharacter(
  25959. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  25960. {
  25961. front: {
  25962. height: math.unit(7 + 1 / 12, "feet"),
  25963. weight: math.unit(250, "lb"),
  25964. name: "Front",
  25965. image: {
  25966. source: "./media/characters/joey/front.svg",
  25967. extra: 1791 / 1537,
  25968. bottom: 28 / 1816
  25969. }
  25970. },
  25971. },
  25972. [
  25973. {
  25974. name: "Micro",
  25975. height: math.unit(3, "inches")
  25976. },
  25977. {
  25978. name: "Normal",
  25979. height: math.unit(7 + 1 / 12, "feet"),
  25980. default: true
  25981. },
  25982. ]
  25983. ))
  25984. characterMakers.push(() => makeCharacter(
  25985. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  25986. {
  25987. front: {
  25988. height: math.unit(165, "cm"),
  25989. weight: math.unit(140, "lb"),
  25990. name: "Front",
  25991. image: {
  25992. source: "./media/characters/sam-evans/front.svg",
  25993. extra: 3417 / 3230,
  25994. bottom: 41.3 / 3417
  25995. }
  25996. },
  25997. frontSixTails: {
  25998. height: math.unit(165, "cm"),
  25999. weight: math.unit(140, "lb"),
  26000. name: "Front-six-tails",
  26001. image: {
  26002. source: "./media/characters/sam-evans/front-six-tails.svg",
  26003. extra: 3417 / 3230,
  26004. bottom: 41.3 / 3417
  26005. }
  26006. },
  26007. back: {
  26008. height: math.unit(165, "cm"),
  26009. weight: math.unit(140, "lb"),
  26010. name: "Back",
  26011. image: {
  26012. source: "./media/characters/sam-evans/back.svg",
  26013. extra: 3227 / 3032,
  26014. bottom: 6.8 / 3234
  26015. }
  26016. },
  26017. face: {
  26018. height: math.unit(0.68, "feet"),
  26019. name: "Face",
  26020. image: {
  26021. source: "./media/characters/sam-evans/face.svg"
  26022. }
  26023. },
  26024. },
  26025. [
  26026. {
  26027. name: "Normal",
  26028. height: math.unit(165, "cm"),
  26029. default: true
  26030. },
  26031. {
  26032. name: "Macro",
  26033. height: math.unit(100, "meters")
  26034. },
  26035. {
  26036. name: "Macro+",
  26037. height: math.unit(800, "meters")
  26038. },
  26039. {
  26040. name: "Macro++",
  26041. height: math.unit(3, "km")
  26042. },
  26043. {
  26044. name: "Macro+++",
  26045. height: math.unit(30, "km")
  26046. },
  26047. ]
  26048. ))
  26049. characterMakers.push(() => makeCharacter(
  26050. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26051. {
  26052. front: {
  26053. height: math.unit(10, "feet"),
  26054. weight: math.unit(750, "lb"),
  26055. name: "Front",
  26056. image: {
  26057. source: "./media/characters/juliet-a/front.svg",
  26058. extra: 1766 / 1720,
  26059. bottom: 43 / 1809
  26060. }
  26061. },
  26062. back: {
  26063. height: math.unit(10, "feet"),
  26064. weight: math.unit(750, "lb"),
  26065. name: "Back",
  26066. image: {
  26067. source: "./media/characters/juliet-a/back.svg",
  26068. extra: 1781 / 1734,
  26069. bottom: 35 / 1810,
  26070. }
  26071. },
  26072. },
  26073. [
  26074. {
  26075. name: "Normal",
  26076. height: math.unit(10, "feet"),
  26077. default: true
  26078. },
  26079. {
  26080. name: "Dragon Form",
  26081. height: math.unit(250, "feet")
  26082. },
  26083. {
  26084. name: "Macro",
  26085. height: math.unit(1000, "feet")
  26086. },
  26087. {
  26088. name: "Megamacro",
  26089. height: math.unit(10000, "feet")
  26090. }
  26091. ]
  26092. ))
  26093. characterMakers.push(() => makeCharacter(
  26094. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26095. {
  26096. regular: {
  26097. height: math.unit(7 + 3 / 12, "feet"),
  26098. weight: math.unit(260, "lb"),
  26099. name: "Regular",
  26100. image: {
  26101. source: "./media/characters/wild/regular.svg",
  26102. extra: 97.45 / 92,
  26103. bottom: 6.8 / 104.3
  26104. }
  26105. },
  26106. biggums: {
  26107. height: math.unit(8 + 6 / 12, "feet"),
  26108. weight: math.unit(425, "lb"),
  26109. name: "Biggums",
  26110. image: {
  26111. source: "./media/characters/wild/biggums.svg",
  26112. extra: 97.45 / 92,
  26113. bottom: 7.5 / 132.34
  26114. }
  26115. },
  26116. mawRegular: {
  26117. height: math.unit(1.24, "feet"),
  26118. name: "Maw (Regular)",
  26119. image: {
  26120. source: "./media/characters/wild/maw.svg"
  26121. }
  26122. },
  26123. mawBiggums: {
  26124. height: math.unit(1.47, "feet"),
  26125. name: "Maw (Biggums)",
  26126. image: {
  26127. source: "./media/characters/wild/maw.svg"
  26128. }
  26129. },
  26130. },
  26131. [
  26132. {
  26133. name: "Normal",
  26134. height: math.unit(7 + 3 / 12, "feet"),
  26135. default: true
  26136. },
  26137. ]
  26138. ))
  26139. characterMakers.push(() => makeCharacter(
  26140. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26141. {
  26142. front: {
  26143. height: math.unit(2.5, "meters"),
  26144. weight: math.unit(200, "kg"),
  26145. name: "Front",
  26146. image: {
  26147. source: "./media/characters/vidar/front.svg",
  26148. extra: 2994 / 2795,
  26149. bottom: 56 / 3061
  26150. }
  26151. },
  26152. back: {
  26153. height: math.unit(2.5, "meters"),
  26154. weight: math.unit(200, "kg"),
  26155. name: "Back",
  26156. image: {
  26157. source: "./media/characters/vidar/back.svg",
  26158. extra: 3131 / 2928,
  26159. bottom: 13.5 / 3141.5
  26160. }
  26161. },
  26162. feral: {
  26163. height: math.unit(2.5, "meters"),
  26164. weight: math.unit(2000, "kg"),
  26165. name: "Feral",
  26166. image: {
  26167. source: "./media/characters/vidar/feral.svg",
  26168. extra: 2790 / 1765,
  26169. bottom: 6 / 2796
  26170. }
  26171. },
  26172. },
  26173. [
  26174. {
  26175. name: "Normal",
  26176. height: math.unit(2.5, "meters"),
  26177. default: true
  26178. },
  26179. {
  26180. name: "Macro",
  26181. height: math.unit(100, "meters")
  26182. },
  26183. ]
  26184. ))
  26185. characterMakers.push(() => makeCharacter(
  26186. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26187. {
  26188. front: {
  26189. height: math.unit(5 + 9 / 12, "feet"),
  26190. weight: math.unit(120, "lb"),
  26191. name: "Front",
  26192. image: {
  26193. source: "./media/characters/ash/front.svg",
  26194. extra: 2189 / 1961,
  26195. bottom: 5.2 / 2194
  26196. }
  26197. },
  26198. },
  26199. [
  26200. {
  26201. name: "Normal",
  26202. height: math.unit(5 + 9 / 12, "feet"),
  26203. default: true
  26204. },
  26205. ]
  26206. ))
  26207. characterMakers.push(() => makeCharacter(
  26208. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26209. {
  26210. front: {
  26211. height: math.unit(9, "feet"),
  26212. weight: math.unit(10000, "lb"),
  26213. name: "Front",
  26214. image: {
  26215. source: "./media/characters/gygabite/front.svg",
  26216. bottom: 31.7 / 537.8,
  26217. extra: 505 / 370
  26218. }
  26219. },
  26220. },
  26221. [
  26222. {
  26223. name: "Normal",
  26224. height: math.unit(9, "feet"),
  26225. default: true
  26226. },
  26227. ]
  26228. ))
  26229. characterMakers.push(() => makeCharacter(
  26230. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26231. {
  26232. front: {
  26233. height: math.unit(12, "feet"),
  26234. weight: math.unit(35000, "lb"),
  26235. name: "Front",
  26236. image: {
  26237. source: "./media/characters/p0tat0/front.svg",
  26238. extra: 1065 / 921,
  26239. bottom: 55.7 / 1121.25
  26240. }
  26241. },
  26242. },
  26243. [
  26244. {
  26245. name: "Normal",
  26246. height: math.unit(12, "feet"),
  26247. default: true
  26248. },
  26249. ]
  26250. ))
  26251. characterMakers.push(() => makeCharacter(
  26252. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26253. {
  26254. side: {
  26255. height: math.unit(6.5, "feet"),
  26256. weight: math.unit(800, "lb"),
  26257. name: "Side",
  26258. image: {
  26259. source: "./media/characters/dusk/side.svg",
  26260. extra: 615 / 373,
  26261. bottom: 53 / 664
  26262. }
  26263. },
  26264. sitting: {
  26265. height: math.unit(7, "feet"),
  26266. weight: math.unit(800, "lb"),
  26267. name: "Sitting",
  26268. image: {
  26269. source: "./media/characters/dusk/sitting.svg",
  26270. extra: 753 / 425,
  26271. bottom: 33 / 774
  26272. }
  26273. },
  26274. head: {
  26275. height: math.unit(6.1, "feet"),
  26276. name: "Head",
  26277. image: {
  26278. source: "./media/characters/dusk/head.svg"
  26279. }
  26280. },
  26281. },
  26282. [
  26283. {
  26284. name: "Normal",
  26285. height: math.unit(7, "feet"),
  26286. default: true
  26287. },
  26288. ]
  26289. ))
  26290. characterMakers.push(() => makeCharacter(
  26291. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26292. {
  26293. front: {
  26294. height: math.unit(15, "feet"),
  26295. weight: math.unit(7000, "lb"),
  26296. name: "Front",
  26297. image: {
  26298. source: "./media/characters/jay-direwolf/front.svg",
  26299. extra: 1810 / 1732,
  26300. bottom: 66 / 1892
  26301. }
  26302. },
  26303. },
  26304. [
  26305. {
  26306. name: "Normal",
  26307. height: math.unit(15, "feet"),
  26308. default: true
  26309. },
  26310. ]
  26311. ))
  26312. characterMakers.push(() => makeCharacter(
  26313. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26314. {
  26315. front: {
  26316. height: math.unit(4 + 9 / 12, "feet"),
  26317. weight: math.unit(130, "lb"),
  26318. name: "Front",
  26319. image: {
  26320. source: "./media/characters/anchovie/front.svg",
  26321. extra: 382 / 350,
  26322. bottom: 25 / 409
  26323. }
  26324. },
  26325. back: {
  26326. height: math.unit(4 + 9 / 12, "feet"),
  26327. weight: math.unit(130, "lb"),
  26328. name: "Back",
  26329. image: {
  26330. source: "./media/characters/anchovie/back.svg",
  26331. extra: 385 / 352,
  26332. bottom: 16.6 / 402
  26333. }
  26334. },
  26335. frontDressed: {
  26336. height: math.unit(4 + 9 / 12, "feet"),
  26337. weight: math.unit(130, "lb"),
  26338. name: "Front (Dressed)",
  26339. image: {
  26340. source: "./media/characters/anchovie/front-dressed.svg",
  26341. extra: 382 / 350,
  26342. bottom: 25 / 409
  26343. }
  26344. },
  26345. backDressed: {
  26346. height: math.unit(4 + 9 / 12, "feet"),
  26347. weight: math.unit(130, "lb"),
  26348. name: "Back (Dressed)",
  26349. image: {
  26350. source: "./media/characters/anchovie/back-dressed.svg",
  26351. extra: 385 / 352,
  26352. bottom: 16.6 / 402
  26353. }
  26354. },
  26355. },
  26356. [
  26357. {
  26358. name: "Micro",
  26359. height: math.unit(6.4, "inches")
  26360. },
  26361. {
  26362. name: "Normal",
  26363. height: math.unit(4 + 9 / 12, "feet"),
  26364. default: true
  26365. },
  26366. ]
  26367. ))
  26368. characterMakers.push(() => makeCharacter(
  26369. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26370. {
  26371. front: {
  26372. height: math.unit(2, "meters"),
  26373. weight: math.unit(180, "lb"),
  26374. name: "Front",
  26375. image: {
  26376. source: "./media/characters/acidrenamon/front.svg",
  26377. extra: 987 / 890,
  26378. bottom: 22.8 / 1009
  26379. }
  26380. },
  26381. back: {
  26382. height: math.unit(2, "meters"),
  26383. weight: math.unit(180, "lb"),
  26384. name: "Back",
  26385. image: {
  26386. source: "./media/characters/acidrenamon/back.svg",
  26387. extra: 983 / 891,
  26388. bottom: 8.4 / 992
  26389. }
  26390. },
  26391. head: {
  26392. height: math.unit(1.92, "feet"),
  26393. name: "Head",
  26394. image: {
  26395. source: "./media/characters/acidrenamon/head.svg"
  26396. }
  26397. },
  26398. rump: {
  26399. height: math.unit(1.72, "feet"),
  26400. name: "Rump",
  26401. image: {
  26402. source: "./media/characters/acidrenamon/rump.svg"
  26403. }
  26404. },
  26405. tail: {
  26406. height: math.unit(4.2, "feet"),
  26407. name: "Tail",
  26408. image: {
  26409. source: "./media/characters/acidrenamon/tail.svg"
  26410. }
  26411. },
  26412. },
  26413. [
  26414. {
  26415. name: "Normal",
  26416. height: math.unit(2, "meters"),
  26417. default: true
  26418. },
  26419. {
  26420. name: "Minimacro",
  26421. height: math.unit(7, "meters")
  26422. },
  26423. {
  26424. name: "Macro",
  26425. height: math.unit(200, "meters")
  26426. },
  26427. {
  26428. name: "Gigamacro",
  26429. height: math.unit(0.2, "earths")
  26430. },
  26431. ]
  26432. ))
  26433. characterMakers.push(() => makeCharacter(
  26434. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26435. {
  26436. front: {
  26437. height: math.unit(6, "feet"),
  26438. weight: math.unit(150, "lb"),
  26439. name: "Front",
  26440. image: {
  26441. source: "./media/characters/kenzie-lee/front.svg",
  26442. extra: 1525 / 1465,
  26443. bottom: 45 / 1570
  26444. }
  26445. },
  26446. side: {
  26447. height: math.unit(6, "feet"),
  26448. weight: math.unit(150, "lb"),
  26449. name: "Side",
  26450. image: {
  26451. source: "./media/characters/kenzie-lee/side.svg",
  26452. extra: 5505 / 5383,
  26453. bottom: 60 / 5573
  26454. }
  26455. },
  26456. },
  26457. [
  26458. {
  26459. name: "Normal",
  26460. height: math.unit(152, "feet"),
  26461. default: true
  26462. },
  26463. {
  26464. name: "Megamacro",
  26465. height: math.unit(7, "miles")
  26466. },
  26467. {
  26468. name: "Gigamacro",
  26469. height: math.unit(8000, "miles")
  26470. },
  26471. ]
  26472. ))
  26473. characterMakers.push(() => makeCharacter(
  26474. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26475. {
  26476. side: {
  26477. height: math.unit(6, "feet"),
  26478. weight: math.unit(150, "lb"),
  26479. name: "Side",
  26480. image: {
  26481. source: "./media/characters/withers/side.svg",
  26482. extra: 1830 / 1728,
  26483. bottom: 96 / 1927
  26484. }
  26485. },
  26486. front: {
  26487. height: math.unit(6, "feet"),
  26488. weight: math.unit(150, "lb"),
  26489. name: "Front",
  26490. image: {
  26491. source: "./media/characters/withers/front.svg",
  26492. extra: 1514 / 1438,
  26493. bottom: 118 / 1632
  26494. }
  26495. },
  26496. },
  26497. [
  26498. {
  26499. name: "Normal",
  26500. height: math.unit(6, "feet")
  26501. },
  26502. {
  26503. name: "Macro",
  26504. height: math.unit(50, "feet")
  26505. },
  26506. {
  26507. name: "Megamacro",
  26508. height: math.unit(15, "miles"),
  26509. default: true
  26510. },
  26511. {
  26512. name: "Megamacro+",
  26513. height: math.unit(100, "km")
  26514. },
  26515. {
  26516. name: "Gigamacro",
  26517. height: math.unit(4750, "miles")
  26518. },
  26519. {
  26520. name: "Gigamacro+",
  26521. height: math.unit(32000, "miles")
  26522. },
  26523. ]
  26524. ))
  26525. characterMakers.push(() => makeCharacter(
  26526. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26527. {
  26528. front: {
  26529. height: math.unit(6 + 7 / 12, "feet"),
  26530. weight: math.unit(250, "lb"),
  26531. name: "Front",
  26532. image: {
  26533. source: "./media/characters/nemoskii/front.svg",
  26534. extra: 2270 / 1734,
  26535. bottom: 86 / 2354
  26536. }
  26537. },
  26538. back: {
  26539. height: math.unit(6 + 7 / 12, "feet"),
  26540. weight: math.unit(250, "lb"),
  26541. name: "Back",
  26542. image: {
  26543. source: "./media/characters/nemoskii/back.svg",
  26544. extra: 1845 / 1788,
  26545. bottom: 10.5 / 1852
  26546. }
  26547. },
  26548. head: {
  26549. height: math.unit(1.31, "feet"),
  26550. name: "Head",
  26551. image: {
  26552. source: "./media/characters/nemoskii/head.svg"
  26553. }
  26554. },
  26555. },
  26556. [
  26557. {
  26558. name: "Normal",
  26559. height: math.unit(6 + 7 / 12, "feet"),
  26560. default: true
  26561. },
  26562. ]
  26563. ))
  26564. characterMakers.push(() => makeCharacter(
  26565. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26566. {
  26567. front: {
  26568. height: math.unit(1, "mile"),
  26569. weight: math.unit(265261.9, "lb"),
  26570. name: "Front",
  26571. image: {
  26572. source: "./media/characters/shui/front.svg",
  26573. extra: 1633 / 1564,
  26574. bottom: 91.5 / 1726
  26575. }
  26576. },
  26577. },
  26578. [
  26579. {
  26580. name: "Macro",
  26581. height: math.unit(1, "mile"),
  26582. default: true
  26583. },
  26584. ]
  26585. ))
  26586. characterMakers.push(() => makeCharacter(
  26587. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26588. {
  26589. front: {
  26590. height: math.unit(12 + 6 / 12, "feet"),
  26591. weight: math.unit(1342, "lb"),
  26592. name: "Front",
  26593. image: {
  26594. source: "./media/characters/arokh-takakura/front.svg",
  26595. extra: 1089 / 1043,
  26596. bottom: 77.4 / 1176.7
  26597. }
  26598. },
  26599. back: {
  26600. height: math.unit(12 + 6 / 12, "feet"),
  26601. weight: math.unit(1342, "lb"),
  26602. name: "Back",
  26603. image: {
  26604. source: "./media/characters/arokh-takakura/back.svg",
  26605. extra: 1046 / 1019,
  26606. bottom: 102 / 1150
  26607. }
  26608. },
  26609. },
  26610. [
  26611. {
  26612. name: "Big",
  26613. height: math.unit(12 + 6 / 12, "feet"),
  26614. default: true
  26615. },
  26616. ]
  26617. ))
  26618. characterMakers.push(() => makeCharacter(
  26619. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26620. {
  26621. front: {
  26622. height: math.unit(5 + 6 / 12, "feet"),
  26623. weight: math.unit(150, "lb"),
  26624. name: "Front",
  26625. image: {
  26626. source: "./media/characters/theo/front.svg",
  26627. extra: 1184 / 1131,
  26628. bottom: 7.4 / 1191
  26629. }
  26630. },
  26631. },
  26632. [
  26633. {
  26634. name: "Micro",
  26635. height: math.unit(5, "inches")
  26636. },
  26637. {
  26638. name: "Normal",
  26639. height: math.unit(5 + 6 / 12, "feet"),
  26640. default: true
  26641. },
  26642. ]
  26643. ))
  26644. characterMakers.push(() => makeCharacter(
  26645. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26646. {
  26647. front: {
  26648. height: math.unit(5 + 9 / 12, "feet"),
  26649. weight: math.unit(130, "lb"),
  26650. name: "Front",
  26651. image: {
  26652. source: "./media/characters/cecelia-swift/front.svg",
  26653. extra: 502 / 484,
  26654. bottom: 23 / 523
  26655. }
  26656. },
  26657. back: {
  26658. height: math.unit(5 + 9 / 12, "feet"),
  26659. weight: math.unit(130, "lb"),
  26660. name: "Back",
  26661. image: {
  26662. source: "./media/characters/cecelia-swift/back.svg",
  26663. extra: 499 / 485,
  26664. bottom: 12 / 511
  26665. }
  26666. },
  26667. head: {
  26668. height: math.unit(0.90, "feet"),
  26669. name: "Head",
  26670. image: {
  26671. source: "./media/characters/cecelia-swift/head.svg"
  26672. }
  26673. },
  26674. rump: {
  26675. height: math.unit(1.75, "feet"),
  26676. name: "Rump",
  26677. image: {
  26678. source: "./media/characters/cecelia-swift/rump.svg"
  26679. }
  26680. },
  26681. },
  26682. [
  26683. {
  26684. name: "Normal",
  26685. height: math.unit(5 + 9 / 12, "feet"),
  26686. default: true
  26687. },
  26688. {
  26689. name: "Big",
  26690. height: math.unit(50, "feet")
  26691. },
  26692. {
  26693. name: "Macro",
  26694. height: math.unit(100, "feet")
  26695. },
  26696. {
  26697. name: "Macro+",
  26698. height: math.unit(500, "feet")
  26699. },
  26700. {
  26701. name: "Macro++",
  26702. height: math.unit(1000, "feet")
  26703. },
  26704. ]
  26705. ))
  26706. characterMakers.push(() => makeCharacter(
  26707. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26708. {
  26709. front: {
  26710. height: math.unit(6, "feet"),
  26711. weight: math.unit(150, "lb"),
  26712. name: "Front",
  26713. image: {
  26714. source: "./media/characters/kaunan/front.svg",
  26715. extra: 2890 / 2523,
  26716. bottom: 49 / 2939
  26717. }
  26718. },
  26719. },
  26720. [
  26721. {
  26722. name: "Macro",
  26723. height: math.unit(150, "feet"),
  26724. default: true
  26725. },
  26726. ]
  26727. ))
  26728. characterMakers.push(() => makeCharacter(
  26729. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26730. {
  26731. front: {
  26732. height: math.unit(175, "cm"),
  26733. weight: math.unit(60, "kg"),
  26734. name: "Front",
  26735. image: {
  26736. source: "./media/characters/fei/front.svg",
  26737. extra: 2581 / 2400,
  26738. bottom: 82.2 / 2663
  26739. }
  26740. },
  26741. },
  26742. [
  26743. {
  26744. name: "Mortal",
  26745. height: math.unit(175, "cm")
  26746. },
  26747. {
  26748. name: "Normal",
  26749. height: math.unit(3500, "m"),
  26750. default: true
  26751. },
  26752. {
  26753. name: "Stroll",
  26754. height: math.unit(17.5, "km")
  26755. },
  26756. {
  26757. name: "Showoff",
  26758. height: math.unit(175, "km")
  26759. },
  26760. ]
  26761. ))
  26762. characterMakers.push(() => makeCharacter(
  26763. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26764. {
  26765. front: {
  26766. height: math.unit(7, "feet"),
  26767. weight: math.unit(1000, "kg"),
  26768. name: "Front",
  26769. image: {
  26770. source: "./media/characters/edrax/front.svg",
  26771. extra: 2838 / 2550,
  26772. bottom: 130 / 2968
  26773. }
  26774. },
  26775. },
  26776. [
  26777. {
  26778. name: "Small",
  26779. height: math.unit(7, "feet")
  26780. },
  26781. {
  26782. name: "Normal",
  26783. height: math.unit(1500, "meters")
  26784. },
  26785. {
  26786. name: "Mega",
  26787. height: math.unit(12000000, "km"),
  26788. default: true
  26789. },
  26790. {
  26791. name: "Megamacro",
  26792. height: math.unit(10600000, "lightyears")
  26793. },
  26794. {
  26795. name: "Hypermacro",
  26796. height: math.unit(256, "yottameters")
  26797. },
  26798. ]
  26799. ))
  26800. characterMakers.push(() => makeCharacter(
  26801. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  26802. {
  26803. front: {
  26804. height: math.unit(10, "feet"),
  26805. weight: math.unit(750, "lb"),
  26806. name: "Front",
  26807. image: {
  26808. source: "./media/characters/clove/front.svg",
  26809. extra: 2031 / 1860,
  26810. bottom: 47.8 / 2080
  26811. }
  26812. },
  26813. back: {
  26814. height: math.unit(10, "feet"),
  26815. weight: math.unit(750, "lb"),
  26816. name: "Back",
  26817. image: {
  26818. source: "./media/characters/clove/back.svg",
  26819. extra: 2025 / 1859,
  26820. bottom: 46 / 2071
  26821. }
  26822. },
  26823. },
  26824. [
  26825. {
  26826. name: "Normal",
  26827. height: math.unit(10, "feet")
  26828. },
  26829. ]
  26830. ))
  26831. characterMakers.push(() => makeCharacter(
  26832. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  26833. {
  26834. front: {
  26835. height: math.unit(4, "feet"),
  26836. weight: math.unit(50, "lb"),
  26837. name: "Front",
  26838. image: {
  26839. source: "./media/characters/alex-rabbit/front.svg",
  26840. extra: 507 / 458,
  26841. bottom: 18.5 / 527
  26842. }
  26843. },
  26844. back: {
  26845. height: math.unit(4, "feet"),
  26846. weight: math.unit(50, "lb"),
  26847. name: "Back",
  26848. image: {
  26849. source: "./media/characters/alex-rabbit/back.svg",
  26850. extra: 502 / 460,
  26851. bottom: 18.9 / 521
  26852. }
  26853. },
  26854. },
  26855. [
  26856. {
  26857. name: "Normal",
  26858. height: math.unit(4, "feet"),
  26859. default: true
  26860. },
  26861. ]
  26862. ))
  26863. characterMakers.push(() => makeCharacter(
  26864. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  26865. {
  26866. front: {
  26867. height: math.unit(1 + 3 / 12, "feet"),
  26868. weight: math.unit(80, "lb"),
  26869. name: "Front",
  26870. image: {
  26871. source: "./media/characters/zander-rose/front.svg",
  26872. extra: 916 / 797,
  26873. bottom: 17 / 933
  26874. }
  26875. },
  26876. back: {
  26877. height: math.unit(1 + 3 / 12, "feet"),
  26878. weight: math.unit(80, "lb"),
  26879. name: "Back",
  26880. image: {
  26881. source: "./media/characters/zander-rose/back.svg",
  26882. extra: 903 / 779,
  26883. bottom: 31 / 934
  26884. }
  26885. },
  26886. },
  26887. [
  26888. {
  26889. name: "Normal",
  26890. height: math.unit(1 + 3 / 12, "feet"),
  26891. default: true
  26892. },
  26893. ]
  26894. ))
  26895. characterMakers.push(() => makeCharacter(
  26896. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  26897. {
  26898. anthro: {
  26899. height: math.unit(6, "feet"),
  26900. weight: math.unit(150, "lb"),
  26901. name: "Anthro",
  26902. image: {
  26903. source: "./media/characters/razz/anthro.svg",
  26904. extra: 1437 / 1343,
  26905. bottom: 48 / 1485
  26906. }
  26907. },
  26908. feral: {
  26909. height: math.unit(6, "feet"),
  26910. weight: math.unit(150, "lb"),
  26911. name: "Feral",
  26912. image: {
  26913. source: "./media/characters/razz/feral.svg",
  26914. extra: 2569 / 1385,
  26915. bottom: 95 / 2664
  26916. }
  26917. },
  26918. },
  26919. [
  26920. {
  26921. name: "Normal",
  26922. height: math.unit(6, "feet"),
  26923. default: true
  26924. },
  26925. ]
  26926. ))
  26927. characterMakers.push(() => makeCharacter(
  26928. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  26929. {
  26930. front: {
  26931. height: math.unit(9 + 4 / 12, "feet"),
  26932. weight: math.unit(500, "lb"),
  26933. name: "Front",
  26934. image: {
  26935. source: "./media/characters/morrigan/front.svg",
  26936. extra: 2707 / 2579,
  26937. bottom: 156 / 2863
  26938. }
  26939. },
  26940. },
  26941. [
  26942. {
  26943. name: "Normal",
  26944. height: math.unit(9 + 4 / 12, "feet"),
  26945. default: true
  26946. },
  26947. ]
  26948. ))
  26949. characterMakers.push(() => makeCharacter(
  26950. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  26951. {
  26952. front: {
  26953. height: math.unit(5, "stories"),
  26954. weight: math.unit(4000, "lb"),
  26955. name: "Front",
  26956. image: {
  26957. source: "./media/characters/jenene/front.svg",
  26958. extra: 1780 / 1710,
  26959. bottom: 57 / 1837
  26960. }
  26961. },
  26962. },
  26963. [
  26964. {
  26965. name: "Normal",
  26966. height: math.unit(5, "stories"),
  26967. default: true
  26968. },
  26969. ]
  26970. ))
  26971. characterMakers.push(() => makeCharacter(
  26972. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  26973. {
  26974. front: {
  26975. height: math.unit(6, "feet"),
  26976. weight: math.unit(150, "lb"),
  26977. name: "Front",
  26978. image: {
  26979. source: "./media/characters/vix-archaser/front.svg",
  26980. extra: 2767 / 2562,
  26981. bottom: 36 / 2803
  26982. }
  26983. },
  26984. },
  26985. [
  26986. {
  26987. name: "Micro",
  26988. height: math.unit(1, "foot")
  26989. },
  26990. {
  26991. name: "Normal",
  26992. height: math.unit(6 + 5 / 12, "feet")
  26993. },
  26994. {
  26995. name: "Minimacro",
  26996. height: math.unit(500, "feet")
  26997. },
  26998. {
  26999. name: "Macro",
  27000. height: math.unit(4, "miles")
  27001. },
  27002. {
  27003. name: "Megamacro",
  27004. height: math.unit(250, "miles"),
  27005. default: true
  27006. },
  27007. {
  27008. name: "Gigamacro",
  27009. height: math.unit(1, "universe")
  27010. },
  27011. {
  27012. name: "Endgame",
  27013. height: math.unit(100, "multiverses")
  27014. }
  27015. ]
  27016. ))
  27017. characterMakers.push(() => makeCharacter(
  27018. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27019. {
  27020. taurSfw: {
  27021. height: math.unit(10, "meters"),
  27022. weight: math.unit(17500, "kg"),
  27023. name: "Taur",
  27024. image: {
  27025. source: "./media/characters/faey/taur-sfw.svg",
  27026. extra: 1200 / 968,
  27027. bottom: 41 / 1241
  27028. }
  27029. },
  27030. chestmaw: {
  27031. height: math.unit(2.01, "meters"),
  27032. name: "Chestmaw",
  27033. image: {
  27034. source: "./media/characters/faey/chestmaw.svg"
  27035. }
  27036. },
  27037. foot: {
  27038. height: math.unit(2.43, "meters"),
  27039. name: "Foot",
  27040. image: {
  27041. source: "./media/characters/faey/foot.svg"
  27042. }
  27043. },
  27044. jaws: {
  27045. height: math.unit(1.66, "meters"),
  27046. name: "Jaws",
  27047. image: {
  27048. source: "./media/characters/faey/jaws.svg"
  27049. }
  27050. },
  27051. tongues: {
  27052. height: math.unit(2.01, "meters"),
  27053. name: "Tongues",
  27054. image: {
  27055. source: "./media/characters/faey/tongues.svg"
  27056. }
  27057. },
  27058. },
  27059. [
  27060. {
  27061. name: "Small",
  27062. height: math.unit(10, "meters"),
  27063. default: true
  27064. },
  27065. {
  27066. name: "Big",
  27067. height: math.unit(500000, "km")
  27068. },
  27069. ]
  27070. ))
  27071. characterMakers.push(() => makeCharacter(
  27072. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27073. {
  27074. front: {
  27075. height: math.unit(7, "feet"),
  27076. weight: math.unit(275, "lb"),
  27077. name: "Front",
  27078. image: {
  27079. source: "./media/characters/roku/front.svg",
  27080. extra: 903 / 878,
  27081. bottom: 37 / 940
  27082. }
  27083. },
  27084. },
  27085. [
  27086. {
  27087. name: "Normal",
  27088. height: math.unit(7, "feet"),
  27089. default: true
  27090. },
  27091. {
  27092. name: "Macro",
  27093. height: math.unit(500, "feet")
  27094. },
  27095. {
  27096. name: "Megamacro",
  27097. height: math.unit(200, "miles")
  27098. },
  27099. ]
  27100. ))
  27101. characterMakers.push(() => makeCharacter(
  27102. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27103. {
  27104. front: {
  27105. height: math.unit(6 + 2 / 12, "feet"),
  27106. weight: math.unit(150, "lb"),
  27107. name: "Front",
  27108. image: {
  27109. source: "./media/characters/lira/front.svg",
  27110. extra: 1727 / 1605,
  27111. bottom: 26 / 1753
  27112. }
  27113. },
  27114. back: {
  27115. height: math.unit(6 + 2 / 12, "feet"),
  27116. weight: math.unit(150, "lb"),
  27117. name: "Back",
  27118. image: {
  27119. source: "./media/characters/lira/back.svg",
  27120. extra: 1713 / 159,
  27121. bottom: 20 / 1733
  27122. }
  27123. },
  27124. hand: {
  27125. height: math.unit(0.75, "feet"),
  27126. name: "Hand",
  27127. image: {
  27128. source: "./media/characters/lira/hand.svg"
  27129. }
  27130. },
  27131. maw: {
  27132. height: math.unit(0.65, "feet"),
  27133. name: "Maw",
  27134. image: {
  27135. source: "./media/characters/lira/maw.svg"
  27136. }
  27137. },
  27138. pawDigi: {
  27139. height: math.unit(1.6, "feet"),
  27140. name: "Paw Digi",
  27141. image: {
  27142. source: "./media/characters/lira/paw-digi.svg"
  27143. }
  27144. },
  27145. pawPlanti: {
  27146. height: math.unit(1.4, "feet"),
  27147. name: "Paw Planti",
  27148. image: {
  27149. source: "./media/characters/lira/paw-planti.svg"
  27150. }
  27151. },
  27152. },
  27153. [
  27154. {
  27155. name: "Normal",
  27156. height: math.unit(6 + 2 / 12, "feet"),
  27157. default: true
  27158. },
  27159. {
  27160. name: "Macro",
  27161. height: math.unit(100, "feet")
  27162. },
  27163. {
  27164. name: "Macro²",
  27165. height: math.unit(1600, "feet")
  27166. },
  27167. {
  27168. name: "Planetary",
  27169. height: math.unit(20, "earths")
  27170. },
  27171. ]
  27172. ))
  27173. characterMakers.push(() => makeCharacter(
  27174. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27175. {
  27176. front: {
  27177. height: math.unit(6, "feet"),
  27178. weight: math.unit(150, "lb"),
  27179. name: "Front",
  27180. image: {
  27181. source: "./media/characters/hadjet/front.svg",
  27182. extra: 1480 / 1346,
  27183. bottom: 26 / 1506
  27184. }
  27185. },
  27186. frontNsfw: {
  27187. height: math.unit(6, "feet"),
  27188. weight: math.unit(150, "lb"),
  27189. name: "Front (NSFW)",
  27190. image: {
  27191. source: "./media/characters/hadjet/front-nsfw.svg",
  27192. extra: 1440 / 1358,
  27193. bottom: 52 / 1492
  27194. }
  27195. },
  27196. },
  27197. [
  27198. {
  27199. name: "Macro",
  27200. height: math.unit(10, "stories"),
  27201. default: true
  27202. },
  27203. {
  27204. name: "Megamacro",
  27205. height: math.unit(1.5, "miles")
  27206. },
  27207. {
  27208. name: "Megamacro+",
  27209. height: math.unit(5, "miles")
  27210. },
  27211. ]
  27212. ))
  27213. characterMakers.push(() => makeCharacter(
  27214. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27215. {
  27216. side: {
  27217. height: math.unit(106, "feet"),
  27218. weight: math.unit(500, "tonnes"),
  27219. name: "Side",
  27220. image: {
  27221. source: "./media/characters/kodran/side.svg",
  27222. extra: 553 / 480,
  27223. bottom: 33 / 586
  27224. }
  27225. },
  27226. front: {
  27227. height: math.unit(132, "feet"),
  27228. weight: math.unit(500, "tonnes"),
  27229. name: "Front",
  27230. image: {
  27231. source: "./media/characters/kodran/front.svg",
  27232. extra: 667 / 643,
  27233. bottom: 42 / 709
  27234. }
  27235. },
  27236. flying: {
  27237. height: math.unit(350, "feet"),
  27238. weight: math.unit(500, "tonnes"),
  27239. name: "Flying",
  27240. image: {
  27241. source: "./media/characters/kodran/flying.svg"
  27242. }
  27243. },
  27244. foot: {
  27245. height: math.unit(33, "feet"),
  27246. name: "Foot",
  27247. image: {
  27248. source: "./media/characters/kodran/foot.svg"
  27249. }
  27250. },
  27251. footFront: {
  27252. height: math.unit(19, "feet"),
  27253. name: "Foot (Front)",
  27254. image: {
  27255. source: "./media/characters/kodran/foot-front.svg",
  27256. extra: 261 / 261,
  27257. bottom: 91 / 352
  27258. }
  27259. },
  27260. headFront: {
  27261. height: math.unit(53, "feet"),
  27262. name: "Head (Front)",
  27263. image: {
  27264. source: "./media/characters/kodran/head-front.svg"
  27265. }
  27266. },
  27267. headSide: {
  27268. height: math.unit(65, "feet"),
  27269. name: "Head (Side)",
  27270. image: {
  27271. source: "./media/characters/kodran/head-side.svg"
  27272. }
  27273. },
  27274. throat: {
  27275. height: math.unit(79, "feet"),
  27276. name: "Throat",
  27277. image: {
  27278. source: "./media/characters/kodran/throat.svg"
  27279. }
  27280. },
  27281. },
  27282. [
  27283. {
  27284. name: "Large",
  27285. height: math.unit(106, "feet"),
  27286. default: true
  27287. },
  27288. ]
  27289. ))
  27290. characterMakers.push(() => makeCharacter(
  27291. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27292. {
  27293. side: {
  27294. height: math.unit(11, "feet"),
  27295. weight: math.unit(150, "lb"),
  27296. name: "Side",
  27297. image: {
  27298. source: "./media/characters/pyxaron/side.svg",
  27299. extra: 305 / 195,
  27300. bottom: 17 / 322
  27301. }
  27302. },
  27303. },
  27304. [
  27305. {
  27306. name: "Normal",
  27307. height: math.unit(11, "feet")
  27308. },
  27309. ]
  27310. ))
  27311. characterMakers.push(() => makeCharacter(
  27312. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27313. {
  27314. front: {
  27315. height: math.unit(6, "feet"),
  27316. weight: math.unit(150, "lb"),
  27317. name: "Front",
  27318. image: {
  27319. source: "./media/characters/meep/front.svg",
  27320. extra: 88 / 80,
  27321. bottom: 6 / 94
  27322. }
  27323. },
  27324. },
  27325. [
  27326. {
  27327. name: "Fun Sized",
  27328. height: math.unit(2, "inches"),
  27329. default: true
  27330. },
  27331. {
  27332. name: "Friend Sized",
  27333. height: math.unit(8, "inches")
  27334. },
  27335. ]
  27336. ))
  27337. characterMakers.push(() => makeCharacter(
  27338. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27339. {
  27340. front: {
  27341. height: math.unit(15, "feet"),
  27342. weight: math.unit(2500, "lb"),
  27343. name: "Front",
  27344. image: {
  27345. source: "./media/characters/holly-rabbit/front.svg",
  27346. extra: 1433 / 1233,
  27347. bottom: 125 / 1558
  27348. }
  27349. },
  27350. dick: {
  27351. height: math.unit(4.6, "feet"),
  27352. name: "Dick",
  27353. image: {
  27354. source: "./media/characters/holly-rabbit/dick.svg"
  27355. }
  27356. },
  27357. },
  27358. [
  27359. {
  27360. name: "Normal",
  27361. height: math.unit(15, "feet"),
  27362. default: true
  27363. },
  27364. {
  27365. name: "Macro",
  27366. height: math.unit(250, "feet")
  27367. },
  27368. {
  27369. name: "Macro+",
  27370. height: math.unit(2500, "feet")
  27371. },
  27372. ]
  27373. ))
  27374. characterMakers.push(() => makeCharacter(
  27375. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27376. {
  27377. front: {
  27378. height: math.unit(3.02, "meters"),
  27379. weight: math.unit(500, "kg"),
  27380. name: "Front",
  27381. image: {
  27382. source: "./media/characters/drena/front.svg",
  27383. extra: 282 / 243,
  27384. bottom: 8 / 290
  27385. }
  27386. },
  27387. side: {
  27388. height: math.unit(3.02, "meters"),
  27389. weight: math.unit(500, "kg"),
  27390. name: "Side",
  27391. image: {
  27392. source: "./media/characters/drena/side.svg",
  27393. extra: 280 / 245,
  27394. bottom: 10 / 290
  27395. }
  27396. },
  27397. back: {
  27398. height: math.unit(3.02, "meters"),
  27399. weight: math.unit(500, "kg"),
  27400. name: "Back",
  27401. image: {
  27402. source: "./media/characters/drena/back.svg",
  27403. extra: 278 / 243,
  27404. bottom: 2 / 280
  27405. }
  27406. },
  27407. foot: {
  27408. height: math.unit(0.75, "meters"),
  27409. name: "Foot",
  27410. image: {
  27411. source: "./media/characters/drena/foot.svg"
  27412. }
  27413. },
  27414. maw: {
  27415. height: math.unit(0.82, "meters"),
  27416. name: "Maw",
  27417. image: {
  27418. source: "./media/characters/drena/maw.svg"
  27419. }
  27420. },
  27421. rump: {
  27422. height: math.unit(0.93, "meters"),
  27423. name: "Rump",
  27424. image: {
  27425. source: "./media/characters/drena/rump.svg"
  27426. }
  27427. },
  27428. },
  27429. [
  27430. {
  27431. name: "Normal",
  27432. height: math.unit(3.02, "meters"),
  27433. default: true
  27434. },
  27435. ]
  27436. ))
  27437. characterMakers.push(() => makeCharacter(
  27438. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27439. {
  27440. front: {
  27441. height: math.unit(6 + 4 / 12, "feet"),
  27442. weight: math.unit(250, "lb"),
  27443. name: "Front",
  27444. image: {
  27445. source: "./media/characters/remmyzilla/front.svg",
  27446. extra: 4033 / 3588,
  27447. bottom: 123 / 4156
  27448. }
  27449. },
  27450. back: {
  27451. height: math.unit(6 + 4 / 12, "feet"),
  27452. weight: math.unit(250, "lb"),
  27453. name: "Back",
  27454. image: {
  27455. source: "./media/characters/remmyzilla/back.svg",
  27456. extra: 2687 / 2555,
  27457. bottom: 48 / 2735
  27458. }
  27459. },
  27460. frontFancy: {
  27461. height: math.unit(6 + 4 / 12, "feet"),
  27462. weight: math.unit(250, "lb"),
  27463. name: "Front (Fancy)",
  27464. image: {
  27465. source: "./media/characters/remmyzilla/front-fancy.svg",
  27466. extra: 4119 / 3419,
  27467. bottom: 237 / 4356
  27468. }
  27469. },
  27470. paw: {
  27471. height: math.unit(1.73, "feet"),
  27472. name: "Paw",
  27473. image: {
  27474. source: "./media/characters/remmyzilla/paw.svg"
  27475. }
  27476. },
  27477. maw: {
  27478. height: math.unit(1.73, "feet"),
  27479. name: "Maw",
  27480. image: {
  27481. source: "./media/characters/remmyzilla/maw.svg"
  27482. }
  27483. },
  27484. },
  27485. [
  27486. {
  27487. name: "Normal",
  27488. height: math.unit(6 + 4 / 12, "feet")
  27489. },
  27490. {
  27491. name: "Minimacro",
  27492. height: math.unit(12 + 8 / 12, "feet")
  27493. },
  27494. {
  27495. name: "Normal",
  27496. height: math.unit(640, "feet"),
  27497. default: true
  27498. },
  27499. {
  27500. name: "Megamacro",
  27501. height: math.unit(6400, "feet")
  27502. },
  27503. {
  27504. name: "Gigamacro",
  27505. height: math.unit(64000, "miles")
  27506. },
  27507. ]
  27508. ))
  27509. characterMakers.push(() => makeCharacter(
  27510. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27511. {
  27512. front: {
  27513. height: math.unit(2.5, "meters"),
  27514. weight: math.unit(300, "lb"),
  27515. name: "Front",
  27516. image: {
  27517. source: "./media/characters/lawrence/front.svg",
  27518. extra: 357/335,
  27519. bottom: 30/387
  27520. }
  27521. },
  27522. back: {
  27523. height: math.unit(2.5, "meters"),
  27524. weight: math.unit(300, "lb"),
  27525. name: "Back",
  27526. image: {
  27527. source: "./media/characters/lawrence/back.svg",
  27528. extra: 357/338,
  27529. bottom: 16/373
  27530. }
  27531. },
  27532. head: {
  27533. height: math.unit(0.9, "meter"),
  27534. name: "Head",
  27535. image: {
  27536. source: "./media/characters/lawrence/head.svg"
  27537. }
  27538. },
  27539. maw: {
  27540. height: math.unit(0.7, "meter"),
  27541. name: "Maw",
  27542. image: {
  27543. source: "./media/characters/lawrence/maw.svg"
  27544. }
  27545. },
  27546. footBottom: {
  27547. height: math.unit(0.5, "meter"),
  27548. name: "Foot (Bottom)",
  27549. image: {
  27550. source: "./media/characters/lawrence/foot-bottom.svg"
  27551. }
  27552. },
  27553. footTop: {
  27554. height: math.unit(0.5, "meter"),
  27555. name: "Foot (Top)",
  27556. image: {
  27557. source: "./media/characters/lawrence/foot-top.svg"
  27558. }
  27559. },
  27560. },
  27561. [
  27562. {
  27563. name: "Normal",
  27564. height: math.unit(2.5, "meters"),
  27565. default: true
  27566. },
  27567. {
  27568. name: "Macro",
  27569. height: math.unit(95, "meters")
  27570. },
  27571. {
  27572. name: "Megamacro",
  27573. height: math.unit(150, "km")
  27574. },
  27575. ]
  27576. ))
  27577. //characters
  27578. function makeCharacters() {
  27579. const results = [];
  27580. characterMakers.forEach(character => {
  27581. results.push(character());
  27582. });
  27583. return results;
  27584. }