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

30430 строки
762 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. "nickit": {
  1344. name: "Nickit",
  1345. parents: ["pokemon", "cat"]
  1346. },
  1347. "lopunny": {
  1348. name: "Lopunny",
  1349. parents: ["pokemon", "rabbit"]
  1350. },
  1351. "korean-jindo-dog": {
  1352. name: "Korean Jindo Dog",
  1353. parents: ["dog"]
  1354. },
  1355. "naga": {
  1356. name: "Naga",
  1357. parents: ["snake", "monster"]
  1358. },
  1359. "undead": {
  1360. name: "Undead",
  1361. parents: ["monster"]
  1362. },
  1363. "whale": {
  1364. name: "Whale",
  1365. parents: ["fish"]
  1366. },
  1367. "gelato-bee": {
  1368. name: "Gelato Bee",
  1369. parents: ["bee"]
  1370. },
  1371. "bee": {
  1372. name: "Bee",
  1373. parents: ["insect"]
  1374. },
  1375. "gardevoir": {
  1376. name: "Gardevoir",
  1377. parents: ["pokemon"]
  1378. },
  1379. "ant": {
  1380. name: "Ant",
  1381. parents: ["insect"]
  1382. },
  1383. "frog": {
  1384. name: "Frog",
  1385. parents: ["amphibian"]
  1386. },
  1387. "amphibian": {
  1388. name: "Amphibian",
  1389. parents: ["animal"]
  1390. },
  1391. "pangolin": {
  1392. name: "Pangolin",
  1393. parents: ["mammal"]
  1394. },
  1395. }
  1396. //species
  1397. function getSpeciesInfo(speciesList) {
  1398. let result = new Set();
  1399. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1400. result.add(entry)
  1401. });
  1402. return Array.from(result);
  1403. };
  1404. function getSpeciesInfoHelper(species) {
  1405. if (!speciesData[species]) {
  1406. console.warn(species + " doesn't exist");
  1407. return [];
  1408. }
  1409. if (speciesData[species].parents) {
  1410. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1411. } else {
  1412. return [species];
  1413. }
  1414. }
  1415. characterMakers.push(() => makeCharacter(
  1416. {
  1417. name: "Fen",
  1418. species: ["crux"],
  1419. description: {
  1420. title: "Bio",
  1421. text: "Very furry. Sheds on everything."
  1422. },
  1423. tags: [
  1424. "anthro",
  1425. "goo"
  1426. ]
  1427. },
  1428. {
  1429. back: {
  1430. height: math.unit(2.2428, "meter"),
  1431. weight: math.unit(124.738, "kg"),
  1432. name: "Back",
  1433. image: {
  1434. source: "./media/characters/fen/back.svg",
  1435. extra: 2024 / 1867,
  1436. bottom: 13 / 2037
  1437. },
  1438. info: {
  1439. description: {
  1440. mode: "append",
  1441. text: "\n\nHe is not currently looking at you."
  1442. }
  1443. }
  1444. },
  1445. full: {
  1446. height: math.unit(1.34, "meter"),
  1447. weight: math.unit(225, "kg"),
  1448. name: "Full",
  1449. image: {
  1450. source: "./media/characters/fen/full.svg"
  1451. },
  1452. info: {
  1453. description: {
  1454. mode: "append",
  1455. text: "\n\nMunch."
  1456. }
  1457. }
  1458. },
  1459. kneeling: {
  1460. height: math.unit(5.4, "feet"),
  1461. weight: math.unit(124.738, "kg"),
  1462. name: "Kneeling",
  1463. image: {
  1464. source: "./media/characters/fen/kneeling.svg",
  1465. extra: 563 / 507
  1466. }
  1467. },
  1468. goo: {
  1469. height: math.unit(2.8, "feet"),
  1470. weight: math.unit(125, "kg"),
  1471. capacity: math.unit(1, "people"),
  1472. name: "Goo",
  1473. image: {
  1474. source: "./media/characters/fen/goo.svg",
  1475. bottom: 116 / 613
  1476. }
  1477. },
  1478. lounging: {
  1479. height: math.unit(6.5, "feet"),
  1480. weight: math.unit(125, "kg"),
  1481. name: "Lounging",
  1482. image: {
  1483. source: "./media/characters/fen/lounging.svg"
  1484. }
  1485. },
  1486. },
  1487. [
  1488. {
  1489. name: "Normal",
  1490. height: math.unit(2.2428, "meter")
  1491. },
  1492. {
  1493. name: "Big",
  1494. height: math.unit(12, "feet")
  1495. },
  1496. {
  1497. name: "Minimacro",
  1498. height: math.unit(40, "feet"),
  1499. default: true,
  1500. info: {
  1501. description: {
  1502. mode: "append",
  1503. text: "\n\nTOO DAMN BIG"
  1504. }
  1505. }
  1506. },
  1507. {
  1508. name: "Macro",
  1509. height: math.unit(100, "feet"),
  1510. info: {
  1511. description: {
  1512. mode: "append",
  1513. text: "\n\nTOO DAMN BIG"
  1514. }
  1515. }
  1516. },
  1517. {
  1518. name: "Macro+",
  1519. height: math.unit(300, "feet")
  1520. },
  1521. {
  1522. name: "Megamacro",
  1523. height: math.unit(2, "miles")
  1524. }
  1525. ]
  1526. ))
  1527. characterMakers.push(() => makeCharacter(
  1528. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1529. {
  1530. front: {
  1531. height: math.unit(183, "cm"),
  1532. weight: math.unit(80, "kg"),
  1533. name: "Front",
  1534. image: {
  1535. source: "./media/characters/sofia-fluttertail/front.svg",
  1536. bottom: 0.01,
  1537. extra: 2154 / 2081
  1538. }
  1539. },
  1540. frontAlt: {
  1541. height: math.unit(183, "cm"),
  1542. weight: math.unit(80, "kg"),
  1543. name: "Front (alt)",
  1544. image: {
  1545. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1546. }
  1547. },
  1548. back: {
  1549. height: math.unit(183, "cm"),
  1550. weight: math.unit(80, "kg"),
  1551. name: "Back",
  1552. image: {
  1553. source: "./media/characters/sofia-fluttertail/back.svg"
  1554. }
  1555. },
  1556. kneeling: {
  1557. height: math.unit(125, "cm"),
  1558. weight: math.unit(80, "kg"),
  1559. name: "Kneeling",
  1560. image: {
  1561. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1562. extra: 1033 / 977,
  1563. bottom: 23.7 / 1057
  1564. }
  1565. },
  1566. maw: {
  1567. height: math.unit(183 / 5, "cm"),
  1568. name: "Maw",
  1569. image: {
  1570. source: "./media/characters/sofia-fluttertail/maw.svg"
  1571. }
  1572. },
  1573. mawcloseup: {
  1574. height: math.unit(183 / 5 * 0.41, "cm"),
  1575. name: "Maw (Closeup)",
  1576. image: {
  1577. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1578. }
  1579. },
  1580. },
  1581. [
  1582. {
  1583. name: "Normal",
  1584. height: math.unit(1.83, "meter")
  1585. },
  1586. {
  1587. name: "Size Thief",
  1588. height: math.unit(18, "feet")
  1589. },
  1590. {
  1591. name: "50 Foot Collie",
  1592. height: math.unit(50, "feet")
  1593. },
  1594. {
  1595. name: "Macro",
  1596. height: math.unit(96, "feet"),
  1597. default: true
  1598. },
  1599. {
  1600. name: "Megamerger",
  1601. height: math.unit(650, "feet")
  1602. },
  1603. ]
  1604. ))
  1605. characterMakers.push(() => makeCharacter(
  1606. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1607. {
  1608. front: {
  1609. height: math.unit(7, "feet"),
  1610. weight: math.unit(100, "kg"),
  1611. name: "Front",
  1612. image: {
  1613. source: "./media/characters/march/front.svg",
  1614. extra: 1,
  1615. bottom: 0.015
  1616. }
  1617. },
  1618. foot: {
  1619. height: math.unit(0.9, "feet"),
  1620. name: "Foot",
  1621. image: {
  1622. source: "./media/characters/march/foot.svg"
  1623. }
  1624. },
  1625. },
  1626. [
  1627. {
  1628. name: "Normal",
  1629. height: math.unit(7.9, "feet")
  1630. },
  1631. {
  1632. name: "Macro",
  1633. height: math.unit(220, "meters")
  1634. },
  1635. {
  1636. name: "Megamacro",
  1637. height: math.unit(2.98, "km"),
  1638. default: true
  1639. },
  1640. {
  1641. name: "Gigamacro",
  1642. height: math.unit(15963, "km")
  1643. },
  1644. {
  1645. name: "Teramacro",
  1646. height: math.unit(2980000000, "km")
  1647. },
  1648. {
  1649. name: "Examacro",
  1650. height: math.unit(250, "parsecs")
  1651. },
  1652. ]
  1653. ))
  1654. characterMakers.push(() => makeCharacter(
  1655. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1656. {
  1657. front: {
  1658. height: math.unit(6, "feet"),
  1659. weight: math.unit(60, "kg"),
  1660. name: "Front",
  1661. image: {
  1662. source: "./media/characters/noir/front.svg",
  1663. extra: 1,
  1664. bottom: 0.032
  1665. }
  1666. },
  1667. },
  1668. [
  1669. {
  1670. name: "Normal",
  1671. height: math.unit(6.6, "feet")
  1672. },
  1673. {
  1674. name: "Macro",
  1675. height: math.unit(500, "feet")
  1676. },
  1677. {
  1678. name: "Megamacro",
  1679. height: math.unit(2.5, "km"),
  1680. default: true
  1681. },
  1682. {
  1683. name: "Gigamacro",
  1684. height: math.unit(22500, "km")
  1685. },
  1686. {
  1687. name: "Teramacro",
  1688. height: math.unit(2500000000, "km")
  1689. },
  1690. {
  1691. name: "Examacro",
  1692. height: math.unit(200, "parsecs")
  1693. },
  1694. ]
  1695. ))
  1696. characterMakers.push(() => makeCharacter(
  1697. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1698. {
  1699. front: {
  1700. height: math.unit(7, "feet"),
  1701. weight: math.unit(100, "kg"),
  1702. name: "Front",
  1703. image: {
  1704. source: "./media/characters/okuri/front.svg",
  1705. extra: 1,
  1706. bottom: 0.037
  1707. }
  1708. },
  1709. back: {
  1710. height: math.unit(7, "feet"),
  1711. weight: math.unit(100, "kg"),
  1712. name: "Back",
  1713. image: {
  1714. source: "./media/characters/okuri/back.svg",
  1715. extra: 1,
  1716. bottom: 0.007
  1717. }
  1718. },
  1719. },
  1720. [
  1721. {
  1722. name: "Megamacro",
  1723. height: math.unit(100, "miles"),
  1724. default: true
  1725. },
  1726. ]
  1727. ))
  1728. characterMakers.push(() => makeCharacter(
  1729. { name: "Manny", species: ["manectric"], 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/manny/front.svg",
  1737. extra: 1,
  1738. bottom: 0.06
  1739. }
  1740. },
  1741. back: {
  1742. height: math.unit(7, "feet"),
  1743. weight: math.unit(100, "kg"),
  1744. name: "Back",
  1745. image: {
  1746. source: "./media/characters/manny/back.svg",
  1747. extra: 1,
  1748. bottom: 0.014
  1749. }
  1750. },
  1751. },
  1752. [
  1753. {
  1754. name: "Normal",
  1755. height: math.unit(7, "feet"),
  1756. },
  1757. {
  1758. name: "Macro",
  1759. height: math.unit(78, "feet"),
  1760. default: true
  1761. },
  1762. {
  1763. name: "Macro+",
  1764. height: math.unit(300, "meters")
  1765. },
  1766. {
  1767. name: "Macro++",
  1768. height: math.unit(2400, "meters")
  1769. },
  1770. {
  1771. name: "Megamacro",
  1772. height: math.unit(5167, "meters")
  1773. },
  1774. {
  1775. name: "Gigamacro",
  1776. height: math.unit(41769, "miles")
  1777. },
  1778. ]
  1779. ))
  1780. characterMakers.push(() => makeCharacter(
  1781. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1782. {
  1783. front: {
  1784. height: math.unit(7, "feet"),
  1785. weight: math.unit(100, "kg"),
  1786. name: "Front",
  1787. image: {
  1788. source: "./media/characters/adake/front-1.svg"
  1789. }
  1790. },
  1791. frontAlt: {
  1792. height: math.unit(7, "feet"),
  1793. weight: math.unit(100, "kg"),
  1794. name: "Front (Alt)",
  1795. image: {
  1796. source: "./media/characters/adake/front-2.svg",
  1797. extra: 1,
  1798. bottom: 0.01
  1799. }
  1800. },
  1801. back: {
  1802. height: math.unit(7, "feet"),
  1803. weight: math.unit(100, "kg"),
  1804. name: "Back",
  1805. image: {
  1806. source: "./media/characters/adake/back.svg",
  1807. }
  1808. },
  1809. kneel: {
  1810. height: math.unit(5.385, "feet"),
  1811. weight: math.unit(100, "kg"),
  1812. name: "Kneeling",
  1813. image: {
  1814. source: "./media/characters/adake/kneel.svg",
  1815. bottom: 0.052
  1816. }
  1817. },
  1818. },
  1819. [
  1820. {
  1821. name: "Normal",
  1822. height: math.unit(7, "feet"),
  1823. },
  1824. {
  1825. name: "Macro",
  1826. height: math.unit(78, "feet"),
  1827. default: true
  1828. },
  1829. {
  1830. name: "Macro+",
  1831. height: math.unit(300, "meters")
  1832. },
  1833. {
  1834. name: "Macro++",
  1835. height: math.unit(2400, "meters")
  1836. },
  1837. {
  1838. name: "Megamacro",
  1839. height: math.unit(5167, "meters")
  1840. },
  1841. {
  1842. name: "Gigamacro",
  1843. height: math.unit(41769, "miles")
  1844. },
  1845. ]
  1846. ))
  1847. characterMakers.push(() => makeCharacter(
  1848. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1849. {
  1850. front: {
  1851. height: math.unit(1.65, "meters"),
  1852. weight: math.unit(50, "kg"),
  1853. name: "Front",
  1854. image: {
  1855. source: "./media/characters/elijah/front.svg",
  1856. extra: 858 / 830,
  1857. bottom: 95.5 / 953.8559
  1858. }
  1859. },
  1860. back: {
  1861. height: math.unit(1.65, "meters"),
  1862. weight: math.unit(50, "kg"),
  1863. name: "Back",
  1864. image: {
  1865. source: "./media/characters/elijah/back.svg",
  1866. extra: 895 / 850,
  1867. bottom: 5.3 / 897.956
  1868. }
  1869. },
  1870. frontNsfw: {
  1871. height: math.unit(1.65, "meters"),
  1872. weight: math.unit(50, "kg"),
  1873. name: "Front (NSFW)",
  1874. image: {
  1875. source: "./media/characters/elijah/front-nsfw.svg",
  1876. extra: 858 / 830,
  1877. bottom: 95.5 / 953.8559
  1878. }
  1879. },
  1880. backNsfw: {
  1881. height: math.unit(1.65, "meters"),
  1882. weight: math.unit(50, "kg"),
  1883. name: "Back (NSFW)",
  1884. image: {
  1885. source: "./media/characters/elijah/back-nsfw.svg",
  1886. extra: 895 / 850,
  1887. bottom: 5.3 / 897.956
  1888. }
  1889. },
  1890. dick: {
  1891. height: math.unit(1, "feet"),
  1892. name: "Dick",
  1893. image: {
  1894. source: "./media/characters/elijah/dick.svg"
  1895. }
  1896. },
  1897. beakOpen: {
  1898. height: math.unit(1.25, "feet"),
  1899. name: "Beak (Open)",
  1900. image: {
  1901. source: "./media/characters/elijah/beak-open.svg"
  1902. }
  1903. },
  1904. beakShut: {
  1905. height: math.unit(1.25, "feet"),
  1906. name: "Beak (Shut)",
  1907. image: {
  1908. source: "./media/characters/elijah/beak-shut.svg"
  1909. }
  1910. },
  1911. footFlexing: {
  1912. height: math.unit(1.61, "feet"),
  1913. name: "Foot (Flexing)",
  1914. image: {
  1915. source: "./media/characters/elijah/foot-flexing.svg"
  1916. }
  1917. },
  1918. footStepping: {
  1919. height: math.unit(1.44, "feet"),
  1920. name: "Foot (Stepping)",
  1921. image: {
  1922. source: "./media/characters/elijah/foot-stepping.svg"
  1923. }
  1924. },
  1925. plantigradeLeg: {
  1926. height: math.unit(2.34, "feet"),
  1927. name: "Plantigrade Leg",
  1928. image: {
  1929. source: "./media/characters/elijah/plantigrade-leg.svg"
  1930. }
  1931. },
  1932. plantigradeFootLeft: {
  1933. height: math.unit(0.9, "feet"),
  1934. name: "Plantigrade Foot (Left)",
  1935. image: {
  1936. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1937. }
  1938. },
  1939. plantigradeFootRight: {
  1940. height: math.unit(0.9, "feet"),
  1941. name: "Plantigrade Foot (Right)",
  1942. image: {
  1943. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1944. }
  1945. },
  1946. },
  1947. [
  1948. {
  1949. name: "Normal",
  1950. height: math.unit(1.65, "meters")
  1951. },
  1952. {
  1953. name: "Macro",
  1954. height: math.unit(55, "meters"),
  1955. default: true
  1956. },
  1957. {
  1958. name: "Macro+",
  1959. height: math.unit(105, "meters")
  1960. },
  1961. ]
  1962. ))
  1963. characterMakers.push(() => makeCharacter(
  1964. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1965. {
  1966. front: {
  1967. height: math.unit(11, "feet"),
  1968. weight: math.unit(80, "kg"),
  1969. name: "Front",
  1970. image: {
  1971. source: "./media/characters/rai/front.svg",
  1972. extra: 1,
  1973. bottom: 0.03
  1974. }
  1975. },
  1976. side: {
  1977. height: math.unit(11, "feet"),
  1978. weight: math.unit(80, "kg"),
  1979. name: "Side",
  1980. image: {
  1981. source: "./media/characters/rai/side.svg"
  1982. }
  1983. },
  1984. back: {
  1985. height: math.unit(11, "feet"),
  1986. weight: math.unit(80, "lb"),
  1987. name: "Back",
  1988. image: {
  1989. source: "./media/characters/rai/back.svg",
  1990. extra: 1,
  1991. bottom: 0.01
  1992. }
  1993. },
  1994. feral: {
  1995. height: math.unit(11, "feet"),
  1996. weight: math.unit(800, "lb"),
  1997. name: "Feral",
  1998. image: {
  1999. source: "./media/characters/rai/feral.svg",
  2000. extra: 1050 / 659,
  2001. bottom: 0.07
  2002. }
  2003. },
  2004. dragon: {
  2005. height: math.unit(23, "feet"),
  2006. weight: math.unit(50000, "lb"),
  2007. name: "Dragon",
  2008. image: {
  2009. source: "./media/characters/rai/dragon.svg",
  2010. extra: 2498 / 2030,
  2011. bottom: 85.2 / 2584
  2012. }
  2013. },
  2014. maw: {
  2015. height: math.unit(6 / 3.81416, "feet"),
  2016. name: "Maw",
  2017. image: {
  2018. source: "./media/characters/rai/maw.svg"
  2019. }
  2020. },
  2021. },
  2022. [
  2023. {
  2024. name: "Normal",
  2025. height: math.unit(11, "feet")
  2026. },
  2027. {
  2028. name: "Macro",
  2029. height: math.unit(302, "feet"),
  2030. default: true
  2031. },
  2032. ]
  2033. ))
  2034. characterMakers.push(() => makeCharacter(
  2035. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2036. {
  2037. frontDressed: {
  2038. height: math.unit(216, "feet"),
  2039. weight: math.unit(7000000, "lb"),
  2040. name: "Front (Dressed)",
  2041. image: {
  2042. source: "./media/characters/jazzy/front-dressed.svg",
  2043. extra: 2738 / 2651,
  2044. bottom: 41.8 / 2786
  2045. }
  2046. },
  2047. backDressed: {
  2048. height: math.unit(216, "feet"),
  2049. weight: math.unit(7000000, "lb"),
  2050. name: "Back (Dressed)",
  2051. image: {
  2052. source: "./media/characters/jazzy/back-dressed.svg",
  2053. extra: 2775 / 2673,
  2054. bottom: 36.8 / 2817
  2055. }
  2056. },
  2057. front: {
  2058. height: math.unit(216, "feet"),
  2059. weight: math.unit(7000000, "lb"),
  2060. name: "Front",
  2061. image: {
  2062. source: "./media/characters/jazzy/front.svg",
  2063. extra: 2738 / 2651,
  2064. bottom: 41.8 / 2786
  2065. }
  2066. },
  2067. back: {
  2068. height: math.unit(216, "feet"),
  2069. weight: math.unit(7000000, "lb"),
  2070. name: "Back",
  2071. image: {
  2072. source: "./media/characters/jazzy/back.svg",
  2073. extra: 2775 / 2673,
  2074. bottom: 36.8 / 2817
  2075. }
  2076. },
  2077. maw: {
  2078. height: math.unit(20, "feet"),
  2079. name: "Maw",
  2080. image: {
  2081. source: "./media/characters/jazzy/maw.svg"
  2082. }
  2083. },
  2084. paws: {
  2085. height: math.unit(27.5, "feet"),
  2086. name: "Paws",
  2087. image: {
  2088. source: "./media/characters/jazzy/paws.svg"
  2089. }
  2090. },
  2091. eye: {
  2092. height: math.unit(4.4, "feet"),
  2093. name: "Eye",
  2094. image: {
  2095. source: "./media/characters/jazzy/eye.svg"
  2096. }
  2097. },
  2098. droneOffense: {
  2099. height: math.unit(9.5, "inches"),
  2100. name: "Drone (Offense)",
  2101. image: {
  2102. source: "./media/characters/jazzy/drone-offense.svg"
  2103. }
  2104. },
  2105. droneRecon: {
  2106. height: math.unit(9.5, "inches"),
  2107. name: "Drone (Recon)",
  2108. image: {
  2109. source: "./media/characters/jazzy/drone-recon.svg"
  2110. }
  2111. },
  2112. droneDefense: {
  2113. height: math.unit(9.5, "inches"),
  2114. name: "Drone (Defense)",
  2115. image: {
  2116. source: "./media/characters/jazzy/drone-defense.svg"
  2117. }
  2118. },
  2119. },
  2120. [
  2121. {
  2122. name: "Macro",
  2123. height: math.unit(216, "feet"),
  2124. default: true
  2125. },
  2126. ]
  2127. ))
  2128. characterMakers.push(() => makeCharacter(
  2129. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2130. {
  2131. front: {
  2132. height: math.unit(7, "feet"),
  2133. weight: math.unit(80, "kg"),
  2134. name: "Front",
  2135. image: {
  2136. source: "./media/characters/flamm/front.svg",
  2137. extra: 1794 / 1677,
  2138. bottom: 31.7 / 1828.5
  2139. }
  2140. },
  2141. },
  2142. [
  2143. {
  2144. name: "Normal",
  2145. height: math.unit(9.5, "feet")
  2146. },
  2147. {
  2148. name: "Macro",
  2149. height: math.unit(200, "feet"),
  2150. default: true
  2151. },
  2152. ]
  2153. ))
  2154. characterMakers.push(() => makeCharacter(
  2155. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2156. {
  2157. front: {
  2158. height: math.unit(7, "feet"),
  2159. weight: math.unit(80, "kg"),
  2160. name: "Front",
  2161. image: {
  2162. source: "./media/characters/zephiro/front.svg",
  2163. extra: 2309 / 2162,
  2164. bottom: 0.069
  2165. }
  2166. },
  2167. side: {
  2168. height: math.unit(7, "feet"),
  2169. weight: math.unit(80, "kg"),
  2170. name: "Side",
  2171. image: {
  2172. source: "./media/characters/zephiro/side.svg",
  2173. extra: 2403 / 2279,
  2174. bottom: 0.015
  2175. }
  2176. },
  2177. back: {
  2178. height: math.unit(7, "feet"),
  2179. weight: math.unit(80, "kg"),
  2180. name: "Back",
  2181. image: {
  2182. source: "./media/characters/zephiro/back.svg",
  2183. extra: 2373 / 2244,
  2184. bottom: 0.013
  2185. }
  2186. },
  2187. },
  2188. [
  2189. {
  2190. name: "Micro",
  2191. height: math.unit(3, "inches")
  2192. },
  2193. {
  2194. name: "Normal",
  2195. height: math.unit(5 + 3 / 12, "feet"),
  2196. default: true
  2197. },
  2198. {
  2199. name: "Macro",
  2200. height: math.unit(118, "feet")
  2201. },
  2202. ]
  2203. ))
  2204. characterMakers.push(() => makeCharacter(
  2205. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2206. {
  2207. front: {
  2208. height: math.unit(5, "feet"),
  2209. weight: math.unit(90, "kg"),
  2210. name: "Front",
  2211. image: {
  2212. source: "./media/characters/fory/front.svg",
  2213. extra: 2862 / 2674,
  2214. bottom: 180 / 3043.8
  2215. }
  2216. },
  2217. back: {
  2218. height: math.unit(5, "feet"),
  2219. weight: math.unit(90, "kg"),
  2220. name: "Back",
  2221. image: {
  2222. source: "./media/characters/fory/back.svg",
  2223. extra: 2962 / 2791,
  2224. bottom: 106 / 3071.8
  2225. }
  2226. },
  2227. foot: {
  2228. height: math.unit(2.14, "feet"),
  2229. name: "Foot",
  2230. image: {
  2231. source: "./media/characters/fory/foot.svg"
  2232. }
  2233. },
  2234. },
  2235. [
  2236. {
  2237. name: "Normal",
  2238. height: math.unit(5, "feet")
  2239. },
  2240. {
  2241. name: "Macro",
  2242. height: math.unit(50, "feet"),
  2243. default: true
  2244. },
  2245. {
  2246. name: "Megamacro",
  2247. height: math.unit(10, "miles")
  2248. },
  2249. {
  2250. name: "Gigamacro",
  2251. height: math.unit(5, "earths")
  2252. },
  2253. ]
  2254. ))
  2255. characterMakers.push(() => makeCharacter(
  2256. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2257. {
  2258. front: {
  2259. height: math.unit(7, "feet"),
  2260. weight: math.unit(90, "kg"),
  2261. name: "Front",
  2262. image: {
  2263. source: "./media/characters/kurrikage/front.svg",
  2264. extra: 1,
  2265. bottom: 0.035
  2266. }
  2267. },
  2268. back: {
  2269. height: math.unit(7, "feet"),
  2270. weight: math.unit(90, "lb"),
  2271. name: "Back",
  2272. image: {
  2273. source: "./media/characters/kurrikage/back.svg"
  2274. }
  2275. },
  2276. paw: {
  2277. height: math.unit(1.5, "feet"),
  2278. name: "Paw",
  2279. image: {
  2280. source: "./media/characters/kurrikage/paw.svg"
  2281. }
  2282. },
  2283. staff: {
  2284. height: math.unit(6.7, "feet"),
  2285. name: "Staff",
  2286. image: {
  2287. source: "./media/characters/kurrikage/staff.svg"
  2288. }
  2289. },
  2290. peek: {
  2291. height: math.unit(1.05, "feet"),
  2292. name: "Peeking",
  2293. image: {
  2294. source: "./media/characters/kurrikage/peek.svg",
  2295. bottom: 0.08
  2296. }
  2297. },
  2298. },
  2299. [
  2300. {
  2301. name: "Normal",
  2302. height: math.unit(12, "feet"),
  2303. default: true
  2304. },
  2305. {
  2306. name: "Big",
  2307. height: math.unit(20, "feet")
  2308. },
  2309. {
  2310. name: "Macro",
  2311. height: math.unit(500, "feet")
  2312. },
  2313. {
  2314. name: "Megamacro",
  2315. height: math.unit(20, "miles")
  2316. },
  2317. ]
  2318. ))
  2319. characterMakers.push(() => makeCharacter(
  2320. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2321. {
  2322. front: {
  2323. height: math.unit(6, "feet"),
  2324. weight: math.unit(75, "kg"),
  2325. name: "Front",
  2326. image: {
  2327. source: "./media/characters/shingo/front.svg",
  2328. extra: 3511 / 3338,
  2329. bottom: 0.005
  2330. }
  2331. },
  2332. paw: {
  2333. height: math.unit(1, "feet"),
  2334. name: "Paw",
  2335. image: {
  2336. source: "./media/characters/shingo/paw.svg"
  2337. }
  2338. },
  2339. },
  2340. [
  2341. {
  2342. name: "Micro",
  2343. height: math.unit(4, "inches")
  2344. },
  2345. {
  2346. name: "Normal",
  2347. height: math.unit(6, "feet"),
  2348. default: true
  2349. },
  2350. {
  2351. name: "Macro",
  2352. height: math.unit(108, "feet")
  2353. }
  2354. ]
  2355. ))
  2356. characterMakers.push(() => makeCharacter(
  2357. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2358. {
  2359. side: {
  2360. height: math.unit(6, "feet"),
  2361. weight: math.unit(75, "kg"),
  2362. name: "Side",
  2363. image: {
  2364. source: "./media/characters/aigey/side.svg"
  2365. }
  2366. },
  2367. },
  2368. [
  2369. {
  2370. name: "Macro",
  2371. height: math.unit(200, "feet"),
  2372. default: true
  2373. },
  2374. {
  2375. name: "Megamacro",
  2376. height: math.unit(100, "miles")
  2377. },
  2378. ]
  2379. )
  2380. )
  2381. characterMakers.push(() => makeCharacter(
  2382. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2383. {
  2384. front: {
  2385. height: math.unit(5 + 5 / 12, "feet"),
  2386. weight: math.unit(75, "kg"),
  2387. name: "Front",
  2388. image: {
  2389. source: "./media/characters/natasha/front.svg",
  2390. extra: 859 / 824,
  2391. bottom: 23 / 879.6
  2392. }
  2393. },
  2394. frontNsfw: {
  2395. height: math.unit(5 + 5 / 12, "feet"),
  2396. weight: math.unit(75, "kg"),
  2397. name: "Front (NSFW)",
  2398. image: {
  2399. source: "./media/characters/natasha/front-nsfw.svg",
  2400. extra: 859 / 824,
  2401. bottom: 23 / 879.6
  2402. }
  2403. },
  2404. frontErect: {
  2405. height: math.unit(5 + 5 / 12, "feet"),
  2406. weight: math.unit(75, "kg"),
  2407. name: "Front (Erect)",
  2408. image: {
  2409. source: "./media/characters/natasha/front-erect.svg",
  2410. extra: 859 / 824,
  2411. bottom: 23 / 879.6
  2412. }
  2413. },
  2414. back: {
  2415. height: math.unit(5 + 5 / 12, "feet"),
  2416. weight: math.unit(75, "kg"),
  2417. name: "Back",
  2418. image: {
  2419. source: "./media/characters/natasha/back.svg",
  2420. extra: 887.9 / 852.6,
  2421. bottom: 9.7 / 896.4
  2422. }
  2423. },
  2424. backAlt: {
  2425. height: math.unit(5 + 5 / 12, "feet"),
  2426. weight: math.unit(75, "kg"),
  2427. name: "Back (Alt)",
  2428. image: {
  2429. source: "./media/characters/natasha/back-alt.svg",
  2430. extra: 1236.7 / 1192,
  2431. bottom: 22.3 / 1258.2
  2432. }
  2433. },
  2434. dick: {
  2435. height: math.unit(1.772, "feet"),
  2436. name: "Dick",
  2437. image: {
  2438. source: "./media/characters/natasha/dick.svg"
  2439. }
  2440. },
  2441. paw: {
  2442. height: math.unit(0.250, "meters"),
  2443. name: "Paw",
  2444. image: {
  2445. source: "./media/characters/natasha/paw.svg"
  2446. }
  2447. },
  2448. },
  2449. [
  2450. {
  2451. name: "Normal",
  2452. height: math.unit(5 + 5 / 12, "feet")
  2453. },
  2454. {
  2455. name: "Large",
  2456. height: math.unit(12, "feet")
  2457. },
  2458. {
  2459. name: "Macro",
  2460. height: math.unit(100, "feet"),
  2461. default: true
  2462. },
  2463. {
  2464. name: "Macro+",
  2465. height: math.unit(260, "feet")
  2466. },
  2467. {
  2468. name: "Macro++",
  2469. height: math.unit(1, "mile")
  2470. },
  2471. ]
  2472. ))
  2473. characterMakers.push(() => makeCharacter(
  2474. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2475. {
  2476. front: {
  2477. height: math.unit(6, "feet"),
  2478. weight: math.unit(75, "kg"),
  2479. name: "Front",
  2480. image: {
  2481. source: "./media/characters/malik/front.svg"
  2482. }
  2483. },
  2484. side: {
  2485. height: math.unit(6, "feet"),
  2486. weight: math.unit(75, "kg"),
  2487. name: "Side",
  2488. image: {
  2489. source: "./media/characters/malik/side.svg",
  2490. extra: 1.1539
  2491. }
  2492. },
  2493. back: {
  2494. height: math.unit(6, "feet"),
  2495. weight: math.unit(75, "kg"),
  2496. name: "Back",
  2497. image: {
  2498. source: "./media/characters/malik/back.svg"
  2499. }
  2500. },
  2501. },
  2502. [
  2503. {
  2504. name: "Macro",
  2505. height: math.unit(156, "feet"),
  2506. default: true
  2507. },
  2508. {
  2509. name: "Macro+",
  2510. height: math.unit(1188, "feet")
  2511. },
  2512. ]
  2513. ))
  2514. characterMakers.push(() => makeCharacter(
  2515. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2516. {
  2517. front: {
  2518. height: math.unit(6, "feet"),
  2519. weight: math.unit(75, "kg"),
  2520. name: "Front",
  2521. image: {
  2522. source: "./media/characters/sefer/front.svg",
  2523. extra: 848 / 659,
  2524. bottom: 28.3 / 876.442
  2525. }
  2526. },
  2527. back: {
  2528. height: math.unit(6, "feet"),
  2529. weight: math.unit(75, "kg"),
  2530. name: "Back",
  2531. image: {
  2532. source: "./media/characters/sefer/back.svg",
  2533. extra: 864 / 695,
  2534. bottom: 10 / 871
  2535. }
  2536. },
  2537. frontDressed: {
  2538. height: math.unit(6, "feet"),
  2539. weight: math.unit(75, "kg"),
  2540. name: "Front (Dressed)",
  2541. image: {
  2542. source: "./media/characters/sefer/front-dressed.svg",
  2543. extra: 839 / 653,
  2544. bottom: 37.6 / 878
  2545. }
  2546. },
  2547. },
  2548. [
  2549. {
  2550. name: "Normal",
  2551. height: math.unit(6, "feet"),
  2552. default: true
  2553. },
  2554. ]
  2555. ))
  2556. characterMakers.push(() => makeCharacter(
  2557. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2558. {
  2559. body: {
  2560. height: math.unit(2.2428, "meter"),
  2561. weight: math.unit(124.738, "kg"),
  2562. name: "Body",
  2563. image: {
  2564. extra: 1225 / 1050,
  2565. source: "./media/characters/north/front.svg"
  2566. }
  2567. }
  2568. },
  2569. [
  2570. {
  2571. name: "Micro",
  2572. height: math.unit(4, "inches")
  2573. },
  2574. {
  2575. name: "Macro",
  2576. height: math.unit(63, "meters")
  2577. },
  2578. {
  2579. name: "Megamacro",
  2580. height: math.unit(101, "miles"),
  2581. default: true
  2582. }
  2583. ]
  2584. ))
  2585. characterMakers.push(() => makeCharacter(
  2586. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2587. {
  2588. angled: {
  2589. height: math.unit(4, "meter"),
  2590. weight: math.unit(150, "kg"),
  2591. name: "Angled",
  2592. image: {
  2593. source: "./media/characters/talan/angled-sfw.svg",
  2594. bottom: 29 / 3734
  2595. }
  2596. },
  2597. angledNsfw: {
  2598. height: math.unit(4, "meter"),
  2599. weight: math.unit(150, "kg"),
  2600. name: "Angled (NSFW)",
  2601. image: {
  2602. source: "./media/characters/talan/angled-nsfw.svg",
  2603. bottom: 29 / 3734
  2604. }
  2605. },
  2606. frontNsfw: {
  2607. height: math.unit(4, "meter"),
  2608. weight: math.unit(150, "kg"),
  2609. name: "Front (NSFW)",
  2610. image: {
  2611. source: "./media/characters/talan/front-nsfw.svg",
  2612. bottom: 29 / 3734
  2613. }
  2614. },
  2615. sideNsfw: {
  2616. height: math.unit(4, "meter"),
  2617. weight: math.unit(150, "kg"),
  2618. name: "Side (NSFW)",
  2619. image: {
  2620. source: "./media/characters/talan/side-nsfw.svg",
  2621. bottom: 29 / 3734
  2622. }
  2623. },
  2624. back: {
  2625. height: math.unit(4, "meter"),
  2626. weight: math.unit(150, "kg"),
  2627. name: "Back",
  2628. image: {
  2629. source: "./media/characters/talan/back.svg"
  2630. }
  2631. },
  2632. dickBottom: {
  2633. height: math.unit(0.621, "meter"),
  2634. name: "Dick (Bottom)",
  2635. image: {
  2636. source: "./media/characters/talan/dick-bottom.svg"
  2637. }
  2638. },
  2639. dickTop: {
  2640. height: math.unit(0.621, "meter"),
  2641. name: "Dick (Top)",
  2642. image: {
  2643. source: "./media/characters/talan/dick-top.svg"
  2644. }
  2645. },
  2646. dickSide: {
  2647. height: math.unit(0.305, "meter"),
  2648. name: "Dick (Side)",
  2649. image: {
  2650. source: "./media/characters/talan/dick-side.svg"
  2651. }
  2652. },
  2653. dickFront: {
  2654. height: math.unit(0.305, "meter"),
  2655. name: "Dick (Front)",
  2656. image: {
  2657. source: "./media/characters/talan/dick-front.svg"
  2658. }
  2659. },
  2660. },
  2661. [
  2662. {
  2663. name: "Normal",
  2664. height: math.unit(4, "meters")
  2665. },
  2666. {
  2667. name: "Macro",
  2668. height: math.unit(100, "meters")
  2669. },
  2670. {
  2671. name: "Megamacro",
  2672. height: math.unit(2, "miles"),
  2673. default: true
  2674. },
  2675. {
  2676. name: "Gigamacro",
  2677. height: math.unit(5000, "miles")
  2678. },
  2679. {
  2680. name: "Teramacro",
  2681. height: math.unit(100, "parsecs")
  2682. }
  2683. ]
  2684. ))
  2685. characterMakers.push(() => makeCharacter(
  2686. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2687. {
  2688. front: {
  2689. height: math.unit(2, "meter"),
  2690. weight: math.unit(90, "kg"),
  2691. name: "Front",
  2692. image: {
  2693. source: "./media/characters/gael'rathus/front.svg"
  2694. }
  2695. },
  2696. frontAlt: {
  2697. height: math.unit(2, "meter"),
  2698. weight: math.unit(90, "kg"),
  2699. name: "Front (alt)",
  2700. image: {
  2701. source: "./media/characters/gael'rathus/front-alt.svg"
  2702. }
  2703. },
  2704. frontAlt2: {
  2705. height: math.unit(2, "meter"),
  2706. weight: math.unit(90, "kg"),
  2707. name: "Front (alt 2)",
  2708. image: {
  2709. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2710. }
  2711. }
  2712. },
  2713. [
  2714. {
  2715. name: "Normal",
  2716. height: math.unit(9, "feet"),
  2717. default: true
  2718. },
  2719. {
  2720. name: "Large",
  2721. height: math.unit(25, "feet")
  2722. },
  2723. {
  2724. name: "Macro",
  2725. height: math.unit(0.25, "miles")
  2726. },
  2727. {
  2728. name: "Megamacro",
  2729. height: math.unit(10, "miles")
  2730. }
  2731. ]
  2732. ))
  2733. characterMakers.push(() => makeCharacter(
  2734. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2735. {
  2736. side: {
  2737. height: math.unit(2, "meter"),
  2738. weight: math.unit(140, "kg"),
  2739. name: "Side",
  2740. image: {
  2741. source: "./media/characters/sosha/side.svg",
  2742. bottom: 0.042
  2743. }
  2744. },
  2745. },
  2746. [
  2747. {
  2748. name: "Normal",
  2749. height: math.unit(12, "feet"),
  2750. default: true
  2751. }
  2752. ]
  2753. ))
  2754. characterMakers.push(() => makeCharacter(
  2755. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2756. {
  2757. side: {
  2758. height: math.unit(5 + 5 / 12, "feet"),
  2759. weight: math.unit(170, "kg"),
  2760. name: "Side",
  2761. image: {
  2762. source: "./media/characters/runnola/side.svg",
  2763. extra: 741 / 448,
  2764. bottom: 0.05
  2765. }
  2766. },
  2767. },
  2768. [
  2769. {
  2770. name: "Small",
  2771. height: math.unit(3, "feet")
  2772. },
  2773. {
  2774. name: "Normal",
  2775. height: math.unit(5 + 5 / 12, "feet"),
  2776. default: true
  2777. },
  2778. {
  2779. name: "Big",
  2780. height: math.unit(10, "feet")
  2781. },
  2782. ]
  2783. ))
  2784. characterMakers.push(() => makeCharacter(
  2785. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2786. {
  2787. front: {
  2788. height: math.unit(2, "meter"),
  2789. weight: math.unit(50, "kg"),
  2790. name: "Front",
  2791. image: {
  2792. source: "./media/characters/kurribird/front.svg",
  2793. bottom: 0.015
  2794. }
  2795. },
  2796. frontAlt: {
  2797. height: math.unit(1.5, "meter"),
  2798. weight: math.unit(50, "kg"),
  2799. name: "Front (Alt)",
  2800. image: {
  2801. source: "./media/characters/kurribird/front-alt.svg",
  2802. extra: 1.45
  2803. }
  2804. },
  2805. },
  2806. [
  2807. {
  2808. name: "Normal",
  2809. height: math.unit(7, "feet")
  2810. },
  2811. {
  2812. name: "Big",
  2813. height: math.unit(12, "feet"),
  2814. default: true
  2815. },
  2816. {
  2817. name: "Macro",
  2818. height: math.unit(1500, "feet")
  2819. },
  2820. {
  2821. name: "Megamacro",
  2822. height: math.unit(2, "miles")
  2823. }
  2824. ]
  2825. ))
  2826. characterMakers.push(() => makeCharacter(
  2827. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2828. {
  2829. front: {
  2830. height: math.unit(2, "meter"),
  2831. weight: math.unit(80, "kg"),
  2832. name: "Front",
  2833. image: {
  2834. source: "./media/characters/elbial/front.svg",
  2835. extra: 1643 / 1556,
  2836. bottom: 60.2 / 1696
  2837. }
  2838. },
  2839. side: {
  2840. height: math.unit(2, "meter"),
  2841. weight: math.unit(80, "kg"),
  2842. name: "Side",
  2843. image: {
  2844. source: "./media/characters/elbial/side.svg",
  2845. extra: 1630 / 1565,
  2846. bottom: 71.5 / 1697
  2847. }
  2848. },
  2849. back: {
  2850. height: math.unit(2, "meter"),
  2851. weight: math.unit(80, "kg"),
  2852. name: "Back",
  2853. image: {
  2854. source: "./media/characters/elbial/back.svg",
  2855. extra: 1668 / 1595,
  2856. bottom: 5.6 / 1672
  2857. }
  2858. },
  2859. frontDressed: {
  2860. height: math.unit(2, "meter"),
  2861. weight: math.unit(80, "kg"),
  2862. name: "Front (Dressed)",
  2863. image: {
  2864. source: "./media/characters/elbial/front-dressed.svg",
  2865. extra: 1653 / 1584,
  2866. bottom: 57 / 1708
  2867. }
  2868. },
  2869. genitals: {
  2870. height: math.unit(2 / 3.367, "meter"),
  2871. name: "Genitals",
  2872. image: {
  2873. source: "./media/characters/elbial/genitals.svg"
  2874. }
  2875. },
  2876. },
  2877. [
  2878. {
  2879. name: "Large",
  2880. height: math.unit(100, "feet")
  2881. },
  2882. {
  2883. name: "Macro",
  2884. height: math.unit(500, "feet"),
  2885. default: true
  2886. },
  2887. {
  2888. name: "Megamacro",
  2889. height: math.unit(10, "miles")
  2890. },
  2891. {
  2892. name: "Gigamacro",
  2893. height: math.unit(25000, "miles")
  2894. },
  2895. {
  2896. name: "Full-Size",
  2897. height: math.unit(8000000, "gigaparsecs")
  2898. }
  2899. ]
  2900. ))
  2901. characterMakers.push(() => makeCharacter(
  2902. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2903. {
  2904. front: {
  2905. height: math.unit(2, "meter"),
  2906. weight: math.unit(60, "kg"),
  2907. name: "Front",
  2908. image: {
  2909. source: "./media/characters/noah/front.svg"
  2910. }
  2911. },
  2912. talons: {
  2913. height: math.unit(0.315, "meter"),
  2914. name: "Talons",
  2915. image: {
  2916. source: "./media/characters/noah/talons.svg"
  2917. }
  2918. }
  2919. },
  2920. [
  2921. {
  2922. name: "Large",
  2923. height: math.unit(50, "feet")
  2924. },
  2925. {
  2926. name: "Macro",
  2927. height: math.unit(750, "feet"),
  2928. default: true
  2929. },
  2930. {
  2931. name: "Megamacro",
  2932. height: math.unit(50, "miles")
  2933. },
  2934. {
  2935. name: "Gigamacro",
  2936. height: math.unit(100000, "miles")
  2937. },
  2938. {
  2939. name: "Full-Size",
  2940. height: math.unit(3000000000, "miles")
  2941. }
  2942. ]
  2943. ))
  2944. characterMakers.push(() => makeCharacter(
  2945. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2946. {
  2947. front: {
  2948. height: math.unit(2, "meter"),
  2949. weight: math.unit(80, "kg"),
  2950. name: "Front",
  2951. image: {
  2952. source: "./media/characters/natalya/front.svg"
  2953. }
  2954. },
  2955. back: {
  2956. height: math.unit(2, "meter"),
  2957. weight: math.unit(80, "kg"),
  2958. name: "Back",
  2959. image: {
  2960. source: "./media/characters/natalya/back.svg"
  2961. }
  2962. }
  2963. },
  2964. [
  2965. {
  2966. name: "Normal",
  2967. height: math.unit(150, "feet"),
  2968. default: true
  2969. },
  2970. {
  2971. name: "Megamacro",
  2972. height: math.unit(5, "miles")
  2973. },
  2974. {
  2975. name: "Full-Size",
  2976. height: math.unit(600, "kiloparsecs")
  2977. }
  2978. ]
  2979. ))
  2980. characterMakers.push(() => makeCharacter(
  2981. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2982. {
  2983. front: {
  2984. height: math.unit(2, "meter"),
  2985. weight: math.unit(50, "kg"),
  2986. name: "Front",
  2987. image: {
  2988. source: "./media/characters/erestrebah/front.svg",
  2989. extra: 208 / 193,
  2990. bottom: 0.055
  2991. }
  2992. },
  2993. back: {
  2994. height: math.unit(2, "meter"),
  2995. weight: math.unit(50, "kg"),
  2996. name: "Back",
  2997. image: {
  2998. source: "./media/characters/erestrebah/back.svg",
  2999. extra: 1.3
  3000. }
  3001. }
  3002. },
  3003. [
  3004. {
  3005. name: "Normal",
  3006. height: math.unit(10, "feet")
  3007. },
  3008. {
  3009. name: "Large",
  3010. height: math.unit(50, "feet"),
  3011. default: true
  3012. },
  3013. {
  3014. name: "Macro",
  3015. height: math.unit(300, "feet")
  3016. },
  3017. {
  3018. name: "Macro+",
  3019. height: math.unit(750, "feet")
  3020. },
  3021. {
  3022. name: "Megamacro",
  3023. height: math.unit(3, "miles")
  3024. }
  3025. ]
  3026. ))
  3027. characterMakers.push(() => makeCharacter(
  3028. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3029. {
  3030. front: {
  3031. height: math.unit(2, "meter"),
  3032. weight: math.unit(80, "kg"),
  3033. name: "Front",
  3034. image: {
  3035. source: "./media/characters/jennifer/front.svg",
  3036. bottom: 0.11,
  3037. extra: 1.16
  3038. }
  3039. },
  3040. frontAlt: {
  3041. height: math.unit(2, "meter"),
  3042. weight: math.unit(80, "kg"),
  3043. name: "Front (Alt)",
  3044. image: {
  3045. source: "./media/characters/jennifer/front-alt.svg"
  3046. }
  3047. }
  3048. },
  3049. [
  3050. {
  3051. name: "Canon Height",
  3052. height: math.unit(120, "feet"),
  3053. default: true
  3054. },
  3055. {
  3056. name: "Macro+",
  3057. height: math.unit(300, "feet")
  3058. },
  3059. {
  3060. name: "Megamacro",
  3061. height: math.unit(20000, "feet")
  3062. }
  3063. ]
  3064. ))
  3065. characterMakers.push(() => makeCharacter(
  3066. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3067. {
  3068. front: {
  3069. height: math.unit(2, "meter"),
  3070. weight: math.unit(50, "kg"),
  3071. name: "Front",
  3072. image: {
  3073. source: "./media/characters/kalista/front.svg",
  3074. extra: 1947 / 1700,
  3075. bottom: 76.6 / 1412.98
  3076. }
  3077. },
  3078. back: {
  3079. height: math.unit(2, "meter"),
  3080. weight: math.unit(50, "kg"),
  3081. name: "Back",
  3082. image: {
  3083. source: "./media/characters/kalista/back.svg",
  3084. extra: 1366 / 1156,
  3085. bottom: 33.9 / 1362.78
  3086. }
  3087. }
  3088. },
  3089. [
  3090. {
  3091. name: "Uncomfortably Small",
  3092. height: math.unit(10, "feet")
  3093. },
  3094. {
  3095. name: "Small",
  3096. height: math.unit(30, "feet")
  3097. },
  3098. {
  3099. name: "Macro",
  3100. height: math.unit(100, "feet"),
  3101. default: true
  3102. },
  3103. {
  3104. name: "Macro+",
  3105. height: math.unit(2000, "feet")
  3106. },
  3107. {
  3108. name: "True Form",
  3109. height: math.unit(8924, "miles")
  3110. }
  3111. ]
  3112. ))
  3113. characterMakers.push(() => makeCharacter(
  3114. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3115. {
  3116. front: {
  3117. height: math.unit(2, "meter"),
  3118. weight: math.unit(120, "kg"),
  3119. name: "Front",
  3120. image: {
  3121. source: "./media/characters/ggv/front.svg"
  3122. }
  3123. },
  3124. side: {
  3125. height: math.unit(2, "meter"),
  3126. weight: math.unit(120, "kg"),
  3127. name: "Side",
  3128. image: {
  3129. source: "./media/characters/ggv/side.svg"
  3130. }
  3131. }
  3132. },
  3133. [
  3134. {
  3135. name: "Extremely Puny",
  3136. height: math.unit(9 + 5 / 12, "feet")
  3137. },
  3138. {
  3139. name: "Horribly Small",
  3140. height: math.unit(47.7, "miles"),
  3141. default: true
  3142. },
  3143. {
  3144. name: "Reasonably Sized",
  3145. height: math.unit(25000, "parsecs")
  3146. },
  3147. {
  3148. name: "Slightly Uncompressed",
  3149. height: math.unit(7.77e31, "parsecs")
  3150. },
  3151. {
  3152. name: "Omniversal",
  3153. height: math.unit(1e300, "meters")
  3154. },
  3155. ]
  3156. ))
  3157. characterMakers.push(() => makeCharacter(
  3158. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3159. {
  3160. front: {
  3161. height: math.unit(2, "meter"),
  3162. weight: math.unit(75, "lb"),
  3163. name: "Front",
  3164. image: {
  3165. source: "./media/characters/napalm/front.svg"
  3166. }
  3167. },
  3168. back: {
  3169. height: math.unit(2, "meter"),
  3170. weight: math.unit(75, "lb"),
  3171. name: "Back",
  3172. image: {
  3173. source: "./media/characters/napalm/back.svg"
  3174. }
  3175. }
  3176. },
  3177. [
  3178. {
  3179. name: "Standard",
  3180. height: math.unit(55, "feet"),
  3181. default: true
  3182. }
  3183. ]
  3184. ))
  3185. characterMakers.push(() => makeCharacter(
  3186. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3187. {
  3188. front: {
  3189. height: math.unit(7 + 5 / 6, "feet"),
  3190. weight: math.unit(325, "lb"),
  3191. name: "Front",
  3192. image: {
  3193. source: "./media/characters/asana/front.svg",
  3194. extra: 1133 / 1060,
  3195. bottom: 15.2 / 1148.6
  3196. }
  3197. },
  3198. back: {
  3199. height: math.unit(7 + 5 / 6, "feet"),
  3200. weight: math.unit(325, "lb"),
  3201. name: "Back",
  3202. image: {
  3203. source: "./media/characters/asana/back.svg",
  3204. extra: 1114 / 1043,
  3205. bottom: 5 / 1120
  3206. }
  3207. },
  3208. dressedDark: {
  3209. height: math.unit(7 + 5 / 6, "feet"),
  3210. weight: math.unit(325, "lb"),
  3211. name: "Dressed (Dark)",
  3212. image: {
  3213. source: "./media/characters/asana/dressed-dark.svg",
  3214. extra: 1133 / 1060,
  3215. bottom: 15.2 / 1148.6
  3216. }
  3217. },
  3218. dressedLight: {
  3219. height: math.unit(7 + 5 / 6, "feet"),
  3220. weight: math.unit(325, "lb"),
  3221. name: "Dressed (Light)",
  3222. image: {
  3223. source: "./media/characters/asana/dressed-light.svg",
  3224. extra: 1133 / 1060,
  3225. bottom: 15.2 / 1148.6
  3226. }
  3227. },
  3228. },
  3229. [
  3230. {
  3231. name: "Standard",
  3232. height: math.unit(7 + 5 / 6, "feet"),
  3233. default: true
  3234. },
  3235. {
  3236. name: "Large",
  3237. height: math.unit(10, "meters")
  3238. },
  3239. {
  3240. name: "Macro",
  3241. height: math.unit(2500, "meters")
  3242. },
  3243. {
  3244. name: "Megamacro",
  3245. height: math.unit(5e6, "meters")
  3246. },
  3247. {
  3248. name: "Examacro",
  3249. height: math.unit(5e12, "lightyears")
  3250. },
  3251. {
  3252. name: "Max Size",
  3253. height: math.unit(1e31, "lightyears")
  3254. }
  3255. ]
  3256. ))
  3257. characterMakers.push(() => makeCharacter(
  3258. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3259. {
  3260. front: {
  3261. height: math.unit(2, "meter"),
  3262. weight: math.unit(60, "kg"),
  3263. name: "Front",
  3264. image: {
  3265. source: "./media/characters/ebony/front.svg",
  3266. bottom: 0.03,
  3267. extra: 1045 / 810 + 0.03
  3268. }
  3269. },
  3270. side: {
  3271. height: math.unit(2, "meter"),
  3272. weight: math.unit(60, "kg"),
  3273. name: "Side",
  3274. image: {
  3275. source: "./media/characters/ebony/side.svg",
  3276. bottom: 0.03,
  3277. extra: 1045 / 810 + 0.03
  3278. }
  3279. },
  3280. back: {
  3281. height: math.unit(2, "meter"),
  3282. weight: math.unit(60, "kg"),
  3283. name: "Back",
  3284. image: {
  3285. source: "./media/characters/ebony/back.svg",
  3286. bottom: 0.01,
  3287. extra: 1045 / 810 + 0.01
  3288. }
  3289. },
  3290. },
  3291. [
  3292. // TODO check why I did this lol
  3293. {
  3294. name: "Standard",
  3295. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3296. default: true
  3297. },
  3298. {
  3299. name: "Macro",
  3300. height: math.unit(200, "feet")
  3301. },
  3302. {
  3303. name: "Gigamacro",
  3304. height: math.unit(13000, "km")
  3305. }
  3306. ]
  3307. ))
  3308. characterMakers.push(() => makeCharacter(
  3309. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3310. {
  3311. front: {
  3312. height: math.unit(6, "feet"),
  3313. weight: math.unit(175, "lb"),
  3314. name: "Front",
  3315. image: {
  3316. source: "./media/characters/mountain/front.svg",
  3317. extra: 972 / 955,
  3318. bottom: 64 / 1036.6
  3319. }
  3320. },
  3321. back: {
  3322. height: math.unit(6, "feet"),
  3323. weight: math.unit(175, "lb"),
  3324. name: "Back",
  3325. image: {
  3326. source: "./media/characters/mountain/back.svg",
  3327. extra: 970 / 950,
  3328. bottom: 28.25 / 999
  3329. }
  3330. },
  3331. },
  3332. [
  3333. {
  3334. name: "Large",
  3335. height: math.unit(20, "meters")
  3336. },
  3337. {
  3338. name: "Macro",
  3339. height: math.unit(300, "meters")
  3340. },
  3341. {
  3342. name: "Gigamacro",
  3343. height: math.unit(10000, "km"),
  3344. default: true
  3345. },
  3346. {
  3347. name: "Examacro",
  3348. height: math.unit(10e9, "lightyears")
  3349. }
  3350. ]
  3351. ))
  3352. characterMakers.push(() => makeCharacter(
  3353. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3354. {
  3355. front: {
  3356. height: math.unit(8, "feet"),
  3357. weight: math.unit(500, "lb"),
  3358. name: "Front",
  3359. image: {
  3360. source: "./media/characters/rick/front.svg"
  3361. }
  3362. }
  3363. },
  3364. [
  3365. {
  3366. name: "Normal",
  3367. height: math.unit(8, "feet"),
  3368. default: true
  3369. },
  3370. {
  3371. name: "Macro",
  3372. height: math.unit(5, "km")
  3373. }
  3374. ]
  3375. ))
  3376. characterMakers.push(() => makeCharacter(
  3377. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3378. {
  3379. front: {
  3380. height: math.unit(8, "feet"),
  3381. weight: math.unit(120, "lb"),
  3382. name: "Front",
  3383. image: {
  3384. source: "./media/characters/ona/front.svg"
  3385. }
  3386. },
  3387. frontAlt: {
  3388. height: math.unit(8, "feet"),
  3389. weight: math.unit(120, "lb"),
  3390. name: "Front (Alt)",
  3391. image: {
  3392. source: "./media/characters/ona/front-alt.svg"
  3393. }
  3394. },
  3395. back: {
  3396. height: math.unit(8, "feet"),
  3397. weight: math.unit(120, "lb"),
  3398. name: "Back",
  3399. image: {
  3400. source: "./media/characters/ona/back.svg"
  3401. }
  3402. },
  3403. foot: {
  3404. height: math.unit(1.1, "feet"),
  3405. name: "Foot",
  3406. image: {
  3407. source: "./media/characters/ona/foot.svg"
  3408. }
  3409. }
  3410. },
  3411. [
  3412. {
  3413. name: "Megamacro",
  3414. height: math.unit(70, "km"),
  3415. default: true
  3416. },
  3417. {
  3418. name: "Gigamacro",
  3419. height: math.unit(681818, "miles")
  3420. },
  3421. {
  3422. name: "Examacro",
  3423. height: math.unit(3800000, "lightyears")
  3424. },
  3425. ]
  3426. ))
  3427. characterMakers.push(() => makeCharacter(
  3428. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3429. {
  3430. front: {
  3431. height: math.unit(12, "feet"),
  3432. weight: math.unit(3000, "lb"),
  3433. name: "Front",
  3434. image: {
  3435. source: "./media/characters/mech/front.svg",
  3436. extra: 2900 / 2770,
  3437. bottom: 110 / 3010
  3438. }
  3439. },
  3440. back: {
  3441. height: math.unit(12, "feet"),
  3442. weight: math.unit(3000, "lb"),
  3443. name: "Back",
  3444. image: {
  3445. source: "./media/characters/mech/back.svg",
  3446. extra: 3011 / 2890,
  3447. bottom: 94 / 3105
  3448. }
  3449. },
  3450. maw: {
  3451. height: math.unit(3.07, "feet"),
  3452. name: "Maw",
  3453. image: {
  3454. source: "./media/characters/mech/maw.svg"
  3455. }
  3456. },
  3457. head: {
  3458. height: math.unit(2.82, "feet"),
  3459. name: "Head",
  3460. image: {
  3461. source: "./media/characters/mech/head.svg"
  3462. }
  3463. },
  3464. dick: {
  3465. height: math.unit(1.43, "feet"),
  3466. name: "Dick",
  3467. image: {
  3468. source: "./media/characters/mech/dick.svg"
  3469. }
  3470. },
  3471. },
  3472. [
  3473. {
  3474. name: "Normal",
  3475. height: math.unit(12, "feet")
  3476. },
  3477. {
  3478. name: "Macro",
  3479. height: math.unit(300, "feet"),
  3480. default: true
  3481. },
  3482. {
  3483. name: "Macro+",
  3484. height: math.unit(1500, "feet")
  3485. },
  3486. ]
  3487. ))
  3488. characterMakers.push(() => makeCharacter(
  3489. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3490. {
  3491. front: {
  3492. height: math.unit(1.3, "meter"),
  3493. weight: math.unit(30, "kg"),
  3494. name: "Front",
  3495. image: {
  3496. source: "./media/characters/gregory/front.svg",
  3497. }
  3498. }
  3499. },
  3500. [
  3501. {
  3502. name: "Normal",
  3503. height: math.unit(1.3, "meter"),
  3504. default: true
  3505. },
  3506. {
  3507. name: "Macro",
  3508. height: math.unit(20, "meter")
  3509. }
  3510. ]
  3511. ))
  3512. characterMakers.push(() => makeCharacter(
  3513. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3514. {
  3515. front: {
  3516. height: math.unit(2.8, "meter"),
  3517. weight: math.unit(200, "kg"),
  3518. name: "Front",
  3519. image: {
  3520. source: "./media/characters/elory/front.svg",
  3521. }
  3522. }
  3523. },
  3524. [
  3525. {
  3526. name: "Normal",
  3527. height: math.unit(2.8, "meter"),
  3528. default: true
  3529. },
  3530. {
  3531. name: "Macro",
  3532. height: math.unit(38, "meter")
  3533. }
  3534. ]
  3535. ))
  3536. characterMakers.push(() => makeCharacter(
  3537. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3538. {
  3539. front: {
  3540. height: math.unit(470, "feet"),
  3541. weight: math.unit(924, "tons"),
  3542. name: "Front",
  3543. image: {
  3544. source: "./media/characters/angelpatamon/front.svg",
  3545. }
  3546. }
  3547. },
  3548. [
  3549. {
  3550. name: "Normal",
  3551. height: math.unit(470, "feet"),
  3552. default: true
  3553. },
  3554. {
  3555. name: "Deity Size I",
  3556. height: math.unit(28651.2, "km")
  3557. },
  3558. {
  3559. name: "Deity Size II",
  3560. height: math.unit(171907.2, "km")
  3561. }
  3562. ]
  3563. ))
  3564. characterMakers.push(() => makeCharacter(
  3565. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3566. {
  3567. side: {
  3568. height: math.unit(7.2, "meter"),
  3569. weight: math.unit(8.2, "tons"),
  3570. name: "Side",
  3571. image: {
  3572. source: "./media/characters/cryae/side.svg",
  3573. extra: 3500 / 1500
  3574. }
  3575. }
  3576. },
  3577. [
  3578. {
  3579. name: "Normal",
  3580. height: math.unit(7.2, "meter"),
  3581. default: true
  3582. }
  3583. ]
  3584. ))
  3585. characterMakers.push(() => makeCharacter(
  3586. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3587. {
  3588. front: {
  3589. height: math.unit(6, "feet"),
  3590. weight: math.unit(175, "lb"),
  3591. name: "Front",
  3592. image: {
  3593. source: "./media/characters/xera/front.svg",
  3594. extra: 2377 / 1972,
  3595. bottom: 75.5 / 2452
  3596. }
  3597. },
  3598. side: {
  3599. height: math.unit(6, "feet"),
  3600. weight: math.unit(175, "lb"),
  3601. name: "Side",
  3602. image: {
  3603. source: "./media/characters/xera/side.svg",
  3604. extra: 2345 / 2019,
  3605. bottom: 39.7 / 2384
  3606. }
  3607. },
  3608. back: {
  3609. height: math.unit(6, "feet"),
  3610. weight: math.unit(175, "lb"),
  3611. name: "Back",
  3612. image: {
  3613. source: "./media/characters/xera/back.svg",
  3614. extra: 2095 / 1984,
  3615. bottom: 67 / 2166
  3616. }
  3617. },
  3618. },
  3619. [
  3620. {
  3621. name: "Small",
  3622. height: math.unit(10, "feet")
  3623. },
  3624. {
  3625. name: "Macro",
  3626. height: math.unit(500, "meters"),
  3627. default: true
  3628. },
  3629. {
  3630. name: "Macro+",
  3631. height: math.unit(10, "km")
  3632. },
  3633. {
  3634. name: "Gigamacro",
  3635. height: math.unit(25000, "km")
  3636. },
  3637. {
  3638. name: "Teramacro",
  3639. height: math.unit(3e6, "km")
  3640. }
  3641. ]
  3642. ))
  3643. characterMakers.push(() => makeCharacter(
  3644. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3645. {
  3646. front: {
  3647. height: math.unit(6, "feet"),
  3648. weight: math.unit(175, "lb"),
  3649. name: "Front",
  3650. image: {
  3651. source: "./media/characters/nebula/front.svg",
  3652. extra: 2566 / 2362,
  3653. bottom: 81 / 2644
  3654. }
  3655. }
  3656. },
  3657. [
  3658. {
  3659. name: "Small",
  3660. height: math.unit(4.5, "meters")
  3661. },
  3662. {
  3663. name: "Macro",
  3664. height: math.unit(1500, "meters"),
  3665. default: true
  3666. },
  3667. {
  3668. name: "Megamacro",
  3669. height: math.unit(150, "km")
  3670. },
  3671. {
  3672. name: "Gigamacro",
  3673. height: math.unit(27000, "km")
  3674. }
  3675. ]
  3676. ))
  3677. characterMakers.push(() => makeCharacter(
  3678. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3679. {
  3680. front: {
  3681. height: math.unit(6, "feet"),
  3682. weight: math.unit(225, "lb"),
  3683. name: "Front",
  3684. image: {
  3685. source: "./media/characters/abysgar/front.svg"
  3686. }
  3687. }
  3688. },
  3689. [
  3690. {
  3691. name: "Small",
  3692. height: math.unit(4.5, "meters")
  3693. },
  3694. {
  3695. name: "Macro",
  3696. height: math.unit(1250, "meters"),
  3697. default: true
  3698. },
  3699. {
  3700. name: "Megamacro",
  3701. height: math.unit(125, "km")
  3702. },
  3703. {
  3704. name: "Gigamacro",
  3705. height: math.unit(26000, "km")
  3706. }
  3707. ]
  3708. ))
  3709. characterMakers.push(() => makeCharacter(
  3710. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3711. {
  3712. front: {
  3713. height: math.unit(6, "feet"),
  3714. weight: math.unit(180, "lb"),
  3715. name: "Front",
  3716. image: {
  3717. source: "./media/characters/yakuz/front.svg"
  3718. }
  3719. }
  3720. },
  3721. [
  3722. {
  3723. name: "Small",
  3724. height: math.unit(5, "meters")
  3725. },
  3726. {
  3727. name: "Macro",
  3728. height: math.unit(1500, "meters"),
  3729. default: true
  3730. },
  3731. {
  3732. name: "Megamacro",
  3733. height: math.unit(200, "km")
  3734. },
  3735. {
  3736. name: "Gigamacro",
  3737. height: math.unit(100000, "km")
  3738. }
  3739. ]
  3740. ))
  3741. characterMakers.push(() => makeCharacter(
  3742. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3743. {
  3744. front: {
  3745. height: math.unit(6, "feet"),
  3746. weight: math.unit(175, "lb"),
  3747. name: "Front",
  3748. image: {
  3749. source: "./media/characters/mirova/front.svg",
  3750. extra: 3334 / 3071,
  3751. bottom: 42 / 3375.6
  3752. }
  3753. }
  3754. },
  3755. [
  3756. {
  3757. name: "Small",
  3758. height: math.unit(5, "meters")
  3759. },
  3760. {
  3761. name: "Macro",
  3762. height: math.unit(900, "meters"),
  3763. default: true
  3764. },
  3765. {
  3766. name: "Megamacro",
  3767. height: math.unit(135, "km")
  3768. },
  3769. {
  3770. name: "Gigamacro",
  3771. height: math.unit(20000, "km")
  3772. }
  3773. ]
  3774. ))
  3775. characterMakers.push(() => makeCharacter(
  3776. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3777. {
  3778. side: {
  3779. height: math.unit(28.35, "feet"),
  3780. weight: math.unit(99.75, "tons"),
  3781. name: "Side",
  3782. image: {
  3783. source: "./media/characters/asana-mech/side.svg",
  3784. extra: 923 / 699,
  3785. bottom: 50 / 975
  3786. }
  3787. },
  3788. chaingun: {
  3789. height: math.unit(7, "feet"),
  3790. weight: math.unit(2400, "lb"),
  3791. name: "Chaingun",
  3792. image: {
  3793. source: "./media/characters/asana-mech/chaingun.svg"
  3794. }
  3795. },
  3796. laser: {
  3797. height: math.unit(7.12, "feet"),
  3798. weight: math.unit(2000, "lb"),
  3799. name: "Laser",
  3800. image: {
  3801. source: "./media/characters/asana-mech/laser.svg"
  3802. }
  3803. },
  3804. },
  3805. [
  3806. {
  3807. name: "Normal",
  3808. height: math.unit(28.35, "feet"),
  3809. default: true
  3810. },
  3811. {
  3812. name: "Macro",
  3813. height: math.unit(2500, "feet")
  3814. },
  3815. {
  3816. name: "Megamacro",
  3817. height: math.unit(25, "miles")
  3818. },
  3819. {
  3820. name: "Examacro",
  3821. height: math.unit(6e8, "lightyears")
  3822. },
  3823. ]
  3824. ))
  3825. characterMakers.push(() => makeCharacter(
  3826. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3827. {
  3828. front: {
  3829. height: math.unit(5, "meters"),
  3830. weight: math.unit(1000, "kg"),
  3831. name: "Front",
  3832. image: {
  3833. source: "./media/characters/asche/front.svg",
  3834. extra: 1258 / 1190,
  3835. bottom: 47 / 1305
  3836. }
  3837. },
  3838. frontUnderwear: {
  3839. height: math.unit(5, "meters"),
  3840. weight: math.unit(1000, "kg"),
  3841. name: "Front (Underwear)",
  3842. image: {
  3843. source: "./media/characters/asche/front-underwear.svg",
  3844. extra: 1258 / 1190,
  3845. bottom: 47 / 1305
  3846. }
  3847. },
  3848. frontDressed: {
  3849. height: math.unit(5, "meters"),
  3850. weight: math.unit(1000, "kg"),
  3851. name: "Front (Dressed)",
  3852. image: {
  3853. source: "./media/characters/asche/front-dressed.svg",
  3854. extra: 1258 / 1190,
  3855. bottom: 47 / 1305
  3856. }
  3857. },
  3858. frontArmor: {
  3859. height: math.unit(5, "meters"),
  3860. weight: math.unit(1000, "kg"),
  3861. name: "Front (Armored)",
  3862. image: {
  3863. source: "./media/characters/asche/front-armored.svg",
  3864. extra: 1374 / 1308,
  3865. bottom: 23 / 1397
  3866. }
  3867. },
  3868. mp724: {
  3869. height: math.unit(0.96, "meters"),
  3870. weight: math.unit(38, "kg"),
  3871. name: "H&K MP724",
  3872. image: {
  3873. source: "./media/characters/asche/h&k-mp724.svg"
  3874. }
  3875. },
  3876. side: {
  3877. height: math.unit(5, "meters"),
  3878. weight: math.unit(1000, "kg"),
  3879. name: "Side",
  3880. image: {
  3881. source: "./media/characters/asche/side.svg",
  3882. extra: 1717 / 1609,
  3883. bottom: 0.005
  3884. }
  3885. },
  3886. back: {
  3887. height: math.unit(5, "meters"),
  3888. weight: math.unit(1000, "kg"),
  3889. name: "Back",
  3890. image: {
  3891. source: "./media/characters/asche/back.svg",
  3892. extra: 1570 / 1501
  3893. }
  3894. },
  3895. },
  3896. [
  3897. {
  3898. name: "DEFCON 5",
  3899. height: math.unit(5, "meters")
  3900. },
  3901. {
  3902. name: "DEFCON 4",
  3903. height: math.unit(500, "meters"),
  3904. default: true
  3905. },
  3906. {
  3907. name: "DEFCON 3",
  3908. height: math.unit(5, "km")
  3909. },
  3910. {
  3911. name: "DEFCON 2",
  3912. height: math.unit(500, "km")
  3913. },
  3914. {
  3915. name: "DEFCON 1",
  3916. height: math.unit(500000, "km")
  3917. },
  3918. {
  3919. name: "DEFCON 0",
  3920. height: math.unit(3, "gigaparsecs")
  3921. },
  3922. ]
  3923. ))
  3924. characterMakers.push(() => makeCharacter(
  3925. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3926. {
  3927. front: {
  3928. height: math.unit(2, "meters"),
  3929. weight: math.unit(76, "kg"),
  3930. name: "Front",
  3931. image: {
  3932. source: "./media/characters/gale/front.svg"
  3933. }
  3934. },
  3935. frontAlt1: {
  3936. height: math.unit(2, "meters"),
  3937. weight: math.unit(76, "kg"),
  3938. name: "Front (Alt 1)",
  3939. image: {
  3940. source: "./media/characters/gale/front-alt-1.svg"
  3941. }
  3942. },
  3943. frontAlt2: {
  3944. height: math.unit(2, "meters"),
  3945. weight: math.unit(76, "kg"),
  3946. name: "Front (Alt 2)",
  3947. image: {
  3948. source: "./media/characters/gale/front-alt-2.svg"
  3949. }
  3950. },
  3951. },
  3952. [
  3953. {
  3954. name: "Normal",
  3955. height: math.unit(7, "feet")
  3956. },
  3957. {
  3958. name: "Macro",
  3959. height: math.unit(150, "feet"),
  3960. default: true
  3961. },
  3962. {
  3963. name: "Macro+",
  3964. height: math.unit(300, "feet")
  3965. },
  3966. ]
  3967. ))
  3968. characterMakers.push(() => makeCharacter(
  3969. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3970. {
  3971. front: {
  3972. height: math.unit(2, "meters"),
  3973. weight: math.unit(76, "kg"),
  3974. name: "Front",
  3975. image: {
  3976. source: "./media/characters/draylen/front.svg"
  3977. }
  3978. }
  3979. },
  3980. [
  3981. {
  3982. name: "Macro",
  3983. height: math.unit(150, "feet"),
  3984. default: true
  3985. }
  3986. ]
  3987. ))
  3988. characterMakers.push(() => makeCharacter(
  3989. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3990. {
  3991. front: {
  3992. height: math.unit(7 + 9 / 12, "feet"),
  3993. weight: math.unit(379, "lbs"),
  3994. name: "Front",
  3995. image: {
  3996. source: "./media/characters/chez/front.svg"
  3997. }
  3998. },
  3999. side: {
  4000. height: math.unit(7 + 9 / 12, "feet"),
  4001. weight: math.unit(379, "lbs"),
  4002. name: "Side",
  4003. image: {
  4004. source: "./media/characters/chez/side.svg"
  4005. }
  4006. }
  4007. },
  4008. [
  4009. {
  4010. name: "Normal",
  4011. height: math.unit(7 + 9 / 12, "feet"),
  4012. default: true
  4013. },
  4014. {
  4015. name: "God King",
  4016. height: math.unit(9750000, "meters")
  4017. }
  4018. ]
  4019. ))
  4020. characterMakers.push(() => makeCharacter(
  4021. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4022. {
  4023. front: {
  4024. height: math.unit(6, "feet"),
  4025. weight: math.unit(275, "lbs"),
  4026. name: "Front",
  4027. image: {
  4028. source: "./media/characters/kaylum/front.svg",
  4029. bottom: 0.01,
  4030. extra: 1166 / 1031
  4031. }
  4032. },
  4033. frontWingless: {
  4034. height: math.unit(6, "feet"),
  4035. weight: math.unit(275, "lbs"),
  4036. name: "Front (Wingless)",
  4037. image: {
  4038. source: "./media/characters/kaylum/front-wingless.svg",
  4039. bottom: 0.01,
  4040. extra: 1117 / 1031
  4041. }
  4042. }
  4043. },
  4044. [
  4045. {
  4046. name: "Normal",
  4047. height: math.unit(3.05, "meters")
  4048. },
  4049. {
  4050. name: "Master",
  4051. height: math.unit(5.5, "meters")
  4052. },
  4053. {
  4054. name: "Rampage",
  4055. height: math.unit(19, "meters")
  4056. },
  4057. {
  4058. name: "Macro Lite",
  4059. height: math.unit(37, "meters")
  4060. },
  4061. {
  4062. name: "Hyper Predator",
  4063. height: math.unit(61, "meters")
  4064. },
  4065. {
  4066. name: "Macro",
  4067. height: math.unit(138, "meters"),
  4068. default: true
  4069. }
  4070. ]
  4071. ))
  4072. characterMakers.push(() => makeCharacter(
  4073. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4074. {
  4075. front: {
  4076. height: math.unit(6, "feet"),
  4077. weight: math.unit(150, "lbs"),
  4078. name: "Front",
  4079. image: {
  4080. source: "./media/characters/geta/front.svg"
  4081. }
  4082. }
  4083. },
  4084. [
  4085. {
  4086. name: "Micro",
  4087. height: math.unit(3, "inches"),
  4088. default: true
  4089. },
  4090. {
  4091. name: "Normal",
  4092. height: math.unit(5 + 5 / 12, "feet")
  4093. }
  4094. ]
  4095. ))
  4096. characterMakers.push(() => makeCharacter(
  4097. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4098. {
  4099. front: {
  4100. height: math.unit(6, "feet"),
  4101. weight: math.unit(300, "lbs"),
  4102. name: "Front",
  4103. image: {
  4104. source: "./media/characters/tyrnn/front.svg"
  4105. }
  4106. }
  4107. },
  4108. [
  4109. {
  4110. name: "Main Height",
  4111. height: math.unit(355, "feet"),
  4112. default: true
  4113. },
  4114. {
  4115. name: "Fave. Height",
  4116. height: math.unit(2400, "feet")
  4117. }
  4118. ]
  4119. ))
  4120. characterMakers.push(() => makeCharacter(
  4121. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4122. {
  4123. front: {
  4124. height: math.unit(6, "feet"),
  4125. weight: math.unit(300, "lbs"),
  4126. name: "Front",
  4127. image: {
  4128. source: "./media/characters/appledectomy/front.svg"
  4129. }
  4130. }
  4131. },
  4132. [
  4133. {
  4134. name: "Macro",
  4135. height: math.unit(2500, "feet")
  4136. },
  4137. {
  4138. name: "Megamacro",
  4139. height: math.unit(50, "miles"),
  4140. default: true
  4141. },
  4142. {
  4143. name: "Gigamacro",
  4144. height: math.unit(5000, "miles")
  4145. },
  4146. {
  4147. name: "Teramacro",
  4148. height: math.unit(250000, "miles")
  4149. },
  4150. ]
  4151. ))
  4152. characterMakers.push(() => makeCharacter(
  4153. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4154. {
  4155. front: {
  4156. height: math.unit(6, "feet"),
  4157. weight: math.unit(200, "lbs"),
  4158. name: "Front",
  4159. image: {
  4160. source: "./media/characters/vulpes/front.svg",
  4161. extra: 573 / 543,
  4162. bottom: 0.033
  4163. }
  4164. },
  4165. side: {
  4166. height: math.unit(6, "feet"),
  4167. weight: math.unit(200, "lbs"),
  4168. name: "Side",
  4169. image: {
  4170. source: "./media/characters/vulpes/side.svg",
  4171. extra: 577 / 549,
  4172. bottom: 11 / 588
  4173. }
  4174. },
  4175. back: {
  4176. height: math.unit(6, "feet"),
  4177. weight: math.unit(200, "lbs"),
  4178. name: "Back",
  4179. image: {
  4180. source: "./media/characters/vulpes/back.svg",
  4181. extra: 573 / 549,
  4182. bottom: 20 / 593
  4183. }
  4184. },
  4185. feet: {
  4186. height: math.unit(1.276, "feet"),
  4187. name: "Feet",
  4188. image: {
  4189. source: "./media/characters/vulpes/feet.svg"
  4190. }
  4191. },
  4192. maw: {
  4193. height: math.unit(1.18, "feet"),
  4194. name: "Maw",
  4195. image: {
  4196. source: "./media/characters/vulpes/maw.svg"
  4197. }
  4198. },
  4199. },
  4200. [
  4201. {
  4202. name: "Micro",
  4203. height: math.unit(2, "inches")
  4204. },
  4205. {
  4206. name: "Normal",
  4207. height: math.unit(6.3, "feet")
  4208. },
  4209. {
  4210. name: "Macro",
  4211. height: math.unit(850, "feet")
  4212. },
  4213. {
  4214. name: "Megamacro",
  4215. height: math.unit(7500, "feet"),
  4216. default: true
  4217. },
  4218. {
  4219. name: "Gigamacro",
  4220. height: math.unit(570000, "miles")
  4221. }
  4222. ]
  4223. ))
  4224. characterMakers.push(() => makeCharacter(
  4225. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4226. {
  4227. front: {
  4228. height: math.unit(6, "feet"),
  4229. weight: math.unit(210, "lbs"),
  4230. name: "Front",
  4231. image: {
  4232. source: "./media/characters/rain-fallen/front.svg"
  4233. }
  4234. },
  4235. side: {
  4236. height: math.unit(6, "feet"),
  4237. weight: math.unit(210, "lbs"),
  4238. name: "Side",
  4239. image: {
  4240. source: "./media/characters/rain-fallen/side.svg"
  4241. }
  4242. },
  4243. back: {
  4244. height: math.unit(6, "feet"),
  4245. weight: math.unit(210, "lbs"),
  4246. name: "Back",
  4247. image: {
  4248. source: "./media/characters/rain-fallen/back.svg"
  4249. }
  4250. },
  4251. feral: {
  4252. height: math.unit(9, "feet"),
  4253. weight: math.unit(700, "lbs"),
  4254. name: "Feral",
  4255. image: {
  4256. source: "./media/characters/rain-fallen/feral.svg"
  4257. }
  4258. },
  4259. },
  4260. [
  4261. {
  4262. name: "Normal",
  4263. height: math.unit(5, "meter")
  4264. },
  4265. {
  4266. name: "Macro",
  4267. height: math.unit(150, "meter"),
  4268. default: true
  4269. },
  4270. {
  4271. name: "Megamacro",
  4272. height: math.unit(278e6, "meter")
  4273. },
  4274. {
  4275. name: "Gigamacro",
  4276. height: math.unit(2e9, "meter")
  4277. },
  4278. {
  4279. name: "Teramacro",
  4280. height: math.unit(8e12, "meter")
  4281. },
  4282. {
  4283. name: "Devourer",
  4284. height: math.unit(14, "zettameters")
  4285. },
  4286. {
  4287. name: "Scarlet King",
  4288. height: math.unit(18, "yottameters")
  4289. },
  4290. {
  4291. name: "Void",
  4292. height: math.unit(6.66e66, "yottameters")
  4293. }
  4294. ]
  4295. ))
  4296. characterMakers.push(() => makeCharacter(
  4297. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4298. {
  4299. standing: {
  4300. height: math.unit(6, "feet"),
  4301. weight: math.unit(180, "lbs"),
  4302. name: "Standing",
  4303. image: {
  4304. source: "./media/characters/zaakira/standing.svg"
  4305. }
  4306. },
  4307. laying: {
  4308. height: math.unit(3, "feet"),
  4309. weight: math.unit(180, "lbs"),
  4310. name: "Laying",
  4311. image: {
  4312. source: "./media/characters/zaakira/laying.svg"
  4313. }
  4314. },
  4315. },
  4316. [
  4317. {
  4318. name: "Normal",
  4319. height: math.unit(12, "feet")
  4320. },
  4321. {
  4322. name: "Macro",
  4323. height: math.unit(279, "feet"),
  4324. default: true
  4325. }
  4326. ]
  4327. ))
  4328. characterMakers.push(() => makeCharacter(
  4329. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4330. {
  4331. femSfw: {
  4332. height: math.unit(8, "feet"),
  4333. weight: math.unit(350, "lb"),
  4334. name: "Fem",
  4335. image: {
  4336. source: "./media/characters/sigvald/fem-sfw.svg",
  4337. extra: 182 / 164,
  4338. bottom: 8.7 / 190.5
  4339. }
  4340. },
  4341. femNsfw: {
  4342. height: math.unit(8, "feet"),
  4343. weight: math.unit(350, "lb"),
  4344. name: "Fem (NSFW)",
  4345. image: {
  4346. source: "./media/characters/sigvald/fem-nsfw.svg",
  4347. extra: 182 / 164,
  4348. bottom: 8.7 / 190.5
  4349. }
  4350. },
  4351. maleNsfw: {
  4352. height: math.unit(8, "feet"),
  4353. weight: math.unit(350, "lb"),
  4354. name: "Male (NSFW)",
  4355. image: {
  4356. source: "./media/characters/sigvald/male-nsfw.svg",
  4357. extra: 182 / 164,
  4358. bottom: 8.7 / 190.5
  4359. }
  4360. },
  4361. hermNsfw: {
  4362. height: math.unit(8, "feet"),
  4363. weight: math.unit(350, "lb"),
  4364. name: "Herm (NSFW)",
  4365. image: {
  4366. source: "./media/characters/sigvald/herm-nsfw.svg",
  4367. extra: 182 / 164,
  4368. bottom: 8.7 / 190.5
  4369. }
  4370. },
  4371. dick: {
  4372. height: math.unit(2.36, "feet"),
  4373. name: "Dick",
  4374. image: {
  4375. source: "./media/characters/sigvald/dick.svg"
  4376. }
  4377. },
  4378. eye: {
  4379. height: math.unit(0.31, "feet"),
  4380. name: "Eye",
  4381. image: {
  4382. source: "./media/characters/sigvald/eye.svg"
  4383. }
  4384. },
  4385. mouth: {
  4386. height: math.unit(0.92, "feet"),
  4387. name: "Mouth",
  4388. image: {
  4389. source: "./media/characters/sigvald/mouth.svg"
  4390. }
  4391. },
  4392. paws: {
  4393. height: math.unit(2.2, "feet"),
  4394. name: "Paws",
  4395. image: {
  4396. source: "./media/characters/sigvald/paws.svg"
  4397. }
  4398. }
  4399. },
  4400. [
  4401. {
  4402. name: "Normal",
  4403. height: math.unit(8, "feet")
  4404. },
  4405. {
  4406. name: "Large",
  4407. height: math.unit(12, "feet")
  4408. },
  4409. {
  4410. name: "Larger",
  4411. height: math.unit(20, "feet")
  4412. },
  4413. {
  4414. name: "Macro",
  4415. height: math.unit(150, "feet")
  4416. },
  4417. {
  4418. name: "Macro+",
  4419. height: math.unit(200, "feet"),
  4420. default: true
  4421. },
  4422. ]
  4423. ))
  4424. characterMakers.push(() => makeCharacter(
  4425. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4426. {
  4427. side: {
  4428. height: math.unit(12, "feet"),
  4429. weight: math.unit(2000, "kg"),
  4430. name: "Side",
  4431. image: {
  4432. source: "./media/characters/scott/side.svg",
  4433. extra: 754 / 724,
  4434. bottom: 0.069
  4435. }
  4436. },
  4437. upright: {
  4438. height: math.unit(12, "feet"),
  4439. weight: math.unit(2000, "kg"),
  4440. name: "Upright",
  4441. image: {
  4442. source: "./media/characters/scott/upright.svg",
  4443. extra: 3881 / 3722,
  4444. bottom: 0.05
  4445. }
  4446. },
  4447. },
  4448. [
  4449. {
  4450. name: "Normal",
  4451. height: math.unit(12, "feet"),
  4452. default: true
  4453. },
  4454. ]
  4455. ))
  4456. characterMakers.push(() => makeCharacter(
  4457. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4458. {
  4459. side: {
  4460. height: math.unit(8, "meters"),
  4461. weight: math.unit(84755, "lbs"),
  4462. name: "Side",
  4463. image: {
  4464. source: "./media/characters/tobias/side.svg",
  4465. extra: 1474 / 1096,
  4466. bottom: 38.9 / 1513.1235
  4467. }
  4468. },
  4469. },
  4470. [
  4471. {
  4472. name: "Normal",
  4473. height: math.unit(8, "meters"),
  4474. default: true
  4475. },
  4476. ]
  4477. ))
  4478. characterMakers.push(() => makeCharacter(
  4479. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4480. {
  4481. front: {
  4482. height: math.unit(5.5, "feet"),
  4483. weight: math.unit(400, "lbs"),
  4484. name: "Front",
  4485. image: {
  4486. source: "./media/characters/kieran/front.svg",
  4487. extra: 2694 / 2364,
  4488. bottom: 217 / 2908
  4489. }
  4490. },
  4491. side: {
  4492. height: math.unit(5.5, "feet"),
  4493. weight: math.unit(400, "lbs"),
  4494. name: "Side",
  4495. image: {
  4496. source: "./media/characters/kieran/side.svg",
  4497. extra: 875 / 777,
  4498. bottom: 84.6 / 959
  4499. }
  4500. },
  4501. },
  4502. [
  4503. {
  4504. name: "Normal",
  4505. height: math.unit(5.5, "feet"),
  4506. default: true
  4507. },
  4508. ]
  4509. ))
  4510. characterMakers.push(() => makeCharacter(
  4511. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4512. {
  4513. side: {
  4514. height: math.unit(2, "meters"),
  4515. weight: math.unit(70, "kg"),
  4516. name: "Side",
  4517. image: {
  4518. source: "./media/characters/sanya/side.svg",
  4519. bottom: 0.02,
  4520. extra: 1.02
  4521. }
  4522. },
  4523. },
  4524. [
  4525. {
  4526. name: "Small",
  4527. height: math.unit(2, "meters")
  4528. },
  4529. {
  4530. name: "Normal",
  4531. height: math.unit(3, "meters")
  4532. },
  4533. {
  4534. name: "Macro",
  4535. height: math.unit(16, "meters"),
  4536. default: true
  4537. },
  4538. ]
  4539. ))
  4540. characterMakers.push(() => makeCharacter(
  4541. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4542. {
  4543. front: {
  4544. height: math.unit(2, "meters"),
  4545. weight: math.unit(120, "kg"),
  4546. name: "Front",
  4547. image: {
  4548. source: "./media/characters/miranda/front.svg",
  4549. extra: 195 / 185,
  4550. bottom: 10.9 / 206.5
  4551. }
  4552. },
  4553. back: {
  4554. height: math.unit(2, "meters"),
  4555. weight: math.unit(120, "kg"),
  4556. name: "Back",
  4557. image: {
  4558. source: "./media/characters/miranda/back.svg",
  4559. extra: 201 / 193,
  4560. bottom: 2.3 / 203.7
  4561. }
  4562. },
  4563. },
  4564. [
  4565. {
  4566. name: "Normal",
  4567. height: math.unit(10, "feet"),
  4568. default: true
  4569. }
  4570. ]
  4571. ))
  4572. characterMakers.push(() => makeCharacter(
  4573. { name: "James", species: ["deer"], tags: ["anthro"] },
  4574. {
  4575. side: {
  4576. height: math.unit(2, "meters"),
  4577. weight: math.unit(100, "kg"),
  4578. name: "Front",
  4579. image: {
  4580. source: "./media/characters/james/front.svg",
  4581. extra: 10 / 8.5
  4582. }
  4583. },
  4584. },
  4585. [
  4586. {
  4587. name: "Normal",
  4588. height: math.unit(8.5, "feet"),
  4589. default: true
  4590. }
  4591. ]
  4592. ))
  4593. characterMakers.push(() => makeCharacter(
  4594. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4595. {
  4596. side: {
  4597. height: math.unit(9.5, "feet"),
  4598. weight: math.unit(2500, "lbs"),
  4599. name: "Side",
  4600. image: {
  4601. source: "./media/characters/heather/side.svg"
  4602. }
  4603. },
  4604. },
  4605. [
  4606. {
  4607. name: "Normal",
  4608. height: math.unit(9.5, "feet"),
  4609. default: true
  4610. }
  4611. ]
  4612. ))
  4613. characterMakers.push(() => makeCharacter(
  4614. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4615. {
  4616. side: {
  4617. height: math.unit(6.5, "feet"),
  4618. weight: math.unit(400, "lbs"),
  4619. name: "Side",
  4620. image: {
  4621. source: "./media/characters/lukas/side.svg",
  4622. extra: 7.25 / 6.5
  4623. }
  4624. },
  4625. },
  4626. [
  4627. {
  4628. name: "Normal",
  4629. height: math.unit(6.5, "feet"),
  4630. default: true
  4631. }
  4632. ]
  4633. ))
  4634. characterMakers.push(() => makeCharacter(
  4635. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4636. {
  4637. side: {
  4638. height: math.unit(5, "feet"),
  4639. weight: math.unit(3000, "lbs"),
  4640. name: "Side",
  4641. image: {
  4642. source: "./media/characters/louise/side.svg"
  4643. }
  4644. },
  4645. },
  4646. [
  4647. {
  4648. name: "Normal",
  4649. height: math.unit(5, "feet"),
  4650. default: true
  4651. }
  4652. ]
  4653. ))
  4654. characterMakers.push(() => makeCharacter(
  4655. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4656. {
  4657. side: {
  4658. height: math.unit(6, "feet"),
  4659. weight: math.unit(150, "lbs"),
  4660. name: "Side",
  4661. image: {
  4662. source: "./media/characters/ramona/side.svg"
  4663. }
  4664. },
  4665. },
  4666. [
  4667. {
  4668. name: "Normal",
  4669. height: math.unit(5.3, "meters"),
  4670. default: true
  4671. },
  4672. {
  4673. name: "Macro",
  4674. height: math.unit(20, "stories")
  4675. },
  4676. {
  4677. name: "Macro+",
  4678. height: math.unit(50, "stories")
  4679. },
  4680. ]
  4681. ))
  4682. characterMakers.push(() => makeCharacter(
  4683. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4684. {
  4685. standing: {
  4686. height: math.unit(5.75, "feet"),
  4687. weight: math.unit(160, "lbs"),
  4688. name: "Standing",
  4689. image: {
  4690. source: "./media/characters/deerpuff/standing.svg",
  4691. extra: 682 / 624
  4692. }
  4693. },
  4694. sitting: {
  4695. height: math.unit(5.75 / 1.79, "feet"),
  4696. weight: math.unit(160, "lbs"),
  4697. name: "Sitting",
  4698. image: {
  4699. source: "./media/characters/deerpuff/sitting.svg",
  4700. bottom: 44 / 400,
  4701. extra: 1
  4702. }
  4703. },
  4704. taurLaying: {
  4705. height: math.unit(6, "feet"),
  4706. weight: math.unit(400, "lbs"),
  4707. name: "Taur (Laying)",
  4708. image: {
  4709. source: "./media/characters/deerpuff/taur-laying.svg"
  4710. }
  4711. },
  4712. },
  4713. [
  4714. {
  4715. name: "Puffball",
  4716. height: math.unit(6, "inches")
  4717. },
  4718. {
  4719. name: "Normalpuff",
  4720. height: math.unit(5.75, "feet")
  4721. },
  4722. {
  4723. name: "Macropuff",
  4724. height: math.unit(1500, "feet"),
  4725. default: true
  4726. },
  4727. {
  4728. name: "Megapuff",
  4729. height: math.unit(500, "miles")
  4730. },
  4731. {
  4732. name: "Gigapuff",
  4733. height: math.unit(250000, "miles")
  4734. },
  4735. {
  4736. name: "Omegapuff",
  4737. height: math.unit(1000, "lightyears")
  4738. },
  4739. ]
  4740. ))
  4741. characterMakers.push(() => makeCharacter(
  4742. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4743. {
  4744. stomping: {
  4745. height: math.unit(6, "feet"),
  4746. weight: math.unit(170, "lbs"),
  4747. name: "Stomping",
  4748. image: {
  4749. source: "./media/characters/vivian/stomping.svg"
  4750. }
  4751. },
  4752. sitting: {
  4753. height: math.unit(6 / 1.75, "feet"),
  4754. weight: math.unit(170, "lbs"),
  4755. name: "Sitting",
  4756. image: {
  4757. source: "./media/characters/vivian/sitting.svg",
  4758. bottom: 1 / 6.4,
  4759. extra: 1,
  4760. }
  4761. },
  4762. },
  4763. [
  4764. {
  4765. name: "Normal",
  4766. height: math.unit(7, "feet"),
  4767. default: true
  4768. },
  4769. {
  4770. name: "Macro",
  4771. height: math.unit(10, "stories")
  4772. },
  4773. {
  4774. name: "Macro+",
  4775. height: math.unit(30, "stories")
  4776. },
  4777. {
  4778. name: "Megamacro",
  4779. height: math.unit(10, "miles")
  4780. },
  4781. {
  4782. name: "Megamacro+",
  4783. height: math.unit(2750000, "meters")
  4784. },
  4785. ]
  4786. ))
  4787. characterMakers.push(() => makeCharacter(
  4788. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4789. {
  4790. front: {
  4791. height: math.unit(6, "feet"),
  4792. weight: math.unit(160, "lbs"),
  4793. name: "Front",
  4794. image: {
  4795. source: "./media/characters/prince/front.svg",
  4796. extra: 3400 / 3000
  4797. }
  4798. },
  4799. jumping: {
  4800. height: math.unit(6, "feet"),
  4801. weight: math.unit(160, "lbs"),
  4802. name: "Jumping",
  4803. image: {
  4804. source: "./media/characters/prince/jump.svg",
  4805. extra: 2555 / 2134
  4806. }
  4807. },
  4808. },
  4809. [
  4810. {
  4811. name: "Normal",
  4812. height: math.unit(7.75, "feet"),
  4813. default: true
  4814. },
  4815. {
  4816. name: "Not cute",
  4817. height: math.unit(17, "feet")
  4818. },
  4819. {
  4820. name: "I said NOT",
  4821. height: math.unit(91, "feet")
  4822. },
  4823. {
  4824. name: "Please stop",
  4825. height: math.unit(560, "feet")
  4826. },
  4827. {
  4828. name: "What have you done",
  4829. height: math.unit(2200, "feet")
  4830. },
  4831. {
  4832. name: "Deer God",
  4833. height: math.unit(3.6, "miles")
  4834. },
  4835. ]
  4836. ))
  4837. characterMakers.push(() => makeCharacter(
  4838. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4839. {
  4840. standing: {
  4841. height: math.unit(6, "feet"),
  4842. weight: math.unit(300, "lbs"),
  4843. name: "Standing",
  4844. image: {
  4845. source: "./media/characters/psymon/standing.svg",
  4846. extra: 1888 / 1810,
  4847. bottom: 0.05
  4848. }
  4849. },
  4850. slithering: {
  4851. height: math.unit(6, "feet"),
  4852. weight: math.unit(300, "lbs"),
  4853. name: "Slithering",
  4854. image: {
  4855. source: "./media/characters/psymon/slithering.svg",
  4856. extra: 1330 / 1224
  4857. }
  4858. },
  4859. slitheringAlt: {
  4860. height: math.unit(6, "feet"),
  4861. weight: math.unit(300, "lbs"),
  4862. name: "Slithering (Alt)",
  4863. image: {
  4864. source: "./media/characters/psymon/slithering-alt.svg",
  4865. extra: 1330 / 1224
  4866. }
  4867. },
  4868. },
  4869. [
  4870. {
  4871. name: "Normal",
  4872. height: math.unit(11.25, "feet"),
  4873. default: true
  4874. },
  4875. {
  4876. name: "Large",
  4877. height: math.unit(27, "feet")
  4878. },
  4879. {
  4880. name: "Giant",
  4881. height: math.unit(87, "feet")
  4882. },
  4883. {
  4884. name: "Macro",
  4885. height: math.unit(365, "feet")
  4886. },
  4887. {
  4888. name: "Megamacro",
  4889. height: math.unit(3, "miles")
  4890. },
  4891. {
  4892. name: "World Serpent",
  4893. height: math.unit(8000, "miles")
  4894. },
  4895. ]
  4896. ))
  4897. characterMakers.push(() => makeCharacter(
  4898. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4899. {
  4900. front: {
  4901. height: math.unit(6, "feet"),
  4902. weight: math.unit(180, "lbs"),
  4903. name: "Front",
  4904. image: {
  4905. source: "./media/characters/daimos/front.svg",
  4906. extra: 4160 / 3897,
  4907. bottom: 0.021
  4908. }
  4909. }
  4910. },
  4911. [
  4912. {
  4913. name: "Normal",
  4914. height: math.unit(8, "feet"),
  4915. default: true
  4916. },
  4917. {
  4918. name: "Big Dog",
  4919. height: math.unit(22, "feet")
  4920. },
  4921. {
  4922. name: "Macro",
  4923. height: math.unit(127, "feet")
  4924. },
  4925. {
  4926. name: "Megamacro",
  4927. height: math.unit(3600, "feet")
  4928. },
  4929. ]
  4930. ))
  4931. characterMakers.push(() => makeCharacter(
  4932. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4933. {
  4934. side: {
  4935. height: math.unit(6, "feet"),
  4936. weight: math.unit(180, "lbs"),
  4937. name: "Side",
  4938. image: {
  4939. source: "./media/characters/blake/side.svg",
  4940. extra: 1212 / 1120,
  4941. bottom: 0.05
  4942. }
  4943. },
  4944. crouched: {
  4945. height: math.unit(6 * 0.57, "feet"),
  4946. weight: math.unit(180, "lbs"),
  4947. name: "Crouched",
  4948. image: {
  4949. source: "./media/characters/blake/crouched.svg",
  4950. extra: 840 / 587,
  4951. bottom: 0.04
  4952. }
  4953. },
  4954. bent: {
  4955. height: math.unit(6 * 0.75, "feet"),
  4956. weight: math.unit(180, "lbs"),
  4957. name: "Bent",
  4958. image: {
  4959. source: "./media/characters/blake/bent.svg",
  4960. extra: 592 / 544,
  4961. bottom: 0.035
  4962. }
  4963. },
  4964. },
  4965. [
  4966. {
  4967. name: "Normal",
  4968. height: math.unit(8 + 1 / 6, "feet"),
  4969. default: true
  4970. },
  4971. {
  4972. name: "Big Backside",
  4973. height: math.unit(37, "feet")
  4974. },
  4975. {
  4976. name: "Subway Shredder",
  4977. height: math.unit(72, "feet")
  4978. },
  4979. {
  4980. name: "City Carver",
  4981. height: math.unit(1675, "feet")
  4982. },
  4983. {
  4984. name: "Tectonic Tweaker",
  4985. height: math.unit(2300, "miles")
  4986. },
  4987. ]
  4988. ))
  4989. characterMakers.push(() => makeCharacter(
  4990. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4991. {
  4992. front: {
  4993. height: math.unit(6, "feet"),
  4994. weight: math.unit(180, "lbs"),
  4995. name: "Front",
  4996. image: {
  4997. source: "./media/characters/guisetto/front.svg",
  4998. extra: 856 / 817,
  4999. bottom: 0.06
  5000. }
  5001. },
  5002. airborne: {
  5003. height: math.unit(6, "feet"),
  5004. weight: math.unit(180, "lbs"),
  5005. name: "Airborne",
  5006. image: {
  5007. source: "./media/characters/guisetto/airborne.svg",
  5008. extra: 584 / 525
  5009. }
  5010. },
  5011. },
  5012. [
  5013. {
  5014. name: "Normal",
  5015. height: math.unit(10 + 11 / 12, "feet"),
  5016. default: true
  5017. },
  5018. {
  5019. name: "Large",
  5020. height: math.unit(35, "feet")
  5021. },
  5022. {
  5023. name: "Macro",
  5024. height: math.unit(475, "feet")
  5025. },
  5026. ]
  5027. ))
  5028. characterMakers.push(() => makeCharacter(
  5029. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5030. {
  5031. front: {
  5032. height: math.unit(6, "feet"),
  5033. weight: math.unit(180, "lbs"),
  5034. name: "Front",
  5035. image: {
  5036. source: "./media/characters/luxor/front.svg",
  5037. extra: 2940 / 2152
  5038. }
  5039. },
  5040. back: {
  5041. height: math.unit(6, "feet"),
  5042. weight: math.unit(180, "lbs"),
  5043. name: "Back",
  5044. image: {
  5045. source: "./media/characters/luxor/back.svg",
  5046. extra: 1083 / 960
  5047. }
  5048. },
  5049. },
  5050. [
  5051. {
  5052. name: "Normal",
  5053. height: math.unit(5 + 5 / 6, "feet"),
  5054. default: true
  5055. },
  5056. {
  5057. name: "Lamp",
  5058. height: math.unit(50, "feet")
  5059. },
  5060. {
  5061. name: "Lämp",
  5062. height: math.unit(300, "feet")
  5063. },
  5064. {
  5065. name: "The sun is a lamp",
  5066. height: math.unit(250000, "miles")
  5067. },
  5068. ]
  5069. ))
  5070. characterMakers.push(() => makeCharacter(
  5071. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5072. {
  5073. front: {
  5074. height: math.unit(6, "feet"),
  5075. weight: math.unit(50, "lbs"),
  5076. name: "Front",
  5077. image: {
  5078. source: "./media/characters/huoyan/front.svg"
  5079. }
  5080. },
  5081. side: {
  5082. height: math.unit(6, "feet"),
  5083. weight: math.unit(180, "lbs"),
  5084. name: "Side",
  5085. image: {
  5086. source: "./media/characters/huoyan/side.svg"
  5087. }
  5088. },
  5089. },
  5090. [
  5091. {
  5092. name: "Chef",
  5093. height: math.unit(9, "feet")
  5094. },
  5095. {
  5096. name: "Normal",
  5097. height: math.unit(65, "feet"),
  5098. default: true
  5099. },
  5100. {
  5101. name: "Macro",
  5102. height: math.unit(780, "feet")
  5103. },
  5104. {
  5105. name: "Flaming Mountain",
  5106. height: math.unit(4.8, "miles")
  5107. },
  5108. {
  5109. name: "Celestial",
  5110. height: math.unit(765000, "miles")
  5111. },
  5112. ]
  5113. ))
  5114. characterMakers.push(() => makeCharacter(
  5115. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5116. {
  5117. front: {
  5118. height: math.unit(5 + 3 / 4, "feet"),
  5119. weight: math.unit(120, "lbs"),
  5120. name: "Front",
  5121. image: {
  5122. source: "./media/characters/tails/front.svg"
  5123. }
  5124. }
  5125. },
  5126. [
  5127. {
  5128. name: "Normal",
  5129. height: math.unit(5 + 3 / 4, "feet"),
  5130. default: true
  5131. }
  5132. ]
  5133. ))
  5134. characterMakers.push(() => makeCharacter(
  5135. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5136. {
  5137. front: {
  5138. height: math.unit(4, "feet"),
  5139. weight: math.unit(50, "lbs"),
  5140. name: "Front",
  5141. image: {
  5142. source: "./media/characters/rainy/front.svg"
  5143. }
  5144. }
  5145. },
  5146. [
  5147. {
  5148. name: "Macro",
  5149. height: math.unit(800, "feet"),
  5150. default: true
  5151. }
  5152. ]
  5153. ))
  5154. characterMakers.push(() => makeCharacter(
  5155. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5156. {
  5157. front: {
  5158. height: math.unit(6, "feet"),
  5159. weight: math.unit(150, "lbs"),
  5160. name: "Front",
  5161. image: {
  5162. source: "./media/characters/rainier/front.svg"
  5163. }
  5164. }
  5165. },
  5166. [
  5167. {
  5168. name: "Micro",
  5169. height: math.unit(2, "mm"),
  5170. default: true
  5171. }
  5172. ]
  5173. ))
  5174. characterMakers.push(() => makeCharacter(
  5175. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5176. {
  5177. front: {
  5178. height: math.unit(6, "feet"),
  5179. weight: math.unit(180, "lbs"),
  5180. name: "Front",
  5181. image: {
  5182. source: "./media/characters/andy/front.svg"
  5183. }
  5184. }
  5185. },
  5186. [
  5187. {
  5188. name: "Normal",
  5189. height: math.unit(8, "feet"),
  5190. default: true
  5191. },
  5192. {
  5193. name: "Macro",
  5194. height: math.unit(1000, "feet")
  5195. },
  5196. {
  5197. name: "Megamacro",
  5198. height: math.unit(5, "miles")
  5199. },
  5200. {
  5201. name: "Gigamacro",
  5202. height: math.unit(5000, "miles")
  5203. },
  5204. ]
  5205. ))
  5206. characterMakers.push(() => makeCharacter(
  5207. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5208. {
  5209. front: {
  5210. height: math.unit(6, "feet"),
  5211. weight: math.unit(210, "lbs"),
  5212. name: "Front",
  5213. image: {
  5214. source: "./media/characters/cimmaron/front-sfw.svg",
  5215. extra: 701 / 676,
  5216. bottom: 0.046
  5217. }
  5218. },
  5219. back: {
  5220. height: math.unit(6, "feet"),
  5221. weight: math.unit(210, "lbs"),
  5222. name: "Back",
  5223. image: {
  5224. source: "./media/characters/cimmaron/back-sfw.svg",
  5225. extra: 701 / 676,
  5226. bottom: 0.046
  5227. }
  5228. },
  5229. frontNsfw: {
  5230. height: math.unit(6, "feet"),
  5231. weight: math.unit(210, "lbs"),
  5232. name: "Front (NSFW)",
  5233. image: {
  5234. source: "./media/characters/cimmaron/front-nsfw.svg",
  5235. extra: 701 / 676,
  5236. bottom: 0.046
  5237. }
  5238. },
  5239. backNsfw: {
  5240. height: math.unit(6, "feet"),
  5241. weight: math.unit(210, "lbs"),
  5242. name: "Back (NSFW)",
  5243. image: {
  5244. source: "./media/characters/cimmaron/back-nsfw.svg",
  5245. extra: 701 / 676,
  5246. bottom: 0.046
  5247. }
  5248. },
  5249. dick: {
  5250. height: math.unit(1.714, "feet"),
  5251. name: "Dick",
  5252. image: {
  5253. source: "./media/characters/cimmaron/dick.svg"
  5254. }
  5255. },
  5256. },
  5257. [
  5258. {
  5259. name: "Normal",
  5260. height: math.unit(6, "feet"),
  5261. default: true
  5262. },
  5263. {
  5264. name: "Macro Mayor",
  5265. height: math.unit(350, "meters")
  5266. },
  5267. ]
  5268. ))
  5269. characterMakers.push(() => makeCharacter(
  5270. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5271. {
  5272. front: {
  5273. height: math.unit(6, "feet"),
  5274. weight: math.unit(200, "lbs"),
  5275. name: "Front",
  5276. image: {
  5277. source: "./media/characters/akari/front.svg",
  5278. extra: 962 / 901,
  5279. bottom: 0.04
  5280. }
  5281. }
  5282. },
  5283. [
  5284. {
  5285. name: "Micro",
  5286. height: math.unit(5, "inches"),
  5287. default: true
  5288. },
  5289. {
  5290. name: "Normal",
  5291. height: math.unit(7, "feet")
  5292. },
  5293. ]
  5294. ))
  5295. characterMakers.push(() => makeCharacter(
  5296. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5297. {
  5298. front: {
  5299. height: math.unit(6, "feet"),
  5300. weight: math.unit(140, "lbs"),
  5301. name: "Front",
  5302. image: {
  5303. source: "./media/characters/cynosura/front.svg",
  5304. extra: 896 / 847
  5305. }
  5306. },
  5307. back: {
  5308. height: math.unit(6, "feet"),
  5309. weight: math.unit(140, "lbs"),
  5310. name: "Back",
  5311. image: {
  5312. source: "./media/characters/cynosura/back.svg",
  5313. extra: 1365 / 1250
  5314. }
  5315. },
  5316. },
  5317. [
  5318. {
  5319. name: "Micro",
  5320. height: math.unit(4, "inches")
  5321. },
  5322. {
  5323. name: "Normal",
  5324. height: math.unit(5.75, "feet"),
  5325. default: true
  5326. },
  5327. {
  5328. name: "Tall",
  5329. height: math.unit(10, "feet")
  5330. },
  5331. {
  5332. name: "Big",
  5333. height: math.unit(20, "feet")
  5334. },
  5335. {
  5336. name: "Macro",
  5337. height: math.unit(50, "feet")
  5338. },
  5339. ]
  5340. ))
  5341. characterMakers.push(() => makeCharacter(
  5342. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5343. {
  5344. front: {
  5345. height: math.unit(6, "feet"),
  5346. weight: math.unit(170, "lbs"),
  5347. name: "Front",
  5348. image: {
  5349. source: "./media/characters/gin/front.svg",
  5350. extra: 1.053,
  5351. bottom: 0.025
  5352. }
  5353. },
  5354. foot: {
  5355. height: math.unit(6 / 4.25, "feet"),
  5356. name: "Foot",
  5357. image: {
  5358. source: "./media/characters/gin/foot.svg"
  5359. }
  5360. },
  5361. sole: {
  5362. height: math.unit(6 / 4.40, "feet"),
  5363. name: "Sole",
  5364. image: {
  5365. source: "./media/characters/gin/sole.svg"
  5366. }
  5367. },
  5368. },
  5369. [
  5370. {
  5371. name: "Normal",
  5372. height: math.unit(13 + 2 / 12, "feet")
  5373. },
  5374. {
  5375. name: "Macro",
  5376. height: math.unit(1500, "feet")
  5377. },
  5378. {
  5379. name: "Megamacro",
  5380. height: math.unit(200, "miles"),
  5381. default: true
  5382. },
  5383. {
  5384. name: "Gigamacro",
  5385. height: math.unit(500, "megameters")
  5386. },
  5387. {
  5388. name: "Teramacro",
  5389. height: math.unit(15, "lightyears")
  5390. }
  5391. ]
  5392. ))
  5393. characterMakers.push(() => makeCharacter(
  5394. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5395. {
  5396. front: {
  5397. height: math.unit(6 + 1 / 6, "feet"),
  5398. weight: math.unit(178, "lbs"),
  5399. name: "Front",
  5400. image: {
  5401. source: "./media/characters/guy/front.svg"
  5402. }
  5403. }
  5404. },
  5405. [
  5406. {
  5407. name: "Normal",
  5408. height: math.unit(6 + 1 / 6, "feet"),
  5409. default: true
  5410. },
  5411. {
  5412. name: "Large",
  5413. height: math.unit(25 + 7 / 12, "feet")
  5414. },
  5415. {
  5416. name: "Macro",
  5417. height: math.unit(60 + 9 / 12, "feet")
  5418. },
  5419. {
  5420. name: "Macro+",
  5421. height: math.unit(246, "feet")
  5422. },
  5423. {
  5424. name: "Macro++",
  5425. height: math.unit(878, "feet")
  5426. }
  5427. ]
  5428. ))
  5429. characterMakers.push(() => makeCharacter(
  5430. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5431. {
  5432. front: {
  5433. height: math.unit(9, "feet"),
  5434. weight: math.unit(800, "lbs"),
  5435. name: "Front",
  5436. image: {
  5437. source: "./media/characters/tiberius/front.svg",
  5438. extra: 2295 / 2071
  5439. }
  5440. },
  5441. back: {
  5442. height: math.unit(9, "feet"),
  5443. weight: math.unit(800, "lbs"),
  5444. name: "Back",
  5445. image: {
  5446. source: "./media/characters/tiberius/back.svg",
  5447. extra: 2373 / 2160
  5448. }
  5449. },
  5450. },
  5451. [
  5452. {
  5453. name: "Normal",
  5454. height: math.unit(9, "feet"),
  5455. default: true
  5456. }
  5457. ]
  5458. ))
  5459. characterMakers.push(() => makeCharacter(
  5460. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5461. {
  5462. front: {
  5463. height: math.unit(6, "feet"),
  5464. weight: math.unit(600, "lbs"),
  5465. name: "Front",
  5466. image: {
  5467. source: "./media/characters/surgo/front.svg",
  5468. extra: 3591 / 2227
  5469. }
  5470. },
  5471. back: {
  5472. height: math.unit(6, "feet"),
  5473. weight: math.unit(600, "lbs"),
  5474. name: "Back",
  5475. image: {
  5476. source: "./media/characters/surgo/back.svg",
  5477. extra: 3557 / 2228
  5478. }
  5479. },
  5480. laying: {
  5481. height: math.unit(6 * 0.85, "feet"),
  5482. weight: math.unit(600, "lbs"),
  5483. name: "Laying",
  5484. image: {
  5485. source: "./media/characters/surgo/laying.svg"
  5486. }
  5487. },
  5488. },
  5489. [
  5490. {
  5491. name: "Normal",
  5492. height: math.unit(6, "feet"),
  5493. default: true
  5494. }
  5495. ]
  5496. ))
  5497. characterMakers.push(() => makeCharacter(
  5498. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5499. {
  5500. side: {
  5501. height: math.unit(6, "feet"),
  5502. weight: math.unit(150, "lbs"),
  5503. name: "Side",
  5504. image: {
  5505. source: "./media/characters/cibus/side.svg",
  5506. extra: 800 / 400
  5507. }
  5508. },
  5509. },
  5510. [
  5511. {
  5512. name: "Normal",
  5513. height: math.unit(6, "feet"),
  5514. default: true
  5515. }
  5516. ]
  5517. ))
  5518. characterMakers.push(() => makeCharacter(
  5519. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5520. {
  5521. front: {
  5522. height: math.unit(6, "feet"),
  5523. weight: math.unit(240, "lbs"),
  5524. name: "Front",
  5525. image: {
  5526. source: "./media/characters/nibbles/front.svg"
  5527. }
  5528. },
  5529. side: {
  5530. height: math.unit(6, "feet"),
  5531. weight: math.unit(240, "lbs"),
  5532. name: "Side",
  5533. image: {
  5534. source: "./media/characters/nibbles/side.svg"
  5535. }
  5536. },
  5537. },
  5538. [
  5539. {
  5540. name: "Normal",
  5541. height: math.unit(9, "feet"),
  5542. default: true
  5543. }
  5544. ]
  5545. ))
  5546. characterMakers.push(() => makeCharacter(
  5547. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5548. {
  5549. side: {
  5550. height: math.unit(5 + 1 / 6, "feet"),
  5551. weight: math.unit(130, "lbs"),
  5552. name: "Side",
  5553. image: {
  5554. source: "./media/characters/rikky/side.svg",
  5555. extra: 851 / 801
  5556. }
  5557. },
  5558. },
  5559. [
  5560. {
  5561. name: "Normal",
  5562. height: math.unit(5 + 1 / 6, "feet")
  5563. },
  5564. {
  5565. name: "Macro",
  5566. height: math.unit(152, "feet"),
  5567. default: true
  5568. },
  5569. {
  5570. name: "Megamacro",
  5571. height: math.unit(7, "miles")
  5572. }
  5573. ]
  5574. ))
  5575. characterMakers.push(() => makeCharacter(
  5576. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5577. {
  5578. side: {
  5579. height: math.unit(370, "cm"),
  5580. weight: math.unit(350, "lbs"),
  5581. name: "Side",
  5582. image: {
  5583. source: "./media/characters/malfressa/side.svg"
  5584. }
  5585. },
  5586. walking: {
  5587. height: math.unit(370, "cm"),
  5588. weight: math.unit(350, "lbs"),
  5589. name: "Walking",
  5590. image: {
  5591. source: "./media/characters/malfressa/walking.svg"
  5592. }
  5593. },
  5594. feral: {
  5595. height: math.unit(2500, "cm"),
  5596. weight: math.unit(100000, "lbs"),
  5597. name: "Feral",
  5598. image: {
  5599. source: "./media/characters/malfressa/feral.svg",
  5600. extra: 2108 / 837,
  5601. bottom: 0.02
  5602. }
  5603. },
  5604. },
  5605. [
  5606. {
  5607. name: "Normal",
  5608. height: math.unit(370, "cm")
  5609. },
  5610. {
  5611. name: "Macro",
  5612. height: math.unit(300, "meters"),
  5613. default: true
  5614. }
  5615. ]
  5616. ))
  5617. characterMakers.push(() => makeCharacter(
  5618. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5619. {
  5620. front: {
  5621. height: math.unit(6, "feet"),
  5622. weight: math.unit(60, "kg"),
  5623. name: "Front",
  5624. image: {
  5625. source: "./media/characters/jaro/front.svg"
  5626. }
  5627. },
  5628. back: {
  5629. height: math.unit(6, "feet"),
  5630. weight: math.unit(60, "kg"),
  5631. name: "Back",
  5632. image: {
  5633. source: "./media/characters/jaro/back.svg"
  5634. }
  5635. },
  5636. },
  5637. [
  5638. {
  5639. name: "Micro",
  5640. height: math.unit(7, "inches")
  5641. },
  5642. {
  5643. name: "Normal",
  5644. height: math.unit(5.5, "feet"),
  5645. default: true
  5646. },
  5647. {
  5648. name: "Minimacro",
  5649. height: math.unit(20, "feet")
  5650. },
  5651. {
  5652. name: "Macro",
  5653. height: math.unit(200, "meters")
  5654. }
  5655. ]
  5656. ))
  5657. characterMakers.push(() => makeCharacter(
  5658. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5659. {
  5660. front: {
  5661. height: math.unit(6, "feet"),
  5662. weight: math.unit(195, "lb"),
  5663. name: "Front",
  5664. image: {
  5665. source: "./media/characters/rogue/front.svg"
  5666. }
  5667. },
  5668. },
  5669. [
  5670. {
  5671. name: "Macro",
  5672. height: math.unit(90, "feet"),
  5673. default: true
  5674. },
  5675. ]
  5676. ))
  5677. characterMakers.push(() => makeCharacter(
  5678. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5679. {
  5680. front: {
  5681. height: math.unit(5 + 8 / 12, "feet"),
  5682. weight: math.unit(140, "lb"),
  5683. name: "Front",
  5684. image: {
  5685. source: "./media/characters/piper/front.svg",
  5686. extra: 3928 / 3681
  5687. }
  5688. },
  5689. },
  5690. [
  5691. {
  5692. name: "Micro",
  5693. height: math.unit(2, "inches")
  5694. },
  5695. {
  5696. name: "Normal",
  5697. height: math.unit(5 + 8 / 12, "feet")
  5698. },
  5699. {
  5700. name: "Macro",
  5701. height: math.unit(250, "feet"),
  5702. default: true
  5703. },
  5704. {
  5705. name: "Megamacro",
  5706. height: math.unit(7, "miles")
  5707. },
  5708. ]
  5709. ))
  5710. characterMakers.push(() => makeCharacter(
  5711. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5712. {
  5713. front: {
  5714. height: math.unit(6, "feet"),
  5715. weight: math.unit(220, "lb"),
  5716. name: "Front",
  5717. image: {
  5718. source: "./media/characters/gemini/front.svg"
  5719. }
  5720. },
  5721. back: {
  5722. height: math.unit(6, "feet"),
  5723. weight: math.unit(220, "lb"),
  5724. name: "Back",
  5725. image: {
  5726. source: "./media/characters/gemini/back.svg"
  5727. }
  5728. },
  5729. kneeling: {
  5730. height: math.unit(6 / 1.5, "feet"),
  5731. weight: math.unit(220, "lb"),
  5732. name: "Kneeling",
  5733. image: {
  5734. source: "./media/characters/gemini/kneeling.svg",
  5735. bottom: 0.02
  5736. }
  5737. },
  5738. },
  5739. [
  5740. {
  5741. name: "Macro",
  5742. height: math.unit(300, "meters"),
  5743. default: true
  5744. },
  5745. {
  5746. name: "Megamacro",
  5747. height: math.unit(6900, "meters")
  5748. },
  5749. ]
  5750. ))
  5751. characterMakers.push(() => makeCharacter(
  5752. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5753. {
  5754. anthro: {
  5755. height: math.unit(2.35, "meters"),
  5756. weight: math.unit(73, "kg"),
  5757. name: "Anthro",
  5758. image: {
  5759. source: "./media/characters/alicia/anthro.svg",
  5760. extra: 2571 / 2385,
  5761. bottom: 75 / 2648
  5762. }
  5763. },
  5764. paw: {
  5765. height: math.unit(1.32, "feet"),
  5766. name: "Paw",
  5767. image: {
  5768. source: "./media/characters/alicia/paw.svg"
  5769. }
  5770. },
  5771. feral: {
  5772. height: math.unit(1.69, "meters"),
  5773. weight: math.unit(73, "kg"),
  5774. name: "Feral",
  5775. image: {
  5776. source: "./media/characters/alicia/feral.svg",
  5777. extra: 2123 / 1715,
  5778. bottom: 222 / 2349
  5779. }
  5780. },
  5781. },
  5782. [
  5783. {
  5784. name: "Normal",
  5785. height: math.unit(2.35, "meters")
  5786. },
  5787. {
  5788. name: "Macro",
  5789. height: math.unit(60, "meters"),
  5790. default: true
  5791. },
  5792. {
  5793. name: "Megamacro",
  5794. height: math.unit(10000, "kilometers")
  5795. },
  5796. ]
  5797. ))
  5798. characterMakers.push(() => makeCharacter(
  5799. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5800. {
  5801. front: {
  5802. height: math.unit(7, "feet"),
  5803. weight: math.unit(250, "lbs"),
  5804. name: "Front",
  5805. image: {
  5806. source: "./media/characters/archy/front.svg"
  5807. }
  5808. }
  5809. },
  5810. [
  5811. {
  5812. name: "Micro",
  5813. height: math.unit(1, "inch")
  5814. },
  5815. {
  5816. name: "Shorty",
  5817. height: math.unit(5, "feet")
  5818. },
  5819. {
  5820. name: "Normal",
  5821. height: math.unit(7, "feet")
  5822. },
  5823. {
  5824. name: "Macro",
  5825. height: math.unit(600, "meters"),
  5826. default: true
  5827. },
  5828. {
  5829. name: "Megamacro",
  5830. height: math.unit(1, "mile")
  5831. },
  5832. ]
  5833. ))
  5834. characterMakers.push(() => makeCharacter(
  5835. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5836. {
  5837. front: {
  5838. height: math.unit(1.65, "meters"),
  5839. weight: math.unit(74, "kg"),
  5840. name: "Front",
  5841. image: {
  5842. source: "./media/characters/berri/front.svg",
  5843. extra: 857 / 837,
  5844. bottom: 18 / 877
  5845. }
  5846. },
  5847. bum: {
  5848. height: math.unit(1.46, "feet"),
  5849. name: "Bum",
  5850. image: {
  5851. source: "./media/characters/berri/bum.svg"
  5852. }
  5853. },
  5854. mouth: {
  5855. height: math.unit(0.44, "feet"),
  5856. name: "Mouth",
  5857. image: {
  5858. source: "./media/characters/berri/mouth.svg"
  5859. }
  5860. },
  5861. paw: {
  5862. height: math.unit(0.826, "feet"),
  5863. name: "Paw",
  5864. image: {
  5865. source: "./media/characters/berri/paw.svg"
  5866. }
  5867. },
  5868. },
  5869. [
  5870. {
  5871. name: "Normal",
  5872. height: math.unit(1.65, "meters")
  5873. },
  5874. {
  5875. name: "Macro",
  5876. height: math.unit(60, "m"),
  5877. default: true
  5878. },
  5879. {
  5880. name: "Megamacro",
  5881. height: math.unit(9.213, "km")
  5882. },
  5883. {
  5884. name: "Planet Eater",
  5885. height: math.unit(489, "megameters")
  5886. },
  5887. {
  5888. name: "Teramacro",
  5889. height: math.unit(2471635000000, "meters")
  5890. },
  5891. {
  5892. name: "Examacro",
  5893. height: math.unit(8.0624e+26, "meters")
  5894. }
  5895. ]
  5896. ))
  5897. characterMakers.push(() => makeCharacter(
  5898. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5899. {
  5900. front: {
  5901. height: math.unit(1.72, "meters"),
  5902. weight: math.unit(68, "kg"),
  5903. name: "Front",
  5904. image: {
  5905. source: "./media/characters/lexi/front.svg"
  5906. }
  5907. }
  5908. },
  5909. [
  5910. {
  5911. name: "Very Smol",
  5912. height: math.unit(10, "mm")
  5913. },
  5914. {
  5915. name: "Micro",
  5916. height: math.unit(6.8, "cm"),
  5917. default: true
  5918. },
  5919. {
  5920. name: "Normal",
  5921. height: math.unit(1.72, "m")
  5922. }
  5923. ]
  5924. ))
  5925. characterMakers.push(() => makeCharacter(
  5926. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5927. {
  5928. front: {
  5929. height: math.unit(1.69, "meters"),
  5930. weight: math.unit(68, "kg"),
  5931. name: "Front",
  5932. image: {
  5933. source: "./media/characters/martin/front.svg",
  5934. extra: 596 / 581
  5935. }
  5936. }
  5937. },
  5938. [
  5939. {
  5940. name: "Micro",
  5941. height: math.unit(6.85, "cm"),
  5942. default: true
  5943. },
  5944. {
  5945. name: "Normal",
  5946. height: math.unit(1.69, "m")
  5947. }
  5948. ]
  5949. ))
  5950. characterMakers.push(() => makeCharacter(
  5951. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5952. {
  5953. front: {
  5954. height: math.unit(1.69, "meters"),
  5955. weight: math.unit(68, "kg"),
  5956. name: "Front",
  5957. image: {
  5958. source: "./media/characters/juno/front.svg"
  5959. }
  5960. }
  5961. },
  5962. [
  5963. {
  5964. name: "Micro",
  5965. height: math.unit(7, "cm")
  5966. },
  5967. {
  5968. name: "Normal",
  5969. height: math.unit(1.89, "m")
  5970. },
  5971. {
  5972. name: "Macro",
  5973. height: math.unit(353, "meters"),
  5974. default: true
  5975. }
  5976. ]
  5977. ))
  5978. characterMakers.push(() => makeCharacter(
  5979. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5980. {
  5981. front: {
  5982. height: math.unit(1.93, "meters"),
  5983. weight: math.unit(83, "kg"),
  5984. name: "Front",
  5985. image: {
  5986. source: "./media/characters/samantha/front.svg"
  5987. }
  5988. },
  5989. frontClothed: {
  5990. height: math.unit(1.93, "meters"),
  5991. weight: math.unit(83, "kg"),
  5992. name: "Front (Clothed)",
  5993. image: {
  5994. source: "./media/characters/samantha/front-clothed.svg"
  5995. }
  5996. },
  5997. back: {
  5998. height: math.unit(1.93, "meters"),
  5999. weight: math.unit(83, "kg"),
  6000. name: "Back",
  6001. image: {
  6002. source: "./media/characters/samantha/back.svg"
  6003. }
  6004. },
  6005. },
  6006. [
  6007. {
  6008. name: "Normal",
  6009. height: math.unit(1.93, "m")
  6010. },
  6011. {
  6012. name: "Macro",
  6013. height: math.unit(74, "meters"),
  6014. default: true
  6015. },
  6016. {
  6017. name: "Macro+",
  6018. height: math.unit(223, "meters"),
  6019. },
  6020. {
  6021. name: "Megamacro",
  6022. height: math.unit(8381, "meters"),
  6023. },
  6024. {
  6025. name: "Megamacro+",
  6026. height: math.unit(12000, "kilometers")
  6027. },
  6028. ]
  6029. ))
  6030. characterMakers.push(() => makeCharacter(
  6031. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6032. {
  6033. front: {
  6034. height: math.unit(1.92, "meters"),
  6035. weight: math.unit(80, "kg"),
  6036. name: "Front",
  6037. image: {
  6038. source: "./media/characters/dr-clay/front.svg"
  6039. }
  6040. },
  6041. frontClothed: {
  6042. height: math.unit(1.92, "meters"),
  6043. weight: math.unit(80, "kg"),
  6044. name: "Front (Clothed)",
  6045. image: {
  6046. source: "./media/characters/dr-clay/front-clothed.svg"
  6047. }
  6048. }
  6049. },
  6050. [
  6051. {
  6052. name: "Normal",
  6053. height: math.unit(1.92, "m")
  6054. },
  6055. {
  6056. name: "Macro",
  6057. height: math.unit(214, "meters"),
  6058. default: true
  6059. },
  6060. {
  6061. name: "Macro+",
  6062. height: math.unit(12.237, "meters"),
  6063. },
  6064. {
  6065. name: "Megamacro",
  6066. height: math.unit(557, "megameters"),
  6067. },
  6068. {
  6069. name: "Unimaginable",
  6070. height: math.unit(120e9, "lightyears")
  6071. },
  6072. ]
  6073. ))
  6074. characterMakers.push(() => makeCharacter(
  6075. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6076. {
  6077. front: {
  6078. height: math.unit(2, "meters"),
  6079. weight: math.unit(80, "kg"),
  6080. name: "Front",
  6081. image: {
  6082. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6083. }
  6084. }
  6085. },
  6086. [
  6087. {
  6088. name: "Teramacro",
  6089. height: math.unit(500000, "lightyears"),
  6090. default: true
  6091. },
  6092. ]
  6093. ))
  6094. characterMakers.push(() => makeCharacter(
  6095. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6096. {
  6097. front: {
  6098. height: math.unit(2, "meters"),
  6099. weight: math.unit(150, "kg"),
  6100. name: "Front",
  6101. image: {
  6102. source: "./media/characters/vemus/front.svg",
  6103. extra: 2384 / 2084,
  6104. bottom: 0.0123
  6105. }
  6106. }
  6107. },
  6108. [
  6109. {
  6110. name: "Normal",
  6111. height: math.unit(3.75, "meters"),
  6112. default: true
  6113. },
  6114. {
  6115. name: "Big",
  6116. height: math.unit(8, "meters")
  6117. },
  6118. {
  6119. name: "Macro",
  6120. height: math.unit(100, "meters")
  6121. },
  6122. {
  6123. name: "Macro+",
  6124. height: math.unit(1500, "meters")
  6125. },
  6126. {
  6127. name: "Stellar",
  6128. height: math.unit(14e8, "meters")
  6129. },
  6130. ]
  6131. ))
  6132. characterMakers.push(() => makeCharacter(
  6133. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6134. {
  6135. front: {
  6136. height: math.unit(2, "meters"),
  6137. weight: math.unit(70, "kg"),
  6138. name: "Front",
  6139. image: {
  6140. source: "./media/characters/beherit/front.svg",
  6141. extra: 1408 / 1242
  6142. }
  6143. }
  6144. },
  6145. [
  6146. {
  6147. name: "Normal",
  6148. height: math.unit(6, "feet")
  6149. },
  6150. {
  6151. name: "Lorg",
  6152. height: math.unit(25, "feet"),
  6153. default: true
  6154. },
  6155. {
  6156. name: "Lorger",
  6157. height: math.unit(75, "feet")
  6158. },
  6159. {
  6160. name: "Macro",
  6161. height: math.unit(200, "meters")
  6162. },
  6163. ]
  6164. ))
  6165. characterMakers.push(() => makeCharacter(
  6166. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6167. {
  6168. front: {
  6169. height: math.unit(2, "meters"),
  6170. weight: math.unit(150, "kg"),
  6171. name: "Front",
  6172. image: {
  6173. source: "./media/characters/everett/front.svg",
  6174. extra: 2038 / 1737,
  6175. bottom: 0.03
  6176. }
  6177. },
  6178. paw: {
  6179. height: math.unit(2 / 3.6, "meters"),
  6180. name: "Paw",
  6181. image: {
  6182. source: "./media/characters/everett/paw.svg"
  6183. }
  6184. },
  6185. },
  6186. [
  6187. {
  6188. name: "Normal",
  6189. height: math.unit(15, "feet"),
  6190. default: true
  6191. },
  6192. {
  6193. name: "Lorg",
  6194. height: math.unit(70, "feet"),
  6195. default: true
  6196. },
  6197. {
  6198. name: "Lorger",
  6199. height: math.unit(250, "feet")
  6200. },
  6201. {
  6202. name: "Macro",
  6203. height: math.unit(500, "meters")
  6204. },
  6205. ]
  6206. ))
  6207. characterMakers.push(() => makeCharacter(
  6208. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6209. {
  6210. front: {
  6211. height: math.unit(2, "meters"),
  6212. weight: math.unit(86, "kg"),
  6213. name: "Front",
  6214. image: {
  6215. source: "./media/characters/rose-lion/front.svg"
  6216. }
  6217. },
  6218. bent: {
  6219. height: math.unit(2 / 1.4288, "meters"),
  6220. weight: math.unit(86, "kg"),
  6221. name: "Bent",
  6222. image: {
  6223. source: "./media/characters/rose-lion/bent.svg"
  6224. }
  6225. }
  6226. },
  6227. [
  6228. {
  6229. name: "Mini-Micro",
  6230. height: math.unit(1, "cm")
  6231. },
  6232. {
  6233. name: "Micro",
  6234. height: math.unit(3.5, "inches"),
  6235. default: true
  6236. },
  6237. {
  6238. name: "Normal",
  6239. height: math.unit(6 + 1 / 6, "feet")
  6240. },
  6241. {
  6242. name: "Mini-Macro",
  6243. height: math.unit(9 + 10 / 12, "feet")
  6244. },
  6245. ]
  6246. ))
  6247. characterMakers.push(() => makeCharacter(
  6248. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6249. {
  6250. front: {
  6251. height: math.unit(2, "meters"),
  6252. weight: math.unit(350, "lbs"),
  6253. name: "Front",
  6254. image: {
  6255. source: "./media/characters/regal/front.svg"
  6256. }
  6257. },
  6258. back: {
  6259. height: math.unit(2, "meters"),
  6260. weight: math.unit(350, "lbs"),
  6261. name: "Back",
  6262. image: {
  6263. source: "./media/characters/regal/back.svg"
  6264. }
  6265. },
  6266. },
  6267. [
  6268. {
  6269. name: "Macro",
  6270. height: math.unit(350, "feet"),
  6271. default: true
  6272. }
  6273. ]
  6274. ))
  6275. characterMakers.push(() => makeCharacter(
  6276. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6277. {
  6278. front: {
  6279. height: math.unit(4 + 11 / 12, "feet"),
  6280. weight: math.unit(100, "lbs"),
  6281. name: "Front",
  6282. image: {
  6283. source: "./media/characters/opal/front.svg"
  6284. }
  6285. },
  6286. frontAlt: {
  6287. height: math.unit(4 + 11 / 12, "feet"),
  6288. weight: math.unit(100, "lbs"),
  6289. name: "Front (Alt)",
  6290. image: {
  6291. source: "./media/characters/opal/front-alt.svg"
  6292. }
  6293. },
  6294. },
  6295. [
  6296. {
  6297. name: "Small",
  6298. height: math.unit(4 + 11 / 12, "feet")
  6299. },
  6300. {
  6301. name: "Normal",
  6302. height: math.unit(20, "feet"),
  6303. default: true
  6304. },
  6305. {
  6306. name: "Macro",
  6307. height: math.unit(120, "feet")
  6308. },
  6309. {
  6310. name: "Megamacro",
  6311. height: math.unit(80, "miles")
  6312. },
  6313. {
  6314. name: "True Size",
  6315. height: math.unit(100000, "lightyears")
  6316. },
  6317. ]
  6318. ))
  6319. characterMakers.push(() => makeCharacter(
  6320. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6321. {
  6322. front: {
  6323. height: math.unit(6, "feet"),
  6324. weight: math.unit(200, "lbs"),
  6325. name: "Front",
  6326. image: {
  6327. source: "./media/characters/vector-wuff/front.svg"
  6328. }
  6329. }
  6330. },
  6331. [
  6332. {
  6333. name: "Normal",
  6334. height: math.unit(2.8, "meters")
  6335. },
  6336. {
  6337. name: "Macro",
  6338. height: math.unit(450, "meters"),
  6339. default: true
  6340. },
  6341. {
  6342. name: "Megamacro",
  6343. height: math.unit(15, "kilometers")
  6344. }
  6345. ]
  6346. ))
  6347. characterMakers.push(() => makeCharacter(
  6348. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6349. {
  6350. front: {
  6351. height: math.unit(6, "feet"),
  6352. weight: math.unit(256, "lbs"),
  6353. name: "Front",
  6354. image: {
  6355. source: "./media/characters/dannik/front.svg"
  6356. }
  6357. }
  6358. },
  6359. [
  6360. {
  6361. name: "Macro",
  6362. height: math.unit(69.57, "meters"),
  6363. default: true
  6364. },
  6365. ]
  6366. ))
  6367. characterMakers.push(() => makeCharacter(
  6368. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6369. {
  6370. front: {
  6371. height: math.unit(6, "feet"),
  6372. weight: math.unit(120, "lbs"),
  6373. name: "Front",
  6374. image: {
  6375. source: "./media/characters/azura-saharah/front.svg"
  6376. }
  6377. },
  6378. back: {
  6379. height: math.unit(6, "feet"),
  6380. weight: math.unit(120, "lbs"),
  6381. name: "Back",
  6382. image: {
  6383. source: "./media/characters/azura-saharah/back.svg"
  6384. }
  6385. },
  6386. },
  6387. [
  6388. {
  6389. name: "Macro",
  6390. height: math.unit(100, "feet"),
  6391. default: true
  6392. },
  6393. ]
  6394. ))
  6395. characterMakers.push(() => makeCharacter(
  6396. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6397. {
  6398. side: {
  6399. height: math.unit(5 + 4 / 12, "feet"),
  6400. weight: math.unit(163, "lbs"),
  6401. name: "Side",
  6402. image: {
  6403. source: "./media/characters/kennedy/side.svg"
  6404. }
  6405. }
  6406. },
  6407. [
  6408. {
  6409. name: "Standard Doggo",
  6410. height: math.unit(5 + 4 / 12, "feet")
  6411. },
  6412. {
  6413. name: "Big Doggo",
  6414. height: math.unit(25 + 3 / 12, "feet"),
  6415. default: true
  6416. },
  6417. ]
  6418. ))
  6419. characterMakers.push(() => makeCharacter(
  6420. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6421. {
  6422. front: {
  6423. height: math.unit(6, "feet"),
  6424. weight: math.unit(90, "lbs"),
  6425. name: "Front",
  6426. image: {
  6427. source: "./media/characters/odi-lunar/front.svg"
  6428. }
  6429. }
  6430. },
  6431. [
  6432. {
  6433. name: "Micro",
  6434. height: math.unit(3, "inches"),
  6435. default: true
  6436. },
  6437. {
  6438. name: "Normal",
  6439. height: math.unit(5.5, "feet")
  6440. }
  6441. ]
  6442. ))
  6443. characterMakers.push(() => makeCharacter(
  6444. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6445. {
  6446. back: {
  6447. height: math.unit(6, "feet"),
  6448. weight: math.unit(220, "lbs"),
  6449. name: "Back",
  6450. image: {
  6451. source: "./media/characters/mandake/back.svg"
  6452. }
  6453. }
  6454. },
  6455. [
  6456. {
  6457. name: "Normal",
  6458. height: math.unit(7, "feet"),
  6459. default: true
  6460. },
  6461. {
  6462. name: "Macro",
  6463. height: math.unit(78, "feet")
  6464. },
  6465. {
  6466. name: "Macro+",
  6467. height: math.unit(300, "meters")
  6468. },
  6469. {
  6470. name: "Macro++",
  6471. height: math.unit(2400, "feet")
  6472. },
  6473. {
  6474. name: "Megamacro",
  6475. height: math.unit(5167, "meters")
  6476. },
  6477. {
  6478. name: "Gigamacro",
  6479. height: math.unit(41769, "miles")
  6480. },
  6481. ]
  6482. ))
  6483. characterMakers.push(() => makeCharacter(
  6484. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6485. {
  6486. front: {
  6487. height: math.unit(6, "feet"),
  6488. weight: math.unit(120, "lbs"),
  6489. name: "Front",
  6490. image: {
  6491. source: "./media/characters/yozey/front.svg"
  6492. }
  6493. },
  6494. frontAlt: {
  6495. height: math.unit(6, "feet"),
  6496. weight: math.unit(120, "lbs"),
  6497. name: "Front (Alt)",
  6498. image: {
  6499. source: "./media/characters/yozey/front-alt.svg"
  6500. }
  6501. },
  6502. side: {
  6503. height: math.unit(6, "feet"),
  6504. weight: math.unit(120, "lbs"),
  6505. name: "Side",
  6506. image: {
  6507. source: "./media/characters/yozey/side.svg"
  6508. }
  6509. },
  6510. },
  6511. [
  6512. {
  6513. name: "Micro",
  6514. height: math.unit(3, "inches"),
  6515. default: true
  6516. },
  6517. {
  6518. name: "Normal",
  6519. height: math.unit(6, "feet")
  6520. }
  6521. ]
  6522. ))
  6523. characterMakers.push(() => makeCharacter(
  6524. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6525. {
  6526. front: {
  6527. height: math.unit(6, "feet"),
  6528. weight: math.unit(103, "lbs"),
  6529. name: "Front",
  6530. image: {
  6531. source: "./media/characters/valeska-voss/front.svg"
  6532. }
  6533. }
  6534. },
  6535. [
  6536. {
  6537. name: "Mini-Sized Sub",
  6538. height: math.unit(3.1, "inches")
  6539. },
  6540. {
  6541. name: "Mid-Sized Sub",
  6542. height: math.unit(6.2, "inches")
  6543. },
  6544. {
  6545. name: "Full-Sized Sub",
  6546. height: math.unit(9.3, "inches")
  6547. },
  6548. {
  6549. name: "Normal",
  6550. height: math.unit(5 + 2 / 12, "foot"),
  6551. default: true
  6552. },
  6553. ]
  6554. ))
  6555. characterMakers.push(() => makeCharacter(
  6556. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6557. {
  6558. front: {
  6559. height: math.unit(6, "feet"),
  6560. weight: math.unit(160, "lbs"),
  6561. name: "Front",
  6562. image: {
  6563. source: "./media/characters/gene-zeta/front.svg",
  6564. extra: 3006 / 2826,
  6565. bottom: 182 / 3188
  6566. }
  6567. }
  6568. },
  6569. [
  6570. {
  6571. name: "Micro",
  6572. height: math.unit(6, "inches")
  6573. },
  6574. {
  6575. name: "Normal",
  6576. height: math.unit(5 + 11 / 12, "foot"),
  6577. default: true
  6578. },
  6579. {
  6580. name: "Macro",
  6581. height: math.unit(140, "feet")
  6582. },
  6583. {
  6584. name: "Supercharged",
  6585. height: math.unit(2500, "feet")
  6586. },
  6587. ]
  6588. ))
  6589. characterMakers.push(() => makeCharacter(
  6590. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6591. {
  6592. front: {
  6593. height: math.unit(6, "feet"),
  6594. weight: math.unit(350, "lbs"),
  6595. name: "Front",
  6596. image: {
  6597. source: "./media/characters/razinox/front.svg",
  6598. extra: 1686 / 1548,
  6599. bottom: 28.2 / 1868
  6600. }
  6601. },
  6602. back: {
  6603. height: math.unit(6, "feet"),
  6604. weight: math.unit(350, "lbs"),
  6605. name: "Back",
  6606. image: {
  6607. source: "./media/characters/razinox/back.svg",
  6608. extra: 1660 / 1590,
  6609. bottom: 15 / 1665
  6610. }
  6611. },
  6612. },
  6613. [
  6614. {
  6615. name: "Normal",
  6616. height: math.unit(10 + 8 / 12, "foot")
  6617. },
  6618. {
  6619. name: "Minimacro",
  6620. height: math.unit(15, "foot")
  6621. },
  6622. {
  6623. name: "Macro",
  6624. height: math.unit(60, "foot"),
  6625. default: true
  6626. },
  6627. {
  6628. name: "Megamacro",
  6629. height: math.unit(5, "miles")
  6630. },
  6631. {
  6632. name: "Gigamacro",
  6633. height: math.unit(6000, "miles")
  6634. },
  6635. ]
  6636. ))
  6637. characterMakers.push(() => makeCharacter(
  6638. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6639. {
  6640. front: {
  6641. height: math.unit(6, "feet"),
  6642. weight: math.unit(150, "lbs"),
  6643. name: "Front",
  6644. image: {
  6645. source: "./media/characters/cobalt/front.svg"
  6646. }
  6647. }
  6648. },
  6649. [
  6650. {
  6651. name: "Normal",
  6652. height: math.unit(8 + 1 / 12, "foot")
  6653. },
  6654. {
  6655. name: "Macro",
  6656. height: math.unit(111, "foot"),
  6657. default: true
  6658. },
  6659. {
  6660. name: "Supracosmic",
  6661. height: math.unit(1e42, "feet")
  6662. },
  6663. ]
  6664. ))
  6665. characterMakers.push(() => makeCharacter(
  6666. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6667. {
  6668. front: {
  6669. height: math.unit(6, "feet"),
  6670. weight: math.unit(140, "lbs"),
  6671. name: "Front",
  6672. image: {
  6673. source: "./media/characters/amanda/front.svg"
  6674. }
  6675. }
  6676. },
  6677. [
  6678. {
  6679. name: "Micro",
  6680. height: math.unit(5, "inches"),
  6681. default: true
  6682. },
  6683. ]
  6684. ))
  6685. characterMakers.push(() => makeCharacter(
  6686. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6687. {
  6688. front: {
  6689. height: math.unit(2.75, "meters"),
  6690. weight: math.unit(1200, "lb"),
  6691. name: "Front",
  6692. image: {
  6693. source: "./media/characters/teal/front.svg",
  6694. extra: 2463 / 2320,
  6695. bottom: 166 / 2629
  6696. }
  6697. },
  6698. back: {
  6699. height: math.unit(2.75, "meters"),
  6700. weight: math.unit(1200, "lb"),
  6701. name: "Back",
  6702. image: {
  6703. source: "./media/characters/teal/back.svg",
  6704. extra: 2580 / 2489,
  6705. bottom: 151 / 2731
  6706. }
  6707. },
  6708. sitting: {
  6709. height: math.unit(1.9, "meters"),
  6710. weight: math.unit(1200, "lb"),
  6711. name: "Sitting",
  6712. image: {
  6713. source: "./media/characters/teal/sitting.svg",
  6714. extra: 623 / 590,
  6715. bottom: 121 / 744
  6716. }
  6717. },
  6718. standing: {
  6719. height: math.unit(2.75, "meters"),
  6720. weight: math.unit(1200, "lb"),
  6721. name: "Standing",
  6722. image: {
  6723. source: "./media/characters/teal/standing.svg",
  6724. extra: 923 / 893,
  6725. bottom: 60 / 983
  6726. }
  6727. },
  6728. stretching: {
  6729. height: math.unit(3.65, "meters"),
  6730. weight: math.unit(1200, "lb"),
  6731. name: "Stretching",
  6732. image: {
  6733. source: "./media/characters/teal/stretching.svg",
  6734. extra: 1276 / 1244,
  6735. bottom: 0 / 1276
  6736. }
  6737. },
  6738. legged: {
  6739. height: math.unit(1.3, "meters"),
  6740. weight: math.unit(100, "lb"),
  6741. name: "Legged",
  6742. image: {
  6743. source: "./media/characters/teal/legged.svg",
  6744. extra: 462 / 437,
  6745. bottom: 24 / 486
  6746. }
  6747. },
  6748. naga: {
  6749. height: math.unit(5.4, "meters"),
  6750. weight: math.unit(4000, "lb"),
  6751. name: "Naga",
  6752. image: {
  6753. source: "./media/characters/teal/naga.svg",
  6754. extra: 1902 / 1858,
  6755. bottom: 0 / 1902
  6756. }
  6757. },
  6758. hand: {
  6759. height: math.unit(0.52, "meters"),
  6760. name: "Hand",
  6761. image: {
  6762. source: "./media/characters/teal/hand.svg"
  6763. }
  6764. },
  6765. maw: {
  6766. height: math.unit(0.43, "meters"),
  6767. name: "Maw",
  6768. image: {
  6769. source: "./media/characters/teal/maw.svg"
  6770. }
  6771. },
  6772. slit: {
  6773. height: math.unit(0.25, "meters"),
  6774. name: "Slit",
  6775. image: {
  6776. source: "./media/characters/teal/slit.svg"
  6777. }
  6778. },
  6779. },
  6780. [
  6781. {
  6782. name: "Normal",
  6783. height: math.unit(2.75, "meters"),
  6784. default: true
  6785. },
  6786. {
  6787. name: "Macro",
  6788. height: math.unit(300, "feet")
  6789. },
  6790. {
  6791. name: "Macro+",
  6792. height: math.unit(2000, "feet")
  6793. },
  6794. ]
  6795. ))
  6796. characterMakers.push(() => makeCharacter(
  6797. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6798. {
  6799. frontCat: {
  6800. height: math.unit(6, "feet"),
  6801. weight: math.unit(180, "lbs"),
  6802. name: "Front (Cat)",
  6803. image: {
  6804. source: "./media/characters/ravin-amulet/front-cat.svg"
  6805. }
  6806. },
  6807. frontCatAlt: {
  6808. height: math.unit(6, "feet"),
  6809. weight: math.unit(180, "lbs"),
  6810. name: "Front (Alt, Cat)",
  6811. image: {
  6812. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6813. }
  6814. },
  6815. frontWerewolf: {
  6816. height: math.unit(6 * 1.2, "feet"),
  6817. weight: math.unit(225, "lbs"),
  6818. name: "Front (Werewolf)",
  6819. image: {
  6820. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6821. }
  6822. },
  6823. backWerewolf: {
  6824. height: math.unit(6 * 1.2, "feet"),
  6825. weight: math.unit(225, "lbs"),
  6826. name: "Back (Werewolf)",
  6827. image: {
  6828. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6829. }
  6830. },
  6831. },
  6832. [
  6833. {
  6834. name: "Nano",
  6835. height: math.unit(1, "micrometer")
  6836. },
  6837. {
  6838. name: "Micro",
  6839. height: math.unit(1, "inch")
  6840. },
  6841. {
  6842. name: "Normal",
  6843. height: math.unit(6, "feet"),
  6844. default: true
  6845. },
  6846. {
  6847. name: "Macro",
  6848. height: math.unit(60, "feet")
  6849. }
  6850. ]
  6851. ))
  6852. characterMakers.push(() => makeCharacter(
  6853. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6854. {
  6855. front: {
  6856. height: math.unit(6, "feet"),
  6857. weight: math.unit(165, "lbs"),
  6858. name: "Front",
  6859. image: {
  6860. source: "./media/characters/fluoresce/front.svg"
  6861. }
  6862. }
  6863. },
  6864. [
  6865. {
  6866. name: "Micro",
  6867. height: math.unit(6, "cm")
  6868. },
  6869. {
  6870. name: "Normal",
  6871. height: math.unit(5 + 7 / 12, "feet"),
  6872. default: true
  6873. },
  6874. {
  6875. name: "Macro",
  6876. height: math.unit(56, "feet")
  6877. },
  6878. {
  6879. name: "Megamacro",
  6880. height: math.unit(1.9, "miles")
  6881. },
  6882. ]
  6883. ))
  6884. characterMakers.push(() => makeCharacter(
  6885. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6886. {
  6887. front: {
  6888. height: math.unit(9 + 6 / 12, "feet"),
  6889. weight: math.unit(523, "lbs"),
  6890. name: "Side",
  6891. image: {
  6892. source: "./media/characters/aurora/side.svg"
  6893. }
  6894. }
  6895. },
  6896. [
  6897. {
  6898. name: "Normal",
  6899. height: math.unit(9 + 6 / 12, "feet")
  6900. },
  6901. {
  6902. name: "Macro",
  6903. height: math.unit(96, "feet"),
  6904. default: true
  6905. },
  6906. {
  6907. name: "Macro+",
  6908. height: math.unit(243, "feet")
  6909. },
  6910. ]
  6911. ))
  6912. characterMakers.push(() => makeCharacter(
  6913. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6914. {
  6915. front: {
  6916. height: math.unit(194, "cm"),
  6917. weight: math.unit(90, "kg"),
  6918. name: "Front",
  6919. image: {
  6920. source: "./media/characters/ranek/front.svg"
  6921. }
  6922. },
  6923. side: {
  6924. height: math.unit(194, "cm"),
  6925. weight: math.unit(90, "kg"),
  6926. name: "Side",
  6927. image: {
  6928. source: "./media/characters/ranek/side.svg"
  6929. }
  6930. },
  6931. back: {
  6932. height: math.unit(194, "cm"),
  6933. weight: math.unit(90, "kg"),
  6934. name: "Back",
  6935. image: {
  6936. source: "./media/characters/ranek/back.svg"
  6937. }
  6938. },
  6939. feral: {
  6940. height: math.unit(30, "cm"),
  6941. weight: math.unit(1.6, "lbs"),
  6942. name: "Feral",
  6943. image: {
  6944. source: "./media/characters/ranek/feral.svg"
  6945. }
  6946. },
  6947. },
  6948. [
  6949. {
  6950. name: "Normal",
  6951. height: math.unit(194, "cm"),
  6952. default: true
  6953. },
  6954. {
  6955. name: "Macro",
  6956. height: math.unit(100, "meters")
  6957. },
  6958. ]
  6959. ))
  6960. characterMakers.push(() => makeCharacter(
  6961. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6962. {
  6963. front: {
  6964. height: math.unit(5 + 6 / 12, "feet"),
  6965. weight: math.unit(153, "lbs"),
  6966. name: "Front",
  6967. image: {
  6968. source: "./media/characters/andrew-cooper/front.svg"
  6969. }
  6970. },
  6971. },
  6972. [
  6973. {
  6974. name: "Nano",
  6975. height: math.unit(1, "mm")
  6976. },
  6977. {
  6978. name: "Micro",
  6979. height: math.unit(2, "inches")
  6980. },
  6981. {
  6982. name: "Normal",
  6983. height: math.unit(5 + 6 / 12, "feet"),
  6984. default: true
  6985. }
  6986. ]
  6987. ))
  6988. characterMakers.push(() => makeCharacter(
  6989. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6990. {
  6991. front: {
  6992. height: math.unit(6, "feet"),
  6993. weight: math.unit(180, "lbs"),
  6994. name: "Front",
  6995. image: {
  6996. source: "./media/characters/akane-sato/front.svg",
  6997. extra: 1219 / 1140
  6998. }
  6999. },
  7000. back: {
  7001. height: math.unit(6, "feet"),
  7002. weight: math.unit(180, "lbs"),
  7003. name: "Back",
  7004. image: {
  7005. source: "./media/characters/akane-sato/back.svg",
  7006. extra: 1219 / 1170
  7007. }
  7008. },
  7009. },
  7010. [
  7011. {
  7012. name: "Normal",
  7013. height: math.unit(2.5, "meters")
  7014. },
  7015. {
  7016. name: "Macro",
  7017. height: math.unit(250, "meters"),
  7018. default: true
  7019. },
  7020. {
  7021. name: "Megamacro",
  7022. height: math.unit(25, "km")
  7023. },
  7024. ]
  7025. ))
  7026. characterMakers.push(() => makeCharacter(
  7027. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7028. {
  7029. front: {
  7030. height: math.unit(6, "feet"),
  7031. weight: math.unit(65, "kg"),
  7032. name: "Front",
  7033. image: {
  7034. source: "./media/characters/rook/front.svg",
  7035. extra: 960 / 950
  7036. }
  7037. }
  7038. },
  7039. [
  7040. {
  7041. name: "Normal",
  7042. height: math.unit(8.8, "feet")
  7043. },
  7044. {
  7045. name: "Macro",
  7046. height: math.unit(88, "feet"),
  7047. default: true
  7048. },
  7049. {
  7050. name: "Megamacro",
  7051. height: math.unit(8, "miles")
  7052. },
  7053. ]
  7054. ))
  7055. characterMakers.push(() => makeCharacter(
  7056. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7057. {
  7058. front: {
  7059. height: math.unit(12 + 2 / 12, "feet"),
  7060. weight: math.unit(808, "lbs"),
  7061. name: "Front",
  7062. image: {
  7063. source: "./media/characters/prodigy/front.svg"
  7064. }
  7065. }
  7066. },
  7067. [
  7068. {
  7069. name: "Normal",
  7070. height: math.unit(12 + 2 / 12, "feet"),
  7071. default: true
  7072. },
  7073. {
  7074. name: "Macro",
  7075. height: math.unit(143, "feet")
  7076. },
  7077. {
  7078. name: "Macro+",
  7079. height: math.unit(400, "feet")
  7080. },
  7081. ]
  7082. ))
  7083. characterMakers.push(() => makeCharacter(
  7084. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7085. {
  7086. front: {
  7087. height: math.unit(6, "feet"),
  7088. weight: math.unit(225, "lbs"),
  7089. name: "Front",
  7090. image: {
  7091. source: "./media/characters/daniel/front.svg"
  7092. }
  7093. },
  7094. leaning: {
  7095. height: math.unit(6, "feet"),
  7096. weight: math.unit(225, "lbs"),
  7097. name: "Leaning",
  7098. image: {
  7099. source: "./media/characters/daniel/leaning.svg"
  7100. }
  7101. },
  7102. },
  7103. [
  7104. {
  7105. name: "Macro",
  7106. height: math.unit(1000, "feet"),
  7107. default: true
  7108. },
  7109. ]
  7110. ))
  7111. characterMakers.push(() => makeCharacter(
  7112. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7113. {
  7114. front: {
  7115. height: math.unit(6, "feet"),
  7116. weight: math.unit(88, "lbs"),
  7117. name: "Front",
  7118. image: {
  7119. source: "./media/characters/chiros/front.svg",
  7120. extra: 306 / 226
  7121. }
  7122. },
  7123. side: {
  7124. height: math.unit(6, "feet"),
  7125. weight: math.unit(88, "lbs"),
  7126. name: "Side",
  7127. image: {
  7128. source: "./media/characters/chiros/side.svg",
  7129. extra: 306 / 226
  7130. }
  7131. },
  7132. },
  7133. [
  7134. {
  7135. name: "Normal",
  7136. height: math.unit(6, "cm"),
  7137. default: true
  7138. },
  7139. ]
  7140. ))
  7141. characterMakers.push(() => makeCharacter(
  7142. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7143. {
  7144. front: {
  7145. height: math.unit(6, "feet"),
  7146. weight: math.unit(100, "lbs"),
  7147. name: "Front",
  7148. image: {
  7149. source: "./media/characters/selka/front.svg",
  7150. extra: 947 / 887
  7151. }
  7152. }
  7153. },
  7154. [
  7155. {
  7156. name: "Normal",
  7157. height: math.unit(5, "cm"),
  7158. default: true
  7159. },
  7160. ]
  7161. ))
  7162. characterMakers.push(() => makeCharacter(
  7163. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7164. {
  7165. front: {
  7166. height: math.unit(8 + 3 / 12, "feet"),
  7167. weight: math.unit(424, "lbs"),
  7168. name: "Front",
  7169. image: {
  7170. source: "./media/characters/verin/front.svg",
  7171. extra: 1845 / 1550
  7172. }
  7173. },
  7174. frontArmored: {
  7175. height: math.unit(8 + 3 / 12, "feet"),
  7176. weight: math.unit(424, "lbs"),
  7177. name: "Front (Armored)",
  7178. image: {
  7179. source: "./media/characters/verin/front-armor.svg",
  7180. extra: 1845 / 1550,
  7181. bottom: 0.01
  7182. }
  7183. },
  7184. back: {
  7185. height: math.unit(8 + 3 / 12, "feet"),
  7186. weight: math.unit(424, "lbs"),
  7187. name: "Back",
  7188. image: {
  7189. source: "./media/characters/verin/back.svg",
  7190. bottom: 0.1,
  7191. extra: 1
  7192. }
  7193. },
  7194. foot: {
  7195. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7196. name: "Foot",
  7197. image: {
  7198. source: "./media/characters/verin/foot.svg"
  7199. }
  7200. },
  7201. },
  7202. [
  7203. {
  7204. name: "Normal",
  7205. height: math.unit(8 + 3 / 12, "feet")
  7206. },
  7207. {
  7208. name: "Minimacro",
  7209. height: math.unit(21, "feet"),
  7210. default: true
  7211. },
  7212. {
  7213. name: "Macro",
  7214. height: math.unit(626, "feet")
  7215. },
  7216. ]
  7217. ))
  7218. characterMakers.push(() => makeCharacter(
  7219. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7220. {
  7221. front: {
  7222. height: math.unit(2.718, "meters"),
  7223. weight: math.unit(150, "lbs"),
  7224. name: "Front",
  7225. image: {
  7226. source: "./media/characters/sovrim-terraquian/front.svg"
  7227. }
  7228. },
  7229. back: {
  7230. height: math.unit(2.718, "meters"),
  7231. weight: math.unit(150, "lbs"),
  7232. name: "Back",
  7233. image: {
  7234. source: "./media/characters/sovrim-terraquian/back.svg"
  7235. }
  7236. }
  7237. },
  7238. [
  7239. {
  7240. name: "Micro",
  7241. height: math.unit(2, "inches")
  7242. },
  7243. {
  7244. name: "Small",
  7245. height: math.unit(1, "meter")
  7246. },
  7247. {
  7248. name: "Normal",
  7249. height: math.unit(Math.E, "meters"),
  7250. default: true
  7251. },
  7252. {
  7253. name: "Macro",
  7254. height: math.unit(20, "meters")
  7255. },
  7256. {
  7257. name: "Macro+",
  7258. height: math.unit(400, "meters")
  7259. },
  7260. ]
  7261. ))
  7262. characterMakers.push(() => makeCharacter(
  7263. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7264. {
  7265. front: {
  7266. height: math.unit(7, "feet"),
  7267. weight: math.unit(489, "lbs"),
  7268. name: "Front",
  7269. image: {
  7270. source: "./media/characters/reece-silvermane/front.svg",
  7271. bottom: 0.02,
  7272. extra: 1
  7273. }
  7274. },
  7275. },
  7276. [
  7277. {
  7278. name: "Macro",
  7279. height: math.unit(1.5, "miles"),
  7280. default: true
  7281. },
  7282. ]
  7283. ))
  7284. characterMakers.push(() => makeCharacter(
  7285. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7286. {
  7287. front: {
  7288. height: math.unit(6, "feet"),
  7289. weight: math.unit(78, "kg"),
  7290. name: "Front",
  7291. image: {
  7292. source: "./media/characters/kane/front.svg",
  7293. extra: 978 / 899
  7294. }
  7295. },
  7296. },
  7297. [
  7298. {
  7299. name: "Normal",
  7300. height: math.unit(2.1, "m"),
  7301. },
  7302. {
  7303. name: "Macro",
  7304. height: math.unit(1, "km"),
  7305. default: true
  7306. },
  7307. ]
  7308. ))
  7309. characterMakers.push(() => makeCharacter(
  7310. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7311. {
  7312. front: {
  7313. height: math.unit(6, "feet"),
  7314. weight: math.unit(200, "kg"),
  7315. name: "Front",
  7316. image: {
  7317. source: "./media/characters/tegon/front.svg",
  7318. bottom: 0.01,
  7319. extra: 1
  7320. }
  7321. },
  7322. },
  7323. [
  7324. {
  7325. name: "Micro",
  7326. height: math.unit(1, "inch")
  7327. },
  7328. {
  7329. name: "Normal",
  7330. height: math.unit(6 + 3 / 12, "feet"),
  7331. default: true
  7332. },
  7333. {
  7334. name: "Macro",
  7335. height: math.unit(300, "feet")
  7336. },
  7337. {
  7338. name: "Megamacro",
  7339. height: math.unit(69, "miles")
  7340. },
  7341. ]
  7342. ))
  7343. characterMakers.push(() => makeCharacter(
  7344. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7345. {
  7346. side: {
  7347. height: math.unit(6, "feet"),
  7348. weight: math.unit(2304, "lbs"),
  7349. name: "Side",
  7350. image: {
  7351. source: "./media/characters/arcturax/side.svg",
  7352. extra: 790 / 376,
  7353. bottom: 0.01
  7354. }
  7355. },
  7356. },
  7357. [
  7358. {
  7359. name: "Micro",
  7360. height: math.unit(2, "inch")
  7361. },
  7362. {
  7363. name: "Normal",
  7364. height: math.unit(6, "feet")
  7365. },
  7366. {
  7367. name: "Macro",
  7368. height: math.unit(39, "feet"),
  7369. default: true
  7370. },
  7371. {
  7372. name: "Megamacro",
  7373. height: math.unit(7, "miles")
  7374. },
  7375. ]
  7376. ))
  7377. characterMakers.push(() => makeCharacter(
  7378. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7379. {
  7380. front: {
  7381. height: math.unit(6, "feet"),
  7382. weight: math.unit(50, "lbs"),
  7383. name: "Front",
  7384. image: {
  7385. source: "./media/characters/sentri/front.svg",
  7386. extra: 1750 / 1570,
  7387. bottom: 0.025
  7388. }
  7389. },
  7390. frontAlt: {
  7391. height: math.unit(6, "feet"),
  7392. weight: math.unit(50, "lbs"),
  7393. name: "Front (Alt)",
  7394. image: {
  7395. source: "./media/characters/sentri/front-alt.svg",
  7396. extra: 1750 / 1570,
  7397. bottom: 0.025
  7398. }
  7399. },
  7400. },
  7401. [
  7402. {
  7403. name: "Normal",
  7404. height: math.unit(15, "feet"),
  7405. default: true
  7406. },
  7407. {
  7408. name: "Macro",
  7409. height: math.unit(2500, "feet")
  7410. }
  7411. ]
  7412. ))
  7413. characterMakers.push(() => makeCharacter(
  7414. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7415. {
  7416. front: {
  7417. height: math.unit(5 + 8 / 12, "feet"),
  7418. weight: math.unit(130, "lbs"),
  7419. name: "Front",
  7420. image: {
  7421. source: "./media/characters/corvin/front.svg",
  7422. extra: 1803 / 1629
  7423. }
  7424. },
  7425. frontShirt: {
  7426. height: math.unit(5 + 8 / 12, "feet"),
  7427. weight: math.unit(130, "lbs"),
  7428. name: "Front (Shirt)",
  7429. image: {
  7430. source: "./media/characters/corvin/front-shirt.svg",
  7431. extra: 1803 / 1629
  7432. }
  7433. },
  7434. frontPoncho: {
  7435. height: math.unit(5 + 8 / 12, "feet"),
  7436. weight: math.unit(130, "lbs"),
  7437. name: "Front (Poncho)",
  7438. image: {
  7439. source: "./media/characters/corvin/front-poncho.svg",
  7440. extra: 1803 / 1629
  7441. }
  7442. },
  7443. side: {
  7444. height: math.unit(5 + 8 / 12, "feet"),
  7445. weight: math.unit(130, "lbs"),
  7446. name: "Side",
  7447. image: {
  7448. source: "./media/characters/corvin/side.svg",
  7449. extra: 1012 / 945
  7450. }
  7451. },
  7452. back: {
  7453. height: math.unit(5 + 8 / 12, "feet"),
  7454. weight: math.unit(130, "lbs"),
  7455. name: "Back",
  7456. image: {
  7457. source: "./media/characters/corvin/back.svg",
  7458. extra: 1803 / 1629
  7459. }
  7460. },
  7461. },
  7462. [
  7463. {
  7464. name: "Micro",
  7465. height: math.unit(3, "inches")
  7466. },
  7467. {
  7468. name: "Normal",
  7469. height: math.unit(5 + 8 / 12, "feet")
  7470. },
  7471. {
  7472. name: "Macro",
  7473. height: math.unit(300, "feet"),
  7474. default: true
  7475. },
  7476. {
  7477. name: "Megamacro",
  7478. height: math.unit(500, "miles")
  7479. }
  7480. ]
  7481. ))
  7482. characterMakers.push(() => makeCharacter(
  7483. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7484. {
  7485. front: {
  7486. height: math.unit(6, "feet"),
  7487. weight: math.unit(135, "lbs"),
  7488. name: "Front",
  7489. image: {
  7490. source: "./media/characters/q/front.svg",
  7491. extra: 854 / 752,
  7492. bottom: 0.005
  7493. }
  7494. },
  7495. back: {
  7496. height: math.unit(6, "feet"),
  7497. weight: math.unit(130, "lbs"),
  7498. name: "Back",
  7499. image: {
  7500. source: "./media/characters/q/back.svg",
  7501. extra: 854 / 752
  7502. }
  7503. },
  7504. },
  7505. [
  7506. {
  7507. name: "Macro",
  7508. height: math.unit(90, "feet"),
  7509. default: true
  7510. },
  7511. {
  7512. name: "Extra Macro",
  7513. height: math.unit(300, "feet"),
  7514. },
  7515. {
  7516. name: "BIG WALF",
  7517. height: math.unit(750, "feet"),
  7518. },
  7519. ]
  7520. ))
  7521. characterMakers.push(() => makeCharacter(
  7522. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7523. {
  7524. front: {
  7525. height: math.unit(6, "feet"),
  7526. weight: math.unit(150, "lbs"),
  7527. name: "Front",
  7528. image: {
  7529. source: "./media/characters/carley/front.svg",
  7530. extra: 3927 / 3540,
  7531. bottom: 29.2 / 735
  7532. }
  7533. }
  7534. },
  7535. [
  7536. {
  7537. name: "Normal",
  7538. height: math.unit(6 + 3 / 12, "feet")
  7539. },
  7540. {
  7541. name: "Macro",
  7542. height: math.unit(185, "feet"),
  7543. default: true
  7544. },
  7545. {
  7546. name: "Megamacro",
  7547. height: math.unit(8, "miles"),
  7548. },
  7549. ]
  7550. ))
  7551. characterMakers.push(() => makeCharacter(
  7552. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7553. {
  7554. front: {
  7555. height: math.unit(3, "feet"),
  7556. weight: math.unit(28, "lbs"),
  7557. name: "Front",
  7558. image: {
  7559. source: "./media/characters/citrine/front.svg"
  7560. }
  7561. }
  7562. },
  7563. [
  7564. {
  7565. name: "Normal",
  7566. height: math.unit(3, "feet"),
  7567. default: true
  7568. }
  7569. ]
  7570. ))
  7571. characterMakers.push(() => makeCharacter(
  7572. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7573. {
  7574. front: {
  7575. height: math.unit(14, "feet"),
  7576. weight: math.unit(1450, "kg"),
  7577. capacity: math.unit(15, "people"),
  7578. name: "Front",
  7579. image: {
  7580. source: "./media/characters/aura-starwind/front.svg",
  7581. extra: 1455 / 1335
  7582. }
  7583. },
  7584. side: {
  7585. height: math.unit(14, "feet"),
  7586. weight: math.unit(1450, "kg"),
  7587. capacity: math.unit(15, "people"),
  7588. name: "Side",
  7589. image: {
  7590. source: "./media/characters/aura-starwind/side.svg",
  7591. extra: 1654 / 1497
  7592. }
  7593. },
  7594. taur: {
  7595. height: math.unit(18, "feet"),
  7596. weight: math.unit(5500, "kg"),
  7597. capacity: math.unit(50, "people"),
  7598. name: "Taur",
  7599. image: {
  7600. source: "./media/characters/aura-starwind/taur.svg",
  7601. extra: 1760 / 1650
  7602. }
  7603. },
  7604. feral: {
  7605. height: math.unit(46, "feet"),
  7606. weight: math.unit(25000, "kg"),
  7607. capacity: math.unit(120, "people"),
  7608. name: "Feral",
  7609. image: {
  7610. source: "./media/characters/aura-starwind/feral.svg"
  7611. }
  7612. },
  7613. },
  7614. [
  7615. {
  7616. name: "Normal",
  7617. height: math.unit(14, "feet"),
  7618. default: true
  7619. },
  7620. {
  7621. name: "Macro",
  7622. height: math.unit(50, "meters")
  7623. },
  7624. {
  7625. name: "Megamacro",
  7626. height: math.unit(5000, "meters")
  7627. },
  7628. {
  7629. name: "Gigamacro",
  7630. height: math.unit(100000, "kilometers")
  7631. },
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7636. {
  7637. front: {
  7638. height: math.unit(2 + 7 / 12, "feet"),
  7639. weight: math.unit(32, "lbs"),
  7640. name: "Front",
  7641. image: {
  7642. source: "./media/characters/rivet/front.svg",
  7643. extra: 1716 / 1658,
  7644. bottom: 0.03
  7645. }
  7646. },
  7647. foot: {
  7648. height: math.unit(0.551, "feet"),
  7649. name: "Rivet's Foot",
  7650. image: {
  7651. source: "./media/characters/rivet/foot.svg"
  7652. },
  7653. rename: true
  7654. }
  7655. },
  7656. [
  7657. {
  7658. name: "Micro",
  7659. height: math.unit(1.5, "inches"),
  7660. },
  7661. {
  7662. name: "Normal",
  7663. height: math.unit(2 + 7 / 12, "feet"),
  7664. default: true
  7665. },
  7666. {
  7667. name: "Macro",
  7668. height: math.unit(85, "feet")
  7669. },
  7670. {
  7671. name: "Megamacro",
  7672. height: math.unit(2.2, "km")
  7673. }
  7674. ]
  7675. ))
  7676. characterMakers.push(() => makeCharacter(
  7677. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7678. {
  7679. front: {
  7680. height: math.unit(5 + 9 / 12, "feet"),
  7681. weight: math.unit(150, "lbs"),
  7682. name: "Front",
  7683. image: {
  7684. source: "./media/characters/coffee/front.svg",
  7685. extra: 3666 / 3032,
  7686. bottom: 0.04
  7687. }
  7688. },
  7689. foot: {
  7690. height: math.unit(1.29, "feet"),
  7691. name: "Foot",
  7692. image: {
  7693. source: "./media/characters/coffee/foot.svg"
  7694. }
  7695. },
  7696. },
  7697. [
  7698. {
  7699. name: "Micro",
  7700. height: math.unit(2, "inches"),
  7701. },
  7702. {
  7703. name: "Normal",
  7704. height: math.unit(5 + 9 / 12, "feet"),
  7705. default: true
  7706. },
  7707. {
  7708. name: "Macro",
  7709. height: math.unit(800, "feet")
  7710. },
  7711. {
  7712. name: "Megamacro",
  7713. height: math.unit(25, "miles")
  7714. }
  7715. ]
  7716. ))
  7717. characterMakers.push(() => makeCharacter(
  7718. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7719. {
  7720. front: {
  7721. height: math.unit(6, "feet"),
  7722. weight: math.unit(200, "lbs"),
  7723. name: "Front",
  7724. image: {
  7725. source: "./media/characters/chari-gal/front.svg",
  7726. extra: 1568 / 1385,
  7727. bottom: 0.047
  7728. }
  7729. },
  7730. gigantamax: {
  7731. height: math.unit(6 * 16, "feet"),
  7732. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7733. name: "Gigantamax",
  7734. image: {
  7735. source: "./media/characters/chari-gal/gigantamax.svg",
  7736. extra: 1124 / 888,
  7737. bottom: 0.03
  7738. }
  7739. },
  7740. },
  7741. [
  7742. {
  7743. name: "Normal",
  7744. height: math.unit(5 + 7 / 12, "feet")
  7745. },
  7746. {
  7747. name: "Macro",
  7748. height: math.unit(200, "feet"),
  7749. default: true
  7750. }
  7751. ]
  7752. ))
  7753. characterMakers.push(() => makeCharacter(
  7754. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7755. {
  7756. front: {
  7757. height: math.unit(6, "feet"),
  7758. weight: math.unit(150, "lbs"),
  7759. name: "Front",
  7760. image: {
  7761. source: "./media/characters/nova/front.svg",
  7762. extra: 5000 / 4722,
  7763. bottom: 0.02
  7764. }
  7765. }
  7766. },
  7767. [
  7768. {
  7769. name: "Micro-",
  7770. height: math.unit(0.8, "inches")
  7771. },
  7772. {
  7773. name: "Micro",
  7774. height: math.unit(2, "inches"),
  7775. default: true
  7776. },
  7777. ]
  7778. ))
  7779. characterMakers.push(() => makeCharacter(
  7780. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7781. {
  7782. front: {
  7783. height: math.unit(3 + 1 / 12, "feet"),
  7784. weight: math.unit(21.7, "lbs"),
  7785. name: "Front",
  7786. image: {
  7787. source: "./media/characters/argent/front.svg",
  7788. extra: 1471 / 1331,
  7789. bottom: 100.8 / 1575.5
  7790. }
  7791. }
  7792. },
  7793. [
  7794. {
  7795. name: "Micro",
  7796. height: math.unit(2, "inches")
  7797. },
  7798. {
  7799. name: "Normal",
  7800. height: math.unit(3 + 1 / 12, "feet"),
  7801. default: true
  7802. },
  7803. {
  7804. name: "Macro",
  7805. height: math.unit(120, "feet")
  7806. },
  7807. ]
  7808. ))
  7809. characterMakers.push(() => makeCharacter(
  7810. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7811. {
  7812. lamp: {
  7813. height: math.unit(7 * 1559 / 989, "feet"),
  7814. name: "Magic Lamp",
  7815. image: {
  7816. source: "./media/characters/mira-al-cul/lamp.svg",
  7817. extra: 1617 / 1559
  7818. }
  7819. },
  7820. front: {
  7821. height: math.unit(7, "feet"),
  7822. name: "Front",
  7823. image: {
  7824. source: "./media/characters/mira-al-cul/front.svg",
  7825. extra: 1044 / 990
  7826. }
  7827. },
  7828. },
  7829. [
  7830. {
  7831. name: "Heavily Restricted",
  7832. height: math.unit(7 * 1559 / 989, "feet")
  7833. },
  7834. {
  7835. name: "Freshly Freed",
  7836. height: math.unit(50 * 1559 / 989, "feet")
  7837. },
  7838. {
  7839. name: "World Encompassing",
  7840. height: math.unit(10000 * 1559 / 989, "miles")
  7841. },
  7842. {
  7843. name: "Galactic",
  7844. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7845. },
  7846. {
  7847. name: "Palmed Universe",
  7848. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7849. default: true
  7850. },
  7851. {
  7852. name: "Multiversal Matriarch",
  7853. height: math.unit(8.87e10, "yottameters")
  7854. },
  7855. {
  7856. name: "Void Mother",
  7857. height: math.unit(3.14e110, "yottaparsecs")
  7858. },
  7859. {
  7860. name: "Toying with Transcendence",
  7861. height: math.unit(1e307, "meters")
  7862. },
  7863. ]
  7864. ))
  7865. characterMakers.push(() => makeCharacter(
  7866. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7867. {
  7868. front: {
  7869. height: math.unit(17 + 1 / 12, "feet"),
  7870. weight: math.unit(476.2 * 5, "lbs"),
  7871. name: "Front",
  7872. image: {
  7873. source: "./media/characters/kuro-shi-uchū/front.svg",
  7874. extra: 2329 / 1835,
  7875. bottom: 0.02
  7876. }
  7877. },
  7878. },
  7879. [
  7880. {
  7881. name: "Micro",
  7882. height: math.unit(2, "inches")
  7883. },
  7884. {
  7885. name: "Normal",
  7886. height: math.unit(12, "meters")
  7887. },
  7888. {
  7889. name: "Planetary",
  7890. height: math.unit(0.00929, "AU"),
  7891. default: true
  7892. },
  7893. {
  7894. name: "Universal",
  7895. height: math.unit(20, "gigaparsecs")
  7896. },
  7897. ]
  7898. ))
  7899. characterMakers.push(() => makeCharacter(
  7900. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7901. {
  7902. front: {
  7903. height: math.unit(5 + 2 / 12, "feet"),
  7904. weight: math.unit(120, "lbs"),
  7905. name: "Front",
  7906. image: {
  7907. source: "./media/characters/katherine/front.svg",
  7908. extra: 2075 / 1969
  7909. }
  7910. },
  7911. dress: {
  7912. height: math.unit(5 + 2 / 12, "feet"),
  7913. weight: math.unit(120, "lbs"),
  7914. name: "Dress",
  7915. image: {
  7916. source: "./media/characters/katherine/dress.svg",
  7917. extra: 2258 / 2064
  7918. }
  7919. },
  7920. },
  7921. [
  7922. {
  7923. name: "Micro",
  7924. height: math.unit(1, "inches"),
  7925. default: true
  7926. },
  7927. {
  7928. name: "Normal",
  7929. height: math.unit(5 + 2 / 12, "feet")
  7930. },
  7931. {
  7932. name: "Macro",
  7933. height: math.unit(100, "meters")
  7934. },
  7935. {
  7936. name: "Megamacro",
  7937. height: math.unit(80, "miles")
  7938. },
  7939. ]
  7940. ))
  7941. characterMakers.push(() => makeCharacter(
  7942. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7943. {
  7944. front: {
  7945. height: math.unit(7 + 8 / 12, "feet"),
  7946. weight: math.unit(250, "lbs"),
  7947. name: "Front",
  7948. image: {
  7949. source: "./media/characters/yevis/front.svg",
  7950. extra: 1938 / 1755
  7951. }
  7952. }
  7953. },
  7954. [
  7955. {
  7956. name: "Mortal",
  7957. height: math.unit(7 + 8 / 12, "feet")
  7958. },
  7959. {
  7960. name: "Battle",
  7961. height: math.unit(25 + 11 / 12, "feet")
  7962. },
  7963. {
  7964. name: "Wrath",
  7965. height: math.unit(1654 + 11 / 12, "feet")
  7966. },
  7967. {
  7968. name: "Planet Destroyer",
  7969. height: math.unit(12000, "miles")
  7970. },
  7971. {
  7972. name: "Galaxy Conqueror",
  7973. height: math.unit(1.45, "zettameters"),
  7974. default: true
  7975. },
  7976. {
  7977. name: "Universal War",
  7978. height: math.unit(184, "gigaparsecs")
  7979. },
  7980. {
  7981. name: "Eternity War",
  7982. height: math.unit(1.98e55, "yottaparsecs")
  7983. },
  7984. ]
  7985. ))
  7986. characterMakers.push(() => makeCharacter(
  7987. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7988. {
  7989. front: {
  7990. height: math.unit(5 + 8 / 12, "feet"),
  7991. weight: math.unit(63, "kg"),
  7992. name: "Front",
  7993. image: {
  7994. source: "./media/characters/xavier/front.svg",
  7995. extra: 944 / 883
  7996. }
  7997. },
  7998. frontStretch: {
  7999. height: math.unit(5 + 8 / 12, "feet"),
  8000. weight: math.unit(63, "kg"),
  8001. name: "Stretching",
  8002. image: {
  8003. source: "./media/characters/xavier/front-stretch.svg",
  8004. extra: 962 / 820
  8005. }
  8006. },
  8007. },
  8008. [
  8009. {
  8010. name: "Normal",
  8011. height: math.unit(5 + 8 / 12, "feet")
  8012. },
  8013. {
  8014. name: "Macro",
  8015. height: math.unit(100, "meters"),
  8016. default: true
  8017. },
  8018. {
  8019. name: "McLargeHuge",
  8020. height: math.unit(10, "miles")
  8021. },
  8022. ]
  8023. ))
  8024. characterMakers.push(() => makeCharacter(
  8025. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8026. {
  8027. front: {
  8028. height: math.unit(5 + 5 / 12, "feet"),
  8029. weight: math.unit(150, "lb"),
  8030. name: "Front",
  8031. image: {
  8032. source: "./media/characters/joshii/front.svg",
  8033. extra: 765 / 653,
  8034. bottom: 51 / 816
  8035. }
  8036. },
  8037. foot: {
  8038. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8039. name: "Foot",
  8040. image: {
  8041. source: "./media/characters/joshii/foot.svg"
  8042. }
  8043. },
  8044. },
  8045. [
  8046. {
  8047. name: "Micro",
  8048. height: math.unit(2, "inches"),
  8049. default: true
  8050. },
  8051. {
  8052. name: "Normal",
  8053. height: math.unit(5 + 5 / 12, "feet")
  8054. },
  8055. {
  8056. name: "Macro",
  8057. height: math.unit(785, "feet")
  8058. },
  8059. {
  8060. name: "Megamacro",
  8061. height: math.unit(24.5, "miles")
  8062. },
  8063. ]
  8064. ))
  8065. characterMakers.push(() => makeCharacter(
  8066. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8067. {
  8068. front: {
  8069. height: math.unit(6, "feet"),
  8070. weight: math.unit(150, "lb"),
  8071. name: "Front",
  8072. image: {
  8073. source: "./media/characters/goddess-elizabeth/front.svg",
  8074. extra: 1800 / 1525,
  8075. bottom: 0.005
  8076. }
  8077. },
  8078. foot: {
  8079. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8080. name: "Foot",
  8081. image: {
  8082. source: "./media/characters/goddess-elizabeth/foot.svg"
  8083. }
  8084. },
  8085. mouth: {
  8086. height: math.unit(6, "feet"),
  8087. name: "Mouth",
  8088. image: {
  8089. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8090. }
  8091. },
  8092. },
  8093. [
  8094. {
  8095. name: "Micro",
  8096. height: math.unit(12, "feet")
  8097. },
  8098. {
  8099. name: "Normal",
  8100. height: math.unit(80, "miles"),
  8101. default: true
  8102. },
  8103. {
  8104. name: "Macro",
  8105. height: math.unit(15000, "parsecs")
  8106. },
  8107. ]
  8108. ))
  8109. characterMakers.push(() => makeCharacter(
  8110. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8111. {
  8112. front: {
  8113. height: math.unit(5 + 9 / 12, "feet"),
  8114. weight: math.unit(144, "lb"),
  8115. name: "Front",
  8116. image: {
  8117. source: "./media/characters/kara/front.svg"
  8118. }
  8119. },
  8120. feet: {
  8121. height: math.unit(6 / 6.765, "feet"),
  8122. name: "Kara's Feet",
  8123. rename: true,
  8124. image: {
  8125. source: "./media/characters/kara/feet.svg"
  8126. }
  8127. },
  8128. },
  8129. [
  8130. {
  8131. name: "Normal",
  8132. height: math.unit(5 + 9 / 12, "feet")
  8133. },
  8134. {
  8135. name: "Macro",
  8136. height: math.unit(174, "feet"),
  8137. default: true
  8138. },
  8139. ]
  8140. ))
  8141. characterMakers.push(() => makeCharacter(
  8142. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8143. {
  8144. front: {
  8145. height: math.unit(18, "feet"),
  8146. weight: math.unit(4050, "lb"),
  8147. name: "Front",
  8148. image: {
  8149. source: "./media/characters/tyrone/front.svg",
  8150. extra: 2405 / 2270,
  8151. bottom: 182 / 2587
  8152. }
  8153. },
  8154. },
  8155. [
  8156. {
  8157. name: "Normal",
  8158. height: math.unit(18, "feet"),
  8159. default: true
  8160. },
  8161. {
  8162. name: "Macro",
  8163. height: math.unit(300, "feet")
  8164. },
  8165. {
  8166. name: "Megamacro",
  8167. height: math.unit(15, "km")
  8168. },
  8169. {
  8170. name: "Gigamacro",
  8171. height: math.unit(500, "km")
  8172. },
  8173. {
  8174. name: "Teramacro",
  8175. height: math.unit(0.5, "gigameters")
  8176. },
  8177. {
  8178. name: "Omnimacro",
  8179. height: math.unit(1e252, "yottauniverse")
  8180. },
  8181. ]
  8182. ))
  8183. characterMakers.push(() => makeCharacter(
  8184. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8185. {
  8186. front: {
  8187. height: math.unit(7 + 8 / 12, "feet"),
  8188. weight: math.unit(120, "lb"),
  8189. name: "Front",
  8190. image: {
  8191. source: "./media/characters/danny/front.svg",
  8192. extra: 1490 / 1350
  8193. }
  8194. },
  8195. back: {
  8196. height: math.unit(7 + 8 / 12, "feet"),
  8197. weight: math.unit(120, "lb"),
  8198. name: "Back",
  8199. image: {
  8200. source: "./media/characters/danny/back.svg",
  8201. extra: 1490 / 1350
  8202. }
  8203. },
  8204. },
  8205. [
  8206. {
  8207. name: "Normal",
  8208. height: math.unit(7 + 8 / 12, "feet"),
  8209. default: true
  8210. },
  8211. ]
  8212. ))
  8213. characterMakers.push(() => makeCharacter(
  8214. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8215. {
  8216. front: {
  8217. height: math.unit(3.5, "inches"),
  8218. weight: math.unit(19, "grams"),
  8219. name: "Front",
  8220. image: {
  8221. source: "./media/characters/mallow/front.svg",
  8222. extra: 471 / 431
  8223. }
  8224. },
  8225. back: {
  8226. height: math.unit(3.5, "inches"),
  8227. weight: math.unit(19, "grams"),
  8228. name: "Back",
  8229. image: {
  8230. source: "./media/characters/mallow/back.svg",
  8231. extra: 471 / 431
  8232. }
  8233. },
  8234. },
  8235. [
  8236. {
  8237. name: "Normal",
  8238. height: math.unit(3.5, "inches"),
  8239. default: true
  8240. },
  8241. ]
  8242. ))
  8243. characterMakers.push(() => makeCharacter(
  8244. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8245. {
  8246. front: {
  8247. height: math.unit(9, "feet"),
  8248. weight: math.unit(230, "kg"),
  8249. name: "Front",
  8250. image: {
  8251. source: "./media/characters/starry-aqua/front.svg"
  8252. }
  8253. },
  8254. back: {
  8255. height: math.unit(9, "feet"),
  8256. weight: math.unit(230, "kg"),
  8257. name: "Back",
  8258. image: {
  8259. source: "./media/characters/starry-aqua/back.svg"
  8260. }
  8261. },
  8262. hand: {
  8263. height: math.unit(9 * 0.1168, "feet"),
  8264. name: "Hand",
  8265. image: {
  8266. source: "./media/characters/starry-aqua/hand.svg"
  8267. }
  8268. },
  8269. foot: {
  8270. height: math.unit(9 * 0.18, "feet"),
  8271. name: "Foot",
  8272. image: {
  8273. source: "./media/characters/starry-aqua/foot.svg"
  8274. }
  8275. }
  8276. },
  8277. [
  8278. {
  8279. name: "Micro",
  8280. height: math.unit(3, "inches")
  8281. },
  8282. {
  8283. name: "Normal",
  8284. height: math.unit(9, "feet")
  8285. },
  8286. {
  8287. name: "Macro",
  8288. height: math.unit(300, "feet"),
  8289. default: true
  8290. },
  8291. {
  8292. name: "Megamacro",
  8293. height: math.unit(3200, "feet")
  8294. }
  8295. ]
  8296. ))
  8297. characterMakers.push(() => makeCharacter(
  8298. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8299. {
  8300. front: {
  8301. height: math.unit(6, "feet"),
  8302. weight: math.unit(230, "lb"),
  8303. name: "Front",
  8304. image: {
  8305. source: "./media/characters/luka/front.svg",
  8306. extra: 1,
  8307. bottom: 0.025
  8308. }
  8309. },
  8310. },
  8311. [
  8312. {
  8313. name: "Normal",
  8314. height: math.unit(12 + 8 / 12, "feet"),
  8315. default: true
  8316. },
  8317. {
  8318. name: "Minimacro",
  8319. height: math.unit(20, "feet")
  8320. },
  8321. {
  8322. name: "Macro",
  8323. height: math.unit(250, "feet")
  8324. },
  8325. {
  8326. name: "Megamacro",
  8327. height: math.unit(5, "miles")
  8328. },
  8329. {
  8330. name: "Gigamacro",
  8331. height: math.unit(8000, "miles")
  8332. },
  8333. ]
  8334. ))
  8335. characterMakers.push(() => makeCharacter(
  8336. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8337. {
  8338. front: {
  8339. height: math.unit(6, "feet"),
  8340. weight: math.unit(150, "lb"),
  8341. name: "Front",
  8342. image: {
  8343. source: "./media/characters/natalie-nightring/front.svg",
  8344. extra: 1,
  8345. bottom: 0.06
  8346. }
  8347. },
  8348. },
  8349. [
  8350. {
  8351. name: "Uh Oh",
  8352. height: math.unit(0.1, "mm")
  8353. },
  8354. {
  8355. name: "Small",
  8356. height: math.unit(3, "inches")
  8357. },
  8358. {
  8359. name: "Human Scale",
  8360. height: math.unit(6, "feet")
  8361. },
  8362. {
  8363. name: "Librarian",
  8364. height: math.unit(50, "feet"),
  8365. default: true
  8366. },
  8367. {
  8368. name: "Immense",
  8369. height: math.unit(200, "miles")
  8370. },
  8371. ]
  8372. ))
  8373. characterMakers.push(() => makeCharacter(
  8374. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8375. {
  8376. front: {
  8377. height: math.unit(6, "feet"),
  8378. weight: math.unit(180, "lbs"),
  8379. name: "Front",
  8380. image: {
  8381. source: "./media/characters/danni-rosie/front.svg",
  8382. extra: 1260 / 1128,
  8383. bottom: 0.022
  8384. }
  8385. },
  8386. },
  8387. [
  8388. {
  8389. name: "Micro",
  8390. height: math.unit(2, "inches"),
  8391. default: true
  8392. },
  8393. ]
  8394. ))
  8395. characterMakers.push(() => makeCharacter(
  8396. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8397. {
  8398. front: {
  8399. height: math.unit(5 + 9 / 12, "feet"),
  8400. weight: math.unit(220, "lb"),
  8401. name: "Front",
  8402. image: {
  8403. source: "./media/characters/samantha-kruse/front.svg",
  8404. extra: (985 / 935),
  8405. bottom: 0.03
  8406. }
  8407. },
  8408. frontUndressed: {
  8409. height: math.unit(5 + 9 / 12, "feet"),
  8410. weight: math.unit(220, "lb"),
  8411. name: "Front (Undressed)",
  8412. image: {
  8413. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8414. extra: (973 / 923),
  8415. bottom: 0.025
  8416. }
  8417. },
  8418. fat: {
  8419. height: math.unit(5 + 9 / 12, "feet"),
  8420. weight: math.unit(900, "lb"),
  8421. name: "Front (Fat)",
  8422. image: {
  8423. source: "./media/characters/samantha-kruse/fat.svg",
  8424. extra: 2688 / 2561
  8425. }
  8426. },
  8427. },
  8428. [
  8429. {
  8430. name: "Normal",
  8431. height: math.unit(5 + 9 / 12, "feet"),
  8432. default: true
  8433. }
  8434. ]
  8435. ))
  8436. characterMakers.push(() => makeCharacter(
  8437. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8438. {
  8439. back: {
  8440. height: math.unit(5 + 4 / 12, "feet"),
  8441. weight: math.unit(4963, "lb"),
  8442. name: "Back",
  8443. image: {
  8444. source: "./media/characters/amelia-rosie/back.svg",
  8445. extra: 1113 / 963,
  8446. bottom: 0.01
  8447. }
  8448. },
  8449. },
  8450. [
  8451. {
  8452. name: "Level 0",
  8453. height: math.unit(5 + 4 / 12, "feet")
  8454. },
  8455. {
  8456. name: "Level 1",
  8457. height: math.unit(164597, "feet"),
  8458. default: true
  8459. },
  8460. {
  8461. name: "Level 2",
  8462. height: math.unit(956243, "miles")
  8463. },
  8464. {
  8465. name: "Level 3",
  8466. height: math.unit(29421709423, "miles")
  8467. },
  8468. {
  8469. name: "Level 4",
  8470. height: math.unit(154, "lightyears")
  8471. },
  8472. {
  8473. name: "Level 5",
  8474. height: math.unit(4738272, "lightyears")
  8475. },
  8476. {
  8477. name: "Level 6",
  8478. height: math.unit(145787152896, "lightyears")
  8479. },
  8480. ]
  8481. ))
  8482. characterMakers.push(() => makeCharacter(
  8483. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8484. {
  8485. front: {
  8486. height: math.unit(5 + 11 / 12, "feet"),
  8487. weight: math.unit(65, "kg"),
  8488. name: "Front",
  8489. image: {
  8490. source: "./media/characters/rook-kitara/front.svg",
  8491. extra: 1347 / 1274,
  8492. bottom: 0.005
  8493. }
  8494. },
  8495. },
  8496. [
  8497. {
  8498. name: "Totally Unfair",
  8499. height: math.unit(1.8, "mm")
  8500. },
  8501. {
  8502. name: "Lap Rookie",
  8503. height: math.unit(1.4, "feet")
  8504. },
  8505. {
  8506. name: "Normal",
  8507. height: math.unit(5 + 11 / 12, "feet"),
  8508. default: true
  8509. },
  8510. {
  8511. name: "How Did This Happen",
  8512. height: math.unit(80, "miles")
  8513. }
  8514. ]
  8515. ))
  8516. characterMakers.push(() => makeCharacter(
  8517. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8518. {
  8519. front: {
  8520. height: math.unit(7, "feet"),
  8521. weight: math.unit(300, "lb"),
  8522. name: "Front",
  8523. image: {
  8524. source: "./media/characters/pisces/front.svg",
  8525. extra: 2255 / 2115,
  8526. bottom: 0.03
  8527. }
  8528. },
  8529. back: {
  8530. height: math.unit(7, "feet"),
  8531. weight: math.unit(300, "lb"),
  8532. name: "Back",
  8533. image: {
  8534. source: "./media/characters/pisces/back.svg",
  8535. extra: 2146 / 2055,
  8536. bottom: 0.04
  8537. }
  8538. },
  8539. },
  8540. [
  8541. {
  8542. name: "Normal",
  8543. height: math.unit(7, "feet"),
  8544. default: true
  8545. },
  8546. {
  8547. name: "Swimming Pool",
  8548. height: math.unit(12.2, "meters")
  8549. },
  8550. {
  8551. name: "Olympic Swimming Pool",
  8552. height: math.unit(56.3, "meters")
  8553. },
  8554. {
  8555. name: "Lake Superior",
  8556. height: math.unit(93900, "meters")
  8557. },
  8558. {
  8559. name: "Mediterranean Sea",
  8560. height: math.unit(644457, "meters")
  8561. },
  8562. {
  8563. name: "World's Oceans",
  8564. height: math.unit(4567491, "meters")
  8565. },
  8566. ]
  8567. ))
  8568. characterMakers.push(() => makeCharacter(
  8569. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8570. {
  8571. front: {
  8572. height: math.unit(2.3, "meters"),
  8573. weight: math.unit(120, "kg"),
  8574. name: "Front",
  8575. image: {
  8576. source: "./media/characters/zelas/front.svg"
  8577. }
  8578. },
  8579. side: {
  8580. height: math.unit(2.3, "meters"),
  8581. weight: math.unit(120, "kg"),
  8582. name: "Side",
  8583. image: {
  8584. source: "./media/characters/zelas/side.svg"
  8585. }
  8586. },
  8587. back: {
  8588. height: math.unit(2.3, "meters"),
  8589. weight: math.unit(120, "kg"),
  8590. name: "Back",
  8591. image: {
  8592. source: "./media/characters/zelas/back.svg"
  8593. }
  8594. },
  8595. foot: {
  8596. height: math.unit(1.116, "feet"),
  8597. name: "Foot",
  8598. image: {
  8599. source: "./media/characters/zelas/foot.svg"
  8600. }
  8601. },
  8602. },
  8603. [
  8604. {
  8605. name: "Normal",
  8606. height: math.unit(2.3, "meters")
  8607. },
  8608. {
  8609. name: "Macro",
  8610. height: math.unit(30, "meters"),
  8611. default: true
  8612. },
  8613. ]
  8614. ))
  8615. characterMakers.push(() => makeCharacter(
  8616. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8617. {
  8618. front: {
  8619. height: math.unit(1, "inch"),
  8620. weight: math.unit(0.21, "grams"),
  8621. name: "Front",
  8622. image: {
  8623. source: "./media/characters/talbot/front.svg",
  8624. extra: 594 / 544
  8625. }
  8626. },
  8627. },
  8628. [
  8629. {
  8630. name: "Micro",
  8631. height: math.unit(1, "inch"),
  8632. default: true
  8633. },
  8634. ]
  8635. ))
  8636. characterMakers.push(() => makeCharacter(
  8637. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8638. {
  8639. front: {
  8640. height: math.unit(3 + 3 / 12, "feet"),
  8641. weight: math.unit(51.8, "lb"),
  8642. name: "Front",
  8643. image: {
  8644. source: "./media/characters/fliss/front.svg",
  8645. extra: 840 / 640
  8646. }
  8647. },
  8648. },
  8649. [
  8650. {
  8651. name: "Teeny Tiny",
  8652. height: math.unit(1, "mm")
  8653. },
  8654. {
  8655. name: "Small",
  8656. height: math.unit(1, "inch"),
  8657. default: true
  8658. },
  8659. {
  8660. name: "Standard Sylveon",
  8661. height: math.unit(3 + 3 / 12, "feet")
  8662. },
  8663. {
  8664. name: "Large Nuisance",
  8665. height: math.unit(33, "feet")
  8666. },
  8667. {
  8668. name: "City Filler",
  8669. height: math.unit(3000, "feet")
  8670. },
  8671. {
  8672. name: "New Horizon",
  8673. height: math.unit(6000, "miles")
  8674. },
  8675. ]
  8676. ))
  8677. characterMakers.push(() => makeCharacter(
  8678. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8679. {
  8680. front: {
  8681. height: math.unit(5, "cm"),
  8682. weight: math.unit(1.94, "g"),
  8683. name: "Front",
  8684. image: {
  8685. source: "./media/characters/fleta/front.svg",
  8686. extra: 835 / 803
  8687. }
  8688. },
  8689. back: {
  8690. height: math.unit(5, "cm"),
  8691. weight: math.unit(1.94, "g"),
  8692. name: "Back",
  8693. image: {
  8694. source: "./media/characters/fleta/back.svg",
  8695. extra: 835 / 803
  8696. }
  8697. },
  8698. },
  8699. [
  8700. {
  8701. name: "Micro",
  8702. height: math.unit(5, "cm"),
  8703. default: true
  8704. },
  8705. ]
  8706. ))
  8707. characterMakers.push(() => makeCharacter(
  8708. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8709. {
  8710. front: {
  8711. height: math.unit(6, "feet"),
  8712. weight: math.unit(225, "lb"),
  8713. name: "Front",
  8714. image: {
  8715. source: "./media/characters/dominic/front.svg",
  8716. extra: 1770 / 1620,
  8717. bottom: 0.025
  8718. }
  8719. },
  8720. back: {
  8721. height: math.unit(6, "feet"),
  8722. weight: math.unit(225, "lb"),
  8723. name: "Back",
  8724. image: {
  8725. source: "./media/characters/dominic/back.svg",
  8726. extra: 1745 / 1620,
  8727. bottom: 0.065
  8728. }
  8729. },
  8730. },
  8731. [
  8732. {
  8733. name: "Nano",
  8734. height: math.unit(0.1, "mm")
  8735. },
  8736. {
  8737. name: "Micro-",
  8738. height: math.unit(1, "mm")
  8739. },
  8740. {
  8741. name: "Micro",
  8742. height: math.unit(4, "inches")
  8743. },
  8744. {
  8745. name: "Normal",
  8746. height: math.unit(6 + 4 / 12, "feet"),
  8747. default: true
  8748. },
  8749. {
  8750. name: "Macro",
  8751. height: math.unit(115, "feet")
  8752. },
  8753. {
  8754. name: "Macro+",
  8755. height: math.unit(955, "feet")
  8756. },
  8757. {
  8758. name: "Megamacro",
  8759. height: math.unit(8990, "feet")
  8760. },
  8761. {
  8762. name: "Gigmacro",
  8763. height: math.unit(9310, "miles")
  8764. },
  8765. {
  8766. name: "Teramacro",
  8767. height: math.unit(1567005010, "miles")
  8768. },
  8769. {
  8770. name: "Examacro",
  8771. height: math.unit(1425, "parsecs")
  8772. },
  8773. ]
  8774. ))
  8775. characterMakers.push(() => makeCharacter(
  8776. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8777. {
  8778. front: {
  8779. height: math.unit(400, "feet"),
  8780. weight: math.unit(44444444, "lb"),
  8781. name: "Front",
  8782. image: {
  8783. source: "./media/characters/major-colonel/front.svg"
  8784. }
  8785. },
  8786. back: {
  8787. height: math.unit(400, "feet"),
  8788. weight: math.unit(44444444, "lb"),
  8789. name: "Back",
  8790. image: {
  8791. source: "./media/characters/major-colonel/back.svg"
  8792. }
  8793. },
  8794. },
  8795. [
  8796. {
  8797. name: "Macro",
  8798. height: math.unit(400, "feet"),
  8799. default: true
  8800. },
  8801. ]
  8802. ))
  8803. characterMakers.push(() => makeCharacter(
  8804. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8805. {
  8806. catFront: {
  8807. height: math.unit(6, "feet"),
  8808. weight: math.unit(120, "lb"),
  8809. name: "Front (Cat Side)",
  8810. image: {
  8811. source: "./media/characters/axel-lycan/cat-front.svg",
  8812. extra: 430 / 402,
  8813. bottom: 43 / 472.35
  8814. }
  8815. },
  8816. catBack: {
  8817. height: math.unit(6, "feet"),
  8818. weight: math.unit(120, "lb"),
  8819. name: "Back (Cat Side)",
  8820. image: {
  8821. source: "./media/characters/axel-lycan/cat-back.svg",
  8822. extra: 447 / 419,
  8823. bottom: 23.3 / 469
  8824. }
  8825. },
  8826. wolfFront: {
  8827. height: math.unit(6, "feet"),
  8828. weight: math.unit(120, "lb"),
  8829. name: "Front (Wolf Side)",
  8830. image: {
  8831. source: "./media/characters/axel-lycan/wolf-front.svg",
  8832. extra: 485 / 456,
  8833. bottom: 19 / 504
  8834. }
  8835. },
  8836. wolfBack: {
  8837. height: math.unit(6, "feet"),
  8838. weight: math.unit(120, "lb"),
  8839. name: "Back (Wolf Side)",
  8840. image: {
  8841. source: "./media/characters/axel-lycan/wolf-back.svg",
  8842. extra: 475 / 438,
  8843. bottom: 39.2 / 514
  8844. }
  8845. },
  8846. },
  8847. [
  8848. {
  8849. name: "Macro",
  8850. height: math.unit(1, "km"),
  8851. default: true
  8852. },
  8853. ]
  8854. ))
  8855. characterMakers.push(() => makeCharacter(
  8856. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8857. {
  8858. front: {
  8859. height: math.unit(5 + 9 / 12, "feet"),
  8860. weight: math.unit(175, "lb"),
  8861. name: "Front",
  8862. image: {
  8863. source: "./media/characters/vanrel-hyena/front.svg",
  8864. extra: 1086 / 1010,
  8865. bottom: 0.04
  8866. }
  8867. },
  8868. },
  8869. [
  8870. {
  8871. name: "Normal",
  8872. height: math.unit(5 + 9 / 12, "feet"),
  8873. default: true
  8874. },
  8875. ]
  8876. ))
  8877. characterMakers.push(() => makeCharacter(
  8878. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8879. {
  8880. front: {
  8881. height: math.unit(6, "feet"),
  8882. weight: math.unit(103, "lb"),
  8883. name: "Front",
  8884. image: {
  8885. source: "./media/characters/abbott-absol/front.svg",
  8886. extra: 2010 / 1842
  8887. }
  8888. },
  8889. },
  8890. [
  8891. {
  8892. name: "Megamicro",
  8893. height: math.unit(0.1, "mm")
  8894. },
  8895. {
  8896. name: "Micro",
  8897. height: math.unit(1, "inch")
  8898. },
  8899. {
  8900. name: "Normal",
  8901. height: math.unit(6, "feet"),
  8902. default: true
  8903. },
  8904. ]
  8905. ))
  8906. characterMakers.push(() => makeCharacter(
  8907. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8908. {
  8909. front: {
  8910. height: math.unit(6, "feet"),
  8911. weight: math.unit(264, "lb"),
  8912. name: "Front",
  8913. image: {
  8914. source: "./media/characters/hector/front.svg",
  8915. extra: 2280 / 2130,
  8916. bottom: 0.07
  8917. }
  8918. },
  8919. },
  8920. [
  8921. {
  8922. name: "Normal",
  8923. height: math.unit(12.25, "foot"),
  8924. default: true
  8925. },
  8926. {
  8927. name: "Macro",
  8928. height: math.unit(160, "feet")
  8929. },
  8930. ]
  8931. ))
  8932. characterMakers.push(() => makeCharacter(
  8933. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8934. {
  8935. front: {
  8936. height: math.unit(6, "feet"),
  8937. weight: math.unit(150, "lb"),
  8938. name: "Front",
  8939. image: {
  8940. source: "./media/characters/sal/front.svg",
  8941. extra: 1846 / 1699,
  8942. bottom: 0.04
  8943. }
  8944. },
  8945. },
  8946. [
  8947. {
  8948. name: "Megamacro",
  8949. height: math.unit(10, "miles"),
  8950. default: true
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8956. {
  8957. front: {
  8958. height: math.unit(3, "meters"),
  8959. weight: math.unit(450, "kg"),
  8960. name: "front",
  8961. image: {
  8962. source: "./media/characters/ranger/front.svg",
  8963. extra: 2401 / 2243,
  8964. bottom: 0.05
  8965. }
  8966. },
  8967. },
  8968. [
  8969. {
  8970. name: "Normal",
  8971. height: math.unit(3, "meters"),
  8972. default: true
  8973. },
  8974. ]
  8975. ))
  8976. characterMakers.push(() => makeCharacter(
  8977. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8978. {
  8979. front: {
  8980. height: math.unit(14, "feet"),
  8981. weight: math.unit(800, "kg"),
  8982. name: "Front",
  8983. image: {
  8984. source: "./media/characters/theresa/front.svg",
  8985. extra: 3575 / 3346,
  8986. bottom: 0.03
  8987. }
  8988. },
  8989. },
  8990. [
  8991. {
  8992. name: "Normal",
  8993. height: math.unit(14, "feet"),
  8994. default: true
  8995. },
  8996. ]
  8997. ))
  8998. characterMakers.push(() => makeCharacter(
  8999. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9000. {
  9001. front: {
  9002. height: math.unit(6, "feet"),
  9003. weight: math.unit(3, "kg"),
  9004. name: "Front",
  9005. image: {
  9006. source: "./media/characters/ine/front.svg",
  9007. extra: 678 / 539,
  9008. bottom: 0.023
  9009. }
  9010. },
  9011. },
  9012. [
  9013. {
  9014. name: "Normal",
  9015. height: math.unit(2.265, "feet"),
  9016. default: true
  9017. },
  9018. ]
  9019. ))
  9020. characterMakers.push(() => makeCharacter(
  9021. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9022. {
  9023. front: {
  9024. height: math.unit(5, "feet"),
  9025. weight: math.unit(30, "kg"),
  9026. name: "Front",
  9027. image: {
  9028. source: "./media/characters/vial/front.svg",
  9029. extra: 1365 / 1277,
  9030. bottom: 0.04
  9031. }
  9032. },
  9033. },
  9034. [
  9035. {
  9036. name: "Normal",
  9037. height: math.unit(5, "feet"),
  9038. default: true
  9039. },
  9040. ]
  9041. ))
  9042. characterMakers.push(() => makeCharacter(
  9043. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9044. {
  9045. side: {
  9046. height: math.unit(3.4, "meters"),
  9047. weight: math.unit(1000, "lb"),
  9048. name: "Side",
  9049. image: {
  9050. source: "./media/characters/rovoska/side.svg",
  9051. extra: 4403 / 1515
  9052. }
  9053. },
  9054. },
  9055. [
  9056. {
  9057. name: "Normal",
  9058. height: math.unit(3.4, "meters"),
  9059. default: true
  9060. },
  9061. ]
  9062. ))
  9063. characterMakers.push(() => makeCharacter(
  9064. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9065. {
  9066. front: {
  9067. height: math.unit(8, "feet"),
  9068. weight: math.unit(315, "lb"),
  9069. name: "Front",
  9070. image: {
  9071. source: "./media/characters/gunner-rotthbauer/front.svg"
  9072. }
  9073. },
  9074. back: {
  9075. height: math.unit(8, "feet"),
  9076. weight: math.unit(315, "lb"),
  9077. name: "Back",
  9078. image: {
  9079. source: "./media/characters/gunner-rotthbauer/back.svg"
  9080. }
  9081. },
  9082. },
  9083. [
  9084. {
  9085. name: "Micro",
  9086. height: math.unit(3.5, "inches")
  9087. },
  9088. {
  9089. name: "Normal",
  9090. height: math.unit(8, "feet"),
  9091. default: true
  9092. },
  9093. {
  9094. name: "Macro",
  9095. height: math.unit(250, "feet")
  9096. },
  9097. {
  9098. name: "Megamacro",
  9099. height: math.unit(1, "AU")
  9100. },
  9101. ]
  9102. ))
  9103. characterMakers.push(() => makeCharacter(
  9104. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9105. {
  9106. front: {
  9107. height: math.unit(5 + 5 / 12, "feet"),
  9108. weight: math.unit(140, "lb"),
  9109. name: "Front",
  9110. image: {
  9111. source: "./media/characters/allatia/front.svg",
  9112. extra: 1227 / 1180,
  9113. bottom: 0.027
  9114. }
  9115. },
  9116. },
  9117. [
  9118. {
  9119. name: "Normal",
  9120. height: math.unit(5 + 5 / 12, "feet")
  9121. },
  9122. {
  9123. name: "Macro",
  9124. height: math.unit(250, "feet"),
  9125. default: true
  9126. },
  9127. {
  9128. name: "Megamacro",
  9129. height: math.unit(8, "miles")
  9130. }
  9131. ]
  9132. ))
  9133. characterMakers.push(() => makeCharacter(
  9134. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9135. {
  9136. front: {
  9137. height: math.unit(6, "feet"),
  9138. weight: math.unit(120, "lb"),
  9139. name: "Front",
  9140. image: {
  9141. source: "./media/characters/tene/front.svg",
  9142. extra: 1728 / 1578,
  9143. bottom: 0.022
  9144. }
  9145. },
  9146. stomping: {
  9147. height: math.unit(2.025, "meters"),
  9148. weight: math.unit(120, "lb"),
  9149. name: "Stomping",
  9150. image: {
  9151. source: "./media/characters/tene/stomping.svg",
  9152. extra: 938 / 873,
  9153. bottom: 0.01
  9154. }
  9155. },
  9156. sitting: {
  9157. height: math.unit(1, "meter"),
  9158. weight: math.unit(120, "lb"),
  9159. name: "Sitting",
  9160. image: {
  9161. source: "./media/characters/tene/sitting.svg",
  9162. extra: 437 / 415,
  9163. bottom: 0.1
  9164. }
  9165. },
  9166. feral: {
  9167. height: math.unit(3.9, "feet"),
  9168. weight: math.unit(250, "lb"),
  9169. name: "Feral",
  9170. image: {
  9171. source: "./media/characters/tene/feral.svg",
  9172. extra: 717 / 458,
  9173. bottom: 0.179
  9174. }
  9175. },
  9176. },
  9177. [
  9178. {
  9179. name: "Normal",
  9180. height: math.unit(6, "feet")
  9181. },
  9182. {
  9183. name: "Macro",
  9184. height: math.unit(300, "feet"),
  9185. default: true
  9186. },
  9187. {
  9188. name: "Megamacro",
  9189. height: math.unit(5, "miles")
  9190. },
  9191. ]
  9192. ))
  9193. characterMakers.push(() => makeCharacter(
  9194. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9195. {
  9196. side: {
  9197. height: math.unit(6, "feet"),
  9198. name: "Side",
  9199. image: {
  9200. source: "./media/characters/evander/side.svg",
  9201. extra: 877 / 477
  9202. }
  9203. },
  9204. },
  9205. [
  9206. {
  9207. name: "Normal",
  9208. height: math.unit(0.83, "meters"),
  9209. default: true
  9210. },
  9211. ]
  9212. ))
  9213. characterMakers.push(() => makeCharacter(
  9214. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9215. {
  9216. front: {
  9217. height: math.unit(12, "feet"),
  9218. weight: math.unit(1000, "lb"),
  9219. name: "Front",
  9220. image: {
  9221. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9222. extra: 1762 / 1611
  9223. }
  9224. },
  9225. back: {
  9226. height: math.unit(12, "feet"),
  9227. weight: math.unit(1000, "lb"),
  9228. name: "Back",
  9229. image: {
  9230. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9231. extra: 1762 / 1611
  9232. }
  9233. },
  9234. },
  9235. [
  9236. {
  9237. name: "Normal",
  9238. height: math.unit(12, "feet"),
  9239. default: true
  9240. },
  9241. {
  9242. name: "Kaiju",
  9243. height: math.unit(150, "feet")
  9244. },
  9245. ]
  9246. ))
  9247. characterMakers.push(() => makeCharacter(
  9248. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9249. {
  9250. front: {
  9251. height: math.unit(6, "feet"),
  9252. weight: math.unit(150, "lb"),
  9253. name: "Front",
  9254. image: {
  9255. source: "./media/characters/zero-alurus/front.svg"
  9256. }
  9257. },
  9258. back: {
  9259. height: math.unit(6, "feet"),
  9260. weight: math.unit(150, "lb"),
  9261. name: "Back",
  9262. image: {
  9263. source: "./media/characters/zero-alurus/back.svg"
  9264. }
  9265. },
  9266. },
  9267. [
  9268. {
  9269. name: "Normal",
  9270. height: math.unit(5 + 10 / 12, "feet")
  9271. },
  9272. {
  9273. name: "Macro",
  9274. height: math.unit(60, "feet"),
  9275. default: true
  9276. },
  9277. {
  9278. name: "Macro+",
  9279. height: math.unit(450, "feet")
  9280. },
  9281. ]
  9282. ))
  9283. characterMakers.push(() => makeCharacter(
  9284. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9285. {
  9286. front: {
  9287. height: math.unit(6, "feet"),
  9288. weight: math.unit(200, "lb"),
  9289. name: "Front",
  9290. image: {
  9291. source: "./media/characters/mega-shi/front.svg",
  9292. extra: 1279 / 1250,
  9293. bottom: 0.02
  9294. }
  9295. },
  9296. back: {
  9297. height: math.unit(6, "feet"),
  9298. weight: math.unit(200, "lb"),
  9299. name: "Back",
  9300. image: {
  9301. source: "./media/characters/mega-shi/back.svg",
  9302. extra: 1279 / 1250,
  9303. bottom: 0.02
  9304. }
  9305. },
  9306. },
  9307. [
  9308. {
  9309. name: "Micro",
  9310. height: math.unit(16 + 6 / 12, "feet")
  9311. },
  9312. {
  9313. name: "Third Dimension",
  9314. height: math.unit(40, "meters")
  9315. },
  9316. {
  9317. name: "Normal",
  9318. height: math.unit(660, "feet"),
  9319. default: true
  9320. },
  9321. {
  9322. name: "Megamacro",
  9323. height: math.unit(10, "miles")
  9324. },
  9325. {
  9326. name: "Planetary Launch",
  9327. height: math.unit(500, "miles")
  9328. },
  9329. {
  9330. name: "Interstellar",
  9331. height: math.unit(1e9, "miles")
  9332. },
  9333. {
  9334. name: "Leaving the Universe",
  9335. height: math.unit(1, "gigaparsec")
  9336. },
  9337. {
  9338. name: "Travelling Universes",
  9339. height: math.unit(30e15, "parsecs")
  9340. },
  9341. ]
  9342. ))
  9343. characterMakers.push(() => makeCharacter(
  9344. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9345. {
  9346. front: {
  9347. height: math.unit(6, "feet"),
  9348. weight: math.unit(150, "lb"),
  9349. name: "Front",
  9350. image: {
  9351. source: "./media/characters/odyssey/front.svg",
  9352. extra: 1782 / 1582,
  9353. bottom: 0.01
  9354. }
  9355. },
  9356. side: {
  9357. height: math.unit(5.7, "feet"),
  9358. weight: math.unit(140, "lb"),
  9359. name: "Side",
  9360. image: {
  9361. source: "./media/characters/odyssey/side.svg",
  9362. extra: 6462 / 5700
  9363. }
  9364. },
  9365. },
  9366. [
  9367. {
  9368. name: "Normal",
  9369. height: math.unit(5 + 4 / 12, "feet")
  9370. },
  9371. {
  9372. name: "Macro",
  9373. height: math.unit(1, "km")
  9374. },
  9375. {
  9376. name: "Megamacro",
  9377. height: math.unit(3000, "km")
  9378. },
  9379. {
  9380. name: "Gigamacro",
  9381. height: math.unit(1, "AU"),
  9382. default: true
  9383. },
  9384. {
  9385. name: "Omniversal",
  9386. height: math.unit(100e14, "lightyears")
  9387. },
  9388. ]
  9389. ))
  9390. characterMakers.push(() => makeCharacter(
  9391. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9392. {
  9393. front: {
  9394. height: math.unit(6, "feet"),
  9395. weight: math.unit(300, "lb"),
  9396. name: "Front",
  9397. image: {
  9398. source: "./media/characters/mekuto/front.svg",
  9399. extra: 921 / 832,
  9400. bottom: 0.03
  9401. }
  9402. },
  9403. hand: {
  9404. height: math.unit(6 / 10.24, "feet"),
  9405. name: "Hand",
  9406. image: {
  9407. source: "./media/characters/mekuto/hand.svg"
  9408. }
  9409. },
  9410. foot: {
  9411. height: math.unit(6 / 5.05, "feet"),
  9412. name: "Foot",
  9413. image: {
  9414. source: "./media/characters/mekuto/foot.svg"
  9415. }
  9416. },
  9417. },
  9418. [
  9419. {
  9420. name: "Minimicro",
  9421. height: math.unit(0.2, "inches")
  9422. },
  9423. {
  9424. name: "Micro",
  9425. height: math.unit(1.5, "inches")
  9426. },
  9427. {
  9428. name: "Normal",
  9429. height: math.unit(5 + 11 / 12, "feet"),
  9430. default: true
  9431. },
  9432. {
  9433. name: "Minimacro",
  9434. height: math.unit(17 + 9 / 12, "feet")
  9435. },
  9436. {
  9437. name: "Macro",
  9438. height: math.unit(177.5, "feet")
  9439. },
  9440. {
  9441. name: "Megamacro",
  9442. height: math.unit(152, "miles")
  9443. },
  9444. ]
  9445. ))
  9446. characterMakers.push(() => makeCharacter(
  9447. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9448. {
  9449. front: {
  9450. height: math.unit(6.5, "inches"),
  9451. weight: math.unit(13, "oz"),
  9452. name: "Front",
  9453. image: {
  9454. source: "./media/characters/dafydd-tomos/front.svg",
  9455. extra: 2990 / 2603,
  9456. bottom: 0.03
  9457. }
  9458. },
  9459. },
  9460. [
  9461. {
  9462. name: "Micro",
  9463. height: math.unit(6.5, "inches"),
  9464. default: true
  9465. },
  9466. ]
  9467. ))
  9468. characterMakers.push(() => makeCharacter(
  9469. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9470. {
  9471. front: {
  9472. height: math.unit(6, "feet"),
  9473. weight: math.unit(150, "lb"),
  9474. name: "Front",
  9475. image: {
  9476. source: "./media/characters/splinter/front.svg",
  9477. extra: 2990 / 2882,
  9478. bottom: 0.04
  9479. }
  9480. },
  9481. back: {
  9482. height: math.unit(6, "feet"),
  9483. weight: math.unit(150, "lb"),
  9484. name: "Back",
  9485. image: {
  9486. source: "./media/characters/splinter/back.svg",
  9487. extra: 2990 / 2882,
  9488. bottom: 0.04
  9489. }
  9490. },
  9491. },
  9492. [
  9493. {
  9494. name: "Normal",
  9495. height: math.unit(6, "feet")
  9496. },
  9497. {
  9498. name: "Macro",
  9499. height: math.unit(230, "meters"),
  9500. default: true
  9501. },
  9502. ]
  9503. ))
  9504. characterMakers.push(() => makeCharacter(
  9505. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9506. {
  9507. front: {
  9508. height: math.unit(4 + 10 / 12, "feet"),
  9509. weight: math.unit(480, "lb"),
  9510. name: "Front",
  9511. image: {
  9512. source: "./media/characters/snow-gabumon/front.svg",
  9513. extra: 1140 / 963,
  9514. bottom: 0.058
  9515. }
  9516. },
  9517. back: {
  9518. height: math.unit(4 + 10 / 12, "feet"),
  9519. weight: math.unit(480, "lb"),
  9520. name: "Back",
  9521. image: {
  9522. source: "./media/characters/snow-gabumon/back.svg",
  9523. extra: 1115 / 962,
  9524. bottom: 0.041
  9525. }
  9526. },
  9527. frontUndresed: {
  9528. height: math.unit(4 + 10 / 12, "feet"),
  9529. weight: math.unit(480, "lb"),
  9530. name: "Front (Undressed)",
  9531. image: {
  9532. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9533. extra: 1061 / 960,
  9534. bottom: 0.045
  9535. }
  9536. },
  9537. },
  9538. [
  9539. {
  9540. name: "Micro",
  9541. height: math.unit(1, "inch")
  9542. },
  9543. {
  9544. name: "Normal",
  9545. height: math.unit(4 + 10 / 12, "feet"),
  9546. default: true
  9547. },
  9548. {
  9549. name: "Macro",
  9550. height: math.unit(200, "feet")
  9551. },
  9552. {
  9553. name: "Megamacro",
  9554. height: math.unit(120, "miles")
  9555. },
  9556. {
  9557. name: "Gigamacro",
  9558. height: math.unit(9800, "miles")
  9559. },
  9560. ]
  9561. ))
  9562. characterMakers.push(() => makeCharacter(
  9563. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9564. {
  9565. front: {
  9566. height: math.unit(1.7, "meters"),
  9567. weight: math.unit(140, "lb"),
  9568. name: "Front",
  9569. image: {
  9570. source: "./media/characters/moody/front.svg",
  9571. extra: 3226 / 3007,
  9572. bottom: 0.087
  9573. }
  9574. },
  9575. },
  9576. [
  9577. {
  9578. name: "Micro",
  9579. height: math.unit(1, "mm")
  9580. },
  9581. {
  9582. name: "Normal",
  9583. height: math.unit(1.7, "meters"),
  9584. default: true
  9585. },
  9586. {
  9587. name: "Macro",
  9588. height: math.unit(80, "meters")
  9589. },
  9590. {
  9591. name: "Macro+",
  9592. height: math.unit(500, "meters")
  9593. },
  9594. ]
  9595. ))
  9596. characterMakers.push(() => makeCharacter(
  9597. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9598. {
  9599. front: {
  9600. height: math.unit(6, "feet"),
  9601. weight: math.unit(150, "lb"),
  9602. name: "Front",
  9603. image: {
  9604. source: "./media/characters/zyas/front.svg",
  9605. extra: 1180 / 1120,
  9606. bottom: 0.045
  9607. }
  9608. },
  9609. },
  9610. [
  9611. {
  9612. name: "Normal",
  9613. height: math.unit(10, "feet"),
  9614. default: true
  9615. },
  9616. {
  9617. name: "Macro",
  9618. height: math.unit(500, "feet")
  9619. },
  9620. {
  9621. name: "Megamacro",
  9622. height: math.unit(5, "miles")
  9623. },
  9624. {
  9625. name: "Teramacro",
  9626. height: math.unit(150000, "miles")
  9627. },
  9628. ]
  9629. ))
  9630. characterMakers.push(() => makeCharacter(
  9631. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9632. {
  9633. front: {
  9634. height: math.unit(6, "feet"),
  9635. weight: math.unit(150, "lb"),
  9636. name: "Front",
  9637. image: {
  9638. source: "./media/characters/cuon/front.svg",
  9639. extra: 1390 / 1320,
  9640. bottom: 0.008
  9641. }
  9642. },
  9643. },
  9644. [
  9645. {
  9646. name: "Micro",
  9647. height: math.unit(3, "inches")
  9648. },
  9649. {
  9650. name: "Normal",
  9651. height: math.unit(18 + 9 / 12, "feet"),
  9652. default: true
  9653. },
  9654. {
  9655. name: "Macro",
  9656. height: math.unit(360, "feet")
  9657. },
  9658. {
  9659. name: "Megamacro",
  9660. height: math.unit(360, "miles")
  9661. },
  9662. ]
  9663. ))
  9664. characterMakers.push(() => makeCharacter(
  9665. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9666. {
  9667. front: {
  9668. height: math.unit(2.4, "meters"),
  9669. weight: math.unit(70, "kg"),
  9670. name: "Front",
  9671. image: {
  9672. source: "./media/characters/nyanuxk/front.svg",
  9673. extra: 1172 / 1084,
  9674. bottom: 0.065
  9675. }
  9676. },
  9677. side: {
  9678. height: math.unit(2.4, "meters"),
  9679. weight: math.unit(70, "kg"),
  9680. name: "Side",
  9681. image: {
  9682. source: "./media/characters/nyanuxk/side.svg",
  9683. extra: 1190 / 1132,
  9684. bottom: 0.007
  9685. }
  9686. },
  9687. back: {
  9688. height: math.unit(2.4, "meters"),
  9689. weight: math.unit(70, "kg"),
  9690. name: "Back",
  9691. image: {
  9692. source: "./media/characters/nyanuxk/back.svg",
  9693. extra: 1200 / 1141,
  9694. bottom: 0.015
  9695. }
  9696. },
  9697. foot: {
  9698. height: math.unit(0.52, "meters"),
  9699. name: "Foot",
  9700. image: {
  9701. source: "./media/characters/nyanuxk/foot.svg"
  9702. }
  9703. },
  9704. },
  9705. [
  9706. {
  9707. name: "Micro",
  9708. height: math.unit(2, "cm")
  9709. },
  9710. {
  9711. name: "Normal",
  9712. height: math.unit(2.4, "meters"),
  9713. default: true
  9714. },
  9715. {
  9716. name: "Smaller Macro",
  9717. height: math.unit(120, "meters")
  9718. },
  9719. {
  9720. name: "Bigger Macro",
  9721. height: math.unit(1.2, "km")
  9722. },
  9723. {
  9724. name: "Megamacro",
  9725. height: math.unit(15, "kilometers")
  9726. },
  9727. {
  9728. name: "Gigamacro",
  9729. height: math.unit(2000, "km")
  9730. },
  9731. {
  9732. name: "Teramacro",
  9733. height: math.unit(500000, "km")
  9734. },
  9735. ]
  9736. ))
  9737. characterMakers.push(() => makeCharacter(
  9738. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9739. {
  9740. side: {
  9741. height: math.unit(6, "feet"),
  9742. name: "Side",
  9743. image: {
  9744. source: "./media/characters/ailbhe/side.svg",
  9745. extra: 757 / 464,
  9746. bottom: 0.041
  9747. }
  9748. },
  9749. },
  9750. [
  9751. {
  9752. name: "Normal",
  9753. height: math.unit(1.07, "meters"),
  9754. default: true
  9755. },
  9756. ]
  9757. ))
  9758. characterMakers.push(() => makeCharacter(
  9759. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9760. {
  9761. front: {
  9762. height: math.unit(6, "feet"),
  9763. weight: math.unit(120, "kg"),
  9764. name: "Front",
  9765. image: {
  9766. source: "./media/characters/zevulfius/front.svg",
  9767. extra: 965 / 903
  9768. }
  9769. },
  9770. side: {
  9771. height: math.unit(6, "feet"),
  9772. weight: math.unit(120, "kg"),
  9773. name: "Side",
  9774. image: {
  9775. source: "./media/characters/zevulfius/side.svg",
  9776. extra: 939 / 900
  9777. }
  9778. },
  9779. back: {
  9780. height: math.unit(6, "feet"),
  9781. weight: math.unit(120, "kg"),
  9782. name: "Back",
  9783. image: {
  9784. source: "./media/characters/zevulfius/back.svg",
  9785. extra: 918 / 854,
  9786. bottom: 0.005
  9787. }
  9788. },
  9789. foot: {
  9790. height: math.unit(6 / 3.72, "feet"),
  9791. name: "Foot",
  9792. image: {
  9793. source: "./media/characters/zevulfius/foot.svg"
  9794. }
  9795. },
  9796. },
  9797. [
  9798. {
  9799. name: "Macro",
  9800. height: math.unit(750, "meters")
  9801. },
  9802. {
  9803. name: "Megamacro",
  9804. height: math.unit(20, "km"),
  9805. default: true
  9806. },
  9807. {
  9808. name: "Gigamacro",
  9809. height: math.unit(2000, "km")
  9810. },
  9811. {
  9812. name: "Teramacro",
  9813. height: math.unit(250000, "km")
  9814. },
  9815. ]
  9816. ))
  9817. characterMakers.push(() => makeCharacter(
  9818. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9819. {
  9820. front: {
  9821. height: math.unit(100, "feet"),
  9822. weight: math.unit(350, "kg"),
  9823. name: "Front",
  9824. image: {
  9825. source: "./media/characters/rikes/front.svg",
  9826. extra: 1565 / 1483,
  9827. bottom: 0.017
  9828. }
  9829. },
  9830. },
  9831. [
  9832. {
  9833. name: "Macro",
  9834. height: math.unit(100, "feet"),
  9835. default: true
  9836. },
  9837. ]
  9838. ))
  9839. characterMakers.push(() => makeCharacter(
  9840. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9841. {
  9842. anthro: {
  9843. height: math.unit(8, "feet"),
  9844. weight: math.unit(120, "kg"),
  9845. name: "Anthro",
  9846. image: {
  9847. source: "./media/characters/adam-silver-mane/anthro.svg",
  9848. extra: 5743 / 5339,
  9849. bottom: 0.07
  9850. }
  9851. },
  9852. taur: {
  9853. height: math.unit(16, "feet"),
  9854. weight: math.unit(1500, "kg"),
  9855. name: "Taur",
  9856. image: {
  9857. source: "./media/characters/adam-silver-mane/taur.svg",
  9858. extra: 1713 / 1571,
  9859. bottom: 0.01
  9860. }
  9861. },
  9862. },
  9863. [
  9864. {
  9865. name: "Normal",
  9866. height: math.unit(8, "feet")
  9867. },
  9868. {
  9869. name: "Minimacro",
  9870. height: math.unit(80, "feet")
  9871. },
  9872. {
  9873. name: "Macro",
  9874. height: math.unit(800, "feet"),
  9875. default: true
  9876. },
  9877. {
  9878. name: "Megamacro",
  9879. height: math.unit(8000, "feet")
  9880. },
  9881. {
  9882. name: "Gigamacro",
  9883. height: math.unit(800, "miles")
  9884. },
  9885. {
  9886. name: "Teramacro",
  9887. height: math.unit(80000, "miles")
  9888. },
  9889. {
  9890. name: "Celestial",
  9891. height: math.unit(8e6, "miles")
  9892. },
  9893. {
  9894. name: "Star Dragon",
  9895. height: math.unit(800000, "parsecs")
  9896. },
  9897. {
  9898. name: "Godly",
  9899. height: math.unit(800, "teraparsecs")
  9900. },
  9901. ]
  9902. ))
  9903. characterMakers.push(() => makeCharacter(
  9904. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9905. {
  9906. front: {
  9907. height: math.unit(6, "feet"),
  9908. weight: math.unit(150, "lb"),
  9909. name: "Front",
  9910. image: {
  9911. source: "./media/characters/ky'owin/front.svg",
  9912. extra: 3888 / 3068,
  9913. bottom: 0.015
  9914. }
  9915. },
  9916. },
  9917. [
  9918. {
  9919. name: "Normal",
  9920. height: math.unit(6 + 8 / 12, "feet")
  9921. },
  9922. {
  9923. name: "Large",
  9924. height: math.unit(68, "feet")
  9925. },
  9926. {
  9927. name: "Macro",
  9928. height: math.unit(132, "feet")
  9929. },
  9930. {
  9931. name: "Macro+",
  9932. height: math.unit(340, "feet")
  9933. },
  9934. {
  9935. name: "Macro++",
  9936. height: math.unit(680, "feet"),
  9937. default: true
  9938. },
  9939. {
  9940. name: "Megamacro",
  9941. height: math.unit(1, "mile")
  9942. },
  9943. {
  9944. name: "Megamacro+",
  9945. height: math.unit(10, "miles")
  9946. },
  9947. ]
  9948. ))
  9949. characterMakers.push(() => makeCharacter(
  9950. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9951. {
  9952. front: {
  9953. height: math.unit(4, "feet"),
  9954. weight: math.unit(50, "lb"),
  9955. name: "Front",
  9956. image: {
  9957. source: "./media/characters/mal/front.svg",
  9958. extra: 785 / 724,
  9959. bottom: 0.07
  9960. }
  9961. },
  9962. },
  9963. [
  9964. {
  9965. name: "Micro",
  9966. height: math.unit(4, "inches")
  9967. },
  9968. {
  9969. name: "Normal",
  9970. height: math.unit(4, "feet"),
  9971. default: true
  9972. },
  9973. {
  9974. name: "Macro",
  9975. height: math.unit(200, "feet")
  9976. },
  9977. ]
  9978. ))
  9979. characterMakers.push(() => makeCharacter(
  9980. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9981. {
  9982. front: {
  9983. height: math.unit(6, "feet"),
  9984. weight: math.unit(150, "lb"),
  9985. name: "Front",
  9986. image: {
  9987. source: "./media/characters/jordan-deware/front.svg",
  9988. extra: 1191 / 1012
  9989. }
  9990. },
  9991. },
  9992. [
  9993. {
  9994. name: "Nano",
  9995. height: math.unit(0.01, "mm")
  9996. },
  9997. {
  9998. name: "Minimicro",
  9999. height: math.unit(1, "mm")
  10000. },
  10001. {
  10002. name: "Micro",
  10003. height: math.unit(0.5, "inches")
  10004. },
  10005. {
  10006. name: "Normal",
  10007. height: math.unit(4, "feet"),
  10008. default: true
  10009. },
  10010. {
  10011. name: "Minimacro",
  10012. height: math.unit(40, "meters")
  10013. },
  10014. {
  10015. name: "Small Macro",
  10016. height: math.unit(400, "meters")
  10017. },
  10018. {
  10019. name: "Macro",
  10020. height: math.unit(4, "miles")
  10021. },
  10022. {
  10023. name: "Megamacro",
  10024. height: math.unit(40, "miles")
  10025. },
  10026. {
  10027. name: "Megamacro+",
  10028. height: math.unit(400, "miles")
  10029. },
  10030. {
  10031. name: "Gigamacro",
  10032. height: math.unit(400000, "miles")
  10033. },
  10034. ]
  10035. ))
  10036. characterMakers.push(() => makeCharacter(
  10037. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10038. {
  10039. side: {
  10040. height: math.unit(6, "feet"),
  10041. weight: math.unit(150, "lb"),
  10042. name: "Side",
  10043. image: {
  10044. source: "./media/characters/kimiko/side.svg",
  10045. extra: 600 / 358
  10046. }
  10047. },
  10048. },
  10049. [
  10050. {
  10051. name: "Normal",
  10052. height: math.unit(15, "feet"),
  10053. default: true
  10054. },
  10055. {
  10056. name: "Macro",
  10057. height: math.unit(220, "feet")
  10058. },
  10059. {
  10060. name: "Macro+",
  10061. height: math.unit(1450, "feet")
  10062. },
  10063. {
  10064. name: "Megamacro",
  10065. height: math.unit(11500, "feet")
  10066. },
  10067. {
  10068. name: "Gigamacro",
  10069. height: math.unit(9500, "miles")
  10070. },
  10071. {
  10072. name: "Teramacro",
  10073. height: math.unit(2208005005, "miles")
  10074. },
  10075. {
  10076. name: "Examacro",
  10077. height: math.unit(2750, "parsecs")
  10078. },
  10079. {
  10080. name: "Zettamacro",
  10081. height: math.unit(101500, "parsecs")
  10082. },
  10083. ]
  10084. ))
  10085. characterMakers.push(() => makeCharacter(
  10086. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10087. {
  10088. front: {
  10089. height: math.unit(6, "feet"),
  10090. weight: math.unit(70, "kg"),
  10091. name: "Front",
  10092. image: {
  10093. source: "./media/characters/andrew-sleepy/front.svg"
  10094. }
  10095. },
  10096. side: {
  10097. height: math.unit(6, "feet"),
  10098. weight: math.unit(70, "kg"),
  10099. name: "Side",
  10100. image: {
  10101. source: "./media/characters/andrew-sleepy/side.svg"
  10102. }
  10103. },
  10104. },
  10105. [
  10106. {
  10107. name: "Micro",
  10108. height: math.unit(1, "mm"),
  10109. default: true
  10110. },
  10111. ]
  10112. ))
  10113. characterMakers.push(() => makeCharacter(
  10114. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10115. {
  10116. front: {
  10117. height: math.unit(6, "feet"),
  10118. weight: math.unit(150, "lb"),
  10119. name: "Front",
  10120. image: {
  10121. source: "./media/characters/judio/front.svg",
  10122. extra: 1258 / 1110
  10123. }
  10124. },
  10125. },
  10126. [
  10127. {
  10128. name: "Normal",
  10129. height: math.unit(5 + 6 / 12, "feet")
  10130. },
  10131. {
  10132. name: "Macro",
  10133. height: math.unit(1000, "feet"),
  10134. default: true
  10135. },
  10136. {
  10137. name: "Megamacro",
  10138. height: math.unit(10, "miles")
  10139. },
  10140. ]
  10141. ))
  10142. characterMakers.push(() => makeCharacter(
  10143. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10144. {
  10145. front: {
  10146. height: math.unit(6, "feet"),
  10147. weight: math.unit(68, "kg"),
  10148. name: "Front",
  10149. image: {
  10150. source: "./media/characters/nomaxice/front.svg",
  10151. extra: 1498 / 1073,
  10152. bottom: 0.075
  10153. }
  10154. },
  10155. foot: {
  10156. height: math.unit(1.1, "feet"),
  10157. name: "Foot",
  10158. image: {
  10159. source: "./media/characters/nomaxice/foot.svg"
  10160. }
  10161. },
  10162. },
  10163. [
  10164. {
  10165. name: "Micro",
  10166. height: math.unit(8, "cm")
  10167. },
  10168. {
  10169. name: "Norm",
  10170. height: math.unit(1.82, "m")
  10171. },
  10172. {
  10173. name: "Norm+",
  10174. height: math.unit(8.8, "feet")
  10175. },
  10176. {
  10177. name: "Big",
  10178. height: math.unit(8, "meters"),
  10179. default: true
  10180. },
  10181. {
  10182. name: "Macro",
  10183. height: math.unit(18, "meters")
  10184. },
  10185. {
  10186. name: "Macro+",
  10187. height: math.unit(88, "meters")
  10188. },
  10189. ]
  10190. ))
  10191. characterMakers.push(() => makeCharacter(
  10192. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10193. {
  10194. front: {
  10195. height: math.unit(12, "feet"),
  10196. weight: math.unit(1.5, "tons"),
  10197. name: "Front",
  10198. image: {
  10199. source: "./media/characters/dydros/front.svg",
  10200. extra: 863 / 800,
  10201. bottom: 0.015
  10202. }
  10203. },
  10204. back: {
  10205. height: math.unit(12, "feet"),
  10206. weight: math.unit(1.5, "tons"),
  10207. name: "Back",
  10208. image: {
  10209. source: "./media/characters/dydros/back.svg",
  10210. extra: 900 / 843,
  10211. bottom: 0.005
  10212. }
  10213. },
  10214. },
  10215. [
  10216. {
  10217. name: "Normal",
  10218. height: math.unit(12, "feet"),
  10219. default: true
  10220. },
  10221. ]
  10222. ))
  10223. characterMakers.push(() => makeCharacter(
  10224. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10225. {
  10226. front: {
  10227. height: math.unit(6, "feet"),
  10228. weight: math.unit(100, "kg"),
  10229. name: "Front",
  10230. image: {
  10231. source: "./media/characters/riggi/front.svg",
  10232. extra: 5787 / 5303
  10233. }
  10234. },
  10235. hyper: {
  10236. height: math.unit(6 * 5 / 3, "feet"),
  10237. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10238. name: "Hyper",
  10239. image: {
  10240. source: "./media/characters/riggi/hyper.svg",
  10241. extra: 3595 / 3485
  10242. }
  10243. },
  10244. },
  10245. [
  10246. {
  10247. name: "Small Macro",
  10248. height: math.unit(50, "feet")
  10249. },
  10250. {
  10251. name: "Default",
  10252. height: math.unit(200, "feet"),
  10253. default: true
  10254. },
  10255. {
  10256. name: "Loom",
  10257. height: math.unit(10000, "feet")
  10258. },
  10259. {
  10260. name: "Cruising Altitude",
  10261. height: math.unit(30000, "feet")
  10262. },
  10263. {
  10264. name: "Megamacro",
  10265. height: math.unit(100, "miles")
  10266. },
  10267. {
  10268. name: "Continent Sized",
  10269. height: math.unit(2800, "miles")
  10270. },
  10271. {
  10272. name: "Earth Sized",
  10273. height: math.unit(8000, "miles")
  10274. },
  10275. ]
  10276. ))
  10277. characterMakers.push(() => makeCharacter(
  10278. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10279. {
  10280. front: {
  10281. height: math.unit(6, "feet"),
  10282. weight: math.unit(250, "lb"),
  10283. name: "Front",
  10284. image: {
  10285. source: "./media/characters/alexi/front.svg",
  10286. extra: 3483 / 3291,
  10287. bottom: 0.04
  10288. }
  10289. },
  10290. back: {
  10291. height: math.unit(6, "feet"),
  10292. weight: math.unit(250, "lb"),
  10293. name: "Back",
  10294. image: {
  10295. source: "./media/characters/alexi/back.svg",
  10296. extra: 3533 / 3356,
  10297. bottom: 0.021
  10298. }
  10299. },
  10300. frontTransforming: {
  10301. height: math.unit(8.58, "feet"),
  10302. weight: math.unit(1300, "lb"),
  10303. name: "Transforming",
  10304. image: {
  10305. source: "./media/characters/alexi/front-transforming.svg",
  10306. extra: 437 / 409,
  10307. bottom: 19 / 458.66
  10308. }
  10309. },
  10310. frontTransformed: {
  10311. height: math.unit(12.5, "feet"),
  10312. weight: math.unit(4000, "lb"),
  10313. name: "Transformed",
  10314. image: {
  10315. source: "./media/characters/alexi/front-transformed.svg",
  10316. extra: 639 / 614,
  10317. bottom: 30.55 / 671
  10318. }
  10319. },
  10320. },
  10321. [
  10322. {
  10323. name: "Normal",
  10324. height: math.unit(14, "feet"),
  10325. default: true
  10326. },
  10327. {
  10328. name: "Minimacro",
  10329. height: math.unit(30, "meters")
  10330. },
  10331. {
  10332. name: "Macro",
  10333. height: math.unit(500, "meters")
  10334. },
  10335. {
  10336. name: "Megamacro",
  10337. height: math.unit(9000, "km")
  10338. },
  10339. {
  10340. name: "Teramacro",
  10341. height: math.unit(384000, "km")
  10342. },
  10343. ]
  10344. ))
  10345. characterMakers.push(() => makeCharacter(
  10346. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10347. {
  10348. front: {
  10349. height: math.unit(6, "feet"),
  10350. weight: math.unit(150, "lb"),
  10351. name: "Front",
  10352. image: {
  10353. source: "./media/characters/kayroo/front.svg",
  10354. extra: 1153 / 1038,
  10355. bottom: 0.06
  10356. }
  10357. },
  10358. foot: {
  10359. height: math.unit(6, "feet"),
  10360. weight: math.unit(150, "lb"),
  10361. name: "Foot",
  10362. image: {
  10363. source: "./media/characters/kayroo/foot.svg"
  10364. }
  10365. },
  10366. },
  10367. [
  10368. {
  10369. name: "Normal",
  10370. height: math.unit(8, "feet"),
  10371. default: true
  10372. },
  10373. {
  10374. name: "Minimacro",
  10375. height: math.unit(250, "feet")
  10376. },
  10377. {
  10378. name: "Macro",
  10379. height: math.unit(2800, "feet")
  10380. },
  10381. {
  10382. name: "Megamacro",
  10383. height: math.unit(5200, "feet")
  10384. },
  10385. {
  10386. name: "Gigamacro",
  10387. height: math.unit(27000, "feet")
  10388. },
  10389. {
  10390. name: "Omega",
  10391. height: math.unit(45000, "feet")
  10392. },
  10393. ]
  10394. ))
  10395. characterMakers.push(() => makeCharacter(
  10396. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10397. {
  10398. front: {
  10399. height: math.unit(18, "feet"),
  10400. weight: math.unit(5800, "lb"),
  10401. name: "Front",
  10402. image: {
  10403. source: "./media/characters/rhys/front.svg",
  10404. extra: 3386 / 3090,
  10405. bottom: 0.07
  10406. }
  10407. },
  10408. },
  10409. [
  10410. {
  10411. name: "Normal",
  10412. height: math.unit(18, "feet"),
  10413. default: true
  10414. },
  10415. {
  10416. name: "Working Size",
  10417. height: math.unit(200, "feet")
  10418. },
  10419. {
  10420. name: "Demolition Size",
  10421. height: math.unit(2000, "feet")
  10422. },
  10423. {
  10424. name: "Maximum Licensed Size",
  10425. height: math.unit(5, "miles")
  10426. },
  10427. {
  10428. name: "Maximum Observed Size",
  10429. height: math.unit(10, "yottameters")
  10430. },
  10431. ]
  10432. ))
  10433. characterMakers.push(() => makeCharacter(
  10434. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10435. {
  10436. front: {
  10437. height: math.unit(6, "feet"),
  10438. weight: math.unit(250, "lb"),
  10439. name: "Front",
  10440. image: {
  10441. source: "./media/characters/toto/front.svg",
  10442. extra: 527 / 479,
  10443. bottom: 0.05
  10444. }
  10445. },
  10446. },
  10447. [
  10448. {
  10449. name: "Micro",
  10450. height: math.unit(3, "feet")
  10451. },
  10452. {
  10453. name: "Normal",
  10454. height: math.unit(10, "feet")
  10455. },
  10456. {
  10457. name: "Macro",
  10458. height: math.unit(150, "feet"),
  10459. default: true
  10460. },
  10461. {
  10462. name: "Megamacro",
  10463. height: math.unit(1200, "feet")
  10464. },
  10465. ]
  10466. ))
  10467. characterMakers.push(() => makeCharacter(
  10468. { name: "King", species: ["lion"], tags: ["anthro"] },
  10469. {
  10470. back: {
  10471. height: math.unit(6, "feet"),
  10472. weight: math.unit(150, "lb"),
  10473. name: "Back",
  10474. image: {
  10475. source: "./media/characters/king/back.svg"
  10476. }
  10477. },
  10478. },
  10479. [
  10480. {
  10481. name: "Micro",
  10482. height: math.unit(2, "inches")
  10483. },
  10484. {
  10485. name: "Normal",
  10486. height: math.unit(8, "feet")
  10487. },
  10488. {
  10489. name: "Macro",
  10490. height: math.unit(200, "feet"),
  10491. default: true
  10492. },
  10493. {
  10494. name: "Megamacro",
  10495. height: math.unit(50, "miles")
  10496. },
  10497. ]
  10498. ))
  10499. characterMakers.push(() => makeCharacter(
  10500. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10501. {
  10502. anthro: {
  10503. height: math.unit(6 + 5 / 12, "feet"),
  10504. weight: math.unit(280, "lb"),
  10505. name: "Anthro",
  10506. image: {
  10507. source: "./media/characters/cordite/anthro.svg",
  10508. extra: 1986 / 1905,
  10509. bottom: 0.025
  10510. }
  10511. },
  10512. feral: {
  10513. height: math.unit(2, "feet"),
  10514. weight: math.unit(90, "lb"),
  10515. name: "Feral",
  10516. image: {
  10517. source: "./media/characters/cordite/feral.svg",
  10518. extra: 1260 / 755,
  10519. bottom: 0.05
  10520. }
  10521. },
  10522. },
  10523. [
  10524. {
  10525. name: "Normal",
  10526. height: math.unit(6 + 5 / 12, "feet"),
  10527. default: true
  10528. },
  10529. ]
  10530. ))
  10531. characterMakers.push(() => makeCharacter(
  10532. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10533. {
  10534. front: {
  10535. height: math.unit(6, "feet"),
  10536. weight: math.unit(150, "lb"),
  10537. name: "Front",
  10538. image: {
  10539. source: "./media/characters/pianostrong/front.svg",
  10540. extra: 6577 / 6254,
  10541. bottom: 0.02
  10542. }
  10543. },
  10544. side: {
  10545. height: math.unit(6, "feet"),
  10546. weight: math.unit(150, "lb"),
  10547. name: "Side",
  10548. image: {
  10549. source: "./media/characters/pianostrong/side.svg",
  10550. extra: 6106 / 5730
  10551. }
  10552. },
  10553. back: {
  10554. height: math.unit(6, "feet"),
  10555. weight: math.unit(150, "lb"),
  10556. name: "Back",
  10557. image: {
  10558. source: "./media/characters/pianostrong/back.svg",
  10559. extra: 6085 / 5733,
  10560. bottom: 0.01
  10561. }
  10562. },
  10563. },
  10564. [
  10565. {
  10566. name: "Macro",
  10567. height: math.unit(100, "feet")
  10568. },
  10569. {
  10570. name: "Macro+",
  10571. height: math.unit(300, "feet"),
  10572. default: true
  10573. },
  10574. {
  10575. name: "Macro++",
  10576. height: math.unit(1000, "feet")
  10577. },
  10578. ]
  10579. ))
  10580. characterMakers.push(() => makeCharacter(
  10581. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10582. {
  10583. front: {
  10584. height: math.unit(6, "feet"),
  10585. weight: math.unit(150, "lb"),
  10586. name: "Front",
  10587. image: {
  10588. source: "./media/characters/kona/front.svg",
  10589. extra: 2960 / 2629,
  10590. bottom: 0.005
  10591. }
  10592. },
  10593. },
  10594. [
  10595. {
  10596. name: "Normal",
  10597. height: math.unit(11 + 8 / 12, "feet")
  10598. },
  10599. {
  10600. name: "Macro",
  10601. height: math.unit(850, "feet"),
  10602. default: true
  10603. },
  10604. {
  10605. name: "Macro+",
  10606. height: math.unit(1.5, "km"),
  10607. default: true
  10608. },
  10609. {
  10610. name: "Megamacro",
  10611. height: math.unit(80, "miles")
  10612. },
  10613. {
  10614. name: "Gigamacro",
  10615. height: math.unit(3500, "miles")
  10616. },
  10617. ]
  10618. ))
  10619. characterMakers.push(() => makeCharacter(
  10620. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10621. {
  10622. side: {
  10623. height: math.unit(1.9, "meters"),
  10624. weight: math.unit(326, "kg"),
  10625. name: "Side",
  10626. image: {
  10627. source: "./media/characters/levi/side.svg",
  10628. extra: 1704 / 1334,
  10629. bottom: 0.02
  10630. }
  10631. },
  10632. },
  10633. [
  10634. {
  10635. name: "Normal",
  10636. height: math.unit(1.9, "meters"),
  10637. default: true
  10638. },
  10639. {
  10640. name: "Macro",
  10641. height: math.unit(20, "meters")
  10642. },
  10643. {
  10644. name: "Macro+",
  10645. height: math.unit(200, "meters")
  10646. },
  10647. {
  10648. name: "Megamacro",
  10649. height: math.unit(2, "km")
  10650. },
  10651. {
  10652. name: "Megamacro+",
  10653. height: math.unit(20, "km")
  10654. },
  10655. {
  10656. name: "Gigamacro",
  10657. height: math.unit(2500, "km")
  10658. },
  10659. {
  10660. name: "Gigamacro+",
  10661. height: math.unit(120000, "km")
  10662. },
  10663. {
  10664. name: "Teramacro",
  10665. height: math.unit(7.77e6, "km")
  10666. },
  10667. ]
  10668. ))
  10669. characterMakers.push(() => makeCharacter(
  10670. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10671. {
  10672. front: {
  10673. height: math.unit(6 + 4 / 12, "feet"),
  10674. weight: math.unit(188, "lb"),
  10675. name: "Front",
  10676. image: {
  10677. source: "./media/characters/bmc/front.svg",
  10678. extra: 1067 / 1022,
  10679. bottom: 0.047
  10680. }
  10681. },
  10682. },
  10683. [
  10684. {
  10685. name: "Human-sized",
  10686. height: math.unit(6 + 4 / 12, "feet")
  10687. },
  10688. {
  10689. name: "Small",
  10690. height: math.unit(250, "feet")
  10691. },
  10692. {
  10693. name: "Normal",
  10694. height: math.unit(1250, "feet"),
  10695. default: true
  10696. },
  10697. {
  10698. name: "Good Day",
  10699. height: math.unit(88, "miles")
  10700. },
  10701. {
  10702. name: "Largest Measured Size",
  10703. height: math.unit(11.2e6, "lightyears")
  10704. },
  10705. ]
  10706. ))
  10707. characterMakers.push(() => makeCharacter(
  10708. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10709. {
  10710. front: {
  10711. height: math.unit(20, "feet"),
  10712. weight: math.unit(2016, "kg"),
  10713. name: "Front",
  10714. image: {
  10715. source: "./media/characters/sven-the-kaiju/front.svg",
  10716. extra: 1479 / 1449,
  10717. bottom: 0.05
  10718. }
  10719. },
  10720. },
  10721. [
  10722. {
  10723. name: "Fairy",
  10724. height: math.unit(6, "inches")
  10725. },
  10726. {
  10727. name: "Normal",
  10728. height: math.unit(20, "feet"),
  10729. default: true
  10730. },
  10731. {
  10732. name: "Rampage",
  10733. height: math.unit(200, "feet")
  10734. },
  10735. {
  10736. name: "Archfey Forest Guardian",
  10737. height: math.unit(1, "mile")
  10738. },
  10739. ]
  10740. ))
  10741. characterMakers.push(() => makeCharacter(
  10742. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10743. {
  10744. front: {
  10745. height: math.unit(4, "meters"),
  10746. weight: math.unit(2, "tons"),
  10747. name: "Front",
  10748. image: {
  10749. source: "./media/characters/marik/front.svg",
  10750. extra: 1057 / 1003,
  10751. bottom: 0.08
  10752. }
  10753. },
  10754. },
  10755. [
  10756. {
  10757. name: "Normal",
  10758. height: math.unit(4, "meters"),
  10759. default: true
  10760. },
  10761. {
  10762. name: "Macro",
  10763. height: math.unit(20, "meters")
  10764. },
  10765. {
  10766. name: "Megamacro",
  10767. height: math.unit(50, "km")
  10768. },
  10769. {
  10770. name: "Gigamacro",
  10771. height: math.unit(100, "km")
  10772. },
  10773. {
  10774. name: "Alpha Macro",
  10775. height: math.unit(7.88e7, "yottameters")
  10776. },
  10777. ]
  10778. ))
  10779. characterMakers.push(() => makeCharacter(
  10780. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10781. {
  10782. front: {
  10783. height: math.unit(6, "feet"),
  10784. weight: math.unit(110, "lb"),
  10785. name: "Front",
  10786. image: {
  10787. source: "./media/characters/mel/front.svg",
  10788. extra: 736 / 617,
  10789. bottom: 0.017
  10790. }
  10791. },
  10792. },
  10793. [
  10794. {
  10795. name: "Pico",
  10796. height: math.unit(3, "pm")
  10797. },
  10798. {
  10799. name: "Nano",
  10800. height: math.unit(3, "nm")
  10801. },
  10802. {
  10803. name: "Micro",
  10804. height: math.unit(0.3, "mm"),
  10805. default: true
  10806. },
  10807. {
  10808. name: "Micro+",
  10809. height: math.unit(3, "mm")
  10810. },
  10811. {
  10812. name: "Normal",
  10813. height: math.unit(5 + 10.5 / 12, "feet")
  10814. },
  10815. ]
  10816. ))
  10817. characterMakers.push(() => makeCharacter(
  10818. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10819. {
  10820. kaiju: {
  10821. height: math.unit(1.75, "meters"),
  10822. weight: math.unit(55, "kg"),
  10823. name: "Kaiju",
  10824. image: {
  10825. source: "./media/characters/lykonous/kaiju.svg",
  10826. extra: 1055 / 946,
  10827. bottom: 0.135
  10828. }
  10829. },
  10830. },
  10831. [
  10832. {
  10833. name: "Normal",
  10834. height: math.unit(2.5, "meters"),
  10835. default: true
  10836. },
  10837. {
  10838. name: "Kaiju Dragon",
  10839. height: math.unit(60, "meters")
  10840. },
  10841. {
  10842. name: "Mega Kaiju",
  10843. height: math.unit(120, "km")
  10844. },
  10845. {
  10846. name: "Giga Kaiju",
  10847. height: math.unit(200, "megameters")
  10848. },
  10849. {
  10850. name: "Terra Kaiju",
  10851. height: math.unit(400, "gigameters")
  10852. },
  10853. {
  10854. name: "Kaiju Dragon God",
  10855. height: math.unit(13000, "exaparsecs")
  10856. },
  10857. ]
  10858. ))
  10859. characterMakers.push(() => makeCharacter(
  10860. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10861. {
  10862. front: {
  10863. height: math.unit(6, "feet"),
  10864. weight: math.unit(150, "lb"),
  10865. name: "Front",
  10866. image: {
  10867. source: "./media/characters/blü/front.svg",
  10868. extra: 1883 / 1564,
  10869. bottom: 0.031
  10870. }
  10871. },
  10872. },
  10873. [
  10874. {
  10875. name: "Normal",
  10876. height: math.unit(13, "feet"),
  10877. default: true
  10878. },
  10879. {
  10880. name: "Big Boi",
  10881. height: math.unit(150, "meters")
  10882. },
  10883. {
  10884. name: "Mini Stomper",
  10885. height: math.unit(300, "meters")
  10886. },
  10887. {
  10888. name: "Macro",
  10889. height: math.unit(1000, "meters")
  10890. },
  10891. {
  10892. name: "Megamacro",
  10893. height: math.unit(11000, "meters")
  10894. },
  10895. {
  10896. name: "Gigamacro",
  10897. height: math.unit(11000, "km")
  10898. },
  10899. {
  10900. name: "Teramacro",
  10901. height: math.unit(420000, "km")
  10902. },
  10903. {
  10904. name: "Examacro",
  10905. height: math.unit(120, "parsecs")
  10906. },
  10907. {
  10908. name: "God Tho",
  10909. height: math.unit(98000000000, "parsecs")
  10910. },
  10911. ]
  10912. ))
  10913. characterMakers.push(() => makeCharacter(
  10914. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10915. {
  10916. taurFront: {
  10917. height: math.unit(6, "feet"),
  10918. weight: math.unit(200, "lb"),
  10919. name: "Taur (Front)",
  10920. image: {
  10921. source: "./media/characters/scales/taur-front.svg",
  10922. extra: 1,
  10923. bottom: 0.05
  10924. }
  10925. },
  10926. taurBack: {
  10927. height: math.unit(6, "feet"),
  10928. weight: math.unit(200, "lb"),
  10929. name: "Taur (Back)",
  10930. image: {
  10931. source: "./media/characters/scales/taur-back.svg",
  10932. extra: 1,
  10933. bottom: 0.08
  10934. }
  10935. },
  10936. anthro: {
  10937. height: math.unit(6 * 7 / 12, "feet"),
  10938. weight: math.unit(100, "lb"),
  10939. name: "Anthro",
  10940. image: {
  10941. source: "./media/characters/scales/anthro.svg",
  10942. extra: 1,
  10943. bottom: 0.06
  10944. }
  10945. },
  10946. },
  10947. [
  10948. {
  10949. name: "Normal",
  10950. height: math.unit(12, "feet"),
  10951. default: true
  10952. },
  10953. ]
  10954. ))
  10955. characterMakers.push(() => makeCharacter(
  10956. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10957. {
  10958. front: {
  10959. height: math.unit(6, "feet"),
  10960. weight: math.unit(150, "lb"),
  10961. name: "Front",
  10962. image: {
  10963. source: "./media/characters/koragos/front.svg",
  10964. extra: 841 / 794,
  10965. bottom: 0.035
  10966. }
  10967. },
  10968. back: {
  10969. height: math.unit(6, "feet"),
  10970. weight: math.unit(150, "lb"),
  10971. name: "Back",
  10972. image: {
  10973. source: "./media/characters/koragos/back.svg",
  10974. extra: 841 / 810,
  10975. bottom: 0.022
  10976. }
  10977. },
  10978. },
  10979. [
  10980. {
  10981. name: "Normal",
  10982. height: math.unit(6 + 11 / 12, "feet"),
  10983. default: true
  10984. },
  10985. {
  10986. name: "Macro",
  10987. height: math.unit(490, "feet")
  10988. },
  10989. {
  10990. name: "Megamacro",
  10991. height: math.unit(10, "miles")
  10992. },
  10993. {
  10994. name: "Gigamacro",
  10995. height: math.unit(50, "miles")
  10996. },
  10997. ]
  10998. ))
  10999. characterMakers.push(() => makeCharacter(
  11000. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11001. {
  11002. front: {
  11003. height: math.unit(6, "feet"),
  11004. weight: math.unit(250, "lb"),
  11005. name: "Front",
  11006. image: {
  11007. source: "./media/characters/xylrem/front.svg",
  11008. extra: 3323 / 3050,
  11009. bottom: 0.065
  11010. }
  11011. },
  11012. },
  11013. [
  11014. {
  11015. name: "Micro",
  11016. height: math.unit(4, "feet")
  11017. },
  11018. {
  11019. name: "Normal",
  11020. height: math.unit(16, "feet"),
  11021. default: true
  11022. },
  11023. {
  11024. name: "Macro",
  11025. height: math.unit(2720, "feet")
  11026. },
  11027. {
  11028. name: "Megamacro",
  11029. height: math.unit(25000, "miles")
  11030. },
  11031. ]
  11032. ))
  11033. characterMakers.push(() => makeCharacter(
  11034. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11035. {
  11036. front: {
  11037. height: math.unit(8, "feet"),
  11038. weight: math.unit(250, "kg"),
  11039. name: "Front",
  11040. image: {
  11041. source: "./media/characters/ikideru/front.svg",
  11042. extra: 930 / 870,
  11043. bottom: 0.087
  11044. }
  11045. },
  11046. back: {
  11047. height: math.unit(8, "feet"),
  11048. weight: math.unit(250, "kg"),
  11049. name: "Back",
  11050. image: {
  11051. source: "./media/characters/ikideru/back.svg",
  11052. extra: 919 / 852,
  11053. bottom: 0.055
  11054. }
  11055. },
  11056. },
  11057. [
  11058. {
  11059. name: "Rare",
  11060. height: math.unit(8, "feet"),
  11061. default: true
  11062. },
  11063. {
  11064. name: "Playful Loom",
  11065. height: math.unit(80, "feet")
  11066. },
  11067. {
  11068. name: "City Leaner",
  11069. height: math.unit(230, "feet")
  11070. },
  11071. {
  11072. name: "Megamacro",
  11073. height: math.unit(2500, "feet")
  11074. },
  11075. {
  11076. name: "Gigamacro",
  11077. height: math.unit(26400, "feet")
  11078. },
  11079. {
  11080. name: "Tectonic Shifter",
  11081. height: math.unit(1.7, "megameters")
  11082. },
  11083. {
  11084. name: "Planet Carer",
  11085. height: math.unit(21, "megameters")
  11086. },
  11087. {
  11088. name: "God",
  11089. height: math.unit(11157.22, "parsecs")
  11090. },
  11091. ]
  11092. ))
  11093. characterMakers.push(() => makeCharacter(
  11094. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11095. {
  11096. front: {
  11097. height: math.unit(6, "feet"),
  11098. weight: math.unit(120, "lb"),
  11099. name: "Front",
  11100. image: {
  11101. source: "./media/characters/neo/front.svg"
  11102. }
  11103. },
  11104. },
  11105. [
  11106. {
  11107. name: "Micro",
  11108. height: math.unit(2, "inches"),
  11109. default: true
  11110. },
  11111. {
  11112. name: "Human Size",
  11113. height: math.unit(5 + 8 / 12, "feet")
  11114. },
  11115. ]
  11116. ))
  11117. characterMakers.push(() => makeCharacter(
  11118. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11119. {
  11120. front: {
  11121. height: math.unit(13 + 10 / 12, "feet"),
  11122. weight: math.unit(5320, "lb"),
  11123. name: "Front",
  11124. image: {
  11125. source: "./media/characters/chauncey-chantz/front.svg",
  11126. extra: 1587 / 1435,
  11127. bottom: 0.02
  11128. }
  11129. },
  11130. },
  11131. [
  11132. {
  11133. name: "Normal",
  11134. height: math.unit(13 + 10 / 12, "feet"),
  11135. default: true
  11136. },
  11137. {
  11138. name: "Macro",
  11139. height: math.unit(45, "feet")
  11140. },
  11141. {
  11142. name: "Megamacro",
  11143. height: math.unit(250, "miles")
  11144. },
  11145. {
  11146. name: "Planetary",
  11147. height: math.unit(10000, "miles")
  11148. },
  11149. {
  11150. name: "Galactic",
  11151. height: math.unit(40000, "parsecs")
  11152. },
  11153. {
  11154. name: "Universal",
  11155. height: math.unit(1, "yottameter")
  11156. },
  11157. ]
  11158. ))
  11159. characterMakers.push(() => makeCharacter(
  11160. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11161. {
  11162. front: {
  11163. height: math.unit(6, "feet"),
  11164. weight: math.unit(150, "lb"),
  11165. name: "Front",
  11166. image: {
  11167. source: "./media/characters/epifox/front.svg",
  11168. extra: 1,
  11169. bottom: 0.075
  11170. }
  11171. },
  11172. },
  11173. [
  11174. {
  11175. name: "Micro",
  11176. height: math.unit(6, "inches")
  11177. },
  11178. {
  11179. name: "Normal",
  11180. height: math.unit(12, "feet"),
  11181. default: true
  11182. },
  11183. {
  11184. name: "Macro",
  11185. height: math.unit(3810, "feet")
  11186. },
  11187. {
  11188. name: "Megamacro",
  11189. height: math.unit(500, "miles")
  11190. },
  11191. ]
  11192. ))
  11193. characterMakers.push(() => makeCharacter(
  11194. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11195. {
  11196. front: {
  11197. height: math.unit(1.8796, "m"),
  11198. weight: math.unit(230, "lb"),
  11199. name: "Front",
  11200. image: {
  11201. source: "./media/characters/colin-t/front.svg",
  11202. extra: 1272 / 1193,
  11203. bottom: 0.07
  11204. }
  11205. },
  11206. },
  11207. [
  11208. {
  11209. name: "Micro",
  11210. height: math.unit(0.571, "meters")
  11211. },
  11212. {
  11213. name: "Normal",
  11214. height: math.unit(1.8796, "meters"),
  11215. default: true
  11216. },
  11217. {
  11218. name: "Tall",
  11219. height: math.unit(4, "meters")
  11220. },
  11221. {
  11222. name: "Macro",
  11223. height: math.unit(67.241, "meters")
  11224. },
  11225. {
  11226. name: "Megamacro",
  11227. height: math.unit(371.856, "meters")
  11228. },
  11229. {
  11230. name: "Planetary",
  11231. height: math.unit(12631.5689, "km")
  11232. },
  11233. ]
  11234. ))
  11235. characterMakers.push(() => makeCharacter(
  11236. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11237. {
  11238. front: {
  11239. height: math.unit(1.85, "meters"),
  11240. weight: math.unit(80, "kg"),
  11241. name: "Front",
  11242. image: {
  11243. source: "./media/characters/matvei/front.svg",
  11244. extra: 614 / 594,
  11245. bottom: 0.01
  11246. }
  11247. },
  11248. },
  11249. [
  11250. {
  11251. name: "Normal",
  11252. height: math.unit(1.85, "meters"),
  11253. default: true
  11254. },
  11255. ]
  11256. ))
  11257. characterMakers.push(() => makeCharacter(
  11258. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11259. {
  11260. front: {
  11261. height: math.unit(5 + 9 / 12, "feet"),
  11262. weight: math.unit(70, "lb"),
  11263. name: "Front",
  11264. image: {
  11265. source: "./media/characters/quincy/front.svg",
  11266. extra: 3041 / 2751
  11267. }
  11268. },
  11269. back: {
  11270. height: math.unit(5 + 9 / 12, "feet"),
  11271. weight: math.unit(70, "lb"),
  11272. name: "Back",
  11273. image: {
  11274. source: "./media/characters/quincy/back.svg",
  11275. extra: 3041 / 2751
  11276. }
  11277. },
  11278. flying: {
  11279. height: math.unit(5 + 4 / 12, "feet"),
  11280. weight: math.unit(70, "lb"),
  11281. name: "Flying",
  11282. image: {
  11283. source: "./media/characters/quincy/flying.svg",
  11284. extra: 1044 / 930
  11285. }
  11286. },
  11287. },
  11288. [
  11289. {
  11290. name: "Micro",
  11291. height: math.unit(3, "cm")
  11292. },
  11293. {
  11294. name: "Normal",
  11295. height: math.unit(5 + 9 / 12, "feet")
  11296. },
  11297. {
  11298. name: "Macro",
  11299. height: math.unit(200, "meters"),
  11300. default: true
  11301. },
  11302. {
  11303. name: "Megamacro",
  11304. height: math.unit(1000, "meters")
  11305. },
  11306. ]
  11307. ))
  11308. characterMakers.push(() => makeCharacter(
  11309. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11310. {
  11311. front: {
  11312. height: math.unit(4 + 7 / 12, "feet"),
  11313. weight: math.unit(50, "lb"),
  11314. name: "Front",
  11315. image: {
  11316. source: "./media/characters/vanrel/front.svg",
  11317. extra: 1,
  11318. bottom: 0.02
  11319. }
  11320. },
  11321. frontAlt: {
  11322. height: math.unit(4 + 7 / 12, "feet"),
  11323. weight: math.unit(50, "lb"),
  11324. name: "Front-alt",
  11325. image: {
  11326. source: "./media/characters/vanrel/front-alt.svg",
  11327. extra: 1,
  11328. bottom: 15 / 1511
  11329. }
  11330. },
  11331. elemental: {
  11332. height: math.unit(3, "feet"),
  11333. weight: math.unit(50, "lb"),
  11334. name: "Elemental",
  11335. image: {
  11336. source: "./media/characters/vanrel/elemental.svg",
  11337. extra: 192.3 / 162.8,
  11338. bottom: 1.79 / 194.17
  11339. }
  11340. },
  11341. side: {
  11342. height: math.unit(4 + 7 / 12, "feet"),
  11343. weight: math.unit(50, "lb"),
  11344. name: "Side",
  11345. image: {
  11346. source: "./media/characters/vanrel/side.svg",
  11347. extra: 1,
  11348. bottom: 0.025
  11349. }
  11350. },
  11351. tome: {
  11352. height: math.unit(1.35, "feet"),
  11353. weight: math.unit(10, "lb"),
  11354. name: "Vanrel's Tome",
  11355. rename: true,
  11356. image: {
  11357. source: "./media/characters/vanrel/tome.svg"
  11358. }
  11359. },
  11360. beans: {
  11361. height: math.unit(0.89, "feet"),
  11362. name: "Beans",
  11363. image: {
  11364. source: "./media/characters/vanrel/beans.svg"
  11365. }
  11366. },
  11367. },
  11368. [
  11369. {
  11370. name: "Normal",
  11371. height: math.unit(4 + 7 / 12, "feet"),
  11372. default: true
  11373. },
  11374. ]
  11375. ))
  11376. characterMakers.push(() => makeCharacter(
  11377. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11378. {
  11379. front: {
  11380. height: math.unit(7 + 5 / 12, "feet"),
  11381. weight: math.unit(150, "lb"),
  11382. name: "Front",
  11383. image: {
  11384. source: "./media/characters/kuiper-vanrel/front.svg",
  11385. extra: 1118 / 1068,
  11386. bottom: 0.09
  11387. }
  11388. },
  11389. foot: {
  11390. height: math.unit(0.55, "meters"),
  11391. name: "Foot",
  11392. image: {
  11393. source: "./media/characters/kuiper-vanrel/foot.svg",
  11394. }
  11395. },
  11396. battle: {
  11397. height: math.unit(6.824, "feet"),
  11398. weight: math.unit(150, "lb"),
  11399. name: "Battle",
  11400. image: {
  11401. source: "./media/characters/kuiper-vanrel/battle.svg",
  11402. extra: 1466 / 1327,
  11403. bottom: 29 / 1492.5
  11404. }
  11405. },
  11406. battleAlt: {
  11407. height: math.unit(6.824, "feet"),
  11408. weight: math.unit(150, "lb"),
  11409. name: "Battle (Alt)",
  11410. image: {
  11411. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11412. extra: 2081 / 1965,
  11413. bottom: 40 / 2121
  11414. }
  11415. },
  11416. },
  11417. [
  11418. {
  11419. name: "Normal",
  11420. height: math.unit(7 + 5 / 12, "feet"),
  11421. default: true
  11422. },
  11423. ]
  11424. ))
  11425. characterMakers.push(() => makeCharacter(
  11426. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11427. {
  11428. front: {
  11429. height: math.unit(8 + 5 / 12, "feet"),
  11430. weight: math.unit(150, "lb"),
  11431. name: "Front",
  11432. image: {
  11433. source: "./media/characters/keset-vanrel/front.svg",
  11434. extra: 1150 / 1084,
  11435. bottom: 0.05
  11436. }
  11437. },
  11438. hand: {
  11439. height: math.unit(0.6, "meters"),
  11440. name: "Hand",
  11441. image: {
  11442. source: "./media/characters/keset-vanrel/hand.svg"
  11443. }
  11444. },
  11445. foot: {
  11446. height: math.unit(0.94978, "meters"),
  11447. name: "Foot",
  11448. image: {
  11449. source: "./media/characters/keset-vanrel/foot.svg"
  11450. }
  11451. },
  11452. battle: {
  11453. height: math.unit(7.408, "feet"),
  11454. weight: math.unit(150, "lb"),
  11455. name: "Battle",
  11456. image: {
  11457. source: "./media/characters/keset-vanrel/battle.svg",
  11458. extra: 1890 / 1386,
  11459. bottom: 73.28 / 1970
  11460. }
  11461. },
  11462. },
  11463. [
  11464. {
  11465. name: "Normal",
  11466. height: math.unit(8 + 5 / 12, "feet"),
  11467. default: true
  11468. },
  11469. ]
  11470. ))
  11471. characterMakers.push(() => makeCharacter(
  11472. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11473. {
  11474. front: {
  11475. height: math.unit(6, "feet"),
  11476. weight: math.unit(150, "lb"),
  11477. name: "Front",
  11478. image: {
  11479. source: "./media/characters/neos/front.svg",
  11480. extra: 1696 / 992,
  11481. bottom: 0.14
  11482. }
  11483. },
  11484. },
  11485. [
  11486. {
  11487. name: "Normal",
  11488. height: math.unit(54, "cm"),
  11489. default: true
  11490. },
  11491. {
  11492. name: "Macro",
  11493. height: math.unit(100, "m")
  11494. },
  11495. {
  11496. name: "Megamacro",
  11497. height: math.unit(10, "km")
  11498. },
  11499. {
  11500. name: "Megamacro+",
  11501. height: math.unit(100, "km")
  11502. },
  11503. {
  11504. name: "Gigamacro",
  11505. height: math.unit(100, "Mm")
  11506. },
  11507. {
  11508. name: "Teramacro",
  11509. height: math.unit(100, "Gm")
  11510. },
  11511. {
  11512. name: "Examacro",
  11513. height: math.unit(100, "Em")
  11514. },
  11515. {
  11516. name: "Godly",
  11517. height: math.unit(10000, "Ym")
  11518. },
  11519. {
  11520. name: "Beyond Godly",
  11521. height: math.unit(25, "multiverses")
  11522. },
  11523. ]
  11524. ))
  11525. characterMakers.push(() => makeCharacter(
  11526. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11527. {
  11528. feminine: {
  11529. height: math.unit(5, "feet"),
  11530. weight: math.unit(100, "lb"),
  11531. name: "Feminine",
  11532. image: {
  11533. source: "./media/characters/sammy-mouse/feminine.svg",
  11534. extra: 2526 / 2425,
  11535. bottom: 0.123
  11536. }
  11537. },
  11538. masculine: {
  11539. height: math.unit(5, "feet"),
  11540. weight: math.unit(100, "lb"),
  11541. name: "Masculine",
  11542. image: {
  11543. source: "./media/characters/sammy-mouse/masculine.svg",
  11544. extra: 2526 / 2425,
  11545. bottom: 0.123
  11546. }
  11547. },
  11548. },
  11549. [
  11550. {
  11551. name: "Micro",
  11552. height: math.unit(5, "inches")
  11553. },
  11554. {
  11555. name: "Normal",
  11556. height: math.unit(5, "feet"),
  11557. default: true
  11558. },
  11559. {
  11560. name: "Macro",
  11561. height: math.unit(60, "feet")
  11562. },
  11563. ]
  11564. ))
  11565. characterMakers.push(() => makeCharacter(
  11566. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11567. {
  11568. front: {
  11569. height: math.unit(4, "feet"),
  11570. weight: math.unit(50, "lb"),
  11571. name: "Front",
  11572. image: {
  11573. source: "./media/characters/kole/front.svg",
  11574. extra: 1423 / 1303,
  11575. bottom: 0.025
  11576. }
  11577. },
  11578. back: {
  11579. height: math.unit(4, "feet"),
  11580. weight: math.unit(50, "lb"),
  11581. name: "Back",
  11582. image: {
  11583. source: "./media/characters/kole/back.svg",
  11584. extra: 1426 / 1280,
  11585. bottom: 0.02
  11586. }
  11587. },
  11588. },
  11589. [
  11590. {
  11591. name: "Normal",
  11592. height: math.unit(4, "feet"),
  11593. default: true
  11594. },
  11595. ]
  11596. ))
  11597. characterMakers.push(() => makeCharacter(
  11598. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11599. {
  11600. front: {
  11601. height: math.unit(2 + 6 / 12, "feet"),
  11602. weight: math.unit(20, "lb"),
  11603. name: "Front",
  11604. image: {
  11605. source: "./media/characters/rufran/front.svg",
  11606. extra: 2041 / 1839,
  11607. bottom: 0.055
  11608. }
  11609. },
  11610. back: {
  11611. height: math.unit(2 + 6 / 12, "feet"),
  11612. weight: math.unit(20, "lb"),
  11613. name: "Back",
  11614. image: {
  11615. source: "./media/characters/rufran/back.svg",
  11616. extra: 2054 / 1839,
  11617. bottom: 0.01
  11618. }
  11619. },
  11620. hand: {
  11621. height: math.unit(0.2166, "meters"),
  11622. name: "Hand",
  11623. image: {
  11624. source: "./media/characters/rufran/hand.svg"
  11625. }
  11626. },
  11627. foot: {
  11628. height: math.unit(0.185, "meters"),
  11629. name: "Foot",
  11630. image: {
  11631. source: "./media/characters/rufran/foot.svg"
  11632. }
  11633. },
  11634. },
  11635. [
  11636. {
  11637. name: "Micro",
  11638. height: math.unit(1, "inch")
  11639. },
  11640. {
  11641. name: "Normal",
  11642. height: math.unit(2 + 6 / 12, "feet"),
  11643. default: true
  11644. },
  11645. {
  11646. name: "Big",
  11647. height: math.unit(60, "feet")
  11648. },
  11649. {
  11650. name: "Macro",
  11651. height: math.unit(325, "feet")
  11652. },
  11653. ]
  11654. ))
  11655. characterMakers.push(() => makeCharacter(
  11656. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11657. {
  11658. front: {
  11659. height: math.unit(0.3, "meters"),
  11660. weight: math.unit(3.5, "kg"),
  11661. name: "Front",
  11662. image: {
  11663. source: "./media/characters/chip/front.svg",
  11664. extra: 748 / 674
  11665. }
  11666. },
  11667. },
  11668. [
  11669. {
  11670. name: "Micro",
  11671. height: math.unit(1, "inch"),
  11672. default: true
  11673. },
  11674. ]
  11675. ))
  11676. characterMakers.push(() => makeCharacter(
  11677. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11678. {
  11679. side: {
  11680. height: math.unit(2.3, "meters"),
  11681. weight: math.unit(3500, "lb"),
  11682. name: "Side",
  11683. image: {
  11684. source: "./media/characters/torvid/side.svg",
  11685. extra: 1972 / 722,
  11686. bottom: 0.035
  11687. }
  11688. },
  11689. },
  11690. [
  11691. {
  11692. name: "Normal",
  11693. height: math.unit(2.3, "meters"),
  11694. default: true
  11695. },
  11696. ]
  11697. ))
  11698. characterMakers.push(() => makeCharacter(
  11699. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11700. {
  11701. front: {
  11702. height: math.unit(2, "meters"),
  11703. weight: math.unit(150.5, "kg"),
  11704. name: "Front",
  11705. image: {
  11706. source: "./media/characters/susan/front.svg",
  11707. extra: 693 / 635,
  11708. bottom: 0.05
  11709. }
  11710. },
  11711. },
  11712. [
  11713. {
  11714. name: "Megamacro",
  11715. height: math.unit(505, "miles"),
  11716. default: true
  11717. },
  11718. ]
  11719. ))
  11720. characterMakers.push(() => makeCharacter(
  11721. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11722. {
  11723. front: {
  11724. height: math.unit(6, "feet"),
  11725. weight: math.unit(150, "lb"),
  11726. name: "Front",
  11727. image: {
  11728. source: "./media/characters/raindrops/front.svg",
  11729. extra: 2655 / 2461,
  11730. bottom: 49 / 2705
  11731. }
  11732. },
  11733. back: {
  11734. height: math.unit(6, "feet"),
  11735. weight: math.unit(150, "lb"),
  11736. name: "Back",
  11737. image: {
  11738. source: "./media/characters/raindrops/back.svg",
  11739. extra: 2574 / 2400,
  11740. bottom: 65 / 2634
  11741. }
  11742. },
  11743. },
  11744. [
  11745. {
  11746. name: "Micro",
  11747. height: math.unit(6, "inches")
  11748. },
  11749. {
  11750. name: "Normal",
  11751. height: math.unit(6 + 2 / 12, "feet")
  11752. },
  11753. {
  11754. name: "Macro",
  11755. height: math.unit(131, "feet"),
  11756. default: true
  11757. },
  11758. {
  11759. name: "Megamacro",
  11760. height: math.unit(15, "miles")
  11761. },
  11762. {
  11763. name: "Gigamacro",
  11764. height: math.unit(4000, "miles")
  11765. },
  11766. {
  11767. name: "Teramacro",
  11768. height: math.unit(315000, "miles")
  11769. },
  11770. ]
  11771. ))
  11772. characterMakers.push(() => makeCharacter(
  11773. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11774. {
  11775. front: {
  11776. height: math.unit(2.794, "meters"),
  11777. weight: math.unit(325, "kg"),
  11778. name: "Front",
  11779. image: {
  11780. source: "./media/characters/tezwa/front.svg",
  11781. extra: 2083 / 1906,
  11782. bottom: 0.031
  11783. }
  11784. },
  11785. foot: {
  11786. height: math.unit(0.687, "meters"),
  11787. name: "Foot",
  11788. image: {
  11789. source: "./media/characters/tezwa/foot.svg"
  11790. }
  11791. },
  11792. },
  11793. [
  11794. {
  11795. name: "Normal",
  11796. height: math.unit(9 + 2 / 12, "feet"),
  11797. default: true
  11798. },
  11799. ]
  11800. ))
  11801. characterMakers.push(() => makeCharacter(
  11802. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11803. {
  11804. front: {
  11805. height: math.unit(58, "feet"),
  11806. weight: math.unit(89000, "lb"),
  11807. name: "Front",
  11808. image: {
  11809. source: "./media/characters/typhus/front.svg",
  11810. extra: 816 / 800,
  11811. bottom: 0.065
  11812. }
  11813. },
  11814. },
  11815. [
  11816. {
  11817. name: "Macro",
  11818. height: math.unit(58, "feet"),
  11819. default: true
  11820. },
  11821. ]
  11822. ))
  11823. characterMakers.push(() => makeCharacter(
  11824. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11825. {
  11826. front: {
  11827. height: math.unit(12, "feet"),
  11828. weight: math.unit(6, "tonnes"),
  11829. name: "Front",
  11830. image: {
  11831. source: "./media/characters/lyra-von-wulf/front.svg",
  11832. extra: 1,
  11833. bottom: 0.10
  11834. }
  11835. },
  11836. frontMecha: {
  11837. height: math.unit(12, "feet"),
  11838. weight: math.unit(12, "tonnes"),
  11839. name: "Front (Mecha)",
  11840. image: {
  11841. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11842. extra: 1,
  11843. bottom: 0.042
  11844. }
  11845. },
  11846. maw: {
  11847. height: math.unit(2.2, "feet"),
  11848. name: "Maw",
  11849. image: {
  11850. source: "./media/characters/lyra-von-wulf/maw.svg"
  11851. }
  11852. },
  11853. },
  11854. [
  11855. {
  11856. name: "Normal",
  11857. height: math.unit(12, "feet"),
  11858. default: true
  11859. },
  11860. {
  11861. name: "Classic",
  11862. height: math.unit(50, "feet")
  11863. },
  11864. {
  11865. name: "Macro",
  11866. height: math.unit(500, "feet")
  11867. },
  11868. {
  11869. name: "Megamacro",
  11870. height: math.unit(1, "mile")
  11871. },
  11872. {
  11873. name: "Gigamacro",
  11874. height: math.unit(400, "miles")
  11875. },
  11876. {
  11877. name: "Teramacro",
  11878. height: math.unit(22000, "miles")
  11879. },
  11880. {
  11881. name: "Solarmacro",
  11882. height: math.unit(8600000, "miles")
  11883. },
  11884. {
  11885. name: "Galactic",
  11886. height: math.unit(1057000, "lightyears")
  11887. },
  11888. ]
  11889. ))
  11890. characterMakers.push(() => makeCharacter(
  11891. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11892. {
  11893. front: {
  11894. height: math.unit(6 + 10 / 12, "feet"),
  11895. weight: math.unit(150, "lb"),
  11896. name: "Front",
  11897. image: {
  11898. source: "./media/characters/dixon/front.svg",
  11899. extra: 3361 / 3209,
  11900. bottom: 0.01
  11901. }
  11902. },
  11903. },
  11904. [
  11905. {
  11906. name: "Normal",
  11907. height: math.unit(6 + 10 / 12, "feet"),
  11908. default: true
  11909. },
  11910. {
  11911. name: "Big",
  11912. height: math.unit(12, "meters")
  11913. },
  11914. {
  11915. name: "Macro",
  11916. height: math.unit(500, "meters")
  11917. },
  11918. {
  11919. name: "Megamacro",
  11920. height: math.unit(2, "km")
  11921. },
  11922. ]
  11923. ))
  11924. characterMakers.push(() => makeCharacter(
  11925. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11926. {
  11927. front: {
  11928. height: math.unit(185, "cm"),
  11929. weight: math.unit(68, "kg"),
  11930. name: "Front",
  11931. image: {
  11932. source: "./media/characters/kauko/front.svg",
  11933. extra: 1455 / 1421,
  11934. bottom: 0.03
  11935. }
  11936. },
  11937. back: {
  11938. height: math.unit(185, "cm"),
  11939. weight: math.unit(68, "kg"),
  11940. name: "Back",
  11941. image: {
  11942. source: "./media/characters/kauko/back.svg",
  11943. extra: 1455 / 1421,
  11944. bottom: 0.004
  11945. }
  11946. },
  11947. },
  11948. [
  11949. {
  11950. name: "Normal",
  11951. height: math.unit(185, "cm"),
  11952. default: true
  11953. },
  11954. ]
  11955. ))
  11956. characterMakers.push(() => makeCharacter(
  11957. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11958. {
  11959. front: {
  11960. height: math.unit(6, "feet"),
  11961. weight: math.unit(150, "kg"),
  11962. name: "Front",
  11963. image: {
  11964. source: "./media/characters/varg/front.svg",
  11965. extra: 1108 / 1018,
  11966. bottom: 0.0375
  11967. }
  11968. },
  11969. },
  11970. [
  11971. {
  11972. name: "Normal",
  11973. height: math.unit(5, "meters")
  11974. },
  11975. {
  11976. name: "Macro",
  11977. height: math.unit(200, "meters")
  11978. },
  11979. {
  11980. name: "Megamacro",
  11981. height: math.unit(20, "kilometers")
  11982. },
  11983. {
  11984. name: "True Size",
  11985. height: math.unit(211, "km"),
  11986. default: true
  11987. },
  11988. {
  11989. name: "Gigamacro",
  11990. height: math.unit(1000, "km")
  11991. },
  11992. {
  11993. name: "Gigamacro+",
  11994. height: math.unit(8000, "km")
  11995. },
  11996. {
  11997. name: "Teramacro",
  11998. height: math.unit(1000000, "km")
  11999. },
  12000. ]
  12001. ))
  12002. characterMakers.push(() => makeCharacter(
  12003. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12004. {
  12005. front: {
  12006. height: math.unit(7 + 7 / 12, "feet"),
  12007. weight: math.unit(267, "lb"),
  12008. name: "Front",
  12009. image: {
  12010. source: "./media/characters/dayza/front.svg",
  12011. extra: 1262 / 1200,
  12012. bottom: 0.035
  12013. }
  12014. },
  12015. side: {
  12016. height: math.unit(7 + 7 / 12, "feet"),
  12017. weight: math.unit(267, "lb"),
  12018. name: "Side",
  12019. image: {
  12020. source: "./media/characters/dayza/side.svg",
  12021. extra: 1295 / 1245,
  12022. bottom: 0.05
  12023. }
  12024. },
  12025. back: {
  12026. height: math.unit(7 + 7 / 12, "feet"),
  12027. weight: math.unit(267, "lb"),
  12028. name: "Back",
  12029. image: {
  12030. source: "./media/characters/dayza/back.svg",
  12031. extra: 1241 / 1170
  12032. }
  12033. },
  12034. },
  12035. [
  12036. {
  12037. name: "Normal",
  12038. height: math.unit(7 + 7 / 12, "feet"),
  12039. default: true
  12040. },
  12041. {
  12042. name: "Macro",
  12043. height: math.unit(155, "feet")
  12044. },
  12045. ]
  12046. ))
  12047. characterMakers.push(() => makeCharacter(
  12048. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12049. {
  12050. front: {
  12051. height: math.unit(6 + 5 / 12, "feet"),
  12052. weight: math.unit(160, "lb"),
  12053. name: "Front",
  12054. image: {
  12055. source: "./media/characters/xanthos/front.svg",
  12056. extra: 1,
  12057. bottom: 0.04
  12058. }
  12059. },
  12060. back: {
  12061. height: math.unit(6 + 5 / 12, "feet"),
  12062. weight: math.unit(160, "lb"),
  12063. name: "Back",
  12064. image: {
  12065. source: "./media/characters/xanthos/back.svg",
  12066. extra: 1,
  12067. bottom: 0.03
  12068. }
  12069. },
  12070. hand: {
  12071. height: math.unit(0.928, "feet"),
  12072. name: "Hand",
  12073. image: {
  12074. source: "./media/characters/xanthos/hand.svg"
  12075. }
  12076. },
  12077. foot: {
  12078. height: math.unit(1.286, "feet"),
  12079. name: "Foot",
  12080. image: {
  12081. source: "./media/characters/xanthos/foot.svg"
  12082. }
  12083. },
  12084. },
  12085. [
  12086. {
  12087. name: "Normal",
  12088. height: math.unit(6 + 5 / 12, "feet"),
  12089. default: true
  12090. },
  12091. {
  12092. name: "Normal+",
  12093. height: math.unit(6, "meters")
  12094. },
  12095. {
  12096. name: "Macro",
  12097. height: math.unit(40, "feet")
  12098. },
  12099. {
  12100. name: "Macro+",
  12101. height: math.unit(200, "meters")
  12102. },
  12103. {
  12104. name: "Megamacro",
  12105. height: math.unit(20, "km")
  12106. },
  12107. {
  12108. name: "Megamacro+",
  12109. height: math.unit(100, "km")
  12110. },
  12111. ]
  12112. ))
  12113. characterMakers.push(() => makeCharacter(
  12114. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12115. {
  12116. front: {
  12117. height: math.unit(6 + 3 / 12, "feet"),
  12118. weight: math.unit(215, "lb"),
  12119. name: "Front",
  12120. image: {
  12121. source: "./media/characters/grynn/front.svg",
  12122. extra: 4627 / 4209,
  12123. bottom: 0.047
  12124. }
  12125. },
  12126. },
  12127. [
  12128. {
  12129. name: "Micro",
  12130. height: math.unit(6, "inches")
  12131. },
  12132. {
  12133. name: "Normal",
  12134. height: math.unit(6 + 3 / 12, "feet"),
  12135. default: true
  12136. },
  12137. {
  12138. name: "Big",
  12139. height: math.unit(104, "feet")
  12140. },
  12141. {
  12142. name: "Macro",
  12143. height: math.unit(944, "feet")
  12144. },
  12145. {
  12146. name: "Macro+",
  12147. height: math.unit(9480, "feet")
  12148. },
  12149. {
  12150. name: "Megamacro",
  12151. height: math.unit(78752, "feet")
  12152. },
  12153. {
  12154. name: "Megamacro+",
  12155. height: math.unit(630128, "feet")
  12156. },
  12157. {
  12158. name: "Megamacro++",
  12159. height: math.unit(3150695, "feet")
  12160. },
  12161. ]
  12162. ))
  12163. characterMakers.push(() => makeCharacter(
  12164. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12165. {
  12166. front: {
  12167. height: math.unit(7 + 5 / 12, "feet"),
  12168. weight: math.unit(450, "lb"),
  12169. name: "Front",
  12170. image: {
  12171. source: "./media/characters/mocha-aura/front.svg",
  12172. extra: 1907 / 1817,
  12173. bottom: 0.04
  12174. }
  12175. },
  12176. back: {
  12177. height: math.unit(7 + 5 / 12, "feet"),
  12178. weight: math.unit(450, "lb"),
  12179. name: "Back",
  12180. image: {
  12181. source: "./media/characters/mocha-aura/back.svg",
  12182. extra: 1900 / 1825,
  12183. bottom: 0.045
  12184. }
  12185. },
  12186. },
  12187. [
  12188. {
  12189. name: "Nano",
  12190. height: math.unit(1, "nm")
  12191. },
  12192. {
  12193. name: "Megamicro",
  12194. height: math.unit(1, "mm")
  12195. },
  12196. {
  12197. name: "Micro",
  12198. height: math.unit(3, "inches")
  12199. },
  12200. {
  12201. name: "Normal",
  12202. height: math.unit(7 + 5 / 12, "feet"),
  12203. default: true
  12204. },
  12205. {
  12206. name: "Macro",
  12207. height: math.unit(30, "feet")
  12208. },
  12209. {
  12210. name: "Megamacro",
  12211. height: math.unit(3500, "feet")
  12212. },
  12213. {
  12214. name: "Teramacro",
  12215. height: math.unit(500000, "miles")
  12216. },
  12217. {
  12218. name: "Petamacro",
  12219. height: math.unit(50000000000000000, "parsecs")
  12220. },
  12221. ]
  12222. ))
  12223. characterMakers.push(() => makeCharacter(
  12224. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12225. {
  12226. front: {
  12227. height: math.unit(6, "feet"),
  12228. weight: math.unit(150, "lb"),
  12229. name: "Front",
  12230. image: {
  12231. source: "./media/characters/ilisha-devya/front.svg",
  12232. extra: 1,
  12233. bottom: 0.175
  12234. }
  12235. },
  12236. back: {
  12237. height: math.unit(6, "feet"),
  12238. weight: math.unit(150, "lb"),
  12239. name: "Back",
  12240. image: {
  12241. source: "./media/characters/ilisha-devya/back.svg",
  12242. extra: 1,
  12243. bottom: 0.015
  12244. }
  12245. },
  12246. },
  12247. [
  12248. {
  12249. name: "Macro",
  12250. height: math.unit(500, "feet"),
  12251. default: true
  12252. },
  12253. {
  12254. name: "Megamacro",
  12255. height: math.unit(10, "miles")
  12256. },
  12257. {
  12258. name: "Gigamacro",
  12259. height: math.unit(100000, "miles")
  12260. },
  12261. {
  12262. name: "Examacro",
  12263. height: math.unit(1e9, "lightyears")
  12264. },
  12265. {
  12266. name: "Omniversal",
  12267. height: math.unit(1e33, "lightyears")
  12268. },
  12269. {
  12270. name: "Beyond Infinite",
  12271. height: math.unit(1e100, "lightyears")
  12272. },
  12273. ]
  12274. ))
  12275. characterMakers.push(() => makeCharacter(
  12276. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12277. {
  12278. Side: {
  12279. height: math.unit(6, "feet"),
  12280. weight: math.unit(150, "lb"),
  12281. name: "Side",
  12282. image: {
  12283. source: "./media/characters/mira/side.svg",
  12284. extra: 900 / 799,
  12285. bottom: 0.02
  12286. }
  12287. },
  12288. },
  12289. [
  12290. {
  12291. name: "Human Size",
  12292. height: math.unit(6, "feet")
  12293. },
  12294. {
  12295. name: "Macro",
  12296. height: math.unit(100, "feet"),
  12297. default: true
  12298. },
  12299. {
  12300. name: "Megamacro",
  12301. height: math.unit(10, "miles")
  12302. },
  12303. {
  12304. name: "Gigamacro",
  12305. height: math.unit(25000, "miles")
  12306. },
  12307. {
  12308. name: "Teramacro",
  12309. height: math.unit(300, "AU")
  12310. },
  12311. {
  12312. name: "Full Size",
  12313. height: math.unit(4.5e10, "lightyears")
  12314. },
  12315. ]
  12316. ))
  12317. characterMakers.push(() => makeCharacter(
  12318. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12319. {
  12320. front: {
  12321. height: math.unit(6, "feet"),
  12322. weight: math.unit(150, "lb"),
  12323. name: "Front",
  12324. image: {
  12325. source: "./media/characters/holly/front.svg",
  12326. extra: 639 / 606
  12327. }
  12328. },
  12329. back: {
  12330. height: math.unit(6, "feet"),
  12331. weight: math.unit(150, "lb"),
  12332. name: "Back",
  12333. image: {
  12334. source: "./media/characters/holly/back.svg",
  12335. extra: 623 / 598
  12336. }
  12337. },
  12338. frontWorking: {
  12339. height: math.unit(6, "feet"),
  12340. weight: math.unit(150, "lb"),
  12341. name: "Front (Working)",
  12342. image: {
  12343. source: "./media/characters/holly/front-working.svg",
  12344. extra: 607 / 577,
  12345. bottom: 0.048
  12346. }
  12347. },
  12348. },
  12349. [
  12350. {
  12351. name: "Normal",
  12352. height: math.unit(12 + 3 / 12, "feet"),
  12353. default: true
  12354. },
  12355. ]
  12356. ))
  12357. characterMakers.push(() => makeCharacter(
  12358. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12359. {
  12360. front: {
  12361. height: math.unit(6, "feet"),
  12362. weight: math.unit(150, "lb"),
  12363. name: "Front",
  12364. image: {
  12365. source: "./media/characters/porter/front.svg",
  12366. extra: 1,
  12367. bottom: 0.01
  12368. }
  12369. },
  12370. frontRobes: {
  12371. height: math.unit(6, "feet"),
  12372. weight: math.unit(150, "lb"),
  12373. name: "Front (Robes)",
  12374. image: {
  12375. source: "./media/characters/porter/front-robes.svg",
  12376. extra: 1.01,
  12377. bottom: 0.01
  12378. }
  12379. },
  12380. },
  12381. [
  12382. {
  12383. name: "Normal",
  12384. height: math.unit(11 + 9 / 12, "feet"),
  12385. default: true
  12386. },
  12387. ]
  12388. ))
  12389. characterMakers.push(() => makeCharacter(
  12390. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12391. {
  12392. legendary: {
  12393. height: math.unit(6, "feet"),
  12394. weight: math.unit(150, "lb"),
  12395. name: "Legendary",
  12396. image: {
  12397. source: "./media/characters/lucy/legendary.svg",
  12398. extra: 1355 / 1100,
  12399. bottom: 0.045
  12400. }
  12401. },
  12402. },
  12403. [
  12404. {
  12405. name: "Legendary",
  12406. height: math.unit(86882 * 2, "miles"),
  12407. default: true
  12408. },
  12409. ]
  12410. ))
  12411. characterMakers.push(() => makeCharacter(
  12412. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12413. {
  12414. front: {
  12415. height: math.unit(6, "feet"),
  12416. weight: math.unit(150, "lb"),
  12417. name: "Front",
  12418. image: {
  12419. source: "./media/characters/drusilla/front.svg",
  12420. extra: 678 / 635,
  12421. bottom: 0.03
  12422. }
  12423. },
  12424. back: {
  12425. height: math.unit(6, "feet"),
  12426. weight: math.unit(150, "lb"),
  12427. name: "Back",
  12428. image: {
  12429. source: "./media/characters/drusilla/back.svg",
  12430. extra: 678 / 635,
  12431. bottom: 0.005
  12432. }
  12433. },
  12434. },
  12435. [
  12436. {
  12437. name: "Macro",
  12438. height: math.unit(100, "feet")
  12439. },
  12440. {
  12441. name: "Canon Height",
  12442. height: math.unit(2000, "feet"),
  12443. default: true
  12444. },
  12445. ]
  12446. ))
  12447. characterMakers.push(() => makeCharacter(
  12448. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12449. {
  12450. front: {
  12451. height: math.unit(6, "feet"),
  12452. weight: math.unit(180, "lb"),
  12453. name: "Front",
  12454. image: {
  12455. source: "./media/characters/renard-thatch/front.svg",
  12456. extra: 2411 / 2275,
  12457. bottom: 0.01
  12458. }
  12459. },
  12460. frontPosing: {
  12461. height: math.unit(6, "feet"),
  12462. weight: math.unit(180, "lb"),
  12463. name: "Front (Posing)",
  12464. image: {
  12465. source: "./media/characters/renard-thatch/front-posing.svg",
  12466. extra: 2381 / 2261,
  12467. bottom: 0.01
  12468. }
  12469. },
  12470. back: {
  12471. height: math.unit(6, "feet"),
  12472. weight: math.unit(180, "lb"),
  12473. name: "Back",
  12474. image: {
  12475. source: "./media/characters/renard-thatch/back.svg",
  12476. extra: 2428 / 2288
  12477. }
  12478. },
  12479. },
  12480. [
  12481. {
  12482. name: "Micro",
  12483. height: math.unit(3, "inches")
  12484. },
  12485. {
  12486. name: "Default",
  12487. height: math.unit(6, "feet"),
  12488. default: true
  12489. },
  12490. {
  12491. name: "Macro",
  12492. height: math.unit(75, "feet")
  12493. },
  12494. ]
  12495. ))
  12496. characterMakers.push(() => makeCharacter(
  12497. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12498. {
  12499. front: {
  12500. height: math.unit(1450, "feet"),
  12501. weight: math.unit(1.21e6, "tons"),
  12502. name: "Front",
  12503. image: {
  12504. source: "./media/characters/sekvra/front.svg",
  12505. extra: 1,
  12506. bottom: 0.03
  12507. }
  12508. },
  12509. frontClothed: {
  12510. height: math.unit(1450, "feet"),
  12511. weight: math.unit(1.21e6, "tons"),
  12512. name: "Front (Clothed)",
  12513. image: {
  12514. source: "./media/characters/sekvra/front-clothed.svg",
  12515. extra: 1,
  12516. bottom: 0.03
  12517. }
  12518. },
  12519. side: {
  12520. height: math.unit(1450, "feet"),
  12521. weight: math.unit(1.21e6, "tons"),
  12522. name: "Side",
  12523. image: {
  12524. source: "./media/characters/sekvra/side.svg",
  12525. extra: 1,
  12526. bottom: 0.025
  12527. }
  12528. },
  12529. back: {
  12530. height: math.unit(1450, "feet"),
  12531. weight: math.unit(1.21e6, "tons"),
  12532. name: "Back",
  12533. image: {
  12534. source: "./media/characters/sekvra/back.svg",
  12535. extra: 1,
  12536. bottom: 0.005
  12537. }
  12538. },
  12539. },
  12540. [
  12541. {
  12542. name: "Macro",
  12543. height: math.unit(1450, "feet"),
  12544. default: true
  12545. },
  12546. {
  12547. name: "Megamacro",
  12548. height: math.unit(15000, "feet")
  12549. },
  12550. ]
  12551. ))
  12552. characterMakers.push(() => makeCharacter(
  12553. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12554. {
  12555. front: {
  12556. height: math.unit(6, "feet"),
  12557. weight: math.unit(150, "lb"),
  12558. name: "Front",
  12559. image: {
  12560. source: "./media/characters/carmine/front.svg",
  12561. extra: 1,
  12562. bottom: 0.035
  12563. }
  12564. },
  12565. frontArmor: {
  12566. height: math.unit(6, "feet"),
  12567. weight: math.unit(150, "lb"),
  12568. name: "Front (Armor)",
  12569. image: {
  12570. source: "./media/characters/carmine/front-armor.svg",
  12571. extra: 1,
  12572. bottom: 0.035
  12573. }
  12574. },
  12575. },
  12576. [
  12577. {
  12578. name: "Large",
  12579. height: math.unit(1, "mile")
  12580. },
  12581. {
  12582. name: "Huge",
  12583. height: math.unit(40, "miles"),
  12584. default: true
  12585. },
  12586. {
  12587. name: "Colossal",
  12588. height: math.unit(2500, "miles")
  12589. },
  12590. ]
  12591. ))
  12592. characterMakers.push(() => makeCharacter(
  12593. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12594. {
  12595. front: {
  12596. height: math.unit(6, "feet"),
  12597. weight: math.unit(150, "lb"),
  12598. name: "Front",
  12599. image: {
  12600. source: "./media/characters/elyssia/front.svg",
  12601. extra: 2201 / 2035,
  12602. bottom: 0.05
  12603. }
  12604. },
  12605. frontClothed: {
  12606. height: math.unit(6, "feet"),
  12607. weight: math.unit(150, "lb"),
  12608. name: "Front (Clothed)",
  12609. image: {
  12610. source: "./media/characters/elyssia/front-clothed.svg",
  12611. extra: 2201 / 2035,
  12612. bottom: 0.05
  12613. }
  12614. },
  12615. back: {
  12616. height: math.unit(6, "feet"),
  12617. weight: math.unit(150, "lb"),
  12618. name: "Back",
  12619. image: {
  12620. source: "./media/characters/elyssia/back.svg",
  12621. extra: 2201 / 2035,
  12622. bottom: 0.013
  12623. }
  12624. },
  12625. },
  12626. [
  12627. {
  12628. name: "Smaller",
  12629. height: math.unit(150, "feet")
  12630. },
  12631. {
  12632. name: "Standard",
  12633. height: math.unit(1400, "feet"),
  12634. default: true
  12635. },
  12636. {
  12637. name: "Distracted",
  12638. height: math.unit(15000, "feet")
  12639. },
  12640. ]
  12641. ))
  12642. characterMakers.push(() => makeCharacter(
  12643. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12644. {
  12645. front: {
  12646. height: math.unit(7 + 4 / 12, "feet"),
  12647. weight: math.unit(500, "lb"),
  12648. name: "Front",
  12649. image: {
  12650. source: "./media/characters/geno-maxwell/front.svg",
  12651. extra: 2207 / 2040,
  12652. bottom: 0.015
  12653. }
  12654. },
  12655. },
  12656. [
  12657. {
  12658. name: "Micro",
  12659. height: math.unit(3, "inches")
  12660. },
  12661. {
  12662. name: "Normal",
  12663. height: math.unit(7 + 4 / 12, "feet"),
  12664. default: true
  12665. },
  12666. {
  12667. name: "Macro",
  12668. height: math.unit(220, "feet")
  12669. },
  12670. {
  12671. name: "Megamacro",
  12672. height: math.unit(11, "miles")
  12673. },
  12674. ]
  12675. ))
  12676. characterMakers.push(() => makeCharacter(
  12677. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12678. {
  12679. front: {
  12680. height: math.unit(7 + 4 / 12, "feet"),
  12681. weight: math.unit(500, "lb"),
  12682. name: "Front",
  12683. image: {
  12684. source: "./media/characters/regena-maxwell/front.svg",
  12685. extra: 3115 / 2770,
  12686. bottom: 0.02
  12687. }
  12688. },
  12689. },
  12690. [
  12691. {
  12692. name: "Normal",
  12693. height: math.unit(7 + 4 / 12, "feet"),
  12694. default: true
  12695. },
  12696. {
  12697. name: "Macro",
  12698. height: math.unit(220, "feet")
  12699. },
  12700. {
  12701. name: "Megamacro",
  12702. height: math.unit(11, "miles")
  12703. },
  12704. ]
  12705. ))
  12706. characterMakers.push(() => makeCharacter(
  12707. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12708. {
  12709. front: {
  12710. height: math.unit(6, "feet"),
  12711. weight: math.unit(150, "lb"),
  12712. name: "Front",
  12713. image: {
  12714. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12715. extra: 860 / 690,
  12716. bottom: 0.03
  12717. }
  12718. },
  12719. },
  12720. [
  12721. {
  12722. name: "Normal",
  12723. height: math.unit(1.7, "meters"),
  12724. default: true
  12725. },
  12726. ]
  12727. ))
  12728. characterMakers.push(() => makeCharacter(
  12729. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12730. {
  12731. front: {
  12732. height: math.unit(6, "feet"),
  12733. weight: math.unit(150, "lb"),
  12734. name: "Front",
  12735. image: {
  12736. source: "./media/characters/quilly/front.svg",
  12737. extra: 890 / 776
  12738. }
  12739. },
  12740. },
  12741. [
  12742. {
  12743. name: "Gigamacro",
  12744. height: math.unit(404090, "miles"),
  12745. default: true
  12746. },
  12747. ]
  12748. ))
  12749. characterMakers.push(() => makeCharacter(
  12750. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12751. {
  12752. front: {
  12753. height: math.unit(7 + 8 / 12, "feet"),
  12754. weight: math.unit(350, "lb"),
  12755. name: "Front",
  12756. image: {
  12757. source: "./media/characters/tempest/front.svg",
  12758. extra: 1175 / 1086,
  12759. bottom: 0.02
  12760. }
  12761. },
  12762. },
  12763. [
  12764. {
  12765. name: "Normal",
  12766. height: math.unit(7 + 8 / 12, "feet"),
  12767. default: true
  12768. },
  12769. ]
  12770. ))
  12771. characterMakers.push(() => makeCharacter(
  12772. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12773. {
  12774. side: {
  12775. height: math.unit(4 + 5 / 12, "feet"),
  12776. weight: math.unit(80, "lb"),
  12777. name: "Side",
  12778. image: {
  12779. source: "./media/characters/rodger/side.svg",
  12780. extra: 1235 / 1118
  12781. }
  12782. },
  12783. },
  12784. [
  12785. {
  12786. name: "Micro",
  12787. height: math.unit(1, "inch")
  12788. },
  12789. {
  12790. name: "Normal",
  12791. height: math.unit(4 + 5 / 12, "feet"),
  12792. default: true
  12793. },
  12794. {
  12795. name: "Macro",
  12796. height: math.unit(120, "feet")
  12797. },
  12798. ]
  12799. ))
  12800. characterMakers.push(() => makeCharacter(
  12801. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12802. {
  12803. front: {
  12804. height: math.unit(6, "feet"),
  12805. weight: math.unit(150, "lb"),
  12806. name: "Front",
  12807. image: {
  12808. source: "./media/characters/danyel/front.svg",
  12809. extra: 1185 / 1123,
  12810. bottom: 0.05
  12811. }
  12812. },
  12813. },
  12814. [
  12815. {
  12816. name: "Shrunken",
  12817. height: math.unit(0.5, "mm")
  12818. },
  12819. {
  12820. name: "Micro",
  12821. height: math.unit(1, "mm"),
  12822. default: true
  12823. },
  12824. {
  12825. name: "Upsized",
  12826. height: math.unit(5 + 5 / 12, "feet")
  12827. },
  12828. ]
  12829. ))
  12830. characterMakers.push(() => makeCharacter(
  12831. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12832. {
  12833. front: {
  12834. height: math.unit(5 + 6 / 12, "feet"),
  12835. weight: math.unit(200, "lb"),
  12836. name: "Front",
  12837. image: {
  12838. source: "./media/characters/vivian-bijoux/front.svg",
  12839. extra: 1,
  12840. bottom: 0.072
  12841. }
  12842. },
  12843. },
  12844. [
  12845. {
  12846. name: "Normal",
  12847. height: math.unit(5 + 6 / 12, "feet"),
  12848. default: true
  12849. },
  12850. {
  12851. name: "Bad Dream",
  12852. height: math.unit(500, "feet")
  12853. },
  12854. {
  12855. name: "Nightmare",
  12856. height: math.unit(500, "miles")
  12857. },
  12858. ]
  12859. ))
  12860. characterMakers.push(() => makeCharacter(
  12861. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12862. {
  12863. front: {
  12864. height: math.unit(6 + 1 / 12, "feet"),
  12865. weight: math.unit(260, "lb"),
  12866. name: "Front",
  12867. image: {
  12868. source: "./media/characters/zeta/front.svg",
  12869. extra: 1968 / 1889,
  12870. bottom: 0.06
  12871. }
  12872. },
  12873. back: {
  12874. height: math.unit(6 + 1 / 12, "feet"),
  12875. weight: math.unit(260, "lb"),
  12876. name: "Back",
  12877. image: {
  12878. source: "./media/characters/zeta/back.svg",
  12879. extra: 1944 / 1858,
  12880. bottom: 0.03
  12881. }
  12882. },
  12883. hand: {
  12884. height: math.unit(1.112, "feet"),
  12885. name: "Hand",
  12886. image: {
  12887. source: "./media/characters/zeta/hand.svg"
  12888. }
  12889. },
  12890. foot: {
  12891. height: math.unit(1.48, "feet"),
  12892. name: "Foot",
  12893. image: {
  12894. source: "./media/characters/zeta/foot.svg"
  12895. }
  12896. },
  12897. },
  12898. [
  12899. {
  12900. name: "Micro",
  12901. height: math.unit(6, "inches")
  12902. },
  12903. {
  12904. name: "Normal",
  12905. height: math.unit(6 + 1 / 12, "feet"),
  12906. default: true
  12907. },
  12908. {
  12909. name: "Macro",
  12910. height: math.unit(20, "feet")
  12911. },
  12912. ]
  12913. ))
  12914. characterMakers.push(() => makeCharacter(
  12915. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12916. {
  12917. front: {
  12918. height: math.unit(6, "feet"),
  12919. weight: math.unit(150, "lb"),
  12920. name: "Front",
  12921. image: {
  12922. source: "./media/characters/jamie-larsen/front.svg",
  12923. extra: 962 / 933,
  12924. bottom: 0.02
  12925. }
  12926. },
  12927. back: {
  12928. height: math.unit(6, "feet"),
  12929. weight: math.unit(150, "lb"),
  12930. name: "Back",
  12931. image: {
  12932. source: "./media/characters/jamie-larsen/back.svg",
  12933. extra: 997 / 946
  12934. }
  12935. },
  12936. },
  12937. [
  12938. {
  12939. name: "Macro",
  12940. height: math.unit(28 + 7 / 12, "feet"),
  12941. default: true
  12942. },
  12943. {
  12944. name: "Macro+",
  12945. height: math.unit(180, "feet")
  12946. },
  12947. {
  12948. name: "Megamacro",
  12949. height: math.unit(10, "miles")
  12950. },
  12951. {
  12952. name: "Gigamacro",
  12953. height: math.unit(200000, "miles")
  12954. },
  12955. ]
  12956. ))
  12957. characterMakers.push(() => makeCharacter(
  12958. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12959. {
  12960. front: {
  12961. height: math.unit(6, "feet"),
  12962. weight: math.unit(120, "lb"),
  12963. name: "Front",
  12964. image: {
  12965. source: "./media/characters/vance/front.svg",
  12966. extra: 1980 / 1890,
  12967. bottom: 0.09
  12968. }
  12969. },
  12970. back: {
  12971. height: math.unit(6, "feet"),
  12972. weight: math.unit(120, "lb"),
  12973. name: "Back",
  12974. image: {
  12975. source: "./media/characters/vance/back.svg",
  12976. extra: 2081 / 1994,
  12977. bottom: 0.014
  12978. }
  12979. },
  12980. hand: {
  12981. height: math.unit(0.88, "feet"),
  12982. name: "Hand",
  12983. image: {
  12984. source: "./media/characters/vance/hand.svg"
  12985. }
  12986. },
  12987. foot: {
  12988. height: math.unit(0.64, "feet"),
  12989. name: "Foot",
  12990. image: {
  12991. source: "./media/characters/vance/foot.svg"
  12992. }
  12993. },
  12994. },
  12995. [
  12996. {
  12997. name: "Small",
  12998. height: math.unit(90, "feet"),
  12999. default: true
  13000. },
  13001. {
  13002. name: "Macro",
  13003. height: math.unit(100, "meters")
  13004. },
  13005. {
  13006. name: "Megamacro",
  13007. height: math.unit(15, "miles")
  13008. },
  13009. ]
  13010. ))
  13011. characterMakers.push(() => makeCharacter(
  13012. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13013. {
  13014. front: {
  13015. height: math.unit(6, "feet"),
  13016. weight: math.unit(180, "lb"),
  13017. name: "Front",
  13018. image: {
  13019. source: "./media/characters/xochitl/front.svg",
  13020. extra: 2297 / 2261,
  13021. bottom: 0.065
  13022. }
  13023. },
  13024. back: {
  13025. height: math.unit(6, "feet"),
  13026. weight: math.unit(180, "lb"),
  13027. name: "Back",
  13028. image: {
  13029. source: "./media/characters/xochitl/back.svg",
  13030. extra: 2386 / 2354,
  13031. bottom: 0.01
  13032. }
  13033. },
  13034. foot: {
  13035. height: math.unit(6 / 5 * 1.15, "feet"),
  13036. weight: math.unit(150, "lb"),
  13037. name: "Foot",
  13038. image: {
  13039. source: "./media/characters/xochitl/foot.svg"
  13040. }
  13041. },
  13042. },
  13043. [
  13044. {
  13045. name: "Macro",
  13046. height: math.unit(80, "feet")
  13047. },
  13048. {
  13049. name: "Macro+",
  13050. height: math.unit(400, "feet"),
  13051. default: true
  13052. },
  13053. {
  13054. name: "Gigamacro",
  13055. height: math.unit(80000, "miles")
  13056. },
  13057. {
  13058. name: "Gigamacro+",
  13059. height: math.unit(400000, "miles")
  13060. },
  13061. {
  13062. name: "Teramacro",
  13063. height: math.unit(300, "AU")
  13064. },
  13065. ]
  13066. ))
  13067. characterMakers.push(() => makeCharacter(
  13068. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13069. {
  13070. front: {
  13071. height: math.unit(6, "feet"),
  13072. weight: math.unit(150, "lb"),
  13073. name: "Front",
  13074. image: {
  13075. source: "./media/characters/vincent/front.svg",
  13076. extra: 1130 / 1080,
  13077. bottom: 0.055
  13078. }
  13079. },
  13080. beak: {
  13081. height: math.unit(6 * 0.1, "feet"),
  13082. name: "Beak",
  13083. image: {
  13084. source: "./media/characters/vincent/beak.svg"
  13085. }
  13086. },
  13087. hand: {
  13088. height: math.unit(6 * 0.85, "feet"),
  13089. weight: math.unit(150, "lb"),
  13090. name: "Hand",
  13091. image: {
  13092. source: "./media/characters/vincent/hand.svg"
  13093. }
  13094. },
  13095. foot: {
  13096. height: math.unit(6 * 0.19, "feet"),
  13097. weight: math.unit(150, "lb"),
  13098. name: "Foot",
  13099. image: {
  13100. source: "./media/characters/vincent/foot.svg"
  13101. }
  13102. },
  13103. },
  13104. [
  13105. {
  13106. name: "Base",
  13107. height: math.unit(6 + 5 / 12, "feet"),
  13108. default: true
  13109. },
  13110. {
  13111. name: "Macro",
  13112. height: math.unit(300, "feet")
  13113. },
  13114. {
  13115. name: "Megamacro",
  13116. height: math.unit(2, "miles")
  13117. },
  13118. {
  13119. name: "Gigamacro",
  13120. height: math.unit(1000, "miles")
  13121. },
  13122. ]
  13123. ))
  13124. characterMakers.push(() => makeCharacter(
  13125. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13126. {
  13127. front: {
  13128. height: math.unit(6 + 2 / 12, "feet"),
  13129. weight: math.unit(265, "lb"),
  13130. name: "Front",
  13131. image: {
  13132. source: "./media/characters/jay/front.svg",
  13133. extra: 1510 / 1430,
  13134. bottom: 0.042
  13135. }
  13136. },
  13137. back: {
  13138. height: math.unit(6 + 2 / 12, "feet"),
  13139. weight: math.unit(265, "lb"),
  13140. name: "Back",
  13141. image: {
  13142. source: "./media/characters/jay/back.svg",
  13143. extra: 1510 / 1430,
  13144. bottom: 0.025
  13145. }
  13146. },
  13147. clothed: {
  13148. height: math.unit(6 + 2 / 12, "feet"),
  13149. weight: math.unit(265, "lb"),
  13150. name: "Front (Clothed)",
  13151. image: {
  13152. source: "./media/characters/jay/clothed.svg",
  13153. extra: 744 / 699,
  13154. bottom: 0.043
  13155. }
  13156. },
  13157. head: {
  13158. height: math.unit(1.772, "feet"),
  13159. name: "Head",
  13160. image: {
  13161. source: "./media/characters/jay/head.svg"
  13162. }
  13163. },
  13164. sizeRay: {
  13165. height: math.unit(1.331, "feet"),
  13166. name: "Size Ray",
  13167. image: {
  13168. source: "./media/characters/jay/size-ray.svg"
  13169. }
  13170. },
  13171. },
  13172. [
  13173. {
  13174. name: "Micro",
  13175. height: math.unit(1, "inch")
  13176. },
  13177. {
  13178. name: "Normal",
  13179. height: math.unit(6 + 2 / 12, "feet"),
  13180. default: true
  13181. },
  13182. {
  13183. name: "Macro",
  13184. height: math.unit(1, "mile")
  13185. },
  13186. {
  13187. name: "Megamacro",
  13188. height: math.unit(100, "miles")
  13189. },
  13190. ]
  13191. ))
  13192. characterMakers.push(() => makeCharacter(
  13193. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13194. {
  13195. front: {
  13196. height: math.unit(2, "meters"),
  13197. weight: math.unit(500, "kg"),
  13198. name: "Front",
  13199. image: {
  13200. source: "./media/characters/coatl/front.svg",
  13201. extra: 3948 / 3500,
  13202. bottom: 0.082
  13203. }
  13204. },
  13205. },
  13206. [
  13207. {
  13208. name: "Normal",
  13209. height: math.unit(4, "meters")
  13210. },
  13211. {
  13212. name: "Macro",
  13213. height: math.unit(100, "meters"),
  13214. default: true
  13215. },
  13216. {
  13217. name: "Macro+",
  13218. height: math.unit(300, "meters")
  13219. },
  13220. {
  13221. name: "Megamacro",
  13222. height: math.unit(3, "gigameters")
  13223. },
  13224. {
  13225. name: "Megamacro+",
  13226. height: math.unit(300, "terameters")
  13227. },
  13228. {
  13229. name: "Megamacro++",
  13230. height: math.unit(3, "lightyears")
  13231. },
  13232. ]
  13233. ))
  13234. characterMakers.push(() => makeCharacter(
  13235. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13236. {
  13237. front: {
  13238. height: math.unit(6, "feet"),
  13239. weight: math.unit(50, "kg"),
  13240. name: "front",
  13241. image: {
  13242. source: "./media/characters/shiroryu/front.svg",
  13243. extra: 1990 / 1935
  13244. }
  13245. },
  13246. },
  13247. [
  13248. {
  13249. name: "Mortal Mingling",
  13250. height: math.unit(3, "meters")
  13251. },
  13252. {
  13253. name: "Kaiju-ish",
  13254. height: math.unit(250, "meters")
  13255. },
  13256. {
  13257. name: "Somewhat Godly",
  13258. height: math.unit(400, "km"),
  13259. default: true
  13260. },
  13261. {
  13262. name: "Planetary",
  13263. height: math.unit(300, "megameters")
  13264. },
  13265. {
  13266. name: "Galaxy-dwarfing",
  13267. height: math.unit(450, "kiloparsecs")
  13268. },
  13269. {
  13270. name: "Universe Eater",
  13271. height: math.unit(150, "gigaparsecs")
  13272. },
  13273. {
  13274. name: "Almost Immeasurable",
  13275. height: math.unit(1.3e266, "yottaparsecs")
  13276. },
  13277. ]
  13278. ))
  13279. characterMakers.push(() => makeCharacter(
  13280. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13281. {
  13282. front: {
  13283. height: math.unit(6, "feet"),
  13284. weight: math.unit(150, "lb"),
  13285. name: "Front",
  13286. image: {
  13287. source: "./media/characters/umeko/front.svg",
  13288. extra: 1,
  13289. bottom: 0.019
  13290. }
  13291. },
  13292. frontArmored: {
  13293. height: math.unit(6, "feet"),
  13294. weight: math.unit(150, "lb"),
  13295. name: "Front (Armored)",
  13296. image: {
  13297. source: "./media/characters/umeko/front-armored.svg",
  13298. extra: 1,
  13299. bottom: 0.021
  13300. }
  13301. },
  13302. },
  13303. [
  13304. {
  13305. name: "Macro",
  13306. height: math.unit(220, "feet"),
  13307. default: true
  13308. },
  13309. {
  13310. name: "Guardian Dragon",
  13311. height: math.unit(50, "miles")
  13312. },
  13313. {
  13314. name: "Cosmic",
  13315. height: math.unit(800000, "miles")
  13316. },
  13317. ]
  13318. ))
  13319. characterMakers.push(() => makeCharacter(
  13320. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13321. {
  13322. front: {
  13323. height: math.unit(6, "feet"),
  13324. weight: math.unit(150, "lb"),
  13325. name: "Front",
  13326. image: {
  13327. source: "./media/characters/cassidy/front.svg",
  13328. extra: 1,
  13329. bottom: 0.043
  13330. }
  13331. },
  13332. },
  13333. [
  13334. {
  13335. name: "Canon Height",
  13336. height: math.unit(120, "feet"),
  13337. default: true
  13338. },
  13339. {
  13340. name: "Macro+",
  13341. height: math.unit(400, "feet")
  13342. },
  13343. {
  13344. name: "Macro++",
  13345. height: math.unit(4000, "feet")
  13346. },
  13347. {
  13348. name: "Megamacro",
  13349. height: math.unit(3, "miles")
  13350. },
  13351. ]
  13352. ))
  13353. characterMakers.push(() => makeCharacter(
  13354. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13355. {
  13356. front: {
  13357. height: math.unit(6, "feet"),
  13358. weight: math.unit(150, "lb"),
  13359. name: "Front",
  13360. image: {
  13361. source: "./media/characters/isaac/front.svg",
  13362. extra: 896 / 815,
  13363. bottom: 0.11
  13364. }
  13365. },
  13366. },
  13367. [
  13368. {
  13369. name: "Human Size",
  13370. height: math.unit(8, "feet"),
  13371. default: true
  13372. },
  13373. {
  13374. name: "Macro",
  13375. height: math.unit(400, "feet")
  13376. },
  13377. {
  13378. name: "Megamacro",
  13379. height: math.unit(50, "miles")
  13380. },
  13381. {
  13382. name: "Canon Height",
  13383. height: math.unit(200, "AU")
  13384. },
  13385. ]
  13386. ))
  13387. characterMakers.push(() => makeCharacter(
  13388. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13389. {
  13390. front: {
  13391. height: math.unit(6, "feet"),
  13392. weight: math.unit(72, "kg"),
  13393. name: "Front",
  13394. image: {
  13395. source: "./media/characters/sleekit/front.svg",
  13396. extra: 4693 / 4487,
  13397. bottom: 0.012
  13398. }
  13399. },
  13400. },
  13401. [
  13402. {
  13403. name: "Minimum Height",
  13404. height: math.unit(10, "meters")
  13405. },
  13406. {
  13407. name: "Smaller",
  13408. height: math.unit(25, "meters")
  13409. },
  13410. {
  13411. name: "Larger",
  13412. height: math.unit(38, "meters"),
  13413. default: true
  13414. },
  13415. {
  13416. name: "Maximum height",
  13417. height: math.unit(100, "meters")
  13418. },
  13419. ]
  13420. ))
  13421. characterMakers.push(() => makeCharacter(
  13422. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13423. {
  13424. front: {
  13425. height: math.unit(6, "feet"),
  13426. weight: math.unit(150, "lb"),
  13427. name: "Front",
  13428. image: {
  13429. source: "./media/characters/nillia/front.svg",
  13430. extra: 2195 / 2037,
  13431. bottom: 0.005
  13432. }
  13433. },
  13434. back: {
  13435. height: math.unit(6, "feet"),
  13436. weight: math.unit(150, "lb"),
  13437. name: "Back",
  13438. image: {
  13439. source: "./media/characters/nillia/back.svg",
  13440. extra: 2195 / 2037,
  13441. bottom: 0.005
  13442. }
  13443. },
  13444. },
  13445. [
  13446. {
  13447. name: "Canon Height",
  13448. height: math.unit(489, "feet"),
  13449. default: true
  13450. }
  13451. ]
  13452. ))
  13453. characterMakers.push(() => makeCharacter(
  13454. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13455. {
  13456. front: {
  13457. height: math.unit(6, "feet"),
  13458. weight: math.unit(150, "lb"),
  13459. name: "Front",
  13460. image: {
  13461. source: "./media/characters/mesmyriza/front.svg",
  13462. extra: 2067 / 1784,
  13463. bottom: 0.035
  13464. }
  13465. },
  13466. foot: {
  13467. height: math.unit(6 / (250 / 35), "feet"),
  13468. name: "Foot",
  13469. image: {
  13470. source: "./media/characters/mesmyriza/foot.svg"
  13471. }
  13472. },
  13473. },
  13474. [
  13475. {
  13476. name: "Macro",
  13477. height: math.unit(457, "meters"),
  13478. default: true
  13479. },
  13480. {
  13481. name: "Megamacro",
  13482. height: math.unit(8, "megameters")
  13483. },
  13484. ]
  13485. ))
  13486. characterMakers.push(() => makeCharacter(
  13487. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13488. {
  13489. front: {
  13490. height: math.unit(6, "feet"),
  13491. weight: math.unit(250, "lb"),
  13492. name: "Front",
  13493. image: {
  13494. source: "./media/characters/saudade/front.svg",
  13495. extra: 1172 / 1139,
  13496. bottom: 0.035
  13497. }
  13498. },
  13499. },
  13500. [
  13501. {
  13502. name: "Micro",
  13503. height: math.unit(3, "inches")
  13504. },
  13505. {
  13506. name: "Normal",
  13507. height: math.unit(6, "feet"),
  13508. default: true
  13509. },
  13510. {
  13511. name: "Macro",
  13512. height: math.unit(50, "feet")
  13513. },
  13514. {
  13515. name: "Megamacro",
  13516. height: math.unit(2800, "feet")
  13517. },
  13518. ]
  13519. ))
  13520. characterMakers.push(() => makeCharacter(
  13521. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13522. {
  13523. front: {
  13524. height: math.unit(5 + 4 / 12, "feet"),
  13525. weight: math.unit(100, "lb"),
  13526. name: "Front",
  13527. image: {
  13528. source: "./media/characters/keireer/front.svg",
  13529. extra: 716 / 666,
  13530. bottom: 0.05
  13531. }
  13532. },
  13533. },
  13534. [
  13535. {
  13536. name: "Normal",
  13537. height: math.unit(5 + 4 / 12, "feet"),
  13538. default: true
  13539. },
  13540. ]
  13541. ))
  13542. characterMakers.push(() => makeCharacter(
  13543. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13544. {
  13545. front: {
  13546. height: math.unit(6, "feet"),
  13547. weight: math.unit(90, "kg"),
  13548. name: "Front",
  13549. image: {
  13550. source: "./media/characters/mirja/front.svg",
  13551. extra: 1789 / 1683,
  13552. bottom: 0.05
  13553. }
  13554. },
  13555. frontDressed: {
  13556. height: math.unit(6, "feet"),
  13557. weight: math.unit(90, "lb"),
  13558. name: "Front (Dressed)",
  13559. image: {
  13560. source: "./media/characters/mirja/front-dressed.svg",
  13561. extra: 1789 / 1683,
  13562. bottom: 0.05
  13563. }
  13564. },
  13565. back: {
  13566. height: math.unit(6, "feet"),
  13567. weight: math.unit(90, "lb"),
  13568. name: "Back",
  13569. image: {
  13570. source: "./media/characters/mirja/back.svg",
  13571. extra: 953 / 917,
  13572. bottom: 0.017
  13573. }
  13574. },
  13575. },
  13576. [
  13577. {
  13578. name: "\"Incognito\"",
  13579. height: math.unit(3, "meters")
  13580. },
  13581. {
  13582. name: "Strolling Size",
  13583. height: math.unit(15, "km")
  13584. },
  13585. {
  13586. name: "Larger Strolling Size",
  13587. height: math.unit(400, "km")
  13588. },
  13589. {
  13590. name: "Preferred Size",
  13591. height: math.unit(5000, "km")
  13592. },
  13593. {
  13594. name: "True Size",
  13595. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13596. default: true
  13597. },
  13598. ]
  13599. ))
  13600. characterMakers.push(() => makeCharacter(
  13601. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13602. {
  13603. front: {
  13604. height: math.unit(15, "feet"),
  13605. weight: math.unit(880, "kg"),
  13606. name: "Front",
  13607. image: {
  13608. source: "./media/characters/nightraver/front.svg",
  13609. extra: 2444 / 2160,
  13610. bottom: 0.027
  13611. }
  13612. },
  13613. back: {
  13614. height: math.unit(15, "feet"),
  13615. weight: math.unit(880, "kg"),
  13616. name: "Back",
  13617. image: {
  13618. source: "./media/characters/nightraver/back.svg",
  13619. extra: 2309 / 2180,
  13620. bottom: 0.005
  13621. }
  13622. },
  13623. sole: {
  13624. height: math.unit(2.878, "feet"),
  13625. name: "Sole",
  13626. image: {
  13627. source: "./media/characters/nightraver/sole.svg"
  13628. }
  13629. },
  13630. foot: {
  13631. height: math.unit(2.285, "feet"),
  13632. name: "Foot",
  13633. image: {
  13634. source: "./media/characters/nightraver/foot.svg"
  13635. }
  13636. },
  13637. maw: {
  13638. height: math.unit(2.67, "feet"),
  13639. name: "Maw",
  13640. image: {
  13641. source: "./media/characters/nightraver/maw.svg"
  13642. }
  13643. },
  13644. },
  13645. [
  13646. {
  13647. name: "Micro",
  13648. height: math.unit(1, "cm")
  13649. },
  13650. {
  13651. name: "Normal",
  13652. height: math.unit(15, "feet"),
  13653. default: true
  13654. },
  13655. {
  13656. name: "Macro",
  13657. height: math.unit(300, "feet")
  13658. },
  13659. {
  13660. name: "Megamacro",
  13661. height: math.unit(300, "miles")
  13662. },
  13663. {
  13664. name: "Gigamacro",
  13665. height: math.unit(10000, "miles")
  13666. },
  13667. ]
  13668. ))
  13669. characterMakers.push(() => makeCharacter(
  13670. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13671. {
  13672. side: {
  13673. height: math.unit(2, "inches"),
  13674. weight: math.unit(5, "grams"),
  13675. name: "Side",
  13676. image: {
  13677. source: "./media/characters/arc/side.svg"
  13678. }
  13679. },
  13680. },
  13681. [
  13682. {
  13683. name: "Micro",
  13684. height: math.unit(2, "inches"),
  13685. default: true
  13686. },
  13687. ]
  13688. ))
  13689. characterMakers.push(() => makeCharacter(
  13690. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13691. {
  13692. front: {
  13693. height: math.unit(1.1938, "meters"),
  13694. weight: math.unit(54, "kg"),
  13695. name: "Front",
  13696. image: {
  13697. source: "./media/characters/nebula-shahar/front.svg",
  13698. extra: 1642 / 1436,
  13699. bottom: 0.06
  13700. }
  13701. },
  13702. },
  13703. [
  13704. {
  13705. name: "Megamicro",
  13706. height: math.unit(0.3, "mm")
  13707. },
  13708. {
  13709. name: "Micro",
  13710. height: math.unit(3, "cm")
  13711. },
  13712. {
  13713. name: "Normal",
  13714. height: math.unit(138, "cm"),
  13715. default: true
  13716. },
  13717. {
  13718. name: "Macro",
  13719. height: math.unit(30, "m")
  13720. },
  13721. ]
  13722. ))
  13723. characterMakers.push(() => makeCharacter(
  13724. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13725. {
  13726. front: {
  13727. height: math.unit(5.24, "feet"),
  13728. weight: math.unit(150, "lb"),
  13729. name: "Front",
  13730. image: {
  13731. source: "./media/characters/shayla/front.svg",
  13732. extra: 1512 / 1414,
  13733. bottom: 0.01
  13734. }
  13735. },
  13736. back: {
  13737. height: math.unit(5.24, "feet"),
  13738. weight: math.unit(150, "lb"),
  13739. name: "Back",
  13740. image: {
  13741. source: "./media/characters/shayla/back.svg",
  13742. extra: 1512 / 1414
  13743. }
  13744. },
  13745. hand: {
  13746. height: math.unit(0.7781496062992126, "feet"),
  13747. name: "Hand",
  13748. image: {
  13749. source: "./media/characters/shayla/hand.svg"
  13750. }
  13751. },
  13752. foot: {
  13753. height: math.unit(1.4206036745406823, "feet"),
  13754. name: "Foot",
  13755. image: {
  13756. source: "./media/characters/shayla/foot.svg"
  13757. }
  13758. },
  13759. },
  13760. [
  13761. {
  13762. name: "Micro",
  13763. height: math.unit(0.32, "feet")
  13764. },
  13765. {
  13766. name: "Normal",
  13767. height: math.unit(5.24, "feet"),
  13768. default: true
  13769. },
  13770. {
  13771. name: "Macro",
  13772. height: math.unit(492.12, "feet")
  13773. },
  13774. {
  13775. name: "Megamacro",
  13776. height: math.unit(186.41, "miles")
  13777. },
  13778. ]
  13779. ))
  13780. characterMakers.push(() => makeCharacter(
  13781. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13782. {
  13783. front: {
  13784. height: math.unit(2.2, "m"),
  13785. weight: math.unit(120, "kg"),
  13786. name: "Front",
  13787. image: {
  13788. source: "./media/characters/pia-jr/front.svg",
  13789. extra: 1000 / 970,
  13790. bottom: 0.035
  13791. }
  13792. },
  13793. hand: {
  13794. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13795. name: "Hand",
  13796. image: {
  13797. source: "./media/characters/pia-jr/hand.svg"
  13798. }
  13799. },
  13800. paw: {
  13801. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13802. name: "Paw",
  13803. image: {
  13804. source: "./media/characters/pia-jr/paw.svg"
  13805. }
  13806. },
  13807. },
  13808. [
  13809. {
  13810. name: "Micro",
  13811. height: math.unit(1.2, "cm")
  13812. },
  13813. {
  13814. name: "Normal",
  13815. height: math.unit(2.2, "m"),
  13816. default: true
  13817. },
  13818. {
  13819. name: "Macro",
  13820. height: math.unit(180, "m")
  13821. },
  13822. {
  13823. name: "Megamacro",
  13824. height: math.unit(420, "km")
  13825. },
  13826. ]
  13827. ))
  13828. characterMakers.push(() => makeCharacter(
  13829. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13830. {
  13831. front: {
  13832. height: math.unit(2, "m"),
  13833. weight: math.unit(115, "kg"),
  13834. name: "Front",
  13835. image: {
  13836. source: "./media/characters/pia-sr/front.svg",
  13837. extra: 760 / 730,
  13838. bottom: 0.015
  13839. }
  13840. },
  13841. back: {
  13842. height: math.unit(2, "m"),
  13843. weight: math.unit(115, "kg"),
  13844. name: "Back",
  13845. image: {
  13846. source: "./media/characters/pia-sr/back.svg",
  13847. extra: 760 / 730,
  13848. bottom: 0.01
  13849. }
  13850. },
  13851. hand: {
  13852. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13853. name: "Hand",
  13854. image: {
  13855. source: "./media/characters/pia-sr/hand.svg"
  13856. }
  13857. },
  13858. foot: {
  13859. height: math.unit(1.83, "feet"),
  13860. name: "Foot",
  13861. image: {
  13862. source: "./media/characters/pia-sr/foot.svg"
  13863. }
  13864. },
  13865. },
  13866. [
  13867. {
  13868. name: "Micro",
  13869. height: math.unit(88, "mm")
  13870. },
  13871. {
  13872. name: "Normal",
  13873. height: math.unit(2, "m"),
  13874. default: true
  13875. },
  13876. {
  13877. name: "Macro",
  13878. height: math.unit(200, "m")
  13879. },
  13880. {
  13881. name: "Megamacro",
  13882. height: math.unit(420, "km")
  13883. },
  13884. ]
  13885. ))
  13886. characterMakers.push(() => makeCharacter(
  13887. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13888. {
  13889. front: {
  13890. height: math.unit(8 + 2 / 12, "feet"),
  13891. weight: math.unit(300, "lb"),
  13892. name: "Front",
  13893. image: {
  13894. source: "./media/characters/kibibyte/front.svg",
  13895. extra: 2221 / 2098,
  13896. bottom: 0.04
  13897. }
  13898. },
  13899. },
  13900. [
  13901. {
  13902. name: "Normal",
  13903. height: math.unit(8 + 2 / 12, "feet"),
  13904. default: true
  13905. },
  13906. {
  13907. name: "Socialable Macro",
  13908. height: math.unit(50, "feet")
  13909. },
  13910. {
  13911. name: "Macro",
  13912. height: math.unit(300, "feet")
  13913. },
  13914. {
  13915. name: "Megamacro",
  13916. height: math.unit(500, "miles")
  13917. },
  13918. ]
  13919. ))
  13920. characterMakers.push(() => makeCharacter(
  13921. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13922. {
  13923. front: {
  13924. height: math.unit(6, "feet"),
  13925. weight: math.unit(150, "lb"),
  13926. name: "Front",
  13927. image: {
  13928. source: "./media/characters/felix/front.svg",
  13929. extra: 762 / 722,
  13930. bottom: 0.02
  13931. }
  13932. },
  13933. frontClothed: {
  13934. height: math.unit(6, "feet"),
  13935. weight: math.unit(150, "lb"),
  13936. name: "Front (Clothed)",
  13937. image: {
  13938. source: "./media/characters/felix/front-clothed.svg",
  13939. extra: 762 / 722,
  13940. bottom: 0.02
  13941. }
  13942. },
  13943. },
  13944. [
  13945. {
  13946. name: "Normal",
  13947. height: math.unit(6 + 8 / 12, "feet"),
  13948. default: true
  13949. },
  13950. {
  13951. name: "Macro",
  13952. height: math.unit(2600, "feet")
  13953. },
  13954. {
  13955. name: "Megamacro",
  13956. height: math.unit(450, "miles")
  13957. },
  13958. ]
  13959. ))
  13960. characterMakers.push(() => makeCharacter(
  13961. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13962. {
  13963. front: {
  13964. height: math.unit(6 + 1 / 12, "feet"),
  13965. weight: math.unit(250, "lb"),
  13966. name: "Front",
  13967. image: {
  13968. source: "./media/characters/tobo/front.svg",
  13969. extra: 608 / 586,
  13970. bottom: 0.023
  13971. }
  13972. },
  13973. back: {
  13974. height: math.unit(6 + 1 / 12, "feet"),
  13975. weight: math.unit(250, "lb"),
  13976. name: "Back",
  13977. image: {
  13978. source: "./media/characters/tobo/back.svg",
  13979. extra: 608 / 586
  13980. }
  13981. },
  13982. },
  13983. [
  13984. {
  13985. name: "Nano",
  13986. height: math.unit(2, "nm")
  13987. },
  13988. {
  13989. name: "Megamicro",
  13990. height: math.unit(0.1, "mm")
  13991. },
  13992. {
  13993. name: "Micro",
  13994. height: math.unit(1, "inch"),
  13995. default: true
  13996. },
  13997. {
  13998. name: "Human-sized",
  13999. height: math.unit(6 + 1 / 12, "feet")
  14000. },
  14001. {
  14002. name: "Macro",
  14003. height: math.unit(250, "feet")
  14004. },
  14005. {
  14006. name: "Megamacro",
  14007. height: math.unit(75, "miles")
  14008. },
  14009. {
  14010. name: "Texas-sized",
  14011. height: math.unit(750, "miles")
  14012. },
  14013. {
  14014. name: "Teramacro",
  14015. height: math.unit(50000, "miles")
  14016. },
  14017. ]
  14018. ))
  14019. characterMakers.push(() => makeCharacter(
  14020. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14021. {
  14022. front: {
  14023. height: math.unit(6, "feet"),
  14024. weight: math.unit(269, "lb"),
  14025. name: "Front",
  14026. image: {
  14027. source: "./media/characters/danny-kapowsky/front.svg",
  14028. extra: 766 / 736,
  14029. bottom: 0.044
  14030. }
  14031. },
  14032. back: {
  14033. height: math.unit(6, "feet"),
  14034. weight: math.unit(269, "lb"),
  14035. name: "Back",
  14036. image: {
  14037. source: "./media/characters/danny-kapowsky/back.svg",
  14038. extra: 797 / 760,
  14039. bottom: 0.025
  14040. }
  14041. },
  14042. },
  14043. [
  14044. {
  14045. name: "Macro",
  14046. height: math.unit(150, "feet"),
  14047. default: true
  14048. },
  14049. {
  14050. name: "Macro+",
  14051. height: math.unit(200, "feet")
  14052. },
  14053. {
  14054. name: "Macro++",
  14055. height: math.unit(300, "feet")
  14056. },
  14057. {
  14058. name: "Macro+++",
  14059. height: math.unit(400, "feet")
  14060. },
  14061. ]
  14062. ))
  14063. characterMakers.push(() => makeCharacter(
  14064. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14065. {
  14066. side: {
  14067. height: math.unit(6, "feet"),
  14068. weight: math.unit(170, "lb"),
  14069. name: "Side",
  14070. image: {
  14071. source: "./media/characters/finn/side.svg",
  14072. extra: 1953 / 1807,
  14073. bottom: 0.057
  14074. }
  14075. },
  14076. },
  14077. [
  14078. {
  14079. name: "Megamacro",
  14080. height: math.unit(14445, "feet"),
  14081. default: true
  14082. },
  14083. ]
  14084. ))
  14085. characterMakers.push(() => makeCharacter(
  14086. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14087. {
  14088. front: {
  14089. height: math.unit(5 + 6 / 12, "feet"),
  14090. weight: math.unit(125, "lb"),
  14091. name: "Front",
  14092. image: {
  14093. source: "./media/characters/roy/front.svg",
  14094. extra: 1,
  14095. bottom: 0.11
  14096. }
  14097. },
  14098. },
  14099. [
  14100. {
  14101. name: "Micro",
  14102. height: math.unit(3, "inches"),
  14103. default: true
  14104. },
  14105. {
  14106. name: "Normal",
  14107. height: math.unit(5 + 6 / 12, "feet")
  14108. },
  14109. {
  14110. name: "Lesser Macro",
  14111. height: math.unit(60, "feet")
  14112. },
  14113. {
  14114. name: "Greater Macro",
  14115. height: math.unit(120, "feet")
  14116. },
  14117. ]
  14118. ))
  14119. characterMakers.push(() => makeCharacter(
  14120. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14121. {
  14122. front: {
  14123. height: math.unit(6, "feet"),
  14124. weight: math.unit(100, "lb"),
  14125. name: "Front",
  14126. image: {
  14127. source: "./media/characters/aevsivs/front.svg",
  14128. extra: 1,
  14129. bottom: 0.03
  14130. }
  14131. },
  14132. back: {
  14133. height: math.unit(6, "feet"),
  14134. weight: math.unit(100, "lb"),
  14135. name: "Back",
  14136. image: {
  14137. source: "./media/characters/aevsivs/back.svg"
  14138. }
  14139. },
  14140. },
  14141. [
  14142. {
  14143. name: "Micro",
  14144. height: math.unit(2, "inches"),
  14145. default: true
  14146. },
  14147. {
  14148. name: "Normal",
  14149. height: math.unit(5, "feet")
  14150. },
  14151. ]
  14152. ))
  14153. characterMakers.push(() => makeCharacter(
  14154. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14155. {
  14156. front: {
  14157. height: math.unit(5 + 7 / 12, "feet"),
  14158. weight: math.unit(159, "lb"),
  14159. name: "Front",
  14160. image: {
  14161. source: "./media/characters/hildegard/front.svg",
  14162. extra: 289 / 269,
  14163. bottom: 7.63 / 297.8
  14164. }
  14165. },
  14166. back: {
  14167. height: math.unit(5 + 7 / 12, "feet"),
  14168. weight: math.unit(159, "lb"),
  14169. name: "Back",
  14170. image: {
  14171. source: "./media/characters/hildegard/back.svg",
  14172. extra: 280 / 260,
  14173. bottom: 2.3 / 282
  14174. }
  14175. },
  14176. },
  14177. [
  14178. {
  14179. name: "Normal",
  14180. height: math.unit(5 + 7 / 12, "feet"),
  14181. default: true
  14182. },
  14183. ]
  14184. ))
  14185. characterMakers.push(() => makeCharacter(
  14186. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14187. {
  14188. bernard: {
  14189. height: math.unit(2 + 7 / 12, "feet"),
  14190. weight: math.unit(66, "lb"),
  14191. name: "Bernard",
  14192. rename: true,
  14193. image: {
  14194. source: "./media/characters/bernard-wilder/bernard.svg",
  14195. extra: 192 / 128,
  14196. bottom: 0.05
  14197. }
  14198. },
  14199. wilder: {
  14200. height: math.unit(5 + 8 / 12, "feet"),
  14201. weight: math.unit(143, "lb"),
  14202. name: "Wilder",
  14203. rename: true,
  14204. image: {
  14205. source: "./media/characters/bernard-wilder/wilder.svg",
  14206. extra: 361 / 312,
  14207. bottom: 0.02
  14208. }
  14209. },
  14210. },
  14211. [
  14212. {
  14213. name: "Normal",
  14214. height: math.unit(2 + 7 / 12, "feet"),
  14215. default: true
  14216. },
  14217. ]
  14218. ))
  14219. characterMakers.push(() => makeCharacter(
  14220. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14221. {
  14222. anthro: {
  14223. height: math.unit(6 + 1 / 12, "feet"),
  14224. weight: math.unit(155, "lb"),
  14225. name: "Anthro",
  14226. image: {
  14227. source: "./media/characters/hearth/anthro.svg",
  14228. extra: 260 / 250,
  14229. bottom: 0.02
  14230. }
  14231. },
  14232. feral: {
  14233. height: math.unit(3.78, "feet"),
  14234. weight: math.unit(35, "kg"),
  14235. name: "Feral",
  14236. image: {
  14237. source: "./media/characters/hearth/feral.svg",
  14238. extra: 153 / 135,
  14239. bottom: 0.03
  14240. }
  14241. },
  14242. },
  14243. [
  14244. {
  14245. name: "Normal",
  14246. height: math.unit(6 + 1 / 12, "feet"),
  14247. default: true
  14248. },
  14249. ]
  14250. ))
  14251. characterMakers.push(() => makeCharacter(
  14252. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14253. {
  14254. front: {
  14255. height: math.unit(6, "feet"),
  14256. weight: math.unit(182, "lb"),
  14257. name: "Front",
  14258. image: {
  14259. source: "./media/characters/ingrid/front.svg",
  14260. extra: 294 / 268,
  14261. bottom: 0.027
  14262. }
  14263. },
  14264. },
  14265. [
  14266. {
  14267. name: "Normal",
  14268. height: math.unit(6, "feet"),
  14269. default: true
  14270. },
  14271. ]
  14272. ))
  14273. characterMakers.push(() => makeCharacter(
  14274. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14275. {
  14276. eevee: {
  14277. height: math.unit(2 + 10 / 12, "feet"),
  14278. weight: math.unit(86, "lb"),
  14279. name: "Malgam",
  14280. image: {
  14281. source: "./media/characters/malgam/eevee.svg",
  14282. extra: 218 / 180,
  14283. bottom: 0.2
  14284. }
  14285. },
  14286. sylveon: {
  14287. height: math.unit(4, "feet"),
  14288. weight: math.unit(101, "lb"),
  14289. name: "Future Malgam",
  14290. rename: true,
  14291. image: {
  14292. source: "./media/characters/malgam/sylveon.svg",
  14293. extra: 371 / 325,
  14294. bottom: 0.015
  14295. }
  14296. },
  14297. gigantamax: {
  14298. height: math.unit(50, "feet"),
  14299. name: "Gigantamax Malgam",
  14300. rename: true,
  14301. image: {
  14302. source: "./media/characters/malgam/gigantamax.svg"
  14303. }
  14304. },
  14305. },
  14306. [
  14307. {
  14308. name: "Normal",
  14309. height: math.unit(2 + 10 / 12, "feet"),
  14310. default: true
  14311. },
  14312. ]
  14313. ))
  14314. characterMakers.push(() => makeCharacter(
  14315. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14316. {
  14317. front: {
  14318. height: math.unit(5 + 11 / 12, "feet"),
  14319. weight: math.unit(188, "lb"),
  14320. name: "Front",
  14321. image: {
  14322. source: "./media/characters/fleur/front.svg",
  14323. extra: 309 / 283,
  14324. bottom: 0.007
  14325. }
  14326. },
  14327. },
  14328. [
  14329. {
  14330. name: "Normal",
  14331. height: math.unit(5 + 11 / 12, "feet"),
  14332. default: true
  14333. },
  14334. ]
  14335. ))
  14336. characterMakers.push(() => makeCharacter(
  14337. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14338. {
  14339. front: {
  14340. height: math.unit(5 + 4 / 12, "feet"),
  14341. weight: math.unit(122, "lb"),
  14342. name: "Front",
  14343. image: {
  14344. source: "./media/characters/jude/front.svg",
  14345. extra: 288 / 273,
  14346. bottom: 0.03
  14347. }
  14348. },
  14349. },
  14350. [
  14351. {
  14352. name: "Normal",
  14353. height: math.unit(5 + 4 / 12, "feet"),
  14354. default: true
  14355. },
  14356. ]
  14357. ))
  14358. characterMakers.push(() => makeCharacter(
  14359. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14360. {
  14361. front: {
  14362. height: math.unit(5 + 11 / 12, "feet"),
  14363. weight: math.unit(190, "lb"),
  14364. name: "Front",
  14365. image: {
  14366. source: "./media/characters/seara/front.svg",
  14367. extra: 1,
  14368. bottom: 0.05
  14369. }
  14370. },
  14371. },
  14372. [
  14373. {
  14374. name: "Normal",
  14375. height: math.unit(5 + 11 / 12, "feet"),
  14376. default: true
  14377. },
  14378. ]
  14379. ))
  14380. characterMakers.push(() => makeCharacter(
  14381. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14382. {
  14383. front: {
  14384. height: math.unit(16 + 5 / 12, "feet"),
  14385. weight: math.unit(524, "lb"),
  14386. name: "Front",
  14387. image: {
  14388. source: "./media/characters/caspian/front.svg",
  14389. extra: 1,
  14390. bottom: 0.04
  14391. }
  14392. },
  14393. },
  14394. [
  14395. {
  14396. name: "Normal",
  14397. height: math.unit(16 + 5 / 12, "feet"),
  14398. default: true
  14399. },
  14400. ]
  14401. ))
  14402. characterMakers.push(() => makeCharacter(
  14403. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14404. {
  14405. front: {
  14406. height: math.unit(5 + 7 / 12, "feet"),
  14407. weight: math.unit(170, "lb"),
  14408. name: "Front",
  14409. image: {
  14410. source: "./media/characters/mika/front.svg",
  14411. extra: 1,
  14412. bottom: 0.016
  14413. }
  14414. },
  14415. },
  14416. [
  14417. {
  14418. name: "Normal",
  14419. height: math.unit(5 + 7 / 12, "feet"),
  14420. default: true
  14421. },
  14422. ]
  14423. ))
  14424. characterMakers.push(() => makeCharacter(
  14425. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14426. {
  14427. front: {
  14428. height: math.unit(6 + 2 / 12, "feet"),
  14429. weight: math.unit(268, "lb"),
  14430. name: "Front",
  14431. image: {
  14432. source: "./media/characters/sol/front.svg",
  14433. extra: 247 / 231,
  14434. bottom: 0.05
  14435. }
  14436. },
  14437. },
  14438. [
  14439. {
  14440. name: "Normal",
  14441. height: math.unit(6 + 2 / 12, "feet"),
  14442. default: true
  14443. },
  14444. ]
  14445. ))
  14446. characterMakers.push(() => makeCharacter(
  14447. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14448. {
  14449. buizel: {
  14450. height: math.unit(2 + 5 / 12, "feet"),
  14451. weight: math.unit(87, "lb"),
  14452. name: "Buizel",
  14453. image: {
  14454. source: "./media/characters/umiko/buizel.svg",
  14455. extra: 172 / 157,
  14456. bottom: 0.01
  14457. }
  14458. },
  14459. floatzel: {
  14460. height: math.unit(5 + 9 / 12, "feet"),
  14461. weight: math.unit(250, "lb"),
  14462. name: "Floatzel",
  14463. image: {
  14464. source: "./media/characters/umiko/floatzel.svg",
  14465. extra: 262 / 248
  14466. }
  14467. },
  14468. },
  14469. [
  14470. {
  14471. name: "Normal",
  14472. height: math.unit(2 + 5 / 12, "feet"),
  14473. default: true
  14474. },
  14475. ]
  14476. ))
  14477. characterMakers.push(() => makeCharacter(
  14478. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14479. {
  14480. front: {
  14481. height: math.unit(6 + 2 / 12, "feet"),
  14482. weight: math.unit(146, "lb"),
  14483. name: "Front",
  14484. image: {
  14485. source: "./media/characters/iliac/front.svg",
  14486. extra: 389 / 365,
  14487. bottom: 0.035
  14488. }
  14489. },
  14490. },
  14491. [
  14492. {
  14493. name: "Normal",
  14494. height: math.unit(6 + 2 / 12, "feet"),
  14495. default: true
  14496. },
  14497. ]
  14498. ))
  14499. characterMakers.push(() => makeCharacter(
  14500. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14501. {
  14502. front: {
  14503. height: math.unit(6, "feet"),
  14504. weight: math.unit(170, "lb"),
  14505. name: "Front",
  14506. image: {
  14507. source: "./media/characters/topaz/front.svg",
  14508. extra: 317 / 303,
  14509. bottom: 0.055
  14510. }
  14511. },
  14512. },
  14513. [
  14514. {
  14515. name: "Normal",
  14516. height: math.unit(6, "feet"),
  14517. default: true
  14518. },
  14519. ]
  14520. ))
  14521. characterMakers.push(() => makeCharacter(
  14522. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14523. {
  14524. front: {
  14525. height: math.unit(5 + 11 / 12, "feet"),
  14526. weight: math.unit(144, "lb"),
  14527. name: "Front",
  14528. image: {
  14529. source: "./media/characters/gabriel/front.svg",
  14530. extra: 285 / 262,
  14531. bottom: 0.004
  14532. }
  14533. },
  14534. },
  14535. [
  14536. {
  14537. name: "Normal",
  14538. height: math.unit(5 + 11 / 12, "feet"),
  14539. default: true
  14540. },
  14541. ]
  14542. ))
  14543. characterMakers.push(() => makeCharacter(
  14544. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14545. {
  14546. side: {
  14547. height: math.unit(6 + 5 / 12, "feet"),
  14548. weight: math.unit(300, "lb"),
  14549. name: "Side",
  14550. image: {
  14551. source: "./media/characters/tempest-suicune/side.svg",
  14552. extra: 195 / 154,
  14553. bottom: 0.04
  14554. }
  14555. },
  14556. },
  14557. [
  14558. {
  14559. name: "Normal",
  14560. height: math.unit(6 + 5 / 12, "feet"),
  14561. default: true
  14562. },
  14563. ]
  14564. ))
  14565. characterMakers.push(() => makeCharacter(
  14566. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14567. {
  14568. front: {
  14569. height: math.unit(7 + 2 / 12, "feet"),
  14570. weight: math.unit(322, "lb"),
  14571. name: "Front",
  14572. image: {
  14573. source: "./media/characters/vulcan/front.svg",
  14574. extra: 154 / 147,
  14575. bottom: 0.04
  14576. }
  14577. },
  14578. },
  14579. [
  14580. {
  14581. name: "Normal",
  14582. height: math.unit(7 + 2 / 12, "feet"),
  14583. default: true
  14584. },
  14585. ]
  14586. ))
  14587. characterMakers.push(() => makeCharacter(
  14588. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14589. {
  14590. front: {
  14591. height: math.unit(5 + 10 / 12, "feet"),
  14592. weight: math.unit(264, "lb"),
  14593. name: "Front",
  14594. image: {
  14595. source: "./media/characters/gault/front.svg",
  14596. extra: 161 / 140,
  14597. bottom: 0.028
  14598. }
  14599. },
  14600. },
  14601. [
  14602. {
  14603. name: "Normal",
  14604. height: math.unit(5 + 10 / 12, "feet"),
  14605. default: true
  14606. },
  14607. ]
  14608. ))
  14609. characterMakers.push(() => makeCharacter(
  14610. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14611. {
  14612. front: {
  14613. height: math.unit(6, "feet"),
  14614. weight: math.unit(150, "lb"),
  14615. name: "Front",
  14616. image: {
  14617. source: "./media/characters/shard/front.svg",
  14618. extra: 273 / 238,
  14619. bottom: 0.02
  14620. }
  14621. },
  14622. },
  14623. [
  14624. {
  14625. name: "Normal",
  14626. height: math.unit(3 + 6 / 12, "feet"),
  14627. default: true
  14628. },
  14629. ]
  14630. ))
  14631. characterMakers.push(() => makeCharacter(
  14632. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14633. {
  14634. front: {
  14635. height: math.unit(5 + 11 / 12, "feet"),
  14636. weight: math.unit(146, "lb"),
  14637. name: "Front",
  14638. image: {
  14639. source: "./media/characters/ashe/front.svg",
  14640. extra: 400 / 373,
  14641. bottom: 0.01
  14642. }
  14643. },
  14644. },
  14645. [
  14646. {
  14647. name: "Normal",
  14648. height: math.unit(5 + 11 / 12, "feet"),
  14649. default: true
  14650. },
  14651. ]
  14652. ))
  14653. characterMakers.push(() => makeCharacter(
  14654. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14655. {
  14656. front: {
  14657. height: math.unit(5 + 5 / 12, "feet"),
  14658. weight: math.unit(135, "lb"),
  14659. name: "Front",
  14660. image: {
  14661. source: "./media/characters/beatrix/front.svg",
  14662. extra: 392 / 379,
  14663. bottom: 0.01
  14664. }
  14665. },
  14666. },
  14667. [
  14668. {
  14669. name: "Normal",
  14670. height: math.unit(6, "feet"),
  14671. default: true
  14672. },
  14673. ]
  14674. ))
  14675. characterMakers.push(() => makeCharacter(
  14676. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14677. {
  14678. front: {
  14679. height: math.unit(6, "feet"),
  14680. weight: math.unit(150, "lb"),
  14681. name: "Front",
  14682. image: {
  14683. source: "./media/characters/ignatius/front.svg",
  14684. extra: 245 / 222,
  14685. bottom: 0.01
  14686. }
  14687. },
  14688. },
  14689. [
  14690. {
  14691. name: "Normal",
  14692. height: math.unit(5 + 5 / 12, "feet"),
  14693. default: true
  14694. },
  14695. ]
  14696. ))
  14697. characterMakers.push(() => makeCharacter(
  14698. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14699. {
  14700. front: {
  14701. height: math.unit(6 + 2 / 12, "feet"),
  14702. weight: math.unit(138, "lb"),
  14703. name: "Front",
  14704. image: {
  14705. source: "./media/characters/mei-li/front.svg",
  14706. extra: 237 / 229,
  14707. bottom: 0.03
  14708. }
  14709. },
  14710. },
  14711. [
  14712. {
  14713. name: "Normal",
  14714. height: math.unit(6 + 2 / 12, "feet"),
  14715. default: true
  14716. },
  14717. ]
  14718. ))
  14719. characterMakers.push(() => makeCharacter(
  14720. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14721. {
  14722. front: {
  14723. height: math.unit(2 + 4 / 12, "feet"),
  14724. weight: math.unit(62, "lb"),
  14725. name: "Front",
  14726. image: {
  14727. source: "./media/characters/puru/front.svg",
  14728. extra: 206 / 149,
  14729. bottom: 0.06
  14730. }
  14731. },
  14732. },
  14733. [
  14734. {
  14735. name: "Normal",
  14736. height: math.unit(2 + 4 / 12, "feet"),
  14737. default: true
  14738. },
  14739. ]
  14740. ))
  14741. characterMakers.push(() => makeCharacter(
  14742. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14743. {
  14744. taur: {
  14745. height: math.unit(11, "feet"),
  14746. weight: math.unit(500, "lb"),
  14747. name: "Taur",
  14748. image: {
  14749. source: "./media/characters/kee/taur.svg",
  14750. extra: 1,
  14751. bottom: 0.04
  14752. }
  14753. },
  14754. },
  14755. [
  14756. {
  14757. name: "Normal",
  14758. height: math.unit(11, "feet"),
  14759. default: true
  14760. },
  14761. ]
  14762. ))
  14763. characterMakers.push(() => makeCharacter(
  14764. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14765. {
  14766. anthro: {
  14767. height: math.unit(7, "feet"),
  14768. weight: math.unit(190, "lb"),
  14769. name: "Anthro",
  14770. image: {
  14771. source: "./media/characters/cobalt-dracha/anthro.svg",
  14772. extra: 231 / 225,
  14773. bottom: 0.04
  14774. }
  14775. },
  14776. feral: {
  14777. height: math.unit(9 + 7 / 12, "feet"),
  14778. weight: math.unit(294, "lb"),
  14779. name: "Feral",
  14780. image: {
  14781. source: "./media/characters/cobalt-dracha/feral.svg",
  14782. extra: 692 / 633,
  14783. bottom: 0.05
  14784. }
  14785. },
  14786. },
  14787. [
  14788. {
  14789. name: "Normal",
  14790. height: math.unit(7, "feet"),
  14791. default: true
  14792. },
  14793. ]
  14794. ))
  14795. characterMakers.push(() => makeCharacter(
  14796. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14797. {
  14798. fallen: {
  14799. height: math.unit(11 + 8 / 12, "feet"),
  14800. weight: math.unit(485, "lb"),
  14801. name: "Java (Fallen)",
  14802. rename: true,
  14803. image: {
  14804. source: "./media/characters/java/fallen.svg",
  14805. extra: 226 / 208,
  14806. bottom: 0.005
  14807. }
  14808. },
  14809. godkin: {
  14810. height: math.unit(10 + 6 / 12, "feet"),
  14811. weight: math.unit(328, "lb"),
  14812. name: "Java (Godkin)",
  14813. rename: true,
  14814. image: {
  14815. source: "./media/characters/java/godkin.svg",
  14816. extra: 270 / 262,
  14817. bottom: 0.02
  14818. }
  14819. },
  14820. },
  14821. [
  14822. {
  14823. name: "Normal",
  14824. height: math.unit(11 + 8 / 12, "feet"),
  14825. default: true
  14826. },
  14827. ]
  14828. ))
  14829. characterMakers.push(() => makeCharacter(
  14830. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14831. {
  14832. front: {
  14833. height: math.unit(7 + 8 / 12, "feet"),
  14834. weight: math.unit(320, "lb"),
  14835. name: "Front",
  14836. image: {
  14837. source: "./media/characters/skoll/front.svg",
  14838. extra: 232 / 220,
  14839. bottom: 0.02
  14840. }
  14841. },
  14842. },
  14843. [
  14844. {
  14845. name: "Normal",
  14846. height: math.unit(7 + 8 / 12, "feet"),
  14847. default: true
  14848. },
  14849. ]
  14850. ))
  14851. characterMakers.push(() => makeCharacter(
  14852. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14853. {
  14854. front: {
  14855. height: math.unit(5 + 9 / 12, "feet"),
  14856. weight: math.unit(170, "lb"),
  14857. name: "Front",
  14858. image: {
  14859. source: "./media/characters/purna/front.svg",
  14860. extra: 239 / 229,
  14861. bottom: 0.01
  14862. }
  14863. },
  14864. },
  14865. [
  14866. {
  14867. name: "Normal",
  14868. height: math.unit(5 + 9 / 12, "feet"),
  14869. default: true
  14870. },
  14871. ]
  14872. ))
  14873. characterMakers.push(() => makeCharacter(
  14874. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14875. {
  14876. front: {
  14877. height: math.unit(5 + 9 / 12, "feet"),
  14878. weight: math.unit(142, "lb"),
  14879. name: "Front",
  14880. image: {
  14881. source: "./media/characters/kuva/front.svg",
  14882. extra: 281 / 271,
  14883. bottom: 0.006
  14884. }
  14885. },
  14886. },
  14887. [
  14888. {
  14889. name: "Normal",
  14890. height: math.unit(5 + 9 / 12, "feet"),
  14891. default: true
  14892. },
  14893. ]
  14894. ))
  14895. characterMakers.push(() => makeCharacter(
  14896. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14897. {
  14898. anthro: {
  14899. height: math.unit(9 + 2 / 12, "feet"),
  14900. weight: math.unit(270, "lb"),
  14901. name: "Anthro",
  14902. image: {
  14903. source: "./media/characters/embra/anthro.svg",
  14904. extra: 200 / 187,
  14905. bottom: 0.02
  14906. }
  14907. },
  14908. feral: {
  14909. height: math.unit(18 + 8 / 12, "feet"),
  14910. weight: math.unit(576, "lb"),
  14911. name: "Feral",
  14912. image: {
  14913. source: "./media/characters/embra/feral.svg",
  14914. extra: 152 / 137,
  14915. bottom: 0.037
  14916. }
  14917. },
  14918. },
  14919. [
  14920. {
  14921. name: "Normal",
  14922. height: math.unit(9 + 2 / 12, "feet"),
  14923. default: true
  14924. },
  14925. ]
  14926. ))
  14927. characterMakers.push(() => makeCharacter(
  14928. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14929. {
  14930. anthro: {
  14931. height: math.unit(10 + 9 / 12, "feet"),
  14932. weight: math.unit(224, "lb"),
  14933. name: "Anthro",
  14934. image: {
  14935. source: "./media/characters/grottos/anthro.svg",
  14936. extra: 350 / 332,
  14937. bottom: 0.045
  14938. }
  14939. },
  14940. feral: {
  14941. height: math.unit(20 + 7 / 12, "feet"),
  14942. weight: math.unit(629, "lb"),
  14943. name: "Feral",
  14944. image: {
  14945. source: "./media/characters/grottos/feral.svg",
  14946. extra: 207 / 190,
  14947. bottom: 0.05
  14948. }
  14949. },
  14950. },
  14951. [
  14952. {
  14953. name: "Normal",
  14954. height: math.unit(10 + 9 / 12, "feet"),
  14955. default: true
  14956. },
  14957. ]
  14958. ))
  14959. characterMakers.push(() => makeCharacter(
  14960. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14961. {
  14962. anthro: {
  14963. height: math.unit(9 + 6 / 12, "feet"),
  14964. weight: math.unit(298, "lb"),
  14965. name: "Anthro",
  14966. image: {
  14967. source: "./media/characters/frifna/anthro.svg",
  14968. extra: 282 / 269,
  14969. bottom: 0.015
  14970. }
  14971. },
  14972. feral: {
  14973. height: math.unit(16 + 2 / 12, "feet"),
  14974. weight: math.unit(624, "lb"),
  14975. name: "Feral",
  14976. image: {
  14977. source: "./media/characters/frifna/feral.svg"
  14978. }
  14979. },
  14980. },
  14981. [
  14982. {
  14983. name: "Normal",
  14984. height: math.unit(9 + 6 / 12, "feet"),
  14985. default: true
  14986. },
  14987. ]
  14988. ))
  14989. characterMakers.push(() => makeCharacter(
  14990. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14991. {
  14992. front: {
  14993. height: math.unit(6 + 2 / 12, "feet"),
  14994. weight: math.unit(168, "lb"),
  14995. name: "Front",
  14996. image: {
  14997. source: "./media/characters/elise/front.svg",
  14998. extra: 276 / 271
  14999. }
  15000. },
  15001. },
  15002. [
  15003. {
  15004. name: "Normal",
  15005. height: math.unit(6 + 2 / 12, "feet"),
  15006. default: true
  15007. },
  15008. ]
  15009. ))
  15010. characterMakers.push(() => makeCharacter(
  15011. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15012. {
  15013. front: {
  15014. height: math.unit(5 + 10 / 12, "feet"),
  15015. weight: math.unit(210, "lb"),
  15016. name: "Front",
  15017. image: {
  15018. source: "./media/characters/glade/front.svg",
  15019. extra: 258 / 247,
  15020. bottom: 0.008
  15021. }
  15022. },
  15023. },
  15024. [
  15025. {
  15026. name: "Normal",
  15027. height: math.unit(5 + 10 / 12, "feet"),
  15028. default: true
  15029. },
  15030. ]
  15031. ))
  15032. characterMakers.push(() => makeCharacter(
  15033. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15034. {
  15035. front: {
  15036. height: math.unit(5 + 10 / 12, "feet"),
  15037. weight: math.unit(129, "lb"),
  15038. name: "Front",
  15039. image: {
  15040. source: "./media/characters/rina/front.svg",
  15041. extra: 266 / 255,
  15042. bottom: 0.005
  15043. }
  15044. },
  15045. },
  15046. [
  15047. {
  15048. name: "Normal",
  15049. height: math.unit(5 + 10 / 12, "feet"),
  15050. default: true
  15051. },
  15052. ]
  15053. ))
  15054. characterMakers.push(() => makeCharacter(
  15055. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15056. {
  15057. front: {
  15058. height: math.unit(6 + 1 / 12, "feet"),
  15059. weight: math.unit(192, "lb"),
  15060. name: "Front",
  15061. image: {
  15062. source: "./media/characters/veronica/front.svg",
  15063. extra: 319 / 309,
  15064. bottom: 0.005
  15065. }
  15066. },
  15067. },
  15068. [
  15069. {
  15070. name: "Normal",
  15071. height: math.unit(6 + 1 / 12, "feet"),
  15072. default: true
  15073. },
  15074. ]
  15075. ))
  15076. characterMakers.push(() => makeCharacter(
  15077. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15078. {
  15079. front: {
  15080. height: math.unit(9 + 3 / 12, "feet"),
  15081. weight: math.unit(1100, "lb"),
  15082. name: "Front",
  15083. image: {
  15084. source: "./media/characters/braxton/front.svg",
  15085. extra: 1057 / 984,
  15086. bottom: 0.05
  15087. }
  15088. },
  15089. },
  15090. [
  15091. {
  15092. name: "Normal",
  15093. height: math.unit(9 + 3 / 12, "feet")
  15094. },
  15095. {
  15096. name: "Giant",
  15097. height: math.unit(300, "feet"),
  15098. default: true
  15099. },
  15100. {
  15101. name: "Macro",
  15102. height: math.unit(700, "feet")
  15103. },
  15104. {
  15105. name: "Megamacro",
  15106. height: math.unit(6000, "feet")
  15107. },
  15108. ]
  15109. ))
  15110. characterMakers.push(() => makeCharacter(
  15111. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15112. {
  15113. front: {
  15114. height: math.unit(6 + 7 / 12, "feet"),
  15115. weight: math.unit(150, "lb"),
  15116. name: "Front",
  15117. image: {
  15118. source: "./media/characters/blue-feyonics/front.svg",
  15119. extra: 1403 / 1306,
  15120. bottom: 0.047
  15121. }
  15122. },
  15123. },
  15124. [
  15125. {
  15126. name: "Normal",
  15127. height: math.unit(6 + 7 / 12, "feet"),
  15128. default: true
  15129. },
  15130. ]
  15131. ))
  15132. characterMakers.push(() => makeCharacter(
  15133. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15134. {
  15135. front: {
  15136. height: math.unit(1.8, "meters"),
  15137. weight: math.unit(60, "kg"),
  15138. name: "Front",
  15139. image: {
  15140. source: "./media/characters/maxwell/front.svg",
  15141. extra: 2060 / 1873
  15142. }
  15143. },
  15144. },
  15145. [
  15146. {
  15147. name: "Micro",
  15148. height: math.unit(1, "mm")
  15149. },
  15150. {
  15151. name: "Normal",
  15152. height: math.unit(1.8, "meter"),
  15153. default: true
  15154. },
  15155. {
  15156. name: "Macro",
  15157. height: math.unit(30, "meters")
  15158. },
  15159. {
  15160. name: "Megamacro",
  15161. height: math.unit(10, "km")
  15162. },
  15163. ]
  15164. ))
  15165. characterMakers.push(() => makeCharacter(
  15166. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15167. {
  15168. front: {
  15169. height: math.unit(6, "feet"),
  15170. weight: math.unit(150, "lb"),
  15171. name: "Front",
  15172. image: {
  15173. source: "./media/characters/jack/front.svg",
  15174. extra: 1754 / 1640,
  15175. bottom: 0.01
  15176. }
  15177. },
  15178. },
  15179. [
  15180. {
  15181. name: "Normal",
  15182. height: math.unit(80000, "feet"),
  15183. default: true
  15184. },
  15185. {
  15186. name: "Max size",
  15187. height: math.unit(10, "lightyears")
  15188. },
  15189. ]
  15190. ))
  15191. characterMakers.push(() => makeCharacter(
  15192. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15193. {
  15194. upright: {
  15195. height: math.unit(7, "feet"),
  15196. weight: math.unit(170, "lb"),
  15197. name: "Upright",
  15198. image: {
  15199. source: "./media/characters/cafat/upright.svg",
  15200. bottom: 0.01
  15201. }
  15202. },
  15203. uprightFull: {
  15204. height: math.unit(7, "feet"),
  15205. weight: math.unit(170, "lb"),
  15206. name: "Upright (Full)",
  15207. image: {
  15208. source: "./media/characters/cafat/upright-full.svg",
  15209. bottom: 0.01
  15210. }
  15211. },
  15212. side: {
  15213. height: math.unit(5, "feet"),
  15214. weight: math.unit(150, "lb"),
  15215. name: "Side",
  15216. image: {
  15217. source: "./media/characters/cafat/side.svg"
  15218. }
  15219. },
  15220. },
  15221. [
  15222. {
  15223. name: "Small",
  15224. height: math.unit(7, "feet"),
  15225. default: true
  15226. },
  15227. {
  15228. name: "Large",
  15229. height: math.unit(15.5, "feet")
  15230. },
  15231. ]
  15232. ))
  15233. characterMakers.push(() => makeCharacter(
  15234. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15235. {
  15236. front: {
  15237. height: math.unit(6, "feet"),
  15238. weight: math.unit(150, "lb"),
  15239. name: "Front",
  15240. image: {
  15241. source: "./media/characters/verin-raharra/front.svg",
  15242. extra: 5019 / 4835,
  15243. bottom: 0.023
  15244. }
  15245. },
  15246. },
  15247. [
  15248. {
  15249. name: "Normal",
  15250. height: math.unit(7 + 5 / 12, "feet"),
  15251. default: true
  15252. },
  15253. {
  15254. name: "Upsized",
  15255. height: math.unit(20, "feet")
  15256. },
  15257. ]
  15258. ))
  15259. characterMakers.push(() => makeCharacter(
  15260. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15261. {
  15262. front: {
  15263. height: math.unit(7, "feet"),
  15264. weight: math.unit(230, "lb"),
  15265. name: "Front",
  15266. image: {
  15267. source: "./media/characters/nakata/front.svg",
  15268. extra: 1.005,
  15269. bottom: 0.01
  15270. }
  15271. },
  15272. },
  15273. [
  15274. {
  15275. name: "Normal",
  15276. height: math.unit(7, "feet"),
  15277. default: true
  15278. },
  15279. {
  15280. name: "Big",
  15281. height: math.unit(14, "feet")
  15282. },
  15283. {
  15284. name: "Macro",
  15285. height: math.unit(400, "feet")
  15286. },
  15287. ]
  15288. ))
  15289. characterMakers.push(() => makeCharacter(
  15290. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15291. {
  15292. front: {
  15293. height: math.unit(4.91, "feet"),
  15294. weight: math.unit(100, "lb"),
  15295. name: "Front",
  15296. image: {
  15297. source: "./media/characters/lily/front.svg",
  15298. extra: 1585 / 1415,
  15299. bottom: 0.02
  15300. }
  15301. },
  15302. },
  15303. [
  15304. {
  15305. name: "Normal",
  15306. height: math.unit(4.91, "feet"),
  15307. default: true
  15308. },
  15309. ]
  15310. ))
  15311. characterMakers.push(() => makeCharacter(
  15312. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15313. {
  15314. laying: {
  15315. height: math.unit(4 + 4 / 12, "feet"),
  15316. weight: math.unit(600, "lb"),
  15317. name: "Laying",
  15318. image: {
  15319. source: "./media/characters/sheila/laying.svg",
  15320. extra: 1333 / 1265,
  15321. bottom: 0.16
  15322. }
  15323. },
  15324. },
  15325. [
  15326. {
  15327. name: "Normal",
  15328. height: math.unit(4 + 4 / 12, "feet"),
  15329. default: true
  15330. },
  15331. ]
  15332. ))
  15333. characterMakers.push(() => makeCharacter(
  15334. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15335. {
  15336. front: {
  15337. height: math.unit(6, "feet"),
  15338. weight: math.unit(190, "lb"),
  15339. name: "Front",
  15340. image: {
  15341. source: "./media/characters/sax/front.svg",
  15342. extra: 1187 / 973,
  15343. bottom: 0.042
  15344. }
  15345. },
  15346. },
  15347. [
  15348. {
  15349. name: "Micro",
  15350. height: math.unit(4, "inches"),
  15351. default: true
  15352. },
  15353. ]
  15354. ))
  15355. characterMakers.push(() => makeCharacter(
  15356. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15357. {
  15358. front: {
  15359. height: math.unit(6, "feet"),
  15360. weight: math.unit(150, "lb"),
  15361. name: "Front",
  15362. image: {
  15363. source: "./media/characters/pandora/front.svg",
  15364. extra: 2720 / 2556,
  15365. bottom: 0.015
  15366. }
  15367. },
  15368. back: {
  15369. height: math.unit(6, "feet"),
  15370. weight: math.unit(150, "lb"),
  15371. name: "Back",
  15372. image: {
  15373. source: "./media/characters/pandora/back.svg",
  15374. extra: 2720 / 2556,
  15375. bottom: 0.01
  15376. }
  15377. },
  15378. beans: {
  15379. height: math.unit(6 / 8, "feet"),
  15380. name: "Beans",
  15381. image: {
  15382. source: "./media/characters/pandora/beans.svg"
  15383. }
  15384. },
  15385. skirt: {
  15386. height: math.unit(6, "feet"),
  15387. weight: math.unit(150, "lb"),
  15388. name: "Skirt",
  15389. image: {
  15390. source: "./media/characters/pandora/skirt.svg",
  15391. extra: 1622 / 1525,
  15392. bottom: 0.015
  15393. }
  15394. },
  15395. hoodie: {
  15396. height: math.unit(6, "feet"),
  15397. weight: math.unit(150, "lb"),
  15398. name: "Hoodie",
  15399. image: {
  15400. source: "./media/characters/pandora/hoodie.svg",
  15401. extra: 1622 / 1525,
  15402. bottom: 0.015
  15403. }
  15404. },
  15405. casual: {
  15406. height: math.unit(6, "feet"),
  15407. weight: math.unit(150, "lb"),
  15408. name: "Casual",
  15409. image: {
  15410. source: "./media/characters/pandora/casual.svg",
  15411. extra: 1622 / 1525,
  15412. bottom: 0.015
  15413. }
  15414. },
  15415. },
  15416. [
  15417. {
  15418. name: "Normal",
  15419. height: math.unit(6, "feet")
  15420. },
  15421. {
  15422. name: "Big Steppy",
  15423. height: math.unit(1, "km"),
  15424. default: true
  15425. },
  15426. ]
  15427. ))
  15428. characterMakers.push(() => makeCharacter(
  15429. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15430. {
  15431. side: {
  15432. height: math.unit(10, "feet"),
  15433. weight: math.unit(800, "kg"),
  15434. name: "Side",
  15435. image: {
  15436. source: "./media/characters/venio-darcony/side.svg",
  15437. extra: 1373 / 1003,
  15438. bottom: 0.037
  15439. }
  15440. },
  15441. front: {
  15442. height: math.unit(19, "feet"),
  15443. weight: math.unit(800, "kg"),
  15444. name: "Front",
  15445. image: {
  15446. source: "./media/characters/venio-darcony/front.svg"
  15447. }
  15448. },
  15449. back: {
  15450. height: math.unit(19, "feet"),
  15451. weight: math.unit(800, "kg"),
  15452. name: "Back",
  15453. image: {
  15454. source: "./media/characters/venio-darcony/back.svg"
  15455. }
  15456. },
  15457. sideNsfw: {
  15458. height: math.unit(10, "feet"),
  15459. weight: math.unit(800, "kg"),
  15460. name: "Side (NSFW)",
  15461. image: {
  15462. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15463. extra: 1373 / 1003,
  15464. bottom: 0.037
  15465. }
  15466. },
  15467. frontNsfw: {
  15468. height: math.unit(19, "feet"),
  15469. weight: math.unit(800, "kg"),
  15470. name: "Front (NSFW)",
  15471. image: {
  15472. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15473. }
  15474. },
  15475. backNsfw: {
  15476. height: math.unit(19, "feet"),
  15477. weight: math.unit(800, "kg"),
  15478. name: "Back (NSFW)",
  15479. image: {
  15480. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15481. }
  15482. },
  15483. sideArmored: {
  15484. height: math.unit(10, "feet"),
  15485. weight: math.unit(800, "kg"),
  15486. name: "Side (Armored)",
  15487. image: {
  15488. source: "./media/characters/venio-darcony/side-armored.svg",
  15489. extra: 1373 / 1003,
  15490. bottom: 0.037
  15491. }
  15492. },
  15493. frontArmored: {
  15494. height: math.unit(19, "feet"),
  15495. weight: math.unit(900, "kg"),
  15496. name: "Front (Armored)",
  15497. image: {
  15498. source: "./media/characters/venio-darcony/front-armored.svg"
  15499. }
  15500. },
  15501. backArmored: {
  15502. height: math.unit(19, "feet"),
  15503. weight: math.unit(900, "kg"),
  15504. name: "Back (Armored)",
  15505. image: {
  15506. source: "./media/characters/venio-darcony/back-armored.svg"
  15507. }
  15508. },
  15509. sword: {
  15510. height: math.unit(10, "feet"),
  15511. weight: math.unit(50, "lb"),
  15512. name: "Sword",
  15513. image: {
  15514. source: "./media/characters/venio-darcony/sword.svg"
  15515. }
  15516. },
  15517. },
  15518. [
  15519. {
  15520. name: "Normal",
  15521. height: math.unit(10, "feet")
  15522. },
  15523. {
  15524. name: "Macro",
  15525. height: math.unit(130, "feet"),
  15526. default: true
  15527. },
  15528. {
  15529. name: "Macro+",
  15530. height: math.unit(240, "feet")
  15531. },
  15532. ]
  15533. ))
  15534. characterMakers.push(() => makeCharacter(
  15535. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15536. {
  15537. front: {
  15538. height: math.unit(6, "feet"),
  15539. weight: math.unit(150, "lb"),
  15540. name: "Front",
  15541. image: {
  15542. source: "./media/characters/veski/front.svg",
  15543. extra: 1299 / 1225,
  15544. bottom: 0.04
  15545. }
  15546. },
  15547. back: {
  15548. height: math.unit(6, "feet"),
  15549. weight: math.unit(150, "lb"),
  15550. name: "Back",
  15551. image: {
  15552. source: "./media/characters/veski/back.svg",
  15553. extra: 1299 / 1225,
  15554. bottom: 0.008
  15555. }
  15556. },
  15557. maw: {
  15558. height: math.unit(1.5 * 1.21, "feet"),
  15559. name: "Maw",
  15560. image: {
  15561. source: "./media/characters/veski/maw.svg"
  15562. }
  15563. },
  15564. },
  15565. [
  15566. {
  15567. name: "Macro",
  15568. height: math.unit(2, "km"),
  15569. default: true
  15570. },
  15571. ]
  15572. ))
  15573. characterMakers.push(() => makeCharacter(
  15574. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15575. {
  15576. front: {
  15577. height: math.unit(5 + 7 / 12, "feet"),
  15578. name: "Front",
  15579. image: {
  15580. source: "./media/characters/isabelle/front.svg",
  15581. extra: 2130 / 1976,
  15582. bottom: 0.05
  15583. }
  15584. },
  15585. },
  15586. [
  15587. {
  15588. name: "Supermicro",
  15589. height: math.unit(10, "micrometers")
  15590. },
  15591. {
  15592. name: "Micro",
  15593. height: math.unit(1, "inch")
  15594. },
  15595. {
  15596. name: "Tiny",
  15597. height: math.unit(5, "inches")
  15598. },
  15599. {
  15600. name: "Standard",
  15601. height: math.unit(5 + 7 / 12, "inches")
  15602. },
  15603. {
  15604. name: "Macro",
  15605. height: math.unit(80, "meters"),
  15606. default: true
  15607. },
  15608. {
  15609. name: "Megamacro",
  15610. height: math.unit(250, "meters")
  15611. },
  15612. {
  15613. name: "Gigamacro",
  15614. height: math.unit(5, "km")
  15615. },
  15616. {
  15617. name: "Cosmic",
  15618. height: math.unit(2.5e6, "miles")
  15619. },
  15620. ]
  15621. ))
  15622. characterMakers.push(() => makeCharacter(
  15623. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15624. {
  15625. front: {
  15626. height: math.unit(6, "feet"),
  15627. weight: math.unit(150, "lb"),
  15628. name: "Front",
  15629. image: {
  15630. source: "./media/characters/hanzo/front.svg",
  15631. extra: 374 / 344,
  15632. bottom: 0.02
  15633. }
  15634. },
  15635. },
  15636. [
  15637. {
  15638. name: "Normal",
  15639. height: math.unit(8, "feet"),
  15640. default: true
  15641. },
  15642. ]
  15643. ))
  15644. characterMakers.push(() => makeCharacter(
  15645. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15646. {
  15647. front: {
  15648. height: math.unit(7, "feet"),
  15649. weight: math.unit(130, "lb"),
  15650. name: "Front",
  15651. image: {
  15652. source: "./media/characters/anna/front.svg",
  15653. extra: 169 / 145,
  15654. bottom: 0.06
  15655. }
  15656. },
  15657. full: {
  15658. height: math.unit(4.96, "feet"),
  15659. weight: math.unit(220, "lb"),
  15660. name: "Full",
  15661. image: {
  15662. source: "./media/characters/anna/full.svg",
  15663. extra: 138 / 114,
  15664. bottom: 0.15
  15665. }
  15666. },
  15667. tongue: {
  15668. height: math.unit(2.53, "feet"),
  15669. name: "Tongue",
  15670. image: {
  15671. source: "./media/characters/anna/tongue.svg"
  15672. }
  15673. },
  15674. },
  15675. [
  15676. {
  15677. name: "Normal",
  15678. height: math.unit(7, "feet"),
  15679. default: true
  15680. },
  15681. ]
  15682. ))
  15683. characterMakers.push(() => makeCharacter(
  15684. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15685. {
  15686. front: {
  15687. height: math.unit(7, "feet"),
  15688. weight: math.unit(150, "lb"),
  15689. name: "Front",
  15690. image: {
  15691. source: "./media/characters/ian-corvid/front.svg",
  15692. extra: 150 / 142,
  15693. bottom: 0.02
  15694. }
  15695. },
  15696. back: {
  15697. height: math.unit(7, "feet"),
  15698. weight: math.unit(150, "lb"),
  15699. name: "Back",
  15700. image: {
  15701. source: "./media/characters/ian-corvid/back.svg",
  15702. extra: 150 / 143,
  15703. bottom: 0.01
  15704. }
  15705. },
  15706. stomping: {
  15707. height: math.unit(7, "feet"),
  15708. weight: math.unit(150, "lb"),
  15709. name: "Stomping",
  15710. image: {
  15711. source: "./media/characters/ian-corvid/stomping.svg",
  15712. extra: 76 / 72
  15713. }
  15714. },
  15715. sitting: {
  15716. height: math.unit(7 / 1.8, "feet"),
  15717. weight: math.unit(150, "lb"),
  15718. name: "Sitting",
  15719. image: {
  15720. source: "./media/characters/ian-corvid/sitting.svg",
  15721. extra: 1400 / 1269,
  15722. bottom: 0.15
  15723. }
  15724. },
  15725. },
  15726. [
  15727. {
  15728. name: "Tiny Microw",
  15729. height: math.unit(1, "inch")
  15730. },
  15731. {
  15732. name: "Microw",
  15733. height: math.unit(6, "inches")
  15734. },
  15735. {
  15736. name: "Crow",
  15737. height: math.unit(7 + 1 / 12, "feet"),
  15738. default: true
  15739. },
  15740. {
  15741. name: "Macrow",
  15742. height: math.unit(176, "feet")
  15743. },
  15744. ]
  15745. ))
  15746. characterMakers.push(() => makeCharacter(
  15747. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15748. {
  15749. front: {
  15750. height: math.unit(5 + 7 / 12, "feet"),
  15751. weight: math.unit(147, "lb"),
  15752. name: "Front",
  15753. image: {
  15754. source: "./media/characters/natalie-kellon/front.svg",
  15755. extra: 1214 / 1141,
  15756. bottom: 0.02
  15757. }
  15758. },
  15759. },
  15760. [
  15761. {
  15762. name: "Micro",
  15763. height: math.unit(1 / 16, "inch")
  15764. },
  15765. {
  15766. name: "Tiny",
  15767. height: math.unit(4, "inches")
  15768. },
  15769. {
  15770. name: "Normal",
  15771. height: math.unit(5 + 7 / 12, "feet"),
  15772. default: true
  15773. },
  15774. {
  15775. name: "Amazon",
  15776. height: math.unit(12, "feet")
  15777. },
  15778. {
  15779. name: "Giantess",
  15780. height: math.unit(160, "meters")
  15781. },
  15782. {
  15783. name: "Titaness",
  15784. height: math.unit(800, "meters")
  15785. },
  15786. ]
  15787. ))
  15788. characterMakers.push(() => makeCharacter(
  15789. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15790. {
  15791. front: {
  15792. height: math.unit(6, "feet"),
  15793. weight: math.unit(150, "lb"),
  15794. name: "Front",
  15795. image: {
  15796. source: "./media/characters/alluria/front.svg",
  15797. extra: 806 / 738,
  15798. bottom: 0.01
  15799. }
  15800. },
  15801. side: {
  15802. height: math.unit(6, "feet"),
  15803. weight: math.unit(150, "lb"),
  15804. name: "Side",
  15805. image: {
  15806. source: "./media/characters/alluria/side.svg",
  15807. extra: 800 / 750,
  15808. }
  15809. },
  15810. back: {
  15811. height: math.unit(6, "feet"),
  15812. weight: math.unit(150, "lb"),
  15813. name: "Back",
  15814. image: {
  15815. source: "./media/characters/alluria/back.svg",
  15816. extra: 806 / 738,
  15817. }
  15818. },
  15819. frontMaid: {
  15820. height: math.unit(6, "feet"),
  15821. weight: math.unit(150, "lb"),
  15822. name: "Front (Maid)",
  15823. image: {
  15824. source: "./media/characters/alluria/front-maid.svg",
  15825. extra: 806 / 738,
  15826. bottom: 0.01
  15827. }
  15828. },
  15829. sideMaid: {
  15830. height: math.unit(6, "feet"),
  15831. weight: math.unit(150, "lb"),
  15832. name: "Side (Maid)",
  15833. image: {
  15834. source: "./media/characters/alluria/side-maid.svg",
  15835. extra: 800 / 750,
  15836. bottom: 0.005
  15837. }
  15838. },
  15839. backMaid: {
  15840. height: math.unit(6, "feet"),
  15841. weight: math.unit(150, "lb"),
  15842. name: "Back (Maid)",
  15843. image: {
  15844. source: "./media/characters/alluria/back-maid.svg",
  15845. extra: 806 / 738,
  15846. }
  15847. },
  15848. },
  15849. [
  15850. {
  15851. name: "Micro",
  15852. height: math.unit(6, "inches"),
  15853. default: true
  15854. },
  15855. ]
  15856. ))
  15857. characterMakers.push(() => makeCharacter(
  15858. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15859. {
  15860. front: {
  15861. height: math.unit(6, "feet"),
  15862. weight: math.unit(150, "lb"),
  15863. name: "Front",
  15864. image: {
  15865. source: "./media/characters/kyle/front.svg",
  15866. extra: 1069 / 962,
  15867. bottom: 77.228 / 1727.45
  15868. }
  15869. },
  15870. },
  15871. [
  15872. {
  15873. name: "Macro",
  15874. height: math.unit(150, "feet"),
  15875. default: true
  15876. },
  15877. ]
  15878. ))
  15879. characterMakers.push(() => makeCharacter(
  15880. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15881. {
  15882. front: {
  15883. height: math.unit(6, "feet"),
  15884. weight: math.unit(300, "lb"),
  15885. name: "Front",
  15886. image: {
  15887. source: "./media/characters/duncan/front.svg",
  15888. extra: 1650 / 1482,
  15889. bottom: 0.05
  15890. }
  15891. },
  15892. },
  15893. [
  15894. {
  15895. name: "Macro",
  15896. height: math.unit(100, "feet"),
  15897. default: true
  15898. },
  15899. ]
  15900. ))
  15901. characterMakers.push(() => makeCharacter(
  15902. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15903. {
  15904. front: {
  15905. height: math.unit(5 + 4 / 12, "feet"),
  15906. weight: math.unit(220, "lb"),
  15907. name: "Front",
  15908. image: {
  15909. source: "./media/characters/memory/front.svg",
  15910. extra: 3641 / 3545,
  15911. bottom: 0.03
  15912. }
  15913. },
  15914. back: {
  15915. height: math.unit(5 + 4 / 12, "feet"),
  15916. weight: math.unit(220, "lb"),
  15917. name: "Back",
  15918. image: {
  15919. source: "./media/characters/memory/back.svg",
  15920. extra: 3641 / 3545,
  15921. bottom: 0.025
  15922. }
  15923. },
  15924. frontSkirt: {
  15925. height: math.unit(5 + 4 / 12, "feet"),
  15926. weight: math.unit(220, "lb"),
  15927. name: "Front (Skirt)",
  15928. image: {
  15929. source: "./media/characters/memory/front-skirt.svg",
  15930. extra: 3641 / 3545,
  15931. bottom: 0.03
  15932. }
  15933. },
  15934. frontDress: {
  15935. height: math.unit(5 + 4 / 12, "feet"),
  15936. weight: math.unit(220, "lb"),
  15937. name: "Front (Dress)",
  15938. image: {
  15939. source: "./media/characters/memory/front-dress.svg",
  15940. extra: 3641 / 3545,
  15941. bottom: 0.03
  15942. }
  15943. },
  15944. },
  15945. [
  15946. {
  15947. name: "Micro",
  15948. height: math.unit(6, "inches"),
  15949. default: true
  15950. },
  15951. {
  15952. name: "Normal",
  15953. height: math.unit(5 + 4 / 12, "feet")
  15954. },
  15955. ]
  15956. ))
  15957. characterMakers.push(() => makeCharacter(
  15958. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15959. {
  15960. front: {
  15961. height: math.unit(4 + 11 / 12, "feet"),
  15962. weight: math.unit(100, "lb"),
  15963. name: "Front",
  15964. image: {
  15965. source: "./media/characters/luno/front.svg",
  15966. extra: 1535 / 1487,
  15967. bottom: 0.03
  15968. }
  15969. },
  15970. },
  15971. [
  15972. {
  15973. name: "Micro",
  15974. height: math.unit(3, "inches")
  15975. },
  15976. {
  15977. name: "Normal",
  15978. height: math.unit(4 + 11 / 12, "feet"),
  15979. default: true
  15980. },
  15981. {
  15982. name: "Macro",
  15983. height: math.unit(300, "feet")
  15984. },
  15985. {
  15986. name: "Megamacro",
  15987. height: math.unit(700, "miles")
  15988. },
  15989. ]
  15990. ))
  15991. characterMakers.push(() => makeCharacter(
  15992. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15993. {
  15994. front: {
  15995. height: math.unit(6 + 2 / 12, "feet"),
  15996. weight: math.unit(170, "lb"),
  15997. name: "Front",
  15998. image: {
  15999. source: "./media/characters/jamesy/front.svg",
  16000. extra: 440 / 382,
  16001. bottom: 0.005
  16002. }
  16003. },
  16004. },
  16005. [
  16006. {
  16007. name: "Micro",
  16008. height: math.unit(3, "inches")
  16009. },
  16010. {
  16011. name: "Normal",
  16012. height: math.unit(6 + 2 / 12, "feet"),
  16013. default: true
  16014. },
  16015. {
  16016. name: "Macro",
  16017. height: math.unit(300, "feet")
  16018. },
  16019. {
  16020. name: "Megamacro",
  16021. height: math.unit(700, "miles")
  16022. },
  16023. ]
  16024. ))
  16025. characterMakers.push(() => makeCharacter(
  16026. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16027. {
  16028. front: {
  16029. height: math.unit(6, "feet"),
  16030. weight: math.unit(160, "lb"),
  16031. name: "Front",
  16032. image: {
  16033. source: "./media/characters/mark/front.svg",
  16034. extra: 3300 / 3100,
  16035. bottom: 136.42 / 3440.47
  16036. }
  16037. },
  16038. },
  16039. [
  16040. {
  16041. name: "Macro",
  16042. height: math.unit(120, "meters")
  16043. },
  16044. {
  16045. name: "Bigger Macro",
  16046. height: math.unit(350, "meters")
  16047. },
  16048. {
  16049. name: "Megamacro",
  16050. height: math.unit(8, "km"),
  16051. default: true
  16052. },
  16053. {
  16054. name: "Continental",
  16055. height: math.unit(4550, "km")
  16056. },
  16057. {
  16058. name: "Planetary",
  16059. height: math.unit(65000, "km")
  16060. },
  16061. ]
  16062. ))
  16063. characterMakers.push(() => makeCharacter(
  16064. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16065. {
  16066. front: {
  16067. height: math.unit(6, "feet"),
  16068. weight: math.unit(400, "lb"),
  16069. name: "Front",
  16070. image: {
  16071. source: "./media/characters/mac/front.svg",
  16072. extra: 1048 / 987.7,
  16073. bottom: 60 / 1107.6,
  16074. }
  16075. },
  16076. },
  16077. [
  16078. {
  16079. name: "Macro",
  16080. height: math.unit(500, "feet"),
  16081. default: true
  16082. },
  16083. ]
  16084. ))
  16085. characterMakers.push(() => makeCharacter(
  16086. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16087. {
  16088. front: {
  16089. height: math.unit(5 + 2 / 12, "feet"),
  16090. weight: math.unit(190, "lb"),
  16091. name: "Front",
  16092. image: {
  16093. source: "./media/characters/bari/front.svg",
  16094. extra: 3156 / 2880,
  16095. bottom: 0.03
  16096. }
  16097. },
  16098. back: {
  16099. height: math.unit(5 + 2 / 12, "feet"),
  16100. weight: math.unit(190, "lb"),
  16101. name: "Back",
  16102. image: {
  16103. source: "./media/characters/bari/back.svg",
  16104. extra: 3260 / 2834,
  16105. bottom: 0.025
  16106. }
  16107. },
  16108. frontPlush: {
  16109. height: math.unit(5 + 2 / 12, "feet"),
  16110. weight: math.unit(190, "lb"),
  16111. name: "Front (Plush)",
  16112. image: {
  16113. source: "./media/characters/bari/front-plush.svg",
  16114. extra: 1112 / 1061,
  16115. bottom: 0.002
  16116. }
  16117. },
  16118. },
  16119. [
  16120. {
  16121. name: "Micro",
  16122. height: math.unit(3, "inches")
  16123. },
  16124. {
  16125. name: "Normal",
  16126. height: math.unit(5 + 2 / 12, "feet"),
  16127. default: true
  16128. },
  16129. {
  16130. name: "Macro",
  16131. height: math.unit(20, "feet")
  16132. },
  16133. ]
  16134. ))
  16135. characterMakers.push(() => makeCharacter(
  16136. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16137. {
  16138. front: {
  16139. height: math.unit(6 + 1 / 12, "feet"),
  16140. weight: math.unit(275, "lb"),
  16141. name: "Front",
  16142. image: {
  16143. source: "./media/characters/hunter-misha-raven/front.svg"
  16144. }
  16145. },
  16146. },
  16147. [
  16148. {
  16149. name: "Mortal",
  16150. height: math.unit(6 + 1 / 12, "feet")
  16151. },
  16152. {
  16153. name: "Divine",
  16154. height: math.unit(1.12134e34, "parsecs"),
  16155. default: true
  16156. },
  16157. ]
  16158. ))
  16159. characterMakers.push(() => makeCharacter(
  16160. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16161. {
  16162. front: {
  16163. height: math.unit(6 + 3 / 12, "feet"),
  16164. weight: math.unit(220, "lb"),
  16165. name: "Front",
  16166. image: {
  16167. source: "./media/characters/max-calore/front.svg",
  16168. extra: 1700 / 1648,
  16169. bottom: 0.01
  16170. }
  16171. },
  16172. back: {
  16173. height: math.unit(6 + 3 / 12, "feet"),
  16174. weight: math.unit(220, "lb"),
  16175. name: "Back",
  16176. image: {
  16177. source: "./media/characters/max-calore/back.svg",
  16178. extra: 1700 / 1648,
  16179. bottom: 0.01
  16180. }
  16181. },
  16182. },
  16183. [
  16184. {
  16185. name: "Normal",
  16186. height: math.unit(6 + 3 / 12, "feet"),
  16187. default: true
  16188. },
  16189. ]
  16190. ))
  16191. characterMakers.push(() => makeCharacter(
  16192. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16193. {
  16194. side: {
  16195. height: math.unit(2 + 8 / 12, "feet"),
  16196. weight: math.unit(99, "lb"),
  16197. name: "Side",
  16198. image: {
  16199. source: "./media/characters/aspen/side.svg",
  16200. extra: 152 / 138,
  16201. bottom: 0.032
  16202. }
  16203. },
  16204. },
  16205. [
  16206. {
  16207. name: "Normal",
  16208. height: math.unit(2 + 8 / 12, "feet"),
  16209. default: true
  16210. },
  16211. ]
  16212. ))
  16213. characterMakers.push(() => makeCharacter(
  16214. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16215. {
  16216. side: {
  16217. height: math.unit(3 + 2 / 12, "feet"),
  16218. weight: math.unit(224, "lb"),
  16219. name: "Side",
  16220. image: {
  16221. source: "./media/characters/sheila-feral-wolf/side.svg",
  16222. extra: 179 / 166,
  16223. bottom: 0.03
  16224. }
  16225. },
  16226. },
  16227. [
  16228. {
  16229. name: "Normal",
  16230. height: math.unit(3 + 2 / 12, "feet"),
  16231. default: true
  16232. },
  16233. ]
  16234. ))
  16235. characterMakers.push(() => makeCharacter(
  16236. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16237. {
  16238. side: {
  16239. height: math.unit(1 + 9 / 12, "feet"),
  16240. weight: math.unit(38, "lb"),
  16241. name: "Side",
  16242. image: {
  16243. source: "./media/characters/michelle/side.svg",
  16244. extra: 147 / 136.7,
  16245. bottom: 0.03
  16246. }
  16247. },
  16248. },
  16249. [
  16250. {
  16251. name: "Normal",
  16252. height: math.unit(1 + 9 / 12, "feet"),
  16253. default: true
  16254. },
  16255. ]
  16256. ))
  16257. characterMakers.push(() => makeCharacter(
  16258. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16259. {
  16260. front: {
  16261. height: math.unit(1 + 1 / 12, "feet"),
  16262. weight: math.unit(18, "lb"),
  16263. name: "Front",
  16264. image: {
  16265. source: "./media/characters/nino/front.svg"
  16266. }
  16267. },
  16268. },
  16269. [
  16270. {
  16271. name: "Normal",
  16272. height: math.unit(1 + 1 / 12, "feet"),
  16273. default: true
  16274. },
  16275. ]
  16276. ))
  16277. characterMakers.push(() => makeCharacter(
  16278. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16279. {
  16280. front: {
  16281. height: math.unit(1, "feet"),
  16282. weight: math.unit(16, "lb"),
  16283. name: "Front",
  16284. image: {
  16285. source: "./media/characters/viola/front.svg"
  16286. }
  16287. },
  16288. },
  16289. [
  16290. {
  16291. name: "Normal",
  16292. height: math.unit(1, "feet"),
  16293. default: true
  16294. },
  16295. ]
  16296. ))
  16297. characterMakers.push(() => makeCharacter(
  16298. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16299. {
  16300. front: {
  16301. height: math.unit(6 + 5 / 12, "feet"),
  16302. weight: math.unit(580, "lb"),
  16303. name: "Front",
  16304. image: {
  16305. source: "./media/characters/atlas/front.svg",
  16306. extra: 298.5 / 290,
  16307. bottom: 0.015
  16308. }
  16309. },
  16310. },
  16311. [
  16312. {
  16313. name: "Normal",
  16314. height: math.unit(6 + 5 / 12, "feet"),
  16315. default: true
  16316. },
  16317. ]
  16318. ))
  16319. characterMakers.push(() => makeCharacter(
  16320. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16321. {
  16322. side: {
  16323. height: math.unit(1 + 10 / 12, "feet"),
  16324. weight: math.unit(25, "lb"),
  16325. name: "Side",
  16326. image: {
  16327. source: "./media/characters/davy/side.svg",
  16328. extra: 200 / 170,
  16329. bottom: 0.01
  16330. }
  16331. },
  16332. },
  16333. [
  16334. {
  16335. name: "Normal",
  16336. height: math.unit(1 + 10 / 12, "feet"),
  16337. default: true
  16338. },
  16339. ]
  16340. ))
  16341. characterMakers.push(() => makeCharacter(
  16342. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16343. {
  16344. side: {
  16345. height: math.unit(4 + 8 / 12, "feet"),
  16346. weight: math.unit(166, "lb"),
  16347. name: "Side",
  16348. image: {
  16349. source: "./media/characters/fiona/side.svg",
  16350. extra: 232 / 220,
  16351. bottom: 0.03
  16352. }
  16353. },
  16354. },
  16355. [
  16356. {
  16357. name: "Normal",
  16358. height: math.unit(4 + 8 / 12, "feet"),
  16359. default: true
  16360. },
  16361. ]
  16362. ))
  16363. characterMakers.push(() => makeCharacter(
  16364. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16365. {
  16366. front: {
  16367. height: math.unit(2, "feet"),
  16368. weight: math.unit(62, "lb"),
  16369. name: "Front",
  16370. image: {
  16371. source: "./media/characters/lyla/front.svg",
  16372. bottom: 0.1
  16373. }
  16374. },
  16375. },
  16376. [
  16377. {
  16378. name: "Normal",
  16379. height: math.unit(2, "feet"),
  16380. default: true
  16381. },
  16382. ]
  16383. ))
  16384. characterMakers.push(() => makeCharacter(
  16385. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16386. {
  16387. side: {
  16388. height: math.unit(1.8, "feet"),
  16389. weight: math.unit(44, "lb"),
  16390. name: "Side",
  16391. image: {
  16392. source: "./media/characters/perseus/side.svg",
  16393. bottom: 0.21
  16394. }
  16395. },
  16396. },
  16397. [
  16398. {
  16399. name: "Normal",
  16400. height: math.unit(1.8, "feet"),
  16401. default: true
  16402. },
  16403. ]
  16404. ))
  16405. characterMakers.push(() => makeCharacter(
  16406. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16407. {
  16408. side: {
  16409. height: math.unit(4 + 2 / 12, "feet"),
  16410. weight: math.unit(20, "lb"),
  16411. name: "Side",
  16412. image: {
  16413. source: "./media/characters/remus/side.svg"
  16414. }
  16415. },
  16416. },
  16417. [
  16418. {
  16419. name: "Normal",
  16420. height: math.unit(4 + 2 / 12, "feet"),
  16421. default: true
  16422. },
  16423. ]
  16424. ))
  16425. characterMakers.push(() => makeCharacter(
  16426. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16427. {
  16428. front: {
  16429. height: math.unit(4 + 11 / 12, "feet"),
  16430. weight: math.unit(114, "lb"),
  16431. name: "Front",
  16432. image: {
  16433. source: "./media/characters/raf/front.svg",
  16434. bottom: 20.5 / 1863
  16435. }
  16436. },
  16437. side: {
  16438. height: math.unit(4 + 11 / 12, "feet"),
  16439. weight: math.unit(114, "lb"),
  16440. name: "Side",
  16441. image: {
  16442. source: "./media/characters/raf/side.svg",
  16443. bottom: 22 / 1822
  16444. }
  16445. },
  16446. },
  16447. [
  16448. {
  16449. name: "Micro",
  16450. height: math.unit(2, "inches")
  16451. },
  16452. {
  16453. name: "Normal",
  16454. height: math.unit(4 + 11 / 12, "feet"),
  16455. default: true
  16456. },
  16457. {
  16458. name: "Macro",
  16459. height: math.unit(70, "feet")
  16460. },
  16461. ]
  16462. ))
  16463. characterMakers.push(() => makeCharacter(
  16464. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16465. {
  16466. front: {
  16467. height: math.unit(1.5, "meters"),
  16468. weight: math.unit(68, "kg"),
  16469. name: "Front",
  16470. image: {
  16471. source: "./media/characters/liam-einarr/front.svg",
  16472. extra: 2822 / 2666
  16473. }
  16474. },
  16475. back: {
  16476. height: math.unit(1.5, "meters"),
  16477. weight: math.unit(68, "kg"),
  16478. name: "Back",
  16479. image: {
  16480. source: "./media/characters/liam-einarr/back.svg",
  16481. extra: 2822 / 2666,
  16482. bottom: 0.015
  16483. }
  16484. },
  16485. },
  16486. [
  16487. {
  16488. name: "Normal",
  16489. height: math.unit(1.5, "meters"),
  16490. default: true
  16491. },
  16492. {
  16493. name: "Macro",
  16494. height: math.unit(150, "meters")
  16495. },
  16496. {
  16497. name: "Megamacro",
  16498. height: math.unit(35, "km")
  16499. },
  16500. ]
  16501. ))
  16502. characterMakers.push(() => makeCharacter(
  16503. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16504. {
  16505. front: {
  16506. height: math.unit(6, "feet"),
  16507. weight: math.unit(75, "kg"),
  16508. name: "Front",
  16509. image: {
  16510. source: "./media/characters/linda/front.svg",
  16511. extra: 930 / 874,
  16512. bottom: 0.004
  16513. }
  16514. },
  16515. },
  16516. [
  16517. {
  16518. name: "Normal",
  16519. height: math.unit(6, "feet"),
  16520. default: true
  16521. },
  16522. ]
  16523. ))
  16524. characterMakers.push(() => makeCharacter(
  16525. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16526. {
  16527. front: {
  16528. height: math.unit(6 + 8 / 12, "feet"),
  16529. weight: math.unit(220, "lb"),
  16530. name: "Front",
  16531. image: {
  16532. source: "./media/characters/caylex/front.svg",
  16533. extra: 821 / 772,
  16534. bottom: 0.07
  16535. }
  16536. },
  16537. back: {
  16538. height: math.unit(6 + 8 / 12, "feet"),
  16539. weight: math.unit(220, "lb"),
  16540. name: "Back",
  16541. image: {
  16542. source: "./media/characters/caylex/back.svg",
  16543. extra: 821 / 772,
  16544. bottom: 0.022
  16545. }
  16546. },
  16547. hand: {
  16548. height: math.unit(1.25, "feet"),
  16549. name: "Hand",
  16550. image: {
  16551. source: "./media/characters/caylex/hand.svg"
  16552. }
  16553. },
  16554. foot: {
  16555. height: math.unit(1.6, "feet"),
  16556. name: "Foot",
  16557. image: {
  16558. source: "./media/characters/caylex/foot.svg"
  16559. }
  16560. },
  16561. armored: {
  16562. height: math.unit(6 + 8 / 12, "feet"),
  16563. weight: math.unit(250, "lb"),
  16564. name: "Armored",
  16565. image: {
  16566. source: "./media/characters/caylex/armored.svg",
  16567. extra: 1420 / 1310,
  16568. bottom: 0.045
  16569. }
  16570. },
  16571. },
  16572. [
  16573. {
  16574. name: "Normal",
  16575. height: math.unit(6 + 8 / 12, "feet"),
  16576. default: true
  16577. },
  16578. {
  16579. name: "Normal+",
  16580. height: math.unit(12, "feet")
  16581. },
  16582. ]
  16583. ))
  16584. characterMakers.push(() => makeCharacter(
  16585. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16586. {
  16587. front: {
  16588. height: math.unit(7 + 6 / 12, "feet"),
  16589. weight: math.unit(288, "lb"),
  16590. name: "Front",
  16591. image: {
  16592. source: "./media/characters/alana/front.svg",
  16593. extra: 679 / 653,
  16594. bottom: 22.5 / 701
  16595. }
  16596. },
  16597. },
  16598. [
  16599. {
  16600. name: "Normal",
  16601. height: math.unit(7 + 6 / 12, "feet")
  16602. },
  16603. {
  16604. name: "Large",
  16605. height: math.unit(50, "feet")
  16606. },
  16607. {
  16608. name: "Macro",
  16609. height: math.unit(100, "feet"),
  16610. default: true
  16611. },
  16612. {
  16613. name: "Macro+",
  16614. height: math.unit(200, "feet")
  16615. },
  16616. ]
  16617. ))
  16618. characterMakers.push(() => makeCharacter(
  16619. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16620. {
  16621. front: {
  16622. height: math.unit(6 + 1 / 12, "feet"),
  16623. weight: math.unit(210, "lb"),
  16624. name: "Front",
  16625. image: {
  16626. source: "./media/characters/hasani/front.svg",
  16627. extra: 244 / 232,
  16628. bottom: 0.01
  16629. }
  16630. },
  16631. back: {
  16632. height: math.unit(6 + 1 / 12, "feet"),
  16633. weight: math.unit(210, "lb"),
  16634. name: "Back",
  16635. image: {
  16636. source: "./media/characters/hasani/back.svg",
  16637. extra: 244 / 232,
  16638. bottom: 0.01
  16639. }
  16640. },
  16641. },
  16642. [
  16643. {
  16644. name: "Normal",
  16645. height: math.unit(6 + 1 / 12, "feet")
  16646. },
  16647. {
  16648. name: "Macro",
  16649. height: math.unit(175, "feet"),
  16650. default: true
  16651. },
  16652. ]
  16653. ))
  16654. characterMakers.push(() => makeCharacter(
  16655. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16656. {
  16657. front: {
  16658. height: math.unit(1.82, "meters"),
  16659. weight: math.unit(140, "lb"),
  16660. name: "Front",
  16661. image: {
  16662. source: "./media/characters/nita/front.svg",
  16663. extra: 2473 / 2363,
  16664. bottom: 0.01
  16665. }
  16666. },
  16667. },
  16668. [
  16669. {
  16670. name: "Normal",
  16671. height: math.unit(1.82, "m")
  16672. },
  16673. {
  16674. name: "Macro",
  16675. height: math.unit(300, "m")
  16676. },
  16677. {
  16678. name: "Mistake Canon",
  16679. height: math.unit(0.5, "miles"),
  16680. default: true
  16681. },
  16682. {
  16683. name: "Big Mistake",
  16684. height: math.unit(13, "miles")
  16685. },
  16686. {
  16687. name: "Playing God",
  16688. height: math.unit(2450, "miles")
  16689. },
  16690. ]
  16691. ))
  16692. characterMakers.push(() => makeCharacter(
  16693. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16694. {
  16695. front: {
  16696. height: math.unit(4, "feet"),
  16697. weight: math.unit(120, "lb"),
  16698. name: "Front",
  16699. image: {
  16700. source: "./media/characters/shiriko/front.svg",
  16701. extra: 195 / 188
  16702. }
  16703. },
  16704. },
  16705. [
  16706. {
  16707. name: "Normal",
  16708. height: math.unit(4, "feet"),
  16709. default: true
  16710. },
  16711. ]
  16712. ))
  16713. characterMakers.push(() => makeCharacter(
  16714. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16715. {
  16716. front: {
  16717. height: math.unit(6, "feet"),
  16718. name: "front",
  16719. image: {
  16720. source: "./media/characters/deja/front.svg",
  16721. extra: 926 / 840,
  16722. bottom: 0.07
  16723. }
  16724. },
  16725. },
  16726. [
  16727. {
  16728. name: "Planck Length",
  16729. height: math.unit(1.6e-35, "meters")
  16730. },
  16731. {
  16732. name: "Normal",
  16733. height: math.unit(30.48, "meters"),
  16734. default: true
  16735. },
  16736. {
  16737. name: "Universal",
  16738. height: math.unit(8.8e26, "meters")
  16739. },
  16740. ]
  16741. ))
  16742. characterMakers.push(() => makeCharacter(
  16743. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16744. {
  16745. side: {
  16746. height: math.unit(8, "feet"),
  16747. weight: math.unit(6300, "lb"),
  16748. name: "Side",
  16749. image: {
  16750. source: "./media/characters/anima/side.svg",
  16751. bottom: 0.035
  16752. }
  16753. },
  16754. },
  16755. [
  16756. {
  16757. name: "Normal",
  16758. height: math.unit(8, "feet"),
  16759. default: true
  16760. },
  16761. ]
  16762. ))
  16763. characterMakers.push(() => makeCharacter(
  16764. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16765. {
  16766. front: {
  16767. height: math.unit(8, "feet"),
  16768. weight: math.unit(350, "lb"),
  16769. name: "Front",
  16770. image: {
  16771. source: "./media/characters/bianca/front.svg",
  16772. extra: 234 / 225,
  16773. bottom: 0.03
  16774. }
  16775. },
  16776. },
  16777. [
  16778. {
  16779. name: "Normal",
  16780. height: math.unit(8, "feet"),
  16781. default: true
  16782. },
  16783. ]
  16784. ))
  16785. characterMakers.push(() => makeCharacter(
  16786. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16787. {
  16788. front: {
  16789. height: math.unit(6, "feet"),
  16790. weight: math.unit(150, "lb"),
  16791. name: "Front",
  16792. image: {
  16793. source: "./media/characters/adinia/front.svg",
  16794. extra: 1845 / 1672,
  16795. bottom: 0.02
  16796. }
  16797. },
  16798. back: {
  16799. height: math.unit(6, "feet"),
  16800. weight: math.unit(150, "lb"),
  16801. name: "Back",
  16802. image: {
  16803. source: "./media/characters/adinia/back.svg",
  16804. extra: 1845 / 1672,
  16805. bottom: 0.002
  16806. }
  16807. },
  16808. },
  16809. [
  16810. {
  16811. name: "Normal",
  16812. height: math.unit(11 + 5 / 12, "feet"),
  16813. default: true
  16814. },
  16815. ]
  16816. ))
  16817. characterMakers.push(() => makeCharacter(
  16818. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16819. {
  16820. front: {
  16821. height: math.unit(3, "meters"),
  16822. weight: math.unit(200, "kg"),
  16823. name: "Front",
  16824. image: {
  16825. source: "./media/characters/lykasa/front.svg",
  16826. extra: 1076 / 976,
  16827. bottom: 0.06
  16828. }
  16829. },
  16830. },
  16831. [
  16832. {
  16833. name: "Normal",
  16834. height: math.unit(3, "meters")
  16835. },
  16836. {
  16837. name: "Kaiju",
  16838. height: math.unit(120, "meters"),
  16839. default: true
  16840. },
  16841. {
  16842. name: "Mega Kaiju",
  16843. height: math.unit(240, "km")
  16844. },
  16845. {
  16846. name: "Giga Kaiju",
  16847. height: math.unit(400, "megameters")
  16848. },
  16849. {
  16850. name: "Tera Kaiju",
  16851. height: math.unit(800, "gigameters")
  16852. },
  16853. {
  16854. name: "Kaiju Dragon Goddess",
  16855. height: math.unit(26, "zettaparsecs")
  16856. },
  16857. ]
  16858. ))
  16859. characterMakers.push(() => makeCharacter(
  16860. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16861. {
  16862. side: {
  16863. height: math.unit(283 / 124 * 6, "feet"),
  16864. weight: math.unit(35000, "lb"),
  16865. name: "Side",
  16866. image: {
  16867. source: "./media/characters/malfaren/side.svg",
  16868. extra: 2500 / 1010,
  16869. bottom: 0.01
  16870. }
  16871. },
  16872. front: {
  16873. height: math.unit(22.36, "feet"),
  16874. weight: math.unit(35000, "lb"),
  16875. name: "Front",
  16876. image: {
  16877. source: "./media/characters/malfaren/front.svg",
  16878. extra: 1631 / 1476,
  16879. bottom: 0.01
  16880. }
  16881. },
  16882. maw: {
  16883. height: math.unit(6.9, "feet"),
  16884. name: "Maw",
  16885. image: {
  16886. source: "./media/characters/malfaren/maw.svg"
  16887. }
  16888. },
  16889. },
  16890. [
  16891. {
  16892. name: "Big",
  16893. height: math.unit(283 / 162 * 6, "feet"),
  16894. },
  16895. {
  16896. name: "Bigger",
  16897. height: math.unit(283 / 124 * 6, "feet")
  16898. },
  16899. {
  16900. name: "Massive",
  16901. height: math.unit(283 / 92 * 6, "feet"),
  16902. default: true
  16903. },
  16904. {
  16905. name: "👀💦",
  16906. height: math.unit(283 / 73 * 6, "feet"),
  16907. },
  16908. ]
  16909. ))
  16910. characterMakers.push(() => makeCharacter(
  16911. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16912. {
  16913. front: {
  16914. height: math.unit(1.7, "m"),
  16915. weight: math.unit(70, "kg"),
  16916. name: "Front",
  16917. image: {
  16918. source: "./media/characters/kernel/front.svg",
  16919. extra: 222 / 210,
  16920. bottom: 0.007
  16921. }
  16922. },
  16923. },
  16924. [
  16925. {
  16926. name: "Nano",
  16927. height: math.unit(17, "micrometers")
  16928. },
  16929. {
  16930. name: "Micro",
  16931. height: math.unit(1.7, "mm")
  16932. },
  16933. {
  16934. name: "Small",
  16935. height: math.unit(1.7, "cm")
  16936. },
  16937. {
  16938. name: "Normal",
  16939. height: math.unit(1.7, "m"),
  16940. default: true
  16941. },
  16942. ]
  16943. ))
  16944. characterMakers.push(() => makeCharacter(
  16945. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16946. {
  16947. front: {
  16948. height: math.unit(1.75, "meters"),
  16949. weight: math.unit(65, "kg"),
  16950. name: "Front",
  16951. image: {
  16952. source: "./media/characters/jayne-folest/front.svg",
  16953. extra: 2115 / 2007,
  16954. bottom: 0.02
  16955. }
  16956. },
  16957. back: {
  16958. height: math.unit(1.75, "meters"),
  16959. weight: math.unit(65, "kg"),
  16960. name: "Back",
  16961. image: {
  16962. source: "./media/characters/jayne-folest/back.svg",
  16963. extra: 2115 / 2007,
  16964. bottom: 0.005
  16965. }
  16966. },
  16967. frontClothed: {
  16968. height: math.unit(1.75, "meters"),
  16969. weight: math.unit(65, "kg"),
  16970. name: "Front (Clothed)",
  16971. image: {
  16972. source: "./media/characters/jayne-folest/front-clothed.svg",
  16973. extra: 2115 / 2007,
  16974. bottom: 0.035
  16975. }
  16976. },
  16977. hand: {
  16978. height: math.unit(1 / 1.260, "feet"),
  16979. name: "Hand",
  16980. image: {
  16981. source: "./media/characters/jayne-folest/hand.svg"
  16982. }
  16983. },
  16984. foot: {
  16985. height: math.unit(1 / 0.918, "feet"),
  16986. name: "Foot",
  16987. image: {
  16988. source: "./media/characters/jayne-folest/foot.svg"
  16989. }
  16990. },
  16991. },
  16992. [
  16993. {
  16994. name: "Micro",
  16995. height: math.unit(4, "cm")
  16996. },
  16997. {
  16998. name: "Normal",
  16999. height: math.unit(1.75, "meters")
  17000. },
  17001. {
  17002. name: "Macro",
  17003. height: math.unit(47.5, "meters"),
  17004. default: true
  17005. },
  17006. ]
  17007. ))
  17008. characterMakers.push(() => makeCharacter(
  17009. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17010. {
  17011. front: {
  17012. height: math.unit(180, "cm"),
  17013. weight: math.unit(70, "kg"),
  17014. name: "Front",
  17015. image: {
  17016. source: "./media/characters/algier/front.svg",
  17017. extra: 596 / 572,
  17018. bottom: 0.04
  17019. }
  17020. },
  17021. back: {
  17022. height: math.unit(180, "cm"),
  17023. weight: math.unit(70, "kg"),
  17024. name: "Back",
  17025. image: {
  17026. source: "./media/characters/algier/back.svg",
  17027. extra: 596 / 572,
  17028. bottom: 0.025
  17029. }
  17030. },
  17031. frontdressed: {
  17032. height: math.unit(180, "cm"),
  17033. weight: math.unit(150, "kg"),
  17034. name: "Front-dressed",
  17035. image: {
  17036. source: "./media/characters/algier/front-dressed.svg",
  17037. extra: 596 / 572,
  17038. bottom: 0.038
  17039. }
  17040. },
  17041. },
  17042. [
  17043. {
  17044. name: "Micro",
  17045. height: math.unit(5, "cm")
  17046. },
  17047. {
  17048. name: "Normal",
  17049. height: math.unit(180, "cm"),
  17050. default: true
  17051. },
  17052. {
  17053. name: "Macro",
  17054. height: math.unit(64, "m")
  17055. },
  17056. ]
  17057. ))
  17058. characterMakers.push(() => makeCharacter(
  17059. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17060. {
  17061. upright: {
  17062. height: math.unit(7, "feet"),
  17063. weight: math.unit(300, "lb"),
  17064. name: "Upright",
  17065. image: {
  17066. source: "./media/characters/pretzel/upright.svg",
  17067. extra: 534 / 522,
  17068. bottom: 0.065
  17069. }
  17070. },
  17071. sprawling: {
  17072. height: math.unit(3.75, "feet"),
  17073. weight: math.unit(300, "lb"),
  17074. name: "Sprawling",
  17075. image: {
  17076. source: "./media/characters/pretzel/sprawling.svg",
  17077. extra: 314 / 281,
  17078. bottom: 0.1
  17079. }
  17080. },
  17081. tongue: {
  17082. height: math.unit(2, "feet"),
  17083. name: "Tongue",
  17084. image: {
  17085. source: "./media/characters/pretzel/tongue.svg"
  17086. }
  17087. },
  17088. },
  17089. [
  17090. {
  17091. name: "Normal",
  17092. height: math.unit(7, "feet"),
  17093. default: true
  17094. },
  17095. {
  17096. name: "Oversized",
  17097. height: math.unit(15, "feet")
  17098. },
  17099. {
  17100. name: "Huge",
  17101. height: math.unit(30, "feet")
  17102. },
  17103. {
  17104. name: "Macro",
  17105. height: math.unit(250, "feet")
  17106. },
  17107. ]
  17108. ))
  17109. characterMakers.push(() => makeCharacter(
  17110. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17111. {
  17112. sideFront: {
  17113. height: math.unit(5 + 2 / 12, "feet"),
  17114. weight: math.unit(120, "lb"),
  17115. name: "Front Side",
  17116. image: {
  17117. source: "./media/characters/roxi/side-front.svg",
  17118. extra: 2924 / 2717,
  17119. bottom: 0.08
  17120. }
  17121. },
  17122. sideBack: {
  17123. height: math.unit(5 + 2 / 12, "feet"),
  17124. weight: math.unit(120, "lb"),
  17125. name: "Back Side",
  17126. image: {
  17127. source: "./media/characters/roxi/side-back.svg",
  17128. extra: 2904 / 2693,
  17129. bottom: 0.06
  17130. }
  17131. },
  17132. front: {
  17133. height: math.unit(5 + 2 / 12, "feet"),
  17134. weight: math.unit(120, "lb"),
  17135. name: "Front",
  17136. image: {
  17137. source: "./media/characters/roxi/front.svg",
  17138. extra: 2028 / 1907,
  17139. bottom: 0.01
  17140. }
  17141. },
  17142. frontAlt: {
  17143. height: math.unit(5 + 2 / 12, "feet"),
  17144. weight: math.unit(120, "lb"),
  17145. name: "Front (Alt)",
  17146. image: {
  17147. source: "./media/characters/roxi/front-alt.svg",
  17148. extra: 1828 / 1798,
  17149. bottom: 0.01
  17150. }
  17151. },
  17152. sitting: {
  17153. height: math.unit(2.8, "feet"),
  17154. weight: math.unit(120, "lb"),
  17155. name: "Sitting",
  17156. image: {
  17157. source: "./media/characters/roxi/sitting.svg",
  17158. extra: 2660 / 2462,
  17159. bottom: 0.1
  17160. }
  17161. },
  17162. },
  17163. [
  17164. {
  17165. name: "Normal",
  17166. height: math.unit(5 + 2 / 12, "feet"),
  17167. default: true
  17168. },
  17169. ]
  17170. ))
  17171. characterMakers.push(() => makeCharacter(
  17172. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17173. {
  17174. side: {
  17175. height: math.unit(55, "feet"),
  17176. weight: math.unit(153, "tons"),
  17177. name: "Side",
  17178. image: {
  17179. source: "./media/characters/shadow/side.svg",
  17180. extra: 701 / 628,
  17181. bottom: 0.02
  17182. }
  17183. },
  17184. flying: {
  17185. height: math.unit(145, "feet"),
  17186. weight: math.unit(153, "tons"),
  17187. name: "Flying",
  17188. image: {
  17189. source: "./media/characters/shadow/flying.svg"
  17190. }
  17191. },
  17192. },
  17193. [
  17194. {
  17195. name: "Normal",
  17196. height: math.unit(55, "feet"),
  17197. default: true
  17198. },
  17199. ]
  17200. ))
  17201. characterMakers.push(() => makeCharacter(
  17202. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17203. {
  17204. front: {
  17205. height: math.unit(6, "feet"),
  17206. weight: math.unit(200, "lb"),
  17207. name: "Front",
  17208. image: {
  17209. source: "./media/characters/marcie/front.svg",
  17210. extra: 960 / 876,
  17211. bottom: 58 / 1017.87
  17212. }
  17213. },
  17214. },
  17215. [
  17216. {
  17217. name: "Macro",
  17218. height: math.unit(1, "mile"),
  17219. default: true
  17220. },
  17221. ]
  17222. ))
  17223. characterMakers.push(() => makeCharacter(
  17224. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17225. {
  17226. front: {
  17227. height: math.unit(7, "feet"),
  17228. weight: math.unit(200, "lb"),
  17229. name: "Front",
  17230. image: {
  17231. source: "./media/characters/kachina/front.svg",
  17232. extra: 1290.68 / 1119,
  17233. bottom: 36.5 / 1327.18
  17234. }
  17235. },
  17236. },
  17237. [
  17238. {
  17239. name: "Normal",
  17240. height: math.unit(7, "feet"),
  17241. default: true
  17242. },
  17243. ]
  17244. ))
  17245. characterMakers.push(() => makeCharacter(
  17246. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17247. {
  17248. looking: {
  17249. height: math.unit(2, "meters"),
  17250. weight: math.unit(300, "kg"),
  17251. name: "Looking",
  17252. image: {
  17253. source: "./media/characters/kash/looking.svg",
  17254. extra: 474 / 344,
  17255. bottom: 0.03
  17256. }
  17257. },
  17258. side: {
  17259. height: math.unit(2, "meters"),
  17260. weight: math.unit(300, "kg"),
  17261. name: "Side",
  17262. image: {
  17263. source: "./media/characters/kash/side.svg",
  17264. extra: 302 / 251,
  17265. bottom: 0.03
  17266. }
  17267. },
  17268. front: {
  17269. height: math.unit(2, "meters"),
  17270. weight: math.unit(300, "kg"),
  17271. name: "Front",
  17272. image: {
  17273. source: "./media/characters/kash/front.svg",
  17274. extra: 495 / 360,
  17275. bottom: 0.015
  17276. }
  17277. },
  17278. },
  17279. [
  17280. {
  17281. name: "Normal",
  17282. height: math.unit(2, "meters"),
  17283. default: true
  17284. },
  17285. {
  17286. name: "Big",
  17287. height: math.unit(3, "meters")
  17288. },
  17289. {
  17290. name: "Large",
  17291. height: math.unit(5, "meters")
  17292. },
  17293. ]
  17294. ))
  17295. characterMakers.push(() => makeCharacter(
  17296. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17297. {
  17298. feeding: {
  17299. height: math.unit(6.7, "feet"),
  17300. weight: math.unit(350, "lb"),
  17301. name: "Feeding",
  17302. image: {
  17303. source: "./media/characters/lalim/feeding.svg",
  17304. }
  17305. },
  17306. },
  17307. [
  17308. {
  17309. name: "Normal",
  17310. height: math.unit(6.7, "feet"),
  17311. default: true
  17312. },
  17313. ]
  17314. ))
  17315. characterMakers.push(() => makeCharacter(
  17316. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17317. {
  17318. front: {
  17319. height: math.unit(9.5, "feet"),
  17320. weight: math.unit(600, "lb"),
  17321. name: "Front",
  17322. image: {
  17323. source: "./media/characters/de'vout/front.svg",
  17324. extra: 1443 / 1328,
  17325. bottom: 0.025
  17326. }
  17327. },
  17328. back: {
  17329. height: math.unit(9.5, "feet"),
  17330. weight: math.unit(600, "lb"),
  17331. name: "Back",
  17332. image: {
  17333. source: "./media/characters/de'vout/back.svg",
  17334. extra: 1443 / 1328
  17335. }
  17336. },
  17337. frontDressed: {
  17338. height: math.unit(9.5, "feet"),
  17339. weight: math.unit(600, "lb"),
  17340. name: "Front (Dressed",
  17341. image: {
  17342. source: "./media/characters/de'vout/front-dressed.svg",
  17343. extra: 1443 / 1328,
  17344. bottom: 0.025
  17345. }
  17346. },
  17347. backDressed: {
  17348. height: math.unit(9.5, "feet"),
  17349. weight: math.unit(600, "lb"),
  17350. name: "Back (Dressed",
  17351. image: {
  17352. source: "./media/characters/de'vout/back-dressed.svg",
  17353. extra: 1443 / 1328
  17354. }
  17355. },
  17356. },
  17357. [
  17358. {
  17359. name: "Normal",
  17360. height: math.unit(9.5, "feet"),
  17361. default: true
  17362. },
  17363. ]
  17364. ))
  17365. characterMakers.push(() => makeCharacter(
  17366. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17367. {
  17368. front: {
  17369. height: math.unit(8, "feet"),
  17370. weight: math.unit(225, "lb"),
  17371. name: "Front",
  17372. image: {
  17373. source: "./media/characters/talana/front.svg",
  17374. extra: 1410 / 1300,
  17375. bottom: 0.015
  17376. }
  17377. },
  17378. frontDressed: {
  17379. height: math.unit(8, "feet"),
  17380. weight: math.unit(225, "lb"),
  17381. name: "Front (Dressed",
  17382. image: {
  17383. source: "./media/characters/talana/front-dressed.svg",
  17384. extra: 1410 / 1300,
  17385. bottom: 0.015
  17386. }
  17387. },
  17388. },
  17389. [
  17390. {
  17391. name: "Normal",
  17392. height: math.unit(8, "feet"),
  17393. default: true
  17394. },
  17395. ]
  17396. ))
  17397. characterMakers.push(() => makeCharacter(
  17398. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17399. {
  17400. side: {
  17401. height: math.unit(7.2, "feet"),
  17402. weight: math.unit(150, "lb"),
  17403. name: "Side",
  17404. image: {
  17405. source: "./media/characters/xeauvok/side.svg",
  17406. extra: 1975 / 1523,
  17407. bottom: 0.07
  17408. }
  17409. },
  17410. },
  17411. [
  17412. {
  17413. name: "Normal",
  17414. height: math.unit(7.2, "feet"),
  17415. default: true
  17416. },
  17417. ]
  17418. ))
  17419. characterMakers.push(() => makeCharacter(
  17420. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17421. {
  17422. side: {
  17423. height: math.unit(10, "feet"),
  17424. weight: math.unit(900, "kg"),
  17425. name: "Side",
  17426. image: {
  17427. source: "./media/characters/zara/side.svg",
  17428. extra: 504 / 498
  17429. }
  17430. },
  17431. },
  17432. [
  17433. {
  17434. name: "Normal",
  17435. height: math.unit(10, "feet"),
  17436. default: true
  17437. },
  17438. ]
  17439. ))
  17440. characterMakers.push(() => makeCharacter(
  17441. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17442. {
  17443. side: {
  17444. height: math.unit(6, "feet"),
  17445. weight: math.unit(150, "lb"),
  17446. name: "Side",
  17447. image: {
  17448. source: "./media/characters/richard-dragon/side.svg",
  17449. extra: 845 / 340,
  17450. bottom: 0.017
  17451. }
  17452. },
  17453. maw: {
  17454. height: math.unit(2.97, "feet"),
  17455. name: "Maw",
  17456. image: {
  17457. source: "./media/characters/richard-dragon/maw.svg"
  17458. }
  17459. },
  17460. },
  17461. [
  17462. ]
  17463. ))
  17464. characterMakers.push(() => makeCharacter(
  17465. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17466. {
  17467. front: {
  17468. height: math.unit(4, "feet"),
  17469. weight: math.unit(100, "lb"),
  17470. name: "Front",
  17471. image: {
  17472. source: "./media/characters/richard-smeargle/front.svg",
  17473. extra: 2952 / 2820,
  17474. bottom: 0.028
  17475. }
  17476. },
  17477. },
  17478. [
  17479. {
  17480. name: "Normal",
  17481. height: math.unit(4, "feet"),
  17482. default: true
  17483. },
  17484. {
  17485. name: "Dynamax",
  17486. height: math.unit(20, "meters")
  17487. },
  17488. ]
  17489. ))
  17490. characterMakers.push(() => makeCharacter(
  17491. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17492. {
  17493. front: {
  17494. height: math.unit(6, "feet"),
  17495. weight: math.unit(110, "lb"),
  17496. name: "Front",
  17497. image: {
  17498. source: "./media/characters/klay/front.svg",
  17499. extra: 962 / 883,
  17500. bottom: 0.04
  17501. }
  17502. },
  17503. back: {
  17504. height: math.unit(6, "feet"),
  17505. weight: math.unit(110, "lb"),
  17506. name: "Back",
  17507. image: {
  17508. source: "./media/characters/klay/back.svg",
  17509. extra: 962 / 883
  17510. }
  17511. },
  17512. beans: {
  17513. height: math.unit(1.15, "feet"),
  17514. name: "Beans",
  17515. image: {
  17516. source: "./media/characters/klay/beans.svg"
  17517. }
  17518. },
  17519. },
  17520. [
  17521. {
  17522. name: "Micro",
  17523. height: math.unit(6, "inches")
  17524. },
  17525. {
  17526. name: "Mini",
  17527. height: math.unit(3, "feet")
  17528. },
  17529. {
  17530. name: "Normal",
  17531. height: math.unit(6, "feet"),
  17532. default: true
  17533. },
  17534. {
  17535. name: "Big",
  17536. height: math.unit(25, "feet")
  17537. },
  17538. {
  17539. name: "Macro",
  17540. height: math.unit(100, "feet")
  17541. },
  17542. {
  17543. name: "Megamacro",
  17544. height: math.unit(400, "feet")
  17545. },
  17546. ]
  17547. ))
  17548. characterMakers.push(() => makeCharacter(
  17549. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17550. {
  17551. front: {
  17552. height: math.unit(6, "feet"),
  17553. weight: math.unit(160, "lb"),
  17554. name: "Front",
  17555. image: {
  17556. source: "./media/characters/marcus/front.svg",
  17557. extra: 734 / 676,
  17558. bottom: 0.03
  17559. }
  17560. },
  17561. },
  17562. [
  17563. {
  17564. name: "Little",
  17565. height: math.unit(6, "feet")
  17566. },
  17567. {
  17568. name: "Normal",
  17569. height: math.unit(110, "feet"),
  17570. default: true
  17571. },
  17572. {
  17573. name: "Macro",
  17574. height: math.unit(250, "feet")
  17575. },
  17576. {
  17577. name: "Megamacro",
  17578. height: math.unit(1000, "feet")
  17579. },
  17580. ]
  17581. ))
  17582. characterMakers.push(() => makeCharacter(
  17583. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17584. {
  17585. front: {
  17586. height: math.unit(7, "feet"),
  17587. weight: math.unit(275, "lb"),
  17588. name: "Front",
  17589. image: {
  17590. source: "./media/characters/claude-delroute/front.svg",
  17591. extra: 230 / 214,
  17592. bottom: 0.007
  17593. }
  17594. },
  17595. side: {
  17596. height: math.unit(7, "feet"),
  17597. weight: math.unit(275, "lb"),
  17598. name: "Side",
  17599. image: {
  17600. source: "./media/characters/claude-delroute/side.svg",
  17601. extra: 222 / 214,
  17602. bottom: 0.01
  17603. }
  17604. },
  17605. back: {
  17606. height: math.unit(7, "feet"),
  17607. weight: math.unit(275, "lb"),
  17608. name: "Back",
  17609. image: {
  17610. source: "./media/characters/claude-delroute/back.svg",
  17611. extra: 230 / 214,
  17612. bottom: 0.015
  17613. }
  17614. },
  17615. maw: {
  17616. height: math.unit(0.6407, "meters"),
  17617. name: "Maw",
  17618. image: {
  17619. source: "./media/characters/claude-delroute/maw.svg"
  17620. }
  17621. },
  17622. },
  17623. [
  17624. {
  17625. name: "Normal",
  17626. height: math.unit(7, "feet"),
  17627. default: true
  17628. },
  17629. {
  17630. name: "Lorge",
  17631. height: math.unit(20, "feet")
  17632. },
  17633. ]
  17634. ))
  17635. characterMakers.push(() => makeCharacter(
  17636. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17637. {
  17638. front: {
  17639. height: math.unit(8 + 4 / 12, "feet"),
  17640. weight: math.unit(600, "lb"),
  17641. name: "Front",
  17642. image: {
  17643. source: "./media/characters/dragonien/front.svg",
  17644. extra: 100 / 94,
  17645. bottom: 3.3 / 103.3445
  17646. }
  17647. },
  17648. back: {
  17649. height: math.unit(8 + 4 / 12, "feet"),
  17650. weight: math.unit(600, "lb"),
  17651. name: "Back",
  17652. image: {
  17653. source: "./media/characters/dragonien/back.svg",
  17654. extra: 776 / 746,
  17655. bottom: 6.4 / 782.0616
  17656. }
  17657. },
  17658. foot: {
  17659. height: math.unit(1.54, "feet"),
  17660. name: "Foot",
  17661. image: {
  17662. source: "./media/characters/dragonien/foot.svg",
  17663. }
  17664. },
  17665. },
  17666. [
  17667. {
  17668. name: "Normal",
  17669. height: math.unit(8 + 4 / 12, "feet"),
  17670. default: true
  17671. },
  17672. {
  17673. name: "Macro",
  17674. height: math.unit(200, "feet")
  17675. },
  17676. {
  17677. name: "Megamacro",
  17678. height: math.unit(1, "mile")
  17679. },
  17680. {
  17681. name: "Gigamacro",
  17682. height: math.unit(1000, "miles")
  17683. },
  17684. ]
  17685. ))
  17686. characterMakers.push(() => makeCharacter(
  17687. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17688. {
  17689. front: {
  17690. height: math.unit(5 + 2 / 12, "feet"),
  17691. weight: math.unit(110, "lb"),
  17692. name: "Front",
  17693. image: {
  17694. source: "./media/characters/desta/front.svg",
  17695. extra: 767 / 726,
  17696. bottom: 11.7 / 779
  17697. }
  17698. },
  17699. back: {
  17700. height: math.unit(5 + 2 / 12, "feet"),
  17701. weight: math.unit(110, "lb"),
  17702. name: "Back",
  17703. image: {
  17704. source: "./media/characters/desta/back.svg",
  17705. extra: 777 / 728,
  17706. bottom: 6 / 784
  17707. }
  17708. },
  17709. frontAlt: {
  17710. height: math.unit(5 + 2 / 12, "feet"),
  17711. weight: math.unit(110, "lb"),
  17712. name: "Front",
  17713. image: {
  17714. source: "./media/characters/desta/front-alt.svg",
  17715. extra: 1482 / 1417
  17716. }
  17717. },
  17718. side: {
  17719. height: math.unit(5 + 2 / 12, "feet"),
  17720. weight: math.unit(110, "lb"),
  17721. name: "Side",
  17722. image: {
  17723. source: "./media/characters/desta/side.svg",
  17724. extra: 2579 / 2491,
  17725. bottom: 0.053
  17726. }
  17727. },
  17728. },
  17729. [
  17730. {
  17731. name: "Micro",
  17732. height: math.unit(6, "inches")
  17733. },
  17734. {
  17735. name: "Normal",
  17736. height: math.unit(5 + 2 / 12, "feet"),
  17737. default: true
  17738. },
  17739. {
  17740. name: "Macro",
  17741. height: math.unit(62, "feet")
  17742. },
  17743. {
  17744. name: "Megamacro",
  17745. height: math.unit(1800, "feet")
  17746. },
  17747. ]
  17748. ))
  17749. characterMakers.push(() => makeCharacter(
  17750. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17751. {
  17752. front: {
  17753. height: math.unit(10, "feet"),
  17754. weight: math.unit(700, "lb"),
  17755. name: "Front",
  17756. image: {
  17757. source: "./media/characters/storm-alystar/front.svg",
  17758. extra: 2112 / 1898,
  17759. bottom: 0.034
  17760. }
  17761. },
  17762. },
  17763. [
  17764. {
  17765. name: "Micro",
  17766. height: math.unit(3.5, "inches")
  17767. },
  17768. {
  17769. name: "Normal",
  17770. height: math.unit(10, "feet"),
  17771. default: true
  17772. },
  17773. {
  17774. name: "Macro",
  17775. height: math.unit(400, "feet")
  17776. },
  17777. {
  17778. name: "Deific",
  17779. height: math.unit(60, "miles")
  17780. },
  17781. ]
  17782. ))
  17783. characterMakers.push(() => makeCharacter(
  17784. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17785. {
  17786. front: {
  17787. height: math.unit(2.35, "meters"),
  17788. weight: math.unit(119, "kg"),
  17789. name: "Front",
  17790. image: {
  17791. source: "./media/characters/ilia/front.svg",
  17792. extra: 1285 / 1255,
  17793. bottom: 0.06
  17794. }
  17795. },
  17796. },
  17797. [
  17798. {
  17799. name: "Normal",
  17800. height: math.unit(2.35, "meters")
  17801. },
  17802. {
  17803. name: "Macro",
  17804. height: math.unit(140, "meters"),
  17805. default: true
  17806. },
  17807. {
  17808. name: "Megamacro",
  17809. height: math.unit(100, "miles")
  17810. },
  17811. ]
  17812. ))
  17813. characterMakers.push(() => makeCharacter(
  17814. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17815. {
  17816. front: {
  17817. height: math.unit(6 + 5 / 12, "feet"),
  17818. weight: math.unit(190, "lb"),
  17819. name: "Front",
  17820. image: {
  17821. source: "./media/characters/kingdead/front.svg",
  17822. extra: 1228 / 1177
  17823. }
  17824. },
  17825. },
  17826. [
  17827. {
  17828. name: "Micro",
  17829. height: math.unit(7, "inches")
  17830. },
  17831. {
  17832. name: "Normal",
  17833. height: math.unit(6 + 5 / 12, "feet")
  17834. },
  17835. {
  17836. name: "Macro",
  17837. height: math.unit(150, "feet"),
  17838. default: true
  17839. },
  17840. {
  17841. name: "Megamacro",
  17842. height: math.unit(200, "miles")
  17843. },
  17844. ]
  17845. ))
  17846. characterMakers.push(() => makeCharacter(
  17847. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17848. {
  17849. front: {
  17850. height: math.unit(8, "feet"),
  17851. weight: math.unit(600, "lb"),
  17852. name: "Front",
  17853. image: {
  17854. source: "./media/characters/kyrehx/front.svg",
  17855. extra: 1195 / 1095,
  17856. bottom: 0.034
  17857. }
  17858. },
  17859. },
  17860. [
  17861. {
  17862. name: "Micro",
  17863. height: math.unit(2, "inches")
  17864. },
  17865. {
  17866. name: "Normal",
  17867. height: math.unit(8, "feet"),
  17868. default: true
  17869. },
  17870. {
  17871. name: "Macro",
  17872. height: math.unit(255, "feet")
  17873. },
  17874. ]
  17875. ))
  17876. characterMakers.push(() => makeCharacter(
  17877. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17878. {
  17879. front: {
  17880. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17881. weight: math.unit(184, "lb"),
  17882. name: "Front",
  17883. image: {
  17884. source: "./media/characters/xang/front.svg",
  17885. extra: 845 / 755
  17886. }
  17887. },
  17888. },
  17889. [
  17890. {
  17891. name: "Normal",
  17892. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17893. default: true
  17894. },
  17895. {
  17896. name: "Macro",
  17897. height: math.unit(0.935 * 146, "feet")
  17898. },
  17899. {
  17900. name: "Megamacro",
  17901. height: math.unit(0.935 * 3, "miles")
  17902. },
  17903. ]
  17904. ))
  17905. characterMakers.push(() => makeCharacter(
  17906. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17907. {
  17908. frontDressed: {
  17909. height: math.unit(5 + 7 / 12, "feet"),
  17910. weight: math.unit(140, "lb"),
  17911. name: "Front (Dressed)",
  17912. image: {
  17913. source: "./media/characters/doc-weardno/front-dressed.svg",
  17914. extra: 263 / 234
  17915. }
  17916. },
  17917. backDressed: {
  17918. height: math.unit(5 + 7 / 12, "feet"),
  17919. weight: math.unit(140, "lb"),
  17920. name: "Back (Dressed)",
  17921. image: {
  17922. source: "./media/characters/doc-weardno/back-dressed.svg",
  17923. extra: 266 / 238
  17924. }
  17925. },
  17926. front: {
  17927. height: math.unit(5 + 7 / 12, "feet"),
  17928. weight: math.unit(140, "lb"),
  17929. name: "Front",
  17930. image: {
  17931. source: "./media/characters/doc-weardno/front.svg",
  17932. extra: 254 / 233
  17933. }
  17934. },
  17935. },
  17936. [
  17937. {
  17938. name: "Micro",
  17939. height: math.unit(3, "inches")
  17940. },
  17941. {
  17942. name: "Normal",
  17943. height: math.unit(5 + 7 / 12, "feet"),
  17944. default: true
  17945. },
  17946. {
  17947. name: "Macro",
  17948. height: math.unit(25, "feet")
  17949. },
  17950. {
  17951. name: "Megamacro",
  17952. height: math.unit(2, "miles")
  17953. },
  17954. ]
  17955. ))
  17956. characterMakers.push(() => makeCharacter(
  17957. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17958. {
  17959. front: {
  17960. height: math.unit(6 + 2 / 12, "feet"),
  17961. weight: math.unit(153, "lb"),
  17962. name: "Front",
  17963. image: {
  17964. source: "./media/characters/seth-whilst/front.svg",
  17965. bottom: 0.07
  17966. }
  17967. },
  17968. },
  17969. [
  17970. {
  17971. name: "Micro",
  17972. height: math.unit(5, "inches")
  17973. },
  17974. {
  17975. name: "Normal",
  17976. height: math.unit(6 + 2 / 12, "feet"),
  17977. default: true
  17978. },
  17979. ]
  17980. ))
  17981. characterMakers.push(() => makeCharacter(
  17982. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17983. {
  17984. front: {
  17985. height: math.unit(3, "inches"),
  17986. weight: math.unit(8, "grams"),
  17987. name: "Front",
  17988. image: {
  17989. source: "./media/characters/pocket-jabari/front.svg",
  17990. extra: 1024 / 974,
  17991. bottom: 0.039
  17992. }
  17993. },
  17994. },
  17995. [
  17996. {
  17997. name: "Minimicro",
  17998. height: math.unit(8, "mm")
  17999. },
  18000. {
  18001. name: "Micro",
  18002. height: math.unit(3, "inches"),
  18003. default: true
  18004. },
  18005. {
  18006. name: "Normal",
  18007. height: math.unit(3, "feet")
  18008. },
  18009. ]
  18010. ))
  18011. characterMakers.push(() => makeCharacter(
  18012. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18013. {
  18014. front: {
  18015. height: math.unit(15, "feet"),
  18016. weight: math.unit(3280, "lb"),
  18017. name: "Front",
  18018. image: {
  18019. source: "./media/characters/sapphy/front.svg",
  18020. extra: 671 / 577,
  18021. bottom: 0.085
  18022. }
  18023. },
  18024. back: {
  18025. height: math.unit(15, "feet"),
  18026. weight: math.unit(3280, "lb"),
  18027. name: "Back",
  18028. image: {
  18029. source: "./media/characters/sapphy/back.svg",
  18030. extra: 631 / 607,
  18031. bottom: 0.045
  18032. }
  18033. },
  18034. },
  18035. [
  18036. {
  18037. name: "Normal",
  18038. height: math.unit(15, "feet")
  18039. },
  18040. {
  18041. name: "Casual Macro",
  18042. height: math.unit(120, "feet")
  18043. },
  18044. {
  18045. name: "Macro",
  18046. height: math.unit(2150, "feet"),
  18047. default: true
  18048. },
  18049. {
  18050. name: "Megamacro",
  18051. height: math.unit(8, "miles")
  18052. },
  18053. {
  18054. name: "Galaxy Mom",
  18055. height: math.unit(6, "megalightyears")
  18056. },
  18057. ]
  18058. ))
  18059. characterMakers.push(() => makeCharacter(
  18060. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18061. {
  18062. front: {
  18063. height: math.unit(6, "feet"),
  18064. weight: math.unit(170, "lb"),
  18065. name: "Front",
  18066. image: {
  18067. source: "./media/characters/kiro/front.svg",
  18068. extra: 1064 / 1012,
  18069. bottom: 0.052
  18070. }
  18071. },
  18072. },
  18073. [
  18074. {
  18075. name: "Micro",
  18076. height: math.unit(6, "inches")
  18077. },
  18078. {
  18079. name: "Normal",
  18080. height: math.unit(6, "feet"),
  18081. default: true
  18082. },
  18083. {
  18084. name: "Macro",
  18085. height: math.unit(72, "feet")
  18086. },
  18087. ]
  18088. ))
  18089. characterMakers.push(() => makeCharacter(
  18090. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18091. {
  18092. front: {
  18093. height: math.unit(5 + 9 / 12, "feet"),
  18094. weight: math.unit(175, "lb"),
  18095. name: "Front",
  18096. image: {
  18097. source: "./media/characters/irishfox/front.svg",
  18098. extra: 1912 / 1680,
  18099. bottom: 0.02
  18100. }
  18101. },
  18102. },
  18103. [
  18104. {
  18105. name: "Nano",
  18106. height: math.unit(1, "mm")
  18107. },
  18108. {
  18109. name: "Micro",
  18110. height: math.unit(2, "inches")
  18111. },
  18112. {
  18113. name: "Normal",
  18114. height: math.unit(5 + 9 / 12, "feet"),
  18115. default: true
  18116. },
  18117. {
  18118. name: "Macro",
  18119. height: math.unit(45, "feet")
  18120. },
  18121. ]
  18122. ))
  18123. characterMakers.push(() => makeCharacter(
  18124. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18125. {
  18126. front: {
  18127. height: math.unit(6 + 1 / 12, "feet"),
  18128. weight: math.unit(150, "lb"),
  18129. name: "Front",
  18130. image: {
  18131. source: "./media/characters/aronai-sieyes/front.svg",
  18132. extra: 1556 / 1480,
  18133. bottom: 0.015
  18134. }
  18135. },
  18136. side: {
  18137. height: math.unit(6 + 1 / 12, "feet"),
  18138. weight: math.unit(150, "lb"),
  18139. name: "Side",
  18140. image: {
  18141. source: "./media/characters/aronai-sieyes/side.svg",
  18142. extra: 1433 / 1390,
  18143. bottom: 0.0393
  18144. }
  18145. },
  18146. back: {
  18147. height: math.unit(6 + 1 / 12, "feet"),
  18148. weight: math.unit(150, "lb"),
  18149. name: "Back",
  18150. image: {
  18151. source: "./media/characters/aronai-sieyes/back.svg",
  18152. extra: 1544 / 1494,
  18153. bottom: 0.02
  18154. }
  18155. },
  18156. frontClothed: {
  18157. height: math.unit(6 + 1 / 12, "feet"),
  18158. weight: math.unit(150, "lb"),
  18159. name: "Front (Clothed)",
  18160. image: {
  18161. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18162. extra: 1582 / 1527
  18163. }
  18164. },
  18165. feral: {
  18166. height: math.unit(18, "feet"),
  18167. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18168. name: "Feral",
  18169. image: {
  18170. source: "./media/characters/aronai-sieyes/feral.svg",
  18171. extra: 1530 / 1240,
  18172. bottom: 0.035
  18173. }
  18174. },
  18175. },
  18176. [
  18177. {
  18178. name: "Micro",
  18179. height: math.unit(2, "inches")
  18180. },
  18181. {
  18182. name: "Normal",
  18183. height: math.unit(6 + 1 / 12, "feet"),
  18184. default: true
  18185. }
  18186. ]
  18187. ))
  18188. characterMakers.push(() => makeCharacter(
  18189. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18190. {
  18191. front: {
  18192. height: math.unit(12, "feet"),
  18193. weight: math.unit(410, "kg"),
  18194. name: "Front",
  18195. image: {
  18196. source: "./media/characters/xuna/front.svg",
  18197. extra: 2184 / 1980
  18198. }
  18199. },
  18200. side: {
  18201. height: math.unit(12, "feet"),
  18202. weight: math.unit(410, "kg"),
  18203. name: "Side",
  18204. image: {
  18205. source: "./media/characters/xuna/side.svg",
  18206. extra: 2184 / 1980
  18207. }
  18208. },
  18209. back: {
  18210. height: math.unit(12, "feet"),
  18211. weight: math.unit(410, "kg"),
  18212. name: "Back",
  18213. image: {
  18214. source: "./media/characters/xuna/back.svg",
  18215. extra: 2184 / 1980
  18216. }
  18217. },
  18218. },
  18219. [
  18220. {
  18221. name: "Nano glow",
  18222. height: math.unit(10, "nm")
  18223. },
  18224. {
  18225. name: "Micro floof",
  18226. height: math.unit(0.3, "m")
  18227. },
  18228. {
  18229. name: "Huggable softy boi",
  18230. height: math.unit(3.6576, "m"),
  18231. default: true
  18232. },
  18233. {
  18234. name: "Admirable floof",
  18235. height: math.unit(80, "meters")
  18236. },
  18237. {
  18238. name: "Gentle macro",
  18239. height: math.unit(300, "meters")
  18240. },
  18241. {
  18242. name: "Very careful floof",
  18243. height: math.unit(3200, "meters")
  18244. },
  18245. {
  18246. name: "The mega floof",
  18247. height: math.unit(36000, "meters")
  18248. },
  18249. {
  18250. name: "Giga-fur-Wicker",
  18251. height: math.unit(4800000, "meters")
  18252. },
  18253. {
  18254. name: "Licky world",
  18255. height: math.unit(20000000, "meters")
  18256. },
  18257. {
  18258. name: "Floofy cyan sun",
  18259. height: math.unit(1500000000, "meters")
  18260. },
  18261. {
  18262. name: "Milky Wicker",
  18263. height: math.unit(1000000000000000000000, "meters")
  18264. },
  18265. {
  18266. name: "The observing Wicker",
  18267. height: math.unit(999999999999999999999999999, "meters")
  18268. },
  18269. ]
  18270. ))
  18271. characterMakers.push(() => makeCharacter(
  18272. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18273. {
  18274. front: {
  18275. height: math.unit(5 + 9 / 12, "feet"),
  18276. weight: math.unit(150, "lb"),
  18277. name: "Front",
  18278. image: {
  18279. source: "./media/characters/arokha-sieyes/front.svg",
  18280. extra: 1425 / 1284,
  18281. bottom: 0.05
  18282. }
  18283. },
  18284. },
  18285. [
  18286. {
  18287. name: "Normal",
  18288. height: math.unit(5 + 9 / 12, "feet")
  18289. },
  18290. {
  18291. name: "Macro",
  18292. height: math.unit(30, "meters"),
  18293. default: true
  18294. },
  18295. ]
  18296. ))
  18297. characterMakers.push(() => makeCharacter(
  18298. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18299. {
  18300. front: {
  18301. height: math.unit(6, "feet"),
  18302. weight: math.unit(180, "lb"),
  18303. name: "Front",
  18304. image: {
  18305. source: "./media/characters/arokh-sieyes/front.svg",
  18306. extra: 1830 / 1769,
  18307. bottom: 0.01
  18308. }
  18309. },
  18310. },
  18311. [
  18312. {
  18313. name: "Normal",
  18314. height: math.unit(6, "feet")
  18315. },
  18316. {
  18317. name: "Macro",
  18318. height: math.unit(30, "meters"),
  18319. default: true
  18320. },
  18321. ]
  18322. ))
  18323. characterMakers.push(() => makeCharacter(
  18324. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18325. {
  18326. side: {
  18327. height: math.unit(13 + 1 / 12, "feet"),
  18328. weight: math.unit(8.5, "tonnes"),
  18329. name: "Side",
  18330. image: {
  18331. source: "./media/characters/goldeneye/side.svg",
  18332. extra: 1182 / 778,
  18333. bottom: 0.067
  18334. }
  18335. },
  18336. paw: {
  18337. height: math.unit(3.4, "feet"),
  18338. name: "Paw",
  18339. image: {
  18340. source: "./media/characters/goldeneye/paw.svg"
  18341. }
  18342. },
  18343. },
  18344. [
  18345. {
  18346. name: "Normal",
  18347. height: math.unit(13 + 1 / 12, "feet"),
  18348. default: true
  18349. },
  18350. ]
  18351. ))
  18352. characterMakers.push(() => makeCharacter(
  18353. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18354. {
  18355. front: {
  18356. height: math.unit(6 + 1 / 12, "feet"),
  18357. weight: math.unit(210, "lb"),
  18358. name: "Front",
  18359. image: {
  18360. source: "./media/characters/leonardo-lycheborne/front.svg",
  18361. extra: 390 / 365,
  18362. bottom: 0.032
  18363. }
  18364. },
  18365. side: {
  18366. height: math.unit(6 + 1 / 12, "feet"),
  18367. weight: math.unit(210, "lb"),
  18368. name: "Side",
  18369. image: {
  18370. source: "./media/characters/leonardo-lycheborne/side.svg",
  18371. extra: 390 / 365,
  18372. bottom: 0.005
  18373. }
  18374. },
  18375. back: {
  18376. height: math.unit(6 + 1 / 12, "feet"),
  18377. weight: math.unit(210, "lb"),
  18378. name: "Back",
  18379. image: {
  18380. source: "./media/characters/leonardo-lycheborne/back.svg",
  18381. extra: 392 / 366,
  18382. bottom: 0.01
  18383. }
  18384. },
  18385. hand: {
  18386. height: math.unit(1.08, "feet"),
  18387. name: "Hand",
  18388. image: {
  18389. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18390. }
  18391. },
  18392. foot: {
  18393. height: math.unit(1.32, "feet"),
  18394. name: "Foot",
  18395. image: {
  18396. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18397. }
  18398. },
  18399. were: {
  18400. height: math.unit(20, "feet"),
  18401. weight: math.unit(7800, "lb"),
  18402. name: "Were",
  18403. image: {
  18404. source: "./media/characters/leonardo-lycheborne/were.svg",
  18405. extra: 308 / 294,
  18406. bottom: 0.048
  18407. }
  18408. },
  18409. feral: {
  18410. height: math.unit(7.5, "feet"),
  18411. weight: math.unit(600, "lb"),
  18412. name: "Feral",
  18413. image: {
  18414. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18415. extra: 210 / 186,
  18416. bottom: 0.108
  18417. }
  18418. },
  18419. taur: {
  18420. height: math.unit(11, "feet"),
  18421. weight: math.unit(3300, "lb"),
  18422. name: "Taur",
  18423. image: {
  18424. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18425. extra: 320 / 303,
  18426. bottom: 0.025
  18427. }
  18428. },
  18429. barghest: {
  18430. height: math.unit(11, "feet"),
  18431. weight: math.unit(1300, "lb"),
  18432. name: "Barghest",
  18433. image: {
  18434. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18435. extra: 323 / 302,
  18436. bottom: 0.027
  18437. }
  18438. },
  18439. dick: {
  18440. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18441. name: "Dick",
  18442. image: {
  18443. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18444. }
  18445. },
  18446. dickWere: {
  18447. height: math.unit((20) / 3.8, "feet"),
  18448. name: "Dick (Were)",
  18449. image: {
  18450. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18451. }
  18452. },
  18453. },
  18454. [
  18455. {
  18456. name: "Normal",
  18457. height: math.unit(6 + 1 / 12, "feet"),
  18458. default: true
  18459. },
  18460. ]
  18461. ))
  18462. characterMakers.push(() => makeCharacter(
  18463. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18464. {
  18465. front: {
  18466. height: math.unit(10, "feet"),
  18467. weight: math.unit(350, "lb"),
  18468. name: "Front",
  18469. image: {
  18470. source: "./media/characters/jet/front.svg",
  18471. extra: 2050 / 1980,
  18472. bottom: 0.013
  18473. }
  18474. },
  18475. back: {
  18476. height: math.unit(10, "feet"),
  18477. weight: math.unit(350, "lb"),
  18478. name: "Back",
  18479. image: {
  18480. source: "./media/characters/jet/back.svg",
  18481. extra: 2050 / 1980,
  18482. bottom: 0.013
  18483. }
  18484. },
  18485. },
  18486. [
  18487. {
  18488. name: "Micro",
  18489. height: math.unit(6, "inches")
  18490. },
  18491. {
  18492. name: "Normal",
  18493. height: math.unit(10, "feet"),
  18494. default: true
  18495. },
  18496. {
  18497. name: "Macro",
  18498. height: math.unit(100, "feet")
  18499. },
  18500. ]
  18501. ))
  18502. characterMakers.push(() => makeCharacter(
  18503. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18504. {
  18505. front: {
  18506. height: math.unit(15, "feet"),
  18507. weight: math.unit(2800, "lb"),
  18508. name: "Front",
  18509. image: {
  18510. source: "./media/characters/tanarath/front.svg",
  18511. extra: 2392 / 2220,
  18512. bottom: 0.03
  18513. }
  18514. },
  18515. back: {
  18516. height: math.unit(15, "feet"),
  18517. weight: math.unit(2800, "lb"),
  18518. name: "Back",
  18519. image: {
  18520. source: "./media/characters/tanarath/back.svg",
  18521. extra: 2392 / 2220,
  18522. bottom: 0.03
  18523. }
  18524. },
  18525. },
  18526. [
  18527. {
  18528. name: "Normal",
  18529. height: math.unit(15, "feet"),
  18530. default: true
  18531. },
  18532. ]
  18533. ))
  18534. characterMakers.push(() => makeCharacter(
  18535. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18536. {
  18537. front: {
  18538. height: math.unit(7 + 1 / 12, "feet"),
  18539. weight: math.unit(175, "lb"),
  18540. name: "Front",
  18541. image: {
  18542. source: "./media/characters/patty-cattybatty/front.svg",
  18543. extra: 908 / 874,
  18544. bottom: 0.025
  18545. }
  18546. },
  18547. },
  18548. [
  18549. {
  18550. name: "Micro",
  18551. height: math.unit(1, "inch")
  18552. },
  18553. {
  18554. name: "Normal",
  18555. height: math.unit(7 + 1 / 12, "feet")
  18556. },
  18557. {
  18558. name: "Mini Macro",
  18559. height: math.unit(155, "feet")
  18560. },
  18561. {
  18562. name: "Macro",
  18563. height: math.unit(1077, "feet")
  18564. },
  18565. {
  18566. name: "Mega Macro",
  18567. height: math.unit(47650, "feet"),
  18568. default: true
  18569. },
  18570. {
  18571. name: "Giga Macro",
  18572. height: math.unit(440, "miles")
  18573. },
  18574. {
  18575. name: "Tera Macro",
  18576. height: math.unit(8700, "miles")
  18577. },
  18578. {
  18579. name: "Planetary Macro",
  18580. height: math.unit(32700, "miles")
  18581. },
  18582. {
  18583. name: "Solar Macro",
  18584. height: math.unit(550000, "miles")
  18585. },
  18586. {
  18587. name: "Celestial Macro",
  18588. height: math.unit(2.5, "AU")
  18589. },
  18590. ]
  18591. ))
  18592. characterMakers.push(() => makeCharacter(
  18593. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18594. {
  18595. front: {
  18596. height: math.unit(4 + 5 / 12, "feet"),
  18597. weight: math.unit(90, "lb"),
  18598. name: "Front",
  18599. image: {
  18600. source: "./media/characters/cappu/front.svg",
  18601. extra: 1247 / 1152,
  18602. bottom: 0.012
  18603. }
  18604. },
  18605. },
  18606. [
  18607. {
  18608. name: "Normal",
  18609. height: math.unit(4 + 5 / 12, "feet"),
  18610. default: true
  18611. },
  18612. ]
  18613. ))
  18614. characterMakers.push(() => makeCharacter(
  18615. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18616. {
  18617. frontDressed: {
  18618. height: math.unit(70, "cm"),
  18619. weight: math.unit(6, "kg"),
  18620. name: "Front (Dressed)",
  18621. image: {
  18622. source: "./media/characters/sebi/front-dressed.svg",
  18623. extra: 713.5 / 686.5,
  18624. bottom: 0.003
  18625. }
  18626. },
  18627. front: {
  18628. height: math.unit(70, "cm"),
  18629. weight: math.unit(5, "kg"),
  18630. name: "Front",
  18631. image: {
  18632. source: "./media/characters/sebi/front.svg",
  18633. extra: 713.5 / 686.5,
  18634. bottom: 0.003
  18635. }
  18636. }
  18637. },
  18638. [
  18639. {
  18640. name: "Normal",
  18641. height: math.unit(70, "cm"),
  18642. default: true
  18643. },
  18644. {
  18645. name: "Macro",
  18646. height: math.unit(8, "meters")
  18647. },
  18648. ]
  18649. ))
  18650. characterMakers.push(() => makeCharacter(
  18651. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18652. {
  18653. front: {
  18654. height: math.unit(6, "feet"),
  18655. weight: math.unit(150, "lb"),
  18656. name: "Front",
  18657. image: {
  18658. source: "./media/characters/typhek/front.svg",
  18659. extra: 1948 / 1929,
  18660. bottom: 0.025
  18661. }
  18662. },
  18663. side: {
  18664. height: math.unit(6, "feet"),
  18665. weight: math.unit(150, "lb"),
  18666. name: "Side",
  18667. image: {
  18668. source: "./media/characters/typhek/side.svg",
  18669. extra: 2034 / 2010,
  18670. bottom: 0.003
  18671. }
  18672. },
  18673. back: {
  18674. height: math.unit(6, "feet"),
  18675. weight: math.unit(150, "lb"),
  18676. name: "Back",
  18677. image: {
  18678. source: "./media/characters/typhek/back.svg",
  18679. extra: 2005 / 1978,
  18680. bottom: 0.004
  18681. }
  18682. },
  18683. palm: {
  18684. height: math.unit(1.2, "feet"),
  18685. name: "Palm",
  18686. image: {
  18687. source: "./media/characters/typhek/palm.svg"
  18688. }
  18689. },
  18690. fist: {
  18691. height: math.unit(1.1, "feet"),
  18692. name: "Fist",
  18693. image: {
  18694. source: "./media/characters/typhek/fist.svg"
  18695. }
  18696. },
  18697. foot: {
  18698. height: math.unit(1.57, "feet"),
  18699. name: "Foot",
  18700. image: {
  18701. source: "./media/characters/typhek/foot.svg"
  18702. }
  18703. },
  18704. sole: {
  18705. height: math.unit(2.05, "feet"),
  18706. name: "Sole",
  18707. image: {
  18708. source: "./media/characters/typhek/sole.svg"
  18709. }
  18710. },
  18711. },
  18712. [
  18713. {
  18714. name: "Macro",
  18715. height: math.unit(40, "stories"),
  18716. default: true
  18717. },
  18718. {
  18719. name: "Megamacro",
  18720. height: math.unit(1, "mile")
  18721. },
  18722. {
  18723. name: "Gigamacro",
  18724. height: math.unit(4000, "solarradii")
  18725. },
  18726. {
  18727. name: "Universal",
  18728. height: math.unit(1.1, "universes")
  18729. }
  18730. ]
  18731. ))
  18732. characterMakers.push(() => makeCharacter(
  18733. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18734. {
  18735. side: {
  18736. height: math.unit(5 + 7 / 12, "feet"),
  18737. weight: math.unit(150, "lb"),
  18738. name: "Side",
  18739. image: {
  18740. source: "./media/characters/kassy/side.svg",
  18741. extra: 1280 / 1225,
  18742. bottom: 0.002
  18743. }
  18744. },
  18745. front: {
  18746. height: math.unit(5 + 7 / 12, "feet"),
  18747. weight: math.unit(150, "lb"),
  18748. name: "Front",
  18749. image: {
  18750. source: "./media/characters/kassy/front.svg",
  18751. extra: 1280 / 1225,
  18752. bottom: 0.025
  18753. }
  18754. },
  18755. back: {
  18756. height: math.unit(5 + 7 / 12, "feet"),
  18757. weight: math.unit(150, "lb"),
  18758. name: "Back",
  18759. image: {
  18760. source: "./media/characters/kassy/back.svg",
  18761. extra: 1280 / 1225,
  18762. bottom: 0.002
  18763. }
  18764. },
  18765. foot: {
  18766. height: math.unit(1.266, "feet"),
  18767. name: "Foot",
  18768. image: {
  18769. source: "./media/characters/kassy/foot.svg"
  18770. }
  18771. },
  18772. },
  18773. [
  18774. {
  18775. name: "Normal",
  18776. height: math.unit(5 + 7 / 12, "feet")
  18777. },
  18778. {
  18779. name: "Macro",
  18780. height: math.unit(137, "feet"),
  18781. default: true
  18782. },
  18783. {
  18784. name: "Megamacro",
  18785. height: math.unit(1, "mile")
  18786. },
  18787. ]
  18788. ))
  18789. characterMakers.push(() => makeCharacter(
  18790. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18791. {
  18792. front: {
  18793. height: math.unit(6 + 1 / 12, "feet"),
  18794. weight: math.unit(200, "lb"),
  18795. name: "Front",
  18796. image: {
  18797. source: "./media/characters/neil/front.svg",
  18798. extra: 1326 / 1250,
  18799. bottom: 0.023
  18800. }
  18801. },
  18802. },
  18803. [
  18804. {
  18805. name: "Normal",
  18806. height: math.unit(6 + 1 / 12, "feet"),
  18807. default: true
  18808. },
  18809. {
  18810. name: "Macro",
  18811. height: math.unit(200, "feet")
  18812. },
  18813. ]
  18814. ))
  18815. characterMakers.push(() => makeCharacter(
  18816. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18817. {
  18818. front: {
  18819. height: math.unit(5 + 9 / 12, "feet"),
  18820. weight: math.unit(190, "lb"),
  18821. name: "Front",
  18822. image: {
  18823. source: "./media/characters/atticus/front.svg",
  18824. extra: 2934 / 2785,
  18825. bottom: 0.025
  18826. }
  18827. },
  18828. },
  18829. [
  18830. {
  18831. name: "Normal",
  18832. height: math.unit(5 + 9 / 12, "feet"),
  18833. default: true
  18834. },
  18835. {
  18836. name: "Macro",
  18837. height: math.unit(180, "feet")
  18838. },
  18839. ]
  18840. ))
  18841. characterMakers.push(() => makeCharacter(
  18842. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18843. {
  18844. side: {
  18845. height: math.unit(9, "feet"),
  18846. weight: math.unit(650, "lb"),
  18847. name: "Side",
  18848. image: {
  18849. source: "./media/characters/milo/side.svg",
  18850. extra: 2644 / 2310,
  18851. bottom: 0.032
  18852. }
  18853. },
  18854. },
  18855. [
  18856. {
  18857. name: "Normal",
  18858. height: math.unit(9, "feet"),
  18859. default: true
  18860. },
  18861. {
  18862. name: "Macro",
  18863. height: math.unit(300, "feet")
  18864. },
  18865. ]
  18866. ))
  18867. characterMakers.push(() => makeCharacter(
  18868. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18869. {
  18870. side: {
  18871. height: math.unit(8, "meters"),
  18872. weight: math.unit(90000, "kg"),
  18873. name: "Side",
  18874. image: {
  18875. source: "./media/characters/ijzer/side.svg",
  18876. extra: 2756 / 1600,
  18877. bottom: 0.01
  18878. }
  18879. },
  18880. },
  18881. [
  18882. {
  18883. name: "Small",
  18884. height: math.unit(3, "meters")
  18885. },
  18886. {
  18887. name: "Normal",
  18888. height: math.unit(8, "meters"),
  18889. default: true
  18890. },
  18891. {
  18892. name: "Normal+",
  18893. height: math.unit(10, "meters")
  18894. },
  18895. {
  18896. name: "Bigger",
  18897. height: math.unit(24, "meters")
  18898. },
  18899. {
  18900. name: "Huge",
  18901. height: math.unit(80, "meters")
  18902. },
  18903. ]
  18904. ))
  18905. characterMakers.push(() => makeCharacter(
  18906. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18907. {
  18908. front: {
  18909. height: math.unit(6 + 2 / 12, "feet"),
  18910. weight: math.unit(153, "lb"),
  18911. name: "Front",
  18912. image: {
  18913. source: "./media/characters/luca-cervicum/front.svg",
  18914. extra: 370 / 327,
  18915. bottom: 0.015
  18916. }
  18917. },
  18918. back: {
  18919. height: math.unit(6 + 2 / 12, "feet"),
  18920. weight: math.unit(153, "lb"),
  18921. name: "Back",
  18922. image: {
  18923. source: "./media/characters/luca-cervicum/back.svg",
  18924. extra: 367 / 333,
  18925. bottom: 0.005
  18926. }
  18927. },
  18928. frontGear: {
  18929. height: math.unit(6 + 2 / 12, "feet"),
  18930. weight: math.unit(173, "lb"),
  18931. name: "Front (Gear)",
  18932. image: {
  18933. source: "./media/characters/luca-cervicum/front-gear.svg",
  18934. extra: 377 / 333,
  18935. bottom: 0.006
  18936. }
  18937. },
  18938. },
  18939. [
  18940. {
  18941. name: "Normal",
  18942. height: math.unit(6 + 2 / 12, "feet"),
  18943. default: true
  18944. },
  18945. ]
  18946. ))
  18947. characterMakers.push(() => makeCharacter(
  18948. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18949. {
  18950. front: {
  18951. height: math.unit(6 + 1 / 12, "feet"),
  18952. weight: math.unit(304, "lb"),
  18953. name: "Front",
  18954. image: {
  18955. source: "./media/characters/oliver/front.svg",
  18956. extra: 157 / 143,
  18957. bottom: 0.08
  18958. }
  18959. },
  18960. },
  18961. [
  18962. {
  18963. name: "Normal",
  18964. height: math.unit(6 + 1 / 12, "feet"),
  18965. default: true
  18966. },
  18967. ]
  18968. ))
  18969. characterMakers.push(() => makeCharacter(
  18970. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18971. {
  18972. front: {
  18973. height: math.unit(5 + 7 / 12, "feet"),
  18974. weight: math.unit(140, "lb"),
  18975. name: "Front",
  18976. image: {
  18977. source: "./media/characters/shane/front.svg",
  18978. extra: 304 / 289,
  18979. bottom: 0.005
  18980. }
  18981. },
  18982. },
  18983. [
  18984. {
  18985. name: "Normal",
  18986. height: math.unit(5 + 7 / 12, "feet"),
  18987. default: true
  18988. },
  18989. ]
  18990. ))
  18991. characterMakers.push(() => makeCharacter(
  18992. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18993. {
  18994. front: {
  18995. height: math.unit(5 + 9 / 12, "feet"),
  18996. weight: math.unit(178, "lb"),
  18997. name: "Front",
  18998. image: {
  18999. source: "./media/characters/shin/front.svg",
  19000. extra: 159 / 151,
  19001. bottom: 0.015
  19002. }
  19003. },
  19004. },
  19005. [
  19006. {
  19007. name: "Normal",
  19008. height: math.unit(5 + 9 / 12, "feet"),
  19009. default: true
  19010. },
  19011. ]
  19012. ))
  19013. characterMakers.push(() => makeCharacter(
  19014. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19015. {
  19016. front: {
  19017. height: math.unit(5 + 10 / 12, "feet"),
  19018. weight: math.unit(168, "lb"),
  19019. name: "Front",
  19020. image: {
  19021. source: "./media/characters/xerxes/front.svg",
  19022. extra: 282 / 260,
  19023. bottom: 0.045
  19024. }
  19025. },
  19026. },
  19027. [
  19028. {
  19029. name: "Normal",
  19030. height: math.unit(5 + 10 / 12, "feet"),
  19031. default: true
  19032. },
  19033. ]
  19034. ))
  19035. characterMakers.push(() => makeCharacter(
  19036. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19037. {
  19038. front: {
  19039. height: math.unit(6 + 7 / 12, "feet"),
  19040. weight: math.unit(208, "lb"),
  19041. name: "Front",
  19042. image: {
  19043. source: "./media/characters/chaska/front.svg",
  19044. extra: 332 / 319,
  19045. bottom: 0.015
  19046. }
  19047. },
  19048. },
  19049. [
  19050. {
  19051. name: "Normal",
  19052. height: math.unit(6 + 7 / 12, "feet"),
  19053. default: true
  19054. },
  19055. ]
  19056. ))
  19057. characterMakers.push(() => makeCharacter(
  19058. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19059. {
  19060. front: {
  19061. height: math.unit(5 + 8 / 12, "feet"),
  19062. weight: math.unit(208, "lb"),
  19063. name: "Front",
  19064. image: {
  19065. source: "./media/characters/enuk/front.svg",
  19066. extra: 437 / 406,
  19067. bottom: 0.02
  19068. }
  19069. },
  19070. },
  19071. [
  19072. {
  19073. name: "Normal",
  19074. height: math.unit(5 + 8 / 12, "feet"),
  19075. default: true
  19076. },
  19077. ]
  19078. ))
  19079. characterMakers.push(() => makeCharacter(
  19080. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19081. {
  19082. front: {
  19083. height: math.unit(5 + 10 / 12, "feet"),
  19084. weight: math.unit(252, "lb"),
  19085. name: "Front",
  19086. image: {
  19087. source: "./media/characters/bruun/front.svg",
  19088. extra: 197 / 187,
  19089. bottom: 0.012
  19090. }
  19091. },
  19092. },
  19093. [
  19094. {
  19095. name: "Normal",
  19096. height: math.unit(5 + 10 / 12, "feet"),
  19097. default: true
  19098. },
  19099. ]
  19100. ))
  19101. characterMakers.push(() => makeCharacter(
  19102. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19103. {
  19104. front: {
  19105. height: math.unit(6 + 10 / 12, "feet"),
  19106. weight: math.unit(255, "lb"),
  19107. name: "Front",
  19108. image: {
  19109. source: "./media/characters/alexeev/front.svg",
  19110. extra: 213 / 200,
  19111. bottom: 0.05
  19112. }
  19113. },
  19114. },
  19115. [
  19116. {
  19117. name: "Normal",
  19118. height: math.unit(6 + 10 / 12, "feet"),
  19119. default: true
  19120. },
  19121. ]
  19122. ))
  19123. characterMakers.push(() => makeCharacter(
  19124. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19125. {
  19126. front: {
  19127. height: math.unit(2 + 8 / 12, "feet"),
  19128. weight: math.unit(22, "lb"),
  19129. name: "Front",
  19130. image: {
  19131. source: "./media/characters/evelyn/front.svg",
  19132. extra: 208 / 180
  19133. }
  19134. },
  19135. },
  19136. [
  19137. {
  19138. name: "Normal",
  19139. height: math.unit(2 + 8 / 12, "feet"),
  19140. default: true
  19141. },
  19142. ]
  19143. ))
  19144. characterMakers.push(() => makeCharacter(
  19145. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19146. {
  19147. front: {
  19148. height: math.unit(5 + 9 / 12, "feet"),
  19149. weight: math.unit(139, "lb"),
  19150. name: "Front",
  19151. image: {
  19152. source: "./media/characters/inca/front.svg",
  19153. extra: 294 / 291,
  19154. bottom: 0.03
  19155. }
  19156. },
  19157. },
  19158. [
  19159. {
  19160. name: "Normal",
  19161. height: math.unit(5 + 9 / 12, "feet"),
  19162. default: true
  19163. },
  19164. ]
  19165. ))
  19166. characterMakers.push(() => makeCharacter(
  19167. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19168. {
  19169. front: {
  19170. height: math.unit(5 + 1 / 12, "feet"),
  19171. weight: math.unit(84, "lb"),
  19172. name: "Front",
  19173. image: {
  19174. source: "./media/characters/magdalene/front.svg",
  19175. extra: 293 / 273
  19176. }
  19177. },
  19178. },
  19179. [
  19180. {
  19181. name: "Normal",
  19182. height: math.unit(5 + 1 / 12, "feet"),
  19183. default: true
  19184. },
  19185. ]
  19186. ))
  19187. characterMakers.push(() => makeCharacter(
  19188. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19189. {
  19190. front: {
  19191. height: math.unit(6 + 3 / 12, "feet"),
  19192. weight: math.unit(185, "lb"),
  19193. name: "Front",
  19194. image: {
  19195. source: "./media/characters/mera/front.svg",
  19196. extra: 291 / 277,
  19197. bottom: 0.03
  19198. }
  19199. },
  19200. },
  19201. [
  19202. {
  19203. name: "Normal",
  19204. height: math.unit(6 + 3 / 12, "feet"),
  19205. default: true
  19206. },
  19207. ]
  19208. ))
  19209. characterMakers.push(() => makeCharacter(
  19210. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19211. {
  19212. front: {
  19213. height: math.unit(6 + 7 / 12, "feet"),
  19214. weight: math.unit(160, "lb"),
  19215. name: "Front",
  19216. image: {
  19217. source: "./media/characters/ceres/front.svg",
  19218. extra: 1023 / 950,
  19219. bottom: 0.027
  19220. }
  19221. },
  19222. back: {
  19223. height: math.unit(6 + 7 / 12, "feet"),
  19224. weight: math.unit(160, "lb"),
  19225. name: "Back",
  19226. image: {
  19227. source: "./media/characters/ceres/back.svg",
  19228. extra: 1023 / 950
  19229. }
  19230. },
  19231. },
  19232. [
  19233. {
  19234. name: "Normal",
  19235. height: math.unit(6 + 7 / 12, "feet"),
  19236. default: true
  19237. },
  19238. ]
  19239. ))
  19240. characterMakers.push(() => makeCharacter(
  19241. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19242. {
  19243. front: {
  19244. height: math.unit(5 + 10 / 12, "feet"),
  19245. weight: math.unit(150, "lb"),
  19246. name: "Front",
  19247. image: {
  19248. source: "./media/characters/kris/front.svg",
  19249. extra: 885 / 803,
  19250. bottom: 0.03
  19251. }
  19252. },
  19253. },
  19254. [
  19255. {
  19256. name: "Normal",
  19257. height: math.unit(5 + 10 / 12, "feet"),
  19258. default: true
  19259. },
  19260. ]
  19261. ))
  19262. characterMakers.push(() => makeCharacter(
  19263. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19264. {
  19265. front: {
  19266. height: math.unit(7, "feet"),
  19267. weight: math.unit(120, "kg"),
  19268. name: "Front",
  19269. image: {
  19270. source: "./media/characters/taluthus/front.svg",
  19271. extra: 903 / 833,
  19272. bottom: 0.015
  19273. }
  19274. },
  19275. },
  19276. [
  19277. {
  19278. name: "Normal",
  19279. height: math.unit(7, "feet"),
  19280. default: true
  19281. },
  19282. {
  19283. name: "Macro",
  19284. height: math.unit(300, "feet")
  19285. },
  19286. ]
  19287. ))
  19288. characterMakers.push(() => makeCharacter(
  19289. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19290. {
  19291. front: {
  19292. height: math.unit(5 + 9 / 12, "feet"),
  19293. weight: math.unit(145, "lb"),
  19294. name: "Front",
  19295. image: {
  19296. source: "./media/characters/dawn/front.svg",
  19297. extra: 2094 / 2016,
  19298. bottom: 0.025
  19299. }
  19300. },
  19301. back: {
  19302. height: math.unit(5 + 9 / 12, "feet"),
  19303. weight: math.unit(160, "lb"),
  19304. name: "Back",
  19305. image: {
  19306. source: "./media/characters/dawn/back.svg",
  19307. extra: 2112 / 2080,
  19308. bottom: 0.005
  19309. }
  19310. },
  19311. },
  19312. [
  19313. {
  19314. name: "Normal",
  19315. height: math.unit(6 + 7 / 12, "feet"),
  19316. default: true
  19317. },
  19318. ]
  19319. ))
  19320. characterMakers.push(() => makeCharacter(
  19321. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19322. {
  19323. anthro: {
  19324. height: math.unit(8 + 3 / 12, "feet"),
  19325. weight: math.unit(450, "lb"),
  19326. name: "Anthro",
  19327. image: {
  19328. source: "./media/characters/arador/anthro.svg",
  19329. extra: 1835 / 1718,
  19330. bottom: 0.025
  19331. }
  19332. },
  19333. feral: {
  19334. height: math.unit(4, "feet"),
  19335. weight: math.unit(200, "lb"),
  19336. name: "Feral",
  19337. image: {
  19338. source: "./media/characters/arador/feral.svg",
  19339. extra: 1683 / 1514,
  19340. bottom: 0.07
  19341. }
  19342. },
  19343. },
  19344. [
  19345. {
  19346. name: "Normal",
  19347. height: math.unit(8 + 3 / 12, "feet")
  19348. },
  19349. {
  19350. name: "Macro",
  19351. height: math.unit(82.5, "feet"),
  19352. default: true
  19353. },
  19354. ]
  19355. ))
  19356. characterMakers.push(() => makeCharacter(
  19357. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19358. {
  19359. front: {
  19360. height: math.unit(5 + 10 / 12, "feet"),
  19361. weight: math.unit(125, "lb"),
  19362. name: "Front",
  19363. image: {
  19364. source: "./media/characters/dharsi/front.svg",
  19365. extra: 716 / 630,
  19366. bottom: 0.035
  19367. }
  19368. },
  19369. },
  19370. [
  19371. {
  19372. name: "Nano",
  19373. height: math.unit(100, "nm")
  19374. },
  19375. {
  19376. name: "Micro",
  19377. height: math.unit(2, "inches")
  19378. },
  19379. {
  19380. name: "Normal",
  19381. height: math.unit(5 + 10 / 12, "feet"),
  19382. default: true
  19383. },
  19384. {
  19385. name: "Macro",
  19386. height: math.unit(1000, "feet")
  19387. },
  19388. {
  19389. name: "Megamacro",
  19390. height: math.unit(10, "miles")
  19391. },
  19392. {
  19393. name: "Gigamacro",
  19394. height: math.unit(3000, "miles")
  19395. },
  19396. {
  19397. name: "Teramacro",
  19398. height: math.unit(500000, "miles")
  19399. },
  19400. {
  19401. name: "Teramacro+",
  19402. height: math.unit(30, "galaxies")
  19403. },
  19404. ]
  19405. ))
  19406. characterMakers.push(() => makeCharacter(
  19407. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19408. {
  19409. front: {
  19410. height: math.unit(6, "feet"),
  19411. weight: math.unit(150, "lb"),
  19412. name: "Front",
  19413. image: {
  19414. source: "./media/characters/deathy/front.svg",
  19415. extra: 1552 / 1463,
  19416. bottom: 0.025
  19417. }
  19418. },
  19419. side: {
  19420. height: math.unit(6, "feet"),
  19421. weight: math.unit(150, "lb"),
  19422. name: "Side",
  19423. image: {
  19424. source: "./media/characters/deathy/side.svg",
  19425. extra: 1604 / 1455,
  19426. bottom: 0.025
  19427. }
  19428. },
  19429. back: {
  19430. height: math.unit(6, "feet"),
  19431. weight: math.unit(150, "lb"),
  19432. name: "Back",
  19433. image: {
  19434. source: "./media/characters/deathy/back.svg",
  19435. extra: 1580 / 1463,
  19436. bottom: 0.005
  19437. }
  19438. },
  19439. },
  19440. [
  19441. {
  19442. name: "Micro",
  19443. height: math.unit(5, "millimeters")
  19444. },
  19445. {
  19446. name: "Normal",
  19447. height: math.unit(6 + 5 / 12, "feet"),
  19448. default: true
  19449. },
  19450. ]
  19451. ))
  19452. characterMakers.push(() => makeCharacter(
  19453. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19454. {
  19455. front: {
  19456. height: math.unit(16, "feet"),
  19457. weight: math.unit(4000, "lb"),
  19458. name: "Front",
  19459. image: {
  19460. source: "./media/characters/juniper/front.svg",
  19461. bottom: 0.04
  19462. }
  19463. },
  19464. },
  19465. [
  19466. {
  19467. name: "Normal",
  19468. height: math.unit(16, "feet"),
  19469. default: true
  19470. },
  19471. ]
  19472. ))
  19473. characterMakers.push(() => makeCharacter(
  19474. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19475. {
  19476. front: {
  19477. height: math.unit(6, "feet"),
  19478. weight: math.unit(150, "lb"),
  19479. name: "Front",
  19480. image: {
  19481. source: "./media/characters/hipster/front.svg",
  19482. extra: 1312 / 1209,
  19483. bottom: 0.025
  19484. }
  19485. },
  19486. back: {
  19487. height: math.unit(6, "feet"),
  19488. weight: math.unit(150, "lb"),
  19489. name: "Back",
  19490. image: {
  19491. source: "./media/characters/hipster/back.svg",
  19492. extra: 1281 / 1196,
  19493. bottom: 0.01
  19494. }
  19495. },
  19496. },
  19497. [
  19498. {
  19499. name: "Micro",
  19500. height: math.unit(1, "mm")
  19501. },
  19502. {
  19503. name: "Normal",
  19504. height: math.unit(4, "inches"),
  19505. default: true
  19506. },
  19507. {
  19508. name: "Macro",
  19509. height: math.unit(500, "feet")
  19510. },
  19511. {
  19512. name: "Megamacro",
  19513. height: math.unit(1000, "miles")
  19514. },
  19515. ]
  19516. ))
  19517. characterMakers.push(() => makeCharacter(
  19518. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19519. {
  19520. front: {
  19521. height: math.unit(6, "feet"),
  19522. weight: math.unit(150, "lb"),
  19523. name: "Front",
  19524. image: {
  19525. source: "./media/characters/tendirmuldr/front.svg",
  19526. extra: 1878 / 1772,
  19527. bottom: 0.015
  19528. }
  19529. },
  19530. },
  19531. [
  19532. {
  19533. name: "Megamacro",
  19534. height: math.unit(1500, "miles"),
  19535. default: true
  19536. },
  19537. ]
  19538. ))
  19539. characterMakers.push(() => makeCharacter(
  19540. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19541. {
  19542. front: {
  19543. height: math.unit(14, "feet"),
  19544. weight: math.unit(12000, "lb"),
  19545. name: "Front",
  19546. image: {
  19547. source: "./media/characters/mort/front.svg",
  19548. extra: 365 / 318,
  19549. bottom: 0.01
  19550. }
  19551. },
  19552. side: {
  19553. height: math.unit(14, "feet"),
  19554. weight: math.unit(12000, "lb"),
  19555. name: "Side",
  19556. image: {
  19557. source: "./media/characters/mort/side.svg",
  19558. extra: 365 / 318,
  19559. bottom: 0.052
  19560. },
  19561. default: true
  19562. },
  19563. back: {
  19564. height: math.unit(14, "feet"),
  19565. weight: math.unit(12000, "lb"),
  19566. name: "Back",
  19567. image: {
  19568. source: "./media/characters/mort/back.svg",
  19569. extra: 371 / 332,
  19570. bottom: 0.18
  19571. }
  19572. },
  19573. },
  19574. [
  19575. {
  19576. name: "Normal",
  19577. height: math.unit(14, "feet"),
  19578. default: true
  19579. },
  19580. ]
  19581. ))
  19582. characterMakers.push(() => makeCharacter(
  19583. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19584. {
  19585. front: {
  19586. height: math.unit(8, "feet"),
  19587. weight: math.unit(1, "ton"),
  19588. name: "Front",
  19589. image: {
  19590. source: "./media/characters/lycoa/front.svg",
  19591. extra: 1875 / 1789,
  19592. bottom: 0.022
  19593. }
  19594. },
  19595. back: {
  19596. height: math.unit(8, "feet"),
  19597. weight: math.unit(1, "ton"),
  19598. name: "Back",
  19599. image: {
  19600. source: "./media/characters/lycoa/back.svg",
  19601. extra: 1835 / 1781,
  19602. bottom: 0.03
  19603. }
  19604. },
  19605. head: {
  19606. height: math.unit(2.1, "feet"),
  19607. name: "Head",
  19608. image: {
  19609. source: "./media/characters/lycoa/head.svg"
  19610. }
  19611. },
  19612. tailmaw: {
  19613. height: math.unit(1.9, "feet"),
  19614. name: "Tailmaw",
  19615. image: {
  19616. source: "./media/characters/lycoa/tailmaw.svg"
  19617. }
  19618. },
  19619. tentacles: {
  19620. height: math.unit(2.1, "feet"),
  19621. name: "Tentacles",
  19622. image: {
  19623. source: "./media/characters/lycoa/tentacles.svg"
  19624. }
  19625. },
  19626. dick: {
  19627. height: math.unit(1.73, "feet"),
  19628. name: "Dick",
  19629. image: {
  19630. source: "./media/characters/lycoa/dick.svg"
  19631. }
  19632. },
  19633. },
  19634. [
  19635. {
  19636. name: "Normal",
  19637. height: math.unit(8, "feet"),
  19638. default: true
  19639. },
  19640. {
  19641. name: "Macro",
  19642. height: math.unit(30, "feet")
  19643. },
  19644. ]
  19645. ))
  19646. characterMakers.push(() => makeCharacter(
  19647. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19648. {
  19649. front: {
  19650. height: math.unit(4 + 2 / 12, "feet"),
  19651. weight: math.unit(70, "lb"),
  19652. name: "Front",
  19653. image: {
  19654. source: "./media/characters/naldara/front.svg",
  19655. extra: 841 / 720,
  19656. bottom: 0.04
  19657. }
  19658. },
  19659. naga: {
  19660. height: math.unit(23, "feet"),
  19661. weight: math.unit(15000, "kg"),
  19662. name: "Naga",
  19663. image: {
  19664. source: "./media/characters/naldara/naga.svg",
  19665. extra: 3290 / 2959,
  19666. bottom: 124 / 3432
  19667. }
  19668. },
  19669. },
  19670. [
  19671. {
  19672. name: "Normal",
  19673. height: math.unit(4 + 2 / 12, "feet"),
  19674. default: true
  19675. },
  19676. ]
  19677. ))
  19678. characterMakers.push(() => makeCharacter(
  19679. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19680. {
  19681. front: {
  19682. height: math.unit(13 + 7 / 12, "feet"),
  19683. weight: math.unit(1500, "lb"),
  19684. name: "Front",
  19685. image: {
  19686. source: "./media/characters/briar/front.svg",
  19687. extra: 626 / 596,
  19688. bottom: 0.08
  19689. }
  19690. },
  19691. },
  19692. [
  19693. {
  19694. name: "Normal",
  19695. height: math.unit(13 + 7 / 12, "feet"),
  19696. default: true
  19697. },
  19698. ]
  19699. ))
  19700. characterMakers.push(() => makeCharacter(
  19701. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19702. {
  19703. side: {
  19704. height: math.unit(10, "feet"),
  19705. weight: math.unit(500, "lb"),
  19706. name: "Side",
  19707. image: {
  19708. source: "./media/characters/vanguard/side.svg",
  19709. extra: 502 / 425,
  19710. bottom: 0.087
  19711. }
  19712. },
  19713. },
  19714. [
  19715. {
  19716. name: "Normal",
  19717. height: math.unit(10, "feet"),
  19718. default: true
  19719. },
  19720. ]
  19721. ))
  19722. characterMakers.push(() => makeCharacter(
  19723. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19724. {
  19725. front: {
  19726. height: math.unit(7.5, "feet"),
  19727. weight: math.unit(2, "lb"),
  19728. name: "Front",
  19729. image: {
  19730. source: "./media/characters/artemis/front.svg",
  19731. extra: 1192 / 1075,
  19732. bottom: 0.07
  19733. }
  19734. },
  19735. frontNsfw: {
  19736. height: math.unit(7.5, "feet"),
  19737. weight: math.unit(2, "lb"),
  19738. name: "Front (NSFW)",
  19739. image: {
  19740. source: "./media/characters/artemis/front-nsfw.svg",
  19741. extra: 1192 / 1075,
  19742. bottom: 0.07
  19743. }
  19744. },
  19745. frontNsfwer: {
  19746. height: math.unit(7.5, "feet"),
  19747. weight: math.unit(2, "lb"),
  19748. name: "Front (NSFW-er)",
  19749. image: {
  19750. source: "./media/characters/artemis/front-nsfwer.svg",
  19751. extra: 1192 / 1075,
  19752. bottom: 0.07
  19753. }
  19754. },
  19755. side: {
  19756. height: math.unit(7.5, "feet"),
  19757. weight: math.unit(2, "lb"),
  19758. name: "Side",
  19759. image: {
  19760. source: "./media/characters/artemis/side.svg",
  19761. extra: 1192 / 1075,
  19762. bottom: 0.07
  19763. }
  19764. },
  19765. sideNsfw: {
  19766. height: math.unit(7.5, "feet"),
  19767. weight: math.unit(2, "lb"),
  19768. name: "Side (NSFW)",
  19769. image: {
  19770. source: "./media/characters/artemis/side-nsfw.svg",
  19771. extra: 1192 / 1075,
  19772. bottom: 0.07
  19773. }
  19774. },
  19775. sideNsfwer: {
  19776. height: math.unit(7.5, "feet"),
  19777. weight: math.unit(2, "lb"),
  19778. name: "Side (NSFW-er)",
  19779. image: {
  19780. source: "./media/characters/artemis/side-nsfwer.svg",
  19781. extra: 1192 / 1075,
  19782. bottom: 0.07
  19783. }
  19784. },
  19785. maw: {
  19786. height: math.unit(1.1, "feet"),
  19787. name: "Maw",
  19788. image: {
  19789. source: "./media/characters/artemis/maw.svg"
  19790. }
  19791. },
  19792. stomach: {
  19793. height: math.unit(0.95, "feet"),
  19794. name: "Stomach",
  19795. image: {
  19796. source: "./media/characters/artemis/stomach.svg"
  19797. }
  19798. },
  19799. dickCanine: {
  19800. height: math.unit(1, "feet"),
  19801. name: "Dick (Canine)",
  19802. image: {
  19803. source: "./media/characters/artemis/dick-canine.svg"
  19804. }
  19805. },
  19806. dickEquine: {
  19807. height: math.unit(0.85, "feet"),
  19808. name: "Dick (Equine)",
  19809. image: {
  19810. source: "./media/characters/artemis/dick-equine.svg"
  19811. }
  19812. },
  19813. dickExotic: {
  19814. height: math.unit(0.85, "feet"),
  19815. name: "Dick (Exotic)",
  19816. image: {
  19817. source: "./media/characters/artemis/dick-exotic.svg"
  19818. }
  19819. },
  19820. },
  19821. [
  19822. {
  19823. name: "Normal",
  19824. height: math.unit(7.5, "feet"),
  19825. default: true
  19826. },
  19827. {
  19828. name: "Enlarged",
  19829. height: math.unit(12, "feet")
  19830. },
  19831. ]
  19832. ))
  19833. characterMakers.push(() => makeCharacter(
  19834. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19835. {
  19836. front: {
  19837. height: math.unit(5 + 3 / 12, "feet"),
  19838. weight: math.unit(160, "lb"),
  19839. name: "Front",
  19840. image: {
  19841. source: "./media/characters/kira/front.svg",
  19842. extra: 906 / 786,
  19843. bottom: 0.01
  19844. }
  19845. },
  19846. back: {
  19847. height: math.unit(5 + 3 / 12, "feet"),
  19848. weight: math.unit(160, "lb"),
  19849. name: "Back",
  19850. image: {
  19851. source: "./media/characters/kira/back.svg",
  19852. extra: 882 / 757,
  19853. bottom: 0.005
  19854. }
  19855. },
  19856. frontDressed: {
  19857. height: math.unit(5 + 3 / 12, "feet"),
  19858. weight: math.unit(160, "lb"),
  19859. name: "Front (Dressed)",
  19860. image: {
  19861. source: "./media/characters/kira/front-dressed.svg",
  19862. extra: 906 / 786,
  19863. bottom: 0.01
  19864. }
  19865. },
  19866. beans: {
  19867. height: math.unit(0.92, "feet"),
  19868. name: "Beans",
  19869. image: {
  19870. source: "./media/characters/kira/beans.svg"
  19871. }
  19872. },
  19873. },
  19874. [
  19875. {
  19876. name: "Normal",
  19877. height: math.unit(5 + 3 / 12, "feet"),
  19878. default: true
  19879. },
  19880. ]
  19881. ))
  19882. characterMakers.push(() => makeCharacter(
  19883. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19884. {
  19885. front: {
  19886. height: math.unit(5 + 4 / 12, "feet"),
  19887. weight: math.unit(145, "lb"),
  19888. name: "Front",
  19889. image: {
  19890. source: "./media/characters/scramble/front.svg",
  19891. extra: 763 / 727,
  19892. bottom: 0.05
  19893. }
  19894. },
  19895. back: {
  19896. height: math.unit(5 + 4 / 12, "feet"),
  19897. weight: math.unit(145, "lb"),
  19898. name: "Back",
  19899. image: {
  19900. source: "./media/characters/scramble/back.svg",
  19901. extra: 826 / 737,
  19902. bottom: 0.002
  19903. }
  19904. },
  19905. },
  19906. [
  19907. {
  19908. name: "Normal",
  19909. height: math.unit(5 + 4 / 12, "feet"),
  19910. default: true
  19911. },
  19912. ]
  19913. ))
  19914. characterMakers.push(() => makeCharacter(
  19915. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19916. {
  19917. side: {
  19918. height: math.unit(6 + 2 / 12, "feet"),
  19919. weight: math.unit(190, "lb"),
  19920. name: "Side",
  19921. image: {
  19922. source: "./media/characters/biscuit/side.svg",
  19923. extra: 858 / 791,
  19924. bottom: 0.044
  19925. }
  19926. },
  19927. },
  19928. [
  19929. {
  19930. name: "Normal",
  19931. height: math.unit(6 + 2 / 12, "feet"),
  19932. default: true
  19933. },
  19934. ]
  19935. ))
  19936. characterMakers.push(() => makeCharacter(
  19937. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19938. {
  19939. front: {
  19940. height: math.unit(5 + 2 / 12, "feet"),
  19941. weight: math.unit(120, "lb"),
  19942. name: "Front",
  19943. image: {
  19944. source: "./media/characters/poffin/front.svg",
  19945. extra: 786 / 680,
  19946. bottom: 0.005
  19947. }
  19948. },
  19949. },
  19950. [
  19951. {
  19952. name: "Normal",
  19953. height: math.unit(5 + 2 / 12, "feet"),
  19954. default: true
  19955. },
  19956. ]
  19957. ))
  19958. characterMakers.push(() => makeCharacter(
  19959. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19960. {
  19961. front: {
  19962. height: math.unit(6 + 3 / 12, "feet"),
  19963. weight: math.unit(519, "lb"),
  19964. name: "Front",
  19965. image: {
  19966. source: "./media/characters/dhari/front.svg",
  19967. extra: 1048 / 946,
  19968. bottom: 0.015
  19969. }
  19970. },
  19971. back: {
  19972. height: math.unit(6 + 3 / 12, "feet"),
  19973. weight: math.unit(519, "lb"),
  19974. name: "Back",
  19975. image: {
  19976. source: "./media/characters/dhari/back.svg",
  19977. extra: 1048 / 931,
  19978. bottom: 0.005
  19979. }
  19980. },
  19981. frontDressed: {
  19982. height: math.unit(6 + 3 / 12, "feet"),
  19983. weight: math.unit(519, "lb"),
  19984. name: "Front (Dressed)",
  19985. image: {
  19986. source: "./media/characters/dhari/front-dressed.svg",
  19987. extra: 1713 / 1546,
  19988. bottom: 0.02
  19989. }
  19990. },
  19991. backDressed: {
  19992. height: math.unit(6 + 3 / 12, "feet"),
  19993. weight: math.unit(519, "lb"),
  19994. name: "Back (Dressed)",
  19995. image: {
  19996. source: "./media/characters/dhari/back-dressed.svg",
  19997. extra: 1699 / 1537,
  19998. bottom: 0.01
  19999. }
  20000. },
  20001. maw: {
  20002. height: math.unit(0.95, "feet"),
  20003. name: "Maw",
  20004. image: {
  20005. source: "./media/characters/dhari/maw.svg"
  20006. }
  20007. },
  20008. wereFront: {
  20009. height: math.unit(12 + 8 / 12, "feet"),
  20010. weight: math.unit(4000, "lb"),
  20011. name: "Front (Were)",
  20012. image: {
  20013. source: "./media/characters/dhari/were-front.svg",
  20014. extra: 1065 / 969,
  20015. bottom: 0.015
  20016. }
  20017. },
  20018. wereBack: {
  20019. height: math.unit(12 + 8 / 12, "feet"),
  20020. weight: math.unit(4000, "lb"),
  20021. name: "Back (Were)",
  20022. image: {
  20023. source: "./media/characters/dhari/were-back.svg",
  20024. extra: 1065 / 969,
  20025. bottom: 0.012
  20026. }
  20027. },
  20028. wereMaw: {
  20029. height: math.unit(0.625, "meters"),
  20030. name: "Maw (Were)",
  20031. image: {
  20032. source: "./media/characters/dhari/were-maw.svg"
  20033. }
  20034. },
  20035. },
  20036. [
  20037. {
  20038. name: "Normal",
  20039. height: math.unit(6 + 3 / 12, "feet"),
  20040. default: true
  20041. },
  20042. ]
  20043. ))
  20044. characterMakers.push(() => makeCharacter(
  20045. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20046. {
  20047. anthro: {
  20048. height: math.unit(5 + 7 / 12, "feet"),
  20049. weight: math.unit(175, "lb"),
  20050. name: "Anthro",
  20051. image: {
  20052. source: "./media/characters/rena-dyne/anthro.svg",
  20053. extra: 1849 / 1785,
  20054. bottom: 0.005
  20055. }
  20056. },
  20057. taur: {
  20058. height: math.unit(15 + 6 / 12, "feet"),
  20059. weight: math.unit(8000, "lb"),
  20060. name: "Taur",
  20061. image: {
  20062. source: "./media/characters/rena-dyne/taur.svg",
  20063. extra: 2315 / 2234,
  20064. bottom: 0.033
  20065. }
  20066. },
  20067. },
  20068. [
  20069. {
  20070. name: "Normal",
  20071. height: math.unit(5 + 7 / 12, "feet"),
  20072. default: true
  20073. },
  20074. ]
  20075. ))
  20076. characterMakers.push(() => makeCharacter(
  20077. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20078. {
  20079. front: {
  20080. height: math.unit(8, "feet"),
  20081. weight: math.unit(600, "lb"),
  20082. name: "Front",
  20083. image: {
  20084. source: "./media/characters/weremeep/front.svg",
  20085. extra: 967 / 862,
  20086. bottom: 0.01
  20087. }
  20088. },
  20089. },
  20090. [
  20091. {
  20092. name: "Normal",
  20093. height: math.unit(8, "feet"),
  20094. default: true
  20095. },
  20096. {
  20097. name: "Lorg",
  20098. height: math.unit(12, "feet")
  20099. },
  20100. {
  20101. name: "Oh Lawd She Comin'",
  20102. height: math.unit(20, "feet")
  20103. },
  20104. ]
  20105. ))
  20106. characterMakers.push(() => makeCharacter(
  20107. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20108. {
  20109. front: {
  20110. height: math.unit(4, "feet"),
  20111. weight: math.unit(90, "lb"),
  20112. name: "Front",
  20113. image: {
  20114. source: "./media/characters/reza/front.svg",
  20115. extra: 1183 / 1111,
  20116. bottom: 0.017
  20117. }
  20118. },
  20119. back: {
  20120. height: math.unit(4, "feet"),
  20121. weight: math.unit(90, "lb"),
  20122. name: "Back",
  20123. image: {
  20124. source: "./media/characters/reza/back.svg",
  20125. extra: 1183 / 1111,
  20126. bottom: 0.01
  20127. }
  20128. },
  20129. drake: {
  20130. height: math.unit(30, "feet"),
  20131. weight: math.unit(246960, "lb"),
  20132. name: "Drake",
  20133. image: {
  20134. source: "./media/characters/reza/drake.svg",
  20135. extra: 2350 / 2024,
  20136. bottom: 60.7 / 2403
  20137. }
  20138. },
  20139. },
  20140. [
  20141. {
  20142. name: "Normal",
  20143. height: math.unit(4, "feet"),
  20144. default: true
  20145. },
  20146. ]
  20147. ))
  20148. characterMakers.push(() => makeCharacter(
  20149. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20150. {
  20151. side: {
  20152. height: math.unit(15, "feet"),
  20153. weight: math.unit(14, "tons"),
  20154. name: "Side",
  20155. image: {
  20156. source: "./media/characters/athea/side.svg",
  20157. extra: 960 / 540,
  20158. bottom: 0.003
  20159. }
  20160. },
  20161. sitting: {
  20162. height: math.unit(6 * 2.85, "feet"),
  20163. weight: math.unit(14, "tons"),
  20164. name: "Sitting",
  20165. image: {
  20166. source: "./media/characters/athea/sitting.svg",
  20167. extra: 621 / 581,
  20168. bottom: 0.075
  20169. }
  20170. },
  20171. maw: {
  20172. height: math.unit(7.59498031496063, "feet"),
  20173. name: "Maw",
  20174. image: {
  20175. source: "./media/characters/athea/maw.svg"
  20176. }
  20177. },
  20178. },
  20179. [
  20180. {
  20181. name: "Lap Cat",
  20182. height: math.unit(2.5, "feet")
  20183. },
  20184. {
  20185. name: "Minimacro",
  20186. height: math.unit(15, "feet"),
  20187. default: true
  20188. },
  20189. {
  20190. name: "Macro",
  20191. height: math.unit(120, "feet")
  20192. },
  20193. {
  20194. name: "Macro+",
  20195. height: math.unit(640, "feet")
  20196. },
  20197. {
  20198. name: "Colossus",
  20199. height: math.unit(2.2, "miles")
  20200. },
  20201. ]
  20202. ))
  20203. characterMakers.push(() => makeCharacter(
  20204. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20205. {
  20206. front: {
  20207. height: math.unit(8 + 8 / 12, "feet"),
  20208. weight: math.unit(130, "kg"),
  20209. name: "Front",
  20210. image: {
  20211. source: "./media/characters/seroko/front.svg",
  20212. extra: 1385 / 1280,
  20213. bottom: 0.025
  20214. }
  20215. },
  20216. back: {
  20217. height: math.unit(8 + 8 / 12, "feet"),
  20218. weight: math.unit(130, "kg"),
  20219. name: "Back",
  20220. image: {
  20221. source: "./media/characters/seroko/back.svg",
  20222. extra: 1369 / 1238,
  20223. bottom: 0.018
  20224. }
  20225. },
  20226. frontDressed: {
  20227. height: math.unit(8 + 8 / 12, "feet"),
  20228. weight: math.unit(130, "kg"),
  20229. name: "Front (Dressed)",
  20230. image: {
  20231. source: "./media/characters/seroko/front-dressed.svg",
  20232. extra: 1366 / 1275,
  20233. bottom: 0.03
  20234. }
  20235. },
  20236. },
  20237. [
  20238. {
  20239. name: "Normal",
  20240. height: math.unit(8 + 8 / 12, "feet"),
  20241. default: true
  20242. },
  20243. ]
  20244. ))
  20245. characterMakers.push(() => makeCharacter(
  20246. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20247. {
  20248. front: {
  20249. height: math.unit(5.5, "feet"),
  20250. weight: math.unit(160, "lb"),
  20251. name: "Front",
  20252. image: {
  20253. source: "./media/characters/quatzi/front.svg",
  20254. extra: 2346 / 2242,
  20255. bottom: 0.015
  20256. }
  20257. },
  20258. },
  20259. [
  20260. {
  20261. name: "Normal",
  20262. height: math.unit(5.5, "feet"),
  20263. default: true
  20264. },
  20265. {
  20266. name: "Big",
  20267. height: math.unit(7.7, "feet")
  20268. },
  20269. ]
  20270. ))
  20271. characterMakers.push(() => makeCharacter(
  20272. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20273. {
  20274. front: {
  20275. height: math.unit(5 + 11 / 12, "feet"),
  20276. weight: math.unit(180, "lb"),
  20277. name: "Front",
  20278. image: {
  20279. source: "./media/characters/sen/front.svg",
  20280. extra: 1321 / 1254,
  20281. bottom: 0.015
  20282. }
  20283. },
  20284. side: {
  20285. height: math.unit(5 + 11 / 12, "feet"),
  20286. weight: math.unit(180, "lb"),
  20287. name: "Side",
  20288. image: {
  20289. source: "./media/characters/sen/side.svg",
  20290. extra: 1321 / 1254,
  20291. bottom: 0.007
  20292. }
  20293. },
  20294. back: {
  20295. height: math.unit(5 + 11 / 12, "feet"),
  20296. weight: math.unit(180, "lb"),
  20297. name: "Back",
  20298. image: {
  20299. source: "./media/characters/sen/back.svg",
  20300. extra: 1321 / 1254
  20301. }
  20302. },
  20303. },
  20304. [
  20305. {
  20306. name: "Normal",
  20307. height: math.unit(5 + 11 / 12, "feet"),
  20308. default: true
  20309. },
  20310. ]
  20311. ))
  20312. characterMakers.push(() => makeCharacter(
  20313. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20314. {
  20315. front: {
  20316. height: math.unit(166.6, "cm"),
  20317. weight: math.unit(66.6, "kg"),
  20318. name: "Front",
  20319. image: {
  20320. source: "./media/characters/fruity/front.svg",
  20321. extra: 1510 / 1386,
  20322. bottom: 0.04
  20323. }
  20324. },
  20325. back: {
  20326. height: math.unit(166.6, "cm"),
  20327. weight: math.unit(66.6, "lb"),
  20328. name: "Back",
  20329. image: {
  20330. source: "./media/characters/fruity/back.svg",
  20331. extra: 1563 / 1435,
  20332. bottom: 0.005
  20333. }
  20334. },
  20335. },
  20336. [
  20337. {
  20338. name: "Normal",
  20339. height: math.unit(166.6, "cm"),
  20340. default: true
  20341. },
  20342. {
  20343. name: "Demonic",
  20344. height: math.unit(166.6, "feet")
  20345. },
  20346. ]
  20347. ))
  20348. characterMakers.push(() => makeCharacter(
  20349. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20350. {
  20351. side: {
  20352. height: math.unit(10, "feet"),
  20353. weight: math.unit(500, "lb"),
  20354. name: "Side",
  20355. image: {
  20356. source: "./media/characters/zost/side.svg",
  20357. extra: 966 / 880,
  20358. bottom: 0.075
  20359. }
  20360. },
  20361. mawFront: {
  20362. height: math.unit(1.08, "meters"),
  20363. name: "Maw (Front)",
  20364. image: {
  20365. source: "./media/characters/zost/maw-front.svg"
  20366. }
  20367. },
  20368. mawSide: {
  20369. height: math.unit(2.66, "feet"),
  20370. name: "Maw (Side)",
  20371. image: {
  20372. source: "./media/characters/zost/maw-side.svg"
  20373. }
  20374. },
  20375. },
  20376. [
  20377. {
  20378. name: "Normal",
  20379. height: math.unit(10, "feet"),
  20380. default: true
  20381. },
  20382. ]
  20383. ))
  20384. characterMakers.push(() => makeCharacter(
  20385. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20386. {
  20387. front: {
  20388. height: math.unit(5 + 4 / 12, "feet"),
  20389. weight: math.unit(120, "lb"),
  20390. name: "Front",
  20391. image: {
  20392. source: "./media/characters/luci/front.svg",
  20393. extra: 1985 / 1884,
  20394. bottom: 0.04
  20395. }
  20396. },
  20397. back: {
  20398. height: math.unit(5 + 4 / 12, "feet"),
  20399. weight: math.unit(120, "lb"),
  20400. name: "Back",
  20401. image: {
  20402. source: "./media/characters/luci/back.svg",
  20403. extra: 1892 / 1791,
  20404. bottom: 0.002
  20405. }
  20406. },
  20407. },
  20408. [
  20409. {
  20410. name: "Normal",
  20411. height: math.unit(5 + 4 / 12, "feet"),
  20412. default: true
  20413. },
  20414. ]
  20415. ))
  20416. characterMakers.push(() => makeCharacter(
  20417. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20418. {
  20419. front: {
  20420. height: math.unit(1500, "feet"),
  20421. weight: math.unit(3.8e6, "tons"),
  20422. name: "Front",
  20423. image: {
  20424. source: "./media/characters/2th/front.svg",
  20425. extra: 3489 / 3350,
  20426. bottom: 0.1
  20427. }
  20428. },
  20429. foot: {
  20430. height: math.unit(461, "feet"),
  20431. name: "Foot",
  20432. image: {
  20433. source: "./media/characters/2th/foot.svg"
  20434. }
  20435. },
  20436. },
  20437. [
  20438. {
  20439. name: "\"Micro\"",
  20440. height: math.unit(15 + 7 / 12, "feet")
  20441. },
  20442. {
  20443. name: "Normal",
  20444. height: math.unit(1500, "feet"),
  20445. default: true
  20446. },
  20447. {
  20448. name: "Macro",
  20449. height: math.unit(5000, "feet")
  20450. },
  20451. {
  20452. name: "Megamacro",
  20453. height: math.unit(15, "miles")
  20454. },
  20455. {
  20456. name: "Gigamacro",
  20457. height: math.unit(4000, "miles")
  20458. },
  20459. {
  20460. name: "Galactic",
  20461. height: math.unit(50, "AU")
  20462. },
  20463. ]
  20464. ))
  20465. characterMakers.push(() => makeCharacter(
  20466. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20467. {
  20468. front: {
  20469. height: math.unit(5 + 6 / 12, "feet"),
  20470. weight: math.unit(220, "lb"),
  20471. name: "Front",
  20472. image: {
  20473. source: "./media/characters/amethyst/front.svg",
  20474. extra: 2078 / 2040,
  20475. bottom: 0.045
  20476. }
  20477. },
  20478. back: {
  20479. height: math.unit(5 + 6 / 12, "feet"),
  20480. weight: math.unit(220, "lb"),
  20481. name: "Back",
  20482. image: {
  20483. source: "./media/characters/amethyst/back.svg",
  20484. extra: 2021 / 1989,
  20485. bottom: 0.02
  20486. }
  20487. },
  20488. },
  20489. [
  20490. {
  20491. name: "Normal",
  20492. height: math.unit(5 + 6 / 12, "feet"),
  20493. default: true
  20494. },
  20495. ]
  20496. ))
  20497. characterMakers.push(() => makeCharacter(
  20498. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20499. {
  20500. front: {
  20501. height: math.unit(4 + 11 / 12, "feet"),
  20502. weight: math.unit(120, "lb"),
  20503. name: "Front",
  20504. image: {
  20505. source: "./media/characters/yumi-akiyama/front.svg",
  20506. extra: 1327 / 1235,
  20507. bottom: 0.02
  20508. }
  20509. },
  20510. back: {
  20511. height: math.unit(4 + 11 / 12, "feet"),
  20512. weight: math.unit(120, "lb"),
  20513. name: "Back",
  20514. image: {
  20515. source: "./media/characters/yumi-akiyama/back.svg",
  20516. extra: 1287 / 1245,
  20517. bottom: 0.002
  20518. }
  20519. },
  20520. },
  20521. [
  20522. {
  20523. name: "Galactic",
  20524. height: math.unit(50, "galaxies"),
  20525. default: true
  20526. },
  20527. {
  20528. name: "Universal",
  20529. height: math.unit(100, "universes")
  20530. },
  20531. ]
  20532. ))
  20533. characterMakers.push(() => makeCharacter(
  20534. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20535. {
  20536. front: {
  20537. height: math.unit(8, "feet"),
  20538. weight: math.unit(500, "lb"),
  20539. name: "Front",
  20540. image: {
  20541. source: "./media/characters/rifter-yrmori/front.svg",
  20542. extra: 1180 / 1125,
  20543. bottom: 0.02
  20544. }
  20545. },
  20546. back: {
  20547. height: math.unit(8, "feet"),
  20548. weight: math.unit(500, "lb"),
  20549. name: "Back",
  20550. image: {
  20551. source: "./media/characters/rifter-yrmori/back.svg",
  20552. extra: 1190 / 1145,
  20553. bottom: 0.001
  20554. }
  20555. },
  20556. wings: {
  20557. height: math.unit(7.75, "feet"),
  20558. weight: math.unit(500, "lb"),
  20559. name: "Wings",
  20560. image: {
  20561. source: "./media/characters/rifter-yrmori/wings.svg",
  20562. extra: 1357 / 1285
  20563. }
  20564. },
  20565. maw: {
  20566. height: math.unit(0.8, "feet"),
  20567. name: "Maw",
  20568. image: {
  20569. source: "./media/characters/rifter-yrmori/maw.svg"
  20570. }
  20571. },
  20572. mawfront: {
  20573. height: math.unit(1.45, "feet"),
  20574. name: "Maw (Front)",
  20575. image: {
  20576. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20577. }
  20578. },
  20579. },
  20580. [
  20581. {
  20582. name: "Normal",
  20583. height: math.unit(8, "feet"),
  20584. default: true
  20585. },
  20586. {
  20587. name: "Macro",
  20588. height: math.unit(42, "meters")
  20589. },
  20590. ]
  20591. ))
  20592. characterMakers.push(() => makeCharacter(
  20593. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20594. {
  20595. were: {
  20596. height: math.unit(25 + 6 / 12, "feet"),
  20597. weight: math.unit(10000, "lb"),
  20598. name: "Were",
  20599. image: {
  20600. source: "./media/characters/tahajin/were.svg",
  20601. extra: 801 / 770,
  20602. bottom: 0.042
  20603. }
  20604. },
  20605. aquatic: {
  20606. height: math.unit(6 + 4 / 12, "feet"),
  20607. weight: math.unit(160, "lb"),
  20608. name: "Aquatic",
  20609. image: {
  20610. source: "./media/characters/tahajin/aquatic.svg",
  20611. extra: 572 / 542,
  20612. bottom: 0.04
  20613. }
  20614. },
  20615. chow: {
  20616. height: math.unit(8 + 11 / 12, "feet"),
  20617. weight: math.unit(450, "lb"),
  20618. name: "Chow",
  20619. image: {
  20620. source: "./media/characters/tahajin/chow.svg",
  20621. extra: 660 / 640,
  20622. bottom: 0.015
  20623. }
  20624. },
  20625. demiNaga: {
  20626. height: math.unit(6 + 8 / 12, "feet"),
  20627. weight: math.unit(300, "lb"),
  20628. name: "Demi Naga",
  20629. image: {
  20630. source: "./media/characters/tahajin/demi-naga.svg",
  20631. extra: 643 / 615,
  20632. bottom: 0.1
  20633. }
  20634. },
  20635. data: {
  20636. height: math.unit(5, "inches"),
  20637. weight: math.unit(0.1, "lb"),
  20638. name: "Data",
  20639. image: {
  20640. source: "./media/characters/tahajin/data.svg"
  20641. }
  20642. },
  20643. fluu: {
  20644. height: math.unit(5 + 7 / 12, "feet"),
  20645. weight: math.unit(140, "lb"),
  20646. name: "Fluu",
  20647. image: {
  20648. source: "./media/characters/tahajin/fluu.svg",
  20649. extra: 628 / 592,
  20650. bottom: 0.02
  20651. }
  20652. },
  20653. starWarrior: {
  20654. height: math.unit(4 + 5 / 12, "feet"),
  20655. weight: math.unit(50, "lb"),
  20656. name: "Star Warrior",
  20657. image: {
  20658. source: "./media/characters/tahajin/star-warrior.svg"
  20659. }
  20660. },
  20661. },
  20662. [
  20663. {
  20664. name: "Normal",
  20665. height: math.unit(25 + 6 / 12, "feet"),
  20666. default: true
  20667. },
  20668. ]
  20669. ))
  20670. characterMakers.push(() => makeCharacter(
  20671. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20672. {
  20673. front: {
  20674. height: math.unit(8, "feet"),
  20675. weight: math.unit(350, "lb"),
  20676. name: "Front",
  20677. image: {
  20678. source: "./media/characters/gabira/front.svg",
  20679. extra: 608 / 580,
  20680. bottom: 0.03
  20681. }
  20682. },
  20683. back: {
  20684. height: math.unit(8, "feet"),
  20685. weight: math.unit(350, "lb"),
  20686. name: "Back",
  20687. image: {
  20688. source: "./media/characters/gabira/back.svg",
  20689. extra: 608 / 580,
  20690. bottom: 0.03
  20691. }
  20692. },
  20693. },
  20694. [
  20695. {
  20696. name: "Normal",
  20697. height: math.unit(8, "feet"),
  20698. default: true
  20699. },
  20700. ]
  20701. ))
  20702. characterMakers.push(() => makeCharacter(
  20703. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20704. {
  20705. front: {
  20706. height: math.unit(5 + 3 / 12, "feet"),
  20707. weight: math.unit(137, "lb"),
  20708. name: "Front",
  20709. image: {
  20710. source: "./media/characters/sasha-katraine/front.svg",
  20711. bottom: 0.045
  20712. }
  20713. },
  20714. },
  20715. [
  20716. {
  20717. name: "Micro",
  20718. height: math.unit(5, "inches")
  20719. },
  20720. {
  20721. name: "Normal",
  20722. height: math.unit(5 + 3 / 12, "feet"),
  20723. default: true
  20724. },
  20725. ]
  20726. ))
  20727. characterMakers.push(() => makeCharacter(
  20728. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20729. {
  20730. side: {
  20731. height: math.unit(4, "inches"),
  20732. weight: math.unit(200, "grams"),
  20733. name: "Side",
  20734. image: {
  20735. source: "./media/characters/der/side.svg",
  20736. extra: 719 / 400,
  20737. bottom: 30.6 / 749.9187
  20738. }
  20739. },
  20740. },
  20741. [
  20742. {
  20743. name: "Micro",
  20744. height: math.unit(4, "inches"),
  20745. default: true
  20746. },
  20747. ]
  20748. ))
  20749. characterMakers.push(() => makeCharacter(
  20750. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20751. {
  20752. side: {
  20753. height: math.unit(30, "meters"),
  20754. weight: math.unit(700, "tonnes"),
  20755. name: "Side",
  20756. image: {
  20757. source: "./media/characters/fixerdragon/side.svg",
  20758. extra: (1293.0514 - 116.03) / 1106.86,
  20759. bottom: 116.03 / 1293.0514
  20760. }
  20761. },
  20762. },
  20763. [
  20764. {
  20765. name: "Planck",
  20766. height: math.unit(1.6e-35, "meters")
  20767. },
  20768. {
  20769. name: "Micro",
  20770. height: math.unit(0.4, "meters")
  20771. },
  20772. {
  20773. name: "Normal",
  20774. height: math.unit(30, "meters"),
  20775. default: true
  20776. },
  20777. {
  20778. name: "Megamacro",
  20779. height: math.unit(1.2, "megameters")
  20780. },
  20781. {
  20782. name: "Teramacro",
  20783. height: math.unit(130, "terameters")
  20784. },
  20785. {
  20786. name: "Yottamacro",
  20787. height: math.unit(6200, "yottameters")
  20788. },
  20789. ]
  20790. ));
  20791. characterMakers.push(() => makeCharacter(
  20792. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20793. {
  20794. front: {
  20795. height: math.unit(8, "feet"),
  20796. weight: math.unit(250, "lb"),
  20797. name: "Front",
  20798. image: {
  20799. source: "./media/characters/kite/front.svg",
  20800. extra: 2796 / 2659,
  20801. bottom: 0.002
  20802. }
  20803. },
  20804. },
  20805. [
  20806. {
  20807. name: "Normal",
  20808. height: math.unit(8, "feet"),
  20809. default: true
  20810. },
  20811. {
  20812. name: "Macro",
  20813. height: math.unit(360, "feet")
  20814. },
  20815. {
  20816. name: "Megamacro",
  20817. height: math.unit(1500, "feet")
  20818. },
  20819. ]
  20820. ))
  20821. characterMakers.push(() => makeCharacter(
  20822. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20823. {
  20824. front: {
  20825. height: math.unit(5 + 10 / 12, "feet"),
  20826. weight: math.unit(150, "lb"),
  20827. name: "Front",
  20828. image: {
  20829. source: "./media/characters/poojawa-vynar/front.svg",
  20830. extra: (1506.1547 - 55) / 1356.6,
  20831. bottom: 55 / 1506.1547
  20832. }
  20833. },
  20834. frontTailless: {
  20835. height: math.unit(5 + 10 / 12, "feet"),
  20836. weight: math.unit(150, "lb"),
  20837. name: "Front (Tailless)",
  20838. image: {
  20839. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20840. extra: (1506.1547 - 55) / 1356.6,
  20841. bottom: 55 / 1506.1547
  20842. }
  20843. },
  20844. },
  20845. [
  20846. {
  20847. name: "Normal",
  20848. height: math.unit(5 + 10 / 12, "feet"),
  20849. default: true
  20850. },
  20851. ]
  20852. ))
  20853. characterMakers.push(() => makeCharacter(
  20854. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20855. {
  20856. front: {
  20857. height: math.unit(293, "meters"),
  20858. weight: math.unit(70400, "tons"),
  20859. name: "Front",
  20860. image: {
  20861. source: "./media/characters/violette/front.svg",
  20862. extra: 1227 / 1180,
  20863. bottom: 0.005
  20864. }
  20865. },
  20866. back: {
  20867. height: math.unit(293, "meters"),
  20868. weight: math.unit(70400, "tons"),
  20869. name: "Back",
  20870. image: {
  20871. source: "./media/characters/violette/back.svg",
  20872. extra: 1227 / 1180,
  20873. bottom: 0.005
  20874. }
  20875. },
  20876. },
  20877. [
  20878. {
  20879. name: "Macro",
  20880. height: math.unit(293, "meters"),
  20881. default: true
  20882. },
  20883. ]
  20884. ))
  20885. characterMakers.push(() => makeCharacter(
  20886. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20887. {
  20888. front: {
  20889. height: math.unit(1050, "feet"),
  20890. weight: math.unit(200000, "tons"),
  20891. name: "Front",
  20892. image: {
  20893. source: "./media/characters/alessandra/front.svg",
  20894. extra: 960 / 912,
  20895. bottom: 0.06
  20896. }
  20897. },
  20898. },
  20899. [
  20900. {
  20901. name: "Macro",
  20902. height: math.unit(1050, "feet")
  20903. },
  20904. {
  20905. name: "Macro+",
  20906. height: math.unit(900, "meters"),
  20907. default: true
  20908. },
  20909. ]
  20910. ))
  20911. characterMakers.push(() => makeCharacter(
  20912. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20913. {
  20914. front: {
  20915. height: math.unit(5, "feet"),
  20916. weight: math.unit(187, "lb"),
  20917. name: "Front",
  20918. image: {
  20919. source: "./media/characters/person/front.svg",
  20920. extra: 3087 / 2945,
  20921. bottom: 91 / 3181
  20922. }
  20923. },
  20924. },
  20925. [
  20926. {
  20927. name: "Micro",
  20928. height: math.unit(3, "inches")
  20929. },
  20930. {
  20931. name: "Normal",
  20932. height: math.unit(5, "feet"),
  20933. default: true
  20934. },
  20935. {
  20936. name: "Macro",
  20937. height: math.unit(90, "feet")
  20938. },
  20939. {
  20940. name: "Max Size",
  20941. height: math.unit(280, "feet")
  20942. },
  20943. ]
  20944. ))
  20945. characterMakers.push(() => makeCharacter(
  20946. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20947. {
  20948. front: {
  20949. height: math.unit(4.5, "meters"),
  20950. weight: math.unit(3200, "lb"),
  20951. name: "Front",
  20952. image: {
  20953. source: "./media/characters/ty/front.svg",
  20954. extra: 1038 / 960,
  20955. bottom: 31.156 / 1068
  20956. }
  20957. },
  20958. back: {
  20959. height: math.unit(4.5, "meters"),
  20960. weight: math.unit(3200, "lb"),
  20961. name: "Back",
  20962. image: {
  20963. source: "./media/characters/ty/back.svg",
  20964. extra: 1044 / 966,
  20965. bottom: 7.48 / 1049
  20966. }
  20967. },
  20968. },
  20969. [
  20970. {
  20971. name: "Normal",
  20972. height: math.unit(4.5, "meters"),
  20973. default: true
  20974. },
  20975. ]
  20976. ))
  20977. characterMakers.push(() => makeCharacter(
  20978. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20979. {
  20980. front: {
  20981. height: math.unit(5 + 4 / 12, "feet"),
  20982. weight: math.unit(115, "lb"),
  20983. name: "Front",
  20984. image: {
  20985. source: "./media/characters/rocky/front.svg",
  20986. extra: 1012 / 975,
  20987. bottom: 54 / 1066
  20988. }
  20989. },
  20990. },
  20991. [
  20992. {
  20993. name: "Normal",
  20994. height: math.unit(5 + 4 / 12, "feet"),
  20995. default: true
  20996. },
  20997. ]
  20998. ))
  20999. characterMakers.push(() => makeCharacter(
  21000. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21001. {
  21002. upright: {
  21003. height: math.unit(6, "meters"),
  21004. weight: math.unit(4000, "kg"),
  21005. name: "Upright",
  21006. image: {
  21007. source: "./media/characters/ruin/upright.svg",
  21008. extra: 668 / 661,
  21009. bottom: 42 / 799.8396
  21010. }
  21011. },
  21012. },
  21013. [
  21014. {
  21015. name: "Normal",
  21016. height: math.unit(6, "meters"),
  21017. default: true
  21018. },
  21019. ]
  21020. ))
  21021. characterMakers.push(() => makeCharacter(
  21022. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21023. {
  21024. front: {
  21025. height: math.unit(5, "feet"),
  21026. weight: math.unit(106, "lb"),
  21027. name: "Front",
  21028. image: {
  21029. source: "./media/characters/robin/front.svg",
  21030. extra: 862 / 799,
  21031. bottom: 42.4 / 914.8856
  21032. }
  21033. },
  21034. },
  21035. [
  21036. {
  21037. name: "Normal",
  21038. height: math.unit(5, "feet"),
  21039. default: true
  21040. },
  21041. ]
  21042. ))
  21043. characterMakers.push(() => makeCharacter(
  21044. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21045. {
  21046. side: {
  21047. height: math.unit(3, "feet"),
  21048. weight: math.unit(225, "lb"),
  21049. name: "Side",
  21050. image: {
  21051. source: "./media/characters/saian/side.svg",
  21052. extra: 566 / 356,
  21053. bottom: 79.7 / 643
  21054. }
  21055. },
  21056. maw: {
  21057. height: math.unit(2.85, "feet"),
  21058. name: "Maw",
  21059. image: {
  21060. source: "./media/characters/saian/maw.svg"
  21061. }
  21062. },
  21063. },
  21064. [
  21065. {
  21066. name: "Normal",
  21067. height: math.unit(3, "feet"),
  21068. default: true
  21069. },
  21070. ]
  21071. ))
  21072. characterMakers.push(() => makeCharacter(
  21073. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21074. {
  21075. side: {
  21076. height: math.unit(8, "feet"),
  21077. weight: math.unit(300, "lb"),
  21078. name: "Side",
  21079. image: {
  21080. source: "./media/characters/equus-silvermane/side.svg",
  21081. extra: 2176 / 2050,
  21082. bottom: 65.7 / 2245
  21083. }
  21084. },
  21085. front: {
  21086. height: math.unit(8, "feet"),
  21087. weight: math.unit(300, "lb"),
  21088. name: "Front",
  21089. image: {
  21090. source: "./media/characters/equus-silvermane/front.svg",
  21091. extra: 4633 / 4400,
  21092. bottom: 71.3 / 4706.915
  21093. }
  21094. },
  21095. sideStepping: {
  21096. height: math.unit(8, "feet"),
  21097. weight: math.unit(300, "lb"),
  21098. name: "Side (Stepping)",
  21099. image: {
  21100. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21101. extra: 1968 / 1860,
  21102. bottom: 16.4 / 1989
  21103. }
  21104. },
  21105. },
  21106. [
  21107. {
  21108. name: "Normal",
  21109. height: math.unit(8, "feet")
  21110. },
  21111. {
  21112. name: "Minimacro",
  21113. height: math.unit(75, "feet"),
  21114. default: true
  21115. },
  21116. {
  21117. name: "Macro",
  21118. height: math.unit(150, "feet")
  21119. },
  21120. {
  21121. name: "Macro+",
  21122. height: math.unit(1000, "feet")
  21123. },
  21124. {
  21125. name: "Megamacro",
  21126. height: math.unit(1, "mile")
  21127. },
  21128. ]
  21129. ))
  21130. characterMakers.push(() => makeCharacter(
  21131. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21132. {
  21133. side: {
  21134. height: math.unit(20, "feet"),
  21135. weight: math.unit(30000, "kg"),
  21136. name: "Side",
  21137. image: {
  21138. source: "./media/characters/windar/side.svg",
  21139. extra: 1491 / 1248,
  21140. bottom: 82.56 / 1568
  21141. }
  21142. },
  21143. },
  21144. [
  21145. {
  21146. name: "Normal",
  21147. height: math.unit(20, "feet"),
  21148. default: true
  21149. },
  21150. ]
  21151. ))
  21152. characterMakers.push(() => makeCharacter(
  21153. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21154. {
  21155. side: {
  21156. height: math.unit(15.66, "feet"),
  21157. weight: math.unit(150, "lb"),
  21158. name: "Side",
  21159. image: {
  21160. source: "./media/characters/melody/side.svg",
  21161. extra: 1097 / 944,
  21162. bottom: 11.8 / 1109
  21163. }
  21164. },
  21165. sideOutfit: {
  21166. height: math.unit(15.66, "feet"),
  21167. weight: math.unit(150, "lb"),
  21168. name: "Side (Outfit)",
  21169. image: {
  21170. source: "./media/characters/melody/side-outfit.svg",
  21171. extra: 1097 / 944,
  21172. bottom: 11.8 / 1109
  21173. }
  21174. },
  21175. },
  21176. [
  21177. {
  21178. name: "Normal",
  21179. height: math.unit(15.66, "feet"),
  21180. default: true
  21181. },
  21182. ]
  21183. ))
  21184. characterMakers.push(() => makeCharacter(
  21185. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21186. {
  21187. front: {
  21188. height: math.unit(8, "feet"),
  21189. weight: math.unit(325, "lb"),
  21190. name: "Front",
  21191. image: {
  21192. source: "./media/characters/windera/front.svg",
  21193. extra: 3180 / 2845,
  21194. bottom: 178 / 3365
  21195. }
  21196. },
  21197. },
  21198. [
  21199. {
  21200. name: "Normal",
  21201. height: math.unit(8, "feet"),
  21202. default: true
  21203. },
  21204. ]
  21205. ))
  21206. characterMakers.push(() => makeCharacter(
  21207. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21208. {
  21209. front: {
  21210. height: math.unit(28.75, "feet"),
  21211. weight: math.unit(2000, "kg"),
  21212. name: "Front",
  21213. image: {
  21214. source: "./media/characters/sonear/front.svg",
  21215. extra: 1041.1 / 964.9,
  21216. bottom: 53.7 / 1096.6
  21217. }
  21218. },
  21219. },
  21220. [
  21221. {
  21222. name: "Normal",
  21223. height: math.unit(28.75, "feet"),
  21224. default: true
  21225. },
  21226. ]
  21227. ))
  21228. characterMakers.push(() => makeCharacter(
  21229. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21230. {
  21231. side: {
  21232. height: math.unit(25.5, "feet"),
  21233. weight: math.unit(23000, "kg"),
  21234. name: "Side",
  21235. image: {
  21236. source: "./media/characters/kanara/side.svg"
  21237. }
  21238. },
  21239. },
  21240. [
  21241. {
  21242. name: "Normal",
  21243. height: math.unit(25.5, "feet"),
  21244. default: true
  21245. },
  21246. ]
  21247. ))
  21248. characterMakers.push(() => makeCharacter(
  21249. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21250. {
  21251. side: {
  21252. height: math.unit(10, "feet"),
  21253. weight: math.unit(1000, "kg"),
  21254. name: "Side",
  21255. image: {
  21256. source: "./media/characters/ereus/side.svg",
  21257. extra: 1157 / 959,
  21258. bottom: 153 / 1312.5
  21259. }
  21260. },
  21261. },
  21262. [
  21263. {
  21264. name: "Normal",
  21265. height: math.unit(10, "feet"),
  21266. default: true
  21267. },
  21268. ]
  21269. ))
  21270. characterMakers.push(() => makeCharacter(
  21271. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21272. {
  21273. side: {
  21274. height: math.unit(4.5, "feet"),
  21275. weight: math.unit(500, "lb"),
  21276. name: "Side",
  21277. image: {
  21278. source: "./media/characters/e-ter/side.svg",
  21279. extra: 1550 / 1248,
  21280. bottom: 146 / 1694
  21281. }
  21282. },
  21283. },
  21284. [
  21285. {
  21286. name: "Normal",
  21287. height: math.unit(4.5, "feet"),
  21288. default: true
  21289. },
  21290. ]
  21291. ))
  21292. characterMakers.push(() => makeCharacter(
  21293. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21294. {
  21295. side: {
  21296. height: math.unit(9.7, "feet"),
  21297. weight: math.unit(4000, "kg"),
  21298. name: "Side",
  21299. image: {
  21300. source: "./media/characters/yamie/side.svg"
  21301. }
  21302. },
  21303. },
  21304. [
  21305. {
  21306. name: "Normal",
  21307. height: math.unit(9.7, "feet"),
  21308. default: true
  21309. },
  21310. ]
  21311. ))
  21312. characterMakers.push(() => makeCharacter(
  21313. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21314. {
  21315. front: {
  21316. height: math.unit(50, "feet"),
  21317. weight: math.unit(50000, "kg"),
  21318. name: "Front",
  21319. image: {
  21320. source: "./media/characters/anders/front.svg",
  21321. extra: 570 / 539,
  21322. bottom: 14.7 / 586.7
  21323. }
  21324. },
  21325. },
  21326. [
  21327. {
  21328. name: "Large",
  21329. height: math.unit(50, "feet")
  21330. },
  21331. {
  21332. name: "Macro",
  21333. height: math.unit(2000, "feet"),
  21334. default: true
  21335. },
  21336. {
  21337. name: "Megamacro",
  21338. height: math.unit(12, "miles")
  21339. },
  21340. ]
  21341. ))
  21342. characterMakers.push(() => makeCharacter(
  21343. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21344. {
  21345. front: {
  21346. height: math.unit(7 + 2 / 12, "feet"),
  21347. weight: math.unit(300, "lb"),
  21348. name: "Front",
  21349. image: {
  21350. source: "./media/characters/reban/front.svg",
  21351. extra: 516 / 487,
  21352. bottom: 42.82 / 558.356
  21353. }
  21354. },
  21355. dick: {
  21356. height: math.unit(7 / 5, "feet"),
  21357. name: "Dick",
  21358. image: {
  21359. source: "./media/characters/reban/dick.svg"
  21360. }
  21361. },
  21362. },
  21363. [
  21364. {
  21365. name: "Natural Height",
  21366. height: math.unit(7 + 2 / 12, "feet")
  21367. },
  21368. {
  21369. name: "Macro",
  21370. height: math.unit(500, "feet"),
  21371. default: true
  21372. },
  21373. {
  21374. name: "Canon Height",
  21375. height: math.unit(50, "AU")
  21376. },
  21377. ]
  21378. ))
  21379. characterMakers.push(() => makeCharacter(
  21380. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21381. {
  21382. front: {
  21383. height: math.unit(6, "feet"),
  21384. weight: math.unit(150, "lb"),
  21385. name: "Front",
  21386. image: {
  21387. source: "./media/characters/terrance-keayes/front.svg",
  21388. extra: 1.005,
  21389. bottom: 151 / 1615
  21390. }
  21391. },
  21392. side: {
  21393. height: math.unit(6, "feet"),
  21394. weight: math.unit(150, "lb"),
  21395. name: "Side",
  21396. image: {
  21397. source: "./media/characters/terrance-keayes/side.svg",
  21398. extra: 1.005,
  21399. bottom: 129.4 / 1544
  21400. }
  21401. },
  21402. back: {
  21403. height: math.unit(6, "feet"),
  21404. weight: math.unit(150, "lb"),
  21405. name: "Back",
  21406. image: {
  21407. source: "./media/characters/terrance-keayes/back.svg",
  21408. extra: 1.005,
  21409. bottom: 58.4 / 1557.3
  21410. }
  21411. },
  21412. dick: {
  21413. height: math.unit(6 * 0.208, "feet"),
  21414. name: "Dick",
  21415. image: {
  21416. source: "./media/characters/terrance-keayes/dick.svg"
  21417. }
  21418. },
  21419. },
  21420. [
  21421. {
  21422. name: "Canon Height",
  21423. height: math.unit(35, "miles"),
  21424. default: true
  21425. },
  21426. ]
  21427. ))
  21428. characterMakers.push(() => makeCharacter(
  21429. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21430. {
  21431. front: {
  21432. height: math.unit(6, "feet"),
  21433. weight: math.unit(150, "lb"),
  21434. name: "Front",
  21435. image: {
  21436. source: "./media/characters/ofelia/front.svg",
  21437. extra: 546 / 541,
  21438. bottom: 39 / 583
  21439. }
  21440. },
  21441. back: {
  21442. height: math.unit(6, "feet"),
  21443. weight: math.unit(150, "lb"),
  21444. name: "Back",
  21445. image: {
  21446. source: "./media/characters/ofelia/back.svg",
  21447. extra: 564 / 559.5,
  21448. bottom: 8.69 / 573.02
  21449. }
  21450. },
  21451. maw: {
  21452. height: math.unit(1, "feet"),
  21453. name: "Maw",
  21454. image: {
  21455. source: "./media/characters/ofelia/maw.svg"
  21456. }
  21457. },
  21458. foot: {
  21459. height: math.unit(1.949, "feet"),
  21460. name: "Foot",
  21461. image: {
  21462. source: "./media/characters/ofelia/foot.svg"
  21463. }
  21464. },
  21465. },
  21466. [
  21467. {
  21468. name: "Canon Height",
  21469. height: math.unit(2000, "miles"),
  21470. default: true
  21471. },
  21472. ]
  21473. ))
  21474. characterMakers.push(() => makeCharacter(
  21475. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21476. {
  21477. front: {
  21478. height: math.unit(6, "feet"),
  21479. weight: math.unit(150, "lb"),
  21480. name: "Front",
  21481. image: {
  21482. source: "./media/characters/samuel/front.svg",
  21483. extra: 265 / 258,
  21484. bottom: 2 / 266.1566
  21485. }
  21486. },
  21487. },
  21488. [
  21489. {
  21490. name: "Macro",
  21491. height: math.unit(100, "feet"),
  21492. default: true
  21493. },
  21494. {
  21495. name: "Full Size",
  21496. height: math.unit(1000, "miles")
  21497. },
  21498. ]
  21499. ))
  21500. characterMakers.push(() => makeCharacter(
  21501. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21502. {
  21503. front: {
  21504. height: math.unit(6, "feet"),
  21505. weight: math.unit(300, "lb"),
  21506. name: "Front",
  21507. image: {
  21508. source: "./media/characters/beishir-kiel/front.svg",
  21509. extra: 569 / 547,
  21510. bottom: 41.9 / 609
  21511. }
  21512. },
  21513. maw: {
  21514. height: math.unit(6 * 0.202, "feet"),
  21515. name: "Maw",
  21516. image: {
  21517. source: "./media/characters/beishir-kiel/maw.svg"
  21518. }
  21519. },
  21520. },
  21521. [
  21522. {
  21523. name: "Macro",
  21524. height: math.unit(300, "feet"),
  21525. default: true
  21526. },
  21527. ]
  21528. ))
  21529. characterMakers.push(() => makeCharacter(
  21530. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21531. {
  21532. front: {
  21533. height: math.unit(5 + 8 / 12, "feet"),
  21534. weight: math.unit(120, "lb"),
  21535. name: "Front",
  21536. image: {
  21537. source: "./media/characters/logan-grey/front.svg",
  21538. extra: 2539 / 2393,
  21539. bottom: 97.6 / 2636.37
  21540. }
  21541. },
  21542. frontAlt: {
  21543. height: math.unit(5 + 8 / 12, "feet"),
  21544. weight: math.unit(120, "lb"),
  21545. name: "Front (Alt)",
  21546. image: {
  21547. source: "./media/characters/logan-grey/front-alt.svg",
  21548. extra: 958 / 893,
  21549. bottom: 15 / 970.768
  21550. }
  21551. },
  21552. back: {
  21553. height: math.unit(5 + 8 / 12, "feet"),
  21554. weight: math.unit(120, "lb"),
  21555. name: "Back",
  21556. image: {
  21557. source: "./media/characters/logan-grey/back.svg",
  21558. extra: 958 / 893,
  21559. bottom: 2.1881 / 970.9788
  21560. }
  21561. },
  21562. dick: {
  21563. height: math.unit(1.437, "feet"),
  21564. name: "Dick",
  21565. image: {
  21566. source: "./media/characters/logan-grey/dick.svg"
  21567. }
  21568. },
  21569. },
  21570. [
  21571. {
  21572. name: "Normal",
  21573. height: math.unit(5 + 8 / 12, "feet")
  21574. },
  21575. {
  21576. name: "The 500 Foot Femboy",
  21577. height: math.unit(500, "feet"),
  21578. default: true
  21579. },
  21580. {
  21581. name: "Megmacro",
  21582. height: math.unit(20, "miles")
  21583. },
  21584. ]
  21585. ))
  21586. characterMakers.push(() => makeCharacter(
  21587. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21588. {
  21589. front: {
  21590. height: math.unit(8 + 2 / 12, "feet"),
  21591. weight: math.unit(275, "lb"),
  21592. name: "Front",
  21593. image: {
  21594. source: "./media/characters/draganta/front.svg",
  21595. extra: 1177 / 1135,
  21596. bottom: 33.46 / 1212.1
  21597. }
  21598. },
  21599. },
  21600. [
  21601. {
  21602. name: "Normal",
  21603. height: math.unit(8 + 6 / 12, "feet"),
  21604. default: true
  21605. },
  21606. {
  21607. name: "Macro",
  21608. height: math.unit(150, "feet")
  21609. },
  21610. {
  21611. name: "Megamacro",
  21612. height: math.unit(1000, "miles")
  21613. },
  21614. ]
  21615. ))
  21616. characterMakers.push(() => makeCharacter(
  21617. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21618. {
  21619. front: {
  21620. height: math.unit(1.72, "m"),
  21621. weight: math.unit(80, "lb"),
  21622. name: "Front",
  21623. image: {
  21624. source: "./media/characters/voski/front.svg",
  21625. extra: 2076.22 / 2022.4,
  21626. bottom: 102.7 / 2177.3866
  21627. }
  21628. },
  21629. frontNsfw: {
  21630. height: math.unit(1.72, "m"),
  21631. weight: math.unit(80, "lb"),
  21632. name: "Front (NSFW)",
  21633. image: {
  21634. source: "./media/characters/voski/front-nsfw.svg",
  21635. extra: 2076.22 / 2022.4,
  21636. bottom: 102.7 / 2177.3866
  21637. }
  21638. },
  21639. back: {
  21640. height: math.unit(1.72, "m"),
  21641. weight: math.unit(80, "lb"),
  21642. name: "Back",
  21643. image: {
  21644. source: "./media/characters/voski/back.svg",
  21645. extra: 2104 / 2051,
  21646. bottom: 10.45 / 2113.63
  21647. }
  21648. },
  21649. },
  21650. [
  21651. {
  21652. name: "Normal",
  21653. height: math.unit(1.72, "m")
  21654. },
  21655. {
  21656. name: "Macro",
  21657. height: math.unit(55, "m"),
  21658. default: true
  21659. },
  21660. {
  21661. name: "Macro+",
  21662. height: math.unit(300, "m")
  21663. },
  21664. {
  21665. name: "Macro++",
  21666. height: math.unit(700, "m")
  21667. },
  21668. {
  21669. name: "Macro+++",
  21670. height: math.unit(4500, "m")
  21671. },
  21672. {
  21673. name: "Macro++++",
  21674. height: math.unit(45, "km")
  21675. },
  21676. {
  21677. name: "Macro+++++",
  21678. height: math.unit(1220, "km")
  21679. },
  21680. ]
  21681. ))
  21682. characterMakers.push(() => makeCharacter(
  21683. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21684. {
  21685. front: {
  21686. height: math.unit(2.3, "m"),
  21687. weight: math.unit(304, "kg"),
  21688. name: "Front",
  21689. image: {
  21690. source: "./media/characters/icowom-lee/front.svg",
  21691. extra: 985 / 955,
  21692. bottom: 25.4 / 1012
  21693. }
  21694. },
  21695. fronttentacles: {
  21696. height: math.unit(2.3, "m"),
  21697. weight: math.unit(304, "kg"),
  21698. name: "Front-tentacles",
  21699. image: {
  21700. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21701. extra: 985 / 955,
  21702. bottom: 25.4 / 1012
  21703. }
  21704. },
  21705. back: {
  21706. height: math.unit(2.3, "m"),
  21707. weight: math.unit(304, "kg"),
  21708. name: "Back",
  21709. image: {
  21710. source: "./media/characters/icowom-lee/back.svg",
  21711. extra: 975 / 954,
  21712. bottom: 9.5 / 985
  21713. }
  21714. },
  21715. backtentacles: {
  21716. height: math.unit(2.3, "m"),
  21717. weight: math.unit(304, "kg"),
  21718. name: "Back-tentacles",
  21719. image: {
  21720. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21721. extra: 975 / 954,
  21722. bottom: 9.5 / 985
  21723. }
  21724. },
  21725. frontDressed: {
  21726. height: math.unit(2.3, "m"),
  21727. weight: math.unit(304, "kg"),
  21728. name: "Front (Dressed)",
  21729. image: {
  21730. source: "./media/characters/icowom-lee/front-dressed.svg",
  21731. extra: 3076 / 2933,
  21732. bottom: 51.4 / 3125.1889
  21733. }
  21734. },
  21735. rump: {
  21736. height: math.unit(0.776, "meters"),
  21737. name: "Rump",
  21738. image: {
  21739. source: "./media/characters/icowom-lee/rump.svg"
  21740. }
  21741. },
  21742. genitals: {
  21743. height: math.unit(0.78, "meters"),
  21744. name: "Genitals",
  21745. image: {
  21746. source: "./media/characters/icowom-lee/genitals.svg"
  21747. }
  21748. },
  21749. },
  21750. [
  21751. {
  21752. name: "Normal",
  21753. height: math.unit(2.3, "meters"),
  21754. default: true
  21755. },
  21756. {
  21757. name: "Macro",
  21758. height: math.unit(94, "meters"),
  21759. default: true
  21760. },
  21761. ]
  21762. ))
  21763. characterMakers.push(() => makeCharacter(
  21764. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21765. {
  21766. front: {
  21767. height: math.unit(22, "meters"),
  21768. weight: math.unit(21000, "kg"),
  21769. name: "Front",
  21770. image: {
  21771. source: "./media/characters/shock-diamond/front.svg",
  21772. extra: 2204 / 2053,
  21773. bottom: 65 / 2239.47
  21774. }
  21775. },
  21776. frontNude: {
  21777. height: math.unit(22, "meters"),
  21778. weight: math.unit(21000, "kg"),
  21779. name: "Front (Nude)",
  21780. image: {
  21781. source: "./media/characters/shock-diamond/front-nude.svg",
  21782. extra: 2514 / 2285,
  21783. bottom: 13 / 2527.56
  21784. }
  21785. },
  21786. },
  21787. [
  21788. {
  21789. name: "Normal",
  21790. height: math.unit(3, "meters")
  21791. },
  21792. {
  21793. name: "Macro",
  21794. height: math.unit(22, "meters"),
  21795. default: true
  21796. },
  21797. ]
  21798. ))
  21799. characterMakers.push(() => makeCharacter(
  21800. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21801. {
  21802. front: {
  21803. height: math.unit(5 + 4 / 12, "feet"),
  21804. weight: math.unit(120, "lb"),
  21805. name: "Front",
  21806. image: {
  21807. source: "./media/characters/rory/front.svg",
  21808. extra: 589 / 556,
  21809. bottom: 45.7 / 635.76
  21810. }
  21811. },
  21812. frontNude: {
  21813. height: math.unit(5 + 4 / 12, "feet"),
  21814. weight: math.unit(120, "lb"),
  21815. name: "Front (Nude)",
  21816. image: {
  21817. source: "./media/characters/rory/front-nude.svg",
  21818. extra: 589 / 556,
  21819. bottom: 45.7 / 635.76
  21820. }
  21821. },
  21822. side: {
  21823. height: math.unit(5 + 4 / 12, "feet"),
  21824. weight: math.unit(120, "lb"),
  21825. name: "Side",
  21826. image: {
  21827. source: "./media/characters/rory/side.svg",
  21828. extra: 597 / 564,
  21829. bottom: 55 / 653
  21830. }
  21831. },
  21832. back: {
  21833. height: math.unit(5 + 4 / 12, "feet"),
  21834. weight: math.unit(120, "lb"),
  21835. name: "Back",
  21836. image: {
  21837. source: "./media/characters/rory/back.svg",
  21838. extra: 620 / 585,
  21839. bottom: 8.86 / 630.43
  21840. }
  21841. },
  21842. dick: {
  21843. height: math.unit(0.86, "feet"),
  21844. name: "Dick",
  21845. image: {
  21846. source: "./media/characters/rory/dick.svg"
  21847. }
  21848. },
  21849. },
  21850. [
  21851. {
  21852. name: "Normal",
  21853. height: math.unit(5 + 4 / 12, "feet"),
  21854. default: true
  21855. },
  21856. {
  21857. name: "Macro",
  21858. height: math.unit(100, "feet")
  21859. },
  21860. {
  21861. name: "Macro+",
  21862. height: math.unit(140, "feet")
  21863. },
  21864. {
  21865. name: "Macro++",
  21866. height: math.unit(300, "feet")
  21867. },
  21868. ]
  21869. ))
  21870. characterMakers.push(() => makeCharacter(
  21871. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21872. {
  21873. front: {
  21874. height: math.unit(5 + 9 / 12, "feet"),
  21875. weight: math.unit(190, "lb"),
  21876. name: "Front",
  21877. image: {
  21878. source: "./media/characters/sprisk/front.svg",
  21879. extra: 1225 / 1180,
  21880. bottom: 42.7 / 1266.4
  21881. }
  21882. },
  21883. frontNsfw: {
  21884. height: math.unit(5 + 9 / 12, "feet"),
  21885. weight: math.unit(190, "lb"),
  21886. name: "Front (NSFW)",
  21887. image: {
  21888. source: "./media/characters/sprisk/front-nsfw.svg",
  21889. extra: 1225 / 1180,
  21890. bottom: 42.7 / 1266.4
  21891. }
  21892. },
  21893. back: {
  21894. height: math.unit(5 + 9 / 12, "feet"),
  21895. weight: math.unit(190, "lb"),
  21896. name: "Back",
  21897. image: {
  21898. source: "./media/characters/sprisk/back.svg",
  21899. extra: 1247 / 1200,
  21900. bottom: 5.6 / 1253.04
  21901. }
  21902. },
  21903. },
  21904. [
  21905. {
  21906. name: "Tiny",
  21907. height: math.unit(2, "inches")
  21908. },
  21909. {
  21910. name: "Normal",
  21911. height: math.unit(5 + 9 / 12, "feet"),
  21912. default: true
  21913. },
  21914. {
  21915. name: "Mini Macro",
  21916. height: math.unit(18, "feet")
  21917. },
  21918. {
  21919. name: "Macro",
  21920. height: math.unit(100, "feet")
  21921. },
  21922. {
  21923. name: "MACRO",
  21924. height: math.unit(50, "miles")
  21925. },
  21926. {
  21927. name: "M A C R O",
  21928. height: math.unit(300, "miles")
  21929. },
  21930. ]
  21931. ))
  21932. characterMakers.push(() => makeCharacter(
  21933. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21934. {
  21935. side: {
  21936. height: math.unit(15.6, "meters"),
  21937. weight: math.unit(700000, "kg"),
  21938. name: "Side",
  21939. image: {
  21940. source: "./media/characters/bunsen/side.svg",
  21941. extra: 1644 / 358
  21942. }
  21943. },
  21944. foot: {
  21945. height: math.unit(1.611 * 1644 / 358, "meter"),
  21946. name: "Foot",
  21947. image: {
  21948. source: "./media/characters/bunsen/foot.svg"
  21949. }
  21950. },
  21951. },
  21952. [
  21953. {
  21954. name: "Small",
  21955. height: math.unit(10, "feet")
  21956. },
  21957. {
  21958. name: "Normal",
  21959. height: math.unit(15.6, "meters"),
  21960. default: true
  21961. },
  21962. ]
  21963. ))
  21964. characterMakers.push(() => makeCharacter(
  21965. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21966. {
  21967. front: {
  21968. height: math.unit(4 + 11 / 12, "feet"),
  21969. weight: math.unit(140, "lb"),
  21970. name: "Front",
  21971. image: {
  21972. source: "./media/characters/sesh/front.svg",
  21973. extra: 3420 / 3231,
  21974. bottom: 72 / 3949.5
  21975. }
  21976. },
  21977. },
  21978. [
  21979. {
  21980. name: "Normal",
  21981. height: math.unit(4 + 11 / 12, "feet")
  21982. },
  21983. {
  21984. name: "Grown",
  21985. height: math.unit(15, "feet"),
  21986. default: true
  21987. },
  21988. {
  21989. name: "Macro",
  21990. height: math.unit(1500, "feet")
  21991. },
  21992. {
  21993. name: "Megamacro",
  21994. height: math.unit(30, "miles")
  21995. },
  21996. {
  21997. name: "Continental",
  21998. height: math.unit(3000, "miles")
  21999. },
  22000. {
  22001. name: "Gravity Mass",
  22002. height: math.unit(300000, "miles")
  22003. },
  22004. {
  22005. name: "Planet Buster",
  22006. height: math.unit(30000000, "miles")
  22007. },
  22008. {
  22009. name: "Big",
  22010. height: math.unit(3000000000, "miles")
  22011. },
  22012. ]
  22013. ))
  22014. characterMakers.push(() => makeCharacter(
  22015. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22016. {
  22017. front: {
  22018. height: math.unit(9, "feet"),
  22019. weight: math.unit(350, "lb"),
  22020. name: "Front",
  22021. image: {
  22022. source: "./media/characters/pepper/front.svg",
  22023. extra: 1448 / 1312,
  22024. bottom: 9.4 / 1457.88
  22025. }
  22026. },
  22027. back: {
  22028. height: math.unit(9, "feet"),
  22029. weight: math.unit(350, "lb"),
  22030. name: "Back",
  22031. image: {
  22032. source: "./media/characters/pepper/back.svg",
  22033. extra: 1423 / 1300,
  22034. bottom: 4.6 / 1429
  22035. }
  22036. },
  22037. maw: {
  22038. height: math.unit(0.932, "feet"),
  22039. name: "Maw",
  22040. image: {
  22041. source: "./media/characters/pepper/maw.svg"
  22042. }
  22043. },
  22044. },
  22045. [
  22046. {
  22047. name: "Normal",
  22048. height: math.unit(9, "feet"),
  22049. default: true
  22050. },
  22051. ]
  22052. ))
  22053. characterMakers.push(() => makeCharacter(
  22054. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22055. {
  22056. front: {
  22057. height: math.unit(6, "feet"),
  22058. weight: math.unit(150, "lb"),
  22059. name: "Front",
  22060. image: {
  22061. source: "./media/characters/maelstrom/front.svg",
  22062. extra: 2100 / 1883,
  22063. bottom: 94 / 2196.7
  22064. }
  22065. },
  22066. },
  22067. [
  22068. {
  22069. name: "Less Kaiju",
  22070. height: math.unit(200, "feet")
  22071. },
  22072. {
  22073. name: "Kaiju",
  22074. height: math.unit(400, "feet"),
  22075. default: true
  22076. },
  22077. {
  22078. name: "Kaiju-er",
  22079. height: math.unit(600, "feet")
  22080. },
  22081. ]
  22082. ))
  22083. characterMakers.push(() => makeCharacter(
  22084. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22085. {
  22086. front: {
  22087. height: math.unit(6 + 5 / 12, "feet"),
  22088. weight: math.unit(180, "lb"),
  22089. name: "Front",
  22090. image: {
  22091. source: "./media/characters/lexir/front.svg",
  22092. extra: 180 / 172,
  22093. bottom: 12 / 192
  22094. }
  22095. },
  22096. back: {
  22097. height: math.unit(6 + 5 / 12, "feet"),
  22098. weight: math.unit(180, "lb"),
  22099. name: "Back",
  22100. image: {
  22101. source: "./media/characters/lexir/back.svg",
  22102. extra: 183.84 / 175.5,
  22103. bottom: 3.1 / 187
  22104. }
  22105. },
  22106. },
  22107. [
  22108. {
  22109. name: "Very Smal",
  22110. height: math.unit(1, "nm")
  22111. },
  22112. {
  22113. name: "Normal",
  22114. height: math.unit(6 + 5 / 12, "feet"),
  22115. default: true
  22116. },
  22117. {
  22118. name: "Macro",
  22119. height: math.unit(1, "mile")
  22120. },
  22121. {
  22122. name: "Megamacro",
  22123. height: math.unit(50, "miles")
  22124. },
  22125. ]
  22126. ))
  22127. characterMakers.push(() => makeCharacter(
  22128. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22129. {
  22130. front: {
  22131. height: math.unit(1.5, "meters"),
  22132. weight: math.unit(100, "lb"),
  22133. name: "Front",
  22134. image: {
  22135. source: "./media/characters/maksio/front.svg",
  22136. extra: 1549 / 1531,
  22137. bottom: 123.7 / 1674.5429
  22138. }
  22139. },
  22140. back: {
  22141. height: math.unit(1.5, "meters"),
  22142. weight: math.unit(100, "lb"),
  22143. name: "Back",
  22144. image: {
  22145. source: "./media/characters/maksio/back.svg",
  22146. extra: 1541 / 1509,
  22147. bottom: 97 / 1639
  22148. }
  22149. },
  22150. hand: {
  22151. height: math.unit(0.621, "feet"),
  22152. name: "Hand",
  22153. image: {
  22154. source: "./media/characters/maksio/hand.svg"
  22155. }
  22156. },
  22157. foot: {
  22158. height: math.unit(1.611, "feet"),
  22159. name: "Foot",
  22160. image: {
  22161. source: "./media/characters/maksio/foot.svg"
  22162. }
  22163. },
  22164. },
  22165. [
  22166. {
  22167. name: "Shrunken",
  22168. height: math.unit(10, "cm")
  22169. },
  22170. {
  22171. name: "Normal",
  22172. height: math.unit(150, "cm"),
  22173. default: true
  22174. },
  22175. ]
  22176. ))
  22177. characterMakers.push(() => makeCharacter(
  22178. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22179. {
  22180. front: {
  22181. height: math.unit(100, "feet"),
  22182. name: "Front",
  22183. image: {
  22184. source: "./media/characters/erza-bear/front.svg",
  22185. extra: 2449 / 2390,
  22186. bottom: 46 / 2494
  22187. }
  22188. },
  22189. back: {
  22190. height: math.unit(100, "feet"),
  22191. name: "Back",
  22192. image: {
  22193. source: "./media/characters/erza-bear/back.svg",
  22194. extra: 2489 / 2430,
  22195. bottom: 85.4 / 2480
  22196. }
  22197. },
  22198. tail: {
  22199. height: math.unit(42, "feet"),
  22200. name: "Tail",
  22201. image: {
  22202. source: "./media/characters/erza-bear/tail.svg"
  22203. }
  22204. },
  22205. tongue: {
  22206. height: math.unit(8, "feet"),
  22207. name: "Tongue",
  22208. image: {
  22209. source: "./media/characters/erza-bear/tongue.svg"
  22210. }
  22211. },
  22212. dick: {
  22213. height: math.unit(10.5, "feet"),
  22214. name: "Dick",
  22215. image: {
  22216. source: "./media/characters/erza-bear/dick.svg"
  22217. }
  22218. },
  22219. dickVertical: {
  22220. height: math.unit(16.9, "feet"),
  22221. name: "Dick (Vertical)",
  22222. image: {
  22223. source: "./media/characters/erza-bear/dick-vertical.svg"
  22224. }
  22225. },
  22226. },
  22227. [
  22228. {
  22229. name: "Macro",
  22230. height: math.unit(100, "feet"),
  22231. default: true
  22232. },
  22233. ]
  22234. ))
  22235. characterMakers.push(() => makeCharacter(
  22236. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22237. {
  22238. front: {
  22239. height: math.unit(172, "cm"),
  22240. weight: math.unit(73, "kg"),
  22241. name: "Front",
  22242. image: {
  22243. source: "./media/characters/violet-flor/front.svg",
  22244. extra: 1530 / 1442,
  22245. bottom: 61.9 / 1588.8
  22246. }
  22247. },
  22248. back: {
  22249. height: math.unit(180, "cm"),
  22250. weight: math.unit(73, "kg"),
  22251. name: "Back",
  22252. image: {
  22253. source: "./media/characters/violet-flor/back.svg",
  22254. extra: 1692 / 1630,
  22255. bottom: 20 / 1712
  22256. }
  22257. },
  22258. },
  22259. [
  22260. {
  22261. name: "Normal",
  22262. height: math.unit(172, "cm"),
  22263. default: true
  22264. },
  22265. ]
  22266. ))
  22267. characterMakers.push(() => makeCharacter(
  22268. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22269. {
  22270. front: {
  22271. height: math.unit(6, "feet"),
  22272. weight: math.unit(220, "lb"),
  22273. name: "Front",
  22274. image: {
  22275. source: "./media/characters/lynn-rhea/front.svg",
  22276. extra: 310 / 273
  22277. }
  22278. },
  22279. back: {
  22280. height: math.unit(6, "feet"),
  22281. weight: math.unit(220, "lb"),
  22282. name: "Back",
  22283. image: {
  22284. source: "./media/characters/lynn-rhea/back.svg",
  22285. extra: 310 / 273
  22286. }
  22287. },
  22288. dicks: {
  22289. height: math.unit(0.9, "feet"),
  22290. name: "Dicks",
  22291. image: {
  22292. source: "./media/characters/lynn-rhea/dicks.svg"
  22293. }
  22294. },
  22295. slit: {
  22296. height: math.unit(0.4, "feet"),
  22297. name: "Slit",
  22298. image: {
  22299. source: "./media/characters/lynn-rhea/slit.svg"
  22300. }
  22301. },
  22302. },
  22303. [
  22304. {
  22305. name: "Micro",
  22306. height: math.unit(1, "inch")
  22307. },
  22308. {
  22309. name: "Macro",
  22310. height: math.unit(60, "feet"),
  22311. default: true
  22312. },
  22313. {
  22314. name: "Megamacro",
  22315. height: math.unit(2, "miles")
  22316. },
  22317. {
  22318. name: "Gigamacro",
  22319. height: math.unit(3, "earths")
  22320. },
  22321. {
  22322. name: "Galactic",
  22323. height: math.unit(0.8, "galaxies")
  22324. },
  22325. ]
  22326. ))
  22327. characterMakers.push(() => makeCharacter(
  22328. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22329. {
  22330. front: {
  22331. height: math.unit(1600, "feet"),
  22332. weight: math.unit(85758785169, "kg"),
  22333. name: "Front",
  22334. image: {
  22335. source: "./media/characters/valathos/front.svg",
  22336. extra: 1451 / 1339
  22337. }
  22338. },
  22339. },
  22340. [
  22341. {
  22342. name: "Macro",
  22343. height: math.unit(1600, "feet"),
  22344. default: true
  22345. },
  22346. ]
  22347. ))
  22348. characterMakers.push(() => makeCharacter(
  22349. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22350. {
  22351. front: {
  22352. height: math.unit(7 + 5 / 12, "feet"),
  22353. weight: math.unit(300, "lb"),
  22354. name: "Front",
  22355. image: {
  22356. source: "./media/characters/azula/front.svg",
  22357. extra: 3208 / 2880,
  22358. bottom: 80.2 / 3277
  22359. }
  22360. },
  22361. back: {
  22362. height: math.unit(7 + 5 / 12, "feet"),
  22363. weight: math.unit(300, "lb"),
  22364. name: "Back",
  22365. image: {
  22366. source: "./media/characters/azula/back.svg",
  22367. extra: 3169 / 2822,
  22368. bottom: 150.6 / 3321
  22369. }
  22370. },
  22371. },
  22372. [
  22373. {
  22374. name: "Normal",
  22375. height: math.unit(7 + 5 / 12, "feet"),
  22376. default: true
  22377. },
  22378. {
  22379. name: "Big",
  22380. height: math.unit(20, "feet")
  22381. },
  22382. ]
  22383. ))
  22384. characterMakers.push(() => makeCharacter(
  22385. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22386. {
  22387. front: {
  22388. height: math.unit(5 + 1 / 12, "feet"),
  22389. weight: math.unit(110, "lb"),
  22390. name: "Front",
  22391. image: {
  22392. source: "./media/characters/rupert/front.svg",
  22393. extra: 1549 / 1495,
  22394. bottom: 54.2 / 1604.4
  22395. }
  22396. },
  22397. },
  22398. [
  22399. {
  22400. name: "Normal",
  22401. height: math.unit(5 + 1 / 12, "feet"),
  22402. default: true
  22403. },
  22404. ]
  22405. ))
  22406. characterMakers.push(() => makeCharacter(
  22407. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22408. {
  22409. front: {
  22410. height: math.unit(8 + 4 / 12, "feet"),
  22411. weight: math.unit(350, "lb"),
  22412. name: "Front",
  22413. image: {
  22414. source: "./media/characters/sheera-castellar/front.svg",
  22415. extra: 1957 / 1894,
  22416. bottom: 26.97 / 1975.017
  22417. }
  22418. },
  22419. side: {
  22420. height: math.unit(8 + 4 / 12, "feet"),
  22421. weight: math.unit(350, "lb"),
  22422. name: "Side",
  22423. image: {
  22424. source: "./media/characters/sheera-castellar/side.svg",
  22425. extra: 1957 / 1894
  22426. }
  22427. },
  22428. back: {
  22429. height: math.unit(8 + 4 / 12, "feet"),
  22430. weight: math.unit(350, "lb"),
  22431. name: "Back",
  22432. image: {
  22433. source: "./media/characters/sheera-castellar/back.svg",
  22434. extra: 1957 / 1894
  22435. }
  22436. },
  22437. angled: {
  22438. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22439. weight: math.unit(350, "lb"),
  22440. name: "Angled",
  22441. image: {
  22442. source: "./media/characters/sheera-castellar/angled.svg",
  22443. extra: 1807 / 1707,
  22444. bottom: 68 / 1875
  22445. }
  22446. },
  22447. genitals: {
  22448. height: math.unit(2.2, "feet"),
  22449. name: "Genitals",
  22450. image: {
  22451. source: "./media/characters/sheera-castellar/genitals.svg"
  22452. }
  22453. },
  22454. },
  22455. [
  22456. {
  22457. name: "Normal",
  22458. height: math.unit(8 + 4 / 12, "feet")
  22459. },
  22460. {
  22461. name: "Macro",
  22462. height: math.unit(150, "feet"),
  22463. default: true
  22464. },
  22465. {
  22466. name: "Macro+",
  22467. height: math.unit(800, "feet")
  22468. },
  22469. ]
  22470. ))
  22471. characterMakers.push(() => makeCharacter(
  22472. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22473. {
  22474. front: {
  22475. height: math.unit(6, "feet"),
  22476. weight: math.unit(150, "lb"),
  22477. name: "Front",
  22478. image: {
  22479. source: "./media/characters/jaipur/front.svg",
  22480. extra: 3860 / 3731,
  22481. bottom: 287 / 4140
  22482. }
  22483. },
  22484. back: {
  22485. height: math.unit(6, "feet"),
  22486. weight: math.unit(150, "lb"),
  22487. name: "Back",
  22488. image: {
  22489. source: "./media/characters/jaipur/back.svg",
  22490. extra: 4060 / 3930,
  22491. bottom: 151 / 4200
  22492. }
  22493. },
  22494. },
  22495. [
  22496. {
  22497. name: "Normal",
  22498. height: math.unit(1.85, "meters"),
  22499. default: true
  22500. },
  22501. {
  22502. name: "Macro",
  22503. height: math.unit(150, "meters")
  22504. },
  22505. {
  22506. name: "Macro+",
  22507. height: math.unit(0.5, "miles")
  22508. },
  22509. {
  22510. name: "Macro++",
  22511. height: math.unit(2.5, "miles")
  22512. },
  22513. {
  22514. name: "Macro+++",
  22515. height: math.unit(12, "miles")
  22516. },
  22517. {
  22518. name: "Macro++++",
  22519. height: math.unit(120, "miles")
  22520. },
  22521. {
  22522. name: "Macro+++++",
  22523. height: math.unit(1200, "miles")
  22524. },
  22525. ]
  22526. ))
  22527. characterMakers.push(() => makeCharacter(
  22528. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22529. {
  22530. front: {
  22531. height: math.unit(6, "feet"),
  22532. weight: math.unit(150, "lb"),
  22533. name: "Front",
  22534. image: {
  22535. source: "./media/characters/sheila-wolf/front.svg",
  22536. extra: 1931 / 1808,
  22537. bottom: 29.5 / 1960
  22538. }
  22539. },
  22540. dick: {
  22541. height: math.unit(1.464, "feet"),
  22542. name: "Dick",
  22543. image: {
  22544. source: "./media/characters/sheila-wolf/dick.svg"
  22545. }
  22546. },
  22547. muzzle: {
  22548. height: math.unit(0.513, "feet"),
  22549. name: "Muzzle",
  22550. image: {
  22551. source: "./media/characters/sheila-wolf/muzzle.svg"
  22552. }
  22553. },
  22554. },
  22555. [
  22556. {
  22557. name: "Macro",
  22558. height: math.unit(70, "feet"),
  22559. default: true
  22560. },
  22561. ]
  22562. ))
  22563. characterMakers.push(() => makeCharacter(
  22564. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22565. {
  22566. front: {
  22567. height: math.unit(32, "meters"),
  22568. weight: math.unit(300000, "kg"),
  22569. name: "Front",
  22570. image: {
  22571. source: "./media/characters/almor/front.svg",
  22572. extra: 1408 / 1322,
  22573. bottom: 94.6 / 1506.5
  22574. }
  22575. },
  22576. },
  22577. [
  22578. {
  22579. name: "Macro",
  22580. height: math.unit(32, "meters"),
  22581. default: true
  22582. },
  22583. ]
  22584. ))
  22585. characterMakers.push(() => makeCharacter(
  22586. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22587. {
  22588. front: {
  22589. height: math.unit(7, "feet"),
  22590. weight: math.unit(200, "lb"),
  22591. name: "Front",
  22592. image: {
  22593. source: "./media/characters/silver/front.svg",
  22594. extra: 472.1 / 450.5,
  22595. bottom: 26.5 / 499.424
  22596. }
  22597. },
  22598. },
  22599. [
  22600. {
  22601. name: "Normal",
  22602. height: math.unit(7, "feet"),
  22603. default: true
  22604. },
  22605. {
  22606. name: "Macro",
  22607. height: math.unit(800, "feet")
  22608. },
  22609. {
  22610. name: "Megamacro",
  22611. height: math.unit(250, "miles")
  22612. },
  22613. ]
  22614. ))
  22615. characterMakers.push(() => makeCharacter(
  22616. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22617. {
  22618. front: {
  22619. height: math.unit(6, "feet"),
  22620. weight: math.unit(150, "lb"),
  22621. name: "Front",
  22622. image: {
  22623. source: "./media/characters/pliskin/front.svg",
  22624. extra: 1469 / 1359,
  22625. bottom: 70 / 1540
  22626. }
  22627. },
  22628. },
  22629. [
  22630. {
  22631. name: "Micro",
  22632. height: math.unit(3, "inches")
  22633. },
  22634. {
  22635. name: "Normal",
  22636. height: math.unit(5 + 11 / 12, "feet"),
  22637. default: true
  22638. },
  22639. {
  22640. name: "Macro",
  22641. height: math.unit(120, "feet")
  22642. },
  22643. ]
  22644. ))
  22645. characterMakers.push(() => makeCharacter(
  22646. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22647. {
  22648. front: {
  22649. height: math.unit(6, "feet"),
  22650. weight: math.unit(150, "lb"),
  22651. name: "Front",
  22652. image: {
  22653. source: "./media/characters/sammy/front.svg",
  22654. extra: 1193 / 1089,
  22655. bottom: 30.5 / 1226
  22656. }
  22657. },
  22658. },
  22659. [
  22660. {
  22661. name: "Macro",
  22662. height: math.unit(1700, "feet"),
  22663. default: true
  22664. },
  22665. {
  22666. name: "Examacro",
  22667. height: math.unit(2.5e9, "lightyears")
  22668. },
  22669. ]
  22670. ))
  22671. characterMakers.push(() => makeCharacter(
  22672. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22673. {
  22674. front: {
  22675. height: math.unit(21, "meters"),
  22676. weight: math.unit(12, "tonnes"),
  22677. name: "Front",
  22678. image: {
  22679. source: "./media/characters/kuru/front.svg",
  22680. extra: 4301 / 3785,
  22681. bottom: 371.3 / 4691
  22682. }
  22683. },
  22684. },
  22685. [
  22686. {
  22687. name: "Macro",
  22688. height: math.unit(21, "meters"),
  22689. default: true
  22690. },
  22691. ]
  22692. ))
  22693. characterMakers.push(() => makeCharacter(
  22694. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22695. {
  22696. front: {
  22697. height: math.unit(23, "meters"),
  22698. weight: math.unit(12.2, "tonnes"),
  22699. name: "Front",
  22700. image: {
  22701. source: "./media/characters/rakka/front.svg",
  22702. extra: 4670 / 4169,
  22703. bottom: 301 / 4968.7
  22704. }
  22705. },
  22706. },
  22707. [
  22708. {
  22709. name: "Macro",
  22710. height: math.unit(23, "meters"),
  22711. default: true
  22712. },
  22713. ]
  22714. ))
  22715. characterMakers.push(() => makeCharacter(
  22716. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22717. {
  22718. front: {
  22719. height: math.unit(6, "feet"),
  22720. weight: math.unit(150, "lb"),
  22721. name: "Front",
  22722. image: {
  22723. source: "./media/characters/rhys-feline/front.svg",
  22724. extra: 2488 / 2308,
  22725. bottom: 35.67 / 2519.19
  22726. }
  22727. },
  22728. },
  22729. [
  22730. {
  22731. name: "Really Small",
  22732. height: math.unit(1, "nm")
  22733. },
  22734. {
  22735. name: "Micro",
  22736. height: math.unit(4, "inches")
  22737. },
  22738. {
  22739. name: "Normal",
  22740. height: math.unit(4 + 10 / 12, "feet"),
  22741. default: true
  22742. },
  22743. {
  22744. name: "Macro",
  22745. height: math.unit(100, "feet")
  22746. },
  22747. {
  22748. name: "Megamacto",
  22749. height: math.unit(50, "miles")
  22750. },
  22751. ]
  22752. ))
  22753. characterMakers.push(() => makeCharacter(
  22754. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22755. {
  22756. side: {
  22757. height: math.unit(30, "feet"),
  22758. weight: math.unit(35000, "kg"),
  22759. name: "Side",
  22760. image: {
  22761. source: "./media/characters/alydar/side.svg",
  22762. extra: 234 / 222,
  22763. bottom: 6.5 / 241
  22764. }
  22765. },
  22766. front: {
  22767. height: math.unit(30, "feet"),
  22768. weight: math.unit(35000, "kg"),
  22769. name: "Front",
  22770. image: {
  22771. source: "./media/characters/alydar/front.svg",
  22772. extra: 223.37 / 210.2,
  22773. bottom: 22.3 / 246.76
  22774. }
  22775. },
  22776. top: {
  22777. height: math.unit(64.54, "feet"),
  22778. weight: math.unit(35000, "kg"),
  22779. name: "Top",
  22780. image: {
  22781. source: "./media/characters/alydar/top.svg"
  22782. }
  22783. },
  22784. anthro: {
  22785. height: math.unit(30, "feet"),
  22786. weight: math.unit(9000, "kg"),
  22787. name: "Anthro",
  22788. image: {
  22789. source: "./media/characters/alydar/anthro.svg",
  22790. extra: 432 / 421,
  22791. bottom: 7.18 / 440
  22792. }
  22793. },
  22794. maw: {
  22795. height: math.unit(11.693, "feet"),
  22796. name: "Maw",
  22797. image: {
  22798. source: "./media/characters/alydar/maw.svg"
  22799. }
  22800. },
  22801. head: {
  22802. height: math.unit(11.693, "feet"),
  22803. name: "Head",
  22804. image: {
  22805. source: "./media/characters/alydar/head.svg"
  22806. }
  22807. },
  22808. headAlt: {
  22809. height: math.unit(12.861, "feet"),
  22810. name: "Head (Alt)",
  22811. image: {
  22812. source: "./media/characters/alydar/head-alt.svg"
  22813. }
  22814. },
  22815. wing: {
  22816. height: math.unit(20.712, "feet"),
  22817. name: "Wing",
  22818. image: {
  22819. source: "./media/characters/alydar/wing.svg"
  22820. }
  22821. },
  22822. wingFeather: {
  22823. height: math.unit(9.662, "feet"),
  22824. name: "Wing Feather",
  22825. image: {
  22826. source: "./media/characters/alydar/wing-feather.svg"
  22827. }
  22828. },
  22829. countourFeather: {
  22830. height: math.unit(4.154, "feet"),
  22831. name: "Contour Feather",
  22832. image: {
  22833. source: "./media/characters/alydar/contour-feather.svg"
  22834. }
  22835. },
  22836. },
  22837. [
  22838. {
  22839. name: "Diplomatic",
  22840. height: math.unit(13, "feet"),
  22841. default: true
  22842. },
  22843. {
  22844. name: "Small",
  22845. height: math.unit(30, "feet")
  22846. },
  22847. {
  22848. name: "Normal",
  22849. height: math.unit(95, "feet"),
  22850. default: true
  22851. },
  22852. {
  22853. name: "Large",
  22854. height: math.unit(285, "feet")
  22855. },
  22856. {
  22857. name: "Incomprehensible",
  22858. height: math.unit(450, "megameters")
  22859. },
  22860. ]
  22861. ))
  22862. characterMakers.push(() => makeCharacter(
  22863. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22864. {
  22865. side: {
  22866. height: math.unit(11, "feet"),
  22867. weight: math.unit(1750, "kg"),
  22868. name: "Side",
  22869. image: {
  22870. source: "./media/characters/selicia/side.svg",
  22871. extra: 440 / 396,
  22872. bottom: 24.8 / 465.979
  22873. }
  22874. },
  22875. maw: {
  22876. height: math.unit(4.665, "feet"),
  22877. name: "Maw",
  22878. image: {
  22879. source: "./media/characters/selicia/maw.svg"
  22880. }
  22881. },
  22882. },
  22883. [
  22884. {
  22885. name: "Normal",
  22886. height: math.unit(11, "feet"),
  22887. default: true
  22888. },
  22889. ]
  22890. ))
  22891. characterMakers.push(() => makeCharacter(
  22892. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22893. {
  22894. side: {
  22895. height: math.unit(2 + 6 / 12, "feet"),
  22896. weight: math.unit(30, "lb"),
  22897. name: "Side",
  22898. image: {
  22899. source: "./media/characters/layla/side.svg",
  22900. extra: 244 / 188,
  22901. bottom: 18.2 / 262.1
  22902. }
  22903. },
  22904. back: {
  22905. height: math.unit(2 + 6 / 12, "feet"),
  22906. weight: math.unit(30, "lb"),
  22907. name: "Back",
  22908. image: {
  22909. source: "./media/characters/layla/back.svg",
  22910. extra: 308 / 241.5,
  22911. bottom: 8.9 / 316.8
  22912. }
  22913. },
  22914. cumming: {
  22915. height: math.unit(2 + 6 / 12, "feet"),
  22916. weight: math.unit(30, "lb"),
  22917. name: "Cumming",
  22918. image: {
  22919. source: "./media/characters/layla/cumming.svg",
  22920. extra: 342 / 279,
  22921. bottom: 595 / 938
  22922. }
  22923. },
  22924. dickFlaccid: {
  22925. height: math.unit(2.595, "feet"),
  22926. name: "Flaccid Genitals",
  22927. image: {
  22928. source: "./media/characters/layla/dick-flaccid.svg"
  22929. }
  22930. },
  22931. dickErect: {
  22932. height: math.unit(2.359, "feet"),
  22933. name: "Erect Genitals",
  22934. image: {
  22935. source: "./media/characters/layla/dick-erect.svg"
  22936. }
  22937. },
  22938. },
  22939. [
  22940. {
  22941. name: "Micro",
  22942. height: math.unit(1, "inch")
  22943. },
  22944. {
  22945. name: "Small",
  22946. height: math.unit(1, "foot")
  22947. },
  22948. {
  22949. name: "Normal",
  22950. height: math.unit(2 + 6 / 12, "feet"),
  22951. default: true
  22952. },
  22953. {
  22954. name: "Macro",
  22955. height: math.unit(200, "feet")
  22956. },
  22957. {
  22958. name: "Megamacro",
  22959. height: math.unit(1000, "miles")
  22960. },
  22961. {
  22962. name: "Planetary",
  22963. height: math.unit(8000, "miles")
  22964. },
  22965. {
  22966. name: "True Layla",
  22967. height: math.unit(200000 * 7, "multiverses")
  22968. },
  22969. ]
  22970. ))
  22971. characterMakers.push(() => makeCharacter(
  22972. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22973. {
  22974. back: {
  22975. height: math.unit(10.5, "feet"),
  22976. weight: math.unit(800, "lb"),
  22977. name: "Back",
  22978. image: {
  22979. source: "./media/characters/knox/back.svg",
  22980. extra: 1486 / 1089,
  22981. bottom: 107 / 1601.4
  22982. }
  22983. },
  22984. side: {
  22985. height: math.unit(10.5, "feet"),
  22986. weight: math.unit(800, "lb"),
  22987. name: "Side",
  22988. image: {
  22989. source: "./media/characters/knox/side.svg",
  22990. extra: 244 / 218,
  22991. bottom: 14 / 260
  22992. }
  22993. },
  22994. },
  22995. [
  22996. {
  22997. name: "Compact",
  22998. height: math.unit(10.5, "feet"),
  22999. default: true
  23000. },
  23001. {
  23002. name: "Dynamax",
  23003. height: math.unit(210, "feet")
  23004. },
  23005. {
  23006. name: "Full Macro",
  23007. height: math.unit(850, "feet")
  23008. },
  23009. ]
  23010. ))
  23011. characterMakers.push(() => makeCharacter(
  23012. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23013. {
  23014. front: {
  23015. height: math.unit(6, "feet"),
  23016. weight: math.unit(152, "lb"),
  23017. name: "Front",
  23018. image: {
  23019. source: "./media/characters/shin-pikachu/front.svg",
  23020. extra: 1574 / 1480,
  23021. bottom: 53.3 / 1626
  23022. }
  23023. },
  23024. hand: {
  23025. height: math.unit(1.055, "feet"),
  23026. name: "Hand",
  23027. image: {
  23028. source: "./media/characters/shin-pikachu/hand.svg"
  23029. }
  23030. },
  23031. foot: {
  23032. height: math.unit(1.1, "feet"),
  23033. name: "Foot",
  23034. image: {
  23035. source: "./media/characters/shin-pikachu/foot.svg"
  23036. }
  23037. },
  23038. collar: {
  23039. height: math.unit(0.386, "feet"),
  23040. name: "Collar",
  23041. image: {
  23042. source: "./media/characters/shin-pikachu/collar.svg"
  23043. }
  23044. },
  23045. },
  23046. [
  23047. {
  23048. name: "Smallest",
  23049. height: math.unit(0.5, "inches")
  23050. },
  23051. {
  23052. name: "Micro",
  23053. height: math.unit(6, "inches")
  23054. },
  23055. {
  23056. name: "Normal",
  23057. height: math.unit(6, "feet"),
  23058. default: true
  23059. },
  23060. {
  23061. name: "Macro",
  23062. height: math.unit(150, "feet")
  23063. },
  23064. ]
  23065. ))
  23066. characterMakers.push(() => makeCharacter(
  23067. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23068. {
  23069. front: {
  23070. height: math.unit(28, "feet"),
  23071. weight: math.unit(10500, "lb"),
  23072. name: "Front",
  23073. image: {
  23074. source: "./media/characters/kayda/front.svg",
  23075. extra: 1536 / 1428,
  23076. bottom: 68.7 / 1603
  23077. }
  23078. },
  23079. back: {
  23080. height: math.unit(28, "feet"),
  23081. weight: math.unit(10500, "lb"),
  23082. name: "Back",
  23083. image: {
  23084. source: "./media/characters/kayda/back.svg",
  23085. extra: 1557 / 1464,
  23086. bottom: 39.5 / 1597.49
  23087. }
  23088. },
  23089. dick: {
  23090. height: math.unit(3.858, "feet"),
  23091. name: "Dick",
  23092. image: {
  23093. source: "./media/characters/kayda/dick.svg"
  23094. }
  23095. },
  23096. },
  23097. [
  23098. {
  23099. name: "Macro",
  23100. height: math.unit(28, "feet"),
  23101. default: true
  23102. },
  23103. ]
  23104. ))
  23105. characterMakers.push(() => makeCharacter(
  23106. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23107. {
  23108. front: {
  23109. height: math.unit(10 + 11 / 12, "feet"),
  23110. weight: math.unit(1400, "lb"),
  23111. name: "Front",
  23112. image: {
  23113. source: "./media/characters/brian/front.svg",
  23114. extra: 737 / 692,
  23115. bottom: 55.4 / 785
  23116. }
  23117. },
  23118. },
  23119. [
  23120. {
  23121. name: "Normal",
  23122. height: math.unit(10 + 11 / 12, "feet"),
  23123. default: true
  23124. },
  23125. ]
  23126. ))
  23127. characterMakers.push(() => makeCharacter(
  23128. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23129. {
  23130. front: {
  23131. height: math.unit(5 + 8 / 12, "feet"),
  23132. weight: math.unit(140, "lb"),
  23133. name: "Front",
  23134. image: {
  23135. source: "./media/characters/khemri/front.svg",
  23136. extra: 4780 / 4059,
  23137. bottom: 80.1 / 4859.25
  23138. }
  23139. },
  23140. },
  23141. [
  23142. {
  23143. name: "Micro",
  23144. height: math.unit(6, "inches")
  23145. },
  23146. {
  23147. name: "Normal",
  23148. height: math.unit(5 + 8 / 12, "feet"),
  23149. default: true
  23150. },
  23151. ]
  23152. ))
  23153. characterMakers.push(() => makeCharacter(
  23154. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23155. {
  23156. front: {
  23157. height: math.unit(13, "feet"),
  23158. weight: math.unit(1700, "lb"),
  23159. name: "Front",
  23160. image: {
  23161. source: "./media/characters/felix-braveheart/front.svg",
  23162. extra: 1222 / 1157,
  23163. bottom: 53.2 / 1280
  23164. }
  23165. },
  23166. back: {
  23167. height: math.unit(13, "feet"),
  23168. weight: math.unit(1700, "lb"),
  23169. name: "Back",
  23170. image: {
  23171. source: "./media/characters/felix-braveheart/back.svg",
  23172. extra: 1277 / 1203,
  23173. bottom: 50.2 / 1327
  23174. }
  23175. },
  23176. feral: {
  23177. height: math.unit(6, "feet"),
  23178. weight: math.unit(400, "lb"),
  23179. name: "Feral",
  23180. image: {
  23181. source: "./media/characters/felix-braveheart/feral.svg",
  23182. extra: 682 / 625,
  23183. bottom: 6.9 / 688
  23184. }
  23185. },
  23186. },
  23187. [
  23188. {
  23189. name: "Normal",
  23190. height: math.unit(13, "feet"),
  23191. default: true
  23192. },
  23193. ]
  23194. ))
  23195. characterMakers.push(() => makeCharacter(
  23196. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23197. {
  23198. side: {
  23199. height: math.unit(5 + 11 / 12, "feet"),
  23200. weight: math.unit(1400, "lb"),
  23201. name: "Side",
  23202. image: {
  23203. source: "./media/characters/shadow-blade/side.svg",
  23204. extra: 1726 / 1267,
  23205. bottom: 58.4 / 1785
  23206. }
  23207. },
  23208. },
  23209. [
  23210. {
  23211. name: "Normal",
  23212. height: math.unit(5 + 11 / 12, "feet"),
  23213. default: true
  23214. },
  23215. ]
  23216. ))
  23217. characterMakers.push(() => makeCharacter(
  23218. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23219. {
  23220. front: {
  23221. height: math.unit(1 + 6 / 12, "feet"),
  23222. weight: math.unit(25, "lb"),
  23223. name: "Front",
  23224. image: {
  23225. source: "./media/characters/karla-halldor/front.svg",
  23226. extra: 1459 / 1383,
  23227. bottom: 12 / 1472
  23228. }
  23229. },
  23230. },
  23231. [
  23232. {
  23233. name: "Normal",
  23234. height: math.unit(1 + 6 / 12, "feet"),
  23235. default: true
  23236. },
  23237. ]
  23238. ))
  23239. characterMakers.push(() => makeCharacter(
  23240. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23241. {
  23242. front: {
  23243. height: math.unit(6 + 2 / 12, "feet"),
  23244. weight: math.unit(160, "lb"),
  23245. name: "Front",
  23246. image: {
  23247. source: "./media/characters/ariam/front.svg",
  23248. extra: 714 / 617,
  23249. bottom: 23.4 / 737,
  23250. }
  23251. },
  23252. squatting: {
  23253. height: math.unit(4.1, "feet"),
  23254. weight: math.unit(160, "lb"),
  23255. name: "Squatting",
  23256. image: {
  23257. source: "./media/characters/ariam/squatting.svg",
  23258. extra: 2617 / 2112,
  23259. bottom: 61.2 / 2681,
  23260. }
  23261. },
  23262. },
  23263. [
  23264. {
  23265. name: "Normal",
  23266. height: math.unit(6 + 2 / 12, "feet"),
  23267. default: true
  23268. },
  23269. {
  23270. name: "Normal+",
  23271. height: math.unit(4, "meters")
  23272. },
  23273. {
  23274. name: "Macro",
  23275. height: math.unit(50, "meters")
  23276. },
  23277. {
  23278. name: "Macro+",
  23279. height: math.unit(100, "meters")
  23280. },
  23281. {
  23282. name: "Megamacro",
  23283. height: math.unit(20, "km")
  23284. },
  23285. ]
  23286. ))
  23287. characterMakers.push(() => makeCharacter(
  23288. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23289. {
  23290. front: {
  23291. height: math.unit(1.67, "meters"),
  23292. weight: math.unit(140, "lb"),
  23293. name: "Front",
  23294. image: {
  23295. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23296. extra: 438 / 410,
  23297. bottom: 0.75 / 439
  23298. }
  23299. },
  23300. },
  23301. [
  23302. {
  23303. name: "Shrunken",
  23304. height: math.unit(7.6, "cm")
  23305. },
  23306. {
  23307. name: "Human Scale",
  23308. height: math.unit(1.67, "meters")
  23309. },
  23310. {
  23311. name: "Wolxi Scale",
  23312. height: math.unit(36.7, "meters"),
  23313. default: true
  23314. },
  23315. ]
  23316. ))
  23317. characterMakers.push(() => makeCharacter(
  23318. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23319. {
  23320. front: {
  23321. height: math.unit(1.73, "meters"),
  23322. weight: math.unit(240, "lb"),
  23323. name: "Front",
  23324. image: {
  23325. source: "./media/characters/izue-two-mothers/front.svg",
  23326. extra: 469 / 437,
  23327. bottom: 1.24 / 470.6
  23328. }
  23329. },
  23330. },
  23331. [
  23332. {
  23333. name: "Shrunken",
  23334. height: math.unit(7.86, "cm")
  23335. },
  23336. {
  23337. name: "Human Scale",
  23338. height: math.unit(1.73, "meters")
  23339. },
  23340. {
  23341. name: "Wolxi Scale",
  23342. height: math.unit(38, "meters"),
  23343. default: true
  23344. },
  23345. ]
  23346. ))
  23347. characterMakers.push(() => makeCharacter(
  23348. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23349. {
  23350. front: {
  23351. height: math.unit(1.55, "meters"),
  23352. weight: math.unit(120, "lb"),
  23353. name: "Front",
  23354. image: {
  23355. source: "./media/characters/teeku-love-shack/front.svg",
  23356. extra: 387 / 362,
  23357. bottom: 1.51 / 388
  23358. }
  23359. },
  23360. },
  23361. [
  23362. {
  23363. name: "Shrunken",
  23364. height: math.unit(7, "cm")
  23365. },
  23366. {
  23367. name: "Human Scale",
  23368. height: math.unit(1.55, "meters")
  23369. },
  23370. {
  23371. name: "Wolxi Scale",
  23372. height: math.unit(34.1, "meters"),
  23373. default: true
  23374. },
  23375. ]
  23376. ))
  23377. characterMakers.push(() => makeCharacter(
  23378. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23379. {
  23380. front: {
  23381. height: math.unit(1.83, "meters"),
  23382. weight: math.unit(135, "lb"),
  23383. name: "Front",
  23384. image: {
  23385. source: "./media/characters/dejma-the-red/front.svg",
  23386. extra: 480 / 458,
  23387. bottom: 1.8 / 482
  23388. }
  23389. },
  23390. },
  23391. [
  23392. {
  23393. name: "Shrunken",
  23394. height: math.unit(8.3, "cm")
  23395. },
  23396. {
  23397. name: "Human Scale",
  23398. height: math.unit(1.83, "meters")
  23399. },
  23400. {
  23401. name: "Wolxi Scale",
  23402. height: math.unit(40, "meters"),
  23403. default: true
  23404. },
  23405. ]
  23406. ))
  23407. characterMakers.push(() => makeCharacter(
  23408. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23409. {
  23410. front: {
  23411. height: math.unit(1.78, "meters"),
  23412. weight: math.unit(65, "kg"),
  23413. name: "Front",
  23414. image: {
  23415. source: "./media/characters/aki/front.svg",
  23416. extra: 452 / 415
  23417. }
  23418. },
  23419. frontNsfw: {
  23420. height: math.unit(1.78, "meters"),
  23421. weight: math.unit(65, "kg"),
  23422. name: "Front (NSFW)",
  23423. image: {
  23424. source: "./media/characters/aki/front-nsfw.svg",
  23425. extra: 452 / 415
  23426. }
  23427. },
  23428. back: {
  23429. height: math.unit(1.78, "meters"),
  23430. weight: math.unit(65, "kg"),
  23431. name: "Back",
  23432. image: {
  23433. source: "./media/characters/aki/back.svg",
  23434. extra: 452 / 415
  23435. }
  23436. },
  23437. rump: {
  23438. height: math.unit(2.05, "feet"),
  23439. name: "Rump",
  23440. image: {
  23441. source: "./media/characters/aki/rump.svg"
  23442. }
  23443. },
  23444. dick: {
  23445. height: math.unit(0.95, "feet"),
  23446. name: "Dick",
  23447. image: {
  23448. source: "./media/characters/aki/dick.svg"
  23449. }
  23450. },
  23451. },
  23452. [
  23453. {
  23454. name: "Micro",
  23455. height: math.unit(15, "cm")
  23456. },
  23457. {
  23458. name: "Normal",
  23459. height: math.unit(178, "cm"),
  23460. default: true
  23461. },
  23462. {
  23463. name: "Macro",
  23464. height: math.unit(214, "m")
  23465. },
  23466. {
  23467. name: "Macro+",
  23468. height: math.unit(534, "m")
  23469. },
  23470. ]
  23471. ))
  23472. characterMakers.push(() => makeCharacter(
  23473. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23474. {
  23475. front: {
  23476. height: math.unit(5 + 5 / 12, "feet"),
  23477. weight: math.unit(120, "lb"),
  23478. name: "Front",
  23479. image: {
  23480. source: "./media/characters/ari/front.svg",
  23481. extra: 714.5 / 682,
  23482. bottom: 8 / 722.5
  23483. }
  23484. },
  23485. },
  23486. [
  23487. {
  23488. name: "Normal",
  23489. height: math.unit(5 + 5 / 12, "feet")
  23490. },
  23491. {
  23492. name: "Macro",
  23493. height: math.unit(100, "feet"),
  23494. default: true
  23495. },
  23496. {
  23497. name: "Megamacro",
  23498. height: math.unit(100, "miles")
  23499. },
  23500. {
  23501. name: "Gigamacro",
  23502. height: math.unit(80000, "miles")
  23503. },
  23504. ]
  23505. ))
  23506. characterMakers.push(() => makeCharacter(
  23507. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23508. {
  23509. side: {
  23510. height: math.unit(9, "feet"),
  23511. weight: math.unit(400, "kg"),
  23512. name: "Side",
  23513. image: {
  23514. source: "./media/characters/bolt/side.svg",
  23515. extra: 1126 / 896,
  23516. bottom: 60 / 1187.3,
  23517. }
  23518. },
  23519. },
  23520. [
  23521. {
  23522. name: "Micro",
  23523. height: math.unit(5, "inches")
  23524. },
  23525. {
  23526. name: "Normal",
  23527. height: math.unit(9, "feet"),
  23528. default: true
  23529. },
  23530. {
  23531. name: "Macro",
  23532. height: math.unit(700, "feet")
  23533. },
  23534. {
  23535. name: "Max Size",
  23536. height: math.unit(1.52e22, "yottameters")
  23537. },
  23538. ]
  23539. ))
  23540. characterMakers.push(() => makeCharacter(
  23541. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23542. {
  23543. front: {
  23544. height: math.unit(4.53, "meters"),
  23545. weight: math.unit(3, "tons"),
  23546. name: "Front",
  23547. image: {
  23548. source: "./media/characters/draekon-sylviar/front.svg",
  23549. extra: 1228 / 1068,
  23550. bottom: 41 / 1270
  23551. }
  23552. },
  23553. tail: {
  23554. height: math.unit(1.772, "meter"),
  23555. name: "Tail",
  23556. image: {
  23557. source: "./media/characters/draekon-sylviar/tail.svg"
  23558. }
  23559. },
  23560. head: {
  23561. height: math.unit(1.331, "meter"),
  23562. name: "Head",
  23563. image: {
  23564. source: "./media/characters/draekon-sylviar/head.svg"
  23565. }
  23566. },
  23567. hand: {
  23568. height: math.unit(0.564, "meter"),
  23569. name: "Hand",
  23570. image: {
  23571. source: "./media/characters/draekon-sylviar/hand.svg"
  23572. }
  23573. },
  23574. foot: {
  23575. height: math.unit(0.621, "meter"),
  23576. name: "Foot",
  23577. image: {
  23578. source: "./media/characters/draekon-sylviar/foot.svg",
  23579. bottom: 32 / 324
  23580. }
  23581. },
  23582. dick: {
  23583. height: math.unit(61, "cm"),
  23584. name: "Dick",
  23585. image: {
  23586. source: "./media/characters/draekon-sylviar/dick.svg"
  23587. }
  23588. },
  23589. dickseparated: {
  23590. height: math.unit(61, "cm"),
  23591. name: "Dick-separated",
  23592. image: {
  23593. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23594. }
  23595. },
  23596. },
  23597. [
  23598. {
  23599. name: "Small",
  23600. height: math.unit(4.53 / 2, "meters"),
  23601. default: true
  23602. },
  23603. {
  23604. name: "Normal",
  23605. height: math.unit(4.53, "meters"),
  23606. default: true
  23607. },
  23608. {
  23609. name: "Large",
  23610. height: math.unit(4.53 * 2, "meters"),
  23611. },
  23612. ]
  23613. ))
  23614. characterMakers.push(() => makeCharacter(
  23615. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23616. {
  23617. front: {
  23618. height: math.unit(6 + 2 / 12, "feet"),
  23619. weight: math.unit(180, "lb"),
  23620. name: "Front",
  23621. image: {
  23622. source: "./media/characters/brawler/front.svg",
  23623. extra: 3301 / 3027,
  23624. bottom: 138 / 3439
  23625. }
  23626. },
  23627. },
  23628. [
  23629. {
  23630. name: "Normal",
  23631. height: math.unit(6 + 2 / 12, "feet"),
  23632. default: true
  23633. },
  23634. ]
  23635. ))
  23636. characterMakers.push(() => makeCharacter(
  23637. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23638. {
  23639. front: {
  23640. height: math.unit(11, "feet"),
  23641. weight: math.unit(1000, "lb"),
  23642. name: "Front",
  23643. image: {
  23644. source: "./media/characters/alex/front.svg",
  23645. bottom: 44.5 / 620
  23646. }
  23647. },
  23648. },
  23649. [
  23650. {
  23651. name: "Micro",
  23652. height: math.unit(5, "inches")
  23653. },
  23654. {
  23655. name: "Normal",
  23656. height: math.unit(11, "feet"),
  23657. default: true
  23658. },
  23659. {
  23660. name: "Macro",
  23661. height: math.unit(9.5e9, "feet")
  23662. },
  23663. {
  23664. name: "Max Size",
  23665. height: math.unit(1.4e283, "yottameters")
  23666. },
  23667. ]
  23668. ))
  23669. characterMakers.push(() => makeCharacter(
  23670. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23671. {
  23672. female: {
  23673. height: math.unit(29.9, "m"),
  23674. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23675. name: "Female",
  23676. image: {
  23677. source: "./media/characters/zenari/female.svg",
  23678. extra: 3281.6 / 3217,
  23679. bottom: 72.2 / 3353
  23680. }
  23681. },
  23682. male: {
  23683. height: math.unit(27.7, "m"),
  23684. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23685. name: "Male",
  23686. image: {
  23687. source: "./media/characters/zenari/male.svg",
  23688. extra: 3008 / 2991,
  23689. bottom: 54.6 / 3069
  23690. }
  23691. },
  23692. },
  23693. [
  23694. {
  23695. name: "Macro",
  23696. height: math.unit(29.7, "meters"),
  23697. default: true
  23698. },
  23699. ]
  23700. ))
  23701. characterMakers.push(() => makeCharacter(
  23702. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23703. {
  23704. female: {
  23705. height: math.unit(23.8, "m"),
  23706. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23707. name: "Female",
  23708. image: {
  23709. source: "./media/characters/mactarian/female.svg",
  23710. extra: 2662 / 2569,
  23711. bottom: 73 / 2736
  23712. }
  23713. },
  23714. male: {
  23715. height: math.unit(23.8, "m"),
  23716. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23717. name: "Male",
  23718. image: {
  23719. source: "./media/characters/mactarian/male.svg",
  23720. extra: 2673 / 2600,
  23721. bottom: 76 / 2750
  23722. }
  23723. },
  23724. },
  23725. [
  23726. {
  23727. name: "Macro",
  23728. height: math.unit(23.8, "meters"),
  23729. default: true
  23730. },
  23731. ]
  23732. ))
  23733. characterMakers.push(() => makeCharacter(
  23734. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23735. {
  23736. female: {
  23737. height: math.unit(19.3, "m"),
  23738. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23739. name: "Female",
  23740. image: {
  23741. source: "./media/characters/umok/female.svg",
  23742. extra: 2186 / 2078,
  23743. bottom: 87 / 2277
  23744. }
  23745. },
  23746. male: {
  23747. height: math.unit(19.5, "m"),
  23748. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23749. name: "Male",
  23750. image: {
  23751. source: "./media/characters/umok/male.svg",
  23752. extra: 2233 / 2140,
  23753. bottom: 24.4 / 2258
  23754. }
  23755. },
  23756. },
  23757. [
  23758. {
  23759. name: "Macro",
  23760. height: math.unit(19.3, "meters"),
  23761. default: true
  23762. },
  23763. ]
  23764. ))
  23765. characterMakers.push(() => makeCharacter(
  23766. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23767. {
  23768. female: {
  23769. height: math.unit(26.15, "m"),
  23770. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23771. name: "Female",
  23772. image: {
  23773. source: "./media/characters/joraxian/female.svg",
  23774. extra: 2912 / 2824,
  23775. bottom: 36 / 2956
  23776. }
  23777. },
  23778. male: {
  23779. height: math.unit(25.4, "m"),
  23780. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23781. name: "Male",
  23782. image: {
  23783. source: "./media/characters/joraxian/male.svg",
  23784. extra: 2877 / 2721,
  23785. bottom: 82 / 2967
  23786. }
  23787. },
  23788. },
  23789. [
  23790. {
  23791. name: "Macro",
  23792. height: math.unit(26.15, "meters"),
  23793. default: true
  23794. },
  23795. ]
  23796. ))
  23797. characterMakers.push(() => makeCharacter(
  23798. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23799. {
  23800. female: {
  23801. height: math.unit(21.6, "m"),
  23802. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23803. name: "Female",
  23804. image: {
  23805. source: "./media/characters/sthara/female.svg",
  23806. extra: 2516 / 2347,
  23807. bottom: 21.5 / 2537
  23808. }
  23809. },
  23810. male: {
  23811. height: math.unit(24, "m"),
  23812. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23813. name: "Male",
  23814. image: {
  23815. source: "./media/characters/sthara/male.svg",
  23816. extra: 2732 / 2607,
  23817. bottom: 23 / 2732
  23818. }
  23819. },
  23820. },
  23821. [
  23822. {
  23823. name: "Macro",
  23824. height: math.unit(21.6, "meters"),
  23825. default: true
  23826. },
  23827. ]
  23828. ))
  23829. characterMakers.push(() => makeCharacter(
  23830. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23831. {
  23832. front: {
  23833. height: math.unit(6 + 4 / 12, "feet"),
  23834. weight: math.unit(175, "lb"),
  23835. name: "Front",
  23836. image: {
  23837. source: "./media/characters/luka-bryzant/front.svg",
  23838. extra: 311 / 289,
  23839. bottom: 4 / 315
  23840. }
  23841. },
  23842. back: {
  23843. height: math.unit(6 + 4 / 12, "feet"),
  23844. weight: math.unit(175, "lb"),
  23845. name: "Back",
  23846. image: {
  23847. source: "./media/characters/luka-bryzant/back.svg",
  23848. extra: 311 / 289,
  23849. bottom: 3.8 / 313.7
  23850. }
  23851. },
  23852. },
  23853. [
  23854. {
  23855. name: "Micro",
  23856. height: math.unit(10, "inches")
  23857. },
  23858. {
  23859. name: "Normal",
  23860. height: math.unit(6 + 4 / 12, "feet"),
  23861. default: true
  23862. },
  23863. {
  23864. name: "Large",
  23865. height: math.unit(12, "feet")
  23866. },
  23867. ]
  23868. ))
  23869. characterMakers.push(() => makeCharacter(
  23870. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23871. {
  23872. front: {
  23873. height: math.unit(5 + 7 / 12, "feet"),
  23874. weight: math.unit(185, "lb"),
  23875. name: "Front",
  23876. image: {
  23877. source: "./media/characters/aman-aquila/front.svg",
  23878. extra: 1013 / 976,
  23879. bottom: 45.6 / 1057
  23880. }
  23881. },
  23882. side: {
  23883. height: math.unit(5 + 7 / 12, "feet"),
  23884. weight: math.unit(185, "lb"),
  23885. name: "Side",
  23886. image: {
  23887. source: "./media/characters/aman-aquila/side.svg",
  23888. extra: 1054 / 1011,
  23889. bottom: 15 / 1070
  23890. }
  23891. },
  23892. back: {
  23893. height: math.unit(5 + 7 / 12, "feet"),
  23894. weight: math.unit(185, "lb"),
  23895. name: "Back",
  23896. image: {
  23897. source: "./media/characters/aman-aquila/back.svg",
  23898. extra: 1026 / 970,
  23899. bottom: 12 / 1039
  23900. }
  23901. },
  23902. head: {
  23903. height: math.unit(1.211, "feet"),
  23904. name: "Head",
  23905. image: {
  23906. source: "./media/characters/aman-aquila/head.svg",
  23907. }
  23908. },
  23909. },
  23910. [
  23911. {
  23912. name: "Minimicro",
  23913. height: math.unit(0.057, "inches")
  23914. },
  23915. {
  23916. name: "Micro",
  23917. height: math.unit(7, "inches")
  23918. },
  23919. {
  23920. name: "Mini",
  23921. height: math.unit(3 + 7 / 12, "feet")
  23922. },
  23923. {
  23924. name: "Normal",
  23925. height: math.unit(5 + 7 / 12, "feet"),
  23926. default: true
  23927. },
  23928. {
  23929. name: "Macro",
  23930. height: math.unit(157 + 7 / 12, "feet")
  23931. },
  23932. {
  23933. name: "Megamacro",
  23934. height: math.unit(1557 + 7 / 12, "feet")
  23935. },
  23936. {
  23937. name: "Gigamacro",
  23938. height: math.unit(15557 + 7 / 12, "feet")
  23939. },
  23940. ]
  23941. ))
  23942. characterMakers.push(() => makeCharacter(
  23943. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23944. {
  23945. front: {
  23946. height: math.unit(3 + 2 / 12, "inches"),
  23947. weight: math.unit(0.3, "ounces"),
  23948. name: "Front",
  23949. image: {
  23950. source: "./media/characters/hiphae/front.svg",
  23951. extra: 1931 / 1683,
  23952. bottom: 24 / 1955
  23953. }
  23954. },
  23955. },
  23956. [
  23957. {
  23958. name: "Normal",
  23959. height: math.unit(3 + 1 / 2, "inches"),
  23960. default: true
  23961. },
  23962. ]
  23963. ))
  23964. characterMakers.push(() => makeCharacter(
  23965. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23966. {
  23967. front: {
  23968. height: math.unit(5 + 10 / 12, "feet"),
  23969. weight: math.unit(165, "lb"),
  23970. name: "Front",
  23971. image: {
  23972. source: "./media/characters/nicky/front.svg",
  23973. extra: 3144 / 2886,
  23974. bottom: 45.6 / 3192
  23975. }
  23976. },
  23977. back: {
  23978. height: math.unit(5 + 10 / 12, "feet"),
  23979. weight: math.unit(165, "lb"),
  23980. name: "Back",
  23981. image: {
  23982. source: "./media/characters/nicky/back.svg",
  23983. extra: 3055 / 2804,
  23984. bottom: 28.4 / 3087
  23985. }
  23986. },
  23987. frontclothed: {
  23988. height: math.unit(5 + 10 / 12, "feet"),
  23989. weight: math.unit(165, "lb"),
  23990. name: "Front-clothed",
  23991. image: {
  23992. source: "./media/characters/nicky/front-clothed.svg",
  23993. extra: 3184.9 / 2926.9,
  23994. bottom: 86.5 / 3239.9
  23995. }
  23996. },
  23997. foot: {
  23998. height: math.unit(1.16, "feet"),
  23999. name: "Foot",
  24000. image: {
  24001. source: "./media/characters/nicky/foot.svg"
  24002. }
  24003. },
  24004. feet: {
  24005. height: math.unit(1.34, "feet"),
  24006. name: "Feet",
  24007. image: {
  24008. source: "./media/characters/nicky/feet.svg"
  24009. }
  24010. },
  24011. maw: {
  24012. height: math.unit(0.9, "feet"),
  24013. name: "Maw",
  24014. image: {
  24015. source: "./media/characters/nicky/maw.svg"
  24016. }
  24017. },
  24018. },
  24019. [
  24020. {
  24021. name: "Normal",
  24022. height: math.unit(5 + 10 / 12, "feet"),
  24023. default: true
  24024. },
  24025. {
  24026. name: "Macro",
  24027. height: math.unit(60, "feet")
  24028. },
  24029. {
  24030. name: "Megamacro",
  24031. height: math.unit(1, "mile")
  24032. },
  24033. ]
  24034. ))
  24035. characterMakers.push(() => makeCharacter(
  24036. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24037. {
  24038. side: {
  24039. height: math.unit(10, "feet"),
  24040. weight: math.unit(600, "lb"),
  24041. name: "Side",
  24042. image: {
  24043. source: "./media/characters/blair/side.svg",
  24044. bottom: 16.6 / 475,
  24045. extra: 458 / 431
  24046. }
  24047. },
  24048. },
  24049. [
  24050. {
  24051. name: "Micro",
  24052. height: math.unit(8, "inches")
  24053. },
  24054. {
  24055. name: "Normal",
  24056. height: math.unit(10, "feet"),
  24057. default: true
  24058. },
  24059. {
  24060. name: "Macro",
  24061. height: math.unit(180, "feet")
  24062. },
  24063. ]
  24064. ))
  24065. characterMakers.push(() => makeCharacter(
  24066. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24067. {
  24068. front: {
  24069. height: math.unit(5 + 4 / 12, "feet"),
  24070. weight: math.unit(125, "lb"),
  24071. name: "Front",
  24072. image: {
  24073. source: "./media/characters/fisher/front.svg",
  24074. extra: 444 / 390,
  24075. bottom: 2 / 444.8
  24076. }
  24077. },
  24078. },
  24079. [
  24080. {
  24081. name: "Micro",
  24082. height: math.unit(4, "inches")
  24083. },
  24084. {
  24085. name: "Normal",
  24086. height: math.unit(5 + 4 / 12, "feet"),
  24087. default: true
  24088. },
  24089. {
  24090. name: "Macro",
  24091. height: math.unit(100, "feet")
  24092. },
  24093. ]
  24094. ))
  24095. characterMakers.push(() => makeCharacter(
  24096. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24097. {
  24098. front: {
  24099. height: math.unit(6.71, "feet"),
  24100. weight: math.unit(200, "lb"),
  24101. capacity: math.unit(1000000, "people"),
  24102. name: "Front",
  24103. image: {
  24104. source: "./media/characters/gliss/front.svg",
  24105. extra: 2347 / 2231,
  24106. bottom: 113 / 2462
  24107. }
  24108. },
  24109. hammerspaceSize: {
  24110. height: math.unit(6.71 * 717, "feet"),
  24111. weight: math.unit(200, "lb"),
  24112. capacity: math.unit(1000000, "people"),
  24113. name: "Hammerspace Size",
  24114. image: {
  24115. source: "./media/characters/gliss/front.svg",
  24116. extra: 2347 / 2231,
  24117. bottom: 113 / 2462
  24118. }
  24119. },
  24120. },
  24121. [
  24122. {
  24123. name: "Normal",
  24124. height: math.unit(6.71, "feet"),
  24125. default: true
  24126. },
  24127. ]
  24128. ))
  24129. characterMakers.push(() => makeCharacter(
  24130. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24131. {
  24132. side: {
  24133. height: math.unit(1.44, "m"),
  24134. weight: math.unit(80, "kg"),
  24135. name: "Side",
  24136. image: {
  24137. source: "./media/characters/dune-anderson/side.svg",
  24138. bottom: 49 / 1426
  24139. }
  24140. },
  24141. },
  24142. [
  24143. {
  24144. name: "Wolf-sized",
  24145. height: math.unit(1.44, "meters")
  24146. },
  24147. {
  24148. name: "Normal",
  24149. height: math.unit(5.05, "meters"),
  24150. default: true
  24151. },
  24152. {
  24153. name: "Big",
  24154. height: math.unit(14.4, "meters")
  24155. },
  24156. {
  24157. name: "Huge",
  24158. height: math.unit(144, "meters")
  24159. },
  24160. ]
  24161. ))
  24162. characterMakers.push(() => makeCharacter(
  24163. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24164. {
  24165. front: {
  24166. height: math.unit(7, "feet"),
  24167. weight: math.unit(425, "lb"),
  24168. name: "Front",
  24169. image: {
  24170. source: "./media/characters/hind/front.svg",
  24171. extra: 2091 / 1860,
  24172. bottom: 129 / 2220
  24173. }
  24174. },
  24175. back: {
  24176. height: math.unit(7, "feet"),
  24177. weight: math.unit(425, "lb"),
  24178. name: "Back",
  24179. image: {
  24180. source: "./media/characters/hind/back.svg",
  24181. extra: 2091 / 1860,
  24182. bottom: 24.6 / 2309
  24183. }
  24184. },
  24185. tail: {
  24186. height: math.unit(2.8, "feet"),
  24187. name: "Tail",
  24188. image: {
  24189. source: "./media/characters/hind/tail.svg"
  24190. }
  24191. },
  24192. head: {
  24193. height: math.unit(2.55, "feet"),
  24194. name: "Head",
  24195. image: {
  24196. source: "./media/characters/hind/head.svg"
  24197. }
  24198. },
  24199. },
  24200. [
  24201. {
  24202. name: "XS",
  24203. height: math.unit(0.7, "feet")
  24204. },
  24205. {
  24206. name: "Normal",
  24207. height: math.unit(7, "feet"),
  24208. default: true
  24209. },
  24210. {
  24211. name: "XL",
  24212. height: math.unit(70, "feet")
  24213. },
  24214. ]
  24215. ))
  24216. characterMakers.push(() => makeCharacter(
  24217. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24218. {
  24219. front: {
  24220. height: math.unit(6, "feet"),
  24221. weight: math.unit(150, "lb"),
  24222. name: "Front",
  24223. image: {
  24224. source: "./media/characters/dylan-skaven/front.svg",
  24225. extra: 2318 / 2063,
  24226. bottom: 93.4 / 2410
  24227. }
  24228. },
  24229. },
  24230. [
  24231. {
  24232. name: "Nano",
  24233. height: math.unit(1, "mm")
  24234. },
  24235. {
  24236. name: "Micro",
  24237. height: math.unit(1, "cm")
  24238. },
  24239. {
  24240. name: "Normal",
  24241. height: math.unit(2.1, "meters"),
  24242. default: true
  24243. },
  24244. ]
  24245. ))
  24246. characterMakers.push(() => makeCharacter(
  24247. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24248. {
  24249. front: {
  24250. height: math.unit(7 + 5 / 12, "feet"),
  24251. weight: math.unit(357, "lb"),
  24252. name: "Front",
  24253. image: {
  24254. source: "./media/characters/solex-draconov/front.svg",
  24255. extra: 1993 / 1865,
  24256. bottom: 117 / 2111
  24257. }
  24258. },
  24259. },
  24260. [
  24261. {
  24262. name: "Natural Height",
  24263. height: math.unit(7 + 5 / 12, "feet"),
  24264. default: true
  24265. },
  24266. {
  24267. name: "Macro",
  24268. height: math.unit(350, "feet")
  24269. },
  24270. {
  24271. name: "Macro+",
  24272. height: math.unit(1000, "feet")
  24273. },
  24274. {
  24275. name: "Megamacro",
  24276. height: math.unit(20, "km")
  24277. },
  24278. {
  24279. name: "Megamacro+",
  24280. height: math.unit(1000, "km")
  24281. },
  24282. {
  24283. name: "Gigamacro",
  24284. height: math.unit(2.5, "Gm")
  24285. },
  24286. {
  24287. name: "Teramacro",
  24288. height: math.unit(15, "Tm")
  24289. },
  24290. {
  24291. name: "Galactic",
  24292. height: math.unit(30, "Zm")
  24293. },
  24294. {
  24295. name: "Universal",
  24296. height: math.unit(21000, "Ym")
  24297. },
  24298. {
  24299. name: "Omniversal",
  24300. height: math.unit(9.861e50, "Ym")
  24301. },
  24302. {
  24303. name: "Existential",
  24304. height: math.unit(1e300, "meters")
  24305. },
  24306. ]
  24307. ))
  24308. characterMakers.push(() => makeCharacter(
  24309. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24310. {
  24311. side: {
  24312. height: math.unit(25, "feet"),
  24313. weight: math.unit(90000, "lb"),
  24314. name: "Side",
  24315. image: {
  24316. source: "./media/characters/mandarax/side.svg",
  24317. extra: 614 / 332,
  24318. bottom: 55 / 630
  24319. }
  24320. },
  24321. head: {
  24322. height: math.unit(11.4, "feet"),
  24323. name: "Head",
  24324. image: {
  24325. source: "./media/characters/mandarax/head.svg"
  24326. }
  24327. },
  24328. belly: {
  24329. height: math.unit(33, "feet"),
  24330. name: "Belly",
  24331. capacity: math.unit(500, "people"),
  24332. image: {
  24333. source: "./media/characters/mandarax/belly.svg"
  24334. }
  24335. },
  24336. dick: {
  24337. height: math.unit(8.46, "feet"),
  24338. name: "Dick",
  24339. image: {
  24340. source: "./media/characters/mandarax/dick.svg"
  24341. }
  24342. },
  24343. top: {
  24344. height: math.unit(28, "meters"),
  24345. name: "Top",
  24346. image: {
  24347. source: "./media/characters/mandarax/top.svg"
  24348. }
  24349. },
  24350. },
  24351. [
  24352. {
  24353. name: "Normal",
  24354. height: math.unit(25, "feet"),
  24355. default: true
  24356. },
  24357. ]
  24358. ))
  24359. characterMakers.push(() => makeCharacter(
  24360. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24361. {
  24362. front: {
  24363. height: math.unit(5, "feet"),
  24364. weight: math.unit(90, "lb"),
  24365. name: "Front",
  24366. image: {
  24367. source: "./media/characters/pixil/front.svg",
  24368. extra: 2000 / 1618,
  24369. bottom: 12.3 / 2011
  24370. }
  24371. },
  24372. },
  24373. [
  24374. {
  24375. name: "Normal",
  24376. height: math.unit(5, "feet"),
  24377. default: true
  24378. },
  24379. {
  24380. name: "Megamacro",
  24381. height: math.unit(10, "miles"),
  24382. },
  24383. ]
  24384. ))
  24385. characterMakers.push(() => makeCharacter(
  24386. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24387. {
  24388. front: {
  24389. height: math.unit(7 + 2 / 12, "feet"),
  24390. weight: math.unit(200, "lb"),
  24391. name: "Front",
  24392. image: {
  24393. source: "./media/characters/angel/front.svg",
  24394. extra: 1830 / 1737,
  24395. bottom: 22.6 / 1854,
  24396. }
  24397. },
  24398. },
  24399. [
  24400. {
  24401. name: "Normal",
  24402. height: math.unit(7 + 2 / 12, "feet"),
  24403. default: true
  24404. },
  24405. {
  24406. name: "Macro",
  24407. height: math.unit(1000, "feet")
  24408. },
  24409. {
  24410. name: "Megamacro",
  24411. height: math.unit(2, "miles")
  24412. },
  24413. {
  24414. name: "Gigamacro",
  24415. height: math.unit(20, "earths")
  24416. },
  24417. ]
  24418. ))
  24419. characterMakers.push(() => makeCharacter(
  24420. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24421. {
  24422. front: {
  24423. height: math.unit(5, "feet"),
  24424. weight: math.unit(180, "lb"),
  24425. name: "Front",
  24426. image: {
  24427. source: "./media/characters/mekana/front.svg",
  24428. extra: 1671 / 1605,
  24429. bottom: 3.5 / 1691
  24430. }
  24431. },
  24432. side: {
  24433. height: math.unit(5, "feet"),
  24434. weight: math.unit(180, "lb"),
  24435. name: "Side",
  24436. image: {
  24437. source: "./media/characters/mekana/side.svg",
  24438. extra: 1671 / 1605,
  24439. bottom: 3.5 / 1691
  24440. }
  24441. },
  24442. back: {
  24443. height: math.unit(5, "feet"),
  24444. weight: math.unit(180, "lb"),
  24445. name: "Back",
  24446. image: {
  24447. source: "./media/characters/mekana/back.svg",
  24448. extra: 1671 / 1605,
  24449. bottom: 3.5 / 1691
  24450. }
  24451. },
  24452. },
  24453. [
  24454. {
  24455. name: "Normal",
  24456. height: math.unit(5, "feet"),
  24457. default: true
  24458. },
  24459. ]
  24460. ))
  24461. characterMakers.push(() => makeCharacter(
  24462. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24463. {
  24464. front: {
  24465. height: math.unit(4 + 6 / 12, "feet"),
  24466. weight: math.unit(80, "lb"),
  24467. name: "Front",
  24468. image: {
  24469. source: "./media/characters/pixie/front.svg",
  24470. extra: 1924 / 1825,
  24471. bottom: 22.4 / 1946
  24472. }
  24473. },
  24474. },
  24475. [
  24476. {
  24477. name: "Normal",
  24478. height: math.unit(4 + 6 / 12, "feet"),
  24479. default: true
  24480. },
  24481. {
  24482. name: "Macro",
  24483. height: math.unit(40, "feet")
  24484. },
  24485. ]
  24486. ))
  24487. characterMakers.push(() => makeCharacter(
  24488. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24489. {
  24490. front: {
  24491. height: math.unit(2.1, "meters"),
  24492. weight: math.unit(200, "lb"),
  24493. name: "Front",
  24494. image: {
  24495. source: "./media/characters/the-lascivious/front.svg",
  24496. extra: 1 / 0.893,
  24497. bottom: 3.5 / 573.7
  24498. }
  24499. },
  24500. },
  24501. [
  24502. {
  24503. name: "Human Scale",
  24504. height: math.unit(2.1, "meters")
  24505. },
  24506. {
  24507. name: "Wolxi Scale",
  24508. height: math.unit(46.2, "m"),
  24509. default: true
  24510. },
  24511. {
  24512. name: "Boinker of Buildings",
  24513. height: math.unit(10, "km")
  24514. },
  24515. {
  24516. name: "Shagger of Skyscrapers",
  24517. height: math.unit(40, "km")
  24518. },
  24519. {
  24520. name: "Banger of Boroughs",
  24521. height: math.unit(4000, "km")
  24522. },
  24523. {
  24524. name: "Screwer of States",
  24525. height: math.unit(100000, "km")
  24526. },
  24527. {
  24528. name: "Pounder of Planets",
  24529. height: math.unit(2000000, "km")
  24530. },
  24531. ]
  24532. ))
  24533. characterMakers.push(() => makeCharacter(
  24534. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24535. {
  24536. front: {
  24537. height: math.unit(6, "feet"),
  24538. weight: math.unit(150, "lb"),
  24539. name: "Front",
  24540. image: {
  24541. source: "./media/characters/aj/front.svg",
  24542. extra: 2039 / 1562,
  24543. bottom: 40 / 2079
  24544. }
  24545. },
  24546. },
  24547. [
  24548. {
  24549. name: "Normal",
  24550. height: math.unit(11 + 6 / 12, "feet"),
  24551. default: true
  24552. },
  24553. {
  24554. name: "Megamacro",
  24555. height: math.unit(60, "megameters")
  24556. },
  24557. ]
  24558. ))
  24559. characterMakers.push(() => makeCharacter(
  24560. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24561. {
  24562. side: {
  24563. height: math.unit(31 + 8 / 12, "feet"),
  24564. weight: math.unit(75000, "kg"),
  24565. name: "Side",
  24566. image: {
  24567. source: "./media/characters/koros/side.svg",
  24568. extra: 1442 / 1297,
  24569. bottom: 122.7 / 1562
  24570. }
  24571. },
  24572. dicksKingsCrown: {
  24573. height: math.unit(6, "feet"),
  24574. name: "Dicks (King's Crown)",
  24575. image: {
  24576. source: "./media/characters/koros/dicks-kings-crown.svg"
  24577. }
  24578. },
  24579. dicksTailSet: {
  24580. height: math.unit(3, "feet"),
  24581. name: "Dicks (Tail Set)",
  24582. image: {
  24583. source: "./media/characters/koros/dicks-tail-set.svg"
  24584. }
  24585. },
  24586. dickCumming: {
  24587. height: math.unit(7.98, "feet"),
  24588. name: "Dick (Cumming)",
  24589. image: {
  24590. source: "./media/characters/koros/dick-cumming.svg"
  24591. }
  24592. },
  24593. dicksBack: {
  24594. height: math.unit(5.9, "feet"),
  24595. name: "Dicks (Back)",
  24596. image: {
  24597. source: "./media/characters/koros/dicks-back.svg"
  24598. }
  24599. },
  24600. dicksFront: {
  24601. height: math.unit(3.72, "feet"),
  24602. name: "Dicks (Front)",
  24603. image: {
  24604. source: "./media/characters/koros/dicks-front.svg"
  24605. }
  24606. },
  24607. dicksPeeking: {
  24608. height: math.unit(3.0, "feet"),
  24609. name: "Dicks (Peeking)",
  24610. image: {
  24611. source: "./media/characters/koros/dicks-peeking.svg"
  24612. }
  24613. },
  24614. eye: {
  24615. height: math.unit(1.7, "feet"),
  24616. name: "Eye",
  24617. image: {
  24618. source: "./media/characters/koros/eye.svg"
  24619. }
  24620. },
  24621. headFront: {
  24622. height: math.unit(11.69, "feet"),
  24623. name: "Head (Front)",
  24624. image: {
  24625. source: "./media/characters/koros/head-front.svg"
  24626. }
  24627. },
  24628. headSide: {
  24629. height: math.unit(14, "feet"),
  24630. name: "Head (Side)",
  24631. image: {
  24632. source: "./media/characters/koros/head-side.svg"
  24633. }
  24634. },
  24635. leg: {
  24636. height: math.unit(17, "feet"),
  24637. name: "Leg",
  24638. image: {
  24639. source: "./media/characters/koros/leg.svg"
  24640. }
  24641. },
  24642. mawSide: {
  24643. height: math.unit(12.8, "feet"),
  24644. name: "Maw (Side)",
  24645. image: {
  24646. source: "./media/characters/koros/maw-side.svg"
  24647. }
  24648. },
  24649. mawSpitting: {
  24650. height: math.unit(17, "feet"),
  24651. name: "Maw (Spitting)",
  24652. image: {
  24653. source: "./media/characters/koros/maw-spitting.svg"
  24654. }
  24655. },
  24656. slit: {
  24657. height: math.unit(2.8, "feet"),
  24658. name: "Slit",
  24659. image: {
  24660. source: "./media/characters/koros/slit.svg"
  24661. }
  24662. },
  24663. stomach: {
  24664. height: math.unit(6.8, "feet"),
  24665. capacity: math.unit(20, "people"),
  24666. name: "Stomach",
  24667. image: {
  24668. source: "./media/characters/koros/stomach.svg"
  24669. }
  24670. },
  24671. wingspanBottom: {
  24672. height: math.unit(114, "feet"),
  24673. name: "Wingspan (Bottom)",
  24674. image: {
  24675. source: "./media/characters/koros/wingspan-bottom.svg"
  24676. }
  24677. },
  24678. wingspanTop: {
  24679. height: math.unit(104, "feet"),
  24680. name: "Wingspan (Top)",
  24681. image: {
  24682. source: "./media/characters/koros/wingspan-top.svg"
  24683. }
  24684. },
  24685. },
  24686. [
  24687. {
  24688. name: "Normal",
  24689. height: math.unit(31 + 8 / 12, "feet"),
  24690. default: true
  24691. },
  24692. ]
  24693. ))
  24694. characterMakers.push(() => makeCharacter(
  24695. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24696. {
  24697. front: {
  24698. height: math.unit(18 + 5 / 12, "feet"),
  24699. weight: math.unit(3750, "kg"),
  24700. name: "Front",
  24701. image: {
  24702. source: "./media/characters/vexx/front.svg",
  24703. extra: 426 / 396,
  24704. bottom: 31.5 / 458
  24705. }
  24706. },
  24707. maw: {
  24708. height: math.unit(6, "feet"),
  24709. name: "Maw",
  24710. image: {
  24711. source: "./media/characters/vexx/maw.svg"
  24712. }
  24713. },
  24714. },
  24715. [
  24716. {
  24717. name: "Normal",
  24718. height: math.unit(18 + 5 / 12, "feet"),
  24719. default: true
  24720. },
  24721. ]
  24722. ))
  24723. characterMakers.push(() => makeCharacter(
  24724. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24725. {
  24726. front: {
  24727. height: math.unit(17 + 6 / 12, "feet"),
  24728. weight: math.unit(150, "lb"),
  24729. name: "Front",
  24730. image: {
  24731. source: "./media/characters/baadra/front.svg",
  24732. extra: 3137 / 2890,
  24733. bottom: 168.4 / 3305
  24734. }
  24735. },
  24736. back: {
  24737. height: math.unit(17 + 6 / 12, "feet"),
  24738. weight: math.unit(150, "lb"),
  24739. name: "Back",
  24740. image: {
  24741. source: "./media/characters/baadra/back.svg",
  24742. extra: 3142 / 2890,
  24743. bottom: 220 / 3371
  24744. }
  24745. },
  24746. head: {
  24747. height: math.unit(5.45, "feet"),
  24748. name: "Head",
  24749. image: {
  24750. source: "./media/characters/baadra/head.svg"
  24751. }
  24752. },
  24753. headAngry: {
  24754. height: math.unit(4.95, "feet"),
  24755. name: "Head (Angry)",
  24756. image: {
  24757. source: "./media/characters/baadra/head-angry.svg"
  24758. }
  24759. },
  24760. headOpen: {
  24761. height: math.unit(6, "feet"),
  24762. name: "Head (Open)",
  24763. image: {
  24764. source: "./media/characters/baadra/head-open.svg"
  24765. }
  24766. },
  24767. },
  24768. [
  24769. {
  24770. name: "Normal",
  24771. height: math.unit(17 + 6 / 12, "feet"),
  24772. default: true
  24773. },
  24774. ]
  24775. ))
  24776. characterMakers.push(() => makeCharacter(
  24777. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24778. {
  24779. front: {
  24780. height: math.unit(7 + 3 / 12, "feet"),
  24781. weight: math.unit(180, "lb"),
  24782. name: "Front",
  24783. image: {
  24784. source: "./media/characters/juri/front.svg",
  24785. extra: 1401 / 1237,
  24786. bottom: 18.5 / 1418
  24787. }
  24788. },
  24789. side: {
  24790. height: math.unit(7 + 3 / 12, "feet"),
  24791. weight: math.unit(180, "lb"),
  24792. name: "Side",
  24793. image: {
  24794. source: "./media/characters/juri/side.svg",
  24795. extra: 1424 / 1242,
  24796. bottom: 18.5 / 1447
  24797. }
  24798. },
  24799. sitting: {
  24800. height: math.unit(6, "feet"),
  24801. weight: math.unit(180, "lb"),
  24802. name: "Sitting",
  24803. image: {
  24804. source: "./media/characters/juri/sitting.svg",
  24805. extra: 1270 / 1143,
  24806. bottom: 100 / 1343
  24807. }
  24808. },
  24809. back: {
  24810. height: math.unit(7 + 3 / 12, "feet"),
  24811. weight: math.unit(180, "lb"),
  24812. name: "Back",
  24813. image: {
  24814. source: "./media/characters/juri/back.svg",
  24815. extra: 1377 / 1240,
  24816. bottom: 23.7 / 1405
  24817. }
  24818. },
  24819. maw: {
  24820. height: math.unit(2.8, "feet"),
  24821. name: "Maw",
  24822. image: {
  24823. source: "./media/characters/juri/maw.svg"
  24824. }
  24825. },
  24826. stomach: {
  24827. height: math.unit(0.89, "feet"),
  24828. capacity: math.unit(4, "liters"),
  24829. name: "Stomach",
  24830. image: {
  24831. source: "./media/characters/juri/stomach.svg"
  24832. }
  24833. },
  24834. },
  24835. [
  24836. {
  24837. name: "Normal",
  24838. height: math.unit(7 + 3 / 12, "feet"),
  24839. default: true
  24840. },
  24841. ]
  24842. ))
  24843. characterMakers.push(() => makeCharacter(
  24844. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24845. {
  24846. fox: {
  24847. height: math.unit(5 + 6 / 12, "feet"),
  24848. weight: math.unit(140, "lb"),
  24849. name: "Fox",
  24850. image: {
  24851. source: "./media/characters/maxene-sita/fox.svg",
  24852. extra: 146 / 138,
  24853. bottom: 2.1 / 148.19
  24854. }
  24855. },
  24856. foxLaying: {
  24857. height: math.unit(1.70, "feet"),
  24858. weight: math.unit(140, "lb"),
  24859. name: "Fox (Laying)",
  24860. image: {
  24861. source: "./media/characters/maxene-sita/fox-laying.svg",
  24862. extra: 910 / 572,
  24863. bottom: 71 / 981
  24864. }
  24865. },
  24866. kitsune: {
  24867. height: math.unit(10, "feet"),
  24868. weight: math.unit(800, "lb"),
  24869. name: "Kitsune",
  24870. image: {
  24871. source: "./media/characters/maxene-sita/kitsune.svg",
  24872. extra: 185 / 176,
  24873. bottom: 4.7 / 189.9
  24874. }
  24875. },
  24876. hellhound: {
  24877. height: math.unit(10, "feet"),
  24878. weight: math.unit(700, "lb"),
  24879. name: "Hellhound",
  24880. image: {
  24881. source: "./media/characters/maxene-sita/hellhound.svg",
  24882. extra: 1600 / 1545,
  24883. bottom: 81 / 1681
  24884. }
  24885. },
  24886. },
  24887. [
  24888. {
  24889. name: "Normal",
  24890. height: math.unit(5 + 6 / 12, "feet"),
  24891. default: true
  24892. },
  24893. ]
  24894. ))
  24895. characterMakers.push(() => makeCharacter(
  24896. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24897. {
  24898. front: {
  24899. height: math.unit(3 + 4 / 12, "feet"),
  24900. weight: math.unit(70, "lb"),
  24901. name: "Front",
  24902. image: {
  24903. source: "./media/characters/maia/front.svg",
  24904. extra: 227 / 219.5,
  24905. bottom: 40 / 267
  24906. }
  24907. },
  24908. back: {
  24909. height: math.unit(3 + 4 / 12, "feet"),
  24910. weight: math.unit(70, "lb"),
  24911. name: "Back",
  24912. image: {
  24913. source: "./media/characters/maia/back.svg",
  24914. extra: 237 / 225
  24915. }
  24916. },
  24917. },
  24918. [
  24919. {
  24920. name: "Normal",
  24921. height: math.unit(3 + 4 / 12, "feet"),
  24922. default: true
  24923. },
  24924. ]
  24925. ))
  24926. characterMakers.push(() => makeCharacter(
  24927. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24928. {
  24929. front: {
  24930. height: math.unit(5 + 10 / 12, "feet"),
  24931. weight: math.unit(197, "lb"),
  24932. name: "Front",
  24933. image: {
  24934. source: "./media/characters/jabaro/front.svg",
  24935. extra: 225 / 216,
  24936. bottom: 5.06 / 230
  24937. }
  24938. },
  24939. back: {
  24940. height: math.unit(5 + 10 / 12, "feet"),
  24941. weight: math.unit(197, "lb"),
  24942. name: "Back",
  24943. image: {
  24944. source: "./media/characters/jabaro/back.svg",
  24945. extra: 225 / 219,
  24946. bottom: 1.9 / 227
  24947. }
  24948. },
  24949. },
  24950. [
  24951. {
  24952. name: "Normal",
  24953. height: math.unit(5 + 10 / 12, "feet"),
  24954. default: true
  24955. },
  24956. ]
  24957. ))
  24958. characterMakers.push(() => makeCharacter(
  24959. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24960. {
  24961. front: {
  24962. height: math.unit(5 + 8 / 12, "feet"),
  24963. weight: math.unit(139, "lb"),
  24964. name: "Front",
  24965. image: {
  24966. source: "./media/characters/risa/front.svg",
  24967. extra: 270 / 260,
  24968. bottom: 11.2 / 282
  24969. }
  24970. },
  24971. back: {
  24972. height: math.unit(5 + 8 / 12, "feet"),
  24973. weight: math.unit(139, "lb"),
  24974. name: "Back",
  24975. image: {
  24976. source: "./media/characters/risa/back.svg",
  24977. extra: 264 / 255,
  24978. bottom: 4 / 268
  24979. }
  24980. },
  24981. },
  24982. [
  24983. {
  24984. name: "Normal",
  24985. height: math.unit(5 + 8 / 12, "feet"),
  24986. default: true
  24987. },
  24988. ]
  24989. ))
  24990. characterMakers.push(() => makeCharacter(
  24991. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24992. {
  24993. front: {
  24994. height: math.unit(2 + 11 / 12, "feet"),
  24995. weight: math.unit(30, "lb"),
  24996. name: "Front",
  24997. image: {
  24998. source: "./media/characters/weatley/front.svg",
  24999. bottom: 10.7 / 414,
  25000. extra: 403.5 / 362
  25001. }
  25002. },
  25003. back: {
  25004. height: math.unit(2 + 11 / 12, "feet"),
  25005. weight: math.unit(30, "lb"),
  25006. name: "Back",
  25007. image: {
  25008. source: "./media/characters/weatley/back.svg",
  25009. bottom: 10.7 / 414,
  25010. extra: 403.5 / 362
  25011. }
  25012. },
  25013. },
  25014. [
  25015. {
  25016. name: "Normal",
  25017. height: math.unit(2 + 11 / 12, "feet"),
  25018. default: true
  25019. },
  25020. ]
  25021. ))
  25022. characterMakers.push(() => makeCharacter(
  25023. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25024. {
  25025. front: {
  25026. height: math.unit(5 + 2 / 12, "feet"),
  25027. weight: math.unit(50, "kg"),
  25028. name: "Front",
  25029. image: {
  25030. source: "./media/characters/mercury-crescent/front.svg",
  25031. extra: 1088 / 1033,
  25032. bottom: 18.9 / 1109
  25033. }
  25034. },
  25035. },
  25036. [
  25037. {
  25038. name: "Normal",
  25039. height: math.unit(5 + 2 / 12, "feet"),
  25040. default: true
  25041. },
  25042. ]
  25043. ))
  25044. characterMakers.push(() => makeCharacter(
  25045. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25046. {
  25047. front: {
  25048. height: math.unit(2, "feet"),
  25049. weight: math.unit(15, "kg"),
  25050. name: "Front",
  25051. image: {
  25052. source: "./media/characters/diamond-jones/front.svg",
  25053. bottom: 16 / 568
  25054. }
  25055. },
  25056. },
  25057. [
  25058. {
  25059. name: "Normal",
  25060. height: math.unit(2, "feet"),
  25061. default: true
  25062. },
  25063. ]
  25064. ))
  25065. characterMakers.push(() => makeCharacter(
  25066. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25067. {
  25068. front: {
  25069. height: math.unit(3, "feet"),
  25070. weight: math.unit(30, "kg"),
  25071. name: "Front",
  25072. image: {
  25073. source: "./media/characters/sweet-bit/front.svg",
  25074. extra: 675 / 567,
  25075. bottom: 27.7 / 703
  25076. }
  25077. },
  25078. },
  25079. [
  25080. {
  25081. name: "Normal",
  25082. height: math.unit(3, "feet"),
  25083. default: true
  25084. },
  25085. ]
  25086. ))
  25087. characterMakers.push(() => makeCharacter(
  25088. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25089. {
  25090. side: {
  25091. height: math.unit(9.178, "feet"),
  25092. weight: math.unit(500, "lb"),
  25093. name: "Side",
  25094. image: {
  25095. source: "./media/characters/umbrazen/side.svg",
  25096. extra: 1730 / 1473,
  25097. bottom: 34.6 / 1765
  25098. }
  25099. },
  25100. },
  25101. [
  25102. {
  25103. name: "Normal",
  25104. height: math.unit(9.178, "feet"),
  25105. default: true
  25106. },
  25107. ]
  25108. ))
  25109. characterMakers.push(() => makeCharacter(
  25110. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25111. {
  25112. front: {
  25113. height: math.unit(10, "feet"),
  25114. weight: math.unit(750, "lb"),
  25115. name: "Front",
  25116. image: {
  25117. source: "./media/characters/arlist/front.svg",
  25118. extra: 961 / 778,
  25119. bottom: 6.2 / 986
  25120. }
  25121. },
  25122. },
  25123. [
  25124. {
  25125. name: "Normal",
  25126. height: math.unit(10, "feet"),
  25127. default: true
  25128. },
  25129. ]
  25130. ))
  25131. characterMakers.push(() => makeCharacter(
  25132. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25133. {
  25134. front: {
  25135. height: math.unit(5 + 1 / 12, "feet"),
  25136. weight: math.unit(110, "lb"),
  25137. name: "Front",
  25138. image: {
  25139. source: "./media/characters/aradel/front.svg",
  25140. extra: 324 / 303,
  25141. bottom: 3.6 / 329.4
  25142. }
  25143. },
  25144. },
  25145. [
  25146. {
  25147. name: "Normal",
  25148. height: math.unit(5 + 1 / 12, "feet"),
  25149. default: true
  25150. },
  25151. ]
  25152. ))
  25153. characterMakers.push(() => makeCharacter(
  25154. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25155. {
  25156. front: {
  25157. height: math.unit(3 + 8 / 12, "feet"),
  25158. weight: math.unit(50, "lb"),
  25159. name: "Front",
  25160. image: {
  25161. source: "./media/characters/serryn/front.svg",
  25162. extra: 1792 / 1656,
  25163. bottom: 43.5 / 1840
  25164. }
  25165. },
  25166. },
  25167. [
  25168. {
  25169. name: "Normal",
  25170. height: math.unit(3 + 8 / 12, "feet"),
  25171. default: true
  25172. },
  25173. ]
  25174. ))
  25175. characterMakers.push(() => makeCharacter(
  25176. { name: "Xavier Thyme" },
  25177. {
  25178. front: {
  25179. height: math.unit(7 + 10 / 12, "feet"),
  25180. weight: math.unit(255, "lb"),
  25181. name: "Front",
  25182. image: {
  25183. source: "./media/characters/xavier-thyme/front.svg",
  25184. extra: 3733 / 3642,
  25185. bottom: 131 / 3869
  25186. }
  25187. },
  25188. frontRaven: {
  25189. height: math.unit(7 + 10 / 12, "feet"),
  25190. weight: math.unit(255, "lb"),
  25191. name: "Front (Raven)",
  25192. image: {
  25193. source: "./media/characters/xavier-thyme/front-raven.svg",
  25194. extra: 4385 / 3642,
  25195. bottom: 131 / 4517
  25196. }
  25197. },
  25198. },
  25199. [
  25200. {
  25201. name: "Normal",
  25202. height: math.unit(7 + 10 / 12, "feet"),
  25203. default: true
  25204. },
  25205. ]
  25206. ))
  25207. characterMakers.push(() => makeCharacter(
  25208. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25209. {
  25210. front: {
  25211. height: math.unit(1.6, "m"),
  25212. weight: math.unit(50, "kg"),
  25213. name: "Front",
  25214. image: {
  25215. source: "./media/characters/kiki/front.svg",
  25216. extra: 4682 / 3610,
  25217. bottom: 115 / 4777
  25218. }
  25219. },
  25220. },
  25221. [
  25222. {
  25223. name: "Normal",
  25224. height: math.unit(1.6, "meters"),
  25225. default: true
  25226. },
  25227. ]
  25228. ))
  25229. characterMakers.push(() => makeCharacter(
  25230. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25231. {
  25232. front: {
  25233. height: math.unit(50, "m"),
  25234. weight: math.unit(500, "tonnes"),
  25235. name: "Front",
  25236. image: {
  25237. source: "./media/characters/ryoko/front.svg",
  25238. extra: 4632 / 3926,
  25239. bottom: 193 / 4823
  25240. }
  25241. },
  25242. },
  25243. [
  25244. {
  25245. name: "Normal",
  25246. height: math.unit(50, "meters"),
  25247. default: true
  25248. },
  25249. ]
  25250. ))
  25251. characterMakers.push(() => makeCharacter(
  25252. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25253. {
  25254. front: {
  25255. height: math.unit(30, "m"),
  25256. weight: math.unit(22, "tonnes"),
  25257. name: "Front",
  25258. image: {
  25259. source: "./media/characters/elio/front.svg",
  25260. extra: 4582 / 3720,
  25261. bottom: 236 / 4828
  25262. }
  25263. },
  25264. },
  25265. [
  25266. {
  25267. name: "Normal",
  25268. height: math.unit(30, "meters"),
  25269. default: true
  25270. },
  25271. ]
  25272. ))
  25273. characterMakers.push(() => makeCharacter(
  25274. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25275. {
  25276. front: {
  25277. height: math.unit(6 + 3 / 12, "feet"),
  25278. weight: math.unit(120, "lb"),
  25279. name: "Front",
  25280. image: {
  25281. source: "./media/characters/azura/front.svg",
  25282. extra: 1149 / 1135,
  25283. bottom: 45 / 1194
  25284. }
  25285. },
  25286. frontClothed: {
  25287. height: math.unit(6 + 3 / 12, "feet"),
  25288. weight: math.unit(120, "lb"),
  25289. name: "Front (Clothed)",
  25290. image: {
  25291. source: "./media/characters/azura/front-clothed.svg",
  25292. extra: 1149 / 1135,
  25293. bottom: 45 / 1194
  25294. }
  25295. },
  25296. },
  25297. [
  25298. {
  25299. name: "Normal",
  25300. height: math.unit(6 + 3 / 12, "feet"),
  25301. default: true
  25302. },
  25303. {
  25304. name: "Macro",
  25305. height: math.unit(20 + 6 / 12, "feet")
  25306. },
  25307. {
  25308. name: "Megamacro",
  25309. height: math.unit(12, "miles")
  25310. },
  25311. {
  25312. name: "Gigamacro",
  25313. height: math.unit(10000, "miles")
  25314. },
  25315. {
  25316. name: "Teramacro",
  25317. height: math.unit(900000, "miles")
  25318. },
  25319. ]
  25320. ))
  25321. characterMakers.push(() => makeCharacter(
  25322. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25323. {
  25324. front: {
  25325. height: math.unit(12, "feet"),
  25326. weight: math.unit(1, "ton"),
  25327. capacity: math.unit(660000, "gallons"),
  25328. name: "Front",
  25329. image: {
  25330. source: "./media/characters/zeus/front.svg",
  25331. extra: 5005 / 4717,
  25332. bottom: 363 / 5388
  25333. }
  25334. },
  25335. },
  25336. [
  25337. {
  25338. name: "Normal",
  25339. height: math.unit(12, "feet")
  25340. },
  25341. {
  25342. name: "Preferred Size",
  25343. height: math.unit(0.5, "miles"),
  25344. default: true
  25345. },
  25346. {
  25347. name: "Giga Horse",
  25348. height: math.unit(300, "miles")
  25349. },
  25350. {
  25351. name: "Riding Planets",
  25352. height: math.unit(30, "megameters")
  25353. },
  25354. {
  25355. name: "Cosmic Giant",
  25356. height: math.unit(3, "zettameters")
  25357. },
  25358. {
  25359. name: "Breeding God",
  25360. height: math.unit(9.92e22, "yottameters")
  25361. },
  25362. ]
  25363. ))
  25364. characterMakers.push(() => makeCharacter(
  25365. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25366. {
  25367. side: {
  25368. height: math.unit(9, "feet"),
  25369. weight: math.unit(1500, "kg"),
  25370. name: "Side",
  25371. image: {
  25372. source: "./media/characters/fang/side.svg",
  25373. extra: 924 / 866,
  25374. bottom: 47.5 / 972.3
  25375. }
  25376. },
  25377. },
  25378. [
  25379. {
  25380. name: "Normal",
  25381. height: math.unit(9, "feet"),
  25382. default: true
  25383. },
  25384. {
  25385. name: "Macro",
  25386. height: math.unit(75 + 6 / 12, "feet")
  25387. },
  25388. {
  25389. name: "Teramacro",
  25390. height: math.unit(50000, "miles")
  25391. },
  25392. ]
  25393. ))
  25394. characterMakers.push(() => makeCharacter(
  25395. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25396. {
  25397. front: {
  25398. height: math.unit(10, "feet"),
  25399. weight: math.unit(2, "tons"),
  25400. name: "Front",
  25401. image: {
  25402. source: "./media/characters/rekhit/front.svg",
  25403. extra: 2796 / 2590,
  25404. bottom: 225 / 3022
  25405. }
  25406. },
  25407. },
  25408. [
  25409. {
  25410. name: "Normal",
  25411. height: math.unit(10, "feet"),
  25412. default: true
  25413. },
  25414. {
  25415. name: "Macro",
  25416. height: math.unit(500, "feet")
  25417. },
  25418. ]
  25419. ))
  25420. characterMakers.push(() => makeCharacter(
  25421. { name: "Dahlia Verrick" },
  25422. {
  25423. front: {
  25424. height: math.unit(7 + 6.451 / 12, "feet"),
  25425. weight: math.unit(310, "lb"),
  25426. name: "Front",
  25427. image: {
  25428. source: "./media/characters/dahlia-verrick/front.svg",
  25429. extra: 1488 / 1365,
  25430. bottom: 6.2 / 1495
  25431. }
  25432. },
  25433. back: {
  25434. height: math.unit(7 + 6.451 / 12, "feet"),
  25435. weight: math.unit(310, "lb"),
  25436. name: "Back",
  25437. image: {
  25438. source: "./media/characters/dahlia-verrick/back.svg",
  25439. extra: 1472 / 1351,
  25440. bottom: 5.28 / 1477
  25441. }
  25442. },
  25443. frontBusiness: {
  25444. height: math.unit(7 + 6.451 / 12, "feet"),
  25445. weight: math.unit(200, "lb"),
  25446. name: "Front (Business)",
  25447. image: {
  25448. source: "./media/characters/dahlia-verrick/front-business.svg",
  25449. extra: 1478 / 1381,
  25450. bottom: 5.5 / 1484
  25451. }
  25452. },
  25453. frontCasual: {
  25454. height: math.unit(7 + 6.451 / 12, "feet"),
  25455. weight: math.unit(200, "lb"),
  25456. name: "Front (Casual)",
  25457. image: {
  25458. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25459. extra: 1478 / 1381,
  25460. bottom: 5.5 / 1484
  25461. }
  25462. },
  25463. },
  25464. [
  25465. {
  25466. name: "Travel-Sized",
  25467. height: math.unit(7.45, "inches")
  25468. },
  25469. {
  25470. name: "Normal",
  25471. height: math.unit(7 + 6.451 / 12, "feet"),
  25472. default: true
  25473. },
  25474. {
  25475. name: "Hitting the Town",
  25476. height: math.unit(37 + 8 / 12, "feet")
  25477. },
  25478. {
  25479. name: "Stomp in the Suburbs",
  25480. height: math.unit(964 + 9.728 / 12, "feet")
  25481. },
  25482. {
  25483. name: "Sit on the City",
  25484. height: math.unit(61747 + 10.592 / 12, "feet")
  25485. },
  25486. {
  25487. name: "Glomp the Globe",
  25488. height: math.unit(252919327 + 4.832 / 12, "feet")
  25489. },
  25490. ]
  25491. ))
  25492. characterMakers.push(() => makeCharacter(
  25493. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25494. {
  25495. front: {
  25496. height: math.unit(6 + 4 / 12, "feet"),
  25497. weight: math.unit(320, "lb"),
  25498. name: "Front",
  25499. image: {
  25500. source: "./media/characters/balina-mahigan/front.svg",
  25501. extra: 447 / 428,
  25502. bottom: 18 / 466
  25503. }
  25504. },
  25505. back: {
  25506. height: math.unit(6 + 4 / 12, "feet"),
  25507. weight: math.unit(320, "lb"),
  25508. name: "Back",
  25509. image: {
  25510. source: "./media/characters/balina-mahigan/back.svg",
  25511. extra: 445 / 428,
  25512. bottom: 4.07 / 448
  25513. }
  25514. },
  25515. arm: {
  25516. height: math.unit(1.88, "feet"),
  25517. name: "Arm",
  25518. image: {
  25519. source: "./media/characters/balina-mahigan/arm.svg"
  25520. }
  25521. },
  25522. backPort: {
  25523. height: math.unit(0.685, "feet"),
  25524. name: "Back Port",
  25525. image: {
  25526. source: "./media/characters/balina-mahigan/back-port.svg"
  25527. }
  25528. },
  25529. hoofpaw: {
  25530. height: math.unit(1.41, "feet"),
  25531. name: "Hoofpaw",
  25532. image: {
  25533. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25534. }
  25535. },
  25536. leftHandBack: {
  25537. height: math.unit(0.938, "feet"),
  25538. name: "Left Hand (Back)",
  25539. image: {
  25540. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25541. }
  25542. },
  25543. leftHandFront: {
  25544. height: math.unit(0.938, "feet"),
  25545. name: "Left Hand (Front)",
  25546. image: {
  25547. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25548. }
  25549. },
  25550. rightHandBack: {
  25551. height: math.unit(0.95, "feet"),
  25552. name: "Right Hand (Back)",
  25553. image: {
  25554. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25555. }
  25556. },
  25557. rightHandFront: {
  25558. height: math.unit(0.95, "feet"),
  25559. name: "Right Hand (Front)",
  25560. image: {
  25561. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25562. }
  25563. },
  25564. },
  25565. [
  25566. {
  25567. name: "Normal",
  25568. height: math.unit(6 + 4 / 12, "feet"),
  25569. default: true
  25570. },
  25571. ]
  25572. ))
  25573. characterMakers.push(() => makeCharacter(
  25574. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25575. {
  25576. front: {
  25577. height: math.unit(6, "feet"),
  25578. weight: math.unit(320, "lb"),
  25579. name: "Front",
  25580. image: {
  25581. source: "./media/characters/balina-mejeri/front.svg",
  25582. extra: 517 / 488,
  25583. bottom: 44.2 / 561
  25584. }
  25585. },
  25586. },
  25587. [
  25588. {
  25589. name: "Normal",
  25590. height: math.unit(6 + 4 / 12, "feet")
  25591. },
  25592. {
  25593. name: "Business",
  25594. height: math.unit(155, "feet"),
  25595. default: true
  25596. },
  25597. ]
  25598. ))
  25599. characterMakers.push(() => makeCharacter(
  25600. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25601. {
  25602. kneeling: {
  25603. height: math.unit(6 + 4 / 12, "feet"),
  25604. weight: math.unit(300 * 20, "lb"),
  25605. name: "Kneeling",
  25606. image: {
  25607. source: "./media/characters/balbarian/kneeling.svg",
  25608. extra: 922 / 862,
  25609. bottom: 42.4 / 965
  25610. }
  25611. },
  25612. },
  25613. [
  25614. {
  25615. name: "Normal",
  25616. height: math.unit(6 + 4 / 12, "feet")
  25617. },
  25618. {
  25619. name: "Treasured",
  25620. height: math.unit(18 + 9 / 12, "feet"),
  25621. default: true
  25622. },
  25623. {
  25624. name: "Macro",
  25625. height: math.unit(900, "feet")
  25626. },
  25627. ]
  25628. ))
  25629. characterMakers.push(() => makeCharacter(
  25630. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25631. {
  25632. front: {
  25633. height: math.unit(6 + 4 / 12, "feet"),
  25634. weight: math.unit(325, "lb"),
  25635. name: "Front",
  25636. image: {
  25637. source: "./media/characters/balina-amarini/front.svg",
  25638. extra: 415 / 403,
  25639. bottom: 19 / 433.4
  25640. }
  25641. },
  25642. back: {
  25643. height: math.unit(6 + 4 / 12, "feet"),
  25644. weight: math.unit(325, "lb"),
  25645. name: "Back",
  25646. image: {
  25647. source: "./media/characters/balina-amarini/back.svg",
  25648. extra: 415 / 403,
  25649. bottom: 13.5 / 432
  25650. }
  25651. },
  25652. overdrive: {
  25653. height: math.unit(6 + 4 / 12, "feet"),
  25654. weight: math.unit(400, "lb"),
  25655. name: "Overdrive",
  25656. image: {
  25657. source: "./media/characters/balina-amarini/overdrive.svg",
  25658. extra: 269 / 259,
  25659. bottom: 12 / 282
  25660. }
  25661. },
  25662. },
  25663. [
  25664. {
  25665. name: "Boom",
  25666. height: math.unit(9 + 10 / 12, "feet"),
  25667. default: true
  25668. },
  25669. {
  25670. name: "Macro",
  25671. height: math.unit(280, "feet")
  25672. },
  25673. ]
  25674. ))
  25675. characterMakers.push(() => makeCharacter(
  25676. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25677. {
  25678. goddess: {
  25679. height: math.unit(600, "feet"),
  25680. weight: math.unit(2000000, "tons"),
  25681. name: "Goddess",
  25682. image: {
  25683. source: "./media/characters/lady-kubwa/goddess.svg",
  25684. extra: 1240.5 / 1223,
  25685. bottom: 22 / 1263
  25686. }
  25687. },
  25688. goddesser: {
  25689. height: math.unit(900, "feet"),
  25690. weight: math.unit(20000000, "lb"),
  25691. name: "Goddess-er",
  25692. image: {
  25693. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25694. extra: 899 / 888,
  25695. bottom: 12.6 / 912
  25696. }
  25697. },
  25698. },
  25699. [
  25700. {
  25701. name: "Macro",
  25702. height: math.unit(600, "feet"),
  25703. default: true
  25704. },
  25705. {
  25706. name: "Megamacro",
  25707. height: math.unit(250, "miles")
  25708. },
  25709. ]
  25710. ))
  25711. characterMakers.push(() => makeCharacter(
  25712. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25713. {
  25714. front: {
  25715. height: math.unit(7 + 7 / 12, "feet"),
  25716. weight: math.unit(250, "lb"),
  25717. name: "Front",
  25718. image: {
  25719. source: "./media/characters/tala-grovehorn/front.svg",
  25720. extra: 2636 / 2525,
  25721. bottom: 147 / 2781
  25722. }
  25723. },
  25724. back: {
  25725. height: math.unit(7 + 7 / 12, "feet"),
  25726. weight: math.unit(250, "lb"),
  25727. name: "Back",
  25728. image: {
  25729. source: "./media/characters/tala-grovehorn/back.svg",
  25730. extra: 2635 / 2539,
  25731. bottom: 100 / 2732.8
  25732. }
  25733. },
  25734. mouth: {
  25735. height: math.unit(1.15, "feet"),
  25736. name: "Mouth",
  25737. image: {
  25738. source: "./media/characters/tala-grovehorn/mouth.svg"
  25739. }
  25740. },
  25741. dick: {
  25742. height: math.unit(2.36, "feet"),
  25743. name: "Dick",
  25744. image: {
  25745. source: "./media/characters/tala-grovehorn/dick.svg"
  25746. }
  25747. },
  25748. slit: {
  25749. height: math.unit(0.61, "feet"),
  25750. name: "Slit",
  25751. image: {
  25752. source: "./media/characters/tala-grovehorn/slit.svg"
  25753. }
  25754. },
  25755. },
  25756. [
  25757. ]
  25758. ))
  25759. characterMakers.push(() => makeCharacter(
  25760. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25761. {
  25762. front: {
  25763. height: math.unit(7 + 7 / 12, "feet"),
  25764. weight: math.unit(225, "lb"),
  25765. name: "Front",
  25766. image: {
  25767. source: "./media/characters/epona/front.svg",
  25768. extra: 2445 / 2290,
  25769. bottom: 251 / 2696
  25770. }
  25771. },
  25772. back: {
  25773. height: math.unit(7 + 7 / 12, "feet"),
  25774. weight: math.unit(225, "lb"),
  25775. name: "Back",
  25776. image: {
  25777. source: "./media/characters/epona/back.svg",
  25778. extra: 2546 / 2408,
  25779. bottom: 44 / 2589
  25780. }
  25781. },
  25782. genitals: {
  25783. height: math.unit(1.5, "feet"),
  25784. name: "Genitals",
  25785. image: {
  25786. source: "./media/characters/epona/genitals.svg"
  25787. }
  25788. },
  25789. },
  25790. [
  25791. {
  25792. name: "Normal",
  25793. height: math.unit(7 + 7 / 12, "feet")
  25794. },
  25795. ]
  25796. ))
  25797. characterMakers.push(() => makeCharacter(
  25798. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25799. {
  25800. front: {
  25801. height: math.unit(7, "feet"),
  25802. weight: math.unit(518, "lb"),
  25803. name: "Front",
  25804. image: {
  25805. source: "./media/characters/avia-bloodbourn/front.svg",
  25806. extra: 1466 / 1350,
  25807. bottom: 65 / 1527
  25808. }
  25809. },
  25810. },
  25811. [
  25812. ]
  25813. ))
  25814. characterMakers.push(() => makeCharacter(
  25815. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25816. {
  25817. front: {
  25818. height: math.unit(9.35, "feet"),
  25819. weight: math.unit(600, "lb"),
  25820. name: "Front",
  25821. image: {
  25822. source: "./media/characters/amera/front.svg",
  25823. extra: 891 / 818,
  25824. bottom: 30 / 922.7
  25825. }
  25826. },
  25827. back: {
  25828. height: math.unit(9.35, "feet"),
  25829. weight: math.unit(600, "lb"),
  25830. name: "Back",
  25831. image: {
  25832. source: "./media/characters/amera/back.svg",
  25833. extra: 876 / 824,
  25834. bottom: 6.8 / 884
  25835. }
  25836. },
  25837. dick: {
  25838. height: math.unit(2.14, "feet"),
  25839. name: "Dick",
  25840. image: {
  25841. source: "./media/characters/amera/dick.svg"
  25842. }
  25843. },
  25844. },
  25845. [
  25846. {
  25847. name: "Normal",
  25848. height: math.unit(9.35, "feet"),
  25849. default: true
  25850. },
  25851. ]
  25852. ))
  25853. characterMakers.push(() => makeCharacter(
  25854. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25855. {
  25856. kneeling: {
  25857. height: math.unit(3 + 4 / 12, "feet"),
  25858. weight: math.unit(90, "lb"),
  25859. name: "Kneeling",
  25860. image: {
  25861. source: "./media/characters/rosewen/kneeling.svg",
  25862. extra: 1835 / 1571,
  25863. bottom: 27.7 / 1862
  25864. }
  25865. },
  25866. },
  25867. [
  25868. {
  25869. name: "Normal",
  25870. height: math.unit(3 + 4 / 12, "feet"),
  25871. default: true
  25872. },
  25873. ]
  25874. ))
  25875. characterMakers.push(() => makeCharacter(
  25876. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25877. {
  25878. front: {
  25879. height: math.unit(5 + 10 / 12, "feet"),
  25880. weight: math.unit(200, "lb"),
  25881. name: "Front",
  25882. image: {
  25883. source: "./media/characters/sabah/front.svg",
  25884. extra: 849 / 763,
  25885. bottom: 33.9 / 881
  25886. }
  25887. },
  25888. },
  25889. [
  25890. {
  25891. name: "Normal",
  25892. height: math.unit(5 + 10 / 12, "feet"),
  25893. default: true
  25894. },
  25895. ]
  25896. ))
  25897. characterMakers.push(() => makeCharacter(
  25898. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25899. {
  25900. front: {
  25901. height: math.unit(3 + 5 / 12, "feet"),
  25902. weight: math.unit(40, "kg"),
  25903. name: "Front",
  25904. image: {
  25905. source: "./media/characters/purple-flame/front.svg",
  25906. extra: 1577 / 1412,
  25907. bottom: 97 / 1694
  25908. }
  25909. },
  25910. frontDressed: {
  25911. height: math.unit(3 + 5 / 12, "feet"),
  25912. weight: math.unit(40, "kg"),
  25913. name: "Front (Dressed)",
  25914. image: {
  25915. source: "./media/characters/purple-flame/front-dressed.svg",
  25916. extra: 1577 / 1412,
  25917. bottom: 97 / 1694
  25918. }
  25919. },
  25920. headphones: {
  25921. height: math.unit(0.85, "feet"),
  25922. name: "Headphones",
  25923. image: {
  25924. source: "./media/characters/purple-flame/headphones.svg"
  25925. }
  25926. },
  25927. },
  25928. [
  25929. {
  25930. name: "Really Small",
  25931. height: math.unit(5, "cm")
  25932. },
  25933. {
  25934. name: "Micro",
  25935. height: math.unit(1 + 5 / 12, "feet")
  25936. },
  25937. {
  25938. name: "Normal",
  25939. height: math.unit(3 + 5 / 12, "feet"),
  25940. default: true
  25941. },
  25942. {
  25943. name: "Minimacro",
  25944. height: math.unit(125, "feet")
  25945. },
  25946. {
  25947. name: "Macro",
  25948. height: math.unit(0.5, "miles")
  25949. },
  25950. {
  25951. name: "Megamacro",
  25952. height: math.unit(50, "miles")
  25953. },
  25954. {
  25955. name: "Gigantic",
  25956. height: math.unit(750, "miles")
  25957. },
  25958. {
  25959. name: "Planetary",
  25960. height: math.unit(15000, "miles")
  25961. },
  25962. ]
  25963. ))
  25964. characterMakers.push(() => makeCharacter(
  25965. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25966. {
  25967. front: {
  25968. height: math.unit(14, "feet"),
  25969. weight: math.unit(959, "lb"),
  25970. name: "Front",
  25971. image: {
  25972. source: "./media/characters/arsenal/front.svg",
  25973. extra: 2357 / 2157,
  25974. bottom: 93 / 2458
  25975. }
  25976. },
  25977. },
  25978. [
  25979. {
  25980. name: "Normal",
  25981. height: math.unit(14, "feet"),
  25982. default: true
  25983. },
  25984. ]
  25985. ))
  25986. characterMakers.push(() => makeCharacter(
  25987. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25988. {
  25989. front: {
  25990. height: math.unit(6, "feet"),
  25991. weight: math.unit(150, "lb"),
  25992. name: "Front",
  25993. image: {
  25994. source: "./media/characters/adira/front.svg",
  25995. extra: 1078 / 1029,
  25996. bottom: 87 / 1166
  25997. }
  25998. },
  25999. },
  26000. [
  26001. {
  26002. name: "Micro",
  26003. height: math.unit(4, "inches"),
  26004. default: true
  26005. },
  26006. {
  26007. name: "Macro",
  26008. height: math.unit(50, "feet")
  26009. },
  26010. ]
  26011. ))
  26012. characterMakers.push(() => makeCharacter(
  26013. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26014. {
  26015. front: {
  26016. height: math.unit(16, "feet"),
  26017. weight: math.unit(1000, "lb"),
  26018. name: "Front",
  26019. image: {
  26020. source: "./media/characters/grim/front.svg",
  26021. extra: 622 / 614,
  26022. bottom: 18.1 / 642
  26023. }
  26024. },
  26025. back: {
  26026. height: math.unit(16, "feet"),
  26027. weight: math.unit(1000, "lb"),
  26028. name: "Back",
  26029. image: {
  26030. source: "./media/characters/grim/back.svg",
  26031. extra: 610.6 / 602,
  26032. bottom: 40.8 / 652
  26033. }
  26034. },
  26035. hunched: {
  26036. height: math.unit(9.75, "feet"),
  26037. weight: math.unit(1000, "lb"),
  26038. name: "Hunched",
  26039. image: {
  26040. source: "./media/characters/grim/hunched.svg",
  26041. extra: 304 / 297,
  26042. bottom: 35.4 / 394
  26043. }
  26044. },
  26045. },
  26046. [
  26047. {
  26048. name: "Normal",
  26049. height: math.unit(16, "feet"),
  26050. default: true
  26051. },
  26052. ]
  26053. ))
  26054. characterMakers.push(() => makeCharacter(
  26055. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26056. {
  26057. front: {
  26058. height: math.unit(2.3, "meters"),
  26059. weight: math.unit(300, "lb"),
  26060. name: "Front",
  26061. image: {
  26062. source: "./media/characters/sinja/front-sfw.svg",
  26063. extra: 1393 / 1294,
  26064. bottom: 70 / 1463
  26065. }
  26066. },
  26067. frontNsfw: {
  26068. height: math.unit(2.3, "meters"),
  26069. weight: math.unit(300, "lb"),
  26070. name: "Front (NSFW)",
  26071. image: {
  26072. source: "./media/characters/sinja/front-nsfw.svg",
  26073. extra: 1393 / 1294,
  26074. bottom: 70 / 1463
  26075. }
  26076. },
  26077. back: {
  26078. height: math.unit(2.3, "meters"),
  26079. weight: math.unit(300, "lb"),
  26080. name: "Back",
  26081. image: {
  26082. source: "./media/characters/sinja/back.svg",
  26083. extra: 1393 / 1294,
  26084. bottom: 70 / 1463
  26085. }
  26086. },
  26087. head: {
  26088. height: math.unit(1.771, "feet"),
  26089. name: "Head",
  26090. image: {
  26091. source: "./media/characters/sinja/head.svg"
  26092. }
  26093. },
  26094. slit: {
  26095. height: math.unit(0.8, "feet"),
  26096. name: "Slit",
  26097. image: {
  26098. source: "./media/characters/sinja/slit.svg"
  26099. }
  26100. },
  26101. },
  26102. [
  26103. {
  26104. name: "Normal",
  26105. height: math.unit(2.3, "meters")
  26106. },
  26107. {
  26108. name: "Macro",
  26109. height: math.unit(91, "meters"),
  26110. default: true
  26111. },
  26112. {
  26113. name: "Megamacro",
  26114. height: math.unit(91440, "meters")
  26115. },
  26116. {
  26117. name: "Gigamacro",
  26118. height: math.unit(60960000, "meters")
  26119. },
  26120. {
  26121. name: "Teramacro",
  26122. height: math.unit(9144000000, "meters")
  26123. },
  26124. ]
  26125. ))
  26126. characterMakers.push(() => makeCharacter(
  26127. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26128. {
  26129. front: {
  26130. height: math.unit(1.7, "meters"),
  26131. weight: math.unit(130, "lb"),
  26132. name: "Front",
  26133. image: {
  26134. source: "./media/characters/kyu/front.svg",
  26135. extra: 415 / 395,
  26136. bottom: 5 / 420
  26137. }
  26138. },
  26139. head: {
  26140. height: math.unit(1.75, "feet"),
  26141. name: "Head",
  26142. image: {
  26143. source: "./media/characters/kyu/head.svg"
  26144. }
  26145. },
  26146. foot: {
  26147. height: math.unit(0.81, "feet"),
  26148. name: "Foot",
  26149. image: {
  26150. source: "./media/characters/kyu/foot.svg"
  26151. }
  26152. },
  26153. },
  26154. [
  26155. {
  26156. name: "Normal",
  26157. height: math.unit(1.7, "meters")
  26158. },
  26159. {
  26160. name: "Macro",
  26161. height: math.unit(131, "feet"),
  26162. default: true
  26163. },
  26164. {
  26165. name: "Megamacro",
  26166. height: math.unit(91440, "meters")
  26167. },
  26168. {
  26169. name: "Gigamacro",
  26170. height: math.unit(60960000, "meters")
  26171. },
  26172. {
  26173. name: "Teramacro",
  26174. height: math.unit(9144000000, "meters")
  26175. },
  26176. ]
  26177. ))
  26178. characterMakers.push(() => makeCharacter(
  26179. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26180. {
  26181. front: {
  26182. height: math.unit(7 + 1 / 12, "feet"),
  26183. weight: math.unit(250, "lb"),
  26184. name: "Front",
  26185. image: {
  26186. source: "./media/characters/joey/front.svg",
  26187. extra: 1791 / 1537,
  26188. bottom: 28 / 1816
  26189. }
  26190. },
  26191. },
  26192. [
  26193. {
  26194. name: "Micro",
  26195. height: math.unit(3, "inches")
  26196. },
  26197. {
  26198. name: "Normal",
  26199. height: math.unit(7 + 1 / 12, "feet"),
  26200. default: true
  26201. },
  26202. ]
  26203. ))
  26204. characterMakers.push(() => makeCharacter(
  26205. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26206. {
  26207. front: {
  26208. height: math.unit(165, "cm"),
  26209. weight: math.unit(140, "lb"),
  26210. name: "Front",
  26211. image: {
  26212. source: "./media/characters/sam-evans/front.svg",
  26213. extra: 3417 / 3230,
  26214. bottom: 41.3 / 3417
  26215. }
  26216. },
  26217. frontSixTails: {
  26218. height: math.unit(165, "cm"),
  26219. weight: math.unit(140, "lb"),
  26220. name: "Front-six-tails",
  26221. image: {
  26222. source: "./media/characters/sam-evans/front-six-tails.svg",
  26223. extra: 3417 / 3230,
  26224. bottom: 41.3 / 3417
  26225. }
  26226. },
  26227. back: {
  26228. height: math.unit(165, "cm"),
  26229. weight: math.unit(140, "lb"),
  26230. name: "Back",
  26231. image: {
  26232. source: "./media/characters/sam-evans/back.svg",
  26233. extra: 3227 / 3032,
  26234. bottom: 6.8 / 3234
  26235. }
  26236. },
  26237. face: {
  26238. height: math.unit(0.68, "feet"),
  26239. name: "Face",
  26240. image: {
  26241. source: "./media/characters/sam-evans/face.svg"
  26242. }
  26243. },
  26244. },
  26245. [
  26246. {
  26247. name: "Normal",
  26248. height: math.unit(165, "cm"),
  26249. default: true
  26250. },
  26251. {
  26252. name: "Macro",
  26253. height: math.unit(100, "meters")
  26254. },
  26255. {
  26256. name: "Macro+",
  26257. height: math.unit(800, "meters")
  26258. },
  26259. {
  26260. name: "Macro++",
  26261. height: math.unit(3, "km")
  26262. },
  26263. {
  26264. name: "Macro+++",
  26265. height: math.unit(30, "km")
  26266. },
  26267. ]
  26268. ))
  26269. characterMakers.push(() => makeCharacter(
  26270. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26271. {
  26272. front: {
  26273. height: math.unit(10, "feet"),
  26274. weight: math.unit(750, "lb"),
  26275. name: "Front",
  26276. image: {
  26277. source: "./media/characters/juliet-a/front.svg",
  26278. extra: 1766 / 1720,
  26279. bottom: 43 / 1809
  26280. }
  26281. },
  26282. back: {
  26283. height: math.unit(10, "feet"),
  26284. weight: math.unit(750, "lb"),
  26285. name: "Back",
  26286. image: {
  26287. source: "./media/characters/juliet-a/back.svg",
  26288. extra: 1781 / 1734,
  26289. bottom: 35 / 1810,
  26290. }
  26291. },
  26292. },
  26293. [
  26294. {
  26295. name: "Normal",
  26296. height: math.unit(10, "feet"),
  26297. default: true
  26298. },
  26299. {
  26300. name: "Dragon Form",
  26301. height: math.unit(250, "feet")
  26302. },
  26303. {
  26304. name: "Macro",
  26305. height: math.unit(1000, "feet")
  26306. },
  26307. {
  26308. name: "Megamacro",
  26309. height: math.unit(10000, "feet")
  26310. }
  26311. ]
  26312. ))
  26313. characterMakers.push(() => makeCharacter(
  26314. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26315. {
  26316. regular: {
  26317. height: math.unit(7 + 3 / 12, "feet"),
  26318. weight: math.unit(260, "lb"),
  26319. name: "Regular",
  26320. image: {
  26321. source: "./media/characters/wild/regular.svg",
  26322. extra: 97.45 / 92,
  26323. bottom: 6.8 / 104.3
  26324. }
  26325. },
  26326. biggums: {
  26327. height: math.unit(8 + 6 / 12, "feet"),
  26328. weight: math.unit(425, "lb"),
  26329. name: "Biggums",
  26330. image: {
  26331. source: "./media/characters/wild/biggums.svg",
  26332. extra: 97.45 / 92,
  26333. bottom: 7.5 / 132.34
  26334. }
  26335. },
  26336. mawRegular: {
  26337. height: math.unit(1.24, "feet"),
  26338. name: "Maw (Regular)",
  26339. image: {
  26340. source: "./media/characters/wild/maw.svg"
  26341. }
  26342. },
  26343. mawBiggums: {
  26344. height: math.unit(1.47, "feet"),
  26345. name: "Maw (Biggums)",
  26346. image: {
  26347. source: "./media/characters/wild/maw.svg"
  26348. }
  26349. },
  26350. },
  26351. [
  26352. {
  26353. name: "Normal",
  26354. height: math.unit(7 + 3 / 12, "feet"),
  26355. default: true
  26356. },
  26357. ]
  26358. ))
  26359. characterMakers.push(() => makeCharacter(
  26360. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26361. {
  26362. front: {
  26363. height: math.unit(2.5, "meters"),
  26364. weight: math.unit(200, "kg"),
  26365. name: "Front",
  26366. image: {
  26367. source: "./media/characters/vidar/front.svg",
  26368. extra: 2994 / 2795,
  26369. bottom: 56 / 3061
  26370. }
  26371. },
  26372. back: {
  26373. height: math.unit(2.5, "meters"),
  26374. weight: math.unit(200, "kg"),
  26375. name: "Back",
  26376. image: {
  26377. source: "./media/characters/vidar/back.svg",
  26378. extra: 3131 / 2928,
  26379. bottom: 13.5 / 3141.5
  26380. }
  26381. },
  26382. feral: {
  26383. height: math.unit(2.5, "meters"),
  26384. weight: math.unit(2000, "kg"),
  26385. name: "Feral",
  26386. image: {
  26387. source: "./media/characters/vidar/feral.svg",
  26388. extra: 2790 / 1765,
  26389. bottom: 6 / 2796
  26390. }
  26391. },
  26392. },
  26393. [
  26394. {
  26395. name: "Normal",
  26396. height: math.unit(2.5, "meters"),
  26397. default: true
  26398. },
  26399. {
  26400. name: "Macro",
  26401. height: math.unit(100, "meters")
  26402. },
  26403. ]
  26404. ))
  26405. characterMakers.push(() => makeCharacter(
  26406. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26407. {
  26408. front: {
  26409. height: math.unit(5 + 9 / 12, "feet"),
  26410. weight: math.unit(120, "lb"),
  26411. name: "Front",
  26412. image: {
  26413. source: "./media/characters/ash/front.svg",
  26414. extra: 2189 / 1961,
  26415. bottom: 5.2 / 2194
  26416. }
  26417. },
  26418. },
  26419. [
  26420. {
  26421. name: "Normal",
  26422. height: math.unit(5 + 9 / 12, "feet"),
  26423. default: true
  26424. },
  26425. ]
  26426. ))
  26427. characterMakers.push(() => makeCharacter(
  26428. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26429. {
  26430. front: {
  26431. height: math.unit(9, "feet"),
  26432. weight: math.unit(10000, "lb"),
  26433. name: "Front",
  26434. image: {
  26435. source: "./media/characters/gygabite/front.svg",
  26436. bottom: 31.7 / 537.8,
  26437. extra: 505 / 370
  26438. }
  26439. },
  26440. },
  26441. [
  26442. {
  26443. name: "Normal",
  26444. height: math.unit(9, "feet"),
  26445. default: true
  26446. },
  26447. ]
  26448. ))
  26449. characterMakers.push(() => makeCharacter(
  26450. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26451. {
  26452. front: {
  26453. height: math.unit(12, "feet"),
  26454. weight: math.unit(35000, "lb"),
  26455. name: "Front",
  26456. image: {
  26457. source: "./media/characters/p0tat0/front.svg",
  26458. extra: 1065 / 921,
  26459. bottom: 55.7 / 1121.25
  26460. }
  26461. },
  26462. },
  26463. [
  26464. {
  26465. name: "Normal",
  26466. height: math.unit(12, "feet"),
  26467. default: true
  26468. },
  26469. ]
  26470. ))
  26471. characterMakers.push(() => makeCharacter(
  26472. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26473. {
  26474. side: {
  26475. height: math.unit(6.5, "feet"),
  26476. weight: math.unit(800, "lb"),
  26477. name: "Side",
  26478. image: {
  26479. source: "./media/characters/dusk/side.svg",
  26480. extra: 615 / 373,
  26481. bottom: 53 / 664
  26482. }
  26483. },
  26484. sitting: {
  26485. height: math.unit(7, "feet"),
  26486. weight: math.unit(800, "lb"),
  26487. name: "Sitting",
  26488. image: {
  26489. source: "./media/characters/dusk/sitting.svg",
  26490. extra: 753 / 425,
  26491. bottom: 33 / 774
  26492. }
  26493. },
  26494. head: {
  26495. height: math.unit(6.1, "feet"),
  26496. name: "Head",
  26497. image: {
  26498. source: "./media/characters/dusk/head.svg"
  26499. }
  26500. },
  26501. },
  26502. [
  26503. {
  26504. name: "Normal",
  26505. height: math.unit(7, "feet"),
  26506. default: true
  26507. },
  26508. ]
  26509. ))
  26510. characterMakers.push(() => makeCharacter(
  26511. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26512. {
  26513. front: {
  26514. height: math.unit(15, "feet"),
  26515. weight: math.unit(7000, "lb"),
  26516. name: "Front",
  26517. image: {
  26518. source: "./media/characters/jay-direwolf/front.svg",
  26519. extra: 1810 / 1732,
  26520. bottom: 66 / 1892
  26521. }
  26522. },
  26523. },
  26524. [
  26525. {
  26526. name: "Normal",
  26527. height: math.unit(15, "feet"),
  26528. default: true
  26529. },
  26530. ]
  26531. ))
  26532. characterMakers.push(() => makeCharacter(
  26533. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26534. {
  26535. front: {
  26536. height: math.unit(4 + 9 / 12, "feet"),
  26537. weight: math.unit(130, "lb"),
  26538. name: "Front",
  26539. image: {
  26540. source: "./media/characters/anchovie/front.svg",
  26541. extra: 382 / 350,
  26542. bottom: 25 / 409
  26543. }
  26544. },
  26545. back: {
  26546. height: math.unit(4 + 9 / 12, "feet"),
  26547. weight: math.unit(130, "lb"),
  26548. name: "Back",
  26549. image: {
  26550. source: "./media/characters/anchovie/back.svg",
  26551. extra: 385 / 352,
  26552. bottom: 16.6 / 402
  26553. }
  26554. },
  26555. frontDressed: {
  26556. height: math.unit(4 + 9 / 12, "feet"),
  26557. weight: math.unit(130, "lb"),
  26558. name: "Front (Dressed)",
  26559. image: {
  26560. source: "./media/characters/anchovie/front-dressed.svg",
  26561. extra: 382 / 350,
  26562. bottom: 25 / 409
  26563. }
  26564. },
  26565. backDressed: {
  26566. height: math.unit(4 + 9 / 12, "feet"),
  26567. weight: math.unit(130, "lb"),
  26568. name: "Back (Dressed)",
  26569. image: {
  26570. source: "./media/characters/anchovie/back-dressed.svg",
  26571. extra: 385 / 352,
  26572. bottom: 16.6 / 402
  26573. }
  26574. },
  26575. },
  26576. [
  26577. {
  26578. name: "Micro",
  26579. height: math.unit(6.4, "inches")
  26580. },
  26581. {
  26582. name: "Normal",
  26583. height: math.unit(4 + 9 / 12, "feet"),
  26584. default: true
  26585. },
  26586. ]
  26587. ))
  26588. characterMakers.push(() => makeCharacter(
  26589. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26590. {
  26591. front: {
  26592. height: math.unit(2, "meters"),
  26593. weight: math.unit(180, "lb"),
  26594. name: "Front",
  26595. image: {
  26596. source: "./media/characters/acidrenamon/front.svg",
  26597. extra: 987 / 890,
  26598. bottom: 22.8 / 1009
  26599. }
  26600. },
  26601. back: {
  26602. height: math.unit(2, "meters"),
  26603. weight: math.unit(180, "lb"),
  26604. name: "Back",
  26605. image: {
  26606. source: "./media/characters/acidrenamon/back.svg",
  26607. extra: 983 / 891,
  26608. bottom: 8.4 / 992
  26609. }
  26610. },
  26611. head: {
  26612. height: math.unit(1.92, "feet"),
  26613. name: "Head",
  26614. image: {
  26615. source: "./media/characters/acidrenamon/head.svg"
  26616. }
  26617. },
  26618. rump: {
  26619. height: math.unit(1.72, "feet"),
  26620. name: "Rump",
  26621. image: {
  26622. source: "./media/characters/acidrenamon/rump.svg"
  26623. }
  26624. },
  26625. tail: {
  26626. height: math.unit(4.2, "feet"),
  26627. name: "Tail",
  26628. image: {
  26629. source: "./media/characters/acidrenamon/tail.svg"
  26630. }
  26631. },
  26632. },
  26633. [
  26634. {
  26635. name: "Normal",
  26636. height: math.unit(2, "meters"),
  26637. default: true
  26638. },
  26639. {
  26640. name: "Minimacro",
  26641. height: math.unit(7, "meters")
  26642. },
  26643. {
  26644. name: "Macro",
  26645. height: math.unit(200, "meters")
  26646. },
  26647. {
  26648. name: "Gigamacro",
  26649. height: math.unit(0.2, "earths")
  26650. },
  26651. ]
  26652. ))
  26653. characterMakers.push(() => makeCharacter(
  26654. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26655. {
  26656. front: {
  26657. height: math.unit(6, "feet"),
  26658. weight: math.unit(150, "lb"),
  26659. name: "Front",
  26660. image: {
  26661. source: "./media/characters/kenzie-lee/front.svg",
  26662. extra: 1525 / 1465,
  26663. bottom: 45 / 1570
  26664. }
  26665. },
  26666. side: {
  26667. height: math.unit(6, "feet"),
  26668. weight: math.unit(150, "lb"),
  26669. name: "Side",
  26670. image: {
  26671. source: "./media/characters/kenzie-lee/side.svg",
  26672. extra: 5505 / 5383,
  26673. bottom: 60 / 5573
  26674. }
  26675. },
  26676. },
  26677. [
  26678. {
  26679. name: "Normal",
  26680. height: math.unit(152, "feet"),
  26681. default: true
  26682. },
  26683. {
  26684. name: "Megamacro",
  26685. height: math.unit(7, "miles")
  26686. },
  26687. {
  26688. name: "Gigamacro",
  26689. height: math.unit(8000, "miles")
  26690. },
  26691. ]
  26692. ))
  26693. characterMakers.push(() => makeCharacter(
  26694. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26695. {
  26696. side: {
  26697. height: math.unit(6, "feet"),
  26698. weight: math.unit(150, "lb"),
  26699. name: "Side",
  26700. image: {
  26701. source: "./media/characters/withers/side.svg",
  26702. extra: 1830 / 1728,
  26703. bottom: 96 / 1927
  26704. }
  26705. },
  26706. front: {
  26707. height: math.unit(6, "feet"),
  26708. weight: math.unit(150, "lb"),
  26709. name: "Front",
  26710. image: {
  26711. source: "./media/characters/withers/front.svg",
  26712. extra: 1514 / 1438,
  26713. bottom: 118 / 1632
  26714. }
  26715. },
  26716. },
  26717. [
  26718. {
  26719. name: "Macro",
  26720. height: math.unit(168, "feet"),
  26721. default: true
  26722. },
  26723. {
  26724. name: "Megamacro",
  26725. height: math.unit(15, "miles")
  26726. }
  26727. ]
  26728. ))
  26729. characterMakers.push(() => makeCharacter(
  26730. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26731. {
  26732. front: {
  26733. height: math.unit(6 + 7 / 12, "feet"),
  26734. weight: math.unit(250, "lb"),
  26735. name: "Front",
  26736. image: {
  26737. source: "./media/characters/nemoskii/front.svg",
  26738. extra: 2270 / 1734,
  26739. bottom: 86 / 2354
  26740. }
  26741. },
  26742. back: {
  26743. height: math.unit(6 + 7 / 12, "feet"),
  26744. weight: math.unit(250, "lb"),
  26745. name: "Back",
  26746. image: {
  26747. source: "./media/characters/nemoskii/back.svg",
  26748. extra: 1845 / 1788,
  26749. bottom: 10.5 / 1852
  26750. }
  26751. },
  26752. head: {
  26753. height: math.unit(1.31, "feet"),
  26754. name: "Head",
  26755. image: {
  26756. source: "./media/characters/nemoskii/head.svg"
  26757. }
  26758. },
  26759. },
  26760. [
  26761. {
  26762. name: "Normal",
  26763. height: math.unit(6 + 7 / 12, "feet"),
  26764. default: true
  26765. },
  26766. ]
  26767. ))
  26768. characterMakers.push(() => makeCharacter(
  26769. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26770. {
  26771. front: {
  26772. height: math.unit(1, "mile"),
  26773. weight: math.unit(265261.9, "lb"),
  26774. name: "Front",
  26775. image: {
  26776. source: "./media/characters/shui/front.svg",
  26777. extra: 1633 / 1564,
  26778. bottom: 91.5 / 1726
  26779. }
  26780. },
  26781. },
  26782. [
  26783. {
  26784. name: "Macro",
  26785. height: math.unit(1, "mile"),
  26786. default: true
  26787. },
  26788. ]
  26789. ))
  26790. characterMakers.push(() => makeCharacter(
  26791. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26792. {
  26793. front: {
  26794. height: math.unit(12 + 6 / 12, "feet"),
  26795. weight: math.unit(1342, "lb"),
  26796. name: "Front",
  26797. image: {
  26798. source: "./media/characters/arokh-takakura/front.svg",
  26799. extra: 1089 / 1043,
  26800. bottom: 77.4 / 1176.7
  26801. }
  26802. },
  26803. back: {
  26804. height: math.unit(12 + 6 / 12, "feet"),
  26805. weight: math.unit(1342, "lb"),
  26806. name: "Back",
  26807. image: {
  26808. source: "./media/characters/arokh-takakura/back.svg",
  26809. extra: 1046 / 1019,
  26810. bottom: 102 / 1150
  26811. }
  26812. },
  26813. },
  26814. [
  26815. {
  26816. name: "Big",
  26817. height: math.unit(12 + 6 / 12, "feet"),
  26818. default: true
  26819. },
  26820. ]
  26821. ))
  26822. characterMakers.push(() => makeCharacter(
  26823. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26824. {
  26825. front: {
  26826. height: math.unit(5 + 6 / 12, "feet"),
  26827. weight: math.unit(150, "lb"),
  26828. name: "Front",
  26829. image: {
  26830. source: "./media/characters/theo/front.svg",
  26831. extra: 1184 / 1131,
  26832. bottom: 7.4 / 1191
  26833. }
  26834. },
  26835. },
  26836. [
  26837. {
  26838. name: "Micro",
  26839. height: math.unit(5, "inches")
  26840. },
  26841. {
  26842. name: "Normal",
  26843. height: math.unit(5 + 6 / 12, "feet"),
  26844. default: true
  26845. },
  26846. ]
  26847. ))
  26848. characterMakers.push(() => makeCharacter(
  26849. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26850. {
  26851. front: {
  26852. height: math.unit(5 + 9 / 12, "feet"),
  26853. weight: math.unit(130, "lb"),
  26854. name: "Front",
  26855. image: {
  26856. source: "./media/characters/cecelia-swift/front.svg",
  26857. extra: 502 / 484,
  26858. bottom: 23 / 523
  26859. }
  26860. },
  26861. back: {
  26862. height: math.unit(5 + 9 / 12, "feet"),
  26863. weight: math.unit(130, "lb"),
  26864. name: "Back",
  26865. image: {
  26866. source: "./media/characters/cecelia-swift/back.svg",
  26867. extra: 499 / 485,
  26868. bottom: 12 / 511
  26869. }
  26870. },
  26871. head: {
  26872. height: math.unit(0.90, "feet"),
  26873. name: "Head",
  26874. image: {
  26875. source: "./media/characters/cecelia-swift/head.svg"
  26876. }
  26877. },
  26878. rump: {
  26879. height: math.unit(1.75, "feet"),
  26880. name: "Rump",
  26881. image: {
  26882. source: "./media/characters/cecelia-swift/rump.svg"
  26883. }
  26884. },
  26885. },
  26886. [
  26887. {
  26888. name: "Normal",
  26889. height: math.unit(5 + 9 / 12, "feet"),
  26890. default: true
  26891. },
  26892. {
  26893. name: "Big",
  26894. height: math.unit(50, "feet")
  26895. },
  26896. {
  26897. name: "Macro",
  26898. height: math.unit(100, "feet")
  26899. },
  26900. {
  26901. name: "Macro+",
  26902. height: math.unit(500, "feet")
  26903. },
  26904. {
  26905. name: "Macro++",
  26906. height: math.unit(1000, "feet")
  26907. },
  26908. ]
  26909. ))
  26910. characterMakers.push(() => makeCharacter(
  26911. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26912. {
  26913. front: {
  26914. height: math.unit(6, "feet"),
  26915. weight: math.unit(150, "lb"),
  26916. name: "Front",
  26917. image: {
  26918. source: "./media/characters/kaunan/front.svg",
  26919. extra: 2890 / 2523,
  26920. bottom: 49 / 2939
  26921. }
  26922. },
  26923. },
  26924. [
  26925. {
  26926. name: "Macro",
  26927. height: math.unit(150, "feet"),
  26928. default: true
  26929. },
  26930. ]
  26931. ))
  26932. characterMakers.push(() => makeCharacter(
  26933. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26934. {
  26935. front: {
  26936. height: math.unit(175, "cm"),
  26937. weight: math.unit(60, "kg"),
  26938. name: "Front",
  26939. image: {
  26940. source: "./media/characters/fei/front.svg",
  26941. extra: 2581 / 2400,
  26942. bottom: 82.2 / 2663
  26943. }
  26944. },
  26945. },
  26946. [
  26947. {
  26948. name: "Mortal",
  26949. height: math.unit(175, "cm")
  26950. },
  26951. {
  26952. name: "Normal",
  26953. height: math.unit(3500, "m"),
  26954. default: true
  26955. },
  26956. {
  26957. name: "Stroll",
  26958. height: math.unit(17.5, "km")
  26959. },
  26960. {
  26961. name: "Showoff",
  26962. height: math.unit(175, "km")
  26963. },
  26964. ]
  26965. ))
  26966. characterMakers.push(() => makeCharacter(
  26967. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26968. {
  26969. front: {
  26970. height: math.unit(7, "feet"),
  26971. weight: math.unit(1000, "kg"),
  26972. name: "Front",
  26973. image: {
  26974. source: "./media/characters/edrax/front.svg",
  26975. extra: 2838 / 2550,
  26976. bottom: 130 / 2968
  26977. }
  26978. },
  26979. },
  26980. [
  26981. {
  26982. name: "Small",
  26983. height: math.unit(7, "feet")
  26984. },
  26985. {
  26986. name: "Normal",
  26987. height: math.unit(1500, "meters")
  26988. },
  26989. {
  26990. name: "Mega",
  26991. height: math.unit(12000000, "km"),
  26992. default: true
  26993. },
  26994. {
  26995. name: "Megamacro",
  26996. height: math.unit(10600000, "lightyears")
  26997. },
  26998. {
  26999. name: "Hypermacro",
  27000. height: math.unit(256, "yottameters")
  27001. },
  27002. ]
  27003. ))
  27004. characterMakers.push(() => makeCharacter(
  27005. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27006. {
  27007. front: {
  27008. height: math.unit(10, "feet"),
  27009. weight: math.unit(750, "lb"),
  27010. name: "Front",
  27011. image: {
  27012. source: "./media/characters/clove/front.svg",
  27013. extra: 2031 / 1860,
  27014. bottom: 47.8 / 2080
  27015. }
  27016. },
  27017. back: {
  27018. height: math.unit(10, "feet"),
  27019. weight: math.unit(750, "lb"),
  27020. name: "Back",
  27021. image: {
  27022. source: "./media/characters/clove/back.svg",
  27023. extra: 2025 / 1859,
  27024. bottom: 46 / 2071
  27025. }
  27026. },
  27027. },
  27028. [
  27029. {
  27030. name: "Normal",
  27031. height: math.unit(10, "feet")
  27032. },
  27033. ]
  27034. ))
  27035. characterMakers.push(() => makeCharacter(
  27036. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27037. {
  27038. front: {
  27039. height: math.unit(4, "feet"),
  27040. weight: math.unit(50, "lb"),
  27041. name: "Front",
  27042. image: {
  27043. source: "./media/characters/alex-rabbit/front.svg",
  27044. extra: 507 / 458,
  27045. bottom: 18.5 / 527
  27046. }
  27047. },
  27048. back: {
  27049. height: math.unit(4, "feet"),
  27050. weight: math.unit(50, "lb"),
  27051. name: "Back",
  27052. image: {
  27053. source: "./media/characters/alex-rabbit/back.svg",
  27054. extra: 502 / 460,
  27055. bottom: 18.9 / 521
  27056. }
  27057. },
  27058. },
  27059. [
  27060. {
  27061. name: "Normal",
  27062. height: math.unit(4, "feet"),
  27063. default: true
  27064. },
  27065. ]
  27066. ))
  27067. characterMakers.push(() => makeCharacter(
  27068. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27069. {
  27070. front: {
  27071. height: math.unit(1 + 3 / 12, "feet"),
  27072. weight: math.unit(80, "lb"),
  27073. name: "Front",
  27074. image: {
  27075. source: "./media/characters/zander-rose/front.svg",
  27076. extra: 916 / 797,
  27077. bottom: 17 / 933
  27078. }
  27079. },
  27080. back: {
  27081. height: math.unit(1 + 3 / 12, "feet"),
  27082. weight: math.unit(80, "lb"),
  27083. name: "Back",
  27084. image: {
  27085. source: "./media/characters/zander-rose/back.svg",
  27086. extra: 903 / 779,
  27087. bottom: 31 / 934
  27088. }
  27089. },
  27090. },
  27091. [
  27092. {
  27093. name: "Normal",
  27094. height: math.unit(1 + 3 / 12, "feet"),
  27095. default: true
  27096. },
  27097. ]
  27098. ))
  27099. characterMakers.push(() => makeCharacter(
  27100. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27101. {
  27102. anthro: {
  27103. height: math.unit(6, "feet"),
  27104. weight: math.unit(150, "lb"),
  27105. name: "Anthro",
  27106. image: {
  27107. source: "./media/characters/razz/anthro.svg",
  27108. extra: 1437 / 1343,
  27109. bottom: 48 / 1485
  27110. }
  27111. },
  27112. feral: {
  27113. height: math.unit(6, "feet"),
  27114. weight: math.unit(150, "lb"),
  27115. name: "Feral",
  27116. image: {
  27117. source: "./media/characters/razz/feral.svg",
  27118. extra: 2569 / 1385,
  27119. bottom: 95 / 2664
  27120. }
  27121. },
  27122. },
  27123. [
  27124. {
  27125. name: "Normal",
  27126. height: math.unit(6, "feet"),
  27127. default: true
  27128. },
  27129. ]
  27130. ))
  27131. characterMakers.push(() => makeCharacter(
  27132. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27133. {
  27134. front: {
  27135. height: math.unit(9 + 4 / 12, "feet"),
  27136. weight: math.unit(500, "lb"),
  27137. name: "Front",
  27138. image: {
  27139. source: "./media/characters/morrigan/front.svg",
  27140. extra: 2707 / 2579,
  27141. bottom: 156 / 2863
  27142. }
  27143. },
  27144. },
  27145. [
  27146. {
  27147. name: "Normal",
  27148. height: math.unit(9 + 4 / 12, "feet"),
  27149. default: true
  27150. },
  27151. ]
  27152. ))
  27153. characterMakers.push(() => makeCharacter(
  27154. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27155. {
  27156. front: {
  27157. height: math.unit(5, "stories"),
  27158. weight: math.unit(4000, "lb"),
  27159. name: "Front",
  27160. image: {
  27161. source: "./media/characters/jenene/front.svg",
  27162. extra: 1780 / 1710,
  27163. bottom: 57 / 1837
  27164. }
  27165. },
  27166. },
  27167. [
  27168. {
  27169. name: "Normal",
  27170. height: math.unit(5, "stories"),
  27171. default: true
  27172. },
  27173. ]
  27174. ))
  27175. characterMakers.push(() => makeCharacter(
  27176. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27177. {
  27178. front: {
  27179. height: math.unit(6, "feet"),
  27180. weight: math.unit(150, "lb"),
  27181. name: "Front",
  27182. image: {
  27183. source: "./media/characters/vix-archaser/front.svg",
  27184. extra: 2767 / 2562,
  27185. bottom: 36 / 2803
  27186. }
  27187. },
  27188. },
  27189. [
  27190. {
  27191. name: "Micro",
  27192. height: math.unit(1, "foot")
  27193. },
  27194. {
  27195. name: "Normal",
  27196. height: math.unit(6 + 5 / 12, "feet")
  27197. },
  27198. {
  27199. name: "Minimacro",
  27200. height: math.unit(500, "feet")
  27201. },
  27202. {
  27203. name: "Macro",
  27204. height: math.unit(4, "miles")
  27205. },
  27206. {
  27207. name: "Megamacro",
  27208. height: math.unit(250, "miles"),
  27209. default: true
  27210. },
  27211. {
  27212. name: "Gigamacro",
  27213. height: math.unit(1, "universe")
  27214. },
  27215. {
  27216. name: "Endgame",
  27217. height: math.unit(100, "multiverses")
  27218. }
  27219. ]
  27220. ))
  27221. characterMakers.push(() => makeCharacter(
  27222. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27223. {
  27224. taurSfw: {
  27225. height: math.unit(10, "meters"),
  27226. weight: math.unit(17500, "kg"),
  27227. name: "Taur",
  27228. image: {
  27229. source: "./media/characters/faey/taur-sfw.svg",
  27230. extra: 1200 / 968,
  27231. bottom: 41 / 1241
  27232. }
  27233. },
  27234. chestmaw: {
  27235. height: math.unit(2.01, "meters"),
  27236. name: "Chestmaw",
  27237. image: {
  27238. source: "./media/characters/faey/chestmaw.svg"
  27239. }
  27240. },
  27241. foot: {
  27242. height: math.unit(2.43, "meters"),
  27243. name: "Foot",
  27244. image: {
  27245. source: "./media/characters/faey/foot.svg"
  27246. }
  27247. },
  27248. jaws: {
  27249. height: math.unit(1.66, "meters"),
  27250. name: "Jaws",
  27251. image: {
  27252. source: "./media/characters/faey/jaws.svg"
  27253. }
  27254. },
  27255. tongues: {
  27256. height: math.unit(2.01, "meters"),
  27257. name: "Tongues",
  27258. image: {
  27259. source: "./media/characters/faey/tongues.svg"
  27260. }
  27261. },
  27262. },
  27263. [
  27264. {
  27265. name: "Small",
  27266. height: math.unit(10, "meters"),
  27267. default: true
  27268. },
  27269. {
  27270. name: "Big",
  27271. height: math.unit(500000, "km")
  27272. },
  27273. ]
  27274. ))
  27275. characterMakers.push(() => makeCharacter(
  27276. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27277. {
  27278. front: {
  27279. height: math.unit(7, "feet"),
  27280. weight: math.unit(275, "lb"),
  27281. name: "Front",
  27282. image: {
  27283. source: "./media/characters/roku/front.svg",
  27284. extra: 903 / 878,
  27285. bottom: 37 / 940
  27286. }
  27287. },
  27288. },
  27289. [
  27290. {
  27291. name: "Normal",
  27292. height: math.unit(7, "feet"),
  27293. default: true
  27294. },
  27295. {
  27296. name: "Macro",
  27297. height: math.unit(500, "feet")
  27298. },
  27299. {
  27300. name: "Megamacro",
  27301. height: math.unit(200, "miles")
  27302. },
  27303. ]
  27304. ))
  27305. characterMakers.push(() => makeCharacter(
  27306. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27307. {
  27308. front: {
  27309. height: math.unit(6 + 2 / 12, "feet"),
  27310. weight: math.unit(150, "lb"),
  27311. name: "Front",
  27312. image: {
  27313. source: "./media/characters/lira/front.svg",
  27314. extra: 1727 / 1605,
  27315. bottom: 26 / 1753
  27316. }
  27317. },
  27318. back: {
  27319. height: math.unit(6 + 2 / 12, "feet"),
  27320. weight: math.unit(150, "lb"),
  27321. name: "Back",
  27322. image: {
  27323. source: "./media/characters/lira/back.svg",
  27324. extra: 1713 / 159,
  27325. bottom: 20 / 1733
  27326. }
  27327. },
  27328. hand: {
  27329. height: math.unit(0.75, "feet"),
  27330. name: "Hand",
  27331. image: {
  27332. source: "./media/characters/lira/hand.svg"
  27333. }
  27334. },
  27335. maw: {
  27336. height: math.unit(0.65, "feet"),
  27337. name: "Maw",
  27338. image: {
  27339. source: "./media/characters/lira/maw.svg"
  27340. }
  27341. },
  27342. pawDigi: {
  27343. height: math.unit(1.6, "feet"),
  27344. name: "Paw Digi",
  27345. image: {
  27346. source: "./media/characters/lira/paw-digi.svg"
  27347. }
  27348. },
  27349. pawPlanti: {
  27350. height: math.unit(1.4, "feet"),
  27351. name: "Paw Planti",
  27352. image: {
  27353. source: "./media/characters/lira/paw-planti.svg"
  27354. }
  27355. },
  27356. },
  27357. [
  27358. {
  27359. name: "Normal",
  27360. height: math.unit(6 + 2 / 12, "feet"),
  27361. default: true
  27362. },
  27363. {
  27364. name: "Macro",
  27365. height: math.unit(100, "feet")
  27366. },
  27367. {
  27368. name: "Macro²",
  27369. height: math.unit(1600, "feet")
  27370. },
  27371. {
  27372. name: "Planetary",
  27373. height: math.unit(20, "earths")
  27374. },
  27375. ]
  27376. ))
  27377. characterMakers.push(() => makeCharacter(
  27378. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27379. {
  27380. front: {
  27381. height: math.unit(6, "feet"),
  27382. weight: math.unit(150, "lb"),
  27383. name: "Front",
  27384. image: {
  27385. source: "./media/characters/hadjet/front.svg",
  27386. extra: 1480 / 1346,
  27387. bottom: 26 / 1506
  27388. }
  27389. },
  27390. frontNsfw: {
  27391. height: math.unit(6, "feet"),
  27392. weight: math.unit(150, "lb"),
  27393. name: "Front (NSFW)",
  27394. image: {
  27395. source: "./media/characters/hadjet/front-nsfw.svg",
  27396. extra: 1440 / 1358,
  27397. bottom: 52 / 1492
  27398. }
  27399. },
  27400. },
  27401. [
  27402. {
  27403. name: "Macro",
  27404. height: math.unit(10, "stories"),
  27405. default: true
  27406. },
  27407. {
  27408. name: "Megamacro",
  27409. height: math.unit(1.5, "miles")
  27410. },
  27411. {
  27412. name: "Megamacro+",
  27413. height: math.unit(5, "miles")
  27414. },
  27415. ]
  27416. ))
  27417. characterMakers.push(() => makeCharacter(
  27418. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27419. {
  27420. side: {
  27421. height: math.unit(106, "feet"),
  27422. weight: math.unit(500, "tonnes"),
  27423. name: "Side",
  27424. image: {
  27425. source: "./media/characters/kodran/side.svg",
  27426. extra: 553 / 480,
  27427. bottom: 33 / 586
  27428. }
  27429. },
  27430. front: {
  27431. height: math.unit(132, "feet"),
  27432. weight: math.unit(500, "tonnes"),
  27433. name: "Front",
  27434. image: {
  27435. source: "./media/characters/kodran/front.svg",
  27436. extra: 667 / 643,
  27437. bottom: 42 / 709
  27438. }
  27439. },
  27440. flying: {
  27441. height: math.unit(350, "feet"),
  27442. weight: math.unit(500, "tonnes"),
  27443. name: "Flying",
  27444. image: {
  27445. source: "./media/characters/kodran/flying.svg"
  27446. }
  27447. },
  27448. foot: {
  27449. height: math.unit(33, "feet"),
  27450. name: "Foot",
  27451. image: {
  27452. source: "./media/characters/kodran/foot.svg"
  27453. }
  27454. },
  27455. footFront: {
  27456. height: math.unit(19, "feet"),
  27457. name: "Foot (Front)",
  27458. image: {
  27459. source: "./media/characters/kodran/foot-front.svg",
  27460. extra: 261 / 261,
  27461. bottom: 91 / 352
  27462. }
  27463. },
  27464. headFront: {
  27465. height: math.unit(53, "feet"),
  27466. name: "Head (Front)",
  27467. image: {
  27468. source: "./media/characters/kodran/head-front.svg"
  27469. }
  27470. },
  27471. headSide: {
  27472. height: math.unit(65, "feet"),
  27473. name: "Head (Side)",
  27474. image: {
  27475. source: "./media/characters/kodran/head-side.svg"
  27476. }
  27477. },
  27478. throat: {
  27479. height: math.unit(79, "feet"),
  27480. name: "Throat",
  27481. image: {
  27482. source: "./media/characters/kodran/throat.svg"
  27483. }
  27484. },
  27485. },
  27486. [
  27487. {
  27488. name: "Large",
  27489. height: math.unit(106, "feet"),
  27490. default: true
  27491. },
  27492. ]
  27493. ))
  27494. characterMakers.push(() => makeCharacter(
  27495. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27496. {
  27497. side: {
  27498. height: math.unit(11, "feet"),
  27499. weight: math.unit(150, "lb"),
  27500. name: "Side",
  27501. image: {
  27502. source: "./media/characters/pyxaron/side.svg",
  27503. extra: 305 / 195,
  27504. bottom: 17 / 322
  27505. }
  27506. },
  27507. },
  27508. [
  27509. {
  27510. name: "Normal",
  27511. height: math.unit(11, "feet")
  27512. },
  27513. ]
  27514. ))
  27515. characterMakers.push(() => makeCharacter(
  27516. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27517. {
  27518. front: {
  27519. height: math.unit(6, "feet"),
  27520. weight: math.unit(150, "lb"),
  27521. name: "Front",
  27522. image: {
  27523. source: "./media/characters/meep/front.svg",
  27524. extra: 88 / 80,
  27525. bottom: 6 / 94
  27526. }
  27527. },
  27528. },
  27529. [
  27530. {
  27531. name: "Fun Sized",
  27532. height: math.unit(2, "inches"),
  27533. default: true
  27534. },
  27535. {
  27536. name: "Friend Sized",
  27537. height: math.unit(8, "inches")
  27538. },
  27539. ]
  27540. ))
  27541. characterMakers.push(() => makeCharacter(
  27542. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27543. {
  27544. front: {
  27545. height: math.unit(15, "feet"),
  27546. weight: math.unit(2500, "lb"),
  27547. name: "Front",
  27548. image: {
  27549. source: "./media/characters/holly-rabbit/front.svg",
  27550. extra: 1433 / 1233,
  27551. bottom: 125 / 1558
  27552. }
  27553. },
  27554. dick: {
  27555. height: math.unit(4.6, "feet"),
  27556. name: "Dick",
  27557. image: {
  27558. source: "./media/characters/holly-rabbit/dick.svg"
  27559. }
  27560. },
  27561. },
  27562. [
  27563. {
  27564. name: "Normal",
  27565. height: math.unit(15, "feet"),
  27566. default: true
  27567. },
  27568. {
  27569. name: "Macro",
  27570. height: math.unit(250, "feet")
  27571. },
  27572. {
  27573. name: "Macro+",
  27574. height: math.unit(2500, "feet")
  27575. },
  27576. ]
  27577. ))
  27578. characterMakers.push(() => makeCharacter(
  27579. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27580. {
  27581. front: {
  27582. height: math.unit(3.02, "meters"),
  27583. weight: math.unit(500, "kg"),
  27584. name: "Front",
  27585. image: {
  27586. source: "./media/characters/drena/front.svg",
  27587. extra: 282 / 243,
  27588. bottom: 8 / 290
  27589. }
  27590. },
  27591. side: {
  27592. height: math.unit(3.02, "meters"),
  27593. weight: math.unit(500, "kg"),
  27594. name: "Side",
  27595. image: {
  27596. source: "./media/characters/drena/side.svg",
  27597. extra: 280 / 245,
  27598. bottom: 10 / 290
  27599. }
  27600. },
  27601. back: {
  27602. height: math.unit(3.02, "meters"),
  27603. weight: math.unit(500, "kg"),
  27604. name: "Back",
  27605. image: {
  27606. source: "./media/characters/drena/back.svg",
  27607. extra: 278 / 243,
  27608. bottom: 2 / 280
  27609. }
  27610. },
  27611. foot: {
  27612. height: math.unit(0.75, "meters"),
  27613. name: "Foot",
  27614. image: {
  27615. source: "./media/characters/drena/foot.svg"
  27616. }
  27617. },
  27618. maw: {
  27619. height: math.unit(0.82, "meters"),
  27620. name: "Maw",
  27621. image: {
  27622. source: "./media/characters/drena/maw.svg"
  27623. }
  27624. },
  27625. rump: {
  27626. height: math.unit(0.93, "meters"),
  27627. name: "Rump",
  27628. image: {
  27629. source: "./media/characters/drena/rump.svg"
  27630. }
  27631. },
  27632. },
  27633. [
  27634. {
  27635. name: "Normal",
  27636. height: math.unit(3.02, "meters"),
  27637. default: true
  27638. },
  27639. ]
  27640. ))
  27641. characterMakers.push(() => makeCharacter(
  27642. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27643. {
  27644. front: {
  27645. height: math.unit(6 + 4 / 12, "feet"),
  27646. weight: math.unit(250, "lb"),
  27647. name: "Front",
  27648. image: {
  27649. source: "./media/characters/remmyzilla/front.svg",
  27650. extra: 4033 / 3588,
  27651. bottom: 123 / 4156
  27652. }
  27653. },
  27654. back: {
  27655. height: math.unit(6 + 4 / 12, "feet"),
  27656. weight: math.unit(250, "lb"),
  27657. name: "Back",
  27658. image: {
  27659. source: "./media/characters/remmyzilla/back.svg",
  27660. extra: 2687 / 2555,
  27661. bottom: 48 / 2735
  27662. }
  27663. },
  27664. frontFancy: {
  27665. height: math.unit(6 + 4 / 12, "feet"),
  27666. weight: math.unit(250, "lb"),
  27667. name: "Front (Fancy)",
  27668. image: {
  27669. source: "./media/characters/remmyzilla/front-fancy.svg",
  27670. extra: 4119 / 3419,
  27671. bottom: 237 / 4356
  27672. }
  27673. },
  27674. paw: {
  27675. height: math.unit(1.73, "feet"),
  27676. name: "Paw",
  27677. image: {
  27678. source: "./media/characters/remmyzilla/paw.svg"
  27679. }
  27680. },
  27681. maw: {
  27682. height: math.unit(1.73, "feet"),
  27683. name: "Maw",
  27684. image: {
  27685. source: "./media/characters/remmyzilla/maw.svg"
  27686. }
  27687. },
  27688. },
  27689. [
  27690. {
  27691. name: "Normal",
  27692. height: math.unit(6 + 4 / 12, "feet")
  27693. },
  27694. {
  27695. name: "Minimacro",
  27696. height: math.unit(12 + 8 / 12, "feet")
  27697. },
  27698. {
  27699. name: "Normal",
  27700. height: math.unit(640, "feet"),
  27701. default: true
  27702. },
  27703. {
  27704. name: "Megamacro",
  27705. height: math.unit(6400, "feet")
  27706. },
  27707. {
  27708. name: "Gigamacro",
  27709. height: math.unit(64000, "miles")
  27710. },
  27711. ]
  27712. ))
  27713. characterMakers.push(() => makeCharacter(
  27714. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27715. {
  27716. front: {
  27717. height: math.unit(2.5, "meters"),
  27718. weight: math.unit(300, "lb"),
  27719. name: "Front",
  27720. image: {
  27721. source: "./media/characters/lawrence/front.svg",
  27722. extra: 357 / 335,
  27723. bottom: 30 / 387
  27724. }
  27725. },
  27726. back: {
  27727. height: math.unit(2.5, "meters"),
  27728. weight: math.unit(300, "lb"),
  27729. name: "Back",
  27730. image: {
  27731. source: "./media/characters/lawrence/back.svg",
  27732. extra: 357 / 338,
  27733. bottom: 16 / 373
  27734. }
  27735. },
  27736. head: {
  27737. height: math.unit(0.9, "meter"),
  27738. name: "Head",
  27739. image: {
  27740. source: "./media/characters/lawrence/head.svg"
  27741. }
  27742. },
  27743. maw: {
  27744. height: math.unit(0.7, "meter"),
  27745. name: "Maw",
  27746. image: {
  27747. source: "./media/characters/lawrence/maw.svg"
  27748. }
  27749. },
  27750. footBottom: {
  27751. height: math.unit(0.5, "meter"),
  27752. name: "Foot (Bottom)",
  27753. image: {
  27754. source: "./media/characters/lawrence/foot-bottom.svg"
  27755. }
  27756. },
  27757. footTop: {
  27758. height: math.unit(0.5, "meter"),
  27759. name: "Foot (Top)",
  27760. image: {
  27761. source: "./media/characters/lawrence/foot-top.svg"
  27762. }
  27763. },
  27764. },
  27765. [
  27766. {
  27767. name: "Normal",
  27768. height: math.unit(2.5, "meters"),
  27769. default: true
  27770. },
  27771. {
  27772. name: "Macro",
  27773. height: math.unit(95, "meters")
  27774. },
  27775. {
  27776. name: "Megamacro",
  27777. height: math.unit(150, "km")
  27778. },
  27779. ]
  27780. ))
  27781. characterMakers.push(() => makeCharacter(
  27782. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27783. {
  27784. front: {
  27785. height: math.unit(4.2, "meters"),
  27786. name: "Front",
  27787. image: {
  27788. source: "./media/characters/sydney/front.svg",
  27789. extra: 1323 / 1277,
  27790. bottom: 111 / 1434
  27791. }
  27792. },
  27793. },
  27794. [
  27795. {
  27796. name: "Normal",
  27797. height: math.unit(4.2, "meters")
  27798. },
  27799. ]
  27800. ))
  27801. characterMakers.push(() => makeCharacter(
  27802. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27803. {
  27804. back: {
  27805. height: math.unit(201, "feet"),
  27806. name: "Back",
  27807. image: {
  27808. source: "./media/characters/jessica/back.svg",
  27809. extra: 273 / 259,
  27810. bottom: 7 / 280
  27811. }
  27812. },
  27813. },
  27814. [
  27815. {
  27816. name: "Normal",
  27817. height: math.unit(201, "feet"),
  27818. default: true
  27819. },
  27820. {
  27821. name: "Megamacro",
  27822. height: math.unit(8, "miles")
  27823. },
  27824. ]
  27825. ))
  27826. characterMakers.push(() => makeCharacter(
  27827. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27828. {
  27829. side: {
  27830. height: math.unit(320, "cm"),
  27831. name: "Side",
  27832. image: {
  27833. source: "./media/characters/victoria/side.svg",
  27834. extra: 778 / 346,
  27835. bottom: 56 / 834
  27836. }
  27837. },
  27838. maw: {
  27839. height: math.unit(5.9, "feet"),
  27840. name: "Maw",
  27841. image: {
  27842. source: "./media/characters/victoria/maw.svg"
  27843. }
  27844. },
  27845. },
  27846. [
  27847. {
  27848. name: "Normal",
  27849. height: math.unit(320, "cm"),
  27850. default: true
  27851. },
  27852. ]
  27853. ))
  27854. characterMakers.push(() => makeCharacter(
  27855. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27856. {
  27857. front: {
  27858. height: math.unit(5 + 6 / 12, "feet"),
  27859. name: "Front",
  27860. image: {
  27861. source: "./media/characters/cat/front.svg",
  27862. extra: 1374 / 1257,
  27863. bottom: 59 / 1433
  27864. }
  27865. },
  27866. back: {
  27867. height: math.unit(5 + 6 / 12, "feet"),
  27868. name: "Back",
  27869. image: {
  27870. source: "./media/characters/cat/back.svg",
  27871. extra: 1337 / 1226,
  27872. bottom: 34 / 1371
  27873. }
  27874. },
  27875. taur: {
  27876. height: math.unit(7, "feet"),
  27877. name: "Taur",
  27878. image: {
  27879. source: "./media/characters/cat/taur.svg",
  27880. extra: 1345 / 1231,
  27881. bottom: 66 / 1411
  27882. }
  27883. },
  27884. lucario: {
  27885. height: math.unit(4, "feet"),
  27886. name: "Lucario",
  27887. image: {
  27888. source: "./media/characters/cat/lucario.svg",
  27889. extra: 1470 / 1318,
  27890. bottom: 65 / 1535
  27891. }
  27892. },
  27893. megaLucario: {
  27894. height: math.unit(4, "feet"),
  27895. name: "Mega Lucario",
  27896. image: {
  27897. source: "./media/characters/cat/mega-lucario.svg",
  27898. extra: 1515 / 1319,
  27899. bottom: 63 / 1578
  27900. }
  27901. },
  27902. nickit: {
  27903. height: math.unit(2, "feet"),
  27904. name: "Nickit",
  27905. image: {
  27906. source: "./media/characters/cat/nickit.svg",
  27907. extra: 1980 / 1585,
  27908. bottom: 102 / 2082
  27909. }
  27910. },
  27911. lopunnyFront: {
  27912. height: math.unit(5, "feet"),
  27913. name: "Lopunny (Front)",
  27914. image: {
  27915. source: "./media/characters/cat/lopunny-front.svg",
  27916. extra: 1782 / 1469,
  27917. bottom: 38 / 1820
  27918. }
  27919. },
  27920. lopunnyBack: {
  27921. height: math.unit(5, "feet"),
  27922. name: "Lopunny (Back)",
  27923. image: {
  27924. source: "./media/characters/cat/lopunny-back.svg",
  27925. extra: 1660 / 1490,
  27926. bottom: 25 / 1685
  27927. }
  27928. },
  27929. },
  27930. [
  27931. {
  27932. name: "Really small",
  27933. height: math.unit(1, "nm")
  27934. },
  27935. {
  27936. name: "Micro",
  27937. height: math.unit(5, "inches")
  27938. },
  27939. {
  27940. name: "Normal",
  27941. height: math.unit(5 + 6 / 12, "feet"),
  27942. default: true
  27943. },
  27944. {
  27945. name: "Macro",
  27946. height: math.unit(50, "feet")
  27947. },
  27948. {
  27949. name: "Macro+",
  27950. height: math.unit(150, "feet")
  27951. },
  27952. {
  27953. name: "Megamacro",
  27954. height: math.unit(100, "miles")
  27955. },
  27956. ]
  27957. ))
  27958. characterMakers.push(() => makeCharacter(
  27959. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  27960. {
  27961. front: {
  27962. height: math.unit(63.4, "meters"),
  27963. weight: math.unit(3.28349e+6, "kilograms"),
  27964. name: "Front",
  27965. image: {
  27966. source: "./media/characters/kirina-violet/front.svg",
  27967. extra: 2812 / 2725,
  27968. bottom: 0 / 2812
  27969. }
  27970. },
  27971. back: {
  27972. height: math.unit(63.4, "meters"),
  27973. weight: math.unit(3.28349e+6, "kilograms"),
  27974. name: "Back",
  27975. image: {
  27976. source: "./media/characters/kirina-violet/back.svg",
  27977. extra: 2812 / 2725,
  27978. bottom: 0 / 2812
  27979. }
  27980. },
  27981. mouth: {
  27982. height: math.unit(4.35, "meters"),
  27983. name: "Mouth",
  27984. image: {
  27985. source: "./media/characters/kirina-violet/mouth.svg"
  27986. }
  27987. },
  27988. paw: {
  27989. height: math.unit(5.6, "meters"),
  27990. name: "Paw",
  27991. image: {
  27992. source: "./media/characters/kirina-violet/paw.svg"
  27993. }
  27994. },
  27995. tail: {
  27996. height: math.unit(18, "meters"),
  27997. name: "Tail",
  27998. image: {
  27999. source: "./media/characters/kirina-violet/tail.svg"
  28000. }
  28001. },
  28002. },
  28003. [
  28004. {
  28005. name: "Macro",
  28006. height: math.unit(63.4, "meters"),
  28007. default: true
  28008. },
  28009. ]
  28010. ))
  28011. characterMakers.push(() => makeCharacter(
  28012. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28013. {
  28014. front: {
  28015. height: math.unit(60, "feet"),
  28016. name: "Front",
  28017. image: {
  28018. source: "./media/characters/cat-gigachu/front.svg",
  28019. extra: 1024 / 780,
  28020. bottom: 23 / 1047
  28021. }
  28022. },
  28023. back: {
  28024. height: math.unit(60, "feet"),
  28025. name: "Back",
  28026. image: {
  28027. source: "./media/characters/cat-gigachu/back.svg",
  28028. extra: 1024 / 780,
  28029. bottom: 23 / 1047
  28030. }
  28031. },
  28032. },
  28033. [
  28034. {
  28035. name: "Dynamax",
  28036. height: math.unit(60, "feet"),
  28037. default: true
  28038. },
  28039. ]
  28040. ))
  28041. characterMakers.push(() => makeCharacter(
  28042. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28043. {
  28044. front: {
  28045. height: math.unit(6, "feet"),
  28046. weight: math.unit(150, "lb"),
  28047. name: "Front",
  28048. image: {
  28049. source: "./media/characters/sfaiyan/front.svg",
  28050. extra: 999 / 978,
  28051. bottom: 5 / 1004
  28052. }
  28053. },
  28054. },
  28055. [
  28056. {
  28057. name: "Normal",
  28058. height: math.unit(1.82, "meters")
  28059. },
  28060. {
  28061. name: "Giant",
  28062. height: math.unit(2.27, "km"),
  28063. default: true
  28064. },
  28065. ]
  28066. ))
  28067. characterMakers.push(() => makeCharacter(
  28068. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28069. {
  28070. front: {
  28071. height: math.unit(179, "cm"),
  28072. weight: math.unit(100, "kg"),
  28073. name: "Front",
  28074. image: {
  28075. source: "./media/characters/raunehkeli/front.svg",
  28076. extra: 1934 / 1926,
  28077. bottom: 0 / 1934
  28078. }
  28079. },
  28080. },
  28081. [
  28082. {
  28083. name: "Normal",
  28084. height: math.unit(179, "cm")
  28085. },
  28086. {
  28087. name: "Maximum",
  28088. height: math.unit(575, "meters"),
  28089. default: true
  28090. },
  28091. ]
  28092. ))
  28093. characterMakers.push(() => makeCharacter(
  28094. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28095. {
  28096. front: {
  28097. height: math.unit(6, "feet"),
  28098. weight: math.unit(150, "lb"),
  28099. name: "Front",
  28100. image: {
  28101. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28102. extra: 2625 / 2518,
  28103. bottom: 60 / 2685
  28104. }
  28105. },
  28106. },
  28107. [
  28108. {
  28109. name: "Normal",
  28110. height: math.unit(6 + 2 / 12, "feet"),
  28111. default: true
  28112. },
  28113. {
  28114. name: "Macro",
  28115. height: math.unit(1180, "feet")
  28116. },
  28117. ]
  28118. ))
  28119. characterMakers.push(() => makeCharacter(
  28120. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28121. {
  28122. front: {
  28123. height: math.unit(5 + 6 / 12, "feet"),
  28124. weight: math.unit(108, "lb"),
  28125. name: "Front",
  28126. image: {
  28127. source: "./media/characters/lilith-zott/front.svg",
  28128. extra: 2510 / 2238,
  28129. bottom: 100 / 2610
  28130. }
  28131. },
  28132. frontDressed: {
  28133. height: math.unit(5 + 6 / 12, "feet"),
  28134. weight: math.unit(108, "lb"),
  28135. name: "Front (Dressed)",
  28136. image: {
  28137. source: "./media/characters/lilith-zott/front-dressed.svg",
  28138. extra: 2510 / 2238,
  28139. bottom: 100 / 2610
  28140. }
  28141. },
  28142. },
  28143. [
  28144. {
  28145. name: "Normal",
  28146. height: math.unit(5 + 6 / 12, "feet")
  28147. },
  28148. {
  28149. name: "Macro",
  28150. height: math.unit(200, "feet"),
  28151. default: true
  28152. },
  28153. {
  28154. name: "Macro+",
  28155. height: math.unit(1030, "feet")
  28156. },
  28157. ]
  28158. ))
  28159. characterMakers.push(() => makeCharacter(
  28160. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28161. {
  28162. front: {
  28163. height: math.unit(6, "feet"),
  28164. weight: math.unit(150, "lb"),
  28165. name: "Front",
  28166. image: {
  28167. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28168. extra: 2567 / 2435,
  28169. bottom: 39 / 2606
  28170. }
  28171. },
  28172. frontSuper: {
  28173. height: math.unit(6, "feet"),
  28174. name: "Front (Super)",
  28175. image: {
  28176. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28177. extra: 2567 / 2435,
  28178. bottom: 39 / 2606
  28179. }
  28180. },
  28181. },
  28182. [
  28183. {
  28184. name: "Normal",
  28185. height: math.unit(5 + 10 / 12, "feet")
  28186. },
  28187. {
  28188. name: "Macro",
  28189. height: math.unit(220, "feet"),
  28190. default: true
  28191. },
  28192. {
  28193. name: "Macro+",
  28194. height: math.unit(1100, "feet")
  28195. },
  28196. ]
  28197. ))
  28198. characterMakers.push(() => makeCharacter(
  28199. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28200. {
  28201. front: {
  28202. height: math.unit(100, "miles"),
  28203. name: "Front",
  28204. image: {
  28205. source: "./media/characters/sona/front.svg",
  28206. extra: 2433 / 2201,
  28207. bottom: 53 / 2486
  28208. }
  28209. },
  28210. foot: {
  28211. height: math.unit(16.1, "miles"),
  28212. name: "Foot",
  28213. image: {
  28214. source: "./media/characters/sona/foot.svg"
  28215. }
  28216. },
  28217. },
  28218. [
  28219. {
  28220. name: "Macro",
  28221. height: math.unit(100, "miles"),
  28222. default: true
  28223. },
  28224. ]
  28225. ))
  28226. characterMakers.push(() => makeCharacter(
  28227. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28228. {
  28229. front: {
  28230. height: math.unit(6, "feet"),
  28231. weight: math.unit(150, "lb"),
  28232. name: "Front",
  28233. image: {
  28234. source: "./media/characters/bailey/front.svg",
  28235. extra: 1778 / 1724,
  28236. bottom: 30 / 1808
  28237. }
  28238. },
  28239. },
  28240. [
  28241. {
  28242. name: "Micro",
  28243. height: math.unit(4, "inches")
  28244. },
  28245. {
  28246. name: "Normal",
  28247. height: math.unit(5 + 5 / 12, "feet"),
  28248. default: true
  28249. },
  28250. {
  28251. name: "Macro",
  28252. height: math.unit(250, "feet")
  28253. },
  28254. {
  28255. name: "Megamacro",
  28256. height: math.unit(100, "miles")
  28257. },
  28258. ]
  28259. ))
  28260. characterMakers.push(() => makeCharacter(
  28261. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28262. {
  28263. front: {
  28264. height: math.unit(5 + 2 / 12, "feet"),
  28265. weight: math.unit(120, "lb"),
  28266. name: "Front",
  28267. image: {
  28268. source: "./media/characters/snaps/front.svg",
  28269. extra: 2370 / 2177,
  28270. bottom: 48 / 2418
  28271. }
  28272. },
  28273. back: {
  28274. height: math.unit(5 + 2 / 12, "feet"),
  28275. weight: math.unit(120, "lb"),
  28276. name: "Back",
  28277. image: {
  28278. source: "./media/characters/snaps/back.svg",
  28279. extra: 2408 / 2258,
  28280. bottom: 15 / 2423
  28281. }
  28282. },
  28283. },
  28284. [
  28285. {
  28286. name: "Micro",
  28287. height: math.unit(9, "inches")
  28288. },
  28289. {
  28290. name: "Normal",
  28291. height: math.unit(5 + 2 / 12, "feet"),
  28292. default: true
  28293. },
  28294. {
  28295. name: "Mini Macro",
  28296. height: math.unit(10, "feet")
  28297. },
  28298. ]
  28299. ))
  28300. characterMakers.push(() => makeCharacter(
  28301. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28302. {
  28303. front: {
  28304. height: math.unit(1.8, "meters"),
  28305. weight: math.unit(85, "kg"),
  28306. name: "Front",
  28307. image: {
  28308. source: "./media/characters/azteck/front.svg",
  28309. extra: 2815 / 2625,
  28310. bottom: 89 / 2904
  28311. }
  28312. },
  28313. back: {
  28314. height: math.unit(1.8, "meters"),
  28315. weight: math.unit(85, "kg"),
  28316. name: "Back",
  28317. image: {
  28318. source: "./media/characters/azteck/back.svg",
  28319. extra: 2856 / 2648,
  28320. bottom: 85 / 2941
  28321. }
  28322. },
  28323. frontDressed: {
  28324. height: math.unit(1.8, "meters"),
  28325. weight: math.unit(85, "kg"),
  28326. name: "Front (Dressed)",
  28327. image: {
  28328. source: "./media/characters/azteck/front-dressed.svg",
  28329. extra: 2147 / 2003,
  28330. bottom: 68 / 2215
  28331. }
  28332. },
  28333. head: {
  28334. height: math.unit(0.47, "meters"),
  28335. weight: math.unit(85, "kg"),
  28336. name: "Head",
  28337. image: {
  28338. source: "./media/characters/azteck/head.svg"
  28339. }
  28340. },
  28341. },
  28342. [
  28343. {
  28344. name: "Bite sized",
  28345. height: math.unit(16, "cm")
  28346. },
  28347. {
  28348. name: "Normal",
  28349. height: math.unit(1.8, "meters"),
  28350. default: true
  28351. },
  28352. ]
  28353. ))
  28354. characterMakers.push(() => makeCharacter(
  28355. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28356. {
  28357. front: {
  28358. height: math.unit(6, "feet"),
  28359. weight: math.unit(150, "lb"),
  28360. name: "Front",
  28361. image: {
  28362. source: "./media/characters/pidge/front.svg",
  28363. extra: 620 / 588,
  28364. bottom: 9 / 629
  28365. }
  28366. },
  28367. back: {
  28368. height: math.unit(6, "feet"),
  28369. weight: math.unit(150, "lb"),
  28370. name: "Back",
  28371. image: {
  28372. source: "./media/characters/pidge/back.svg",
  28373. extra: 620 / 588,
  28374. bottom: 9 / 629
  28375. }
  28376. },
  28377. },
  28378. [
  28379. {
  28380. name: "Macro",
  28381. height: math.unit(1, "mile"),
  28382. default: true
  28383. },
  28384. ]
  28385. ))
  28386. characterMakers.push(() => makeCharacter(
  28387. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28388. {
  28389. front: {
  28390. height: math.unit(6, "feet"),
  28391. weight: math.unit(150, "lb"),
  28392. name: "Front",
  28393. image: {
  28394. source: "./media/characters/en/front.svg",
  28395. extra: 1697 / 1563,
  28396. bottom: 103 / 1800
  28397. }
  28398. },
  28399. back: {
  28400. height: math.unit(6, "feet"),
  28401. weight: math.unit(150, "lb"),
  28402. name: "Back",
  28403. image: {
  28404. source: "./media/characters/en/back.svg",
  28405. extra: 1700 / 1570,
  28406. bottom: 51 / 1751
  28407. }
  28408. },
  28409. frontDressed: {
  28410. height: math.unit(6, "feet"),
  28411. weight: math.unit(150, "lb"),
  28412. name: "Front (Dressed)",
  28413. image: {
  28414. source: "./media/characters/en/front-dressed.svg",
  28415. extra: 1697 / 1563,
  28416. bottom: 103 / 1800
  28417. }
  28418. },
  28419. backDressed: {
  28420. height: math.unit(6, "feet"),
  28421. weight: math.unit(150, "lb"),
  28422. name: "Back (Dressed)",
  28423. image: {
  28424. source: "./media/characters/en/back-dressed.svg",
  28425. extra: 1700 / 1570,
  28426. bottom: 51 / 1751
  28427. }
  28428. },
  28429. },
  28430. [
  28431. {
  28432. name: "Macro",
  28433. height: math.unit(210, "feet"),
  28434. default: true
  28435. },
  28436. ]
  28437. ))
  28438. characterMakers.push(() => makeCharacter(
  28439. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28440. {
  28441. front: {
  28442. height: math.unit(6, "feet"),
  28443. weight: math.unit(150, "lb"),
  28444. name: "Front",
  28445. image: {
  28446. source: "./media/characters/haze-orris/front.svg",
  28447. extra: 3975 / 3525,
  28448. bottom: 137 / 4112
  28449. }
  28450. },
  28451. },
  28452. [
  28453. {
  28454. name: "Micro",
  28455. height: math.unit(150, "mm"),
  28456. default: true
  28457. },
  28458. ]
  28459. ))
  28460. characterMakers.push(() => makeCharacter(
  28461. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28462. {
  28463. front: {
  28464. height: math.unit(6, "feet"),
  28465. weight: math.unit(150, "lb"),
  28466. name: "Front",
  28467. image: {
  28468. source: "./media/characters/casselene-yaro/front.svg",
  28469. extra: 4721 / 4541,
  28470. bottom: 82 / 4803
  28471. }
  28472. },
  28473. back: {
  28474. height: math.unit(6, "feet"),
  28475. weight: math.unit(150, "lb"),
  28476. name: "Back",
  28477. image: {
  28478. source: "./media/characters/casselene-yaro/back.svg",
  28479. extra: 4569 / 4377,
  28480. bottom: 69 / 4638
  28481. }
  28482. },
  28483. frontDressed: {
  28484. height: math.unit(6, "feet"),
  28485. weight: math.unit(150, "lb"),
  28486. name: "Front-dressed",
  28487. image: {
  28488. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28489. extra: 4721 / 4541,
  28490. bottom: 82 / 4803
  28491. }
  28492. },
  28493. },
  28494. [
  28495. {
  28496. name: "Macro",
  28497. height: math.unit(190, "feet")
  28498. },
  28499. ]
  28500. ))
  28501. characterMakers.push(() => makeCharacter(
  28502. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28503. {
  28504. front: {
  28505. height: math.unit(6, "feet"),
  28506. weight: math.unit(150, "lb"),
  28507. name: "Front",
  28508. image: {
  28509. source: "./media/characters/myra-rue-delore/front.svg",
  28510. extra: 1340 / 1308,
  28511. bottom: 67 / 1407
  28512. }
  28513. },
  28514. back: {
  28515. height: math.unit(6, "feet"),
  28516. weight: math.unit(150, "lb"),
  28517. name: "Back",
  28518. image: {
  28519. source: "./media/characters/myra-rue-delore/back.svg",
  28520. extra: 1341 / 1310,
  28521. bottom: 40 / 1381
  28522. }
  28523. },
  28524. frontDressed: {
  28525. height: math.unit(6, "feet"),
  28526. weight: math.unit(150, "lb"),
  28527. name: "Front (Dressed)",
  28528. image: {
  28529. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28530. extra: 1340 / 1308,
  28531. bottom: 67 / 1407
  28532. }
  28533. },
  28534. },
  28535. [
  28536. {
  28537. name: "Macro",
  28538. height: math.unit(150, "feet")
  28539. },
  28540. ]
  28541. ))
  28542. characterMakers.push(() => makeCharacter(
  28543. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28544. {
  28545. front: {
  28546. height: math.unit(10, "feet"),
  28547. weight: math.unit(15015, "lb"),
  28548. name: "Front",
  28549. image: {
  28550. source: "./media/characters/fem!plat/front.svg",
  28551. extra: 2799 / 2604,
  28552. bottom: 149 / 2948
  28553. }
  28554. },
  28555. },
  28556. [
  28557. {
  28558. name: "Normal",
  28559. height: math.unit(10, "feet"),
  28560. default: true
  28561. },
  28562. {
  28563. name: "Macro",
  28564. height: math.unit(100, "feet")
  28565. },
  28566. {
  28567. name: "Megamacro",
  28568. height: math.unit(1000, "feet")
  28569. },
  28570. ]
  28571. ))
  28572. characterMakers.push(() => makeCharacter(
  28573. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28574. {
  28575. front: {
  28576. height: math.unit(15 + 5 / 12, "feet"),
  28577. weight: math.unit(4600, "lb"),
  28578. name: "Front",
  28579. image: {
  28580. source: "./media/characters/neapolitan-ananassa/front.svg",
  28581. extra: 2903 / 2736,
  28582. bottom: 0 / 2903
  28583. }
  28584. },
  28585. side: {
  28586. height: math.unit(15 + 5 / 12, "feet"),
  28587. weight: math.unit(4600, "lb"),
  28588. name: "Side",
  28589. image: {
  28590. source: "./media/characters/neapolitan-ananassa/side.svg",
  28591. extra: 2925 / 2719,
  28592. bottom: 0 / 2925
  28593. }
  28594. },
  28595. back: {
  28596. height: math.unit(15 + 5 / 12, "feet"),
  28597. weight: math.unit(4600, "lb"),
  28598. name: "Back",
  28599. image: {
  28600. source: "./media/characters/neapolitan-ananassa/back.svg",
  28601. extra: 2903 / 2736,
  28602. bottom: 0 / 2903
  28603. }
  28604. },
  28605. },
  28606. [
  28607. {
  28608. name: "Normal",
  28609. height: math.unit(15 + 5 / 12, "feet"),
  28610. default: true
  28611. },
  28612. {
  28613. name: "Post-Millenium",
  28614. height: math.unit(35 + 5 / 12, "feet")
  28615. },
  28616. {
  28617. name: "Post-Era",
  28618. height: math.unit(450 + 5 / 12, "feet")
  28619. },
  28620. ]
  28621. ))
  28622. characterMakers.push(() => makeCharacter(
  28623. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28624. {
  28625. front: {
  28626. height: math.unit(300, "meters"),
  28627. weight: math.unit(125000, "tonnes"),
  28628. name: "Front",
  28629. image: {
  28630. source: "./media/characters/pazuzu/front.svg",
  28631. extra: 877 / 794,
  28632. bottom: 47 / 924
  28633. }
  28634. },
  28635. },
  28636. [
  28637. {
  28638. name: "Macro",
  28639. height: math.unit(300, "meters"),
  28640. default: true
  28641. },
  28642. ]
  28643. ))
  28644. characterMakers.push(() => makeCharacter(
  28645. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28646. {
  28647. side: {
  28648. height: math.unit(10 + 7 / 12, "feet"),
  28649. weight: math.unit(2.5, "tons"),
  28650. name: "Side",
  28651. image: {
  28652. source: "./media/characters/aasha/side.svg",
  28653. extra: 1345 / 1245,
  28654. bottom: 111 / 1456
  28655. }
  28656. },
  28657. back: {
  28658. height: math.unit(10 + 7 / 12, "feet"),
  28659. weight: math.unit(2.5, "tons"),
  28660. name: "Back",
  28661. image: {
  28662. source: "./media/characters/aasha/back.svg",
  28663. extra: 1133 / 1057,
  28664. bottom: 257 / 1390
  28665. }
  28666. },
  28667. },
  28668. [
  28669. {
  28670. name: "Normal",
  28671. height: math.unit(10 + 7 / 12, "feet"),
  28672. default: true
  28673. },
  28674. ]
  28675. ))
  28676. characterMakers.push(() => makeCharacter(
  28677. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28678. {
  28679. front: {
  28680. height: math.unit(6 + 3 / 12, "feet"),
  28681. name: "Front",
  28682. image: {
  28683. source: "./media/characters/nevan/front.svg",
  28684. extra: 704 / 704,
  28685. bottom: 28 / 732
  28686. }
  28687. },
  28688. back: {
  28689. height: math.unit(6 + 3 / 12, "feet"),
  28690. name: "Back",
  28691. image: {
  28692. source: "./media/characters/nevan/back.svg",
  28693. extra: 714 / 714,
  28694. bottom: 21 / 735
  28695. }
  28696. },
  28697. frontFlaccid: {
  28698. height: math.unit(6 + 3 / 12, "feet"),
  28699. name: "Front (Flaccid)",
  28700. image: {
  28701. source: "./media/characters/nevan/front-flaccid.svg",
  28702. extra: 704 / 704,
  28703. bottom: 28 / 732
  28704. }
  28705. },
  28706. frontErect: {
  28707. height: math.unit(6 + 3 / 12, "feet"),
  28708. name: "Front (Erect)",
  28709. image: {
  28710. source: "./media/characters/nevan/front-erect.svg",
  28711. extra: 704 / 704,
  28712. bottom: 28 / 732
  28713. }
  28714. },
  28715. backFlaccid: {
  28716. height: math.unit(6 + 3 / 12, "feet"),
  28717. name: "Back (Flaccid)",
  28718. image: {
  28719. source: "./media/characters/nevan/back-flaccid.svg",
  28720. extra: 714 / 714,
  28721. bottom: 21 / 735
  28722. }
  28723. },
  28724. },
  28725. [
  28726. {
  28727. name: "Normal",
  28728. height: math.unit(6 + 3 / 12, "feet"),
  28729. default: true
  28730. },
  28731. ]
  28732. ))
  28733. characterMakers.push(() => makeCharacter(
  28734. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28735. {
  28736. front: {
  28737. height: math.unit(4, "feet"),
  28738. name: "Front",
  28739. image: {
  28740. source: "./media/characters/arhan/front.svg",
  28741. extra: 3368 / 3133,
  28742. bottom: 0 / 3368
  28743. }
  28744. },
  28745. side: {
  28746. height: math.unit(4, "feet"),
  28747. name: "Side",
  28748. image: {
  28749. source: "./media/characters/arhan/side.svg",
  28750. extra: 3347 / 3105,
  28751. bottom: 0 / 3347
  28752. }
  28753. },
  28754. tongue: {
  28755. height: math.unit(1.42, "feet"),
  28756. name: "Tongue",
  28757. image: {
  28758. source: "./media/characters/arhan/tongue.svg"
  28759. }
  28760. },
  28761. head: {
  28762. height: math.unit(0.85, "feet"),
  28763. name: "Head",
  28764. image: {
  28765. source: "./media/characters/arhan/head.svg"
  28766. }
  28767. },
  28768. },
  28769. [
  28770. {
  28771. name: "Normal",
  28772. height: math.unit(4, "feet"),
  28773. default: true
  28774. },
  28775. ]
  28776. ))
  28777. characterMakers.push(() => makeCharacter(
  28778. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28779. {
  28780. front: {
  28781. height: math.unit(5 + 7.5 / 12, "feet"),
  28782. weight: math.unit(120, "lb"),
  28783. name: "Front",
  28784. image: {
  28785. source: "./media/characters/digi-duncan/front.svg",
  28786. extra: 330 / 326,
  28787. bottom: 16 / 346
  28788. }
  28789. },
  28790. side: {
  28791. height: math.unit(5 + 7.5 / 12, "feet"),
  28792. weight: math.unit(120, "lb"),
  28793. name: "Side",
  28794. image: {
  28795. source: "./media/characters/digi-duncan/side.svg",
  28796. extra: 341 / 337,
  28797. bottom: 1 / 342
  28798. }
  28799. },
  28800. back: {
  28801. height: math.unit(5 + 7.5 / 12, "feet"),
  28802. weight: math.unit(120, "lb"),
  28803. name: "Back",
  28804. image: {
  28805. source: "./media/characters/digi-duncan/back.svg",
  28806. extra: 330 / 326,
  28807. bottom: 12 / 342
  28808. }
  28809. },
  28810. },
  28811. [
  28812. {
  28813. name: "Speck",
  28814. height: math.unit(0.25, "mm")
  28815. },
  28816. {
  28817. name: "Micro",
  28818. height: math.unit(5, "mm")
  28819. },
  28820. {
  28821. name: "Tiny",
  28822. height: math.unit(0.5, "inches"),
  28823. default: true
  28824. },
  28825. {
  28826. name: "Human",
  28827. height: math.unit(5 + 7.5 / 12, "feet")
  28828. },
  28829. {
  28830. name: "Minigiant",
  28831. height: math.unit(8 + 5.25, "feet")
  28832. },
  28833. {
  28834. name: "Giant",
  28835. height: math.unit(2000, "feet")
  28836. },
  28837. {
  28838. name: "Mega",
  28839. height: math.unit(371.1, "miles")
  28840. },
  28841. ]
  28842. ))
  28843. characterMakers.push(() => makeCharacter(
  28844. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28845. {
  28846. front: {
  28847. height: math.unit(2, "meters"),
  28848. weight: math.unit(350, "kg"),
  28849. name: "Front",
  28850. image: {
  28851. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28852. extra: 898 / 838,
  28853. bottom: 9 / 907
  28854. }
  28855. },
  28856. },
  28857. [
  28858. {
  28859. name: "Micro",
  28860. height: math.unit(8, "meters")
  28861. },
  28862. {
  28863. name: "Normal",
  28864. height: math.unit(50, "meters"),
  28865. default: true
  28866. },
  28867. {
  28868. name: "Macro",
  28869. height: math.unit(500, "meters")
  28870. },
  28871. ]
  28872. ))
  28873. characterMakers.push(() => makeCharacter(
  28874. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  28875. {
  28876. front: {
  28877. height: math.unit(6 + 6 / 12, "feet"),
  28878. name: "Front",
  28879. image: {
  28880. source: "./media/characters/khardesh/front.svg",
  28881. extra: 888 / 797,
  28882. bottom: 25 / 913
  28883. }
  28884. },
  28885. },
  28886. [
  28887. {
  28888. name: "Normal",
  28889. height: math.unit(6 + 6 / 12, "feet"),
  28890. default: true
  28891. },
  28892. {
  28893. name: "Normal+",
  28894. height: math.unit(4, "meters")
  28895. },
  28896. {
  28897. name: "Macro",
  28898. height: math.unit(50, "meters")
  28899. },
  28900. {
  28901. name: "Macro+",
  28902. height: math.unit(100, "meters")
  28903. },
  28904. {
  28905. name: "Megamacro",
  28906. height: math.unit(20, "km")
  28907. },
  28908. ]
  28909. ))
  28910. characterMakers.push(() => makeCharacter(
  28911. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  28912. {
  28913. front: {
  28914. height: math.unit(6, "feet"),
  28915. weight: math.unit(150, "lb"),
  28916. name: "Front",
  28917. image: {
  28918. source: "./media/characters/kosho/front.svg",
  28919. extra: 1847 / 1847,
  28920. bottom: 86 / 1933
  28921. }
  28922. },
  28923. },
  28924. [
  28925. {
  28926. name: "Second-stage micro",
  28927. height: math.unit(0.5, "inches")
  28928. },
  28929. {
  28930. name: "First-stage micro",
  28931. height: math.unit(6, "inches")
  28932. },
  28933. {
  28934. name: "Normal",
  28935. height: math.unit(6, "feet"),
  28936. default: true
  28937. },
  28938. {
  28939. name: "First-stage macro",
  28940. height: math.unit(72, "feet")
  28941. },
  28942. {
  28943. name: "Second-stage macro",
  28944. height: math.unit(864, "feet")
  28945. },
  28946. ]
  28947. ))
  28948. characterMakers.push(() => makeCharacter(
  28949. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  28950. {
  28951. normal: {
  28952. height: math.unit(4 + 6 / 12, "feet"),
  28953. name: "Normal",
  28954. image: {
  28955. source: "./media/characters/hydra/normal.svg",
  28956. extra: 2833 / 2634,
  28957. bottom: 68 / 2901
  28958. }
  28959. },
  28960. smol: {
  28961. height: math.unit(0.705, "inches"),
  28962. name: "Smol",
  28963. image: {
  28964. source: "./media/characters/hydra/smol.svg",
  28965. extra: 2715 / 2540,
  28966. bottom: 0 / 2715
  28967. }
  28968. },
  28969. },
  28970. [
  28971. {
  28972. name: "Normal",
  28973. height: math.unit(4 + 6 / 12, "feet"),
  28974. default: true
  28975. }
  28976. ]
  28977. ))
  28978. characterMakers.push(() => makeCharacter(
  28979. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  28980. {
  28981. front: {
  28982. height: math.unit(0.6, "cm"),
  28983. name: "Front",
  28984. image: {
  28985. source: "./media/characters/daz/front.svg",
  28986. extra: 1682 / 1164,
  28987. bottom: 42 / 1724
  28988. }
  28989. },
  28990. },
  28991. [
  28992. {
  28993. name: "Normal",
  28994. height: math.unit(0.6, "cm"),
  28995. default: true
  28996. },
  28997. ]
  28998. ))
  28999. characterMakers.push(() => makeCharacter(
  29000. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29001. {
  29002. front: {
  29003. height: math.unit(6, "feet"),
  29004. weight: math.unit(235, "lb"),
  29005. name: "Front",
  29006. image: {
  29007. source: "./media/characters/theo-pangolin/front.svg",
  29008. extra: 1996 / 1969,
  29009. bottom: 115 / 2111
  29010. }
  29011. },
  29012. back: {
  29013. height: math.unit(6, "feet"),
  29014. weight: math.unit(235, "lb"),
  29015. name: "Back",
  29016. image: {
  29017. source: "./media/characters/theo-pangolin/back.svg",
  29018. extra: 1979 / 1979,
  29019. bottom: 40 / 2019
  29020. }
  29021. },
  29022. feral: {
  29023. height: math.unit(2, "feet"),
  29024. weight: math.unit(30, "lb"),
  29025. name: "Feral",
  29026. image: {
  29027. source: "./media/characters/theo-pangolin/feral.svg",
  29028. extra: 803 / 791,
  29029. bottom: 181 / 984
  29030. }
  29031. },
  29032. footFive: {
  29033. height: math.unit(1.43, "feet"),
  29034. name: "Foot (Five Toes)",
  29035. image: {
  29036. source: "./media/characters/theo-pangolin/foot-five.svg"
  29037. }
  29038. },
  29039. footFour: {
  29040. height: math.unit(1.43, "feet"),
  29041. name: "Foot (Four Toes)",
  29042. image: {
  29043. source: "./media/characters/theo-pangolin/foot-four.svg"
  29044. }
  29045. },
  29046. handFour: {
  29047. height: math.unit(0.81, "feet"),
  29048. name: "Hand (Four Fingers)",
  29049. image: {
  29050. source: "./media/characters/theo-pangolin/hand-four.svg"
  29051. }
  29052. },
  29053. handThree: {
  29054. height: math.unit(0.81, "feet"),
  29055. name: "Hand (Three Fingers)",
  29056. image: {
  29057. source: "./media/characters/theo-pangolin/hand-three.svg"
  29058. }
  29059. },
  29060. headFront: {
  29061. height: math.unit(1.37, "feet"),
  29062. name: "Head (Front)",
  29063. image: {
  29064. source: "./media/characters/theo-pangolin/head-front.svg"
  29065. }
  29066. },
  29067. headSide: {
  29068. height: math.unit(1.43, "feet"),
  29069. name: "Head (Side)",
  29070. image: {
  29071. source: "./media/characters/theo-pangolin/head-side.svg"
  29072. }
  29073. },
  29074. tongue: {
  29075. height: math.unit(2.29, "feet"),
  29076. name: "Tongue",
  29077. image: {
  29078. source: "./media/characters/theo-pangolin/tongue.svg"
  29079. }
  29080. },
  29081. },
  29082. [
  29083. {
  29084. name: "Normal",
  29085. height: math.unit(6, "feet")
  29086. },
  29087. {
  29088. name: "Macro",
  29089. height: math.unit(400, "feet"),
  29090. default: true
  29091. },
  29092. ]
  29093. ))
  29094. characterMakers.push(() => makeCharacter(
  29095. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29096. {
  29097. front: {
  29098. height: math.unit(6, "inches"),
  29099. weight: math.unit(0.036, "kg"),
  29100. name: "Front",
  29101. image: {
  29102. source: "./media/characters/renée/front.svg",
  29103. extra: 900 / 886,
  29104. bottom: 8 / 908
  29105. }
  29106. },
  29107. },
  29108. [
  29109. {
  29110. name: "Nano",
  29111. height: math.unit(1, "nm")
  29112. },
  29113. {
  29114. name: "Micro",
  29115. height: math.unit(1, "mm")
  29116. },
  29117. {
  29118. name: "Normal",
  29119. height: math.unit(6, "inches")
  29120. },
  29121. {
  29122. name: "Macro",
  29123. height: math.unit(2000, "feet"),
  29124. default: true
  29125. },
  29126. {
  29127. name: "Megamacro",
  29128. height: math.unit(2, "km")
  29129. },
  29130. {
  29131. name: "Gigamacro",
  29132. height: math.unit(2000, "km")
  29133. },
  29134. {
  29135. name: "Teramacro",
  29136. height: math.unit(250000, "km")
  29137. },
  29138. ]
  29139. ))
  29140. characterMakers.push(() => makeCharacter(
  29141. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29142. {
  29143. front: {
  29144. height: math.unit(4, "meters"),
  29145. weight: math.unit(150, "kg"),
  29146. name: "Front",
  29147. image: {
  29148. source: "./media/characters/caledvwlch/front.svg",
  29149. extra: 1760 / 1551,
  29150. bottom: 28 / 1788
  29151. }
  29152. },
  29153. side: {
  29154. height: math.unit(4, "meters"),
  29155. weight: math.unit(150, "kg"),
  29156. name: "Side",
  29157. image: {
  29158. source: "./media/characters/caledvwlch/side.svg",
  29159. extra: 1605 / 1536,
  29160. bottom: 31 / 1636
  29161. }
  29162. },
  29163. back: {
  29164. height: math.unit(4, "meters"),
  29165. weight: math.unit(150, "kg"),
  29166. name: "Back",
  29167. image: {
  29168. source: "./media/characters/caledvwlch/back.svg",
  29169. extra: 1635 / 1565,
  29170. bottom: 27 / 1662
  29171. }
  29172. },
  29173. },
  29174. [
  29175. {
  29176. name: "\"Incognito\"",
  29177. height: math.unit(4, "meters")
  29178. },
  29179. {
  29180. name: "Small rampage",
  29181. height: math.unit(600, "meters")
  29182. },
  29183. {
  29184. name: "Mega",
  29185. height: math.unit(30, "km")
  29186. },
  29187. {
  29188. name: "Home-size",
  29189. height: math.unit(50, "km"),
  29190. default: true
  29191. },
  29192. {
  29193. name: "Giga",
  29194. height: math.unit(300, "km")
  29195. },
  29196. {
  29197. name: "Lounging",
  29198. height: math.unit(11000, "km")
  29199. },
  29200. {
  29201. name: "Planet snacking",
  29202. height: math.unit(2000000, "km")
  29203. },
  29204. ]
  29205. ))
  29206. characterMakers.push(() => makeCharacter(
  29207. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29208. {
  29209. front: {
  29210. height: math.unit(6, "feet"),
  29211. weight: math.unit(215, "lb"),
  29212. name: "Front",
  29213. image: {
  29214. source: "./media/characters/sapphire-svell/front.svg",
  29215. extra: 495 / 455,
  29216. bottom: 20 / 515
  29217. }
  29218. },
  29219. back: {
  29220. height: math.unit(6, "feet"),
  29221. weight: math.unit(216, "lb"),
  29222. name: "Back",
  29223. image: {
  29224. source: "./media/characters/sapphire-svell/back.svg",
  29225. extra: 497 / 477,
  29226. bottom: 7 / 504
  29227. }
  29228. },
  29229. maw: {
  29230. height: math.unit(1.57, "feet"),
  29231. name: "Maw",
  29232. image: {
  29233. source: "./media/characters/sapphire-svell/maw.svg"
  29234. }
  29235. },
  29236. foot: {
  29237. height: math.unit(1.07, "feet"),
  29238. name: "Foot",
  29239. image: {
  29240. source: "./media/characters/sapphire-svell/foot.svg"
  29241. }
  29242. },
  29243. toering: {
  29244. height: math.unit(1.7, "inch"),
  29245. name: "Toering",
  29246. image: {
  29247. source: "./media/characters/sapphire-svell/toering.svg"
  29248. }
  29249. },
  29250. },
  29251. [
  29252. {
  29253. name: "Normal",
  29254. height: math.unit(300, "feet"),
  29255. default: true
  29256. },
  29257. {
  29258. name: "Augmented",
  29259. height: math.unit(1250, "feet")
  29260. },
  29261. {
  29262. name: "Unleashed",
  29263. height: math.unit(3000, "feet")
  29264. },
  29265. ]
  29266. ))
  29267. characterMakers.push(() => makeCharacter(
  29268. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29269. {
  29270. side: {
  29271. height: math.unit(2 + 3 / 12, "feet"),
  29272. weight: math.unit(110, "lb"),
  29273. name: "Side",
  29274. image: {
  29275. source: "./media/characters/glitch-flux/side.svg",
  29276. extra: 997 / 805,
  29277. bottom: 20 / 1017
  29278. }
  29279. },
  29280. },
  29281. [
  29282. {
  29283. name: "Normal",
  29284. height: math.unit(2 + 3 / 12, "feet"),
  29285. default: true
  29286. },
  29287. ]
  29288. ))
  29289. characterMakers.push(() => makeCharacter(
  29290. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29291. {
  29292. front: {
  29293. height: math.unit(4, "meters"),
  29294. name: "Front",
  29295. image: {
  29296. source: "./media/characters/mid/front.svg",
  29297. extra: 507 / 476,
  29298. bottom: 17 / 524
  29299. }
  29300. },
  29301. back: {
  29302. height: math.unit(4, "meters"),
  29303. name: "Back",
  29304. image: {
  29305. source: "./media/characters/mid/back.svg",
  29306. extra: 519 / 487,
  29307. bottom: 7 / 526
  29308. }
  29309. },
  29310. stuck: {
  29311. height: math.unit(2.2, "meters"),
  29312. name: "Stuck",
  29313. image: {
  29314. source: "./media/characters/mid/stuck.svg",
  29315. extra: 1951 / 1869,
  29316. bottom: 88 / 2039
  29317. }
  29318. }
  29319. },
  29320. [
  29321. {
  29322. name: "Normal",
  29323. height: math.unit(4, "meters"),
  29324. default: true
  29325. },
  29326. {
  29327. name: "Big",
  29328. height: math.unit(10, "meters")
  29329. },
  29330. {
  29331. name: "Macro",
  29332. height: math.unit(800, "meters")
  29333. },
  29334. {
  29335. name: "Megamacro",
  29336. height: math.unit(100, "km")
  29337. },
  29338. {
  29339. name: "Overgrown",
  29340. height: math.unit(1, "parsec")
  29341. },
  29342. ]
  29343. ))
  29344. characterMakers.push(() => makeCharacter(
  29345. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29346. {
  29347. front: {
  29348. height: math.unit(2.5, "meters"),
  29349. weight: math.unit(225, "kg"),
  29350. name: "Front",
  29351. image: {
  29352. source: "./media/characters/iris/front.svg",
  29353. extra: 3348 / 3251,
  29354. bottom: 205 / 3553
  29355. }
  29356. },
  29357. maw: {
  29358. height: math.unit(0.56, "meter"),
  29359. name: "Maw",
  29360. image: {
  29361. source: "./media/characters/iris/maw.svg"
  29362. }
  29363. },
  29364. },
  29365. [
  29366. {
  29367. name: "Mewter cat",
  29368. height: math.unit(1.2, "meters")
  29369. },
  29370. {
  29371. name: "Minimacro",
  29372. height: math.unit(2.5, "meters"),
  29373. default: true
  29374. },
  29375. {
  29376. name: "Macro",
  29377. height: math.unit(180, "meters")
  29378. },
  29379. {
  29380. name: "Megamacro",
  29381. height: math.unit(2746, "meters")
  29382. },
  29383. ]
  29384. ))
  29385. characterMakers.push(() => makeCharacter(
  29386. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29387. {
  29388. front: {
  29389. height: math.unit(6, "feet"),
  29390. weight: math.unit(135, "lb"),
  29391. name: "Front",
  29392. image: {
  29393. source: "./media/characters/axel/front.svg",
  29394. extra: 908/908,
  29395. bottom: 58/966
  29396. }
  29397. },
  29398. side: {
  29399. height: math.unit(6, "feet"),
  29400. weight: math.unit(135, "lb"),
  29401. name: "Side",
  29402. image: {
  29403. source: "./media/characters/axel/side.svg",
  29404. extra: 958/958,
  29405. bottom: 11/969
  29406. }
  29407. },
  29408. back: {
  29409. height: math.unit(6, "feet"),
  29410. weight: math.unit(135, "lb"),
  29411. name: "Back",
  29412. image: {
  29413. source: "./media/characters/axel/back.svg",
  29414. extra: 887/887,
  29415. bottom: 34/921
  29416. }
  29417. },
  29418. head: {
  29419. height: math.unit(1.07, "feet"),
  29420. name: "Head",
  29421. image: {
  29422. source: "./media/characters/axel/head.svg"
  29423. }
  29424. },
  29425. beak: {
  29426. height: math.unit(1.4, "feet"),
  29427. name: "Beak",
  29428. image: {
  29429. source: "./media/characters/axel/beak.svg"
  29430. }
  29431. },
  29432. beakSide: {
  29433. height: math.unit(1.4, "feet"),
  29434. name: "Beak Side",
  29435. image: {
  29436. source: "./media/characters/axel/beak-side.svg"
  29437. }
  29438. },
  29439. sheath: {
  29440. height: math.unit(0.5, "feet"),
  29441. name: "Sheath",
  29442. image: {
  29443. source: "./media/characters/axel/sheath.svg"
  29444. }
  29445. },
  29446. dick: {
  29447. height: math.unit(0.98, "feet"),
  29448. name: "Dick",
  29449. image: {
  29450. source: "./media/characters/axel/dick.svg"
  29451. }
  29452. },
  29453. },
  29454. [
  29455. {
  29456. name: "Macro",
  29457. height: math.unit(68, "meters"),
  29458. default: true
  29459. },
  29460. ]
  29461. ))
  29462. characterMakers.push(() => makeCharacter(
  29463. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29464. {
  29465. front: {
  29466. height: math.unit(3.5, "meters"),
  29467. weight: math.unit(1200, "kg"),
  29468. name: "Front",
  29469. image: {
  29470. source: "./media/characters/joanna/front.svg",
  29471. extra: 1596/1488,
  29472. bottom: 29/1625
  29473. }
  29474. },
  29475. back: {
  29476. height: math.unit(3.5, "meters"),
  29477. weight: math.unit(1200, "kg"),
  29478. name: "Back",
  29479. image: {
  29480. source: "./media/characters/joanna/back.svg",
  29481. extra: 1594/1495,
  29482. bottom: 26/1620
  29483. }
  29484. },
  29485. frontShorts: {
  29486. height: math.unit(3.5, "meters"),
  29487. weight: math.unit(1200, "kg"),
  29488. name: "Front (Shorts)",
  29489. image: {
  29490. source: "./media/characters/joanna/front-shorts.svg",
  29491. extra: 1596/1488,
  29492. bottom: 29/1625
  29493. }
  29494. },
  29495. frontBiker: {
  29496. height: math.unit(3.5, "meters"),
  29497. weight: math.unit(1200, "kg"),
  29498. name: "Front (Biker)",
  29499. image: {
  29500. source: "./media/characters/joanna/front-biker.svg",
  29501. extra: 1596/1488,
  29502. bottom: 29/1625
  29503. }
  29504. },
  29505. backBiker: {
  29506. height: math.unit(3.5, "meters"),
  29507. weight: math.unit(1200, "kg"),
  29508. name: "Back (Biker)",
  29509. image: {
  29510. source: "./media/characters/joanna/back-biker.svg",
  29511. extra: 1594/1495,
  29512. bottom: 88/1682
  29513. }
  29514. },
  29515. bikeLeft: {
  29516. height: math.unit(2.4, "meters"),
  29517. weight: math.unit(1600, "kg"),
  29518. name: "Bike (Left)",
  29519. image: {
  29520. source: "./media/characters/joanna/bike-left.svg",
  29521. extra: 720/720,
  29522. bottom: 8/728
  29523. }
  29524. },
  29525. bikeRight: {
  29526. height: math.unit(2.4, "meters"),
  29527. weight: math.unit(1600, "kg"),
  29528. name: "Bike (Right)",
  29529. image: {
  29530. source: "./media/characters/joanna/bike-right.svg",
  29531. extra: 720/720,
  29532. bottom: 8/728
  29533. }
  29534. },
  29535. },
  29536. [
  29537. {
  29538. name: "Incognito",
  29539. height: math.unit(3.5, "meters")
  29540. },
  29541. {
  29542. name: "Casual Big",
  29543. height: math.unit(200, "meters")
  29544. },
  29545. {
  29546. name: "Macro",
  29547. height: math.unit(600, "meters")
  29548. },
  29549. {
  29550. name: "Original",
  29551. height: math.unit(20, "km"),
  29552. default: true
  29553. },
  29554. {
  29555. name: "Giga",
  29556. height: math.unit(400, "km")
  29557. },
  29558. {
  29559. name: "Lounging",
  29560. height: math.unit(1500, "km")
  29561. },
  29562. {
  29563. name: "Planetary",
  29564. height: math.unit(200000, "km")
  29565. },
  29566. ]
  29567. ))
  29568. characterMakers.push(() => makeCharacter(
  29569. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29570. {
  29571. front: {
  29572. height: math.unit(6, "feet"),
  29573. weight: math.unit(150, "lb"),
  29574. name: "Front",
  29575. image: {
  29576. source: "./media/characters/hugo-sigil/front.svg",
  29577. extra: 522/500,
  29578. bottom: 2/524
  29579. }
  29580. },
  29581. back: {
  29582. height: math.unit(6, "feet"),
  29583. weight: math.unit(150, "lb"),
  29584. name: "Back",
  29585. image: {
  29586. source: "./media/characters/hugo-sigil/back.svg",
  29587. extra: 519/495,
  29588. bottom: 5/524
  29589. }
  29590. },
  29591. maw: {
  29592. height: math.unit(1.4, "feet"),
  29593. weight: math.unit(150, "lb"),
  29594. name: "Maw",
  29595. image: {
  29596. source: "./media/characters/hugo-sigil/maw.svg"
  29597. }
  29598. },
  29599. feet: {
  29600. height: math.unit(1.56, "feet"),
  29601. weight: math.unit(150, "lb"),
  29602. name: "Feet",
  29603. image: {
  29604. source: "./media/characters/hugo-sigil/feet.svg",
  29605. extra: 177/177,
  29606. bottom: 12/189
  29607. }
  29608. },
  29609. },
  29610. [
  29611. {
  29612. name: "Normal",
  29613. height: math.unit(6, "feet")
  29614. },
  29615. {
  29616. name: "Macro",
  29617. height: math.unit(200, "feet"),
  29618. default: true
  29619. },
  29620. ]
  29621. ))
  29622. characterMakers.push(() => makeCharacter(
  29623. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29624. {
  29625. front: {
  29626. height: math.unit(6, "feet"),
  29627. weight: math.unit(150, "lb"),
  29628. name: "Front",
  29629. image: {
  29630. source: "./media/characters/peri/front.svg",
  29631. extra: 2354/2233,
  29632. bottom: 49/2403
  29633. }
  29634. },
  29635. },
  29636. [
  29637. {
  29638. name: "Really Small",
  29639. height: math.unit(1, "nm")
  29640. },
  29641. {
  29642. name: "Micro",
  29643. height: math.unit(4, "inches")
  29644. },
  29645. {
  29646. name: "Normal",
  29647. height: math.unit(7, "inches"),
  29648. default: true
  29649. },
  29650. {
  29651. name: "Macro",
  29652. height: math.unit(400, "feet")
  29653. },
  29654. {
  29655. name: "Megamacro",
  29656. height: math.unit(100, "miles")
  29657. },
  29658. ]
  29659. ))
  29660. //characters
  29661. function makeCharacters() {
  29662. const results = [];
  29663. characterMakers.forEach(character => {
  29664. results.push(character());
  29665. });
  29666. return results;
  29667. }